diff --git a/appCreate b/appCreate new file mode 100644 index 0000000..5776be5 --- /dev/null +++ b/appCreate @@ -0,0 +1,76 @@ + \ No newline at end of file diff --git a/applications/ApplicationBase.php b/applications/ApplicationBase.php new file mode 100644 index 0000000..99bc008 --- /dev/null +++ b/applications/ApplicationBase.php @@ -0,0 +1,272 @@ +controller = $controller; + } + + protected function setVersion($version='1.0.0') { + $this->version = $version; + } + + public function getModel() { + return $this->model; + } + + public function setModel($model = null) { + $this->model = $model; + } + + /** + * Gets the application version + * @return version + */ + public function getVersion() { + return $this->version; + } + + public function getApplicationID() { + $appID = preg_replace('/[^a-z]+/i','',$this->name); + $appID = preg_replace('/(.)([A-Z])/','$1-$2',$appID); + $appID = strtolower($appID); + return $appID; + + } + /** + * Returns an array() of the scripts this application uses + */ + public final function getScripts() { + $ret = []; + foreach($this->scripts as $value) { + $ret[] = $this->getUrl('js/'.$value); + } + return $ret; + } + + /** + * Returns the url to the resource relative tot he applications directory + */ + public function getUrl($url='') { + $basepath = dirname(__FILE__).DIRECTORY_SEPARATOR; + $basepath = str_replace('\\','/',substr($basepath,strpos($basepath,'plugins')-1)); + return $basepath.strtolower($this->getName()).'/'.$url; + } + + /** + * Returns the path to the given resource, relative from the applications root path + * @param string $resource + */ + public function getPath($resource='') { + return __DIR__ . DIRECTORY_SEPARATOR . strtolower($this->getName()) . DIRECTORY_SEPARATOR . $resource; + } + + /** + * Returns an array() of the css files this application uses + */ + public final function getCSS() { + $ret = []; + + foreach($this->css as $value) { + $ret[] = $this->getUrl('css/'.$value); + } + return $ret; + } + + /** + * Returns application name + */ + public function getName() { + return $this->name; + } + + public function getWidget($name,$vars) { + $path =__DIR__ . DIRECTORY_SEPARATOR.'widgets/'.$name.'/'.$name; + return $this->renderfile($path, $vars); + } + /** + * Renders a partial in the view directory + * @param unknown $path + * @param unknown $vars + */ + public function getPartial($path, $vars) { + $filepath = $this->getPath('view/'. $path); + return $this->renderfile($filepath,$vars); + + } + + protected function checkWidgets() { + if(is_null(self::$widgets)) { + self::$widgets = Yaml::parse(file_get_contents(__DIR__.DIRECTORY_SEPARATOR.'widgets'.DIRECTORY_SEPARATOR.'widgets.yaml')); + } + } + + protected function widgetTypeExists($name) { + return array_key_exists($name, self::$widgets); + } + + protected function getWidgetInstance($name,$config) { + if($this->widgetTypeExists($name)) { + $widget = self::$widgets[$name]; + return new $widget($this,$config); + } + return null; + } + + public function renderForm($configfile) { + $this->checkWidgets(); + + $config = $this->getConfig($configfile); + + $ret = ''; + $this->formFields = []; + echo dump($config); + foreach($config->fields as $fieldname => $widgetconfig) { + if(isset($widgetconfig->type) && $this->widgetTypeExists($widgetconfig->type)) { + $type = $widgetconfig->type; + } + else { + $type = $widgetconfig->type = 'formfield'; + } + $widget = $this->getWidgetInstance($type,$widgetconfig); + $widget->setFieldName($fieldname); + $this->widgetsinstances[$fieldname] = $widget; + $this->formFields[$fieldname] = $widget; + } + foreach($this->formFields as $field) { + $ret .= $field->render(); + } + return $ret; + } + + public function getFormField($name) { + + if(array_key_exists($name,$this->formFields)) { + return $this->formFields[$name]; + } + return null; + + } + /** + * Returns active registered widget by name; + * @param unknown $name + */ + public function getActiveWidget($name) { + if(array_key_exists($name,$this->widgetsinstances)) { + return $this->widgetsinstances[$name]; + } + return null; + } + public function getConfig($config) { + return $this->makeConfigFromArray(Yaml::parse(file_get_contents($this->getPath('config'.DIRECTORY_SEPARATOR.$config.'.yaml')))); + } + /** + * Makes a config object from an array, making the first level keys properties a new object. + * Property values are converted to camelCase and are not set if one already exists. + * @param array $configArray Config array. + * @param boolean $strict To return an empty object if $configArray is null + * @return stdObject The config object + */ + public function makeConfigFromArray($configArray = [],$strict = true) + { + $object = new stdClass(); + + if (!is_array($configArray)) { + if(!$strict && !is_null($configArray)) { + return $configArray; + } + return $object; + } + + foreach ($configArray as $name => $value) { + if(is_array($value)) { + $makeobject = true; + foreach($value as $key => $val) { + if(is_numeric(substr($key,0,1))) { + $makeobject = false; + } + if(is_array($val)) { + $value[$key] = $this->makeConfigFromArray($val,false); + } + } + if($makeobject) { + $object->{$name} = $this->makeConfigFromArray($value,false); + } + else { + $object->{$name} = $value; + } + + } + else { + $object->{$name} = $value; + } + } + + return $object; + } + + private function renderfile($filepath, $vars) { + if(!file_exists($filepath)) { + if(file_exists($filepath.'.html')) { + $filepath .= '.html'; + } + elseif(file_exists($filepath.'.htm')) { + $filepath .= '.htm'; + } + elseif(file_exists($filepath.'.php')) { + $filepath .= '.php'; + } + elseif(file_exists($filepath.'.txt')) { + $filepath .= '.txt'; + } + else { + throw new FileNotFoundException('File does not exist '.$filepath); + } + } + $this->vars = $vars; + extract($vars); + ob_start(); + include $filepath; + $renderedView = ob_get_clean(); + return $renderedView; + } + + /** + * Renders the application partial as requested. Default is just app.html. + * @param string $file The file to render + * @param array $vars Variables to pass along as values to the html file for rendering + */ + public function render($file='app',$vars=[]) { + $render = true; + foreach($this->permissions as $value) { + if(!(BackendAuth::getUser()->hasAccess($value))) { + $render = false; + break; + } + } + $initial =[ + 'controller'=>$this->controller, + 'name'=>$this->getName(), + ]; + $vars = array_merge($initial,$vars); + + return $render ? $this->getPartial($file,$vars):''; + } + +} \ No newline at end of file diff --git a/applications/ApplicationController.php b/applications/ApplicationController.php new file mode 100644 index 0000000..e796734 --- /dev/null +++ b/applications/ApplicationController.php @@ -0,0 +1,105 @@ +loadAssets(); + } + private function getAppContainer($app) { + return '
'. + $app->render(). + '
'; + } + public function registerApplication($appName) { + $destinationdir = __DIR__.DIRECTORY_SEPARATOR.strtolower($appName); + + if(is_dir($destinationdir)) { + $app = '\\Applications\\'.$appName.'\\'.$appName; + $app = new $app; + if($app instanceof ApplicationBase) { + $app->bindToController($this); + $this->applications[$app->getApplicationID()] = $app; + } + } + } + + public function renderApps() { + $str = ''; + foreach($this->applications as $app) { + $str .= $this->getAppContainer($app); + + } + return $str; + } + + public function loadApplicationAssets() { + foreach($this->applications as $app) { + $css = $app->getCSS(); + foreach($css as $val) { + $this->addCss($val,$app->getVersion()); + } + $js = $app->getScripts(); + foreach($js as $val) { + $this->addJs($val,$app->getVersion()); + } + } + } + + /** + * Returns the url to the resource relative tot he applications directory + */ + public function getUrlBase($url='') { + $basepath = __DIR__.DIRECTORY_SEPARATOR; + $basepath = str_replace('\\','/',substr($basepath,strpos($basepath,'plugins')-1)); + return $basepath.$url; + } + + public function loadAssets() + { + $this->addCss($this->getUrlBase('assets/css/metro.css'), 'ExitControl.Desktop'); + $this->addCss($this->getUrlBase('assets/css/metro-icons.css'), 'ExitControl.Desktop'); + $this->addCss($this->getUrlBase('assets/css/application.css'), 'ExitControl.Desktop'); + + $this->addJs($this->getUrlBase('assets/js/metro.js'), 'ExitControl.Desktop'); + $this->addJs($this->getUrlBase('assets/js/application.js'), 'ExitControl.Desktop'); + + } + + public function onAppRequest() { + $appid = post('appid'); + + if(isset($this->applications[$appid])) { + + $app = $this->applications[post('appid')]; + $function = post('request'); + if(strpos($function,'on') !== 0) { + throw new ApplicationException('Ajax calls function names must start with on. function '.$function.'() does not conform.'); + } + if(method_exists($app,$function)) { + return $app->{$function}(post('data')); + } + else { + throw new ApplicationException('Method '.$function . '() does not exist in '.$appid); + } + + } + + else { + throw new ApplicationException('Application '.$appid.' not found!'); + } + + return []; + } +} \ No newline at end of file diff --git a/applications/assets/css/application.css b/applications/assets/css/application.css new file mode 100644 index 0000000..a6a4b80 --- /dev/null +++ b/applications/assets/css/application.css @@ -0,0 +1,24 @@ +.logcontainer .logcontents{ + position:relative; + overflow:hidden; + width:100%; + height:100%; +} +.logcontainer .logcontents .logtext{ + position:absolute; + bottom:20px; + line-height:1.6em; +} +.tile-content.iconic .icon.checkmark-completed { + width: 25px; + height: 25px; + font-size: 25px; + top: 100%; + margin-top: -25px; + left: 50%; + margin-left: 12px; + +} +.app-container { + display: inline-block; +} \ No newline at end of file diff --git a/applications/assets/css/metro-icons.css b/applications/assets/css/metro-icons.css new file mode 100644 index 0000000..88ef22f --- /dev/null +++ b/applications/assets/css/metro-icons.css @@ -0,0 +1,6447 @@ +@font-face { + font-family: 'metro'; + src: url('../fonts/metro.eot?izvoei'); + src: url('../fonts/metro.eot?#iefixizvoei') format('embedded-opentype'), url('../fonts/metro.woff?izvoei') format('woff'), url('../fonts/metro.ttf?izvoei') format('truetype'), url('../fonts/metro.svg?izvoei#metro') format('svg'); + font-weight: normal; + font-style: normal; +} +[class^="mif-"], +[class*=" mif-"] { + display: inline-block; + font: normal normal normal 1.5em/1; + font-family: metro, "Segoe UI", "Open Sans", serif; + line-height: 1 ; + text-rendering: auto; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; + -webkit-transform: translate(0, 0); + transform: translate(0, 0); + vertical-align: middle; + position: static; +} +[class^="mif-"]:before, +[class*=" mif-"]:before { + font-family: metro, serif; +} +.mif-lg { + font-size: 1.3rem; + line-height: 0.75em; + vertical-align: -35%; +} +.mif-2x { + font-size: 1.75rem; + vertical-align: -25%; +} +.mif-3x { + font-size: 2.625rem; + vertical-align: -30%; +} +.mif-4x { + font-size: 3.5rem; + vertical-align: -35%; +} +.op-default { + background-color: rgba(27, 161, 226, 0.7); +} +.fg-black { + color: #000000 !important; +} +.bg-black { + background-color: #000000 !important; +} +.bd-black { + border-color: #000000 !important; +} +.ol-black { + outline-color: #000000 !important; +} +.op-black { + background-color: rgba(0, 0, 0, 0.7); +} +.ribbed-black { + background: #000000 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) !important; + background-size: 40px 40px !important; +} +.before-bg-black:before { + background: #000000 !important; +} +.before-fg-black:before { + color: #000000 !important; +} +.after-bg-black:after { + background: #000000 !important; +} +.after-fg-black:after { + color: #000000 !important; +} +.bg-hover-black:hover { + background: #000000 !important; +} +.bg-active-black:active { + background: #000000 !important; +} +.bg-focus-black:focus { + background: #000000 !important; +} +.fg-hover-black:hover { + color: #000000 !important; +} +.fg-active-black:active { + color: #000000 !important; +} +.fg-focus-black:focus { + color: #000000 !important; +} +.fg-white { + color: #ffffff !important; +} +.bg-white { + background-color: #ffffff !important; +} +.bd-white { + border-color: #ffffff !important; +} +.ol-white { + outline-color: #ffffff !important; +} +.op-white { + background-color: rgba(255, 255, 255, 0.7); +} +.ribbed-white { + background: #ffffff 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) !important; + background-size: 40px 40px !important; +} +.before-bg-white:before { + background: #ffffff !important; +} +.before-fg-white:before { + color: #ffffff !important; +} +.after-bg-white:after { + background: #ffffff !important; +} +.after-fg-white:after { + color: #ffffff !important; +} +.bg-hover-white:hover { + background: #ffffff !important; +} +.bg-active-white:active { + background: #ffffff !important; +} +.bg-focus-white:focus { + background: #ffffff !important; +} +.fg-hover-white:hover { + color: #ffffff !important; +} +.fg-active-white:active { + color: #ffffff !important; +} +.fg-focus-white:focus { + color: #ffffff !important; +} +.fg-lime { + color: #a4c400 !important; +} +.bg-lime { + background-color: #a4c400 !important; +} +.bd-lime { + border-color: #a4c400 !important; +} +.ol-lime { + outline-color: #a4c400 !important; +} +.op-lime { + background-color: rgba(164, 196, 0, 0.7); +} +.ribbed-lime { + background: #a4c400 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) !important; + background-size: 40px 40px !important; +} +.before-bg-lime:before { + background: #a4c400 !important; +} +.before-fg-lime:before { + color: #a4c400 !important; +} +.after-bg-lime:after { + background: #a4c400 !important; +} +.after-fg-lime:after { + color: #a4c400 !important; +} +.bg-hover-lime:hover { + background: #a4c400 !important; +} +.bg-active-lime:active { + background: #a4c400 !important; +} +.bg-focus-lime:focus { + background: #a4c400 !important; +} +.fg-hover-lime:hover { + color: #a4c400 !important; +} +.fg-active-lime:active { + color: #a4c400 !important; +} +.fg-focus-lime:focus { + color: #a4c400 !important; +} +.fg-green { + color: #60a917 !important; +} +.bg-green { + background-color: #60a917 !important; +} +.bd-green { + border-color: #60a917 !important; +} +.ol-green { + outline-color: #60a917 !important; +} +.op-green { + background-color: rgba(96, 169, 23, 0.7); +} +.ribbed-green { + background: #60a917 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) !important; + background-size: 40px 40px !important; +} +.before-bg-green:before { + background: #60a917 !important; +} +.before-fg-green:before { + color: #60a917 !important; +} +.after-bg-green:after { + background: #60a917 !important; +} +.after-fg-green:after { + color: #60a917 !important; +} +.bg-hover-green:hover { + background: #60a917 !important; +} +.bg-active-green:active { + background: #60a917 !important; +} +.bg-focus-green:focus { + background: #60a917 !important; +} +.fg-hover-green:hover { + color: #60a917 !important; +} +.fg-active-green:active { + color: #60a917 !important; +} +.fg-focus-green:focus { + color: #60a917 !important; +} +.fg-emerald { + color: #008a00 !important; +} +.bg-emerald { + background-color: #008a00 !important; +} +.bd-emerald { + border-color: #008a00 !important; +} +.ol-emerald { + outline-color: #008a00 !important; +} +.op-emerald { + background-color: rgba(0, 138, 0, 0.7); +} +.ribbed-emerald { + background: #008a00 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) !important; + background-size: 40px 40px !important; +} +.before-bg-emerald:before { + background: #008a00 !important; +} +.before-fg-emerald:before { + color: #008a00 !important; +} +.after-bg-emerald:after { + background: #008a00 !important; +} +.after-fg-emerald:after { + color: #008a00 !important; +} +.bg-hover-emerald:hover { + background: #008a00 !important; +} +.bg-active-emerald:active { + background: #008a00 !important; +} +.bg-focus-emerald:focus { + background: #008a00 !important; +} +.fg-hover-emerald:hover { + color: #008a00 !important; +} +.fg-active-emerald:active { + color: #008a00 !important; +} +.fg-focus-emerald:focus { + color: #008a00 !important; +} +.fg-blue { + color: #00aff0 !important; +} +.bg-blue { + background-color: #00aff0 !important; +} +.bd-blue { + border-color: #00aff0 !important; +} +.ol-blue { + outline-color: #00aff0 !important; +} +.op-blue { + background-color: rgba(0, 175, 240, 0.7); +} +.ribbed-blue { + background: #00aff0 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) !important; + background-size: 40px 40px !important; +} +.before-bg-blue:before { + background: #00aff0 !important; +} +.before-fg-blue:before { + color: #00aff0 !important; +} +.after-bg-blue:after { + background: #00aff0 !important; +} +.after-fg-blue:after { + color: #00aff0 !important; +} +.bg-hover-blue:hover { + background: #00aff0 !important; +} +.bg-active-blue:active { + background: #00aff0 !important; +} +.bg-focus-blue:focus { + background: #00aff0 !important; +} +.fg-hover-blue:hover { + color: #00aff0 !important; +} +.fg-active-blue:active { + color: #00aff0 !important; +} +.fg-focus-blue:focus { + color: #00aff0 !important; +} +.fg-teal { + color: #00aba9 !important; +} +.bg-teal { + background-color: #00aba9 !important; +} +.bd-teal { + border-color: #00aba9 !important; +} +.ol-teal { + outline-color: #00aba9 !important; +} +.op-teal { + background-color: rgba(0, 171, 169, 0.7); +} +.ribbed-teal { + background: #00aba9 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) !important; + background-size: 40px 40px !important; +} +.before-bg-teal:before { + background: #00aba9 !important; +} +.before-fg-teal:before { + color: #00aba9 !important; +} +.after-bg-teal:after { + background: #00aba9 !important; +} +.after-fg-teal:after { + color: #00aba9 !important; +} +.bg-hover-teal:hover { + background: #00aba9 !important; +} +.bg-active-teal:active { + background: #00aba9 !important; +} +.bg-focus-teal:focus { + background: #00aba9 !important; +} +.fg-hover-teal:hover { + color: #00aba9 !important; +} +.fg-active-teal:active { + color: #00aba9 !important; +} +.fg-focus-teal:focus { + color: #00aba9 !important; +} +.fg-cyan { + color: #1ba1e2 !important; +} +.bg-cyan { + background-color: #1ba1e2 !important; +} +.bd-cyan { + border-color: #1ba1e2 !important; +} +.ol-cyan { + outline-color: #1ba1e2 !important; +} +.op-cyan { + background-color: rgba(27, 161, 226, 0.7); +} +.ribbed-cyan { + background: #1ba1e2 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) !important; + background-size: 40px 40px !important; +} +.before-bg-cyan:before { + background: #1ba1e2 !important; +} +.before-fg-cyan:before { + color: #1ba1e2 !important; +} +.after-bg-cyan:after { + background: #1ba1e2 !important; +} +.after-fg-cyan:after { + color: #1ba1e2 !important; +} +.bg-hover-cyan:hover { + background: #1ba1e2 !important; +} +.bg-active-cyan:active { + background: #1ba1e2 !important; +} +.bg-focus-cyan:focus { + background: #1ba1e2 !important; +} +.fg-hover-cyan:hover { + color: #1ba1e2 !important; +} +.fg-active-cyan:active { + color: #1ba1e2 !important; +} +.fg-focus-cyan:focus { + color: #1ba1e2 !important; +} +.fg-cobalt { + color: #0050ef !important; +} +.bg-cobalt { + background-color: #0050ef !important; +} +.bd-cobalt { + border-color: #0050ef !important; +} +.ol-cobalt { + outline-color: #0050ef !important; +} +.op-cobalt { + background-color: rgba(0, 80, 239, 0.7); +} +.ribbed-cobalt { + background: #0050ef 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) !important; + background-size: 40px 40px !important; +} +.before-bg-cobalt:before { + background: #0050ef !important; +} +.before-fg-cobalt:before { + color: #0050ef !important; +} +.after-bg-cobalt:after { + background: #0050ef !important; +} +.after-fg-cobalt:after { + color: #0050ef !important; +} +.bg-hover-cobalt:hover { + background: #0050ef !important; +} +.bg-active-cobalt:active { + background: #0050ef !important; +} +.bg-focus-cobalt:focus { + background: #0050ef !important; +} +.fg-hover-cobalt:hover { + color: #0050ef !important; +} +.fg-active-cobalt:active { + color: #0050ef !important; +} +.fg-focus-cobalt:focus { + color: #0050ef !important; +} +.fg-indigo { + color: #6a00ff !important; +} +.bg-indigo { + background-color: #6a00ff !important; +} +.bd-indigo { + border-color: #6a00ff !important; +} +.ol-indigo { + outline-color: #6a00ff !important; +} +.op-indigo { + background-color: rgba(106, 0, 255, 0.7); +} +.ribbed-indigo { + background: #6a00ff 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) !important; + background-size: 40px 40px !important; +} +.before-bg-indigo:before { + background: #6a00ff !important; +} +.before-fg-indigo:before { + color: #6a00ff !important; +} +.after-bg-indigo:after { + background: #6a00ff !important; +} +.after-fg-indigo:after { + color: #6a00ff !important; +} +.bg-hover-indigo:hover { + background: #6a00ff !important; +} +.bg-active-indigo:active { + background: #6a00ff !important; +} +.bg-focus-indigo:focus { + background: #6a00ff !important; +} +.fg-hover-indigo:hover { + color: #6a00ff !important; +} +.fg-active-indigo:active { + color: #6a00ff !important; +} +.fg-focus-indigo:focus { + color: #6a00ff !important; +} +.fg-violet { + color: #aa00ff !important; +} +.bg-violet { + background-color: #aa00ff !important; +} +.bd-violet { + border-color: #aa00ff !important; +} +.ol-violet { + outline-color: #aa00ff !important; +} +.op-violet { + background-color: rgba(170, 0, 255, 0.7); +} +.ribbed-violet { + background: #aa00ff 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) !important; + background-size: 40px 40px !important; +} +.before-bg-violet:before { + background: #aa00ff !important; +} +.before-fg-violet:before { + color: #aa00ff !important; +} +.after-bg-violet:after { + background: #aa00ff !important; +} +.after-fg-violet:after { + color: #aa00ff !important; +} +.bg-hover-violet:hover { + background: #aa00ff !important; +} +.bg-active-violet:active { + background: #aa00ff !important; +} +.bg-focus-violet:focus { + background: #aa00ff !important; +} +.fg-hover-violet:hover { + color: #aa00ff !important; +} +.fg-active-violet:active { + color: #aa00ff !important; +} +.fg-focus-violet:focus { + color: #aa00ff !important; +} +.fg-pink { + color: #dc4fad !important; +} +.bg-pink { + background-color: #dc4fad !important; +} +.bd-pink { + border-color: #dc4fad !important; +} +.ol-pink { + outline-color: #dc4fad !important; +} +.op-pink { + background-color: rgba(220, 79, 173, 0.7); +} +.ribbed-pink { + background: #dc4fad 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) !important; + background-size: 40px 40px !important; +} +.before-bg-pink:before { + background: #dc4fad !important; +} +.before-fg-pink:before { + color: #dc4fad !important; +} +.after-bg-pink:after { + background: #dc4fad !important; +} +.after-fg-pink:after { + color: #dc4fad !important; +} +.bg-hover-pink:hover { + background: #dc4fad !important; +} +.bg-active-pink:active { + background: #dc4fad !important; +} +.bg-focus-pink:focus { + background: #dc4fad !important; +} +.fg-hover-pink:hover { + color: #dc4fad !important; +} +.fg-active-pink:active { + color: #dc4fad !important; +} +.fg-focus-pink:focus { + color: #dc4fad !important; +} +.fg-magenta { + color: #d80073 !important; +} +.bg-magenta { + background-color: #d80073 !important; +} +.bd-magenta { + border-color: #d80073 !important; +} +.ol-magenta { + outline-color: #d80073 !important; +} +.op-magenta { + background-color: rgba(216, 0, 115, 0.7); +} +.ribbed-magenta { + background: #d80073 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) !important; + background-size: 40px 40px !important; +} +.before-bg-magenta:before { + background: #d80073 !important; +} +.before-fg-magenta:before { + color: #d80073 !important; +} +.after-bg-magenta:after { + background: #d80073 !important; +} +.after-fg-magenta:after { + color: #d80073 !important; +} +.bg-hover-magenta:hover { + background: #d80073 !important; +} +.bg-active-magenta:active { + background: #d80073 !important; +} +.bg-focus-magenta:focus { + background: #d80073 !important; +} +.fg-hover-magenta:hover { + color: #d80073 !important; +} +.fg-active-magenta:active { + color: #d80073 !important; +} +.fg-focus-magenta:focus { + color: #d80073 !important; +} +.fg-crimson { + color: #a20025 !important; +} +.bg-crimson { + background-color: #a20025 !important; +} +.bd-crimson { + border-color: #a20025 !important; +} +.ol-crimson { + outline-color: #a20025 !important; +} +.op-crimson { + background-color: rgba(162, 0, 37, 0.7); +} +.ribbed-crimson { + background: #a20025 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) !important; + background-size: 40px 40px !important; +} +.before-bg-crimson:before { + background: #a20025 !important; +} +.before-fg-crimson:before { + color: #a20025 !important; +} +.after-bg-crimson:after { + background: #a20025 !important; +} +.after-fg-crimson:after { + color: #a20025 !important; +} +.bg-hover-crimson:hover { + background: #a20025 !important; +} +.bg-active-crimson:active { + background: #a20025 !important; +} +.bg-focus-crimson:focus { + background: #a20025 !important; +} +.fg-hover-crimson:hover { + color: #a20025 !important; +} +.fg-active-crimson:active { + color: #a20025 !important; +} +.fg-focus-crimson:focus { + color: #a20025 !important; +} +.fg-red { + color: #ce352c !important; +} +.bg-red { + background-color: #ce352c !important; +} +.bd-red { + border-color: #ce352c !important; +} +.ol-red { + outline-color: #ce352c !important; +} +.op-red { + background-color: rgba(206, 53, 44, 0.7); +} +.ribbed-red { + background: #ce352c 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) !important; + background-size: 40px 40px !important; +} +.before-bg-red:before { + background: #ce352c !important; +} +.before-fg-red:before { + color: #ce352c !important; +} +.after-bg-red:after { + background: #ce352c !important; +} +.after-fg-red:after { + color: #ce352c !important; +} +.bg-hover-red:hover { + background: #ce352c !important; +} +.bg-active-red:active { + background: #ce352c !important; +} +.bg-focus-red:focus { + background: #ce352c !important; +} +.fg-hover-red:hover { + color: #ce352c !important; +} +.fg-active-red:active { + color: #ce352c !important; +} +.fg-focus-red:focus { + color: #ce352c !important; +} +.fg-orange { + color: #fa6800 !important; +} +.bg-orange { + background-color: #fa6800 !important; +} +.bd-orange { + border-color: #fa6800 !important; +} +.ol-orange { + outline-color: #fa6800 !important; +} +.op-orange { + background-color: rgba(250, 104, 0, 0.7); +} +.ribbed-orange { + background: #fa6800 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) !important; + background-size: 40px 40px !important; +} +.before-bg-orange:before { + background: #fa6800 !important; +} +.before-fg-orange:before { + color: #fa6800 !important; +} +.after-bg-orange:after { + background: #fa6800 !important; +} +.after-fg-orange:after { + color: #fa6800 !important; +} +.bg-hover-orange:hover { + background: #fa6800 !important; +} +.bg-active-orange:active { + background: #fa6800 !important; +} +.bg-focus-orange:focus { + background: #fa6800 !important; +} +.fg-hover-orange:hover { + color: #fa6800 !important; +} +.fg-active-orange:active { + color: #fa6800 !important; +} +.fg-focus-orange:focus { + color: #fa6800 !important; +} +.fg-amber { + color: #f0a30a !important; +} +.bg-amber { + background-color: #f0a30a !important; +} +.bd-amber { + border-color: #f0a30a !important; +} +.ol-amber { + outline-color: #f0a30a !important; +} +.op-amber { + background-color: rgba(240, 163, 10, 0.7); +} +.ribbed-amber { + background: #f0a30a 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) !important; + background-size: 40px 40px !important; +} +.before-bg-amber:before { + background: #f0a30a !important; +} +.before-fg-amber:before { + color: #f0a30a !important; +} +.after-bg-amber:after { + background: #f0a30a !important; +} +.after-fg-amber:after { + color: #f0a30a !important; +} +.bg-hover-amber:hover { + background: #f0a30a !important; +} +.bg-active-amber:active { + background: #f0a30a !important; +} +.bg-focus-amber:focus { + background: #f0a30a !important; +} +.fg-hover-amber:hover { + color: #f0a30a !important; +} +.fg-active-amber:active { + color: #f0a30a !important; +} +.fg-focus-amber:focus { + color: #f0a30a !important; +} +.fg-yellow { + color: #e3c800 !important; +} +.bg-yellow { + background-color: #e3c800 !important; +} +.bd-yellow { + border-color: #e3c800 !important; +} +.ol-yellow { + outline-color: #e3c800 !important; +} +.op-yellow { + background-color: rgba(227, 200, 0, 0.7); +} +.ribbed-yellow { + background: #e3c800 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) !important; + background-size: 40px 40px !important; +} +.before-bg-yellow:before { + background: #e3c800 !important; +} +.before-fg-yellow:before { + color: #e3c800 !important; +} +.after-bg-yellow:after { + background: #e3c800 !important; +} +.after-fg-yellow:after { + color: #e3c800 !important; +} +.bg-hover-yellow:hover { + background: #e3c800 !important; +} +.bg-active-yellow:active { + background: #e3c800 !important; +} +.bg-focus-yellow:focus { + background: #e3c800 !important; +} +.fg-hover-yellow:hover { + color: #e3c800 !important; +} +.fg-active-yellow:active { + color: #e3c800 !important; +} +.fg-focus-yellow:focus { + color: #e3c800 !important; +} +.fg-brown { + color: #825a2c !important; +} +.bg-brown { + background-color: #825a2c !important; +} +.bd-brown { + border-color: #825a2c !important; +} +.ol-brown { + outline-color: #825a2c !important; +} +.op-brown { + background-color: rgba(130, 90, 44, 0.7); +} +.ribbed-brown { + background: #825a2c 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) !important; + background-size: 40px 40px !important; +} +.before-bg-brown:before { + background: #825a2c !important; +} +.before-fg-brown:before { + color: #825a2c !important; +} +.after-bg-brown:after { + background: #825a2c !important; +} +.after-fg-brown:after { + color: #825a2c !important; +} +.bg-hover-brown:hover { + background: #825a2c !important; +} +.bg-active-brown:active { + background: #825a2c !important; +} +.bg-focus-brown:focus { + background: #825a2c !important; +} +.fg-hover-brown:hover { + color: #825a2c !important; +} +.fg-active-brown:active { + color: #825a2c !important; +} +.fg-focus-brown:focus { + color: #825a2c !important; +} +.fg-olive { + color: #6d8764 !important; +} +.bg-olive { + background-color: #6d8764 !important; +} +.bd-olive { + border-color: #6d8764 !important; +} +.ol-olive { + outline-color: #6d8764 !important; +} +.op-olive { + background-color: rgba(109, 135, 100, 0.7); +} +.ribbed-olive { + background: #6d8764 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) !important; + background-size: 40px 40px !important; +} +.before-bg-olive:before { + background: #6d8764 !important; +} +.before-fg-olive:before { + color: #6d8764 !important; +} +.after-bg-olive:after { + background: #6d8764 !important; +} +.after-fg-olive:after { + color: #6d8764 !important; +} +.bg-hover-olive:hover { + background: #6d8764 !important; +} +.bg-active-olive:active { + background: #6d8764 !important; +} +.bg-focus-olive:focus { + background: #6d8764 !important; +} +.fg-hover-olive:hover { + color: #6d8764 !important; +} +.fg-active-olive:active { + color: #6d8764 !important; +} +.fg-focus-olive:focus { + color: #6d8764 !important; +} +.fg-steel { + color: #647687 !important; +} +.bg-steel { + background-color: #647687 !important; +} +.bd-steel { + border-color: #647687 !important; +} +.ol-steel { + outline-color: #647687 !important; +} +.op-steel { + background-color: rgba(100, 118, 135, 0.7); +} +.ribbed-steel { + background: #647687 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) !important; + background-size: 40px 40px !important; +} +.before-bg-steel:before { + background: #647687 !important; +} +.before-fg-steel:before { + color: #647687 !important; +} +.after-bg-steel:after { + background: #647687 !important; +} +.after-fg-steel:after { + color: #647687 !important; +} +.bg-hover-steel:hover { + background: #647687 !important; +} +.bg-active-steel:active { + background: #647687 !important; +} +.bg-focus-steel:focus { + background: #647687 !important; +} +.fg-hover-steel:hover { + color: #647687 !important; +} +.fg-active-steel:active { + color: #647687 !important; +} +.fg-focus-steel:focus { + color: #647687 !important; +} +.fg-mauve { + color: #76608a !important; +} +.bg-mauve { + background-color: #76608a !important; +} +.bd-mauve { + border-color: #76608a !important; +} +.ol-mauve { + outline-color: #76608a !important; +} +.op-mauve { + background-color: rgba(118, 96, 138, 0.7); +} +.ribbed-mauve { + background: #76608a 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) !important; + background-size: 40px 40px !important; +} +.before-bg-mauve:before { + background: #76608a !important; +} +.before-fg-mauve:before { + color: #76608a !important; +} +.after-bg-mauve:after { + background: #76608a !important; +} +.after-fg-mauve:after { + color: #76608a !important; +} +.bg-hover-mauve:hover { + background: #76608a !important; +} +.bg-active-mauve:active { + background: #76608a !important; +} +.bg-focus-mauve:focus { + background: #76608a !important; +} +.fg-hover-mauve:hover { + color: #76608a !important; +} +.fg-active-mauve:active { + color: #76608a !important; +} +.fg-focus-mauve:focus { + color: #76608a !important; +} +.fg-taupe { + color: #87794e !important; +} +.bg-taupe { + background-color: #87794e !important; +} +.bd-taupe { + border-color: #87794e !important; +} +.ol-taupe { + outline-color: #87794e !important; +} +.op-taupe { + background-color: rgba(135, 121, 78, 0.7); +} +.ribbed-taupe { + background: #87794e 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) !important; + background-size: 40px 40px !important; +} +.before-bg-taupe:before { + background: #87794e !important; +} +.before-fg-taupe:before { + color: #87794e !important; +} +.after-bg-taupe:after { + background: #87794e !important; +} +.after-fg-taupe:after { + color: #87794e !important; +} +.bg-hover-taupe:hover { + background: #87794e !important; +} +.bg-active-taupe:active { + background: #87794e !important; +} +.bg-focus-taupe:focus { + background: #87794e !important; +} +.fg-hover-taupe:hover { + color: #87794e !important; +} +.fg-active-taupe:active { + color: #87794e !important; +} +.fg-focus-taupe:focus { + color: #87794e !important; +} +.fg-dark { + color: #1d1d1d !important; +} +.bg-dark { + background-color: #1d1d1d !important; +} +.bd-dark { + border-color: #1d1d1d !important; +} +.ol-dark { + outline-color: #1d1d1d !important; +} +.op-dark { + background-color: rgba(29, 29, 29, 0.7); +} +.ribbed-dark { + background: #1d1d1d 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) !important; + background-size: 40px 40px !important; +} +.before-bg-dark:before { + background: #1d1d1d !important; +} +.before-fg-dark:before { + color: #1d1d1d !important; +} +.after-bg-dark:after { + background: #1d1d1d !important; +} +.after-fg-dark:after { + color: #1d1d1d !important; +} +.bg-hover-dark:hover { + background: #1d1d1d !important; +} +.bg-active-dark:active { + background: #1d1d1d !important; +} +.bg-focus-dark:focus { + background: #1d1d1d !important; +} +.fg-hover-dark:hover { + color: #1d1d1d !important; +} +.fg-active-dark:active { + color: #1d1d1d !important; +} +.fg-focus-dark:focus { + color: #1d1d1d !important; +} +.fg-darkBrown { + color: #63362f !important; +} +.bg-darkBrown { + background-color: #63362f !important; +} +.bd-darkBrown { + border-color: #63362f !important; +} +.ol-darkBrown { + outline-color: #63362f !important; +} +.op-darkBrown { + background-color: rgba(99, 54, 47, 0.7); +} +.ribbed-darkBrown { + background: #63362f 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) !important; + background-size: 40px 40px !important; +} +.before-bg-darkBrown:before { + background: #63362f !important; +} +.before-fg-darkBrown:before { + color: #63362f !important; +} +.after-bg-darkBrown:after { + background: #63362f !important; +} +.after-fg-darkBrown:after { + color: #63362f !important; +} +.bg-hover-darkBrown:hover { + background: #63362f !important; +} +.bg-active-darkBrown:active { + background: #63362f !important; +} +.bg-focus-darkBrown:focus { + background: #63362f !important; +} +.fg-hover-darkBrown:hover { + color: #63362f !important; +} +.fg-active-darkBrown:active { + color: #63362f !important; +} +.fg-focus-darkBrown:focus { + color: #63362f !important; +} +.fg-darkCrimson { + color: #640024 !important; +} +.bg-darkCrimson { + background-color: #640024 !important; +} +.bd-darkCrimson { + border-color: #640024 !important; +} +.ol-darkCrimson { + outline-color: #640024 !important; +} +.op-darkCrimson { + background-color: rgba(100, 0, 36, 0.7); +} +.ribbed-darkCrimson { + background: #640024 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) !important; + background-size: 40px 40px !important; +} +.before-bg-darkCrimson:before { + background: #640024 !important; +} +.before-fg-darkCrimson:before { + color: #640024 !important; +} +.after-bg-darkCrimson:after { + background: #640024 !important; +} +.after-fg-darkCrimson:after { + color: #640024 !important; +} +.bg-hover-darkCrimson:hover { + background: #640024 !important; +} +.bg-active-darkCrimson:active { + background: #640024 !important; +} +.bg-focus-darkCrimson:focus { + background: #640024 !important; +} +.fg-hover-darkCrimson:hover { + color: #640024 !important; +} +.fg-active-darkCrimson:active { + color: #640024 !important; +} +.fg-focus-darkCrimson:focus { + color: #640024 !important; +} +.fg-darkMagenta { + color: #81003c !important; +} +.bg-darkMagenta { + background-color: #81003c !important; +} +.bd-darkMagenta { + border-color: #81003c !important; +} +.ol-darkMagenta { + outline-color: #81003c !important; +} +.op-darkMagenta { + background-color: rgba(129, 0, 60, 0.7); +} +.ribbed-darkMagenta { + background: #81003c 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) !important; + background-size: 40px 40px !important; +} +.before-bg-darkMagenta:before { + background: #81003c !important; +} +.before-fg-darkMagenta:before { + color: #81003c !important; +} +.after-bg-darkMagenta:after { + background: #81003c !important; +} +.after-fg-darkMagenta:after { + color: #81003c !important; +} +.bg-hover-darkMagenta:hover { + background: #81003c !important; +} +.bg-active-darkMagenta:active { + background: #81003c !important; +} +.bg-focus-darkMagenta:focus { + background: #81003c !important; +} +.fg-hover-darkMagenta:hover { + color: #81003c !important; +} +.fg-active-darkMagenta:active { + color: #81003c !important; +} +.fg-focus-darkMagenta:focus { + color: #81003c !important; +} +.fg-darkIndigo { + color: #4b0096 !important; +} +.bg-darkIndigo { + background-color: #4b0096 !important; +} +.bd-darkIndigo { + border-color: #4b0096 !important; +} +.ol-darkIndigo { + outline-color: #4b0096 !important; +} +.op-darkIndigo { + background-color: rgba(75, 0, 150, 0.7); +} +.ribbed-darkIndigo { + background: #4b0096 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) !important; + background-size: 40px 40px !important; +} +.before-bg-darkIndigo:before { + background: #4b0096 !important; +} +.before-fg-darkIndigo:before { + color: #4b0096 !important; +} +.after-bg-darkIndigo:after { + background: #4b0096 !important; +} +.after-fg-darkIndigo:after { + color: #4b0096 !important; +} +.bg-hover-darkIndigo:hover { + background: #4b0096 !important; +} +.bg-active-darkIndigo:active { + background: #4b0096 !important; +} +.bg-focus-darkIndigo:focus { + background: #4b0096 !important; +} +.fg-hover-darkIndigo:hover { + color: #4b0096 !important; +} +.fg-active-darkIndigo:active { + color: #4b0096 !important; +} +.fg-focus-darkIndigo:focus { + color: #4b0096 !important; +} +.fg-darkCyan { + color: #1b6eae !important; +} +.bg-darkCyan { + background-color: #1b6eae !important; +} +.bd-darkCyan { + border-color: #1b6eae !important; +} +.ol-darkCyan { + outline-color: #1b6eae !important; +} +.op-darkCyan { + background-color: rgba(27, 110, 174, 0.7); +} +.ribbed-darkCyan { + background: #1b6eae 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) !important; + background-size: 40px 40px !important; +} +.before-bg-darkCyan:before { + background: #1b6eae !important; +} +.before-fg-darkCyan:before { + color: #1b6eae !important; +} +.after-bg-darkCyan:after { + background: #1b6eae !important; +} +.after-fg-darkCyan:after { + color: #1b6eae !important; +} +.bg-hover-darkCyan:hover { + background: #1b6eae !important; +} +.bg-active-darkCyan:active { + background: #1b6eae !important; +} +.bg-focus-darkCyan:focus { + background: #1b6eae !important; +} +.fg-hover-darkCyan:hover { + color: #1b6eae !important; +} +.fg-active-darkCyan:active { + color: #1b6eae !important; +} +.fg-focus-darkCyan:focus { + color: #1b6eae !important; +} +.fg-darkCobalt { + color: #00356a !important; +} +.bg-darkCobalt { + background-color: #00356a !important; +} +.bd-darkCobalt { + border-color: #00356a !important; +} +.ol-darkCobalt { + outline-color: #00356a !important; +} +.op-darkCobalt { + background-color: rgba(0, 53, 106, 0.7); +} +.ribbed-darkCobalt { + background: #00356a 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) !important; + background-size: 40px 40px !important; +} +.before-bg-darkCobalt:before { + background: #00356a !important; +} +.before-fg-darkCobalt:before { + color: #00356a !important; +} +.after-bg-darkCobalt:after { + background: #00356a !important; +} +.after-fg-darkCobalt:after { + color: #00356a !important; +} +.bg-hover-darkCobalt:hover { + background: #00356a !important; +} +.bg-active-darkCobalt:active { + background: #00356a !important; +} +.bg-focus-darkCobalt:focus { + background: #00356a !important; +} +.fg-hover-darkCobalt:hover { + color: #00356a !important; +} +.fg-active-darkCobalt:active { + color: #00356a !important; +} +.fg-focus-darkCobalt:focus { + color: #00356a !important; +} +.fg-darkTeal { + color: #004050 !important; +} +.bg-darkTeal { + background-color: #004050 !important; +} +.bd-darkTeal { + border-color: #004050 !important; +} +.ol-darkTeal { + outline-color: #004050 !important; +} +.op-darkTeal { + background-color: rgba(0, 64, 80, 0.7); +} +.ribbed-darkTeal { + background: #004050 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) !important; + background-size: 40px 40px !important; +} +.before-bg-darkTeal:before { + background: #004050 !important; +} +.before-fg-darkTeal:before { + color: #004050 !important; +} +.after-bg-darkTeal:after { + background: #004050 !important; +} +.after-fg-darkTeal:after { + color: #004050 !important; +} +.bg-hover-darkTeal:hover { + background: #004050 !important; +} +.bg-active-darkTeal:active { + background: #004050 !important; +} +.bg-focus-darkTeal:focus { + background: #004050 !important; +} +.fg-hover-darkTeal:hover { + color: #004050 !important; +} +.fg-active-darkTeal:active { + color: #004050 !important; +} +.fg-focus-darkTeal:focus { + color: #004050 !important; +} +.fg-darkEmerald { + color: #003e00 !important; +} +.bg-darkEmerald { + background-color: #003e00 !important; +} +.bd-darkEmerald { + border-color: #003e00 !important; +} +.ol-darkEmerald { + outline-color: #003e00 !important; +} +.op-darkEmerald { + background-color: rgba(0, 62, 0, 0.7); +} +.ribbed-darkEmerald { + background: #003e00 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) !important; + background-size: 40px 40px !important; +} +.before-bg-darkEmerald:before { + background: #003e00 !important; +} +.before-fg-darkEmerald:before { + color: #003e00 !important; +} +.after-bg-darkEmerald:after { + background: #003e00 !important; +} +.after-fg-darkEmerald:after { + color: #003e00 !important; +} +.bg-hover-darkEmerald:hover { + background: #003e00 !important; +} +.bg-active-darkEmerald:active { + background: #003e00 !important; +} +.bg-focus-darkEmerald:focus { + background: #003e00 !important; +} +.fg-hover-darkEmerald:hover { + color: #003e00 !important; +} +.fg-active-darkEmerald:active { + color: #003e00 !important; +} +.fg-focus-darkEmerald:focus { + color: #003e00 !important; +} +.fg-darkGreen { + color: #128023 !important; +} +.bg-darkGreen { + background-color: #128023 !important; +} +.bd-darkGreen { + border-color: #128023 !important; +} +.ol-darkGreen { + outline-color: #128023 !important; +} +.op-darkGreen { + background-color: rgba(18, 128, 35, 0.7); +} +.ribbed-darkGreen { + background: #128023 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) !important; + background-size: 40px 40px !important; +} +.before-bg-darkGreen:before { + background: #128023 !important; +} +.before-fg-darkGreen:before { + color: #128023 !important; +} +.after-bg-darkGreen:after { + background: #128023 !important; +} +.after-fg-darkGreen:after { + color: #128023 !important; +} +.bg-hover-darkGreen:hover { + background: #128023 !important; +} +.bg-active-darkGreen:active { + background: #128023 !important; +} +.bg-focus-darkGreen:focus { + background: #128023 !important; +} +.fg-hover-darkGreen:hover { + color: #128023 !important; +} +.fg-active-darkGreen:active { + color: #128023 !important; +} +.fg-focus-darkGreen:focus { + color: #128023 !important; +} +.fg-darkOrange { + color: #bf5a15 !important; +} +.bg-darkOrange { + background-color: #bf5a15 !important; +} +.bd-darkOrange { + border-color: #bf5a15 !important; +} +.ol-darkOrange { + outline-color: #bf5a15 !important; +} +.op-darkOrange { + background-color: rgba(191, 90, 21, 0.7); +} +.ribbed-darkOrange { + background: #bf5a15 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) !important; + background-size: 40px 40px !important; +} +.before-bg-darkOrange:before { + background: #bf5a15 !important; +} +.before-fg-darkOrange:before { + color: #bf5a15 !important; +} +.after-bg-darkOrange:after { + background: #bf5a15 !important; +} +.after-fg-darkOrange:after { + color: #bf5a15 !important; +} +.bg-hover-darkOrange:hover { + background: #bf5a15 !important; +} +.bg-active-darkOrange:active { + background: #bf5a15 !important; +} +.bg-focus-darkOrange:focus { + background: #bf5a15 !important; +} +.fg-hover-darkOrange:hover { + color: #bf5a15 !important; +} +.fg-active-darkOrange:active { + color: #bf5a15 !important; +} +.fg-focus-darkOrange:focus { + color: #bf5a15 !important; +} +.fg-darkRed { + color: #9a1616 !important; +} +.bg-darkRed { + background-color: #9a1616 !important; +} +.bd-darkRed { + border-color: #9a1616 !important; +} +.ol-darkRed { + outline-color: #9a1616 !important; +} +.op-darkRed { + background-color: rgba(154, 22, 22, 0.7); +} +.ribbed-darkRed { + background: #9a1616 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) !important; + background-size: 40px 40px !important; +} +.before-bg-darkRed:before { + background: #9a1616 !important; +} +.before-fg-darkRed:before { + color: #9a1616 !important; +} +.after-bg-darkRed:after { + background: #9a1616 !important; +} +.after-fg-darkRed:after { + color: #9a1616 !important; +} +.bg-hover-darkRed:hover { + background: #9a1616 !important; +} +.bg-active-darkRed:active { + background: #9a1616 !important; +} +.bg-focus-darkRed:focus { + background: #9a1616 !important; +} +.fg-hover-darkRed:hover { + color: #9a1616 !important; +} +.fg-active-darkRed:active { + color: #9a1616 !important; +} +.fg-focus-darkRed:focus { + color: #9a1616 !important; +} +.fg-darkPink { + color: #9a165a !important; +} +.bg-darkPink { + background-color: #9a165a !important; +} +.bd-darkPink { + border-color: #9a165a !important; +} +.ol-darkPink { + outline-color: #9a165a !important; +} +.op-darkPink { + background-color: rgba(154, 22, 90, 0.7); +} +.ribbed-darkPink { + background: #9a165a 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) !important; + background-size: 40px 40px !important; +} +.before-bg-darkPink:before { + background: #9a165a !important; +} +.before-fg-darkPink:before { + color: #9a165a !important; +} +.after-bg-darkPink:after { + background: #9a165a !important; +} +.after-fg-darkPink:after { + color: #9a165a !important; +} +.bg-hover-darkPink:hover { + background: #9a165a !important; +} +.bg-active-darkPink:active { + background: #9a165a !important; +} +.bg-focus-darkPink:focus { + background: #9a165a !important; +} +.fg-hover-darkPink:hover { + color: #9a165a !important; +} +.fg-active-darkPink:active { + color: #9a165a !important; +} +.fg-focus-darkPink:focus { + color: #9a165a !important; +} +.fg-darkViolet { + color: #57169a !important; +} +.bg-darkViolet { + background-color: #57169a !important; +} +.bd-darkViolet { + border-color: #57169a !important; +} +.ol-darkViolet { + outline-color: #57169a !important; +} +.op-darkViolet { + background-color: rgba(87, 22, 154, 0.7); +} +.ribbed-darkViolet { + background: #57169a 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) !important; + background-size: 40px 40px !important; +} +.before-bg-darkViolet:before { + background: #57169a !important; +} +.before-fg-darkViolet:before { + color: #57169a !important; +} +.after-bg-darkViolet:after { + background: #57169a !important; +} +.after-fg-darkViolet:after { + color: #57169a !important; +} +.bg-hover-darkViolet:hover { + background: #57169a !important; +} +.bg-active-darkViolet:active { + background: #57169a !important; +} +.bg-focus-darkViolet:focus { + background: #57169a !important; +} +.fg-hover-darkViolet:hover { + color: #57169a !important; +} +.fg-active-darkViolet:active { + color: #57169a !important; +} +.fg-focus-darkViolet:focus { + color: #57169a !important; +} +.fg-darkBlue { + color: #16499a !important; +} +.bg-darkBlue { + background-color: #16499a !important; +} +.bd-darkBlue { + border-color: #16499a !important; +} +.ol-darkBlue { + outline-color: #16499a !important; +} +.op-darkBlue { + background-color: rgba(22, 73, 154, 0.7); +} +.ribbed-darkBlue { + background: #16499a 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) !important; + background-size: 40px 40px !important; +} +.before-bg-darkBlue:before { + background: #16499a !important; +} +.before-fg-darkBlue:before { + color: #16499a !important; +} +.after-bg-darkBlue:after { + background: #16499a !important; +} +.after-fg-darkBlue:after { + color: #16499a !important; +} +.bg-hover-darkBlue:hover { + background: #16499a !important; +} +.bg-active-darkBlue:active { + background: #16499a !important; +} +.bg-focus-darkBlue:focus { + background: #16499a !important; +} +.fg-hover-darkBlue:hover { + color: #16499a !important; +} +.fg-active-darkBlue:active { + color: #16499a !important; +} +.fg-focus-darkBlue:focus { + color: #16499a !important; +} +.fg-lightBlue { + color: #4390df !important; +} +.bg-lightBlue { + background-color: #4390df !important; +} +.bd-lightBlue { + border-color: #4390df !important; +} +.ol-lightBlue { + outline-color: #4390df !important; +} +.op-lightBlue { + background-color: rgba(67, 144, 223, 0.7); +} +.ribbed-lightBlue { + background: #4390df 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) !important; + background-size: 40px 40px !important; +} +.before-bg-lightBlue:before { + background: #4390df !important; +} +.before-fg-lightBlue:before { + color: #4390df !important; +} +.after-bg-lightBlue:after { + background: #4390df !important; +} +.after-fg-lightBlue:after { + color: #4390df !important; +} +.bg-hover-lightBlue:hover { + background: #4390df !important; +} +.bg-active-lightBlue:active { + background: #4390df !important; +} +.bg-focus-lightBlue:focus { + background: #4390df !important; +} +.fg-hover-lightBlue:hover { + color: #4390df !important; +} +.fg-active-lightBlue:active { + color: #4390df !important; +} +.fg-focus-lightBlue:focus { + color: #4390df !important; +} +.fg-lighterBlue { + color: #00ccff !important; +} +.bg-lighterBlue { + background-color: #00ccff !important; +} +.bd-lighterBlue { + border-color: #00ccff !important; +} +.ol-lighterBlue { + outline-color: #00ccff !important; +} +.op-lighterBlue { + background-color: rgba(0, 204, 255, 0.7); +} +.ribbed-lighterBlue { + background: #00ccff 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) !important; + background-size: 40px 40px !important; +} +.before-bg-lighterBlue:before { + background: #00ccff !important; +} +.before-fg-lighterBlue:before { + color: #00ccff !important; +} +.after-bg-lighterBlue:after { + background: #00ccff !important; +} +.after-fg-lighterBlue:after { + color: #00ccff !important; +} +.bg-hover-lighterBlue:hover { + background: #00ccff !important; +} +.bg-active-lighterBlue:active { + background: #00ccff !important; +} +.bg-focus-lighterBlue:focus { + background: #00ccff !important; +} +.fg-hover-lighterBlue:hover { + color: #00ccff !important; +} +.fg-active-lighterBlue:active { + color: #00ccff !important; +} +.fg-focus-lighterBlue:focus { + color: #00ccff !important; +} +.fg-lightTeal { + color: #45fffd !important; +} +.bg-lightTeal { + background-color: #45fffd !important; +} +.bd-lightTeal { + border-color: #45fffd !important; +} +.ol-lightTeal { + outline-color: #45fffd !important; +} +.op-lightTeal { + background-color: rgba(69, 255, 253, 0.7); +} +.ribbed-lightTeal { + background: #45fffd 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) !important; + background-size: 40px 40px !important; +} +.before-bg-lightTeal:before { + background: #45fffd !important; +} +.before-fg-lightTeal:before { + color: #45fffd !important; +} +.after-bg-lightTeal:after { + background: #45fffd !important; +} +.after-fg-lightTeal:after { + color: #45fffd !important; +} +.bg-hover-lightTeal:hover { + background: #45fffd !important; +} +.bg-active-lightTeal:active { + background: #45fffd !important; +} +.bg-focus-lightTeal:focus { + background: #45fffd !important; +} +.fg-hover-lightTeal:hover { + color: #45fffd !important; +} +.fg-active-lightTeal:active { + color: #45fffd !important; +} +.fg-focus-lightTeal:focus { + color: #45fffd !important; +} +.fg-lightOlive { + color: #78aa1c !important; +} +.bg-lightOlive { + background-color: #78aa1c !important; +} +.bd-lightOlive { + border-color: #78aa1c !important; +} +.ol-lightOlive { + outline-color: #78aa1c !important; +} +.op-lightOlive { + background-color: rgba(120, 170, 28, 0.7); +} +.ribbed-lightOlive { + background: #78aa1c 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) !important; + background-size: 40px 40px !important; +} +.before-bg-lightOlive:before { + background: #78aa1c !important; +} +.before-fg-lightOlive:before { + color: #78aa1c !important; +} +.after-bg-lightOlive:after { + background: #78aa1c !important; +} +.after-fg-lightOlive:after { + color: #78aa1c !important; +} +.bg-hover-lightOlive:hover { + background: #78aa1c !important; +} +.bg-active-lightOlive:active { + background: #78aa1c !important; +} +.bg-focus-lightOlive:focus { + background: #78aa1c !important; +} +.fg-hover-lightOlive:hover { + color: #78aa1c !important; +} +.fg-active-lightOlive:active { + color: #78aa1c !important; +} +.fg-focus-lightOlive:focus { + color: #78aa1c !important; +} +.fg-lightOrange { + color: #ffc194 !important; +} +.bg-lightOrange { + background-color: #ffc194 !important; +} +.bd-lightOrange { + border-color: #ffc194 !important; +} +.ol-lightOrange { + outline-color: #ffc194 !important; +} +.op-lightOrange { + background-color: rgba(255, 193, 148, 0.7); +} +.ribbed-lightOrange { + background: #ffc194 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) !important; + background-size: 40px 40px !important; +} +.before-bg-lightOrange:before { + background: #ffc194 !important; +} +.before-fg-lightOrange:before { + color: #ffc194 !important; +} +.after-bg-lightOrange:after { + background: #ffc194 !important; +} +.after-fg-lightOrange:after { + color: #ffc194 !important; +} +.bg-hover-lightOrange:hover { + background: #ffc194 !important; +} +.bg-active-lightOrange:active { + background: #ffc194 !important; +} +.bg-focus-lightOrange:focus { + background: #ffc194 !important; +} +.fg-hover-lightOrange:hover { + color: #ffc194 !important; +} +.fg-active-lightOrange:active { + color: #ffc194 !important; +} +.fg-focus-lightOrange:focus { + color: #ffc194 !important; +} +.fg-lightPink { + color: #f472d0 !important; +} +.bg-lightPink { + background-color: #f472d0 !important; +} +.bd-lightPink { + border-color: #f472d0 !important; +} +.ol-lightPink { + outline-color: #f472d0 !important; +} +.op-lightPink { + background-color: rgba(244, 114, 208, 0.7); +} +.ribbed-lightPink { + background: #f472d0 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) !important; + background-size: 40px 40px !important; +} +.before-bg-lightPink:before { + background: #f472d0 !important; +} +.before-fg-lightPink:before { + color: #f472d0 !important; +} +.after-bg-lightPink:after { + background: #f472d0 !important; +} +.after-fg-lightPink:after { + color: #f472d0 !important; +} +.bg-hover-lightPink:hover { + background: #f472d0 !important; +} +.bg-active-lightPink:active { + background: #f472d0 !important; +} +.bg-focus-lightPink:focus { + background: #f472d0 !important; +} +.fg-hover-lightPink:hover { + color: #f472d0 !important; +} +.fg-active-lightPink:active { + color: #f472d0 !important; +} +.fg-focus-lightPink:focus { + color: #f472d0 !important; +} +.fg-lightRed { + color: #da5a53 !important; +} +.bg-lightRed { + background-color: #da5a53 !important; +} +.bd-lightRed { + border-color: #da5a53 !important; +} +.ol-lightRed { + outline-color: #da5a53 !important; +} +.op-lightRed { + background-color: rgba(218, 90, 83, 0.7); +} +.ribbed-lightRed { + background: #da5a53 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) !important; + background-size: 40px 40px !important; +} +.before-bg-lightRed:before { + background: #da5a53 !important; +} +.before-fg-lightRed:before { + color: #da5a53 !important; +} +.after-bg-lightRed:after { + background: #da5a53 !important; +} +.after-fg-lightRed:after { + color: #da5a53 !important; +} +.bg-hover-lightRed:hover { + background: #da5a53 !important; +} +.bg-active-lightRed:active { + background: #da5a53 !important; +} +.bg-focus-lightRed:focus { + background: #da5a53 !important; +} +.fg-hover-lightRed:hover { + color: #da5a53 !important; +} +.fg-active-lightRed:active { + color: #da5a53 !important; +} +.fg-focus-lightRed:focus { + color: #da5a53 !important; +} +.fg-lightGreen { + color: #7ad61d !important; +} +.bg-lightGreen { + background-color: #7ad61d !important; +} +.bd-lightGreen { + border-color: #7ad61d !important; +} +.ol-lightGreen { + outline-color: #7ad61d !important; +} +.op-lightGreen { + background-color: rgba(122, 214, 29, 0.7); +} +.ribbed-lightGreen { + background: #7ad61d 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) !important; + background-size: 40px 40px !important; +} +.before-bg-lightGreen:before { + background: #7ad61d !important; +} +.before-fg-lightGreen:before { + color: #7ad61d !important; +} +.after-bg-lightGreen:after { + background: #7ad61d !important; +} +.after-fg-lightGreen:after { + color: #7ad61d !important; +} +.bg-hover-lightGreen:hover { + background: #7ad61d !important; +} +.bg-active-lightGreen:active { + background: #7ad61d !important; +} +.bg-focus-lightGreen:focus { + background: #7ad61d !important; +} +.fg-hover-lightGreen:hover { + color: #7ad61d !important; +} +.fg-active-lightGreen:active { + color: #7ad61d !important; +} +.fg-focus-lightGreen:focus { + color: #7ad61d !important; +} +.fg-lightCyan { + color: #59cde2 !important; +} +.bg-lightCyan { + background-color: #59cde2 !important; +} +.bd-lightCyan { + border-color: #59cde2 !important; +} +.ol-lightCyan { + outline-color: #59cde2 !important; +} +.op-lightCyan { + background-color: rgba(89, 205, 226, 0.7); +} +.ribbed-lightCyan { + background: #59cde2 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) !important; + background-size: 40px 40px !important; +} +.before-bg-lightCyan:before { + background: #59cde2 !important; +} +.before-fg-lightCyan:before { + color: #59cde2 !important; +} +.after-bg-lightCyan:after { + background: #59cde2 !important; +} +.after-fg-lightCyan:after { + color: #59cde2 !important; +} +.bg-hover-lightCyan:hover { + background: #59cde2 !important; +} +.bg-active-lightCyan:active { + background: #59cde2 !important; +} +.bg-focus-lightCyan:focus { + background: #59cde2 !important; +} +.fg-hover-lightCyan:hover { + color: #59cde2 !important; +} +.fg-active-lightCyan:active { + color: #59cde2 !important; +} +.fg-focus-lightCyan:focus { + color: #59cde2 !important; +} +.fg-grayed { + color: #585858 !important; +} +.bg-grayed { + background-color: #585858 !important; +} +.bd-grayed { + border-color: #585858 !important; +} +.ol-grayed { + outline-color: #585858 !important; +} +.op-grayed { + background-color: rgba(88, 88, 88, 0.7); +} +.ribbed-grayed { + background: #585858 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) !important; + background-size: 40px 40px !important; +} +.before-bg-grayed:before { + background: #585858 !important; +} +.before-fg-grayed:before { + color: #585858 !important; +} +.after-bg-grayed:after { + background: #585858 !important; +} +.after-fg-grayed:after { + color: #585858 !important; +} +.bg-hover-grayed:hover { + background: #585858 !important; +} +.bg-active-grayed:active { + background: #585858 !important; +} +.bg-focus-grayed:focus { + background: #585858 !important; +} +.fg-hover-grayed:hover { + color: #585858 !important; +} +.fg-active-grayed:active { + color: #585858 !important; +} +.fg-focus-grayed:focus { + color: #585858 !important; +} +.fg-grayDarker { + color: #222222 !important; +} +.bg-grayDarker { + background-color: #222222 !important; +} +.bd-grayDarker { + border-color: #222222 !important; +} +.ol-grayDarker { + outline-color: #222222 !important; +} +.op-grayDarker { + background-color: rgba(34, 34, 34, 0.7); +} +.ribbed-grayDarker { + background: #222222 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) !important; + background-size: 40px 40px !important; +} +.before-bg-grayDarker:before { + background: #222222 !important; +} +.before-fg-grayDarker:before { + color: #222222 !important; +} +.after-bg-grayDarker:after { + background: #222222 !important; +} +.after-fg-grayDarker:after { + color: #222222 !important; +} +.bg-hover-grayDarker:hover { + background: #222222 !important; +} +.bg-active-grayDarker:active { + background: #222222 !important; +} +.bg-focus-grayDarker:focus { + background: #222222 !important; +} +.fg-hover-grayDarker:hover { + color: #222222 !important; +} +.fg-active-grayDarker:active { + color: #222222 !important; +} +.fg-focus-grayDarker:focus { + color: #222222 !important; +} +.fg-grayDark { + color: #333333 !important; +} +.bg-grayDark { + background-color: #333333 !important; +} +.bd-grayDark { + border-color: #333333 !important; +} +.ol-grayDark { + outline-color: #333333 !important; +} +.op-grayDark { + background-color: rgba(51, 51, 51, 0.7); +} +.ribbed-grayDark { + background: #333333 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) !important; + background-size: 40px 40px !important; +} +.before-bg-grayDark:before { + background: #333333 !important; +} +.before-fg-grayDark:before { + color: #333333 !important; +} +.after-bg-grayDark:after { + background: #333333 !important; +} +.after-fg-grayDark:after { + color: #333333 !important; +} +.bg-hover-grayDark:hover { + background: #333333 !important; +} +.bg-active-grayDark:active { + background: #333333 !important; +} +.bg-focus-grayDark:focus { + background: #333333 !important; +} +.fg-hover-grayDark:hover { + color: #333333 !important; +} +.fg-active-grayDark:active { + color: #333333 !important; +} +.fg-focus-grayDark:focus { + color: #333333 !important; +} +.fg-gray { + color: #555555 !important; +} +.bg-gray { + background-color: #555555 !important; +} +.bd-gray { + border-color: #555555 !important; +} +.ol-gray { + outline-color: #555555 !important; +} +.op-gray { + background-color: rgba(85, 85, 85, 0.7); +} +.ribbed-gray { + background: #555555 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) !important; + background-size: 40px 40px !important; +} +.before-bg-gray:before { + background: #555555 !important; +} +.before-fg-gray:before { + color: #555555 !important; +} +.after-bg-gray:after { + background: #555555 !important; +} +.after-fg-gray:after { + color: #555555 !important; +} +.bg-hover-gray:hover { + background: #555555 !important; +} +.bg-active-gray:active { + background: #555555 !important; +} +.bg-focus-gray:focus { + background: #555555 !important; +} +.fg-hover-gray:hover { + color: #555555 !important; +} +.fg-active-gray:active { + color: #555555 !important; +} +.fg-focus-gray:focus { + color: #555555 !important; +} +.fg-grayLight { + color: #999999 !important; +} +.bg-grayLight { + background-color: #999999 !important; +} +.bd-grayLight { + border-color: #999999 !important; +} +.ol-grayLight { + outline-color: #999999 !important; +} +.op-grayLight { + background-color: rgba(153, 153, 153, 0.7); +} +.ribbed-grayLight { + background: #999999 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) !important; + background-size: 40px 40px !important; +} +.before-bg-grayLight:before { + background: #999999 !important; +} +.before-fg-grayLight:before { + color: #999999 !important; +} +.after-bg-grayLight:after { + background: #999999 !important; +} +.after-fg-grayLight:after { + color: #999999 !important; +} +.bg-hover-grayLight:hover { + background: #999999 !important; +} +.bg-active-grayLight:active { + background: #999999 !important; +} +.bg-focus-grayLight:focus { + background: #999999 !important; +} +.fg-hover-grayLight:hover { + color: #999999 !important; +} +.fg-active-grayLight:active { + color: #999999 !important; +} +.fg-focus-grayLight:focus { + color: #999999 !important; +} +.fg-grayLighter { + color: #eeeeee !important; +} +.bg-grayLighter { + background-color: #eeeeee !important; +} +.bd-grayLighter { + border-color: #eeeeee !important; +} +.ol-grayLighter { + outline-color: #eeeeee !important; +} +.op-grayLighter { + background-color: rgba(238, 238, 238, 0.7); +} +.ribbed-grayLighter { + background: #eeeeee 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) !important; + background-size: 40px 40px !important; +} +.before-bg-grayLighter:before { + background: #eeeeee !important; +} +.before-fg-grayLighter:before { + color: #eeeeee !important; +} +.after-bg-grayLighter:after { + background: #eeeeee !important; +} +.after-fg-grayLighter:after { + color: #eeeeee !important; +} +.bg-hover-grayLighter:hover { + background: #eeeeee !important; +} +.bg-active-grayLighter:active { + background: #eeeeee !important; +} +.bg-focus-grayLighter:focus { + background: #eeeeee !important; +} +.fg-hover-grayLighter:hover { + color: #eeeeee !important; +} +.fg-active-grayLighter:active { + color: #eeeeee !important; +} +.fg-focus-grayLighter:focus { + color: #eeeeee !important; +} +.fg-lightGray { + color: #999999 !important; +} +.bg-lightGray { + background-color: #999999 !important; +} +.bd-lightGray { + border-color: #999999 !important; +} +.ol-lightGray { + outline-color: #999999 !important; +} +.op-lightGray { + background-color: rgba(153, 153, 153, 0.7); +} +.ribbed-lightGray { + background: #999999 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) !important; + background-size: 40px 40px !important; +} +.before-bg-lightGray:before { + background: #999999 !important; +} +.before-fg-lightGray:before { + color: #999999 !important; +} +.after-bg-lightGray:after { + background: #999999 !important; +} +.after-fg-lightGray:after { + color: #999999 !important; +} +.bg-hover-lightGray:hover { + background: #999999 !important; +} +.bg-active-lightGray:active { + background: #999999 !important; +} +.bg-focus-lightGray:focus { + background: #999999 !important; +} +.fg-hover-lightGray:hover { + color: #999999 !important; +} +.fg-active-lightGray:active { + color: #999999 !important; +} +.fg-focus-lightGray:focus { + color: #999999 !important; +} +.fg-lighterGray { + color: #eeeeee !important; +} +.bg-lighterGray { + background-color: #eeeeee !important; +} +.bd-lighterGray { + border-color: #eeeeee !important; +} +.ol-lighterGray { + outline-color: #eeeeee !important; +} +.op-lighterGray { + background-color: rgba(238, 238, 238, 0.7); +} +.ribbed-lighterGray { + background: #eeeeee 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) !important; + background-size: 40px 40px !important; +} +.before-bg-lighterGray:before { + background: #eeeeee !important; +} +.before-fg-lighterGray:before { + color: #eeeeee !important; +} +.after-bg-lighterGray:after { + background: #eeeeee !important; +} +.after-fg-lighterGray:after { + color: #eeeeee !important; +} +.bg-hover-lighterGray:hover { + background: #eeeeee !important; +} +.bg-active-lighterGray:active { + background: #eeeeee !important; +} +.bg-focus-lighterGray:focus { + background: #eeeeee !important; +} +.fg-hover-lighterGray:hover { + color: #eeeeee !important; +} +.fg-active-lighterGray:active { + color: #eeeeee !important; +} +.fg-focus-lighterGray:focus { + color: #eeeeee !important; +} +.fg-darkGray { + color: #333333 !important; +} +.bg-darkGray { + background-color: #333333 !important; +} +.bd-darkGray { + border-color: #333333 !important; +} +.ol-darkGray { + outline-color: #333333 !important; +} +.op-darkGray { + background-color: rgba(51, 51, 51, 0.7); +} +.ribbed-darkGray { + background: #333333 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) !important; + background-size: 40px 40px !important; +} +.before-bg-darkGray:before { + background: #333333 !important; +} +.before-fg-darkGray:before { + color: #333333 !important; +} +.after-bg-darkGray:after { + background: #333333 !important; +} +.after-fg-darkGray:after { + color: #333333 !important; +} +.bg-hover-darkGray:hover { + background: #333333 !important; +} +.bg-active-darkGray:active { + background: #333333 !important; +} +.bg-focus-darkGray:focus { + background: #333333 !important; +} +.fg-hover-darkGray:hover { + color: #333333 !important; +} +.fg-active-darkGray:active { + color: #333333 !important; +} +.fg-focus-darkGray:focus { + color: #333333 !important; +} +.fg-darkerGray { + color: #222222 !important; +} +.bg-darkerGray { + background-color: #222222 !important; +} +.bd-darkerGray { + border-color: #222222 !important; +} +.ol-darkerGray { + outline-color: #222222 !important; +} +.op-darkerGray { + background-color: rgba(34, 34, 34, 0.7); +} +.ribbed-darkerGray { + background: #222222 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) !important; + background-size: 40px 40px !important; +} +.before-bg-darkerGray:before { + background: #222222 !important; +} +.before-fg-darkerGray:before { + color: #222222 !important; +} +.after-bg-darkerGray:after { + background: #222222 !important; +} +.after-fg-darkerGray:after { + color: #222222 !important; +} +.bg-hover-darkerGray:hover { + background: #222222 !important; +} +.bg-active-darkerGray:active { + background: #222222 !important; +} +.bg-focus-darkerGray:focus { + background: #222222 !important; +} +.fg-hover-darkerGray:hover { + color: #222222 !important; +} +.fg-active-darkerGray:active { + color: #222222 !important; +} +.fg-focus-darkerGray:focus { + color: #222222 !important; +} +.fg-darker { + color: #222222 !important; +} +.bg-darker { + background-color: #222222 !important; +} +.bd-darker { + border-color: #222222 !important; +} +.ol-darker { + outline-color: #222222 !important; +} +.op-darker { + background-color: rgba(34, 34, 34, 0.7); +} +.ribbed-darker { + background: #222222 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) !important; + background-size: 40px 40px !important; +} +.before-bg-darker:before { + background: #222222 !important; +} +.before-fg-darker:before { + color: #222222 !important; +} +.after-bg-darker:after { + background: #222222 !important; +} +.after-fg-darker:after { + color: #222222 !important; +} +.bg-hover-darker:hover { + background: #222222 !important; +} +.bg-active-darker:active { + background: #222222 !important; +} +.bg-focus-darker:focus { + background: #222222 !important; +} +.fg-hover-darker:hover { + color: #222222 !important; +} +.fg-active-darker:active { + color: #222222 !important; +} +.fg-focus-darker:focus { + color: #222222 !important; +} +.dropdown-toggle { + position: relative; + cursor: pointer; +} +.dropdown-toggle:before { + display: block; + position: absolute; + vertical-align: middle; + color: transparent; + font-size: 0; + content: ""; + height: 5px; + width: 5px; + background-color: transparent; + border-left: 1px solid; + border-bottom: 1px solid; + border-color: #1d1d1d; + top: 50%; + left: 100%; + margin-left: -1rem; + margin-top: -0.1625rem; + z-index: 2; + -webkit-transform: rotate(-45deg); + transform: rotate(-45deg); +} +.dropdown-toggle.drop-marker-light:before { + border-color: #ffffff; +} +*.dropdown-toggle { + padding-right: 1.625rem; +} +.flush-list { + padding: 0; + margin: 0; + list-style: none inside none; +} +.shadow { + box-shadow: 0 2px 4px rgba(0, 0, 0, 0.35); +} +.before-shadow:before { + box-shadow: 0 2px 4px rgba(0, 0, 0, 0.35); +} +.after-shadow:after { + box-shadow: 0 2px 4px rgba(0, 0, 0, 0.35); +} +.block-shadow { + box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.3); +} +.block-shadow-success { + box-shadow: 0 0 25px 0 rgba(0, 128, 0, 0.7); +} +.block-shadow-error { + box-shadow: 0 0 25px 0 rgba(128, 0, 0, 0.7); +} +.block-shadow-danger { + box-shadow: 0 0 25px 0 rgba(128, 0, 0, 0.7); +} +.block-shadow-warning { + box-shadow: 0 0 25px 0 rgba(255, 165, 0, 0.7); +} +.block-shadow-info { + box-shadow: 0 0 25px 0 rgba(89, 205, 226, 0.7); +} +.block-shadow-impact { + box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2); +} +.bottom-shadow { + box-shadow: -1px 6px 6px -6px rgba(0, 0, 0, 0.35); +} +.text-shadow { + text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4); +} +.before-text-shadow:before { + text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4); +} +.after-text-shadow:after { + text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4); +} +.no-shadow { + box-shadow: none !important; +} +.full-size { + width: 100% !important; +} +.block { + display: block !important; +} +.inline-block { + display: inline-block !important; +} +.no-display { + display: none !important; +} +.no-margin { + margin: 0 !important; +} +.no-margin-right { + margin-right: 0 !important; +} +.no-margin-left { + margin-left: 0 !important; +} +.no-margin-top { + margin-top: 0 !important; +} +.no-margin-bottom { + margin-bottom: 0 !important; +} +.no-padding { + padding: 0 !important; +} +.no-padding-left { + padding-left: 0 !important; +} +.no-padding-right { + padding-right: 0 !important; +} +.no-padding-top { + padding-top: 0 !important; +} +.no-padding-bottom { + padding-bottom: 0 !important; +} +.no-float { + float: none !important; +} +.no-visible { + visibility: hidden !important; +} +.no-border { + border: 0 !important; +} +.no-overflow { + overflow: hidden !important; +} +.no-scroll { + overflow: hidden !important; +} +.no-scroll-x { + overflow-x: hidden !important; +} +.no-scroll-y { + overflow-y: hidden !important; +} +.no-wrap { + white-space: nowrap !important; +} +.no-border-left { + border-left: none !important; +} +.no-border-right { + border-right: none !important; +} +.no-border-top { + border-top: none !important; +} +.no-border-bottom { + border-bottom: none !important; +} +.transparent-border { + border-color: transparent !important; +} +.place-right { + float: right !important; +} +.place-left { + float: left !important; +} +.clear-float:before, +.clear-float:after { + display: table; + content: ""; +} +.clear-float:after { + clear: both; +} +.clearfix:before, +.clearfix:after { + display: table; + content: ""; +} +.clearfix:after { + clear: both; +} +.no-user-select { + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; +} +.no-appearance { + -moz-appearance: none; + -webkit-appearance: none; + appearance: none; +} +.debug { + border: 1px dashed red; +} +.example { + padding: .625rem 1.825rem .625rem 2.5rem; + border: 1px #ccc dashed; + position: relative; + margin: 0 0 .625rem 0; + background-color: #ffffff; +} +.example:before, +.example:after { + display: table; + content: ""; +} +.example:after { + clear: both; +} +.example:before { + position: absolute; + content: attr(data-text); + text-transform: lowercase; + left: 1.5rem; + top: 11.875rem; + color: gray; + display: block; + font-size: 1rem; + line-height: 1rem; + height: 1rem; + text-align: right; + white-space: nowrap; + direction: ltr; + width: 12.5rem; + -webkit-transform: rotate(-90deg); + transform: rotate(-90deg); + -webkit-transform-origin: 0 100%; + transform-origin: 0 100%; +} +.video-container { + position: relative; + padding-bottom: 56.25%; + padding-top: 30px; + height: 0; + overflow: hidden; +} +.video-container iframe, +.video-container object, +.video-container embed { + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100%; +} +.padding10 { + padding: 0.625rem; +} +.padding20 { + padding: 1.25rem; +} +.padding30 { + padding: 1.875rem; +} +.padding40 { + padding: 2.5rem; +} +.padding50 { + padding: 3.125rem; +} +.padding60 { + padding: 3.75rem; +} +.padding70 { + padding: 4.375rem; +} +.padding80 { + padding: 5rem; +} +.padding90 { + padding: 5.625rem; +} +.padding100 { + padding: 6.25rem; +} +.padding5 { + padding: 5px; +} +.margin5 { + margin: 5px; +} +.margin10 { + margin: 0.625rem; +} +.margin20 { + margin: 1.25rem; +} +.margin30 { + margin: 1.875rem; +} +.margin40 { + margin: 2.5rem; +} +.margin50 { + margin: 3.125rem; +} +.margin60 { + margin: 3.75rem; +} +.margin70 { + margin: 4.375rem; +} +.margin80 { + margin: 5rem; +} +.margin90 { + margin: 5.625rem; +} +.margin100 { + margin: 6.25rem; +} +.opacity { + opacity: .9; +} +.half-opacity { + opacity: .5; +} +.hi-opacity { + opacity: .2; +} +.element-selected { + border: 4px #4390df solid; +} +.element-selected:after { + position: absolute; + display: block; + border-top: 28px solid #4390df; + border-left: 28px solid transparent; + right: 0; + content: ""; + top: 0; + z-index: 101; +} +.element-selected:before { + position: absolute; + display: block; + content: ""; + background-color: transparent; + border-color: #ffffff; + border-left: 2px solid; + border-bottom: 2px solid; + height: .25rem; + width: .5rem; + right: 0; + top: 0; + z-index: 102; + -webkit-transform: rotate(-45deg); + transform: rotate(-45deg); +} +/* Block function */ +.set-border { + border: 1px #d9d9d9 solid; +} +.set-border.medium-border { + border-width: 8px; +} +.set-border.large-border { + border-width: 16px; +} +/* transform functions */ +.rotate45 { + -webkit-transform: rotate(45deg); + transform: rotate(45deg); +} +.rotate90 { + -webkit-transform: rotate(90deg); + transform: rotate(90deg); +} +.rotate135 { + -webkit-transform: rotate(135deg); + transform: rotate(135deg); +} +.rotate180 { + -webkit-transform: rotate(180deg); + transform: rotate(180deg); +} +.rotate225 { + -webkit-transform: rotate(225deg); + transform: rotate(225deg); +} +.rotate270 { + -webkit-transform: rotate(270deg); + transform: rotate(270deg); +} +.rotate360 { + -webkit-transform: rotate(360deg); + transform: rotate(360deg); +} +.rotate-45 { + -webkit-transform: rotate(-45deg); + transform: rotate(-45deg); +} +.rotate-90 { + -webkit-transform: rotate(-90deg); + transform: rotate(-90deg); +} +.rotate-135 { + -webkit-transform: rotate(-135deg); + transform: rotate(-135deg); +} +.rotate-180 { + -webkit-transform: rotate(-180deg); + transform: rotate(-180deg); +} +.rotate-225 { + -webkit-transform: rotate(-225deg); + transform: rotate(-225deg); +} +.rotate-270 { + -webkit-transform: rotate(-270deg); + transform: rotate(-270deg); +} +.rotate-360 { + -webkit-transform: rotate(-360deg); + transform: rotate(-360deg); +} +.rotateX45 { + -webkit-transform: rotateX(45deg); + transform: rotateX(45deg); +} +.rotateX90 { + -webkit-transform: rotateX(90deg); + transform: rotateX(90deg); +} +.rotateX135 { + -webkit-transform: rotateX(135deg); + transform: rotateX(135deg); +} +.rotateX180 { + -webkit-transform: rotateX(180deg); + transform: rotateX(180deg); +} +.rotateX225 { + -webkit-transform: rotateX(225deg); + transform: rotateX(225deg); +} +.rotateX270 { + -webkit-transform: rotateX(270deg); + transform: rotateX(270deg); +} +.rotateX360 { + -webkit-transform: rotateX(360deg); + transform: rotateX(360deg); +} +.rotateX-45 { + -webkit-transform: rotateX(-45deg); + transform: rotateX(-45deg); +} +.rotateX-90 { + -webkit-transform: rotateX(-90deg); + transform: rotateX(-90deg); +} +.rotateX-135 { + -webkit-transform: rotateX(-135deg); + transform: rotateX(-135deg); +} +.rotateX-180 { + -webkit-transform: rotateX(-180deg); + transform: rotateX(-180deg); +} +.rotateX-225 { + -webkit-transform: rotateX(-225deg); + transform: rotateX(-225deg); +} +.rotateX-270 { + -webkit-transform: rotateX(-270deg); + transform: rotateX(-270deg); +} +.rotateX-360 { + -webkit-transform: rotateX(-360deg); + transform: rotateX(-360deg); +} +.rotateY45 { + -webkit-transform: rotateY(45deg); + transform: rotateY(45deg); +} +.rotateY90 { + -webkit-transform: rotateY(90deg); + transform: rotateY(90deg); +} +.rotateY135 { + -webkit-transform: rotateY(135deg); + transform: rotateY(135deg); +} +.rotateY180 { + -webkit-transform: rotateY(180deg); + transform: rotateY(180deg); +} +.rotateY225 { + -webkit-transform: rotateY(225deg); + transform: rotateY(225deg); +} +.rotateY270 { + -webkit-transform: rotateY(270deg); + transform: rotateY(270deg); +} +.rotateY360 { + -webkit-transform: rotateY(360deg); + transform: rotateY(360deg); +} +.rotateY-45 { + -webkit-transform: rotateY(-45deg); + transform: rotateY(-45deg); +} +.rotateY-90 { + -webkit-transform: rotateY(-90deg); + transform: rotateY(-90deg); +} +.rotateY-135 { + -webkit-transform: rotateY(-135deg); + transform: rotateY(-135deg); +} +.rotateY-180 { + -webkit-transform: rotateY(-180deg); + transform: rotateY(-180deg); +} +.rotateY-225 { + -webkit-transform: rotateY(-225deg); + transform: rotateY(-225deg); +} +.rotateY-270 { + -webkit-transform: rotateY(-270deg); + transform: rotateY(-270deg); +} +.rotateY-360 { + -webkit-transform: rotateY(-360deg); + transform: rotateY(-360deg); +} +.ani-spin, +.ani-hover-spin:hover { + -webkit-animation: ani-spin 1.5s linear infinite; + animation: ani-spin 1.5s linear infinite; +} +.ani-spin.ani-fast, +.ani-hover-spin.ani-fast:hover { + -webkit-animation: ani-spin 0.7s linear infinite; + animation: ani-spin 0.7s linear infinite; +} +.ani-spin.ani-slow, +.ani-hover-spin.ani-slow:hover { + -webkit-animation: ani-spin 2.2s linear infinite; + animation: ani-spin 2.2s linear infinite; +} +.ani-pulse, +.ani-hover-pulse:hover { + -webkit-animation: ani-pulse 1.7s infinite; + animation: ani-pulse 1.7s infinite; +} +.ani-pulse.ani-fast, +.ani-hover-pulse.ani-fast:hover { + -webkit-animation: ani-pulse 1s infinite; + animation: ani-pulse 1s infinite; +} +.ani-pulse.ani-slow, +.ani-hover-pulse.ani-slow:hover { + -webkit-animation: ani-pulse 3s infinite; + animation: ani-pulse 3s infinite; +} +.ani-spanner, +.ani-hover-spanner:hover { + transform-origin-x: 90%; + transform-origin-y: 35%; + transform-origin-z: initial; + -webkit-animation: ani-wrench 2.5s ease infinite; + animation: ani-wrench 2.5s ease infinite; +} +.ani-spanner.ani-fast, +.ani-hover-spanner.ani-fast:hover { + -webkit-animation: ani-wrench 1.2s ease infinite; + animation: ani-wrench 1.2s ease infinite; +} +.ani-spanner.ani-slow, +.ani-hover-spanner.ani-slow:hover { + -webkit-animation: ani-wrench 3.7s ease infinite; + animation: ani-wrench 3.7s ease infinite; +} +.ani-ring, +.ani-hover-ring:hover { + transform-origin-x: 50%; + transform-origin-y: 0px; + transform-origin-z: initial; + -webkit-animation: ani-ring 2s ease infinite; + animation: ani-ring 2s ease infinite; +} +.ani-ring.ani-fast, +.ani-hover-ring.ani-fast:hover { + -webkit-animation: ani-ring 1s ease infinite; + animation: ani-ring 1s ease infinite; +} +.ani-ring.ani-slow, +.ani-hover-ring.ani-slow:hover { + -webkit-animation: ani-ring 3s ease infinite; + animation: ani-ring 3s ease infinite; +} +.ani-vertical, +.ani-hover-vertical:hover { + -webkit-animation: ani-vertical 2s ease infinite; + animation: ani-vertical 2s ease infinite; +} +.ani-vertical.ani-fast, +.ani-vertical.ani-fast:hover { + -webkit-animation: ani-vertical 1s ease infinite; + animation: ani-vertical 1s ease infinite; +} +.ani-vertical.ani-slow, +.ani-hover-vertical.ani-slow:hover { + -webkit-animation: ani-vertical 4s ease infinite; + animation: ani-vertical 4s ease infinite; +} +.ani-horizontal, +.ani-hover-horizontal:hover { + -webkit-animation: ani-horizontal 2s ease infinite; + animation: ani-horizontal 2s ease infinite; +} +.ani-horizontal.ani-fast, +.ani-horizontal.ani-fast:hover { + -webkit-animation: ani-horizontal 1s ease infinite; + animation: ani-horizontal 1s ease infinite; +} +.ani-horizontal.ani-slow, +.ani-horizontal.ani-slow:hover { + -webkit-animation: ani-horizontal 3s ease infinite; + animation: ani-horizontal 3s ease infinite; +} +.ani-flash, +.ani-hover-flash:hover { + -webkit-animation: ani-flash 2s ease infinite; + animation: ani-flash 2s ease infinite; +} +.ani-flash.ani-fast, +.ani-hover-flash.ani-fast:hover { + -webkit-animation: ani-flash 1s ease infinite; + animation: ani-flash 1s ease infinite; +} +.ani-flash.ani-slow, +.ani-hover-flash.ani-slow:hover { + -webkit-animation: ani-flash 3s ease infinite; + animation: ani-flash 3s ease infinite; +} +.ani-bounce, +.ani-hover-bounce:hover { + -webkit-animation: ani-bounce 2s ease infinite; + animation: ani-bounce 2s ease infinite; +} +.ani-bounce.ani-fast, +.ani-hover-bounce.ani-fast:hover { + -webkit-animation: ani-bounce 1s ease infinite; + animation: ani-bounce 1s ease infinite; +} +.ani-bounce.ani-slow, +.ani-hover-bounce.ani-slow:hover { + -webkit-animation: ani-bounce 3s ease infinite; + animation: ani-bounce 3s ease infinite; +} +.ani-float, +.ani-hover-float:hover { + -webkit-animation: ani-float 2s linear infinite; + animation: ani-float 2s linear infinite; +} +.ani-float.ani-fast, +.ani-hover-float.ani-fast:hover { + -webkit-animation: ani-float 1s linear infinite; + animation: ani-float 1s linear infinite; +} +.ani-float.ani-slow, +.ani-hover-float.ani-slow:hover { + -webkit-animation: ani-float 3s linear infinite; + animation: ani-float 3s linear infinite; +} +.ani-heartbeat, +.ani-hover-heartbeat:hover { + -webkit-animation: ani-heartbeat 2s linear infinite; + animation: ani-heartbeat 2s linear infinite; +} +.ani-heartbeat.ani-fast, +.ani-hover-heartbeat.ani-fast:hover { + -webkit-animation: ani-heartbeat 1s linear infinite; + animation: ani-heartbeat 1s linear infinite; +} +.ani-heartbeat.ani-slow, +.ani-hover-heartbeat.ani-slow:hover { + -webkit-animation: ani-heartbeat 3s linear infinite; + animation: ani-heartbeat 3s linear infinite; +} +.ani-shake, +.ani-hover-shake:hover { + -webkit-animation: ani-wrench 2.5s ease infinite; + animation: ani-wrench 2.5s ease infinite; +} +.ani-shake.ani-fast, +.ani-hover-shake.ani-fast:hover { + -webkit-animation: ani-wrench 1.2s ease infinite; + animation: ani-wrench 1.2s ease infinite; +} +.ani-shake.ani-slow, +.ani-hover-shake.ani-slow:hover { + -webkit-animation: ani-wrench 3.7s ease infinite; + animation: ani-wrench 3.7s ease infinite; +} +.ani-shuttle, +.ani-hover-shuttle:hover { + -webkit-animation: ani-shuttle 2s linear infinite; + animation: ani-shuttle 2s linear infinite; +} +.ani-shuttle.ani-fast, +.ani-hover-shuttle.ani-fast:hover { + -webkit-animation: ani-shuttle 1s linear infinite; + animation: ani-shuttle 1s linear infinite; +} +.ani-shuttle.ani-slow, +.ani-hover-shuttle.ani-slow:hover { + -webkit-animation: ani-shuttle 3s linear infinite; + animation: ani-shuttle 3s linear infinite; +} +.ani-pass, +.ani-hover-pass:hover { + -webkit-animation: ani-pass 2s linear infinite; + animation: ani-pass 2s linear infinite; +} +.ani-pass.ani-fast, +.ani-hover-pass.ani-fast:hover { + -webkit-animation: ani-pass 1s linear infinite; + animation: ani-pass 1s linear infinite; +} +.ani-pass.ani-slow, +.ani-hover-pass.ani-slow:hover { + -webkit-animation: ani-pass 3s linear infinite; + animation: ani-pass 3s linear infinite; +} +.ani-ripple, +.ani-hover-ripple:hover { + -webkit-animation: ani-ripple 2s infinite linear; + animation: ani-ripple 2s infinite linear; +} +.ani-ripple.ani-fast, +.ani-hover-ripple.ani-fast:hover { + -webkit-animation: ani-ripple 1s infinite linear; + animation: ani-ripple 1s infinite linear; +} +.ani-ripple.ani-slow, +.ani-hover-ripple.ani-slow:hover { + -webkit-animation: ani-ripple 3s infinite linear; + animation: ani-ripple 3s infinite linear; +} +@-webkit-keyframes swinging { + 0% { + -webkit-transform: rotate(0deg); + transform: rotate(0deg); + } + 5% { + -webkit-transform: rotate(10deg); + transform: rotate(10deg); + } + 10% { + -webkit-transform: rotate(-9deg); + transform: rotate(-9deg); + } + 15% { + -webkit-transform: rotate(8deg); + transform: rotate(8deg); + } + 20% { + -webkit-transform: rotate(-7deg); + transform: rotate(-7deg); + } + 25% { + -webkit-transform: rotate(6deg); + transform: rotate(6deg); + } + 30% { + -webkit-transform: rotate(-5deg); + transform: rotate(-5deg); + } + 35% { + -webkit-transform: rotate(4deg); + transform: rotate(4deg); + } + 40% { + -webkit-transform: rotate(-3deg); + transform: rotate(-3deg); + } + 45% { + -webkit-transform: rotate(2deg); + transform: rotate(2deg); + } + 50% { + -webkit-transform: rotate(0deg); + transform: rotate(0deg); + } + 100% { + -webkit-transform: rotate(0deg); + transform: rotate(0deg); + } +} +@keyframes swinging { + 0% { + -webkit-transform: rotate(0deg); + transform: rotate(0deg); + } + 5% { + -webkit-transform: rotate(10deg); + transform: rotate(10deg); + } + 10% { + -webkit-transform: rotate(-9deg); + transform: rotate(-9deg); + } + 15% { + -webkit-transform: rotate(8deg); + transform: rotate(8deg); + } + 20% { + -webkit-transform: rotate(-7deg); + transform: rotate(-7deg); + } + 25% { + -webkit-transform: rotate(6deg); + transform: rotate(6deg); + } + 30% { + -webkit-transform: rotate(-5deg); + transform: rotate(-5deg); + } + 35% { + -webkit-transform: rotate(4deg); + transform: rotate(4deg); + } + 40% { + -webkit-transform: rotate(-3deg); + transform: rotate(-3deg); + } + 45% { + -webkit-transform: rotate(2deg); + transform: rotate(2deg); + } + 50% { + -webkit-transform: rotate(0deg); + transform: rotate(0deg); + } + 100% { + -webkit-transform: rotate(0deg); + transform: rotate(0deg); + } +} +@-webkit-keyframes scaleout { + 0% { + -webkit-transform: scale(0); + transform: scale(0); + } + 100% { + -webkit-transform: scale(1); + transform: scale(1); + opacity: 0; + } +} +@keyframes scaleout { + 0% { + -webkit-transform: scale(0); + transform: scale(0); + } + 100% { + -webkit-transform: scale(1); + transform: scale(1); + opacity: 0; + } +} +@-webkit-keyframes cubemove { + 25% { + -webkit-transform: translateX(10px) rotate(-90deg); + transform: translateX(10px) rotate(-90deg); + } + 50% { + -webkit-transform: translateX(10px) translateY(10px) rotate(-179deg); + transform: translateX(10px) translateY(10px) rotate(-179deg); + } + 50.1% { + -webkit-transform: translateX(10px) translateY(10px) rotate(-180deg); + transform: translateX(10px) translateY(10px) rotate(-180deg); + } + 75% { + -webkit-transform: translateX(0px) translateY(10px) rotate(-270deg); + transform: translateX(0px) translateY(10px) rotate(-270deg); + } + 100% { + -webkit-transform: rotate(-360deg); + transform: rotate(-360deg); + } +} +@keyframes cubemove { + 25% { + -webkit-transform: translateX(10px) rotate(-90deg); + transform: translateX(10px) rotate(-90deg); + } + 50% { + -webkit-transform: translateX(10px) translateY(10px) rotate(-179deg); + transform: translateX(10px) translateY(10px) rotate(-179deg); + } + 50.1% { + -webkit-transform: translateX(10px) translateY(10px) rotate(-180deg); + transform: translateX(10px) translateY(10px) rotate(-180deg); + } + 75% { + -webkit-transform: translateX(0px) translateY(10px) rotate(-270deg); + transform: translateX(0px) translateY(10px) rotate(-270deg); + } + 100% { + -webkit-transform: rotate(-360deg); + transform: rotate(-360deg); + } +} +@-webkit-keyframes orbit { + 0% { + opacity: 1; + -webkit-animation-timing-function: ease-out; + animation-timing-function: ease-out; + -webkit-transform: rotate(225deg); + transform: rotate(225deg); + } + 7% { + -webkit-transform: rotate(345deg); + transform: rotate(345deg); + -webkit-animation-timing-function: linear; + animation-timing-function: linear; + } + 35% { + -webkit-transform: rotate(495deg); + transform: rotate(495deg); + -webkit-animation-timing-function: ease-in-out; + animation-timing-function: ease-in-out; + } + 42% { + -webkit-transform: rotate(690deg); + transform: rotate(690deg); + -webkit-animation-timing-function: linear; + animation-timing-function: linear; + } + 70% { + opacity: 1; + -webkit-transform: rotate(835deg); + transform: rotate(835deg); + -webkit-animation-timing-function: linear; + animation-timing-function: linear; + } + 76% { + opacity: 1; + } + 77% { + -webkit-transform: rotate(955deg); + transform: rotate(955deg); + -webkit-animation-timing-function: ease-in; + animation-timing-function: ease-in; + } + 78% { + -webkit-transform: rotate(955deg); + transform: rotate(955deg); + opacity: 0; + } + 100% { + -webkit-transform: rotate(955deg); + transform: rotate(955deg); + opacity: 0; + } +} +@keyframes orbit { + 0% { + opacity: 1; + -webkit-animation-timing-function: ease-out; + animation-timing-function: ease-out; + -webkit-transform: rotate(225deg); + transform: rotate(225deg); + } + 7% { + -webkit-transform: rotate(345deg); + transform: rotate(345deg); + -webkit-animation-timing-function: linear; + animation-timing-function: linear; + } + 35% { + -webkit-transform: rotate(495deg); + transform: rotate(495deg); + -webkit-animation-timing-function: ease-in-out; + animation-timing-function: ease-in-out; + } + 42% { + -webkit-transform: rotate(690deg); + transform: rotate(690deg); + -webkit-animation-timing-function: linear; + animation-timing-function: linear; + } + 70% { + opacity: 1; + -webkit-transform: rotate(835deg); + transform: rotate(835deg); + -webkit-animation-timing-function: linear; + animation-timing-function: linear; + } + 76% { + opacity: 1; + } + 77% { + -webkit-transform: rotate(955deg); + transform: rotate(955deg); + -webkit-animation-timing-function: ease-in; + animation-timing-function: ease-in; + } + 78% { + -webkit-transform: rotate(955deg); + transform: rotate(955deg); + opacity: 0; + } + 100% { + -webkit-transform: rotate(955deg); + transform: rotate(955deg); + opacity: 0; + } +} +@-webkit-keyframes metro-slide { + 0% { + left: -50%; + } + 100% { + left: 150%; + } +} +@keyframes metro-slide { + 0% { + left: -50%; + } + 100% { + left: 150%; + } +} +@-webkit-keyframes metro-opacity { + 0% { + opacity: 0; + } + 50% { + opacity: .5; + } + 100% { + opacity: 1; + } +} +@keyframes metro-opacity { + 0% { + opacity: 0; + } + 50% { + opacity: .5; + } + 100% { + opacity: 1; + } +} +@-webkit-keyframes ani-spin { + 0% { + -webkit-transform: rotate(0deg); + transform: rotate(0deg); + } + 100% { + -webkit-transform: rotate(359deg); + transform: rotate(359deg); + } +} +@keyframes ani-spin { + 0% { + -webkit-transform: rotate(0deg); + transform: rotate(0deg); + } + 100% { + -webkit-transform: rotate(359deg); + transform: rotate(359deg); + } +} +@-webkit-keyframes ani-pulse { + 0% { + -webkit-transform: rotate(0deg); + transform: rotate(0deg); + } + 100% { + -webkit-transform: rotate(359deg); + transform: rotate(359deg); + } +} +@keyframes ani-pulse { + 0% { + -webkit-transform: rotate(0deg); + transform: rotate(0deg); + } + 100% { + -webkit-transform: rotate(359deg); + transform: rotate(359deg); + } +} +@-webkit-keyframes ani-wrench { + 0% { + -webkit-transform: rotate(-12deg); + transform: rotate(-12deg); + } + 8% { + -webkit-transform: rotate(12deg); + transform: rotate(12deg); + } + 10% { + -webkit-transform: rotate(24deg); + transform: rotate(24deg); + } + 18% { + -webkit-transform: rotate(-24deg); + transform: rotate(-24deg); + } + 20% { + -webkit-transform: rotate(-24deg); + transform: rotate(-24deg); + } + 28% { + -webkit-transform: rotate(24deg); + transform: rotate(24deg); + } + 30% { + -webkit-transform: rotate(24deg); + transform: rotate(24deg); + } + 38% { + -webkit-transform: rotate(-24deg); + transform: rotate(-24deg); + } + 40% { + -webkit-transform: rotate(-24deg); + transform: rotate(-24deg); + } + 48% { + -webkit-transform: rotate(24deg); + transform: rotate(24deg); + } + 50% { + -webkit-transform: rotate(24deg); + transform: rotate(24deg); + } + 58% { + -webkit-transform: rotate(-24deg); + transform: rotate(-24deg); + } + 60% { + -webkit-transform: rotate(-24deg); + transform: rotate(-24deg); + } + 68% { + -webkit-transform: rotate(24deg); + transform: rotate(24deg); + } + 75% { + -webkit-transform: rotate(0deg); + transform: rotate(0deg); + } +} +@keyframes ani-wrench { + 0% { + -webkit-transform: rotate(-12deg); + transform: rotate(-12deg); + } + 8% { + -webkit-transform: rotate(12deg); + transform: rotate(12deg); + } + 10% { + -webkit-transform: rotate(24deg); + transform: rotate(24deg); + } + 18% { + -webkit-transform: rotate(-24deg); + transform: rotate(-24deg); + } + 20% { + -webkit-transform: rotate(-24deg); + transform: rotate(-24deg); + } + 28% { + -webkit-transform: rotate(24deg); + transform: rotate(24deg); + } + 30% { + -webkit-transform: rotate(24deg); + transform: rotate(24deg); + } + 38% { + -webkit-transform: rotate(-24deg); + transform: rotate(-24deg); + } + 40% { + -webkit-transform: rotate(-24deg); + transform: rotate(-24deg); + } + 48% { + -webkit-transform: rotate(24deg); + transform: rotate(24deg); + } + 50% { + -webkit-transform: rotate(24deg); + transform: rotate(24deg); + } + 58% { + -webkit-transform: rotate(-24deg); + transform: rotate(-24deg); + } + 60% { + -webkit-transform: rotate(-24deg); + transform: rotate(-24deg); + } + 68% { + -webkit-transform: rotate(24deg); + transform: rotate(24deg); + } + 75% { + -webkit-transform: rotate(0deg); + transform: rotate(0deg); + } +} +@-webkit-keyframes ani-ring { + 0% { + -webkit-transform: rotate(-15deg); + transform: rotate(-15deg); + } + 2% { + -webkit-transform: rotate(15deg); + transform: rotate(15deg); + } + 4% { + -webkit-transform: rotate(-18deg); + transform: rotate(-18deg); + } + 6% { + -webkit-transform: rotate(18deg); + transform: rotate(18deg); + } + 8% { + -webkit-transform: rotate(-22deg); + transform: rotate(-22deg); + } + 10% { + -webkit-transform: rotate(22deg); + transform: rotate(22deg); + } + 12% { + -webkit-transform: rotate(-18deg); + transform: rotate(-18deg); + } + 14% { + -webkit-transform: rotate(18deg); + transform: rotate(18deg); + } + 16% { + -webkit-transform: rotate(-12deg); + transform: rotate(-12deg); + } + 18% { + -webkit-transform: rotate(12deg); + transform: rotate(12deg); + } + 20% { + -webkit-transform: rotate(0deg); + transform: rotate(0deg); + } +} +@keyframes ani-ring { + 0% { + -webkit-transform: rotate(-15deg); + transform: rotate(-15deg); + } + 2% { + -webkit-transform: rotate(15deg); + transform: rotate(15deg); + } + 4% { + -webkit-transform: rotate(-18deg); + transform: rotate(-18deg); + } + 6% { + -webkit-transform: rotate(18deg); + transform: rotate(18deg); + } + 8% { + -webkit-transform: rotate(-22deg); + transform: rotate(-22deg); + } + 10% { + -webkit-transform: rotate(22deg); + transform: rotate(22deg); + } + 12% { + -webkit-transform: rotate(-18deg); + transform: rotate(-18deg); + } + 14% { + -webkit-transform: rotate(18deg); + transform: rotate(18deg); + } + 16% { + -webkit-transform: rotate(-12deg); + transform: rotate(-12deg); + } + 18% { + -webkit-transform: rotate(12deg); + transform: rotate(12deg); + } + 20% { + -webkit-transform: rotate(0deg); + transform: rotate(0deg); + } +} +@-webkit-keyframes ani-vertical { + 0% { + -webkit-transform: translate(0, -3px); + transform: translate(0, -3px); + } + 4% { + -webkit-transform: translate(0, 3px); + transform: translate(0, 3px); + } + 8% { + -webkit-transform: translate(0, -3px); + transform: translate(0, -3px); + } + 12% { + -webkit-transform: translate(0, 3px); + transform: translate(0, 3px); + } + 16% { + -webkit-transform: translate(0, -3px); + transform: translate(0, -3px); + } + 20% { + -webkit-transform: translate(0, 3px); + transform: translate(0, 3px); + } + 22% { + -webkit-transform: translate(0, 0); + transform: translate(0, 0); + } +} +@keyframes ani-vertical { + 0% { + -webkit-transform: translate(0, -3px); + transform: translate(0, -3px); + } + 4% { + -webkit-transform: translate(0, 3px); + transform: translate(0, 3px); + } + 8% { + -webkit-transform: translate(0, -3px); + transform: translate(0, -3px); + } + 12% { + -webkit-transform: translate(0, 3px); + transform: translate(0, 3px); + } + 16% { + -webkit-transform: translate(0, -3px); + transform: translate(0, -3px); + } + 20% { + -webkit-transform: translate(0, 3px); + transform: translate(0, 3px); + } + 22% { + -webkit-transform: translate(0, 0); + transform: translate(0, 0); + } +} +@-webkit-keyframes ani-horizontal { + 0% { + -webkit-transform: translate(0, 0); + transform: translate(0, 0); + } + 6% { + -webkit-transform: translate(5px, 0); + transform: translate(5px, 0); + } + 12% { + -webkit-transform: translate(0, 0); + transform: translate(0, 0); + } + 18% { + -webkit-transform: translate(5px, 0); + transform: translate(5px, 0); + } + 24% { + -webkit-transform: translate(0, 0); + transform: translate(0, 0); + } + 30% { + -webkit-transform: translate(5px, 0); + transform: translate(5px, 0); + } + 36% { + -webkit-transform: translate(0, 0); + transform: translate(0, 0); + } +} +@keyframes ani-horizontal { + 0% { + -webkit-transform: translate(0, 0); + transform: translate(0, 0); + } + 6% { + -webkit-transform: translate(5px, 0); + transform: translate(5px, 0); + } + 12% { + -webkit-transform: translate(0, 0); + transform: translate(0, 0); + } + 18% { + -webkit-transform: translate(5px, 0); + transform: translate(5px, 0); + } + 24% { + -webkit-transform: translate(0, 0); + transform: translate(0, 0); + } + 30% { + -webkit-transform: translate(5px, 0); + transform: translate(5px, 0); + } + 36% { + -webkit-transform: translate(0, 0); + transform: translate(0, 0); + } +} +@-webkit-keyframes ani-flash { + 0%, + 100%, + 50% { + opacity: 1; + } + 25%, + 75% { + opacity: 0; + } +} +@keyframes ani-flash { + 0%, + 100%, + 50% { + opacity: 1; + } + 25%, + 75% { + opacity: 0; + } +} +@-webkit-keyframes ani-bounce { + 0%, + 10%, + 20%, + 50%, + 80% { + -webkit-transform: translateY(0); + transform: translateY(0); + } + 40% { + -webkit-transform: translateY(-15px); + transform: translateY(-15px); + } + 60% { + -webkit-transform: translateY(-15px); + transform: translateY(-15px); + } +} +@keyframes ani-bounce { + 0%, + 10%, + 20%, + 50%, + 80% { + -webkit-transform: translateY(0); + transform: translateY(0); + } + 40% { + -webkit-transform: translateY(-15px); + transform: translateY(-15px); + } + 60% { + -webkit-transform: translateY(-15px); + transform: translateY(-15px); + } +} +@-webkit-keyframes ani-float { + 0% { + -webkit-transform: translateY(0); + transform: translateY(0); + } + 50% { + -webkit-transform: translateY(-6px); + transform: translateY(-6px); + } + 100% { + -webkit-transform: translateY(0); + transform: translateY(0); + } +} +@keyframes ani-float { + 0% { + -webkit-transform: translateY(0); + transform: translateY(0); + } + 50% { + -webkit-transform: translateY(-6px); + transform: translateY(-6px); + } + 100% { + -webkit-transform: translateY(0); + transform: translateY(0); + } +} +@-webkit-keyframes ani-heartbeat { + 0% { + -webkit-transform: scale(1.1); + transform: scale(1.1); + } + 50% { + -webkit-transform: scale(0.8); + transform: scale(0.8); + } + 100% { + -webkit-transform: scale(1.1); + transform: scale(1.1); + } +} +@keyframes ani-heartbeat { + 0% { + -webkit-transform: scale(1.1); + transform: scale(1.1); + } + 50% { + -webkit-transform: scale(0.8); + transform: scale(0.8); + } + 100% { + -webkit-transform: scale(1.1); + transform: scale(1.1); + } +} +@-webkit-keyframes ani-shuttle { + 0% { + -webkit-transform: scale(1); + transform: scale(1); + } + 10%, + 20% { + -webkit-transform: scale(0.9) rotate(-8deg); + transform: scale(0.9) rotate(-8deg); + } + 30%, + 50%, + 70% { + -webkit-transform: scale(1.3) rotate(8deg); + transform: scale(1.3) rotate(8deg); + } + 40%, + 60% { + -webkit-transform: scale(1.3) rotate(-8deg); + transform: scale(1.3) rotate(-8deg); + } + 80% { + -webkit-transform: scale(1) rotate(0); + transform: scale(1) rotate(0); + } +} +@keyframes ani-shuttle { + 0% { + -webkit-transform: scale(1); + transform: scale(1); + } + 10%, + 20% { + -webkit-transform: scale(0.9) rotate(-8deg); + transform: scale(0.9) rotate(-8deg); + } + 30%, + 50%, + 70% { + -webkit-transform: scale(1.3) rotate(8deg); + transform: scale(1.3) rotate(8deg); + } + 40%, + 60% { + -webkit-transform: scale(1.3) rotate(-8deg); + transform: scale(1.3) rotate(-8deg); + } + 80% { + -webkit-transform: scale(1) rotate(0); + transform: scale(1) rotate(0); + } +} +@-webkit-keyframes ani-pass { + 0% { + -webkit-transform: translateX(-50%); + transform: translateX(-50%); + opacity: 0; + } + 50% { + -webkit-transform: translateX(0%); + transform: translateX(0%); + opacity: 1; + } + 100% { + -webkit-transform: translateX(50%); + transform: translateX(50%); + opacity: 0; + } +} +@keyframes ani-pass { + 0% { + -webkit-transform: translateX(-50%); + transform: translateX(-50%); + opacity: 0; + } + 50% { + -webkit-transform: translateX(0%); + transform: translateX(0%); + opacity: 1; + } + 100% { + -webkit-transform: translateX(50%); + transform: translateX(50%); + opacity: 0; + } +} +@-webkit-keyframes ani-ripple { + 0% { + opacity: .6; + } + 50% { + -webkit-transform: scale(1.8); + transform: scale(1.8); + opacity: 0; + } + 100% { + opacity: 0; + } +} +@keyframes ani-ripple { + 0% { + opacity: .6; + } + 50% { + -webkit-transform: scale(1.8); + transform: scale(1.8); + opacity: 0; + } + 100% { + opacity: 0; + } +} +@-webkit-keyframes ani-shrink { + 0% { + -webkit-transform: scale(1); + transform: scale(1); + } + 90% { + -webkit-transform: scale(1); + transform: scale(1); + } + 100% { + -webkit-transform: scale(0.5); + transform: scale(0.5); + } +} +@keyframes ani-shrink { + 0% { + -webkit-transform: scale(1); + transform: scale(1); + } + 90% { + -webkit-transform: scale(1); + transform: scale(1); + } + 100% { + -webkit-transform: scale(0.5); + transform: scale(0.5); + } +} +@-webkit-keyframes ani-drop { + 0% { + -webkit-transform: translateY(-50px); + transform: translateY(-50px); + } + 25% { + -webkit-transform: translate(0); + transform: translate(0); + } + 100% { + -webkit-transform: translate(0); + transform: translate(0); + } +} +@keyframes ani-drop { + 0% { + -webkit-transform: translateY(-50px); + transform: translateY(-50px); + } + 25% { + -webkit-transform: translate(0); + transform: translate(0); + } + 100% { + -webkit-transform: translate(0); + transform: translate(0); + } +} +@-webkit-keyframes ani-drop2 { + 0% { + -webkit-transform: translateY(-50px); + transform: translateY(-50px); + } + 50% { + -webkit-transform: translate(0); + transform: translate(0); + } + 100% { + -webkit-transform: translate(0); + transform: translate(0); + } +} +@keyframes ani-drop2 { + 0% { + -webkit-transform: translateY(-50px); + transform: translateY(-50px); + } + 50% { + -webkit-transform: translate(0); + transform: translate(0); + } + 100% { + -webkit-transform: translate(0); + transform: translate(0); + } +} +@-webkit-keyframes ani-drop3 { + 0% { + -webkit-transform: translateY(-50px); + transform: translateY(-50px); + } + 75% { + -webkit-transform: translate(0); + transform: translate(0); + } + 100% { + -webkit-transform: translate(0); + transform: translate(0); + } +} +@keyframes ani-drop3 { + 0% { + -webkit-transform: translateY(-50px); + transform: translateY(-50px); + } + 75% { + -webkit-transform: translate(0); + transform: translate(0); + } + 100% { + -webkit-transform: translate(0); + transform: translate(0); + } +} +@-webkit-keyframes ani-pre-spin { + 0% { + -webkit-transform: rotate(0deg); + transform: rotate(0deg); + } + 100% { + -webkit-transform: rotate(360deg); + transform: rotate(360deg); + } +} +@keyframes ani-pre-spin { + 0% { + -webkit-transform: rotate(0deg); + transform: rotate(0deg); + } + 100% { + -webkit-transform: rotate(360deg); + transform: rotate(360deg); + } +} +@-webkit-keyframes ani-bg-stripes { + from { + background-position: 40px 0; + } + to { + background-position: 0 0; + } +} +@keyframes ani-bg-stripes { + from { + background-position: 40px 0; + } + to { + background-position: 0 0; + } +} +.mif-ani-spin, +.mif-ani-hover-spin:hover { + -webkit-animation: ani-spin 1.5s linear infinite; + animation: ani-spin 1.5s linear infinite; +} +.mif-ani-spin.mif-ani-fast, +.mif-ani-hover-spin.mif-ani-fast:hover { + -webkit-animation: ani-spin 0.7s linear infinite; + animation: ani-spin 0.7s linear infinite; +} +.mif-ani-spin.mif-ani-slow, +.mif-ani-hover-spin.mif-ani-slow:hover { + -webkit-animation: ani-spin 2.2s linear infinite; + animation: ani-spin 2.2s linear infinite; +} +.mif-ani-pulse, +.mif-ani-hover-pulse:hover { + -webkit-animation: ani-pulse 1.7s infinite; + animation: ani-pulse 1.7s infinite; +} +.mif-ani-pulse.mif-ani-fast, +.mif-ani-hover-pulse.mif-ani-fast:hover { + -webkit-animation: ani-pulse 1s infinite; + animation: ani-pulse 1s infinite; +} +.mif-ani-pulse.mif-ani-slow, +.mif-ani-hover-pulse.mif-ani-slow:hover { + -webkit-animation: ani-pulse 3s infinite; + animation: ani-pulse 3s infinite; +} +.mif-ani-spanner, +.mif-ani-hover-spanner:hover { + transform-origin-x: 90%; + transform-origin-y: 35%; + transform-origin-z: initial; + -webkit-animation: ani-wrench 2.5s ease infinite; + animation: ani-wrench 2.5s ease infinite; +} +.mif-ani-spanner.mif-ani-fast, +.mif-ani-hover-spanner.mif-ani-fast:hover { + -webkit-animation: ani-wrench 1.2s ease infinite; + animation: ani-wrench 1.2s ease infinite; +} +.mif-ani-spanner.mif-ani-slow, +.mif-ani-hover-spanner.mif-ani-slow:hover { + -webkit-animation: ani-wrench 3.7s ease infinite; + animation: ani-wrench 3.7s ease infinite; +} +.mif-ani-ring, +.mif-ani-hover-ring:hover { + transform-origin-x: 50%; + transform-origin-y: 0px; + transform-origin-z: initial; + -webkit-animation: ani-ring 2s ease infinite; + animation: ani-ring 2s ease infinite; +} +.mif-ani-ring.mif-ani-fast, +.mif-ani-hover-ring.mif-ani-fast:hover { + -webkit-animation: ani-ring 1s ease infinite; + animation: ani-ring 1s ease infinite; +} +.mif-ani-ring.mif-ani-slow, +.mif-ani-hover-ring.mif-ani-slow:hover { + -webkit-animation: ani-ring 3s ease infinite; + animation: ani-ring 3s ease infinite; +} +.mif-ani-vertical, +.mif-ani-hover-vertical:hover { + -webkit-animation: ani-vertical 2s ease infinite; + animation: ani-vertical 2s ease infinite; +} +.mif-ani-vertical.mif-ani-fast, +.mif-ani-vertical.mif-ani-fast:hover { + -webkit-animation: ani-vertical 1s ease infinite; + animation: ani-vertical 1s ease infinite; +} +.mif-ani-vertical.mif-ani-slow, +.mif-ani-hover-vertical.mif-ani-slow:hover { + -webkit-animation: ani-vertical 4s ease infinite; + animation: ani-vertical 4s ease infinite; +} +.mif-ani-horizontal, +.mif-ani-hover-horizontal:hover { + -webkit-animation: ani-horizontal 2s ease infinite; + animation: ani-horizontal 2s ease infinite; +} +.mif-ani-horizontal.mif-ani-fast, +.mif-ani-horizontal.mif-ani-fast:hover { + -webkit-animation: ani-horizontal 1s ease infinite; + animation: ani-horizontal 1s ease infinite; +} +.mif-ani-horizontal.mif-ani-slow, +.mif-ani-horizontal.mif-ani-slow:hover { + -webkit-animation: ani-horizontal 3s ease infinite; + animation: ani-horizontal 3s ease infinite; +} +.mif-ani-flash, +.mif-ani-hover-flash:hover { + -webkit-animation: ani-flash 2s ease infinite; + animation: ani-flash 2s ease infinite; +} +.mif-ani-flash.mif-ani-fast, +.mif-ani-hover-flash.mif-ani-fast:hover { + -webkit-animation: ani-flash 1s ease infinite; + animation: ani-flash 1s ease infinite; +} +.mif-ani-flash.mif-ani-slow, +.mif-ani-hover-flash.mif-ani-slow:hover { + -webkit-animation: ani-flash 3s ease infinite; + animation: ani-flash 3s ease infinite; +} +.mif-ani-bounce, +.mif-ani-hover-bounce:hover { + -webkit-animation: ani-bounce 2s ease infinite; + animation: ani-bounce 2s ease infinite; +} +.mif-ani-bounce.mif-ani-fast, +.mif-ani-hover-bounce.mif-ani-fast:hover { + -webkit-animation: ani-bounce 1s ease infinite; + animation: ani-bounce 1s ease infinite; +} +.mif-ani-bounce.mif-ani-slow, +.mif-ani-hover-bounce.mif-ani-slow:hover { + -webkit-animation: ani-bounce 3s ease infinite; + animation: ani-bounce 3s ease infinite; +} +.mif-ani-float, +.mif-ani-hover-float:hover { + -webkit-animation: ani-float 2s linear infinite; + animation: ani-float 2s linear infinite; +} +.mif-ani-float.mif-ani-fast, +.mif-ani-hover-float.mif-ani-fast:hover { + -webkit-animation: ani-float 1s linear infinite; + animation: ani-float 1s linear infinite; +} +.mif-ani-float.mif-ani-slow, +.mif-ani-hover-float.mif-ani-slow:hover { + -webkit-animation: ani-float 3s linear infinite; + animation: ani-float 3s linear infinite; +} +.mif-ani-heartbeat, +.mif-ani-hover-heartbeat:hover { + -webkit-animation: ani-heartbeat 2s linear infinite; + animation: ani-heartbeat 2s linear infinite; +} +.mif-ani-heartbeat.mif-ani-fast, +.mif-ani-hover-heartbeat.mif-ani-fast:hover { + -webkit-animation: ani-heartbeat 1s linear infinite; + animation: ani-heartbeat 1s linear infinite; +} +.mif-ani-heartbeat.mif-ani-slow, +.mif-ani-hover-heartbeat.mif-ani-slow:hover { + -webkit-animation: ani-heartbeat 3s linear infinite; + animation: ani-heartbeat 3s linear infinite; +} +.mif-ani-shake, +.mif-ani-hover-shake:hover { + -webkit-animation: ani-wrench 2.5s ease infinite; + animation: ani-wrench 2.5s ease infinite; +} +.mif-ani-shake.mif-ani-fast, +.mif-ani-hover-shake.mif-ani-fast:hover { + -webkit-animation: ani-wrench 1.2s ease infinite; + animation: ani-wrench 1.2s ease infinite; +} +.mif-ani-shake.mif-ani-slow, +.mif-ani-hover-shake.mif-ani-slow:hover { + -webkit-animation: ani-wrench 3.7s ease infinite; + animation: ani-wrench 3.7s ease infinite; +} +.mif-ani-shuttle, +.mif-ani-hover-shuttle:hover { + -webkit-animation: ani-shuttle 2s linear infinite; + animation: ani-shuttle 2s linear infinite; +} +.mif-ani-shuttle.mif-ani-fast, +.mif-ani-hover-shuttle.mif-ani-fast:hover { + -webkit-animation: ani-shuttle 1s linear infinite; + animation: ani-shuttle 1s linear infinite; +} +.mif-ani-shuttle.mif-ani-slow, +.mif-ani-hover-shuttle.mif-ani-slow:hover { + -webkit-animation: ani-shuttle 3s linear infinite; + animation: ani-shuttle 3s linear infinite; +} +.mif-ani-pass, +.mif-ani-hover-pass:hover { + -webkit-animation: ani-pass 2s linear infinite; + animation: ani-pass 2s linear infinite; +} +.mif-ani-pass.mif-ani-fast, +.mif-ani-hover-pass.mif-ani-fast:hover { + -webkit-animation: ani-pass 1s linear infinite; + animation: ani-pass 1s linear infinite; +} +.mif-ani-pass.mif-ani-slow, +.mif-ani-hover-pass.mif-ani-slow:hover { + -webkit-animation: ani-pass 3s linear infinite; + animation: ani-pass 3s linear infinite; +} +.mif-ani-ripple, +.mif-ani-hover-ripple:hover { + -webkit-animation: ani-ripple 2s infinite linear; + animation: ani-ripple 2s infinite linear; +} +.mif-ani-ripple.mif-ani-fast, +.mif-ani-hover-ripple.mif-ani-fast:hover { + -webkit-animation: ani-ripple 1s infinite linear; + animation: ani-ripple 1s infinite linear; +} +.mif-ani-ripple.mif-ani-slow, +.mif-ani-hover-ripple.mif-ani-slow:hover { + -webkit-animation: ani-ripple 3s infinite linear; + animation: ani-ripple 3s infinite linear; +} +.mif-unlink:before { + content: "\f127"; +} +.mif-fire-extinguisher:before { + content: "\f134"; +} +.mif-eur:before { + content: "\f153"; +} +.mif-gbp:before { + content: "\f154"; +} +.mif-dollar2:before { + content: "\f155"; +} +.mif-inr:before { + content: "\f156"; +} +.mif-cny:before { + content: "\f157"; +} +.mif-rouble:before { + content: "\f158"; +} +.mif-krw:before { + content: "\f159"; +} +.mif-bitcoin:before { + content: "\f15a"; +} +.mif-youtube2:before { + content: "\f167"; +} +.mif-youtube-play:before { + content: "\f16a"; +} +.mif-linux:before { + content: "\f17c"; +} +.mif-try:before { + content: "\f195"; +} +.mif-space-shuttle:before { + content: "\f197"; +} +.mif-openid:before { + content: "\f19b"; +} +.mif-digg:before { + content: "\f1a6"; +} +.mif-language:before { + content: "\f1ab"; +} +.mif-automobile:before { + content: "\f1b9"; +} +.mif-cab:before { + content: "\f1ba"; +} +.mif-jsfiddle:before { + content: "\f1cc"; +} +.mif-google-wallet:before { + content: "\f1ee"; +} +.mif-copyright:before { + content: "\f1f9"; +} +.mif-bicycle:before { + content: "\f206"; +} +.mif-bus:before { + content: "\f207"; +} +.mif-ship:before { + content: "\f21a"; +} +.mif-motorcycle:before { + content: "\f21c"; +} +.mif-train:before { + content: "\f238"; +} +.mif-subway:before { + content: "\f239"; +} +.mif-opencart:before { + content: "\f23d"; +} +.mif-trademark:before { + content: "\f25c"; +} +.mif-registered:before { + content: "\f25d"; +} +.mif-creative-commons:before { + content: "\f25e"; +} +.mif-wikipedia:before { + content: "\f266"; +} +.mif-amazon:before { + content: "\f270"; +} +.mif-fonticons:before { + content: "\f280"; +} +.mif-user-md:before { + content: "\f0f0"; +} +.mif-stethoscope:before { + content: "\f0f1"; +} +.mif-ambulance:before { + content: "\f0f9"; +} +.mif-medkit:before { + content: "\f0fa"; +} +.mif-paw:before { + content: "\f1b0"; +} +.mif-file-pdf:before { + content: "\f1c1"; +} +.mif-file-word:before { + content: "\f1c2"; +} +.mif-file-excel:before { + content: "\f1c3"; +} +.mif-file-powerpoint:before { + content: "\f1c4"; +} +.mif-file-image:before { + content: "\f1c5"; +} +.mif-file-archive:before { + content: "\f1c6"; +} +.mif-file-audio:before { + content: "\f1c7"; +} +.mif-file-movie:before { + content: "\f1c8"; +} +.mif-file-code:before { + content: "\f1c9"; +} +.mif-visa:before { + content: "\f1f0"; +} +.mif-mastercard:before { + content: "\f1f1"; +} +.mif-discover:before { + content: "\f1f2"; +} +.mif-amex:before { + content: "\f1f3"; +} +.mif-cc-paypal:before { + content: "\f1f4"; +} +.mif-heartbeat:before { + content: "\f21e"; +} +.mif-venus:before { + content: "\f221"; +} +.mif-mars:before { + content: "\f222"; +} +.mif-medium:before { + content: "\f23a"; +} +.mif-earth2:before { + content: "\e6c1"; +} +.mif-shit:before { + content: "\e6c2"; +} +.mif-broadcast:before { + content: "\f048"; +} +.mif-organization:before { + content: "\f037"; +} +.mif-squirrel:before { + content: "\f0b2"; +} +.mif-steps:before { + content: "\f0c7"; +} +.mif-versions:before { + content: "\f064"; +} +.mif-microscope:before { + content: "\f089"; +} +.mif-library:before { + content: "\e921"; +} +.mif-file-binary:before { + content: "\f094"; +} +.mif-mail-read:before { + content: "\f03c"; +} +.mif-quote:before { + content: "\f063"; +} +.mif-sunrise:before { + content: "\e66c"; +} +.mif-sun:before { + content: "\e66d"; +} +.mif-moon:before { + content: "\e66e"; +} +.mif-sun3:before { + content: "\e66f"; +} +.mif-windy:before { + content: "\e670"; +} +.mif-wind:before { + content: "\e671"; +} +.mif-snowflake:before { + content: "\e672"; +} +.mif-cloudy:before { + content: "\e673"; +} +.mif-cloud2:before { + content: "\e674"; +} +.mif-weather:before { + content: "\e675"; +} +.mif-weather2:before { + content: "\e676"; +} +.mif-weather3:before { + content: "\e677"; +} +.mif-lines:before { + content: "\e678"; +} +.mif-cloud3:before { + content: "\e679"; +} +.mif-lightning:before { + content: "\e67a"; +} +.mif-lightning2:before { + content: "\e67b"; +} +.mif-rainy:before { + content: "\e67c"; +} +.mif-rainy2:before { + content: "\e67d"; +} +.mif-windy2:before { + content: "\e67e"; +} +.mif-windy3:before { + content: "\e67f"; +} +.mif-snowy:before { + content: "\e680"; +} +.mif-snowy2:before { + content: "\e681"; +} +.mif-snowy3:before { + content: "\e682"; +} +.mif-weather4:before { + content: "\e683"; +} +.mif-cloudy2:before { + content: "\e684"; +} +.mif-cloud4:before { + content: "\e685"; +} +.mif-lightning3:before { + content: "\e686"; +} +.mif-sun4:before { + content: "\e687"; +} +.mif-moon2:before { + content: "\e688"; +} +.mif-cloudy3:before { + content: "\e689"; +} +.mif-cloud5:before { + content: "\e68a"; +} +.mif-cloud6:before { + content: "\e68b"; +} +.mif-lightning4:before { + content: "\e68c"; +} +.mif-rainy3:before { + content: "\e68d"; +} +.mif-rainy4:before { + content: "\e68e"; +} +.mif-windy4:before { + content: "\e68f"; +} +.mif-windy5:before { + content: "\e690"; +} +.mif-snowy4:before { + content: "\e691"; +} +.mif-snowy5:before { + content: "\e692"; +} +.mif-weather5:before { + content: "\e693"; +} +.mif-cloudy4:before { + content: "\e694"; +} +.mif-lightning5:before { + content: "\e695"; +} +.mif-thermometer:before { + content: "\e696"; +} +.mif-none:before { + content: "\e698"; +} +.mif-celsius:before { + content: "\e699"; +} +.mif-fahrenheit:before { + content: "\e69a"; +} +.mif-home:before { + content: "\e900"; +} +.mif-pencil:before { + content: "\e905"; +} +.mif-eyedropper:before { + content: "\e90a"; +} +.mif-paint:before { + content: "\e90c"; +} +.mif-image:before { + content: "\e90d"; +} +.mif-images:before { + content: "\e90e"; +} +.mif-camera:before { + content: "\e90f"; +} +.mif-headphones:before { + content: "\e910"; +} +.mif-music:before { + content: "\e911"; +} +.mif-film:before { + content: "\e913"; +} +.mif-video-camera:before { + content: "\e914"; +} +.mif-dice:before { + content: "\e915"; +} +.mif-wifi-connect:before { + content: "\e91b"; +} +.mif-feed:before { + content: "\e91d"; +} +.mif-mic:before { + content: "\e91e"; +} +.mif-books:before { + content: "\e920"; +} +.mif-file-empty:before { + content: "\e924"; +} +.mif-files-empty:before { + content: "\e925"; +} +.mif-file-text:before { + content: "\e926"; +} +.mif-file-picture:before { + content: "\e927"; +} +.mif-file-music:before { + content: "\e928"; +} +.mif-file-play:before { + content: "\e929"; +} +.mif-file-video:before { + content: "\e92a"; +} +.mif-file-zip:before { + content: "\e92b"; +} +.mif-stack:before { + content: "\e92e"; +} +.mif-folder:before { + content: "\e92f"; +} +.mif-folder-open:before { + content: "\e930"; +} +.mif-folder-plus:before { + content: "\e931"; +} +.mif-folder-minus:before { + content: "\e932"; +} +.mif-folder-download:before { + content: "\e933"; +} +.mif-folder-upload:before { + content: "\e934"; +} +.mif-tag:before { + content: "\e935"; +} +.mif-tags:before { + content: "\e936"; +} +.mif-barcode:before { + content: "\e937"; +} +.mif-qrcode:before { + content: "\e938"; +} +.mif-cart:before { + content: "\e93a"; +} +.mif-credit-card:before { + content: "\e93f"; +} +.mif-calculator:before { + content: "\e940"; +} +.mif-help:before { + content: "\e941"; +} +.mif-phone:before { + content: "\e942"; +} +.mif-envelop:before { + content: "\e945"; +} +.mif-location:before { + content: "\e948"; +} +.mif-compass:before { + content: "\e949"; +} +.mif-compass2:before { + content: "\e94a"; +} +.mif-map:before { + content: "\e94b"; +} +.mif-history:before { + content: "\e94d"; +} +.mif-bell:before { + content: "\e951"; +} +.mif-calendar:before { + content: "\e953"; +} +.mif-printer:before { + content: "\e954"; +} +.mif-keyboard:before { + content: "\e955"; +} +.mif-display:before { + content: "\e956"; +} +.mif-laptop:before { + content: "\e957"; +} +.mif-mobile:before { + content: "\e959"; +} +.mif-tablet:before { + content: "\e95a"; +} +.mif-download:before { + content: "\e960"; +} +.mif-upload:before { + content: "\e961"; +} +.mif-floppy-disk:before { + content: "\e962"; +} +.mif-drive:before { + content: "\e963"; +} +.mif-database:before { + content: "\e964"; +} +.mif-undo:before { + content: "\e965"; +} +.mif-redo:before { + content: "\e966"; +} +.mif-bubble:before { + content: "\e96b"; +} +.mif-bubbles:before { + content: "\e96c"; +} +.mif-user:before { + content: "\e971"; +} +.mif-users:before { + content: "\e972"; +} +.mif-user-plus:before { + content: "\e973"; +} +.mif-user-minus:before { + content: "\e974"; +} +.mif-user-check:before { + content: "\e975"; +} +.mif-hour-glass:before { + content: "\e979"; +} +.mif-spinner:before { + content: "\e97a"; +} +.mif-spinner1:before { + content: "\e97b"; +} +.mif-spinner2:before { + content: "\e97d"; +} +.mif-spinner3:before { + content: "\e981"; +} +.mif-spinner4:before { + content: "\e982"; +} +.mif-spinner5:before { + content: "\e983"; +} +.mif-search:before { + content: "\e986"; +} +.mif-zoom-in:before { + content: "\e987"; +} +.mif-zoom-out:before { + content: "\e988"; +} +.mif-enlarge:before { + content: "\e989"; +} +.mif-shrink:before { + content: "\e98a"; +} +.mif-enlarge2:before { + content: "\e98b"; +} +.mif-shrink2:before { + content: "\e98c"; +} +.mif-key:before { + content: "\e98d"; +} +.mif-wrench:before { + content: "\e991"; +} +.mif-equalizer:before { + content: "\e992"; +} +.mif-equalizer-v:before { + content: "\e993"; +} +.mif-cog:before { + content: "\e994"; +} +.mif-cogs:before { + content: "\e995"; +} +.mif-magic-wand:before { + content: "\e997"; +} +.mif-bug:before { + content: "\e999"; +} +.mif-chart-pie:before { + content: "\e99a"; +} +.mif-chart-dots:before { + content: "\e99b"; +} +.mif-chart-bars:before { + content: "\e99c"; +} +.mif-chart-bars2:before { + content: "\e99d"; +} +.mif-trophy:before { + content: "\e99e"; +} +.mif-gift:before { + content: "\e99f"; +} +.mif-spoon-fork:before { + content: "\e9a3"; +} +.mif-rocket:before { + content: "\e9a5"; +} +.mif-meter:before { + content: "\e9a6"; +} +.mif-hammer:before { + content: "\e9a8"; +} +.mif-fire:before { + content: "\e9a9"; +} +.mif-lab:before { + content: "\e9aa"; +} +.mif-bin:before { + content: "\e9ac"; +} +.mif-truck:before { + content: "\e9b0"; +} +.mif-target:before { + content: "\e9b3"; +} +.mif-power:before { + content: "\e9b5"; +} +.mif-switch:before { + content: "\e9b6"; +} +.mif-power-cord:before { + content: "\e9b7"; +} +.mif-clipboard:before { + content: "\e9b8"; +} +.mif-list-numbered:before { + content: "\e9b9"; +} +.mif-list:before { + content: "\e9ba"; +} +.mif-list2:before { + content: "\e9bb"; +} +.mif-tree:before { + content: "\e9bc"; +} +.mif-cloud:before { + content: "\e9c1"; +} +.mif-cloud-download:before { + content: "\e9c2"; +} +.mif-cloud-upload:before { + content: "\e9c3"; +} +.mif-download2:before { + content: "\e9c7"; +} +.mif-upload2:before { + content: "\e9c8"; +} +.mif-earth:before { + content: "\e9ca"; +} +.mif-link:before { + content: "\e9cb"; +} +.mif-flag:before { + content: "\e9cc"; +} +.mif-attachment:before { + content: "\e9cd"; +} +.mif-eye:before { + content: "\e9ce"; +} +.mif-bookmark:before { + content: "\e9d2"; +} +.mif-bookmarks:before { + content: "\e9d3"; +} +.mif-contrast:before { + content: "\e9d5"; +} +.mif-brightness:before { + content: "\e9d6"; +} +.mif-star-empty:before { + content: "\e9d7"; +} +.mif-star-half:before { + content: "\e9d8"; +} +.mif-star-full:before { + content: "\e9d9"; +} +.mif-heart:before { + content: "\e9da"; +} +.mif-heart-broken:before { + content: "\e9db"; +} +.mif-warning:before { + content: "\ea07"; +} +.mif-notification:before { + content: "\ea08"; +} +.mif-question:before { + content: "\ea09"; +} +.mif-plus:before { + content: "\ea0a"; +} +.mif-minus:before { + content: "\ea0b"; +} +.mif-info:before { + content: "\ea0c"; +} +.mif-cancel:before { + content: "\ea0d"; +} +.mif-blocked:before { + content: "\ea0e"; +} +.mif-cross:before { + content: "\ea0f"; +} +.mif-checkmark:before { + content: "\ea10"; +} +.mif-spell-check:before { + content: "\ea12"; +} +.mif-enter:before { + content: "\ea13"; +} +.mif-exit:before { + content: "\ea14"; +} +.mif-play:before { + content: "\ea1c"; +} +.mif-pause:before { + content: "\ea1d"; +} +.mif-stop:before { + content: "\ea1e"; +} +.mif-backward:before { + content: "\ea1f"; +} +.mif-forward:before { + content: "\ea20"; +} +.mif-first:before { + content: "\ea21"; +} +.mif-last:before { + content: "\ea22"; +} +.mif-previous:before { + content: "\ea23"; +} +.mif-next:before { + content: "\ea24"; +} +.mif-eject:before { + content: "\ea25"; +} +.mif-volume-high:before { + content: "\ea26"; +} +.mif-volume-medium:before { + content: "\ea27"; +} +.mif-volume-low:before { + content: "\ea28"; +} +.mif-volume-mute:before { + content: "\ea29"; +} +.mif-volume-mute2:before { + content: "\ea2a"; +} +.mif-volume-plus:before { + content: "\ea2b"; +} +.mif-volume-minus:before { + content: "\ea2c"; +} +.mif-loop:before { + content: "\ea2d"; +} +.mif-loop2:before { + content: "\ea2e"; +} +.mif-infinite:before { + content: "\ea2f"; +} +.mif-shuffle:before { + content: "\ea30"; +} +.mif-arrow-up-left:before { + content: "\ea39"; +} +.mif-arrow-up:before { + content: "\ea3a"; +} +.mif-arrow-up-right:before { + content: "\ea3b"; +} +.mif-arrow-right:before { + content: "\ea3c"; +} +.mif-arrow-down-right:before { + content: "\ea3d"; +} +.mif-arrow-down:before { + content: "\ea3e"; +} +.mif-arrow-down-left:before { + content: "\ea3f"; +} +.mif-arrow-left:before { + content: "\ea40"; +} +.mif-tab:before { + content: "\ea45"; +} +.mif-move-up:before { + content: "\ea46"; +} +.mif-move-down:before { + content: "\ea47"; +} +.mif-sort-asc:before { + content: "\ea4c"; +} +.mif-sort-desc:before { + content: "\ea4d"; +} +.mif-command:before { + content: "\ea4e"; +} +.mif-shift:before { + content: "\ea4f"; +} +.mif-crop:before { + content: "\ea57"; +} +.mif-filter:before { + content: "\ea5b"; +} +.mif-bold:before { + content: "\ea62"; +} +.mif-underline:before { + content: "\ea63"; +} +.mif-italic:before { + content: "\ea64"; +} +.mif-strikethrough:before { + content: "\ea65"; +} +.mif-page-break:before { + content: "\ea68"; +} +.mif-superscript:before { + content: "\ea69"; +} +.mif-subscript:before { + content: "\ea6a"; +} +.mif-table:before { + content: "\ea71"; +} +.mif-insert-template:before { + content: "\ea72"; +} +.mif-pilcrow:before { + content: "\ea73"; +} +.mif-ltr:before { + content: "\ea74"; +} +.mif-rtl:before { + content: "\ea75"; +} +.mif-section:before { + content: "\ea76"; +} +.mif-paragraph-left:before { + content: "\ea77"; +} +.mif-paragraph-center:before { + content: "\ea78"; +} +.mif-paragraph-right:before { + content: "\ea79"; +} +.mif-paragraph-justify:before { + content: "\ea7a"; +} +.mif-indent-increase:before { + content: "\ea7b"; +} +.mif-indent-decrease:before { + content: "\ea7c"; +} +.mif-embed:before { + content: "\ea7f"; +} +.mif-embed2:before { + content: "\ea80"; +} +.mif-share:before { + content: "\ea82"; +} +.mif-google:before { + content: "\ea87"; +} +.mif-google-plus:before { + content: "\ea88"; +} +.mif-facebook:before { + content: "\ea8d"; +} +.mif-twitter:before { + content: "\ea91"; +} +.mif-feed3:before { + content: "\ea95"; +} +.mif-youtube:before { + content: "\ea99"; +} +.mif-steam:before { + content: "\eaae"; +} +.mif-onedrive:before { + content: "\eab0"; +} +.mif-github:before { + content: "\eab3"; +} +.mif-git:before { + content: "\eab5"; +} +.mif-apple:before { + content: "\eabf"; +} +.mif-android:before { + content: "\eac1"; +} +.mif-windows:before { + content: "\eac3"; +} +.mif-skype:before { + content: "\eac6"; +} +.mif-linkedin:before { + content: "\eac8"; +} +.mif-html5:before { + content: "\eadf"; +} +.mif-css3:before { + content: "\eae1"; +} +.mif-chrome:before { + content: "\eae5"; +} +.mif-firefox:before { + content: "\eae6"; +} +.mif-ie:before { + content: "\eae7"; +} +.mif-opera:before { + content: "\eae8"; +} +.mif-safari:before { + content: "\eae9"; +} +.mif-airplane:before { + content: "\e6c3"; +} +.mif-truck2:before { + content: "\e6c4"; +} +.mif-instagram:before { + content: "\e6c5"; +} +.mif-twitch:before { + content: "\e6c6"; +} +.mif-picassa:before { + content: "\e6c7"; +} +.mif-deviantart2:before { + content: "\e6c8"; +} +.mif-wordpress2:before { + content: "\e6c9"; +} +.mif-joomla:before { + content: "\e6ca"; +} +.mif-blogger:before { + content: "\e6cb"; +} +.mif-tux:before { + content: "\e6cc"; +} +.mif-finder:before { + content: "\e6cd"; +} +.mif-soundcloud:before { + content: "\e6ce"; +} +.mif-reddit:before { + content: "\e6cf"; +} +.mif-delicious:before { + content: "\e6d0"; +} +.mif-stackoverflow:before { + content: "\e6d1"; +} +.mif-flattr:before { + content: "\e6d2"; +} +.mif-foursquare:before { + content: "\e6d3"; +} +.mif-file-openoffice:before { + content: "\e6d4"; +} +.mif-libreoffice:before { + content: "\e6d5"; +} +.mif-codepen:before { + content: "\e6d6"; +} +.mif-IcoMoon:before { + content: "\e6d7"; +} +.mif-stack2:before { + content: "\e6b9"; +} +.mif-stack3:before { + content: "\e6ba"; +} +.mif-lamp:before { + content: "\e6bb"; +} +.mif-injection:before { + content: "\e6bc"; +} +.mif-thermometer2:before { + content: "\e6bd"; +} +.mif-justice:before { + content: "\e6be"; +} +.mif-cabinet:before { + content: "\e62b"; +} +.mif-suitcase:before { + content: "\e62c"; +} +.mif-gamepad:before { + content: "\e65e"; +} +.mif-satellite:before { + content: "\e65f"; +} +.mif-lock:before { + content: "\e660"; +} +.mif-unlock:before { + content: "\e661"; +} +.mif-battery-full:before { + content: "\e62d"; +} +.mif-battery-two:before { + content: "\e62e"; +} +.mif-battery-one:before { + content: "\e62f"; +} +.mif-battery-empty:before { + content: "\e630"; +} +.mif-battery-charge:before { + content: "\e631"; +} +.mif-tools:before { + content: "\e632"; +} +.mif-pin:before { + content: "\e662"; +} +.mif-discout:before { + content: "\e663"; +} +.mif-profile:before { + content: "\e664"; +} +.mif-dollar:before { + content: "\e665"; +} +.mif-dollars:before { + content: "\e666"; +} +.mif-coins:before { + content: "\e6b8"; +} +.mif-male:before { + content: "\e667"; +} +.mif-female:before { + content: "\e668"; +} +.mif-piano:before { + content: "\e669"; +} +.mif-anchor:before { + content: "\e66a"; +} +.mif-directions-bike:before { + content: "\e6bf"; +} +.mif-location-city:before { + content: "\e6c0"; +} +.mif-wifi-low:before { + content: "\e60c"; +} +.mif-wifi-mid:before { + content: "\e60d"; +} +.mif-wifi-full:before { + content: "\e634"; +} +.mif-tablet-landscape:before { + content: "\e635"; +} +.mif-calculator2:before { + content: "\e636"; +} +.mif-barbell:before { + content: "\e637"; +} +.mif-chart-line:before { + content: "\e656"; +} +.mif-3d-rotation:before { + content: "\e600"; +} +.mif-alarm:before { + content: "\e601"; +} +.mif-alarm-on:before { + content: "\e602"; +} +.mif-favorite:before { + content: "\e603"; +} +.mif-perm-phone-msg:before { + content: "\e604"; +} +.mif-print:before { + content: "\e605"; +} +.mif-bt-settings:before { + content: "\e606"; +} +.mif-settings-ethernet:before { + content: "\e607"; +} +.mif-settings-phone:before { + content: "\e608"; +} +.mif-settings-power:before { + content: "\e609"; +} +.mif-settings-voice:before { + content: "\e60a"; +} +.mif-shopping-basket:before { + content: "\e60b"; +} +.mif-dialer-sip:before { + content: "\e60e"; +} +.mif-dialpad:before { + content: "\e60f"; +} +.mif-contacts-dialer:before { + content: "\e610"; +} +.mif-contacts-mail:before { + content: "\e611"; +} +.mif-ring-volume:before { + content: "\e612"; +} +.mif-voicemail:before { + content: "\e613"; +} +.mif-drafts:before { + content: "\e614"; +} +.mif-mail:before { + content: "\e615"; +} +.mif-bluetooth:before { + content: "\e626"; +} +.mif-bt-connected:before { + content: "\e627"; +} +.mif-bt-disabled:before { + content: "\e628"; +} +.mif-bt-searching:before { + content: "\e629"; +} +.mif-brightness-auto:before { + content: "\e62a"; +} +.mif-multitrack-audio:before { + content: "\e616"; +} +.mif-widgets:before { + content: "\e617"; +} +.mif-usb:before { + content: "\e638"; +} +.mif-money:before { + content: "\e639"; +} +.mif-vertical-align-bottom:before { + content: "\e63a"; +} +.mif-vertical-align-center:before { + content: "\e63b"; +} +.mif-vertical-align-top:before { + content: "\e63c"; +} +.mif-file-download:before { + content: "\e63d"; +} +.mif-file-upload:before { + content: "\e63e"; +} +.mif-keyboard-return:before { + content: "\e63f"; +} +.mif-keyboard-voice:before { + content: "\e640"; +} +.mif-phonelink:before { + content: "\e641"; +} +.mif-phonelink-off:before { + content: "\e642"; +} +.mif-security:before { + content: "\e618"; +} +.mif-looks:before { + content: "\e643"; +} +.mif-palette:before { + content: "\e619"; +} +.mif-layers:before { + content: "\e644"; +} +.mif-layers-clear:before { + content: "\e61a"; +} +.mif-local-airport:before { + content: "\e645"; +} +.mif-florist:before { + content: "\e61b"; +} +.mif-gas-station:before { + content: "\e61c"; +} +.mif-hotel:before { + content: "\e646"; +} +.mif-local-service:before { + content: "\e61d"; +} +.mif-map2:before { + content: "\e620"; +} +.mif-my-location:before { + content: "\e61e"; +} +.mif-traff:before { + content: "\e621"; +} +.mif-apps:before { + content: "\e647"; +} +.mif-chevron-left:before { + content: "\e648"; +} +.mif-chevron-right:before { + content: "\e649"; +} +.mif-expand-less:before { + content: "\e64a"; +} +.mif-expand-more:before { + content: "\e64b"; +} +.mif-menu:before { + content: "\e64c"; +} +.mif-more-horiz:before { + content: "\e64d"; +} +.mif-more-vert:before { + content: "\e64e"; +} +.mif-unfold-less:before { + content: "\e64f"; +} +.mif-unfold-more:before { + content: "\e650"; +} +.mif-bt-audio:before { + content: "\e651"; +} +.mif-not:before { + content: "\e633"; +} +.mif-drive-eta:before { + content: "\e652"; +} +.mif-event-available:before { + content: "\e653"; +} +.mif-event-busy:before { + content: "\e654"; +} +.mif-folder-special:before { + content: "\e655"; +} +.mif-phone-bt:before { + content: "\e657"; +} +.mif-phone-forwarded:before { + content: "\e658"; +} +.mif-phone-in-talk:before { + content: "\e659"; +} +.mif-phone-locked:before { + content: "\e65a"; +} +.mif-phone-missed:before { + content: "\e65b"; +} +.mif-phone-paused:before { + content: "\e65c"; +} +.mif-sd-card:before { + content: "\e65d"; +} +.mif-sync-disabled:before { + content: "\e622"; +} +.mif-sync-problem:before { + content: "\e623"; +} +.mif-vpn-lock:before { + content: "\e624"; +} +.mif-vpn-publ:before { + content: "\e625"; +} +.mif-school:before { + content: "\e61f"; +} +.mif-chevron-thin-down:before { + content: "\e66b"; +} +.mif-chevron-thin-left:before { + content: "\e697"; +} +.mif-chevron-thin-right:before { + content: "\e69b"; +} +.mif-chevron-thin-up:before { + content: "\e69c"; +} +.mif-flow-branch:before { + content: "\e69d"; +} +.mif-flow-cascade:before { + content: "\e69e"; +} +.mif-flow-line:before { + content: "\e69f"; +} +.mif-flow-parallel:before { + content: "\e6a0"; +} +.mif-flow-tree:before { + content: "\e6a1"; +} +.mif-air:before { + content: "\e6a2"; +} +.mif-medal:before { + content: "\e6a3"; +} +.mif-paper-plane:before { + content: "\e6a4"; +} +.mif-shareable:before { + content: "\e6a5"; +} +.mif-shop:before { + content: "\e6a6"; +} +.mif-shopping-basket2:before { + content: "\e6a7"; +} +.mif-thumbs-down:before { + content: "\e6a8"; +} +.mif-thumbs-up:before { + content: "\e6a9"; +} +.mif-traffic-cone:before { + content: "\e6aa"; +} +.mif-water:before { + content: "\e6ab"; +} +.mif-creative-cloud:before { + content: "\e6ac"; +} +.mif-dropbox:before { + content: "\e6ad"; +} +.mif-evernote:before { + content: "\e6ae"; +} +.mif-paypal:before { + content: "\e6af"; +} +.mif-swarm:before { + content: "\e6b0"; +} +.mif-vk:before { + content: "\e6b1"; +} +.mif-yelp:before { + content: "\e6b2"; +} +.mif-dribbble:before { + content: "\e6b3"; +} +.mif-lastfm:before { + content: "\e6b4"; +} +.mif-pinterest:before { + content: "\e6b5"; +} +.mif-stumbleupon:before { + content: "\e6b6"; +} +.mif-vimeo:before { + content: "\e6b7"; +} diff --git a/applications/assets/css/metro-icons.min.css b/applications/assets/css/metro-icons.min.css new file mode 100644 index 0000000..7623dc6 --- /dev/null +++ b/applications/assets/css/metro-icons.min.css @@ -0,0 +1 @@ +.after-fg-black:after,.before-fg-black:before,.fg-active-black:active,.fg-black,.fg-focus-black:focus,.fg-hover-black:hover{color:#000!important}@font-face{font-family:metro;src:url(../fonts/metro.eot?izvoei);src:url(../fonts/metro.eot?#iefixizvoei)format('embedded-opentype'),url(../fonts/metro.woff?izvoei)format('woff'),url(../fonts/metro.ttf?izvoei)format('truetype'),url(../fonts/metro.svg?izvoei#metro)format('svg');font-weight:400;font-style:normal}[class*=" mif-"],[class^=mif-]{display:inline-block;font:normal normal normal 1.5em/1;font-family:metro,"Segoe UI","Open Sans",serif;line-height:1;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-transform:translate(0,0);transform:translate(0,0);vertical-align:middle;position:static}[class*=" mif-"]:before,[class^=mif-]:before{font-family:metro,serif}.mif-lg{font-size:1.3rem;line-height:.75em;vertical-align:-35%}.mif-2x{font-size:1.75rem;vertical-align:-25%}.mif-3x{font-size:2.625rem;vertical-align:-30%}.mif-4x{font-size:3.5rem;vertical-align:-35%}.op-default{background-color:rgba(27,161,226,.7)}.bg-black{background-color:#000!important}.bd-black{border-color:#000!important}.ol-black{outline-color:#000!important}.op-black{background-color:rgba(0,0,0,.7)}.ribbed-black{background: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)#000!important;background-size:40px 40px!important}.after-bg-black:after,.before-bg-black:before,.bg-active-black:active,.bg-focus-black:focus,.bg-hover-black:hover{background:#000!important}.after-fg-white:after,.before-fg-white:before,.fg-active-white:active,.fg-focus-white:focus,.fg-hover-white:hover,.fg-white{color:#fff!important}.bg-white{background-color:#fff!important}.bd-white{border-color:#fff!important}.ol-white{outline-color:#fff!important}.op-white{background-color:rgba(255,255,255,.7)}.ribbed-white{background: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)#fff!important;background-size:40px 40px!important}.after-bg-white:after,.before-bg-white:before,.bg-active-white:active,.bg-focus-white:focus,.bg-hover-white:hover{background:#fff!important}.after-fg-lime:after,.before-fg-lime:before,.fg-active-lime:active,.fg-focus-lime:focus,.fg-hover-lime:hover,.fg-lime{color:#a4c400!important}.bg-lime{background-color:#a4c400!important}.bd-lime{border-color:#a4c400!important}.ol-lime{outline-color:#a4c400!important}.op-lime{background-color:rgba(164,196,0,.7)}.ribbed-lime{background: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)#a4c400!important;background-size:40px 40px!important}.after-bg-lime:after,.before-bg-lime:before,.bg-active-lime:active,.bg-focus-lime:focus,.bg-hover-lime:hover{background:#a4c400!important}.after-fg-green:after,.before-fg-green:before,.fg-active-green:active,.fg-focus-green:focus,.fg-green,.fg-hover-green:hover{color:#60a917!important}.bg-green{background-color:#60a917!important}.bd-green{border-color:#60a917!important}.ol-green{outline-color:#60a917!important}.op-green{background-color:rgba(96,169,23,.7)}.ribbed-green{background: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)#60a917!important;background-size:40px 40px!important}.after-bg-green:after,.before-bg-green:before,.bg-active-green:active,.bg-focus-green:focus,.bg-hover-green:hover{background:#60a917!important}.after-fg-emerald:after,.before-fg-emerald:before,.fg-active-emerald:active,.fg-emerald,.fg-focus-emerald:focus,.fg-hover-emerald:hover{color:#008a00!important}.bg-emerald{background-color:#008a00!important}.bd-emerald{border-color:#008a00!important}.ol-emerald{outline-color:#008a00!important}.op-emerald{background-color:rgba(0,138,0,.7)}.ribbed-emerald{background: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)#008a00!important;background-size:40px 40px!important}.after-bg-emerald:after,.before-bg-emerald:before,.bg-active-emerald:active,.bg-focus-emerald:focus,.bg-hover-emerald:hover{background:#008a00!important}.after-fg-blue:after,.before-fg-blue:before,.fg-active-blue:active,.fg-blue,.fg-focus-blue:focus,.fg-hover-blue:hover{color:#00aff0!important}.bg-blue{background-color:#00aff0!important}.bd-blue{border-color:#00aff0!important}.ol-blue{outline-color:#00aff0!important}.op-blue{background-color:rgba(0,175,240,.7)}.ribbed-blue{background: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)#00aff0!important;background-size:40px 40px!important}.after-bg-blue:after,.before-bg-blue:before,.bg-active-blue:active,.bg-focus-blue:focus,.bg-hover-blue:hover{background:#00aff0!important}.after-fg-teal:after,.before-fg-teal:before,.fg-active-teal:active,.fg-focus-teal:focus,.fg-hover-teal:hover,.fg-teal{color:#00aba9!important}.bg-teal{background-color:#00aba9!important}.bd-teal{border-color:#00aba9!important}.ol-teal{outline-color:#00aba9!important}.op-teal{background-color:rgba(0,171,169,.7)}.ribbed-teal{background: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)#00aba9!important;background-size:40px 40px!important}.after-bg-teal:after,.before-bg-teal:before,.bg-active-teal:active,.bg-focus-teal:focus,.bg-hover-teal:hover{background:#00aba9!important}.after-fg-cyan:after,.before-fg-cyan:before,.fg-active-cyan:active,.fg-cyan,.fg-focus-cyan:focus,.fg-hover-cyan:hover{color:#1ba1e2!important}.bg-cyan{background-color:#1ba1e2!important}.bd-cyan{border-color:#1ba1e2!important}.ol-cyan{outline-color:#1ba1e2!important}.op-cyan{background-color:rgba(27,161,226,.7)}.ribbed-cyan{background: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)#1ba1e2!important;background-size:40px 40px!important}.after-bg-cyan:after,.before-bg-cyan:before,.bg-active-cyan:active,.bg-focus-cyan:focus,.bg-hover-cyan:hover{background:#1ba1e2!important}.after-fg-cobalt:after,.before-fg-cobalt:before,.fg-active-cobalt:active,.fg-cobalt,.fg-focus-cobalt:focus,.fg-hover-cobalt:hover{color:#0050ef!important}.bg-cobalt{background-color:#0050ef!important}.bd-cobalt{border-color:#0050ef!important}.ol-cobalt{outline-color:#0050ef!important}.op-cobalt{background-color:rgba(0,80,239,.7)}.ribbed-cobalt{background: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)#0050ef!important;background-size:40px 40px!important}.after-bg-cobalt:after,.before-bg-cobalt:before,.bg-active-cobalt:active,.bg-focus-cobalt:focus,.bg-hover-cobalt:hover{background:#0050ef!important}.after-fg-indigo:after,.before-fg-indigo:before,.fg-active-indigo:active,.fg-focus-indigo:focus,.fg-hover-indigo:hover,.fg-indigo{color:#6a00ff!important}.bg-indigo{background-color:#6a00ff!important}.bd-indigo{border-color:#6a00ff!important}.ol-indigo{outline-color:#6a00ff!important}.op-indigo{background-color:rgba(106,0,255,.7)}.ribbed-indigo{background: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)#6a00ff!important;background-size:40px 40px!important}.after-bg-indigo:after,.before-bg-indigo:before,.bg-active-indigo:active,.bg-focus-indigo:focus,.bg-hover-indigo:hover{background:#6a00ff!important}.after-fg-violet:after,.before-fg-violet:before,.fg-active-violet:active,.fg-focus-violet:focus,.fg-hover-violet:hover,.fg-violet{color:#a0f!important}.bg-violet{background-color:#a0f!important}.bd-violet{border-color:#a0f!important}.ol-violet{outline-color:#a0f!important}.op-violet{background-color:rgba(170,0,255,.7)}.ribbed-violet{background: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)#a0f!important;background-size:40px 40px!important}.after-bg-violet:after,.before-bg-violet:before,.bg-active-violet:active,.bg-focus-violet:focus,.bg-hover-violet:hover{background:#a0f!important}.after-fg-pink:after,.before-fg-pink:before,.fg-active-pink:active,.fg-focus-pink:focus,.fg-hover-pink:hover,.fg-pink{color:#dc4fad!important}.bg-pink{background-color:#dc4fad!important}.bd-pink{border-color:#dc4fad!important}.ol-pink{outline-color:#dc4fad!important}.op-pink{background-color:rgba(220,79,173,.7)}.ribbed-pink{background: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)#dc4fad!important;background-size:40px 40px!important}.after-bg-pink:after,.before-bg-pink:before,.bg-active-pink:active,.bg-focus-pink:focus,.bg-hover-pink:hover{background:#dc4fad!important}.after-fg-magenta:after,.before-fg-magenta:before,.fg-active-magenta:active,.fg-focus-magenta:focus,.fg-hover-magenta:hover,.fg-magenta{color:#d80073!important}.bg-magenta{background-color:#d80073!important}.bd-magenta{border-color:#d80073!important}.ol-magenta{outline-color:#d80073!important}.op-magenta{background-color:rgba(216,0,115,.7)}.ribbed-magenta{background: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)#d80073!important;background-size:40px 40px!important}.after-bg-magenta:after,.before-bg-magenta:before,.bg-active-magenta:active,.bg-focus-magenta:focus,.bg-hover-magenta:hover{background:#d80073!important}.after-fg-crimson:after,.before-fg-crimson:before,.fg-active-crimson:active,.fg-crimson,.fg-focus-crimson:focus,.fg-hover-crimson:hover{color:#a20025!important}.bg-crimson{background-color:#a20025!important}.bd-crimson{border-color:#a20025!important}.ol-crimson{outline-color:#a20025!important}.op-crimson{background-color:rgba(162,0,37,.7)}.ribbed-crimson{background: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)#a20025!important;background-size:40px 40px!important}.after-bg-crimson:after,.before-bg-crimson:before,.bg-active-crimson:active,.bg-focus-crimson:focus,.bg-hover-crimson:hover{background:#a20025!important}.after-fg-red:after,.before-fg-red:before,.fg-active-red:active,.fg-focus-red:focus,.fg-hover-red:hover,.fg-red{color:#ce352c!important}.bg-red{background-color:#ce352c!important}.bd-red{border-color:#ce352c!important}.ol-red{outline-color:#ce352c!important}.op-red{background-color:rgba(206,53,44,.7)}.ribbed-red{background: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)#ce352c!important;background-size:40px 40px!important}.after-bg-red:after,.before-bg-red:before,.bg-active-red:active,.bg-focus-red:focus,.bg-hover-red:hover{background:#ce352c!important}.after-fg-orange:after,.before-fg-orange:before,.fg-active-orange:active,.fg-focus-orange:focus,.fg-hover-orange:hover,.fg-orange{color:#fa6800!important}.bg-orange{background-color:#fa6800!important}.bd-orange{border-color:#fa6800!important}.ol-orange{outline-color:#fa6800!important}.op-orange{background-color:rgba(250,104,0,.7)}.ribbed-orange{background: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)#fa6800!important;background-size:40px 40px!important}.after-bg-orange:after,.before-bg-orange:before,.bg-active-orange:active,.bg-focus-orange:focus,.bg-hover-orange:hover{background:#fa6800!important}.after-fg-amber:after,.before-fg-amber:before,.fg-active-amber:active,.fg-amber,.fg-focus-amber:focus,.fg-hover-amber:hover{color:#f0a30a!important}.bg-amber{background-color:#f0a30a!important}.bd-amber{border-color:#f0a30a!important}.ol-amber{outline-color:#f0a30a!important}.op-amber{background-color:rgba(240,163,10,.7)}.ribbed-amber{background: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)#f0a30a!important;background-size:40px 40px!important}.after-bg-amber:after,.before-bg-amber:before,.bg-active-amber:active,.bg-focus-amber:focus,.bg-hover-amber:hover{background:#f0a30a!important}.after-fg-yellow:after,.before-fg-yellow:before,.fg-active-yellow:active,.fg-focus-yellow:focus,.fg-hover-yellow:hover,.fg-yellow{color:#e3c800!important}.bg-yellow{background-color:#e3c800!important}.bd-yellow{border-color:#e3c800!important}.ol-yellow{outline-color:#e3c800!important}.op-yellow{background-color:rgba(227,200,0,.7)}.ribbed-yellow{background: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)#e3c800!important;background-size:40px 40px!important}.after-bg-yellow:after,.before-bg-yellow:before,.bg-active-yellow:active,.bg-focus-yellow:focus,.bg-hover-yellow:hover{background:#e3c800!important}.after-fg-brown:after,.before-fg-brown:before,.fg-active-brown:active,.fg-brown,.fg-focus-brown:focus,.fg-hover-brown:hover{color:#825a2c!important}.bg-brown{background-color:#825a2c!important}.bd-brown{border-color:#825a2c!important}.ol-brown{outline-color:#825a2c!important}.op-brown{background-color:rgba(130,90,44,.7)}.ribbed-brown{background: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)#825a2c!important;background-size:40px 40px!important}.after-bg-brown:after,.before-bg-brown:before,.bg-active-brown:active,.bg-focus-brown:focus,.bg-hover-brown:hover{background:#825a2c!important}.after-fg-olive:after,.before-fg-olive:before,.fg-active-olive:active,.fg-focus-olive:focus,.fg-hover-olive:hover,.fg-olive{color:#6d8764!important}.bg-olive{background-color:#6d8764!important}.bd-olive{border-color:#6d8764!important}.ol-olive{outline-color:#6d8764!important}.op-olive{background-color:rgba(109,135,100,.7)}.ribbed-olive{background: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)#6d8764!important;background-size:40px 40px!important}.after-bg-olive:after,.before-bg-olive:before,.bg-active-olive:active,.bg-focus-olive:focus,.bg-hover-olive:hover{background:#6d8764!important}.after-fg-steel:after,.before-fg-steel:before,.fg-active-steel:active,.fg-focus-steel:focus,.fg-hover-steel:hover,.fg-steel{color:#647687!important}.bg-steel{background-color:#647687!important}.bd-steel{border-color:#647687!important}.ol-steel{outline-color:#647687!important}.op-steel{background-color:rgba(100,118,135,.7)}.ribbed-steel{background: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)#647687!important;background-size:40px 40px!important}.after-bg-steel:after,.before-bg-steel:before,.bg-active-steel:active,.bg-focus-steel:focus,.bg-hover-steel:hover{background:#647687!important}.after-fg-mauve:after,.before-fg-mauve:before,.fg-active-mauve:active,.fg-focus-mauve:focus,.fg-hover-mauve:hover,.fg-mauve{color:#76608a!important}.bg-mauve{background-color:#76608a!important}.bd-mauve{border-color:#76608a!important}.ol-mauve{outline-color:#76608a!important}.op-mauve{background-color:rgba(118,96,138,.7)}.ribbed-mauve{background: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)#76608a!important;background-size:40px 40px!important}.after-bg-mauve:after,.before-bg-mauve:before,.bg-active-mauve:active,.bg-focus-mauve:focus,.bg-hover-mauve:hover{background:#76608a!important}.after-fg-taupe:after,.before-fg-taupe:before,.fg-active-taupe:active,.fg-focus-taupe:focus,.fg-hover-taupe:hover,.fg-taupe{color:#87794e!important}.bg-taupe{background-color:#87794e!important}.bd-taupe{border-color:#87794e!important}.ol-taupe{outline-color:#87794e!important}.op-taupe{background-color:rgba(135,121,78,.7)}.ribbed-taupe{background: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)#87794e!important;background-size:40px 40px!important}.after-bg-taupe:after,.before-bg-taupe:before,.bg-active-taupe:active,.bg-focus-taupe:focus,.bg-hover-taupe:hover{background:#87794e!important}.after-fg-dark:after,.before-fg-dark:before,.fg-active-dark:active,.fg-dark,.fg-focus-dark:focus,.fg-hover-dark:hover{color:#1d1d1d!important}.bg-dark{background-color:#1d1d1d!important}.bd-dark{border-color:#1d1d1d!important}.ol-dark{outline-color:#1d1d1d!important}.op-dark{background-color:rgba(29,29,29,.7)}.ribbed-dark{background: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)#1d1d1d!important;background-size:40px 40px!important}.after-bg-dark:after,.before-bg-dark:before,.bg-active-dark:active,.bg-focus-dark:focus,.bg-hover-dark:hover{background:#1d1d1d!important}.after-fg-darkBrown:after,.before-fg-darkBrown:before,.fg-active-darkBrown:active,.fg-darkBrown,.fg-focus-darkBrown:focus,.fg-hover-darkBrown:hover{color:#63362f!important}.bg-darkBrown{background-color:#63362f!important}.bd-darkBrown{border-color:#63362f!important}.ol-darkBrown{outline-color:#63362f!important}.op-darkBrown{background-color:rgba(99,54,47,.7)}.ribbed-darkBrown{background: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)#63362f!important;background-size:40px 40px!important}.after-bg-darkBrown:after,.before-bg-darkBrown:before,.bg-active-darkBrown:active,.bg-focus-darkBrown:focus,.bg-hover-darkBrown:hover{background:#63362f!important}.after-fg-darkCrimson:after,.before-fg-darkCrimson:before,.fg-active-darkCrimson:active,.fg-darkCrimson,.fg-focus-darkCrimson:focus,.fg-hover-darkCrimson:hover{color:#640024!important}.bg-darkCrimson{background-color:#640024!important}.bd-darkCrimson{border-color:#640024!important}.ol-darkCrimson{outline-color:#640024!important}.op-darkCrimson{background-color:rgba(100,0,36,.7)}.ribbed-darkCrimson{background: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)#640024!important;background-size:40px 40px!important}.after-bg-darkCrimson:after,.before-bg-darkCrimson:before,.bg-active-darkCrimson:active,.bg-focus-darkCrimson:focus,.bg-hover-darkCrimson:hover{background:#640024!important}.after-fg-darkMagenta:after,.before-fg-darkMagenta:before,.fg-active-darkMagenta:active,.fg-darkMagenta,.fg-focus-darkMagenta:focus,.fg-hover-darkMagenta:hover{color:#81003c!important}.bg-darkMagenta{background-color:#81003c!important}.bd-darkMagenta{border-color:#81003c!important}.ol-darkMagenta{outline-color:#81003c!important}.op-darkMagenta{background-color:rgba(129,0,60,.7)}.ribbed-darkMagenta{background: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)#81003c!important;background-size:40px 40px!important}.after-bg-darkMagenta:after,.before-bg-darkMagenta:before,.bg-active-darkMagenta:active,.bg-focus-darkMagenta:focus,.bg-hover-darkMagenta:hover{background:#81003c!important}.after-fg-darkIndigo:after,.before-fg-darkIndigo:before,.fg-active-darkIndigo:active,.fg-darkIndigo,.fg-focus-darkIndigo:focus,.fg-hover-darkIndigo:hover{color:#4b0096!important}.bg-darkIndigo{background-color:#4b0096!important}.bd-darkIndigo{border-color:#4b0096!important}.ol-darkIndigo{outline-color:#4b0096!important}.op-darkIndigo{background-color:rgba(75,0,150,.7)}.ribbed-darkIndigo{background: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)#4b0096!important;background-size:40px 40px!important}.after-bg-darkIndigo:after,.before-bg-darkIndigo:before,.bg-active-darkIndigo:active,.bg-focus-darkIndigo:focus,.bg-hover-darkIndigo:hover{background:#4b0096!important}.after-fg-darkCyan:after,.before-fg-darkCyan:before,.fg-active-darkCyan:active,.fg-darkCyan,.fg-focus-darkCyan:focus,.fg-hover-darkCyan:hover{color:#1b6eae!important}.bg-darkCyan{background-color:#1b6eae!important}.bd-darkCyan{border-color:#1b6eae!important}.ol-darkCyan{outline-color:#1b6eae!important}.op-darkCyan{background-color:rgba(27,110,174,.7)}.ribbed-darkCyan{background: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)#1b6eae!important;background-size:40px 40px!important}.after-bg-darkCyan:after,.before-bg-darkCyan:before,.bg-active-darkCyan:active,.bg-focus-darkCyan:focus,.bg-hover-darkCyan:hover{background:#1b6eae!important}.after-fg-darkCobalt:after,.before-fg-darkCobalt:before,.fg-active-darkCobalt:active,.fg-darkCobalt,.fg-focus-darkCobalt:focus,.fg-hover-darkCobalt:hover{color:#00356a!important}.bg-darkCobalt{background-color:#00356a!important}.bd-darkCobalt{border-color:#00356a!important}.ol-darkCobalt{outline-color:#00356a!important}.op-darkCobalt{background-color:rgba(0,53,106,.7)}.ribbed-darkCobalt{background: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)#00356a!important;background-size:40px 40px!important}.after-bg-darkCobalt:after,.before-bg-darkCobalt:before,.bg-active-darkCobalt:active,.bg-focus-darkCobalt:focus,.bg-hover-darkCobalt:hover{background:#00356a!important}.after-fg-darkTeal:after,.before-fg-darkTeal:before,.fg-active-darkTeal:active,.fg-darkTeal,.fg-focus-darkTeal:focus,.fg-hover-darkTeal:hover{color:#004050!important}.bg-darkTeal{background-color:#004050!important}.bd-darkTeal{border-color:#004050!important}.ol-darkTeal{outline-color:#004050!important}.op-darkTeal{background-color:rgba(0,64,80,.7)}.ribbed-darkTeal{background: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)#004050!important;background-size:40px 40px!important}.after-bg-darkTeal:after,.before-bg-darkTeal:before,.bg-active-darkTeal:active,.bg-focus-darkTeal:focus,.bg-hover-darkTeal:hover{background:#004050!important}.after-fg-darkEmerald:after,.before-fg-darkEmerald:before,.fg-active-darkEmerald:active,.fg-darkEmerald,.fg-focus-darkEmerald:focus,.fg-hover-darkEmerald:hover{color:#003e00!important}.bg-darkEmerald{background-color:#003e00!important}.bd-darkEmerald{border-color:#003e00!important}.ol-darkEmerald{outline-color:#003e00!important}.op-darkEmerald{background-color:rgba(0,62,0,.7)}.ribbed-darkEmerald{background: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)#003e00!important;background-size:40px 40px!important}.after-bg-darkEmerald:after,.before-bg-darkEmerald:before,.bg-active-darkEmerald:active,.bg-focus-darkEmerald:focus,.bg-hover-darkEmerald:hover{background:#003e00!important}.after-fg-darkGreen:after,.before-fg-darkGreen:before,.fg-active-darkGreen:active,.fg-darkGreen,.fg-focus-darkGreen:focus,.fg-hover-darkGreen:hover{color:#128023!important}.bg-darkGreen{background-color:#128023!important}.bd-darkGreen{border-color:#128023!important}.ol-darkGreen{outline-color:#128023!important}.op-darkGreen{background-color:rgba(18,128,35,.7)}.ribbed-darkGreen{background: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)#128023!important;background-size:40px 40px!important}.after-bg-darkGreen:after,.before-bg-darkGreen:before,.bg-active-darkGreen:active,.bg-focus-darkGreen:focus,.bg-hover-darkGreen:hover{background:#128023!important}.after-fg-darkOrange:after,.before-fg-darkOrange:before,.fg-active-darkOrange:active,.fg-darkOrange,.fg-focus-darkOrange:focus,.fg-hover-darkOrange:hover{color:#bf5a15!important}.bg-darkOrange{background-color:#bf5a15!important}.bd-darkOrange{border-color:#bf5a15!important}.ol-darkOrange{outline-color:#bf5a15!important}.op-darkOrange{background-color:rgba(191,90,21,.7)}.ribbed-darkOrange{background: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)#bf5a15!important;background-size:40px 40px!important}.after-bg-darkOrange:after,.before-bg-darkOrange:before,.bg-active-darkOrange:active,.bg-focus-darkOrange:focus,.bg-hover-darkOrange:hover{background:#bf5a15!important}.after-fg-darkRed:after,.before-fg-darkRed:before,.fg-active-darkRed:active,.fg-darkRed,.fg-focus-darkRed:focus,.fg-hover-darkRed:hover{color:#9a1616!important}.bg-darkRed{background-color:#9a1616!important}.bd-darkRed{border-color:#9a1616!important}.ol-darkRed{outline-color:#9a1616!important}.op-darkRed{background-color:rgba(154,22,22,.7)}.ribbed-darkRed{background: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)#9a1616!important;background-size:40px 40px!important}.after-bg-darkRed:after,.before-bg-darkRed:before,.bg-active-darkRed:active,.bg-focus-darkRed:focus,.bg-hover-darkRed:hover{background:#9a1616!important}.after-fg-darkPink:after,.before-fg-darkPink:before,.fg-active-darkPink:active,.fg-darkPink,.fg-focus-darkPink:focus,.fg-hover-darkPink:hover{color:#9a165a!important}.bg-darkPink{background-color:#9a165a!important}.bd-darkPink{border-color:#9a165a!important}.ol-darkPink{outline-color:#9a165a!important}.op-darkPink{background-color:rgba(154,22,90,.7)}.ribbed-darkPink{background: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)#9a165a!important;background-size:40px 40px!important}.after-bg-darkPink:after,.before-bg-darkPink:before,.bg-active-darkPink:active,.bg-focus-darkPink:focus,.bg-hover-darkPink:hover{background:#9a165a!important}.after-fg-darkViolet:after,.before-fg-darkViolet:before,.fg-active-darkViolet:active,.fg-darkViolet,.fg-focus-darkViolet:focus,.fg-hover-darkViolet:hover{color:#57169a!important}.bg-darkViolet{background-color:#57169a!important}.bd-darkViolet{border-color:#57169a!important}.ol-darkViolet{outline-color:#57169a!important}.op-darkViolet{background-color:rgba(87,22,154,.7)}.ribbed-darkViolet{background: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)#57169a!important;background-size:40px 40px!important}.after-bg-darkViolet:after,.before-bg-darkViolet:before,.bg-active-darkViolet:active,.bg-focus-darkViolet:focus,.bg-hover-darkViolet:hover{background:#57169a!important}.after-fg-darkBlue:after,.before-fg-darkBlue:before,.fg-active-darkBlue:active,.fg-darkBlue,.fg-focus-darkBlue:focus,.fg-hover-darkBlue:hover{color:#16499a!important}.bg-darkBlue{background-color:#16499a!important}.bd-darkBlue{border-color:#16499a!important}.ol-darkBlue{outline-color:#16499a!important}.op-darkBlue{background-color:rgba(22,73,154,.7)}.ribbed-darkBlue{background: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)#16499a!important;background-size:40px 40px!important}.after-bg-darkBlue:after,.before-bg-darkBlue:before,.bg-active-darkBlue:active,.bg-focus-darkBlue:focus,.bg-hover-darkBlue:hover{background:#16499a!important}.after-fg-lightBlue:after,.before-fg-lightBlue:before,.fg-active-lightBlue:active,.fg-focus-lightBlue:focus,.fg-hover-lightBlue:hover,.fg-lightBlue{color:#4390df!important}.bg-lightBlue{background-color:#4390df!important}.bd-lightBlue{border-color:#4390df!important}.ol-lightBlue{outline-color:#4390df!important}.op-lightBlue{background-color:rgba(67,144,223,.7)}.ribbed-lightBlue{background: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)#4390df!important;background-size:40px 40px!important}.after-bg-lightBlue:after,.before-bg-lightBlue:before,.bg-active-lightBlue:active,.bg-focus-lightBlue:focus,.bg-hover-lightBlue:hover{background:#4390df!important}.after-fg-lighterBlue:after,.before-fg-lighterBlue:before,.fg-active-lighterBlue:active,.fg-focus-lighterBlue:focus,.fg-hover-lighterBlue:hover,.fg-lighterBlue{color:#0cf!important}.bg-lighterBlue{background-color:#0cf!important}.bd-lighterBlue{border-color:#0cf!important}.ol-lighterBlue{outline-color:#0cf!important}.op-lighterBlue{background-color:rgba(0,204,255,.7)}.ribbed-lighterBlue{background: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)#0cf!important;background-size:40px 40px!important}.after-bg-lighterBlue:after,.before-bg-lighterBlue:before,.bg-active-lighterBlue:active,.bg-focus-lighterBlue:focus,.bg-hover-lighterBlue:hover{background:#0cf!important}.after-fg-lightTeal:after,.before-fg-lightTeal:before,.fg-active-lightTeal:active,.fg-focus-lightTeal:focus,.fg-hover-lightTeal:hover,.fg-lightTeal{color:#45fffd!important}.bg-lightTeal{background-color:#45fffd!important}.bd-lightTeal{border-color:#45fffd!important}.ol-lightTeal{outline-color:#45fffd!important}.op-lightTeal{background-color:rgba(69,255,253,.7)}.ribbed-lightTeal{background: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)#45fffd!important;background-size:40px 40px!important}.after-bg-lightTeal:after,.before-bg-lightTeal:before,.bg-active-lightTeal:active,.bg-focus-lightTeal:focus,.bg-hover-lightTeal:hover{background:#45fffd!important}.after-fg-lightOlive:after,.before-fg-lightOlive:before,.fg-active-lightOlive:active,.fg-focus-lightOlive:focus,.fg-hover-lightOlive:hover,.fg-lightOlive{color:#78aa1c!important}.bg-lightOlive{background-color:#78aa1c!important}.bd-lightOlive{border-color:#78aa1c!important}.ol-lightOlive{outline-color:#78aa1c!important}.op-lightOlive{background-color:rgba(120,170,28,.7)}.ribbed-lightOlive{background: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)#78aa1c!important;background-size:40px 40px!important}.after-bg-lightOlive:after,.before-bg-lightOlive:before,.bg-active-lightOlive:active,.bg-focus-lightOlive:focus,.bg-hover-lightOlive:hover{background:#78aa1c!important}.after-fg-lightOrange:after,.before-fg-lightOrange:before,.fg-active-lightOrange:active,.fg-focus-lightOrange:focus,.fg-hover-lightOrange:hover,.fg-lightOrange{color:#ffc194!important}.bg-lightOrange{background-color:#ffc194!important}.bd-lightOrange{border-color:#ffc194!important}.ol-lightOrange{outline-color:#ffc194!important}.op-lightOrange{background-color:rgba(255,193,148,.7)}.ribbed-lightOrange{background: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)#ffc194!important;background-size:40px 40px!important}.after-bg-lightOrange:after,.before-bg-lightOrange:before,.bg-active-lightOrange:active,.bg-focus-lightOrange:focus,.bg-hover-lightOrange:hover{background:#ffc194!important}.after-fg-lightPink:after,.before-fg-lightPink:before,.fg-active-lightPink:active,.fg-focus-lightPink:focus,.fg-hover-lightPink:hover,.fg-lightPink{color:#f472d0!important}.bg-lightPink{background-color:#f472d0!important}.bd-lightPink{border-color:#f472d0!important}.ol-lightPink{outline-color:#f472d0!important}.op-lightPink{background-color:rgba(244,114,208,.7)}.ribbed-lightPink{background: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)#f472d0!important;background-size:40px 40px!important}.after-bg-lightPink:after,.before-bg-lightPink:before,.bg-active-lightPink:active,.bg-focus-lightPink:focus,.bg-hover-lightPink:hover{background:#f472d0!important}.after-fg-lightRed:after,.before-fg-lightRed:before,.fg-active-lightRed:active,.fg-focus-lightRed:focus,.fg-hover-lightRed:hover,.fg-lightRed{color:#da5a53!important}.bg-lightRed{background-color:#da5a53!important}.bd-lightRed{border-color:#da5a53!important}.ol-lightRed{outline-color:#da5a53!important}.op-lightRed{background-color:rgba(218,90,83,.7)}.ribbed-lightRed{background: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)#da5a53!important;background-size:40px 40px!important}.after-bg-lightRed:after,.before-bg-lightRed:before,.bg-active-lightRed:active,.bg-focus-lightRed:focus,.bg-hover-lightRed:hover{background:#da5a53!important}.after-fg-lightGreen:after,.before-fg-lightGreen:before,.fg-active-lightGreen:active,.fg-focus-lightGreen:focus,.fg-hover-lightGreen:hover,.fg-lightGreen{color:#7ad61d!important}.bg-lightGreen{background-color:#7ad61d!important}.bd-lightGreen{border-color:#7ad61d!important}.ol-lightGreen{outline-color:#7ad61d!important}.op-lightGreen{background-color:rgba(122,214,29,.7)}.ribbed-lightGreen{background: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)#7ad61d!important;background-size:40px 40px!important}.after-bg-lightGreen:after,.before-bg-lightGreen:before,.bg-active-lightGreen:active,.bg-focus-lightGreen:focus,.bg-hover-lightGreen:hover{background:#7ad61d!important}.after-fg-lightCyan:after,.before-fg-lightCyan:before,.fg-active-lightCyan:active,.fg-focus-lightCyan:focus,.fg-hover-lightCyan:hover,.fg-lightCyan{color:#59cde2!important}.bg-lightCyan{background-color:#59cde2!important}.bd-lightCyan{border-color:#59cde2!important}.ol-lightCyan{outline-color:#59cde2!important}.op-lightCyan{background-color:rgba(89,205,226,.7)}.ribbed-lightCyan{background: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)#59cde2!important;background-size:40px 40px!important}.after-bg-lightCyan:after,.before-bg-lightCyan:before,.bg-active-lightCyan:active,.bg-focus-lightCyan:focus,.bg-hover-lightCyan:hover{background:#59cde2!important}.after-fg-grayed:after,.before-fg-grayed:before,.fg-active-grayed:active,.fg-focus-grayed:focus,.fg-grayed,.fg-hover-grayed:hover{color:#585858!important}.bg-grayed{background-color:#585858!important}.bd-grayed{border-color:#585858!important}.ol-grayed{outline-color:#585858!important}.op-grayed{background-color:rgba(88,88,88,.7)}.ribbed-grayed{background: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)#585858!important;background-size:40px 40px!important}.after-bg-grayed:after,.before-bg-grayed:before,.bg-active-grayed:active,.bg-focus-grayed:focus,.bg-hover-grayed:hover{background:#585858!important}.after-fg-grayDarker:after,.before-fg-grayDarker:before,.fg-active-grayDarker:active,.fg-focus-grayDarker:focus,.fg-grayDarker,.fg-hover-grayDarker:hover{color:#222!important}.bg-grayDarker{background-color:#222!important}.bd-grayDarker{border-color:#222!important}.ol-grayDarker{outline-color:#222!important}.op-grayDarker{background-color:rgba(34,34,34,.7)}.ribbed-grayDarker{background: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)#222!important;background-size:40px 40px!important}.after-bg-grayDarker:after,.before-bg-grayDarker:before,.bg-active-grayDarker:active,.bg-focus-grayDarker:focus,.bg-hover-grayDarker:hover{background:#222!important}.after-fg-grayDark:after,.before-fg-grayDark:before,.fg-active-grayDark:active,.fg-focus-grayDark:focus,.fg-grayDark,.fg-hover-grayDark:hover{color:#333!important}.bg-grayDark{background-color:#333!important}.bd-grayDark{border-color:#333!important}.ol-grayDark{outline-color:#333!important}.op-grayDark{background-color:rgba(51,51,51,.7)}.ribbed-grayDark{background: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)#333!important;background-size:40px 40px!important}.after-bg-grayDark:after,.before-bg-grayDark:before,.bg-active-grayDark:active,.bg-focus-grayDark:focus,.bg-hover-grayDark:hover{background:#333!important}.after-fg-gray:after,.before-fg-gray:before,.fg-active-gray:active,.fg-focus-gray:focus,.fg-gray,.fg-hover-gray:hover{color:#555!important}.bg-gray{background-color:#555!important}.bd-gray{border-color:#555!important}.ol-gray{outline-color:#555!important}.op-gray{background-color:rgba(85,85,85,.7)}.ribbed-gray{background: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)#555!important;background-size:40px 40px!important}.after-bg-gray:after,.before-bg-gray:before,.bg-active-gray:active,.bg-focus-gray:focus,.bg-hover-gray:hover{background:#555!important}.after-fg-grayLight:after,.before-fg-grayLight:before,.fg-active-grayLight:active,.fg-focus-grayLight:focus,.fg-grayLight,.fg-hover-grayLight:hover{color:#999!important}.bg-grayLight{background-color:#999!important}.bd-grayLight{border-color:#999!important}.ol-grayLight{outline-color:#999!important}.op-grayLight{background-color:rgba(153,153,153,.7)}.ribbed-grayLight{background: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)#999!important;background-size:40px 40px!important}.after-bg-grayLight:after,.before-bg-grayLight:before,.bg-active-grayLight:active,.bg-focus-grayLight:focus,.bg-hover-grayLight:hover{background:#999!important}.after-fg-grayLighter:after,.before-fg-grayLighter:before,.fg-active-grayLighter:active,.fg-focus-grayLighter:focus,.fg-grayLighter,.fg-hover-grayLighter:hover{color:#eee!important}.bg-grayLighter{background-color:#eee!important}.bd-grayLighter{border-color:#eee!important}.ol-grayLighter{outline-color:#eee!important}.op-grayLighter{background-color:rgba(238,238,238,.7)}.ribbed-grayLighter{background: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)#eee!important;background-size:40px 40px!important}.after-bg-grayLighter:after,.before-bg-grayLighter:before,.bg-active-grayLighter:active,.bg-focus-grayLighter:focus,.bg-hover-grayLighter:hover{background:#eee!important}.after-fg-lightGray:after,.before-fg-lightGray:before,.fg-active-lightGray:active,.fg-focus-lightGray:focus,.fg-hover-lightGray:hover,.fg-lightGray{color:#999!important}.bg-lightGray{background-color:#999!important}.bd-lightGray{border-color:#999!important}.ol-lightGray{outline-color:#999!important}.op-lightGray{background-color:rgba(153,153,153,.7)}.ribbed-lightGray{background: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)#999!important;background-size:40px 40px!important}.after-bg-lightGray:after,.before-bg-lightGray:before,.bg-active-lightGray:active,.bg-focus-lightGray:focus,.bg-hover-lightGray:hover{background:#999!important}.after-fg-lighterGray:after,.before-fg-lighterGray:before,.fg-active-lighterGray:active,.fg-focus-lighterGray:focus,.fg-hover-lighterGray:hover,.fg-lighterGray{color:#eee!important}.bg-lighterGray{background-color:#eee!important}.bd-lighterGray{border-color:#eee!important}.ol-lighterGray{outline-color:#eee!important}.op-lighterGray{background-color:rgba(238,238,238,.7)}.ribbed-lighterGray{background: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)#eee!important;background-size:40px 40px!important}.after-bg-lighterGray:after,.before-bg-lighterGray:before,.bg-active-lighterGray:active,.bg-focus-lighterGray:focus,.bg-hover-lighterGray:hover{background:#eee!important}.after-fg-darkGray:after,.before-fg-darkGray:before,.fg-active-darkGray:active,.fg-darkGray,.fg-focus-darkGray:focus,.fg-hover-darkGray:hover{color:#333!important}.bg-darkGray{background-color:#333!important}.bd-darkGray{border-color:#333!important}.bd-darker,.bd-darkerGray{border-color:#222!important}.ol-darkGray{outline-color:#333!important}.ol-darker,.ol-darkerGray{outline-color:#222!important}.op-darkGray{background-color:rgba(51,51,51,.7)}.ribbed-darkGray{background: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)#333!important;background-size:40px 40px!important}.after-bg-darkGray:after,.before-bg-darkGray:before,.bg-active-darkGray:active,.bg-focus-darkGray:focus,.bg-hover-darkGray:hover{background:#333!important}.after-fg-darker:after,.after-fg-darkerGray:after,.before-fg-darker:before,.before-fg-darkerGray:before,.fg-active-darker:active,.fg-active-darkerGray:active,.fg-darker,.fg-darkerGray,.fg-focus-darker:focus,.fg-focus-darkerGray:focus,.fg-hover-darker:hover,.fg-hover-darkerGray:hover{color:#222!important}.bg-darkerGray{background-color:#222!important}.op-darkerGray{background-color:rgba(34,34,34,.7)}.ribbed-darkerGray{background: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)#222!important;background-size:40px 40px!important}.after-bg-darkerGray:after,.before-bg-darkerGray:before,.bg-active-darkerGray:active,.bg-focus-darkerGray:focus,.bg-hover-darkerGray:hover{background:#222!important}.bg-darker{background-color:#222!important}.op-darker{background-color:rgba(34,34,34,.7)}.ribbed-darker{background: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)#222!important;background-size:40px 40px!important}.after-bg-darker:after,.before-bg-darker:before,.bg-active-darker:active,.bg-focus-darker:focus,.bg-hover-darker:hover{background:#222!important}.dropdown-toggle{position:relative;cursor:pointer;padding-right:1.625rem}.dropdown-toggle:before{display:block;position:absolute;vertical-align:middle;color:transparent;font-size:0;content:"";height:5px;width:5px;background-color:transparent;border-left:1px solid;border-bottom:1px solid;border-color:#1d1d1d;top:50%;left:100%;margin-left:-1rem;margin-top:-.1625rem;z-index:2;-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}.dropdown-toggle.drop-marker-light:before{border-color:#fff}.flush-list{padding:0;margin:0;list-style:none inside}.after-shadow:after,.before-shadow:before,.shadow{box-shadow:0 2px 4px rgba(0,0,0,.35)}.block-shadow{box-shadow:0 0 5px 0 rgba(0,0,0,.3)}.block-shadow-success{box-shadow:0 0 25px 0 rgba(0,128,0,.7)}.block-shadow-danger,.block-shadow-error{box-shadow:0 0 25px 0 rgba(128,0,0,.7)}.block-shadow-warning{box-shadow:0 0 25px 0 rgba(255,165,0,.7)}.block-shadow-info{box-shadow:0 0 25px 0 rgba(89,205,226,.7)}.block-shadow-impact{box-shadow:0 0 20px 0 rgba(0,0,0,.2)}.bottom-shadow{box-shadow:-1px 6px 6px -6px rgba(0,0,0,.35)}.after-text-shadow:after,.before-text-shadow:before,.text-shadow{text-shadow:2px 2px 4px rgba(0,0,0,.4)}.no-shadow{box-shadow:none!important}.full-size{width:100%!important}.block{display:block!important}.inline-block{display:inline-block!important}.no-display{display:none!important}.no-margin{margin:0!important}.no-margin-right{margin-right:0!important}.no-margin-left{margin-left:0!important}.no-margin-top{margin-top:0!important}.no-margin-bottom{margin-bottom:0!important}.no-padding{padding:0!important}.no-padding-left{padding-left:0!important}.no-padding-right{padding-right:0!important}.no-padding-top{padding-top:0!important}.no-padding-bottom{padding-bottom:0!important}.no-float{float:none!important}.no-visible{visibility:hidden!important}.no-border{border:0!important}.no-overflow,.no-scroll{overflow:hidden!important}.no-scroll-x{overflow-x:hidden!important}.no-scroll-y{overflow-y:hidden!important}.no-wrap{white-space:nowrap!important}.no-border-left{border-left:none!important}.no-border-right{border-right:none!important}.no-border-top{border-top:none!important}.no-border-bottom{border-bottom:none!important}.transparent-border{border-color:transparent!important}.place-right{float:right!important}.place-left{float:left!important}.clear-float:after,.clear-float:before{display:table;content:""}.clear-float:after{clear:both}.clearfix:after,.clearfix:before{display:table;content:""}.clearfix:after{clear:both}.no-user-select{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.no-appearance{-moz-appearance:none;-webkit-appearance:none;appearance:none}.debug{border:1px dashed red}.example{padding:.625rem 1.825rem .625rem 2.5rem;border:1px dashed #ccc;position:relative;margin:0 0 .625rem;background-color:#fff}.example:after,.example:before{display:table;content:""}.example:after{clear:both}.example:before{position:absolute;content:attr(data-text);text-transform:lowercase;left:1.5rem;top:11.875rem;color:gray;display:block;font-size:1rem;line-height:1rem;height:1rem;text-align:right;white-space:nowrap;direction:ltr;width:12.5rem;-webkit-transform:rotate(-90deg);transform:rotate(-90deg);-webkit-transform-origin:0 100%;transform-origin:0 100%}.element-selected:after,.element-selected:before{position:absolute;content:""}.video-container{position:relative;padding-bottom:56.25%;padding-top:30px;height:0;overflow:hidden}.video-container embed,.video-container iframe,.video-container object{position:absolute;top:0;left:0;width:100%;height:100%}.padding10{padding:.625rem}.padding20{padding:1.25rem}.padding30{padding:1.875rem}.padding40{padding:2.5rem}.padding50{padding:3.125rem}.padding60{padding:3.75rem}.padding70{padding:4.375rem}.padding80{padding:5rem}.padding90{padding:5.625rem}.padding100{padding:6.25rem}.padding5{padding:5px}.margin5{margin:5px}.margin10{margin:.625rem}.margin20{margin:1.25rem}.margin30{margin:1.875rem}.margin40{margin:2.5rem}.margin50{margin:3.125rem}.margin60{margin:3.75rem}.margin70{margin:4.375rem}.margin80{margin:5rem}.margin90{margin:5.625rem}.margin100{margin:6.25rem}.opacity{opacity:.9}.half-opacity{opacity:.5}.hi-opacity{opacity:.2}.element-selected{border:4px solid #4390df}.element-selected:after{display:block;border-top:28px solid #4390df;border-left:28px solid transparent;right:0;top:0;z-index:101}.element-selected:before{display:block;background-color:transparent;border-color:#fff;border-left:2px solid;border-bottom:2px solid;height:.25rem;width:.5rem;right:0;top:0;z-index:102;-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}.set-border{border:1px solid #d9d9d9}.set-border.medium-border{border-width:8px}.set-border.large-border{border-width:16px}.rotate45{-webkit-transform:rotate(45deg);transform:rotate(45deg)}.rotate90{-webkit-transform:rotate(90deg);transform:rotate(90deg)}.rotate135{-webkit-transform:rotate(135deg);transform:rotate(135deg)}.rotate180{-webkit-transform:rotate(180deg);transform:rotate(180deg)}.rotate225{-webkit-transform:rotate(225deg);transform:rotate(225deg)}.rotate270{-webkit-transform:rotate(270deg);transform:rotate(270deg)}.rotate360{-webkit-transform:rotate(360deg);transform:rotate(360deg)}.rotate-45{-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}.rotate-90{-webkit-transform:rotate(-90deg);transform:rotate(-90deg)}.rotate-135{-webkit-transform:rotate(-135deg);transform:rotate(-135deg)}.rotate-180{-webkit-transform:rotate(-180deg);transform:rotate(-180deg)}.rotate-225{-webkit-transform:rotate(-225deg);transform:rotate(-225deg)}.rotate-270{-webkit-transform:rotate(-270deg);transform:rotate(-270deg)}.rotate-360{-webkit-transform:rotate(-360deg);transform:rotate(-360deg)}.rotateX45{-webkit-transform:rotateX(45deg);transform:rotateX(45deg)}.rotateX90{-webkit-transform:rotateX(90deg);transform:rotateX(90deg)}.rotateX135{-webkit-transform:rotateX(135deg);transform:rotateX(135deg)}.rotateX180{-webkit-transform:rotateX(180deg);transform:rotateX(180deg)}.rotateX225{-webkit-transform:rotateX(225deg);transform:rotateX(225deg)}.rotateX270{-webkit-transform:rotateX(270deg);transform:rotateX(270deg)}.rotateX360{-webkit-transform:rotateX(360deg);transform:rotateX(360deg)}.rotateX-45{-webkit-transform:rotateX(-45deg);transform:rotateX(-45deg)}.rotateX-90{-webkit-transform:rotateX(-90deg);transform:rotateX(-90deg)}.rotateX-135{-webkit-transform:rotateX(-135deg);transform:rotateX(-135deg)}.rotateX-180{-webkit-transform:rotateX(-180deg);transform:rotateX(-180deg)}.rotateX-225{-webkit-transform:rotateX(-225deg);transform:rotateX(-225deg)}.rotateX-270{-webkit-transform:rotateX(-270deg);transform:rotateX(-270deg)}.rotateX-360{-webkit-transform:rotateX(-360deg);transform:rotateX(-360deg)}.rotateY45{-webkit-transform:rotateY(45deg);transform:rotateY(45deg)}.rotateY90{-webkit-transform:rotateY(90deg);transform:rotateY(90deg)}.rotateY135{-webkit-transform:rotateY(135deg);transform:rotateY(135deg)}.rotateY180{-webkit-transform:rotateY(180deg);transform:rotateY(180deg)}.rotateY225{-webkit-transform:rotateY(225deg);transform:rotateY(225deg)}.rotateY270{-webkit-transform:rotateY(270deg);transform:rotateY(270deg)}.rotateY360{-webkit-transform:rotateY(360deg);transform:rotateY(360deg)}.rotateY-45{-webkit-transform:rotateY(-45deg);transform:rotateY(-45deg)}.rotateY-90{-webkit-transform:rotateY(-90deg);transform:rotateY(-90deg)}.rotateY-135{-webkit-transform:rotateY(-135deg);transform:rotateY(-135deg)}.rotateY-180{-webkit-transform:rotateY(-180deg);transform:rotateY(-180deg)}.rotateY-225{-webkit-transform:rotateY(-225deg);transform:rotateY(-225deg)}.rotateY-270{-webkit-transform:rotateY(-270deg);transform:rotateY(-270deg)}.rotateY-360{-webkit-transform:rotateY(-360deg);transform:rotateY(-360deg)}.ani-hover-spin:hover,.ani-spin{-webkit-animation:ani-spin 1.5s linear infinite;animation:ani-spin 1.5s linear infinite}.ani-hover-spin.ani-fast:hover,.ani-spin.ani-fast{-webkit-animation:ani-spin .7s linear infinite;animation:ani-spin .7s linear infinite}.ani-hover-spin.ani-slow:hover,.ani-spin.ani-slow{-webkit-animation:ani-spin 2.2s linear infinite;animation:ani-spin 2.2s linear infinite}.ani-hover-pulse:hover,.ani-pulse{-webkit-animation:ani-pulse 1.7s infinite;animation:ani-pulse 1.7s infinite}.ani-hover-pulse.ani-fast:hover,.ani-pulse.ani-fast{-webkit-animation:ani-pulse 1s infinite;animation:ani-pulse 1s infinite}.ani-hover-pulse.ani-slow:hover,.ani-pulse.ani-slow{-webkit-animation:ani-pulse 3s infinite;animation:ani-pulse 3s infinite}.ani-hover-spanner:hover,.ani-spanner{transform-origin-x:90%;transform-origin-y:35%;transform-origin-z:initial;-webkit-animation:ani-wrench 2.5s ease infinite;animation:ani-wrench 2.5s ease infinite}.ani-hover-spanner.ani-fast:hover,.ani-spanner.ani-fast{-webkit-animation:ani-wrench 1.2s ease infinite;animation:ani-wrench 1.2s ease infinite}.ani-hover-spanner.ani-slow:hover,.ani-spanner.ani-slow{-webkit-animation:ani-wrench 3.7s ease infinite;animation:ani-wrench 3.7s ease infinite}.ani-hover-ring:hover,.ani-ring{transform-origin-x:50%;transform-origin-y:0;transform-origin-z:initial;-webkit-animation:ani-ring 2s ease infinite;animation:ani-ring 2s ease infinite}.ani-hover-ring.ani-fast:hover,.ani-ring.ani-fast{-webkit-animation:ani-ring 1s ease infinite;animation:ani-ring 1s ease infinite}.ani-hover-ring.ani-slow:hover,.ani-ring.ani-slow{-webkit-animation:ani-ring 3s ease infinite;animation:ani-ring 3s ease infinite}.ani-hover-vertical:hover,.ani-vertical{-webkit-animation:ani-vertical 2s ease infinite;animation:ani-vertical 2s ease infinite}.ani-vertical.ani-fast,.ani-vertical.ani-fast:hover{-webkit-animation:ani-vertical 1s ease infinite;animation:ani-vertical 1s ease infinite}.ani-hover-vertical.ani-slow:hover,.ani-vertical.ani-slow{-webkit-animation:ani-vertical 4s ease infinite;animation:ani-vertical 4s ease infinite}.ani-horizontal,.ani-hover-horizontal:hover{-webkit-animation:ani-horizontal 2s ease infinite;animation:ani-horizontal 2s ease infinite}.ani-horizontal.ani-fast,.ani-horizontal.ani-fast:hover{-webkit-animation:ani-horizontal 1s ease infinite;animation:ani-horizontal 1s ease infinite}.ani-horizontal.ani-slow,.ani-horizontal.ani-slow:hover{-webkit-animation:ani-horizontal 3s ease infinite;animation:ani-horizontal 3s ease infinite}.ani-flash,.ani-hover-flash:hover{-webkit-animation:ani-flash 2s ease infinite;animation:ani-flash 2s ease infinite}.ani-flash.ani-fast,.ani-hover-flash.ani-fast:hover{-webkit-animation:ani-flash 1s ease infinite;animation:ani-flash 1s ease infinite}.ani-flash.ani-slow,.ani-hover-flash.ani-slow:hover{-webkit-animation:ani-flash 3s ease infinite;animation:ani-flash 3s ease infinite}.ani-bounce,.ani-hover-bounce:hover{-webkit-animation:ani-bounce 2s ease infinite;animation:ani-bounce 2s ease infinite}.ani-bounce.ani-fast,.ani-hover-bounce.ani-fast:hover{-webkit-animation:ani-bounce 1s ease infinite;animation:ani-bounce 1s ease infinite}.ani-bounce.ani-slow,.ani-hover-bounce.ani-slow:hover{-webkit-animation:ani-bounce 3s ease infinite;animation:ani-bounce 3s ease infinite}.ani-float,.ani-hover-float:hover{-webkit-animation:ani-float 2s linear infinite;animation:ani-float 2s linear infinite}.ani-float.ani-fast,.ani-hover-float.ani-fast:hover{-webkit-animation:ani-float 1s linear infinite;animation:ani-float 1s linear infinite}.ani-float.ani-slow,.ani-hover-float.ani-slow:hover{-webkit-animation:ani-float 3s linear infinite;animation:ani-float 3s linear infinite}.ani-heartbeat,.ani-hover-heartbeat:hover{-webkit-animation:ani-heartbeat 2s linear infinite;animation:ani-heartbeat 2s linear infinite}.ani-heartbeat.ani-fast,.ani-hover-heartbeat.ani-fast:hover{-webkit-animation:ani-heartbeat 1s linear infinite;animation:ani-heartbeat 1s linear infinite}.ani-heartbeat.ani-slow,.ani-hover-heartbeat.ani-slow:hover{-webkit-animation:ani-heartbeat 3s linear infinite;animation:ani-heartbeat 3s linear infinite}.ani-hover-shake:hover,.ani-shake{-webkit-animation:ani-wrench 2.5s ease infinite;animation:ani-wrench 2.5s ease infinite}.ani-hover-shake.ani-fast:hover,.ani-shake.ani-fast{-webkit-animation:ani-wrench 1.2s ease infinite;animation:ani-wrench 1.2s ease infinite}.ani-hover-shake.ani-slow:hover,.ani-shake.ani-slow{-webkit-animation:ani-wrench 3.7s ease infinite;animation:ani-wrench 3.7s ease infinite}.ani-hover-shuttle:hover,.ani-shuttle{-webkit-animation:ani-shuttle 2s linear infinite;animation:ani-shuttle 2s linear infinite}.ani-hover-shuttle.ani-fast:hover,.ani-shuttle.ani-fast{-webkit-animation:ani-shuttle 1s linear infinite;animation:ani-shuttle 1s linear infinite}.ani-hover-shuttle.ani-slow:hover,.ani-shuttle.ani-slow{-webkit-animation:ani-shuttle 3s linear infinite;animation:ani-shuttle 3s linear infinite}.ani-hover-pass:hover,.ani-pass{-webkit-animation:ani-pass 2s linear infinite;animation:ani-pass 2s linear infinite}.ani-hover-pass.ani-fast:hover,.ani-pass.ani-fast{-webkit-animation:ani-pass 1s linear infinite;animation:ani-pass 1s linear infinite}.ani-hover-pass.ani-slow:hover,.ani-pass.ani-slow{-webkit-animation:ani-pass 3s linear infinite;animation:ani-pass 3s linear infinite}.ani-hover-ripple:hover,.ani-ripple{-webkit-animation:ani-ripple 2s infinite linear;animation:ani-ripple 2s infinite linear}.ani-hover-ripple.ani-fast:hover,.ani-ripple.ani-fast{-webkit-animation:ani-ripple 1s infinite linear;animation:ani-ripple 1s infinite linear}.ani-hover-ripple.ani-slow:hover,.ani-ripple.ani-slow{-webkit-animation:ani-ripple 3s infinite linear;animation:ani-ripple 3s infinite linear}@-webkit-keyframes swinging{0%,100%,50%{-webkit-transform:rotate(0);transform:rotate(0)}5%{-webkit-transform:rotate(10deg);transform:rotate(10deg)}10%{-webkit-transform:rotate(-9deg);transform:rotate(-9deg)}15%{-webkit-transform:rotate(8deg);transform:rotate(8deg)}20%{-webkit-transform:rotate(-7deg);transform:rotate(-7deg)}25%{-webkit-transform:rotate(6deg);transform:rotate(6deg)}30%{-webkit-transform:rotate(-5deg);transform:rotate(-5deg)}35%{-webkit-transform:rotate(4deg);transform:rotate(4deg)}40%{-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}45%{-webkit-transform:rotate(2deg);transform:rotate(2deg)}}@keyframes swinging{0%,100%,50%{-webkit-transform:rotate(0);transform:rotate(0)}5%{-webkit-transform:rotate(10deg);transform:rotate(10deg)}10%{-webkit-transform:rotate(-9deg);transform:rotate(-9deg)}15%{-webkit-transform:rotate(8deg);transform:rotate(8deg)}20%{-webkit-transform:rotate(-7deg);transform:rotate(-7deg)}25%{-webkit-transform:rotate(6deg);transform:rotate(6deg)}30%{-webkit-transform:rotate(-5deg);transform:rotate(-5deg)}35%{-webkit-transform:rotate(4deg);transform:rotate(4deg)}40%{-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}45%{-webkit-transform:rotate(2deg);transform:rotate(2deg)}}@-webkit-keyframes scaleout{0%{-webkit-transform:scale(0);transform:scale(0)}100%{-webkit-transform:scale(1);transform:scale(1);opacity:0}}@keyframes scaleout{0%{-webkit-transform:scale(0);transform:scale(0)}100%{-webkit-transform:scale(1);transform:scale(1);opacity:0}}@-webkit-keyframes cubemove{25%{-webkit-transform:translateX(10px)rotate(-90deg);transform:translateX(10px)rotate(-90deg)}50%{-webkit-transform:translateX(10px)translateY(10px)rotate(-179deg);transform:translateX(10px)translateY(10px)rotate(-179deg)}50.1%{-webkit-transform:translateX(10px)translateY(10px)rotate(-180deg);transform:translateX(10px)translateY(10px)rotate(-180deg)}75%{-webkit-transform:translateX(0)translateY(10px)rotate(-270deg);transform:translateX(0)translateY(10px)rotate(-270deg)}100%{-webkit-transform:rotate(-360deg);transform:rotate(-360deg)}}@keyframes cubemove{25%{-webkit-transform:translateX(10px)rotate(-90deg);transform:translateX(10px)rotate(-90deg)}50%{-webkit-transform:translateX(10px)translateY(10px)rotate(-179deg);transform:translateX(10px)translateY(10px)rotate(-179deg)}50.1%{-webkit-transform:translateX(10px)translateY(10px)rotate(-180deg);transform:translateX(10px)translateY(10px)rotate(-180deg)}75%{-webkit-transform:translateX(0)translateY(10px)rotate(-270deg);transform:translateX(0)translateY(10px)rotate(-270deg)}100%{-webkit-transform:rotate(-360deg);transform:rotate(-360deg)}}@-webkit-keyframes orbit{0%{opacity:1;-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out;-webkit-transform:rotate(225deg);transform:rotate(225deg)}7%{-webkit-transform:rotate(345deg);transform:rotate(345deg);-webkit-animation-timing-function:linear;animation-timing-function:linear}35%{-webkit-transform:rotate(495deg);transform:rotate(495deg);-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}42%{-webkit-transform:rotate(690deg);transform:rotate(690deg);-webkit-animation-timing-function:linear;animation-timing-function:linear}70%{opacity:1;-webkit-transform:rotate(835deg);transform:rotate(835deg);-webkit-animation-timing-function:linear;animation-timing-function:linear}76%{opacity:1}77%{-webkit-transform:rotate(955deg);transform:rotate(955deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}100%,78%{-webkit-transform:rotate(955deg);transform:rotate(955deg);opacity:0}}@keyframes orbit{0%{opacity:1;-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out;-webkit-transform:rotate(225deg);transform:rotate(225deg)}7%{-webkit-transform:rotate(345deg);transform:rotate(345deg);-webkit-animation-timing-function:linear;animation-timing-function:linear}35%{-webkit-transform:rotate(495deg);transform:rotate(495deg);-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}42%{-webkit-transform:rotate(690deg);transform:rotate(690deg);-webkit-animation-timing-function:linear;animation-timing-function:linear}70%{opacity:1;-webkit-transform:rotate(835deg);transform:rotate(835deg);-webkit-animation-timing-function:linear;animation-timing-function:linear}76%{opacity:1}77%{-webkit-transform:rotate(955deg);transform:rotate(955deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}100%,78%{-webkit-transform:rotate(955deg);transform:rotate(955deg);opacity:0}}@-webkit-keyframes metro-slide{0%{left:-50%}100%{left:150%}}@keyframes metro-slide{0%{left:-50%}100%{left:150%}}@-webkit-keyframes metro-opacity{0%{opacity:0}50%{opacity:.5}100%{opacity:1}}@keyframes metro-opacity{0%{opacity:0}50%{opacity:.5}100%{opacity:1}}@-webkit-keyframes ani-spin{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes ani-spin{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@-webkit-keyframes ani-pulse{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes ani-pulse{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@-webkit-keyframes ani-wrench{0%{-webkit-transform:rotate(-12deg);transform:rotate(-12deg)}8%{-webkit-transform:rotate(12deg);transform:rotate(12deg)}10%,28%,30%,48%,50%,68%{-webkit-transform:rotate(24deg);transform:rotate(24deg)}18%,20%,38%,40%,58%,60%{-webkit-transform:rotate(-24deg);transform:rotate(-24deg)}75%{-webkit-transform:rotate(0);transform:rotate(0)}}@keyframes ani-wrench{0%{-webkit-transform:rotate(-12deg);transform:rotate(-12deg)}8%{-webkit-transform:rotate(12deg);transform:rotate(12deg)}10%,28%,30%,48%,50%,68%{-webkit-transform:rotate(24deg);transform:rotate(24deg)}18%,20%,38%,40%,58%,60%{-webkit-transform:rotate(-24deg);transform:rotate(-24deg)}75%{-webkit-transform:rotate(0);transform:rotate(0)}}@-webkit-keyframes ani-ring{0%{-webkit-transform:rotate(-15deg);transform:rotate(-15deg)}2%{-webkit-transform:rotate(15deg);transform:rotate(15deg)}12%,4%{-webkit-transform:rotate(-18deg);transform:rotate(-18deg)}14%,6%{-webkit-transform:rotate(18deg);transform:rotate(18deg)}8%{-webkit-transform:rotate(-22deg);transform:rotate(-22deg)}10%{-webkit-transform:rotate(22deg);transform:rotate(22deg)}16%{-webkit-transform:rotate(-12deg);transform:rotate(-12deg)}18%{-webkit-transform:rotate(12deg);transform:rotate(12deg)}20%{-webkit-transform:rotate(0);transform:rotate(0)}}@keyframes ani-ring{0%{-webkit-transform:rotate(-15deg);transform:rotate(-15deg)}2%{-webkit-transform:rotate(15deg);transform:rotate(15deg)}12%,4%{-webkit-transform:rotate(-18deg);transform:rotate(-18deg)}14%,6%{-webkit-transform:rotate(18deg);transform:rotate(18deg)}8%{-webkit-transform:rotate(-22deg);transform:rotate(-22deg)}10%{-webkit-transform:rotate(22deg);transform:rotate(22deg)}16%{-webkit-transform:rotate(-12deg);transform:rotate(-12deg)}18%{-webkit-transform:rotate(12deg);transform:rotate(12deg)}20%{-webkit-transform:rotate(0);transform:rotate(0)}}@-webkit-keyframes ani-vertical{0%,16%,8%{-webkit-transform:translate(0,-3px);transform:translate(0,-3px)}12%,20%,4%{-webkit-transform:translate(0,3px);transform:translate(0,3px)}22%{-webkit-transform:translate(0,0);transform:translate(0,0)}}@keyframes ani-vertical{0%,16%,8%{-webkit-transform:translate(0,-3px);transform:translate(0,-3px)}12%,20%,4%{-webkit-transform:translate(0,3px);transform:translate(0,3px)}22%{-webkit-transform:translate(0,0);transform:translate(0,0)}}@-webkit-keyframes ani-horizontal{0%,12%,24%,36%{-webkit-transform:translate(0,0);transform:translate(0,0)}18%,30%,6%{-webkit-transform:translate(5px,0);transform:translate(5px,0)}}@keyframes ani-horizontal{0%,12%,24%,36%{-webkit-transform:translate(0,0);transform:translate(0,0)}18%,30%,6%{-webkit-transform:translate(5px,0);transform:translate(5px,0)}}@-webkit-keyframes ani-flash{0%,100%,50%{opacity:1}25%,75%{opacity:0}}@keyframes ani-flash{0%,100%,50%{opacity:1}25%,75%{opacity:0}}@-webkit-keyframes ani-bounce{0%,10%,20%,50%,80%{-webkit-transform:translateY(0);transform:translateY(0)}40%,60%{-webkit-transform:translateY(-15px);transform:translateY(-15px)}}@keyframes ani-bounce{0%,10%,20%,50%,80%{-webkit-transform:translateY(0);transform:translateY(0)}40%,60%{-webkit-transform:translateY(-15px);transform:translateY(-15px)}}@-webkit-keyframes ani-float{0%,100%{-webkit-transform:translateY(0);transform:translateY(0)}50%{-webkit-transform:translateY(-6px);transform:translateY(-6px)}}@keyframes ani-float{0%,100%{-webkit-transform:translateY(0);transform:translateY(0)}50%{-webkit-transform:translateY(-6px);transform:translateY(-6px)}}@-webkit-keyframes ani-heartbeat{0%,100%{-webkit-transform:scale(1.1);transform:scale(1.1)}50%{-webkit-transform:scale(.8);transform:scale(.8)}}@keyframes ani-heartbeat{0%,100%{-webkit-transform:scale(1.1);transform:scale(1.1)}50%{-webkit-transform:scale(.8);transform:scale(.8)}}@-webkit-keyframes ani-shuttle{0%{-webkit-transform:scale(1);transform:scale(1)}10%,20%{-webkit-transform:scale(.9)rotate(-8deg);transform:scale(.9)rotate(-8deg)}30%,50%,70%{-webkit-transform:scale(1.3)rotate(8deg);transform:scale(1.3)rotate(8deg)}40%,60%{-webkit-transform:scale(1.3)rotate(-8deg);transform:scale(1.3)rotate(-8deg)}80%{-webkit-transform:scale(1)rotate(0);transform:scale(1)rotate(0)}}@keyframes ani-shuttle{0%{-webkit-transform:scale(1);transform:scale(1)}10%,20%{-webkit-transform:scale(.9)rotate(-8deg);transform:scale(.9)rotate(-8deg)}30%,50%,70%{-webkit-transform:scale(1.3)rotate(8deg);transform:scale(1.3)rotate(8deg)}40%,60%{-webkit-transform:scale(1.3)rotate(-8deg);transform:scale(1.3)rotate(-8deg)}80%{-webkit-transform:scale(1)rotate(0);transform:scale(1)rotate(0)}}@-webkit-keyframes ani-pass{0%{-webkit-transform:translateX(-50%);transform:translateX(-50%);opacity:0}50%{-webkit-transform:translateX(0);transform:translateX(0);opacity:1}100%{-webkit-transform:translateX(50%);transform:translateX(50%);opacity:0}}@keyframes ani-pass{0%{-webkit-transform:translateX(-50%);transform:translateX(-50%);opacity:0}50%{-webkit-transform:translateX(0);transform:translateX(0);opacity:1}100%{-webkit-transform:translateX(50%);transform:translateX(50%);opacity:0}}@-webkit-keyframes ani-ripple{0%{opacity:.6}50%{-webkit-transform:scale(1.8);transform:scale(1.8);opacity:0}100%{opacity:0}}@keyframes ani-ripple{0%{opacity:.6}50%{-webkit-transform:scale(1.8);transform:scale(1.8);opacity:0}100%{opacity:0}}@-webkit-keyframes ani-shrink{0%,90%{-webkit-transform:scale(1);transform:scale(1)}100%{-webkit-transform:scale(.5);transform:scale(.5)}}@keyframes ani-shrink{0%,90%{-webkit-transform:scale(1);transform:scale(1)}100%{-webkit-transform:scale(.5);transform:scale(.5)}}@-webkit-keyframes ani-drop{0%{-webkit-transform:translateY(-50px);transform:translateY(-50px)}100%,25%{-webkit-transform:translate(0);transform:translate(0)}}@keyframes ani-drop{0%{-webkit-transform:translateY(-50px);transform:translateY(-50px)}100%,25%{-webkit-transform:translate(0);transform:translate(0)}}@-webkit-keyframes ani-drop2{0%{-webkit-transform:translateY(-50px);transform:translateY(-50px)}100%,50%{-webkit-transform:translate(0);transform:translate(0)}}@keyframes ani-drop2{0%{-webkit-transform:translateY(-50px);transform:translateY(-50px)}100%,50%{-webkit-transform:translate(0);transform:translate(0)}}@-webkit-keyframes ani-drop3{0%{-webkit-transform:translateY(-50px);transform:translateY(-50px)}100%,75%{-webkit-transform:translate(0);transform:translate(0)}}@keyframes ani-drop3{0%{-webkit-transform:translateY(-50px);transform:translateY(-50px)}100%,75%{-webkit-transform:translate(0);transform:translate(0)}}@-webkit-keyframes ani-pre-spin{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes ani-pre-spin{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@-webkit-keyframes ani-bg-stripes{from{background-position:40px 0}to{background-position:0 0}}@keyframes ani-bg-stripes{from{background-position:40px 0}to{background-position:0 0}}.mif-ani-hover-spin:hover,.mif-ani-spin{-webkit-animation:ani-spin 1.5s linear infinite;animation:ani-spin 1.5s linear infinite}.mif-ani-hover-spin.mif-ani-fast:hover,.mif-ani-spin.mif-ani-fast{-webkit-animation:ani-spin .7s linear infinite;animation:ani-spin .7s linear infinite}.mif-ani-hover-spin.mif-ani-slow:hover,.mif-ani-spin.mif-ani-slow{-webkit-animation:ani-spin 2.2s linear infinite;animation:ani-spin 2.2s linear infinite}.mif-ani-hover-pulse:hover,.mif-ani-pulse{-webkit-animation:ani-pulse 1.7s infinite;animation:ani-pulse 1.7s infinite}.mif-ani-hover-pulse.mif-ani-fast:hover,.mif-ani-pulse.mif-ani-fast{-webkit-animation:ani-pulse 1s infinite;animation:ani-pulse 1s infinite}.mif-ani-hover-pulse.mif-ani-slow:hover,.mif-ani-pulse.mif-ani-slow{-webkit-animation:ani-pulse 3s infinite;animation:ani-pulse 3s infinite}.mif-ani-hover-spanner:hover,.mif-ani-spanner{transform-origin-x:90%;transform-origin-y:35%;transform-origin-z:initial;-webkit-animation:ani-wrench 2.5s ease infinite;animation:ani-wrench 2.5s ease infinite}.mif-ani-hover-spanner.mif-ani-fast:hover,.mif-ani-spanner.mif-ani-fast{-webkit-animation:ani-wrench 1.2s ease infinite;animation:ani-wrench 1.2s ease infinite}.mif-ani-hover-spanner.mif-ani-slow:hover,.mif-ani-spanner.mif-ani-slow{-webkit-animation:ani-wrench 3.7s ease infinite;animation:ani-wrench 3.7s ease infinite}.mif-ani-hover-ring:hover,.mif-ani-ring{transform-origin-x:50%;transform-origin-y:0;transform-origin-z:initial;-webkit-animation:ani-ring 2s ease infinite;animation:ani-ring 2s ease infinite}.mif-ani-hover-ring.mif-ani-fast:hover,.mif-ani-ring.mif-ani-fast{-webkit-animation:ani-ring 1s ease infinite;animation:ani-ring 1s ease infinite}.mif-ani-hover-ring.mif-ani-slow:hover,.mif-ani-ring.mif-ani-slow{-webkit-animation:ani-ring 3s ease infinite;animation:ani-ring 3s ease infinite}.mif-ani-hover-vertical:hover,.mif-ani-vertical{-webkit-animation:ani-vertical 2s ease infinite;animation:ani-vertical 2s ease infinite}.mif-ani-vertical.mif-ani-fast,.mif-ani-vertical.mif-ani-fast:hover{-webkit-animation:ani-vertical 1s ease infinite;animation:ani-vertical 1s ease infinite}.mif-ani-hover-vertical.mif-ani-slow:hover,.mif-ani-vertical.mif-ani-slow{-webkit-animation:ani-vertical 4s ease infinite;animation:ani-vertical 4s ease infinite}.mif-ani-horizontal,.mif-ani-hover-horizontal:hover{-webkit-animation:ani-horizontal 2s ease infinite;animation:ani-horizontal 2s ease infinite}.mif-ani-horizontal.mif-ani-fast,.mif-ani-horizontal.mif-ani-fast:hover{-webkit-animation:ani-horizontal 1s ease infinite;animation:ani-horizontal 1s ease infinite}.mif-ani-horizontal.mif-ani-slow,.mif-ani-horizontal.mif-ani-slow:hover{-webkit-animation:ani-horizontal 3s ease infinite;animation:ani-horizontal 3s ease infinite}.mif-ani-flash,.mif-ani-hover-flash:hover{-webkit-animation:ani-flash 2s ease infinite;animation:ani-flash 2s ease infinite}.mif-ani-flash.mif-ani-fast,.mif-ani-hover-flash.mif-ani-fast:hover{-webkit-animation:ani-flash 1s ease infinite;animation:ani-flash 1s ease infinite}.mif-ani-flash.mif-ani-slow,.mif-ani-hover-flash.mif-ani-slow:hover{-webkit-animation:ani-flash 3s ease infinite;animation:ani-flash 3s ease infinite}.mif-ani-bounce,.mif-ani-hover-bounce:hover{-webkit-animation:ani-bounce 2s ease infinite;animation:ani-bounce 2s ease infinite}.mif-ani-bounce.mif-ani-fast,.mif-ani-hover-bounce.mif-ani-fast:hover{-webkit-animation:ani-bounce 1s ease infinite;animation:ani-bounce 1s ease infinite}.mif-ani-bounce.mif-ani-slow,.mif-ani-hover-bounce.mif-ani-slow:hover{-webkit-animation:ani-bounce 3s ease infinite;animation:ani-bounce 3s ease infinite}.mif-ani-float,.mif-ani-hover-float:hover{-webkit-animation:ani-float 2s linear infinite;animation:ani-float 2s linear infinite}.mif-ani-float.mif-ani-fast,.mif-ani-hover-float.mif-ani-fast:hover{-webkit-animation:ani-float 1s linear infinite;animation:ani-float 1s linear infinite}.mif-ani-float.mif-ani-slow,.mif-ani-hover-float.mif-ani-slow:hover{-webkit-animation:ani-float 3s linear infinite;animation:ani-float 3s linear infinite}.mif-ani-heartbeat,.mif-ani-hover-heartbeat:hover{-webkit-animation:ani-heartbeat 2s linear infinite;animation:ani-heartbeat 2s linear infinite}.mif-ani-heartbeat.mif-ani-fast,.mif-ani-hover-heartbeat.mif-ani-fast:hover{-webkit-animation:ani-heartbeat 1s linear infinite;animation:ani-heartbeat 1s linear infinite}.mif-ani-heartbeat.mif-ani-slow,.mif-ani-hover-heartbeat.mif-ani-slow:hover{-webkit-animation:ani-heartbeat 3s linear infinite;animation:ani-heartbeat 3s linear infinite}.mif-ani-hover-shake:hover,.mif-ani-shake{-webkit-animation:ani-wrench 2.5s ease infinite;animation:ani-wrench 2.5s ease infinite}.mif-ani-hover-shake.mif-ani-fast:hover,.mif-ani-shake.mif-ani-fast{-webkit-animation:ani-wrench 1.2s ease infinite;animation:ani-wrench 1.2s ease infinite}.mif-ani-hover-shake.mif-ani-slow:hover,.mif-ani-shake.mif-ani-slow{-webkit-animation:ani-wrench 3.7s ease infinite;animation:ani-wrench 3.7s ease infinite}.mif-ani-hover-shuttle:hover,.mif-ani-shuttle{-webkit-animation:ani-shuttle 2s linear infinite;animation:ani-shuttle 2s linear infinite}.mif-ani-hover-shuttle.mif-ani-fast:hover,.mif-ani-shuttle.mif-ani-fast{-webkit-animation:ani-shuttle 1s linear infinite;animation:ani-shuttle 1s linear infinite}.mif-ani-hover-shuttle.mif-ani-slow:hover,.mif-ani-shuttle.mif-ani-slow{-webkit-animation:ani-shuttle 3s linear infinite;animation:ani-shuttle 3s linear infinite}.mif-ani-hover-pass:hover,.mif-ani-pass{-webkit-animation:ani-pass 2s linear infinite;animation:ani-pass 2s linear infinite}.mif-ani-hover-pass.mif-ani-fast:hover,.mif-ani-pass.mif-ani-fast{-webkit-animation:ani-pass 1s linear infinite;animation:ani-pass 1s linear infinite}.mif-ani-hover-pass.mif-ani-slow:hover,.mif-ani-pass.mif-ani-slow{-webkit-animation:ani-pass 3s linear infinite;animation:ani-pass 3s linear infinite}.mif-ani-hover-ripple:hover,.mif-ani-ripple{-webkit-animation:ani-ripple 2s infinite linear;animation:ani-ripple 2s infinite linear}.mif-ani-hover-ripple.mif-ani-fast:hover,.mif-ani-ripple.mif-ani-fast{-webkit-animation:ani-ripple 1s infinite linear;animation:ani-ripple 1s infinite linear}.mif-ani-hover-ripple.mif-ani-slow:hover,.mif-ani-ripple.mif-ani-slow{-webkit-animation:ani-ripple 3s infinite linear;animation:ani-ripple 3s infinite linear}.mif-unlink:before{content:"\f127"}.mif-fire-extinguisher:before{content:"\f134"}.mif-eur:before{content:"\f153"}.mif-gbp:before{content:"\f154"}.mif-dollar2:before{content:"\f155"}.mif-inr:before{content:"\f156"}.mif-cny:before{content:"\f157"}.mif-rouble:before{content:"\f158"}.mif-krw:before{content:"\f159"}.mif-bitcoin:before{content:"\f15a"}.mif-youtube2:before{content:"\f167"}.mif-youtube-play:before{content:"\f16a"}.mif-linux:before{content:"\f17c"}.mif-try:before{content:"\f195"}.mif-space-shuttle:before{content:"\f197"}.mif-openid:before{content:"\f19b"}.mif-digg:before{content:"\f1a6"}.mif-language:before{content:"\f1ab"}.mif-automobile:before{content:"\f1b9"}.mif-cab:before{content:"\f1ba"}.mif-jsfiddle:before{content:"\f1cc"}.mif-google-wallet:before{content:"\f1ee"}.mif-copyright:before{content:"\f1f9"}.mif-bicycle:before{content:"\f206"}.mif-bus:before{content:"\f207"}.mif-ship:before{content:"\f21a"}.mif-motorcycle:before{content:"\f21c"}.mif-train:before{content:"\f238"}.mif-subway:before{content:"\f239"}.mif-opencart:before{content:"\f23d"}.mif-trademark:before{content:"\f25c"}.mif-registered:before{content:"\f25d"}.mif-creative-commons:before{content:"\f25e"}.mif-wikipedia:before{content:"\f266"}.mif-amazon:before{content:"\f270"}.mif-fonticons:before{content:"\f280"}.mif-user-md:before{content:"\f0f0"}.mif-stethoscope:before{content:"\f0f1"}.mif-ambulance:before{content:"\f0f9"}.mif-medkit:before{content:"\f0fa"}.mif-paw:before{content:"\f1b0"}.mif-file-pdf:before{content:"\f1c1"}.mif-file-word:before{content:"\f1c2"}.mif-file-excel:before{content:"\f1c3"}.mif-file-powerpoint:before{content:"\f1c4"}.mif-file-image:before{content:"\f1c5"}.mif-file-archive:before{content:"\f1c6"}.mif-file-audio:before{content:"\f1c7"}.mif-file-movie:before{content:"\f1c8"}.mif-file-code:before{content:"\f1c9"}.mif-visa:before{content:"\f1f0"}.mif-mastercard:before{content:"\f1f1"}.mif-discover:before{content:"\f1f2"}.mif-amex:before{content:"\f1f3"}.mif-cc-paypal:before{content:"\f1f4"}.mif-heartbeat:before{content:"\f21e"}.mif-venus:before{content:"\f221"}.mif-mars:before{content:"\f222"}.mif-medium:before{content:"\f23a"}.mif-earth2:before{content:"\e6c1"}.mif-shit:before{content:"\e6c2"}.mif-broadcast:before{content:"\f048"}.mif-organization:before{content:"\f037"}.mif-squirrel:before{content:"\f0b2"}.mif-steps:before{content:"\f0c7"}.mif-versions:before{content:"\f064"}.mif-microscope:before{content:"\f089"}.mif-library:before{content:"\e921"}.mif-file-binary:before{content:"\f094"}.mif-mail-read:before{content:"\f03c"}.mif-quote:before{content:"\f063"}.mif-sunrise:before{content:"\e66c"}.mif-sun:before{content:"\e66d"}.mif-moon:before{content:"\e66e"}.mif-sun3:before{content:"\e66f"}.mif-windy:before{content:"\e670"}.mif-wind:before{content:"\e671"}.mif-snowflake:before{content:"\e672"}.mif-cloudy:before{content:"\e673"}.mif-cloud2:before{content:"\e674"}.mif-weather:before{content:"\e675"}.mif-weather2:before{content:"\e676"}.mif-weather3:before{content:"\e677"}.mif-lines:before{content:"\e678"}.mif-cloud3:before{content:"\e679"}.mif-lightning:before{content:"\e67a"}.mif-lightning2:before{content:"\e67b"}.mif-rainy:before{content:"\e67c"}.mif-rainy2:before{content:"\e67d"}.mif-windy2:before{content:"\e67e"}.mif-windy3:before{content:"\e67f"}.mif-snowy:before{content:"\e680"}.mif-snowy2:before{content:"\e681"}.mif-snowy3:before{content:"\e682"}.mif-weather4:before{content:"\e683"}.mif-cloudy2:before{content:"\e684"}.mif-cloud4:before{content:"\e685"}.mif-lightning3:before{content:"\e686"}.mif-sun4:before{content:"\e687"}.mif-moon2:before{content:"\e688"}.mif-cloudy3:before{content:"\e689"}.mif-cloud5:before{content:"\e68a"}.mif-cloud6:before{content:"\e68b"}.mif-lightning4:before{content:"\e68c"}.mif-rainy3:before{content:"\e68d"}.mif-rainy4:before{content:"\e68e"}.mif-windy4:before{content:"\e68f"}.mif-windy5:before{content:"\e690"}.mif-snowy4:before{content:"\e691"}.mif-snowy5:before{content:"\e692"}.mif-weather5:before{content:"\e693"}.mif-cloudy4:before{content:"\e694"}.mif-lightning5:before{content:"\e695"}.mif-thermometer:before{content:"\e696"}.mif-none:before{content:"\e698"}.mif-celsius:before{content:"\e699"}.mif-fahrenheit:before{content:"\e69a"}.mif-home:before{content:"\e900"}.mif-pencil:before{content:"\e905"}.mif-eyedropper:before{content:"\e90a"}.mif-paint:before{content:"\e90c"}.mif-image:before{content:"\e90d"}.mif-images:before{content:"\e90e"}.mif-camera:before{content:"\e90f"}.mif-headphones:before{content:"\e910"}.mif-music:before{content:"\e911"}.mif-film:before{content:"\e913"}.mif-video-camera:before{content:"\e914"}.mif-dice:before{content:"\e915"}.mif-wifi-connect:before{content:"\e91b"}.mif-feed:before{content:"\e91d"}.mif-mic:before{content:"\e91e"}.mif-books:before{content:"\e920"}.mif-file-empty:before{content:"\e924"}.mif-files-empty:before{content:"\e925"}.mif-file-text:before{content:"\e926"}.mif-file-picture:before{content:"\e927"}.mif-file-music:before{content:"\e928"}.mif-file-play:before{content:"\e929"}.mif-file-video:before{content:"\e92a"}.mif-file-zip:before{content:"\e92b"}.mif-stack:before{content:"\e92e"}.mif-folder:before{content:"\e92f"}.mif-folder-open:before{content:"\e930"}.mif-folder-plus:before{content:"\e931"}.mif-folder-minus:before{content:"\e932"}.mif-folder-download:before{content:"\e933"}.mif-folder-upload:before{content:"\e934"}.mif-tag:before{content:"\e935"}.mif-tags:before{content:"\e936"}.mif-barcode:before{content:"\e937"}.mif-qrcode:before{content:"\e938"}.mif-cart:before{content:"\e93a"}.mif-credit-card:before{content:"\e93f"}.mif-calculator:before{content:"\e940"}.mif-help:before{content:"\e941"}.mif-phone:before{content:"\e942"}.mif-envelop:before{content:"\e945"}.mif-location:before{content:"\e948"}.mif-compass:before{content:"\e949"}.mif-compass2:before{content:"\e94a"}.mif-map:before{content:"\e94b"}.mif-history:before{content:"\e94d"}.mif-bell:before{content:"\e951"}.mif-calendar:before{content:"\e953"}.mif-printer:before{content:"\e954"}.mif-keyboard:before{content:"\e955"}.mif-display:before{content:"\e956"}.mif-laptop:before{content:"\e957"}.mif-mobile:before{content:"\e959"}.mif-tablet:before{content:"\e95a"}.mif-download:before{content:"\e960"}.mif-upload:before{content:"\e961"}.mif-floppy-disk:before{content:"\e962"}.mif-drive:before{content:"\e963"}.mif-database:before{content:"\e964"}.mif-undo:before{content:"\e965"}.mif-redo:before{content:"\e966"}.mif-bubble:before{content:"\e96b"}.mif-bubbles:before{content:"\e96c"}.mif-user:before{content:"\e971"}.mif-users:before{content:"\e972"}.mif-user-plus:before{content:"\e973"}.mif-user-minus:before{content:"\e974"}.mif-user-check:before{content:"\e975"}.mif-hour-glass:before{content:"\e979"}.mif-spinner:before{content:"\e97a"}.mif-spinner1:before{content:"\e97b"}.mif-spinner2:before{content:"\e97d"}.mif-spinner3:before{content:"\e981"}.mif-spinner4:before{content:"\e982"}.mif-spinner5:before{content:"\e983"}.mif-search:before{content:"\e986"}.mif-zoom-in:before{content:"\e987"}.mif-zoom-out:before{content:"\e988"}.mif-enlarge:before{content:"\e989"}.mif-shrink:before{content:"\e98a"}.mif-enlarge2:before{content:"\e98b"}.mif-shrink2:before{content:"\e98c"}.mif-key:before{content:"\e98d"}.mif-wrench:before{content:"\e991"}.mif-equalizer:before{content:"\e992"}.mif-equalizer-v:before{content:"\e993"}.mif-cog:before{content:"\e994"}.mif-cogs:before{content:"\e995"}.mif-magic-wand:before{content:"\e997"}.mif-bug:before{content:"\e999"}.mif-chart-pie:before{content:"\e99a"}.mif-chart-dots:before{content:"\e99b"}.mif-chart-bars:before{content:"\e99c"}.mif-chart-bars2:before{content:"\e99d"}.mif-trophy:before{content:"\e99e"}.mif-gift:before{content:"\e99f"}.mif-spoon-fork:before{content:"\e9a3"}.mif-rocket:before{content:"\e9a5"}.mif-meter:before{content:"\e9a6"}.mif-hammer:before{content:"\e9a8"}.mif-fire:before{content:"\e9a9"}.mif-lab:before{content:"\e9aa"}.mif-bin:before{content:"\e9ac"}.mif-truck:before{content:"\e9b0"}.mif-target:before{content:"\e9b3"}.mif-power:before{content:"\e9b5"}.mif-switch:before{content:"\e9b6"}.mif-power-cord:before{content:"\e9b7"}.mif-clipboard:before{content:"\e9b8"}.mif-list-numbered:before{content:"\e9b9"}.mif-list:before{content:"\e9ba"}.mif-list2:before{content:"\e9bb"}.mif-tree:before{content:"\e9bc"}.mif-cloud:before{content:"\e9c1"}.mif-cloud-download:before{content:"\e9c2"}.mif-cloud-upload:before{content:"\e9c3"}.mif-download2:before{content:"\e9c7"}.mif-upload2:before{content:"\e9c8"}.mif-earth:before{content:"\e9ca"}.mif-link:before{content:"\e9cb"}.mif-flag:before{content:"\e9cc"}.mif-attachment:before{content:"\e9cd"}.mif-eye:before{content:"\e9ce"}.mif-bookmark:before{content:"\e9d2"}.mif-bookmarks:before{content:"\e9d3"}.mif-contrast:before{content:"\e9d5"}.mif-brightness:before{content:"\e9d6"}.mif-star-empty:before{content:"\e9d7"}.mif-star-half:before{content:"\e9d8"}.mif-star-full:before{content:"\e9d9"}.mif-heart:before{content:"\e9da"}.mif-heart-broken:before{content:"\e9db"}.mif-warning:before{content:"\ea07"}.mif-notification:before{content:"\ea08"}.mif-question:before{content:"\ea09"}.mif-plus:before{content:"\ea0a"}.mif-minus:before{content:"\ea0b"}.mif-info:before{content:"\ea0c"}.mif-cancel:before{content:"\ea0d"}.mif-blocked:before{content:"\ea0e"}.mif-cross:before{content:"\ea0f"}.mif-checkmark:before{content:"\ea10"}.mif-spell-check:before{content:"\ea12"}.mif-enter:before{content:"\ea13"}.mif-exit:before{content:"\ea14"}.mif-play:before{content:"\ea1c"}.mif-pause:before{content:"\ea1d"}.mif-stop:before{content:"\ea1e"}.mif-backward:before{content:"\ea1f"}.mif-forward:before{content:"\ea20"}.mif-first:before{content:"\ea21"}.mif-last:before{content:"\ea22"}.mif-previous:before{content:"\ea23"}.mif-next:before{content:"\ea24"}.mif-eject:before{content:"\ea25"}.mif-volume-high:before{content:"\ea26"}.mif-volume-medium:before{content:"\ea27"}.mif-volume-low:before{content:"\ea28"}.mif-volume-mute:before{content:"\ea29"}.mif-volume-mute2:before{content:"\ea2a"}.mif-volume-plus:before{content:"\ea2b"}.mif-volume-minus:before{content:"\ea2c"}.mif-loop:before{content:"\ea2d"}.mif-loop2:before{content:"\ea2e"}.mif-infinite:before{content:"\ea2f"}.mif-shuffle:before{content:"\ea30"}.mif-arrow-up-left:before{content:"\ea39"}.mif-arrow-up:before{content:"\ea3a"}.mif-arrow-up-right:before{content:"\ea3b"}.mif-arrow-right:before{content:"\ea3c"}.mif-arrow-down-right:before{content:"\ea3d"}.mif-arrow-down:before{content:"\ea3e"}.mif-arrow-down-left:before{content:"\ea3f"}.mif-arrow-left:before{content:"\ea40"}.mif-tab:before{content:"\ea45"}.mif-move-up:before{content:"\ea46"}.mif-move-down:before{content:"\ea47"}.mif-sort-asc:before{content:"\ea4c"}.mif-sort-desc:before{content:"\ea4d"}.mif-command:before{content:"\ea4e"}.mif-shift:before{content:"\ea4f"}.mif-crop:before{content:"\ea57"}.mif-filter:before{content:"\ea5b"}.mif-bold:before{content:"\ea62"}.mif-underline:before{content:"\ea63"}.mif-italic:before{content:"\ea64"}.mif-strikethrough:before{content:"\ea65"}.mif-page-break:before{content:"\ea68"}.mif-superscript:before{content:"\ea69"}.mif-subscript:before{content:"\ea6a"}.mif-table:before{content:"\ea71"}.mif-insert-template:before{content:"\ea72"}.mif-pilcrow:before{content:"\ea73"}.mif-ltr:before{content:"\ea74"}.mif-rtl:before{content:"\ea75"}.mif-section:before{content:"\ea76"}.mif-paragraph-left:before{content:"\ea77"}.mif-paragraph-center:before{content:"\ea78"}.mif-paragraph-right:before{content:"\ea79"}.mif-paragraph-justify:before{content:"\ea7a"}.mif-indent-increase:before{content:"\ea7b"}.mif-indent-decrease:before{content:"\ea7c"}.mif-embed:before{content:"\ea7f"}.mif-embed2:before{content:"\ea80"}.mif-share:before{content:"\ea82"}.mif-google:before{content:"\ea87"}.mif-google-plus:before{content:"\ea88"}.mif-facebook:before{content:"\ea8d"}.mif-twitter:before{content:"\ea91"}.mif-feed3:before{content:"\ea95"}.mif-youtube:before{content:"\ea99"}.mif-steam:before{content:"\eaae"}.mif-onedrive:before{content:"\eab0"}.mif-github:before{content:"\eab3"}.mif-git:before{content:"\eab5"}.mif-apple:before{content:"\eabf"}.mif-android:before{content:"\eac1"}.mif-windows:before{content:"\eac3"}.mif-skype:before{content:"\eac6"}.mif-linkedin:before{content:"\eac8"}.mif-html5:before{content:"\eadf"}.mif-css3:before{content:"\eae1"}.mif-chrome:before{content:"\eae5"}.mif-firefox:before{content:"\eae6"}.mif-ie:before{content:"\eae7"}.mif-opera:before{content:"\eae8"}.mif-safari:before{content:"\eae9"}.mif-airplane:before{content:"\e6c3"}.mif-truck2:before{content:"\e6c4"}.mif-instagram:before{content:"\e6c5"}.mif-twitch:before{content:"\e6c6"}.mif-picassa:before{content:"\e6c7"}.mif-deviantart2:before{content:"\e6c8"}.mif-wordpress2:before{content:"\e6c9"}.mif-joomla:before{content:"\e6ca"}.mif-blogger:before{content:"\e6cb"}.mif-tux:before{content:"\e6cc"}.mif-finder:before{content:"\e6cd"}.mif-soundcloud:before{content:"\e6ce"}.mif-reddit:before{content:"\e6cf"}.mif-delicious:before{content:"\e6d0"}.mif-stackoverflow:before{content:"\e6d1"}.mif-flattr:before{content:"\e6d2"}.mif-foursquare:before{content:"\e6d3"}.mif-file-openoffice:before{content:"\e6d4"}.mif-libreoffice:before{content:"\e6d5"}.mif-codepen:before{content:"\e6d6"}.mif-IcoMoon:before{content:"\e6d7"}.mif-stack2:before{content:"\e6b9"}.mif-stack3:before{content:"\e6ba"}.mif-lamp:before{content:"\e6bb"}.mif-injection:before{content:"\e6bc"}.mif-thermometer2:before{content:"\e6bd"}.mif-justice:before{content:"\e6be"}.mif-cabinet:before{content:"\e62b"}.mif-suitcase:before{content:"\e62c"}.mif-gamepad:before{content:"\e65e"}.mif-satellite:before{content:"\e65f"}.mif-lock:before{content:"\e660"}.mif-unlock:before{content:"\e661"}.mif-battery-full:before{content:"\e62d"}.mif-battery-two:before{content:"\e62e"}.mif-battery-one:before{content:"\e62f"}.mif-battery-empty:before{content:"\e630"}.mif-battery-charge:before{content:"\e631"}.mif-tools:before{content:"\e632"}.mif-pin:before{content:"\e662"}.mif-discout:before{content:"\e663"}.mif-profile:before{content:"\e664"}.mif-dollar:before{content:"\e665"}.mif-dollars:before{content:"\e666"}.mif-coins:before{content:"\e6b8"}.mif-male:before{content:"\e667"}.mif-female:before{content:"\e668"}.mif-piano:before{content:"\e669"}.mif-anchor:before{content:"\e66a"}.mif-directions-bike:before{content:"\e6bf"}.mif-location-city:before{content:"\e6c0"}.mif-wifi-low:before{content:"\e60c"}.mif-wifi-mid:before{content:"\e60d"}.mif-wifi-full:before{content:"\e634"}.mif-tablet-landscape:before{content:"\e635"}.mif-calculator2:before{content:"\e636"}.mif-barbell:before{content:"\e637"}.mif-chart-line:before{content:"\e656"}.mif-3d-rotation:before{content:"\e600"}.mif-alarm:before{content:"\e601"}.mif-alarm-on:before{content:"\e602"}.mif-favorite:before{content:"\e603"}.mif-perm-phone-msg:before{content:"\e604"}.mif-print:before{content:"\e605"}.mif-bt-settings:before{content:"\e606"}.mif-settings-ethernet:before{content:"\e607"}.mif-settings-phone:before{content:"\e608"}.mif-settings-power:before{content:"\e609"}.mif-settings-voice:before{content:"\e60a"}.mif-shopping-basket:before{content:"\e60b"}.mif-dialer-sip:before{content:"\e60e"}.mif-dialpad:before{content:"\e60f"}.mif-contacts-dialer:before{content:"\e610"}.mif-contacts-mail:before{content:"\e611"}.mif-ring-volume:before{content:"\e612"}.mif-voicemail:before{content:"\e613"}.mif-drafts:before{content:"\e614"}.mif-mail:before{content:"\e615"}.mif-bluetooth:before{content:"\e626"}.mif-bt-connected:before{content:"\e627"}.mif-bt-disabled:before{content:"\e628"}.mif-bt-searching:before{content:"\e629"}.mif-brightness-auto:before{content:"\e62a"}.mif-multitrack-audio:before{content:"\e616"}.mif-widgets:before{content:"\e617"}.mif-usb:before{content:"\e638"}.mif-money:before{content:"\e639"}.mif-vertical-align-bottom:before{content:"\e63a"}.mif-vertical-align-center:before{content:"\e63b"}.mif-vertical-align-top:before{content:"\e63c"}.mif-file-download:before{content:"\e63d"}.mif-file-upload:before{content:"\e63e"}.mif-keyboard-return:before{content:"\e63f"}.mif-keyboard-voice:before{content:"\e640"}.mif-phonelink:before{content:"\e641"}.mif-phonelink-off:before{content:"\e642"}.mif-security:before{content:"\e618"}.mif-looks:before{content:"\e643"}.mif-palette:before{content:"\e619"}.mif-layers:before{content:"\e644"}.mif-layers-clear:before{content:"\e61a"}.mif-local-airport:before{content:"\e645"}.mif-florist:before{content:"\e61b"}.mif-gas-station:before{content:"\e61c"}.mif-hotel:before{content:"\e646"}.mif-local-service:before{content:"\e61d"}.mif-map2:before{content:"\e620"}.mif-my-location:before{content:"\e61e"}.mif-traff:before{content:"\e621"}.mif-apps:before{content:"\e647"}.mif-chevron-left:before{content:"\e648"}.mif-chevron-right:before{content:"\e649"}.mif-expand-less:before{content:"\e64a"}.mif-expand-more:before{content:"\e64b"}.mif-menu:before{content:"\e64c"}.mif-more-horiz:before{content:"\e64d"}.mif-more-vert:before{content:"\e64e"}.mif-unfold-less:before{content:"\e64f"}.mif-unfold-more:before{content:"\e650"}.mif-bt-audio:before{content:"\e651"}.mif-not:before{content:"\e633"}.mif-drive-eta:before{content:"\e652"}.mif-event-available:before{content:"\e653"}.mif-event-busy:before{content:"\e654"}.mif-folder-special:before{content:"\e655"}.mif-phone-bt:before{content:"\e657"}.mif-phone-forwarded:before{content:"\e658"}.mif-phone-in-talk:before{content:"\e659"}.mif-phone-locked:before{content:"\e65a"}.mif-phone-missed:before{content:"\e65b"}.mif-phone-paused:before{content:"\e65c"}.mif-sd-card:before{content:"\e65d"}.mif-sync-disabled:before{content:"\e622"}.mif-sync-problem:before{content:"\e623"}.mif-vpn-lock:before{content:"\e624"}.mif-vpn-publ:before{content:"\e625"}.mif-school:before{content:"\e61f"}.mif-chevron-thin-down:before{content:"\e66b"}.mif-chevron-thin-left:before{content:"\e697"}.mif-chevron-thin-right:before{content:"\e69b"}.mif-chevron-thin-up:before{content:"\e69c"}.mif-flow-branch:before{content:"\e69d"}.mif-flow-cascade:before{content:"\e69e"}.mif-flow-line:before{content:"\e69f"}.mif-flow-parallel:before{content:"\e6a0"}.mif-flow-tree:before{content:"\e6a1"}.mif-air:before{content:"\e6a2"}.mif-medal:before{content:"\e6a3"}.mif-paper-plane:before{content:"\e6a4"}.mif-shareable:before{content:"\e6a5"}.mif-shop:before{content:"\e6a6"}.mif-shopping-basket2:before{content:"\e6a7"}.mif-thumbs-down:before{content:"\e6a8"}.mif-thumbs-up:before{content:"\e6a9"}.mif-traffic-cone:before{content:"\e6aa"}.mif-water:before{content:"\e6ab"}.mif-creative-cloud:before{content:"\e6ac"}.mif-dropbox:before{content:"\e6ad"}.mif-evernote:before{content:"\e6ae"}.mif-paypal:before{content:"\e6af"}.mif-swarm:before{content:"\e6b0"}.mif-vk:before{content:"\e6b1"}.mif-yelp:before{content:"\e6b2"}.mif-dribbble:before{content:"\e6b3"}.mif-lastfm:before{content:"\e6b4"}.mif-pinterest:before{content:"\e6b5"}.mif-stumbleupon:before{content:"\e6b6"}.mif-vimeo:before{content:"\e6b7"} \ No newline at end of file diff --git a/applications/assets/css/metro-responsive.css b/applications/assets/css/metro-responsive.css new file mode 100644 index 0000000..9dbaca2 --- /dev/null +++ b/applications/assets/css/metro-responsive.css @@ -0,0 +1,720 @@ +.flexbox { + display: -webkit-flex; + display: flex; +} +.flex-dir-row { + -webkit-flex-direction: row; + flex-direction: row; +} +.flex-dir-row-reverse { + -webkit-flex-direction: row-reverse; + flex-direction: row-reverse; +} +.flex-dir-column { + -webkit-flex-direction: column; + flex-direction: column; +} +.flex-dir-column-reverse { + -webkit-flex-direction: column-reverse; + flex-direction: column-reverse; +} +.flex-wrap { + -webkit-flex-wrap: wrap; + flex-wrap: wrap; +} +.flex-wrap-reverse { + -webkit-flex-wrap: wrap-reverse; + flex-wrap: wrap-reverse; +} +.flex-no-wrap { + -webkit-flex-wrap: nowrap; + flex-wrap: nowrap; +} +.flex-just-start { + -webkit-justify-content: flex-start; + justify-content: flex-start; +} +.flex-just-end { + -webkit-justify-content: flex-end; + justify-content: flex-end; +} +.flex-just-center { + -webkit-justify-content: center; + justify-content: center; +} +.flex-just-sa { + -webkit-justify-content: space-around; + justify-content: space-around; +} +.flex-just-sb { + -webkit-justify-content: space-between; + justify-content: space-between; +} +.flex-align-stretch { + -webkit-align-items: stretch; + align-items: stretch; +} +.flex-align-start { + -webkit-align-items: flex-start; + align-items: flex-start; +} +.flex-align-end { + -webkit-align-items: flex-end; + align-items: flex-end; +} +.flex-align-center { + -webkit-align-items: center; + align-items: center; +} +.flex-align-base { + -webkit-align-items: baseline; + align-items: baseline; +} +.flex-content-stretch { + -webkit-align-content: stretch; + align-content: stretch; +} +.flex-content-start { + -webkit-align-content: flex-start; + align-content: flex-start; +} +.flex-content-end { + -webkit-align-content: flex-end; + align-content: flex-end; +} +.flex-content-center { + -webkit-align-content: center; + align-content: center; +} +.flex-content-sb { + -webkit-align-content: space-between; + align-content: space-between; +} +.flex-content-sa { + -webkit-align-content: space-around; + align-content: space-around; +} +.flex-self-auto { + -webkit-align-self: auto; + align-self: auto; +} +.flex-self-start { + -webkit-align-self: flex-start; + align-self: flex-start; +} +.flex-self-end { + -webkit-align-self: flex-end; + align-self: flex-end; +} +.flex-self-center { + -webkit-align-self: center; + align-self: center; +} +.flex-self-base { + -webkit-align-self: baseline; + align-self: baseline; +} +.flex-self-stretch { + -webkit-align-self: stretch; + align-self: stretch; +} +.no-shrink { + -webkit-flex-shrink: 0 !important; + flex-shrink: 0 !important; +} +.no-grow { + -webkit-flex-grow: 0 !important; + flex-grow: 0 !important; +} +.flex-size-auto { + -webkit-flex: 1 auto; + flex: 1 auto; +} +.flex-size1 { + -webkit-flex-grow: 1; + flex-grow: 1; +} +.flex-size2 { + -webkit-flex-grow: 2; + flex-grow: 2; +} +.flex-size3 { + -webkit-flex-grow: 3; + flex-grow: 3; +} +.flex-size4 { + -webkit-flex-grow: 4; + flex-grow: 4; +} +.flex-size5 { + -webkit-flex-grow: 5; + flex-grow: 5; +} +.flex-size6 { + -webkit-flex-grow: 6; + flex-grow: 6; +} +.flex-size7 { + -webkit-flex-grow: 7; + flex-grow: 7; +} +.flex-size8 { + -webkit-flex-grow: 8; + flex-grow: 8; +} +.flex-size9 { + -webkit-flex-grow: 9; + flex-grow: 9; +} +.flex-size10 { + -webkit-flex-grow: 10; + flex-grow: 10; +} +.flex-size11 { + -webkit-flex-grow: 11; + flex-grow: 11; +} +.flex-size12 { + -webkit-flex-grow: 12; + flex-grow: 12; +} +.flex-size-p10 { + -webkit-flex: 0 0 10%; + flex: 0 0 10%; +} +.flex-size-p20 { + -webkit-flex: 0 0 20%; + flex: 0 0 20%; +} +.flex-size-p30 { + -webkit-flex: 0 0 30%; + flex: 0 0 30%; +} +.flex-size-p40 { + -webkit-flex: 0 0 40%; + flex: 0 0 40%; +} +.flex-size-p50 { + -webkit-flex: 0 0 50%; + flex: 0 0 50%; +} +.flex-size-p60 { + -webkit-flex: 0 0 60%; + flex: 0 0 60%; +} +.flex-size-p70 { + -webkit-flex: 0 0 70%; + flex: 0 0 70%; +} +.flex-size-p80 { + -webkit-flex: 0 0 80%; + flex: 0 0 80%; +} +.flex-size-p90 { + -webkit-flex: 0 0 90%; + flex: 0 0 90%; +} +.flex-size-p100 { + -webkit-flex: 0 0 100%; + flex: 0 0 100%; +} +.flex-size-x100 { + -webkit-flex: 0 0 100px; + flex: 0 0 100px; +} +.flex-size-x200 { + -webkit-flex: 0 0 200px; + flex: 0 0 200px; +} +.flex-size-x300 { + -webkit-flex: 0 0 300px; + flex: 0 0 300px; +} +.flex-size-x400 { + -webkit-flex: 0 0 400px; + flex: 0 0 400px; +} +.flex-size-x500 { + -webkit-flex: 0 0 500px; + flex: 0 0 500px; +} +.flex-size-x600 { + -webkit-flex: 0 0 600px; + flex: 0 0 600px; +} +.flex-size-x700 { + -webkit-flex: 0 0 700px; + flex: 0 0 700px; +} +.flex-size-x800 { + -webkit-flex: 0 0 800px; + flex: 0 0 800px; +} +.flex-size-x900 { + -webkit-flex: 0 0 900px; + flex: 0 0 900px; +} +.flex-size-x1000 { + -webkit-flex: 0 0 1000px; + flex: 0 0 1000px; +} +@media screen and (min-width: 1401px) { + html { + font-size: 120%; + } +} +@media screen and (max-width: 1400px) { + html { + font-size: 110%; + } +} +@media screen and (max-width: 1200px) { + html { + font-size: 100%; + } +} +@media screen and (max-width: 768px) { + html { + font-size: 100%; + } +} +@media screen and (max-width: 640px) { + html { + font-size: 90%; + } +} +@media screen and (max-width: 320px) { + html { + font-size: 80%; + } +} +@media screen and (max-width: 800px) { + h1, + h2, + h3, + h4, + h5, + h6, + p { + margin: .625rem; + } +} +@media screen and (min-width: 1401px) { + .container { + width: 1200px; + } +} +@media screen and (max-width: 992px) { + .container { + width: 100%; + padding: 10px; + } +} +@media screen and (max-width: 768px) { + .container { + width: 100%; + padding: 10px; + } +} +@media screen and (max-width: 640px) { + .container { + width: 100%; + padding: 10px; + } +} +@media screen and (max-width: 320px) { + .container { + width: 100%; + padding: 5px; + } +} +@media only screen and (max-width: 800px) { + .flex-grid .row { + -webkit-flex-wrap: wrap; + flex-wrap: wrap; + } + .flex-grid .row .cell, + .flex-grid .row .cell[class*=size] { + -webkit-flex: 0 0 50%; + flex: 0 0 50%; + } + .flex-grid .row .cell:nth-child(1):last-child, + .flex-grid .row .cell[class*=size]:nth-child(1):last-child, + .flex-grid .row .cell:nth-child(3):last-child, + .flex-grid .row .cell[class*=size]:nth-child(3):last-child, + .flex-grid .row .cell:nth-child(5):last-child, + .flex-grid .row .cell[class*=size]:nth-child(5):last-child, + .flex-grid .row .cell:nth-child(7):last-child, + .flex-grid .row .cell[class*=size]:nth-child(7):last-child, + .flex-grid .row .cell:nth-child(9):last-child, + .flex-grid .row .cell[class*=size]:nth-child(9):last-child, + .flex-grid .row .cell:nth-child(11):last-child, + .flex-grid .row .cell[class*=size]:nth-child(11):last-child { + -webkit-flex-basis: 100%; + flex-basis: 100%; + } +} +@media only screen and (max-width: 640px) { + .flex-grid .row { + -webkit-flex-direction: column; + flex-direction: column; + } +} +@media screen and (max-width: 800px) { + .grid .row, + .grid .row[class*=cells] { + margin: 0; + } + .grid .row > .cell, + .grid .row[class*=cells] > .cell, + .grid .row > .cell[class*=colspan], + .grid .row[class*=cells] > .cell[class*=colspan] { + width: 48.936175% ; + margin-bottom: 10px; + } + .grid .row > .cell:nth-child(odd), + .grid .row[class*=cells] > .cell:nth-child(odd), + .grid .row > .cell[class*=colspan]:nth-child(odd), + .grid .row[class*=cells] > .cell[class*=colspan]:nth-child(odd) { + margin-left: 0; + } + .grid .row > .cell:nth-child(1):last-child, + .grid .row[class*=cells] > .cell:nth-child(1):last-child, + .grid .row > .cell[class*=colspan]:nth-child(1):last-child, + .grid .row[class*=cells] > .cell[class*=colspan]:nth-child(1):last-child, + .grid .row > .cell:nth-child(3):last-child, + .grid .row[class*=cells] > .cell:nth-child(3):last-child, + .grid .row > .cell[class*=colspan]:nth-child(3):last-child, + .grid .row[class*=cells] > .cell[class*=colspan]:nth-child(3):last-child, + .grid .row > .cell:nth-child(5):last-child, + .grid .row[class*=cells] > .cell:nth-child(5):last-child, + .grid .row > .cell[class*=colspan]:nth-child(5):last-child, + .grid .row[class*=cells] > .cell[class*=colspan]:nth-child(5):last-child, + .grid .row > .cell:nth-child(7):last-child, + .grid .row[class*=cells] > .cell:nth-child(7):last-child, + .grid .row > .cell[class*=colspan]:nth-child(7):last-child, + .grid .row[class*=cells] > .cell[class*=colspan]:nth-child(7):last-child, + .grid .row > .cell:nth-child(9):last-child, + .grid .row[class*=cells] > .cell:nth-child(9):last-child, + .grid .row > .cell[class*=colspan]:nth-child(9):last-child, + .grid .row[class*=cells] > .cell[class*=colspan]:nth-child(9):last-child, + .grid .row > .cell:nth-child(11):last-child, + .grid .row[class*=cells] > .cell:nth-child(11):last-child, + .grid .row > .cell[class*=colspan]:nth-child(11):last-child, + .grid .row[class*=cells] > .cell[class*=colspan]:nth-child(11):last-child { + width: 100%; + } +} +@media screen and (max-width: 640px) { + .grid .row, + .grid .row[class*=cells] { + margin: 0; + } + .grid .row > .cell, + .grid .row[class*=cells] > .cell, + .grid .row > .cell[class*=colspan], + .grid .row[class*=cells] > .cell[class*=colspan] { + width: 100%; + margin: .3125rem 0; + } +} +@media screen and (max-width: 800px) { + .grid.condensed .row, + .grid.condensed .row[class*=cells] { + margin: 0; + } + .grid.condensed .row > .cell, + .grid.condensed .row[class*=cells] > .cell, + .grid.condensed .row > .cell[class*=colspan], + .grid.condensed .row[class*=cells] > .cell[class*=colspan] { + width: 50% ; + margin-bottom: 10px ; + } + .grid.condensed .row > .cell:nth-child(odd), + .grid.condensed .row[class*=cells] > .cell:nth-child(odd), + .grid.condensed .row > .cell[class*=colspan]:nth-child(odd), + .grid.condensed .row[class*=cells] > .cell[class*=colspan]:nth-child(odd) { + margin-left: 0; + } + .grid.condensed .row > .cell:nth-child(1):last-child, + .grid.condensed .row[class*=cells] > .cell:nth-child(1):last-child, + .grid.condensed .row > .cell[class*=colspan]:nth-child(1):last-child, + .grid.condensed .row[class*=cells] > .cell[class*=colspan]:nth-child(1):last-child, + .grid.condensed .row > .cell:nth-child(3):last-child, + .grid.condensed .row[class*=cells] > .cell:nth-child(3):last-child, + .grid.condensed .row > .cell[class*=colspan]:nth-child(3):last-child, + .grid.condensed .row[class*=cells] > .cell[class*=colspan]:nth-child(3):last-child, + .grid.condensed .row > .cell:nth-child(5):last-child, + .grid.condensed .row[class*=cells] > .cell:nth-child(5):last-child, + .grid.condensed .row > .cell[class*=colspan]:nth-child(5):last-child, + .grid.condensed .row[class*=cells] > .cell[class*=colspan]:nth-child(5):last-child, + .grid.condensed .row > .cell:nth-child(7):last-child, + .grid.condensed .row[class*=cells] > .cell:nth-child(7):last-child, + .grid.condensed .row > .cell[class*=colspan]:nth-child(7):last-child, + .grid.condensed .row[class*=cells] > .cell[class*=colspan]:nth-child(7):last-child, + .grid.condensed .row > .cell:nth-child(9):last-child, + .grid.condensed .row[class*=cells] > .cell:nth-child(9):last-child, + .grid.condensed .row > .cell[class*=colspan]:nth-child(9):last-child, + .grid.condensed .row[class*=cells] > .cell[class*=colspan]:nth-child(9):last-child, + .grid.condensed .row > .cell:nth-child(11):last-child, + .grid.condensed .row[class*=cells] > .cell:nth-child(11):last-child, + .grid.condensed .row > .cell[class*=colspan]:nth-child(11):last-child, + .grid.condensed .row[class*=cells] > .cell[class*=colspan]:nth-child(11):last-child { + width: 100%; + } +} +@media only screen and (max-width: 640px) { + .grid.condensed .row, + .grid.condensed .row[class*=cells] { + margin: 0; + } + .grid.condensed .row > .cell, + .grid.condensed .row[class*=cells] > .cell, + .grid.condensed .row > .cell[class*=colspan], + .grid.condensed .row[class*=cells] > .cell[class*=colspan] { + width: 100%; + margin: .3125rem 0; + } +} +@media only screen and (max-width: 640px) { + .f-menu { + -webkit-flex-direction: column; + flex-direction: column; + } +} +@media only screen and (max-width: 640px) { + .f-menu > li .d-menu { + position: relative; + box-shadow: none; + left: 0; + } +} +@media screen and (max-width: 800px) { + .sidebar { + width: 52px; + } + .sidebar li > a { + padding-right: 0; + padding-left: 0; + width: 52px !important; + } + .sidebar li > a > .title { + display: none ; + } + .sidebar li > a > .counter { + position: absolute; + top: 0; + right: 4px; + } +} +@media screen and (max-width: 320px) { + .wizard2 .step:before { + width: 16px; + } +} +@media screen and (max-width: 800px) { + .tile { + width: 120px; + height: 120px; + } +} +@media screen and (max-width: 800px) { + .tile.small-tile { + width: 56px; + height: 56px; + } +} +@media screen and (max-width: 800px) { + .tile.wide-tile { + width: 248px; + height: 120px; + } +} +@media screen and (max-width: 800px) { + .tile.wide-tile-v { + width: 120px; + height: 248px; + } +} +@media screen and (max-width: 800px) { + .tile.large-tile { + width: 248px; + height: 248px; + } +} +@media screen and (max-width: 800px) { + .tile.big-tile { + width: 376px; + height: 376px; + } +} +@media screen and (max-width: 800px) { + .tile.super-tile { + width: 504px; + height: 504px; + } +} +@media screen and (max-width: 800px) { + .tile-square { + width: 120px; + height: 120px; + } +} +@media screen and (max-width: 800px) { + .tile-small { + width: 56px; + height: 56px; + } +} +@media screen and (max-width: 800px) { + .tile-wide { + width: 248px; + height: 120px; + } +} +@media screen and (max-width: 800px) { + .tile-large { + width: 248px; + height: 248px; + } +} +@media screen and (max-width: 800px) { + .tile-big { + width: 376px; + height: 376px; + } +} +@media screen and (max-width: 800px) { + .tile-super { + width: 504px; + height: 504px; + } +} +@media screen and (max-width: 800px) { + .tile-small-x { + width: 56px; + } +} +@media screen and (max-width: 800px) { + .tile-square-x { + width: 120px; + } +} +@media screen and (max-width: 800px) { + .tile-wide-x { + width: 248px; + } +} +@media screen and (max-width: 800px) { + .tile-large-x { + width: 248px; + } +} +@media screen and (max-width: 800px) { + .tile-big-x { + width: 376px; + } +} +@media screen and (max-width: 800px) { + .tile-super-x { + width: 504px; + } +} +@media screen and (max-width: 800px) { + .tile-small-y { + height: 56px; + } +} +@media screen and (max-width: 800px) { + .tile-square-y { + height: 120px; + } +} +@media screen and (max-width: 800px) { + .tile-wide-y { + height: 248px; + } +} +@media screen and (max-width: 800px) { + .tile-large-y { + height: 248px; + } +} +@media screen and (max-width: 800px) { + .tile-big-y { + height: 376px; + } +} +@media screen and (max-width: 800px) { + .tile-super-y { + height: 504px; + } +} +@media screen and (max-width: 800px) { + .tile-content.iconic .icon { + width: 51.2px; + height: 51.2px; + margin-left: -25.6px; + margin-top: -32px; + font-size: 51.2px; + } +} +@media screen and (max-width: 800px) { + .tile-small .tile-content.iconic .icon { + font-size: 25.6px; + width: 25.6px; + height: 25.6px; + margin-left: -12.8px; + margin-top: -12.8px; + } +} +@media screen and (max-width: 640px) { + .tile-area { + width: 100% ; + padding: 0; + } + .tile-area .tile-area-title { + display: none; + } + .tile-area .tile-group { + margin: 0 ; + padding: 0 ; + float: none; + } + .tile-area .tile-group .tile-group-title { + display: none; + } +} +@media screen and (max-width: 640px) { + .tile-container { + width: 100% ; + } +} +@media screen and (max-width: 320px) { + .tile-big, + .tile.big-tile, + .tile-super, + .tile.super-tile { + width: 310px ; + } +} +@media screen and (max-width: 320px) { + .no-small-phone { + display: none !important; + } +} +@media screen and (max-width: 640px) { + .no-phone { + display: none !important; + } +} +@media screen and (max-width: 800px) { + .no-tablet { + display: none !important; + } +} +@media screen and (min-width: 801px) { + .no-pc { + display: none !important; + } +} diff --git a/applications/assets/css/metro-responsive.min.css b/applications/assets/css/metro-responsive.min.css new file mode 100644 index 0000000..3af4d5f --- /dev/null +++ b/applications/assets/css/metro-responsive.min.css @@ -0,0 +1 @@ +.flexbox{display:-webkit-flex;display:flex}.flex-dir-row{-webkit-flex-direction:row;flex-direction:row}.flex-dir-row-reverse{-webkit-flex-direction:row-reverse;flex-direction:row-reverse}.flex-dir-column{-webkit-flex-direction:column;flex-direction:column}.flex-dir-column-reverse{-webkit-flex-direction:column-reverse;flex-direction:column-reverse}.flex-wrap{-webkit-flex-wrap:wrap;flex-wrap:wrap}.flex-wrap-reverse{-webkit-flex-wrap:wrap-reverse;flex-wrap:wrap-reverse}.flex-no-wrap{-webkit-flex-wrap:nowrap;flex-wrap:nowrap}.flex-just-start{-webkit-justify-content:flex-start;justify-content:flex-start}.flex-just-end{-webkit-justify-content:flex-end;justify-content:flex-end}.flex-just-center{-webkit-justify-content:center;justify-content:center}.flex-just-sa{-webkit-justify-content:space-around;justify-content:space-around}.flex-just-sb{-webkit-justify-content:space-between;justify-content:space-between}.flex-align-stretch{-webkit-align-items:stretch;align-items:stretch}.flex-align-start{-webkit-align-items:flex-start;align-items:flex-start}.flex-align-end{-webkit-align-items:flex-end;align-items:flex-end}.flex-align-center{-webkit-align-items:center;align-items:center}.flex-align-base{-webkit-align-items:baseline;align-items:baseline}.flex-content-stretch{-webkit-align-content:stretch;align-content:stretch}.flex-content-start{-webkit-align-content:flex-start;align-content:flex-start}.flex-content-end{-webkit-align-content:flex-end;align-content:flex-end}.flex-content-center{-webkit-align-content:center;align-content:center}.flex-content-sb{-webkit-align-content:space-between;align-content:space-between}.flex-content-sa{-webkit-align-content:space-around;align-content:space-around}.flex-self-auto{-webkit-align-self:auto;align-self:auto}.flex-self-start{-webkit-align-self:flex-start;align-self:flex-start}.flex-self-end{-webkit-align-self:flex-end;align-self:flex-end}.flex-self-center{-webkit-align-self:center;align-self:center}.flex-self-base{-webkit-align-self:baseline;align-self:baseline}.flex-self-stretch{-webkit-align-self:stretch;align-self:stretch}.no-shrink{-webkit-flex-shrink:0!important;flex-shrink:0!important}.no-grow{-webkit-flex-grow:0!important;flex-grow:0!important}.flex-size-auto{-webkit-flex:1 auto;flex:1 auto}.flex-size1{-webkit-flex-grow:1;flex-grow:1}.flex-size2{-webkit-flex-grow:2;flex-grow:2}.flex-size3{-webkit-flex-grow:3;flex-grow:3}.flex-size4{-webkit-flex-grow:4;flex-grow:4}.flex-size5{-webkit-flex-grow:5;flex-grow:5}.flex-size6{-webkit-flex-grow:6;flex-grow:6}.flex-size7{-webkit-flex-grow:7;flex-grow:7}.flex-size8{-webkit-flex-grow:8;flex-grow:8}.flex-size9{-webkit-flex-grow:9;flex-grow:9}.flex-size10{-webkit-flex-grow:10;flex-grow:10}.flex-size11{-webkit-flex-grow:11;flex-grow:11}.flex-size12{-webkit-flex-grow:12;flex-grow:12}.flex-size-p10{-webkit-flex:0 0 10%;flex:0 0 10%}.flex-size-p20{-webkit-flex:0 0 20%;flex:0 0 20%}.flex-size-p30{-webkit-flex:0 0 30%;flex:0 0 30%}.flex-size-p40{-webkit-flex:0 0 40%;flex:0 0 40%}.flex-size-p50{-webkit-flex:0 0 50%;flex:0 0 50%}.flex-size-p60{-webkit-flex:0 0 60%;flex:0 0 60%}.flex-size-p70{-webkit-flex:0 0 70%;flex:0 0 70%}.flex-size-p80{-webkit-flex:0 0 80%;flex:0 0 80%}.flex-size-p90{-webkit-flex:0 0 90%;flex:0 0 90%}.flex-size-p100{-webkit-flex:0 0 100%;flex:0 0 100%}.flex-size-x100{-webkit-flex:0 0 100px;flex:0 0 100px}.flex-size-x200{-webkit-flex:0 0 200px;flex:0 0 200px}.flex-size-x300{-webkit-flex:0 0 300px;flex:0 0 300px}.flex-size-x400{-webkit-flex:0 0 400px;flex:0 0 400px}.flex-size-x500{-webkit-flex:0 0 500px;flex:0 0 500px}.flex-size-x600{-webkit-flex:0 0 600px;flex:0 0 600px}.flex-size-x700{-webkit-flex:0 0 700px;flex:0 0 700px}.flex-size-x800{-webkit-flex:0 0 800px;flex:0 0 800px}.flex-size-x900{-webkit-flex:0 0 900px;flex:0 0 900px}.flex-size-x1000{-webkit-flex:0 0 1000px;flex:0 0 1000px}@media screen and (min-width:1401px){html{font-size:120%}}@media screen and (max-width:1400px){html{font-size:110%}}@media screen and (max-width:1200px){html{font-size:100%}}@media screen and (max-width:768px){html{font-size:100%}}@media screen and (max-width:640px){html{font-size:90%}}@media screen and (min-width:1401px){.container{width:1200px}}@media screen and (max-width:992px){.container{width:100%;padding:10px}}@media screen and (max-width:768px){.container{width:100%;padding:10px}}@media screen and (max-width:640px){.container{width:100%;padding:10px}}@media screen and (max-width:320px){html{font-size:80%}.container{width:100%;padding:5px}}@media only screen and (max-width:800px){.flex-grid .row{-webkit-flex-wrap:wrap;flex-wrap:wrap}.flex-grid .row .cell,.flex-grid .row .cell[class*=size]{-webkit-flex:0 0 50%;flex:0 0 50%}.flex-grid .row .cell:nth-child(1):last-child,.flex-grid .row .cell:nth-child(11):last-child,.flex-grid .row .cell:nth-child(3):last-child,.flex-grid .row .cell:nth-child(5):last-child,.flex-grid .row .cell:nth-child(7):last-child,.flex-grid .row .cell:nth-child(9):last-child,.flex-grid .row .cell[class*=size]:nth-child(1):last-child,.flex-grid .row .cell[class*=size]:nth-child(11):last-child,.flex-grid .row .cell[class*=size]:nth-child(3):last-child,.flex-grid .row .cell[class*=size]:nth-child(5):last-child,.flex-grid .row .cell[class*=size]:nth-child(7):last-child,.flex-grid .row .cell[class*=size]:nth-child(9):last-child{-webkit-flex-basis:100%;flex-basis:100%}}@media screen and (max-width:800px){h1,h2,h3,h4,h5,h6,p{margin:.625rem}.grid .row,.grid .row[class*=cells]{margin:0}.grid .row>.cell,.grid .row>.cell[class*=colspan],.grid .row[class*=cells]>.cell,.grid .row[class*=cells]>.cell[class*=colspan]{width:48.936175%;margin-bottom:10px}.grid .row>.cell:nth-child(odd),.grid .row>.cell[class*=colspan]:nth-child(odd),.grid .row[class*=cells]>.cell:nth-child(odd),.grid .row[class*=cells]>.cell[class*=colspan]:nth-child(odd){margin-left:0}.grid .row>.cell:nth-child(1):last-child,.grid .row>.cell:nth-child(11):last-child,.grid .row>.cell:nth-child(3):last-child,.grid .row>.cell:nth-child(5):last-child,.grid .row>.cell:nth-child(7):last-child,.grid .row>.cell:nth-child(9):last-child,.grid .row>.cell[class*=colspan]:nth-child(1):last-child,.grid .row>.cell[class*=colspan]:nth-child(11):last-child,.grid .row>.cell[class*=colspan]:nth-child(3):last-child,.grid .row>.cell[class*=colspan]:nth-child(5):last-child,.grid .row>.cell[class*=colspan]:nth-child(7):last-child,.grid .row>.cell[class*=colspan]:nth-child(9):last-child,.grid .row[class*=cells]>.cell:nth-child(1):last-child,.grid .row[class*=cells]>.cell:nth-child(11):last-child,.grid .row[class*=cells]>.cell:nth-child(3):last-child,.grid .row[class*=cells]>.cell:nth-child(5):last-child,.grid .row[class*=cells]>.cell:nth-child(7):last-child,.grid .row[class*=cells]>.cell:nth-child(9):last-child,.grid .row[class*=cells]>.cell[class*=colspan]:nth-child(1):last-child,.grid .row[class*=cells]>.cell[class*=colspan]:nth-child(11):last-child,.grid .row[class*=cells]>.cell[class*=colspan]:nth-child(3):last-child,.grid .row[class*=cells]>.cell[class*=colspan]:nth-child(5):last-child,.grid .row[class*=cells]>.cell[class*=colspan]:nth-child(7):last-child,.grid .row[class*=cells]>.cell[class*=colspan]:nth-child(9):last-child{width:100%}}@media screen and (max-width:640px){.grid .row,.grid .row[class*=cells]{margin:0}.grid .row>.cell,.grid .row>.cell[class*=colspan],.grid .row[class*=cells]>.cell,.grid .row[class*=cells]>.cell[class*=colspan]{width:100%;margin:.3125rem 0}}@media screen and (max-width:800px){.grid.condensed .row,.grid.condensed .row[class*=cells]{margin:0}.grid.condensed .row>.cell,.grid.condensed .row>.cell[class*=colspan],.grid.condensed .row[class*=cells]>.cell,.grid.condensed .row[class*=cells]>.cell[class*=colspan]{width:50%;margin-bottom:10px}.grid.condensed .row>.cell:nth-child(odd),.grid.condensed .row>.cell[class*=colspan]:nth-child(odd),.grid.condensed .row[class*=cells]>.cell:nth-child(odd),.grid.condensed .row[class*=cells]>.cell[class*=colspan]:nth-child(odd){margin-left:0}.grid.condensed .row>.cell:nth-child(1):last-child,.grid.condensed .row>.cell:nth-child(11):last-child,.grid.condensed .row>.cell:nth-child(3):last-child,.grid.condensed .row>.cell:nth-child(5):last-child,.grid.condensed .row>.cell:nth-child(7):last-child,.grid.condensed .row>.cell:nth-child(9):last-child,.grid.condensed .row>.cell[class*=colspan]:nth-child(1):last-child,.grid.condensed .row>.cell[class*=colspan]:nth-child(11):last-child,.grid.condensed .row>.cell[class*=colspan]:nth-child(3):last-child,.grid.condensed .row>.cell[class*=colspan]:nth-child(5):last-child,.grid.condensed .row>.cell[class*=colspan]:nth-child(7):last-child,.grid.condensed .row>.cell[class*=colspan]:nth-child(9):last-child,.grid.condensed .row[class*=cells]>.cell:nth-child(1):last-child,.grid.condensed .row[class*=cells]>.cell:nth-child(11):last-child,.grid.condensed .row[class*=cells]>.cell:nth-child(3):last-child,.grid.condensed .row[class*=cells]>.cell:nth-child(5):last-child,.grid.condensed .row[class*=cells]>.cell:nth-child(7):last-child,.grid.condensed .row[class*=cells]>.cell:nth-child(9):last-child,.grid.condensed .row[class*=cells]>.cell[class*=colspan]:nth-child(1):last-child,.grid.condensed .row[class*=cells]>.cell[class*=colspan]:nth-child(11):last-child,.grid.condensed .row[class*=cells]>.cell[class*=colspan]:nth-child(3):last-child,.grid.condensed .row[class*=cells]>.cell[class*=colspan]:nth-child(5):last-child,.grid.condensed .row[class*=cells]>.cell[class*=colspan]:nth-child(7):last-child,.grid.condensed .row[class*=cells]>.cell[class*=colspan]:nth-child(9):last-child{width:100%}}@media only screen and (max-width:640px){.flex-grid .row{-webkit-flex-direction:column;flex-direction:column}.grid.condensed .row,.grid.condensed .row[class*=cells]{margin:0}.grid.condensed .row>.cell,.grid.condensed .row>.cell[class*=colspan],.grid.condensed .row[class*=cells]>.cell,.grid.condensed .row[class*=cells]>.cell[class*=colspan]{width:100%;margin:.3125rem 0}.f-menu{-webkit-flex-direction:column;flex-direction:column}.f-menu>li .d-menu{position:relative;box-shadow:none;left:0}}@media screen and (max-width:800px){.sidebar{width:52px}.sidebar li>a{padding-right:0;padding-left:0;width:52px!important}.sidebar li>a>.title{display:none}.sidebar li>a>.counter{position:absolute;top:0;right:4px}}@media screen and (max-width:320px){.wizard2 .step:before{width:16px}}@media screen and (max-width:800px){.tile{width:120px;height:120px}.tile.small-tile{width:56px;height:56px}.tile.wide-tile{width:248px;height:120px}.tile.wide-tile-v{width:120px;height:248px}.tile.large-tile{width:248px;height:248px}.tile.big-tile{width:376px;height:376px}.tile.super-tile{width:504px;height:504px}.tile-square{width:120px;height:120px}.tile-small{width:56px;height:56px}.tile-wide{width:248px;height:120px}.tile-large{width:248px;height:248px}.tile-big{width:376px;height:376px}.tile-super{width:504px;height:504px}.tile-small-x{width:56px}.tile-square-x{width:120px}.tile-large-x,.tile-wide-x{width:248px}.tile-big-x{width:376px}.tile-super-x{width:504px}.tile-small-y{height:56px}.tile-square-y{height:120px}.tile-large-y,.tile-wide-y{height:248px}.tile-big-y{height:376px}.tile-super-y{height:504px}.tile-content.iconic .icon{width:51.2px;height:51.2px;margin-left:-25.6px;margin-top:-32px;font-size:51.2px}.tile-small .tile-content.iconic .icon{font-size:25.6px;width:25.6px;height:25.6px;margin-left:-12.8px;margin-top:-12.8px}}@media screen and (max-width:640px){.tile-area .tile-area-title,.tile-area .tile-group .tile-group-title{display:none}.tile-area{width:100%;padding:0}.tile-area .tile-group{margin:0;padding:0;float:none}.tile-container{width:100%}}@media screen and (max-width:320px){.tile-big,.tile-super,.tile.big-tile,.tile.super-tile{width:310px}.no-small-phone{display:none!important}}@media screen and (max-width:640px){.no-phone{display:none!important}}@media screen and (max-width:800px){.no-tablet{display:none!important}}@media screen and (min-width:801px){.no-pc{display:none!important}} \ No newline at end of file diff --git a/applications/assets/css/metro-rtl.css b/applications/assets/css/metro-rtl.css new file mode 100644 index 0000000..fd2c549 --- /dev/null +++ b/applications/assets/css/metro-rtl.css @@ -0,0 +1,130 @@ +*[dir=ltr] { + direction: ltr; + unicode-bidi: embed; +} +*[dir=rtl] { + direction: rtl; + unicode-bidi: embed; +} +bdo[dir=ltr] { + direction: ltr; + unicode-bidi: bidi-override; +} +bdo[dir=rtl] { + direction: rtl; + unicode-bidi: bidi-override; +} +*[dir=rtl] ul, +*[dir=rtl] ol, +ul[dir=rtl], +ol[dir=rtl] { + margin-right: .3125rem; + margin-left: 0; + padding-right: .625rem; +} +*[dir=rtl] ul li ul, +*[dir=rtl] ol li ul, +ul[dir=rtl] li ul, +ol[dir=rtl] li ul, +*[dir=rtl] ul li ol, +*[dir=rtl] ol li ol, +ul[dir=rtl] li ol, +ol[dir=rtl] li ol { + padding-right: 1.5625rem; + padding-left: 0; +} +*[dir=rtl] dl dd, +dl[dir=rtl] dd { + margin-right: .9375rem; + margin-left: 0; +} +*[dir=rtl] dl.horizontal dt, +dl[dir=rtl].horizontal dt { + float: right; + width: 10rem; + overflow: hidden; + clear: left; + text-align: right; + text-overflow: ellipsis; + white-space: nowrap; +} +*[dir=rtl] dl.horizontal dd, +dl[dir=rtl].horizontal dd { + margin-right: 11.25rem; + margin-left: 0; +} +*[dir=rtl] blockquote, +blockquote[dir=rtl] { + margin: .625rem 0; + padding: 0 .625rem 0 0; + border-left: none; + border-right: 0.25rem #999999 solid; +} +*[dir=rtl] .input-control.text .button, +.input-control[dir=rtl].text .button, +*[dir=rtl] .input-control.select .button, +.input-control[dir=rtl].select .button, +*[dir=rtl] .input-control.file .button, +.input-control[dir=rtl].file .button, +*[dir=rtl] .input-control.password .button, +.input-control[dir=rtl].password .button, +*[dir=rtl] .input-control.number .button, +.input-control[dir=rtl].number .button, +*[dir=rtl] .input-control.email .button, +.input-control[dir=rtl].email .button, +*[dir=rtl] .input-control.tel .button, +.input-control[dir=rtl].tel .button, +*[dir=rtl] .input-control.text .button-group, +.input-control[dir=rtl].text .button-group, +*[dir=rtl] .input-control.select .button-group, +.input-control[dir=rtl].select .button-group, +*[dir=rtl] .input-control.file .button-group, +.input-control[dir=rtl].file .button-group, +*[dir=rtl] .input-control.password .button-group, +.input-control[dir=rtl].password .button-group, +*[dir=rtl] .input-control.number .button-group, +.input-control[dir=rtl].number .button-group, +*[dir=rtl] .input-control.email .button-group, +.input-control[dir=rtl].email .button-group, +*[dir=rtl] .input-control.tel .button-group, +.input-control[dir=rtl].tel .button-group { + right: auto; + left: 0; +} +*[dir=rtl] .input-control.text .prepend-icon, +.input-control[dir=rtl].text .prepend-icon, +*[dir=rtl] .input-control.select .prepend-icon, +.input-control[dir=rtl].select .prepend-icon, +*[dir=rtl] .input-control.file .prepend-icon, +.input-control[dir=rtl].file .prepend-icon, +*[dir=rtl] .input-control.password .prepend-icon, +.input-control[dir=rtl].password .prepend-icon, +*[dir=rtl] .input-control.number .prepend-icon, +.input-control[dir=rtl].number .prepend-icon, +*[dir=rtl] .input-control.email .prepend-icon, +.input-control[dir=rtl].email .prepend-icon, +*[dir=rtl] .input-control.tel .prepend-icon, +.input-control[dir=rtl].tel .prepend-icon { + left: auto; + right: 4px; +} +*[dir=rtl] .input-control.text .prepend-icon ~ input, +.input-control[dir=rtl].text .prepend-icon ~ input, +*[dir=rtl] .input-control.select .prepend-icon ~ input, +.input-control[dir=rtl].select .prepend-icon ~ input, +*[dir=rtl] .input-control.file .prepend-icon ~ input, +.input-control[dir=rtl].file .prepend-icon ~ input, +*[dir=rtl] .input-control.password .prepend-icon ~ input, +.input-control[dir=rtl].password .prepend-icon ~ input, +*[dir=rtl] .input-control.number .prepend-icon ~ input, +.input-control[dir=rtl].number .prepend-icon ~ input, +*[dir=rtl] .input-control.email .prepend-icon ~ input, +.input-control[dir=rtl].email .prepend-icon ~ input, +*[dir=rtl] .input-control.tel .prepend-icon ~ input, +.input-control[dir=rtl].tel .prepend-icon ~ input { + padding-left: 0; + padding-right: 30px; +} +*[dir=rtl] .grid .row > .cell { + float: right; +} diff --git a/applications/assets/css/metro-rtl.min.css b/applications/assets/css/metro-rtl.min.css new file mode 100644 index 0000000..4264159 --- /dev/null +++ b/applications/assets/css/metro-rtl.min.css @@ -0,0 +1 @@ +[dir=ltr],[dir=rtl]{unicode-bidi:embed}[dir=ltr],bdo[dir=ltr]{direction:ltr}bdo[dir=ltr],bdo[dir=rtl]{unicode-bidi:bidi-override}[dir=rtl]{direction:rtl}bdo[dir=rtl]{direction:rtl}[dir=rtl] ol,[dir=rtl] ul,ol[dir=rtl],ul[dir=rtl]{margin-right:.3125rem;margin-left:0;padding-right:.625rem}[dir=rtl] ol li ol,[dir=rtl] ol li ul,[dir=rtl] ul li ol,[dir=rtl] ul li ul,ol[dir=rtl] li ol,ol[dir=rtl] li ul,ul[dir=rtl] li ol,ul[dir=rtl] li ul{padding-right:1.5625rem;padding-left:0}[dir=rtl] dl dd,dl[dir=rtl] dd{margin-right:.9375rem;margin-left:0}[dir=rtl] dl.horizontal dt,dl[dir=rtl].horizontal dt{float:right;width:10rem;overflow:hidden;clear:left;text-align:right;text-overflow:ellipsis;white-space:nowrap}[dir=rtl] dl.horizontal dd,dl[dir=rtl].horizontal dd{margin-right:11.25rem;margin-left:0}[dir=rtl] blockquote,blockquote[dir=rtl]{margin:.625rem 0;padding:0 .625rem 0 0;border-left:none;border-right:.25rem #999 solid}.input-control[dir=rtl].email .button,.input-control[dir=rtl].email .button-group,.input-control[dir=rtl].file .button,.input-control[dir=rtl].file .button-group,.input-control[dir=rtl].number .button,.input-control[dir=rtl].number .button-group,.input-control[dir=rtl].password .button,.input-control[dir=rtl].password .button-group,.input-control[dir=rtl].select .button,.input-control[dir=rtl].select .button-group,.input-control[dir=rtl].tel .button,.input-control[dir=rtl].tel .button-group,.input-control[dir=rtl].text .button,.input-control[dir=rtl].text .button-group,[dir=rtl] .input-control.email .button,[dir=rtl] .input-control.email .button-group,[dir=rtl] .input-control.file .button,[dir=rtl] .input-control.file .button-group,[dir=rtl] .input-control.number .button,[dir=rtl] .input-control.number .button-group,[dir=rtl] .input-control.password .button,[dir=rtl] .input-control.password .button-group,[dir=rtl] .input-control.select .button,[dir=rtl] .input-control.select .button-group,[dir=rtl] .input-control.tel .button,[dir=rtl] .input-control.tel .button-group,[dir=rtl] .input-control.text .button,[dir=rtl] .input-control.text .button-group{right:auto;left:0}.input-control[dir=rtl].email .prepend-icon,.input-control[dir=rtl].file .prepend-icon,.input-control[dir=rtl].number .prepend-icon,.input-control[dir=rtl].password .prepend-icon,.input-control[dir=rtl].select .prepend-icon,.input-control[dir=rtl].tel .prepend-icon,.input-control[dir=rtl].text .prepend-icon,[dir=rtl] .input-control.email .prepend-icon,[dir=rtl] .input-control.file .prepend-icon,[dir=rtl] .input-control.number .prepend-icon,[dir=rtl] .input-control.password .prepend-icon,[dir=rtl] .input-control.select .prepend-icon,[dir=rtl] .input-control.tel .prepend-icon,[dir=rtl] .input-control.text .prepend-icon{left:auto;right:4px}.input-control[dir=rtl].email .prepend-icon~input,.input-control[dir=rtl].file .prepend-icon~input,.input-control[dir=rtl].number .prepend-icon~input,.input-control[dir=rtl].password .prepend-icon~input,.input-control[dir=rtl].select .prepend-icon~input,.input-control[dir=rtl].tel .prepend-icon~input,.input-control[dir=rtl].text .prepend-icon~input,[dir=rtl] .input-control.email .prepend-icon~input,[dir=rtl] .input-control.file .prepend-icon~input,[dir=rtl] .input-control.number .prepend-icon~input,[dir=rtl] .input-control.password .prepend-icon~input,[dir=rtl] .input-control.select .prepend-icon~input,[dir=rtl] .input-control.tel .prepend-icon~input,[dir=rtl] .input-control.text .prepend-icon~input{padding-left:0;padding-right:30px}[dir=rtl] .grid .row>.cell{float:right} \ No newline at end of file diff --git a/applications/assets/css/metro-schemes.css b/applications/assets/css/metro-schemes.css new file mode 100644 index 0000000..445963e --- /dev/null +++ b/applications/assets/css/metro-schemes.css @@ -0,0 +1,1329 @@ +/* +* params: name, background, backgroundHover, item, itemHover, itemDisabled, divider, dropdown-toggle +*/ +.app-bar.pink { + background-color: #dc4fad; +} +.app-bar.pink .app-bar-element:hover, +.app-bar.pink .app-bar-menu > li:hover, +.app-bar.pink .app-bar-menu > li > a:hover, +.app-bar.pink .app-bar-element:active, +.app-bar.pink .app-bar-menu > li:active, +.app-bar.pink .app-bar-menu > li > a:active { + background-color: #9a165a; +} +.app-bar.pink .app-bar-divider { + background-color: #f472d0; +} +.app-bar.pink .app-bar-element .d-menu, +.app-bar.pink .app-bar-menu > li .d-menu { + background-color: #dc4fad; + border-color: transparent; +} +.app-bar.pink .app-bar-element .d-menu li:not(.disabled) > a, +.app-bar.pink .app-bar-menu > li .d-menu li:not(.disabled) > a, +.app-bar.pink .app-bar-element .d-menu li > a, +.app-bar.pink .app-bar-menu > li .d-menu li > a { + background-color: #dc4fad; + color: #ffffff; +} +.app-bar.pink .app-bar-element .d-menu li:not(.disabled) > a:hover, +.app-bar.pink .app-bar-menu > li .d-menu li:not(.disabled) > a:hover, +.app-bar.pink .app-bar-element .d-menu li > a:hover, +.app-bar.pink .app-bar-menu > li .d-menu li > a:hover { + background-color: #9a165a; + color: #ffffff; +} +.app-bar.pink .app-bar-element .d-menu li:hover > a, +.app-bar.pink .app-bar-menu > li .d-menu li:hover > a { + background-color: #9a165a; +} +.app-bar.pink .app-bar-element .d-menu .divider, +.app-bar.pink .app-bar-menu > li .d-menu .divider { + background-color: #f472d0; +} +.app-bar.pink .app-bar-element .d-menu .divider:hover, +.app-bar.pink .app-bar-menu > li .d-menu .divider:hover { + background-color: #f472d0; +} +.app-bar.pink .app-bar-element .dropdown-toggle:before, +.app-bar.pink .app-bar-menu li .dropdown-toggle:before { + border-color: #ffffff; +} +.app-bar.pink .app-bar-element.disabled, +.app-bar.pink .app-bar-menu li.disabled, +.app-bar.pink .app-bar-element:disabled, +.app-bar.pink .app-bar-menu li:disabled { + color: #555555; +} +.app-bar.pink .app-bar-element.disabled a, +.app-bar.pink .app-bar-menu li.disabled a, +.app-bar.pink .app-bar-element:disabled a, +.app-bar.pink .app-bar-menu li:disabled a { + color: inherit !important; +} +.app-bar.pink .app-bar-pullbutton:hover { + background-color: #9a165a; +} +.app-bar.pink .app-bar-drop-container { + border: 2px solid #dc4fad; + background-color: #dc4fad; + color: #ffffff; +} +.app-bar.pink .app-bar-drop-container:before { + background-color: #dc4fad; + border-color: #dc4fad; +} +.app-bar.pink .app-bar-pullmenu .app-bar-menu { + border-top: 1px solid #f472d0; + background-color: #f472d0; +} +.app-bar.pink .app-bar-pullmenu .app-bar-menu li:hover { + background-color: #dc4fad; +} +.app-bar.pink .app-bar-pullmenu .app-bar-menu li:hover a { + background-color: #9a165a; + color: #ffffff; +} +.app-bar.darcula { + background-color: #3c3f41; +} +.app-bar.darcula .app-bar-element:hover, +.app-bar.darcula .app-bar-menu > li:hover, +.app-bar.darcula .app-bar-menu > li > a:hover, +.app-bar.darcula .app-bar-element:active, +.app-bar.darcula .app-bar-menu > li:active, +.app-bar.darcula .app-bar-menu > li > a:active { + background-color: #1d1d1d; +} +.app-bar.darcula .app-bar-divider { + background-color: #616162; +} +.app-bar.darcula .app-bar-element .d-menu, +.app-bar.darcula .app-bar-menu > li .d-menu { + background-color: #3c3f41; + border-color: transparent; +} +.app-bar.darcula .app-bar-element .d-menu li:not(.disabled) > a, +.app-bar.darcula .app-bar-menu > li .d-menu li:not(.disabled) > a, +.app-bar.darcula .app-bar-element .d-menu li > a, +.app-bar.darcula .app-bar-menu > li .d-menu li > a { + background-color: #3c3f41; + color: #ffffff; +} +.app-bar.darcula .app-bar-element .d-menu li:not(.disabled) > a:hover, +.app-bar.darcula .app-bar-menu > li .d-menu li:not(.disabled) > a:hover, +.app-bar.darcula .app-bar-element .d-menu li > a:hover, +.app-bar.darcula .app-bar-menu > li .d-menu li > a:hover { + background-color: #1d1d1d; + color: #ffffff; +} +.app-bar.darcula .app-bar-element .d-menu li:hover > a, +.app-bar.darcula .app-bar-menu > li .d-menu li:hover > a { + background-color: #1d1d1d; +} +.app-bar.darcula .app-bar-element .d-menu .divider, +.app-bar.darcula .app-bar-menu > li .d-menu .divider { + background-color: #616162; +} +.app-bar.darcula .app-bar-element .d-menu .divider:hover, +.app-bar.darcula .app-bar-menu > li .d-menu .divider:hover { + background-color: #616162; +} +.app-bar.darcula .app-bar-element .dropdown-toggle:before, +.app-bar.darcula .app-bar-menu li .dropdown-toggle:before { + border-color: #ffffff; +} +.app-bar.darcula .app-bar-element.disabled, +.app-bar.darcula .app-bar-menu li.disabled, +.app-bar.darcula .app-bar-element:disabled, +.app-bar.darcula .app-bar-menu li:disabled { + color: #555555; +} +.app-bar.darcula .app-bar-element.disabled a, +.app-bar.darcula .app-bar-menu li.disabled a, +.app-bar.darcula .app-bar-element:disabled a, +.app-bar.darcula .app-bar-menu li:disabled a { + color: inherit !important; +} +.app-bar.darcula .app-bar-pullbutton:hover { + background-color: #1d1d1d; +} +.app-bar.darcula .app-bar-drop-container { + border: 2px solid #3c3f41; + background-color: #3c3f41; + color: #ffffff; +} +.app-bar.darcula .app-bar-drop-container:before { + background-color: #3c3f41; + border-color: #3c3f41; +} +.app-bar.darcula .app-bar-pullmenu .app-bar-menu { + border-top: 1px solid #616162; + background-color: #616162; +} +.app-bar.darcula .app-bar-pullmenu .app-bar-menu li:hover { + background-color: #3c3f41; +} +.app-bar.darcula .app-bar-pullmenu .app-bar-menu li:hover a { + background-color: #1d1d1d; + color: #ffffff; +} +.app-bar.navy { + background-color: #0072c6; +} +.app-bar.navy .app-bar-element:hover, +.app-bar.navy .app-bar-menu > li:hover, +.app-bar.navy .app-bar-menu > li > a:hover, +.app-bar.navy .app-bar-element:active, +.app-bar.navy .app-bar-menu > li:active, +.app-bar.navy .app-bar-menu > li > a:active { + background-color: #005696; +} +.app-bar.navy .app-bar-divider { + background-color: #4c9cd7; +} +.app-bar.navy .app-bar-element .d-menu, +.app-bar.navy .app-bar-menu > li .d-menu { + background-color: #0072c6; + border-color: transparent; +} +.app-bar.navy .app-bar-element .d-menu li:not(.disabled) > a, +.app-bar.navy .app-bar-menu > li .d-menu li:not(.disabled) > a, +.app-bar.navy .app-bar-element .d-menu li > a, +.app-bar.navy .app-bar-menu > li .d-menu li > a { + background-color: #0072c6; + color: #ffffff; +} +.app-bar.navy .app-bar-element .d-menu li:not(.disabled) > a:hover, +.app-bar.navy .app-bar-menu > li .d-menu li:not(.disabled) > a:hover, +.app-bar.navy .app-bar-element .d-menu li > a:hover, +.app-bar.navy .app-bar-menu > li .d-menu li > a:hover { + background-color: #005696; + color: #ffffff; +} +.app-bar.navy .app-bar-element .d-menu li:hover > a, +.app-bar.navy .app-bar-menu > li .d-menu li:hover > a { + background-color: #005696; +} +.app-bar.navy .app-bar-element .d-menu .divider, +.app-bar.navy .app-bar-menu > li .d-menu .divider { + background-color: #4c9cd7; +} +.app-bar.navy .app-bar-element .d-menu .divider:hover, +.app-bar.navy .app-bar-menu > li .d-menu .divider:hover { + background-color: #4c9cd7; +} +.app-bar.navy .app-bar-element .dropdown-toggle:before, +.app-bar.navy .app-bar-menu li .dropdown-toggle:before { + border-color: #ffffff; +} +.app-bar.navy .app-bar-element.disabled, +.app-bar.navy .app-bar-menu li.disabled, +.app-bar.navy .app-bar-element:disabled, +.app-bar.navy .app-bar-menu li:disabled { + color: #555555; +} +.app-bar.navy .app-bar-element.disabled a, +.app-bar.navy .app-bar-menu li.disabled a, +.app-bar.navy .app-bar-element:disabled a, +.app-bar.navy .app-bar-menu li:disabled a { + color: inherit !important; +} +.app-bar.navy .app-bar-pullbutton:hover { + background-color: #005696; +} +.app-bar.navy .app-bar-drop-container { + border: 2px solid #0072c6; + background-color: #0072c6; + color: #ffffff; +} +.app-bar.navy .app-bar-drop-container:before { + background-color: #0072c6; + border-color: #0072c6; +} +.app-bar.navy .app-bar-pullmenu .app-bar-menu { + border-top: 1px solid #4c9cd7; + background-color: #4c9cd7; +} +.app-bar.navy .app-bar-pullmenu .app-bar-menu li:hover { + background-color: #0072c6; +} +.app-bar.navy .app-bar-pullmenu .app-bar-menu li:hover a { + background-color: #005696; + color: #ffffff; +} +.app-bar.red { + background-color: #ce352c; +} +.app-bar.red .app-bar-element:hover, +.app-bar.red .app-bar-menu > li:hover, +.app-bar.red .app-bar-menu > li > a:hover, +.app-bar.red .app-bar-element:active, +.app-bar.red .app-bar-menu > li:active, +.app-bar.red .app-bar-menu > li > a:active { + background-color: #9a1616; +} +.app-bar.red .app-bar-divider { + background-color: #da5a53; +} +.app-bar.red .app-bar-element .d-menu, +.app-bar.red .app-bar-menu > li .d-menu { + background-color: #ce352c; + border-color: transparent; +} +.app-bar.red .app-bar-element .d-menu li:not(.disabled) > a, +.app-bar.red .app-bar-menu > li .d-menu li:not(.disabled) > a, +.app-bar.red .app-bar-element .d-menu li > a, +.app-bar.red .app-bar-menu > li .d-menu li > a { + background-color: #ce352c; + color: #ffffff; +} +.app-bar.red .app-bar-element .d-menu li:not(.disabled) > a:hover, +.app-bar.red .app-bar-menu > li .d-menu li:not(.disabled) > a:hover, +.app-bar.red .app-bar-element .d-menu li > a:hover, +.app-bar.red .app-bar-menu > li .d-menu li > a:hover { + background-color: #9a1616; + color: #ffffff; +} +.app-bar.red .app-bar-element .d-menu li:hover > a, +.app-bar.red .app-bar-menu > li .d-menu li:hover > a { + background-color: #9a1616; +} +.app-bar.red .app-bar-element .d-menu .divider, +.app-bar.red .app-bar-menu > li .d-menu .divider { + background-color: #da5a53; +} +.app-bar.red .app-bar-element .d-menu .divider:hover, +.app-bar.red .app-bar-menu > li .d-menu .divider:hover { + background-color: #da5a53; +} +.app-bar.red .app-bar-element .dropdown-toggle:before, +.app-bar.red .app-bar-menu li .dropdown-toggle:before { + border-color: #ffffff; +} +.app-bar.red .app-bar-element.disabled, +.app-bar.red .app-bar-menu li.disabled, +.app-bar.red .app-bar-element:disabled, +.app-bar.red .app-bar-menu li:disabled { + color: #555555; +} +.app-bar.red .app-bar-element.disabled a, +.app-bar.red .app-bar-menu li.disabled a, +.app-bar.red .app-bar-element:disabled a, +.app-bar.red .app-bar-menu li:disabled a { + color: inherit !important; +} +.app-bar.red .app-bar-pullbutton:hover { + background-color: #9a1616; +} +.app-bar.red .app-bar-drop-container { + border: 2px solid #ce352c; + background-color: #ce352c; + color: #ffffff; +} +.app-bar.red .app-bar-drop-container:before { + background-color: #ce352c; + border-color: #ce352c; +} +.app-bar.red .app-bar-pullmenu .app-bar-menu { + border-top: 1px solid #da5a53; + background-color: #da5a53; +} +.app-bar.red .app-bar-pullmenu .app-bar-menu li:hover { + background-color: #ce352c; +} +.app-bar.red .app-bar-pullmenu .app-bar-menu li:hover a { + background-color: #9a1616; + color: #ffffff; +} +.app-bar.green { + background-color: #60a917; +} +.app-bar.green .app-bar-element:hover, +.app-bar.green .app-bar-menu > li:hover, +.app-bar.green .app-bar-menu > li > a:hover, +.app-bar.green .app-bar-element:active, +.app-bar.green .app-bar-menu > li:active, +.app-bar.green .app-bar-menu > li > a:active { + background-color: #128023; +} +.app-bar.green .app-bar-divider { + background-color: #7ad61d; +} +.app-bar.green .app-bar-element .d-menu, +.app-bar.green .app-bar-menu > li .d-menu { + background-color: #60a917; + border-color: transparent; +} +.app-bar.green .app-bar-element .d-menu li:not(.disabled) > a, +.app-bar.green .app-bar-menu > li .d-menu li:not(.disabled) > a, +.app-bar.green .app-bar-element .d-menu li > a, +.app-bar.green .app-bar-menu > li .d-menu li > a { + background-color: #60a917; + color: #ffffff; +} +.app-bar.green .app-bar-element .d-menu li:not(.disabled) > a:hover, +.app-bar.green .app-bar-menu > li .d-menu li:not(.disabled) > a:hover, +.app-bar.green .app-bar-element .d-menu li > a:hover, +.app-bar.green .app-bar-menu > li .d-menu li > a:hover { + background-color: #128023; + color: #ffffff; +} +.app-bar.green .app-bar-element .d-menu li:hover > a, +.app-bar.green .app-bar-menu > li .d-menu li:hover > a { + background-color: #128023; +} +.app-bar.green .app-bar-element .d-menu .divider, +.app-bar.green .app-bar-menu > li .d-menu .divider { + background-color: #7ad61d; +} +.app-bar.green .app-bar-element .d-menu .divider:hover, +.app-bar.green .app-bar-menu > li .d-menu .divider:hover { + background-color: #7ad61d; +} +.app-bar.green .app-bar-element .dropdown-toggle:before, +.app-bar.green .app-bar-menu li .dropdown-toggle:before { + border-color: #ffffff; +} +.app-bar.green .app-bar-element.disabled, +.app-bar.green .app-bar-menu li.disabled, +.app-bar.green .app-bar-element:disabled, +.app-bar.green .app-bar-menu li:disabled { + color: #555555; +} +.app-bar.green .app-bar-element.disabled a, +.app-bar.green .app-bar-menu li.disabled a, +.app-bar.green .app-bar-element:disabled a, +.app-bar.green .app-bar-menu li:disabled a { + color: inherit !important; +} +.app-bar.green .app-bar-pullbutton:hover { + background-color: #128023; +} +.app-bar.green .app-bar-drop-container { + border: 2px solid #60a917; + background-color: #60a917; + color: #ffffff; +} +.app-bar.green .app-bar-drop-container:before { + background-color: #60a917; + border-color: #60a917; +} +.app-bar.green .app-bar-pullmenu .app-bar-menu { + border-top: 1px solid #7ad61d; + background-color: #7ad61d; +} +.app-bar.green .app-bar-pullmenu .app-bar-menu li:hover { + background-color: #60a917; +} +.app-bar.green .app-bar-pullmenu .app-bar-menu li:hover a { + background-color: #128023; + color: #ffffff; +} +.app-bar.orange { + background-color: #fa6800; +} +.app-bar.orange .app-bar-element:hover, +.app-bar.orange .app-bar-menu > li:hover, +.app-bar.orange .app-bar-menu > li > a:hover, +.app-bar.orange .app-bar-element:active, +.app-bar.orange .app-bar-menu > li:active, +.app-bar.orange .app-bar-menu > li > a:active { + background-color: #bf5a15; +} +.app-bar.orange .app-bar-divider { + background-color: #ffc194; +} +.app-bar.orange .app-bar-element .d-menu, +.app-bar.orange .app-bar-menu > li .d-menu { + background-color: #fa6800; + border-color: transparent; +} +.app-bar.orange .app-bar-element .d-menu li:not(.disabled) > a, +.app-bar.orange .app-bar-menu > li .d-menu li:not(.disabled) > a, +.app-bar.orange .app-bar-element .d-menu li > a, +.app-bar.orange .app-bar-menu > li .d-menu li > a { + background-color: #fa6800; + color: #ffffff; +} +.app-bar.orange .app-bar-element .d-menu li:not(.disabled) > a:hover, +.app-bar.orange .app-bar-menu > li .d-menu li:not(.disabled) > a:hover, +.app-bar.orange .app-bar-element .d-menu li > a:hover, +.app-bar.orange .app-bar-menu > li .d-menu li > a:hover { + background-color: #bf5a15; + color: #ffffff; +} +.app-bar.orange .app-bar-element .d-menu li:hover > a, +.app-bar.orange .app-bar-menu > li .d-menu li:hover > a { + background-color: #bf5a15; +} +.app-bar.orange .app-bar-element .d-menu .divider, +.app-bar.orange .app-bar-menu > li .d-menu .divider { + background-color: #ffc194; +} +.app-bar.orange .app-bar-element .d-menu .divider:hover, +.app-bar.orange .app-bar-menu > li .d-menu .divider:hover { + background-color: #ffc194; +} +.app-bar.orange .app-bar-element .dropdown-toggle:before, +.app-bar.orange .app-bar-menu li .dropdown-toggle:before { + border-color: #ffffff; +} +.app-bar.orange .app-bar-element.disabled, +.app-bar.orange .app-bar-menu li.disabled, +.app-bar.orange .app-bar-element:disabled, +.app-bar.orange .app-bar-menu li:disabled { + color: #555555; +} +.app-bar.orange .app-bar-element.disabled a, +.app-bar.orange .app-bar-menu li.disabled a, +.app-bar.orange .app-bar-element:disabled a, +.app-bar.orange .app-bar-menu li:disabled a { + color: inherit !important; +} +.app-bar.orange .app-bar-pullbutton:hover { + background-color: #bf5a15; +} +.app-bar.orange .app-bar-drop-container { + border: 2px solid #fa6800; + background-color: #fa6800; + color: #ffffff; +} +.app-bar.orange .app-bar-drop-container:before { + background-color: #fa6800; + border-color: #fa6800; +} +.app-bar.orange .app-bar-pullmenu .app-bar-menu { + border-top: 1px solid #ffc194; + background-color: #ffc194; +} +.app-bar.orange .app-bar-pullmenu .app-bar-menu li:hover { + background-color: #fa6800; +} +.app-bar.orange .app-bar-pullmenu .app-bar-menu li:hover a { + background-color: #bf5a15; + color: #ffffff; +} +/* +* params: name, background, backgroundHover, item, itemHover, itemDisabled, divider, dropdown-toggle +*/ +.v-menu.darcula, +.d-menu.darcula { + background: #3c3f41; +} +.v-menu.darcula li > a, +.d-menu.darcula li > a { + background: #3c3f41; + color: #ffffff; +} +.v-menu.darcula li > a .icon, +.d-menu.darcula li > a .icon { + color: #cccccc; +} +.v-menu.darcula li > a:hover, +.d-menu.darcula li > a:hover { + background: #1d1d1d; + color: #ffffff; +} +.v-menu.darcula li > a:hover .icon, +.d-menu.darcula li > a:hover .icon { + color: #ffffff; +} +.v-menu.darcula li > .item-block, +.d-menu.darcula li > .item-block { + background: #484c4e; +} +.v-menu.darcula li.disabled > a, +.d-menu.darcula li.disabled > a { + background: #3c3f41; + color: #555555; +} +.v-menu.darcula li > a.dropdown-toggle:before, +.d-menu.darcula li > a.dropdown-toggle:before { + border-color: #ffffff; +} +.v-menu.darcula li.menu-title, +.d-menu.darcula li.menu-title { + background: #303234; + color: #cccccc; +} +.v-menu.darcula li.divider, +.d-menu.darcula li.divider { + background: #616162; +} +.v-menu.pink, +.d-menu.pink { + background: #dc4fad; +} +.v-menu.pink li > a, +.d-menu.pink li > a { + background: #dc4fad; + color: #ffffff; +} +.v-menu.pink li > a .icon, +.d-menu.pink li > a .icon { + color: #cccccc; +} +.v-menu.pink li > a:hover, +.d-menu.pink li > a:hover { + background: #9a165a; + color: #ffffff; +} +.v-menu.pink li > a:hover .icon, +.d-menu.pink li > a:hover .icon { + color: #ffffff; +} +.v-menu.pink li > .item-block, +.d-menu.pink li > .item-block { + background: #e064b7; +} +.v-menu.pink li.disabled > a, +.d-menu.pink li.disabled > a { + background: #dc4fad; + color: #555555; +} +.v-menu.pink li > a.dropdown-toggle:before, +.d-menu.pink li > a.dropdown-toggle:before { + border-color: #ffffff; +} +.v-menu.pink li.menu-title, +.d-menu.pink li.menu-title { + background: #d83aa3; + color: #cccccc; +} +.v-menu.pink li.divider, +.d-menu.pink li.divider { + background: #f472d0; +} +.v-menu.navy, +.d-menu.navy { + background: #0072c6; +} +.v-menu.navy li > a, +.d-menu.navy li > a { + background: #0072c6; + color: #ffffff; +} +.v-menu.navy li > a .icon, +.d-menu.navy li > a .icon { + color: #cccccc; +} +.v-menu.navy li > a:hover, +.d-menu.navy li > a:hover { + background: #005696; + color: #ffffff; +} +.v-menu.navy li > a:hover .icon, +.d-menu.navy li > a:hover .icon { + color: #ffffff; +} +.v-menu.navy li > .item-block, +.d-menu.navy li > .item-block { + background: #0081e0; +} +.v-menu.navy li.disabled > a, +.d-menu.navy li.disabled > a { + background: #0072c6; + color: #555555; +} +.v-menu.navy li > a.dropdown-toggle:before, +.d-menu.navy li > a.dropdown-toggle:before { + border-color: #ffffff; +} +.v-menu.navy li.menu-title, +.d-menu.navy li.menu-title { + background: #0063ad; + color: #cccccc; +} +.v-menu.navy li.divider, +.d-menu.navy li.divider { + background: #4c9cd7; +} +.v-menu.red, +.d-menu.red { + background: #ce352c; +} +.v-menu.red li > a, +.d-menu.red li > a { + background: #ce352c; + color: #ffffff; +} +.v-menu.red li > a .icon, +.d-menu.red li > a .icon { + color: #cccccc; +} +.v-menu.red li > a:hover, +.d-menu.red li > a:hover { + background: #9a1616; + color: #ffffff; +} +.v-menu.red li > a:hover .icon, +.d-menu.red li > a:hover .icon { + color: #ffffff; +} +.v-menu.red li > .item-block, +.d-menu.red li > .item-block { + background: #d6463e; +} +.v-menu.red li.disabled > a, +.d-menu.red li.disabled > a { + background: #ce352c; + color: #555555; +} +.v-menu.red li > a.dropdown-toggle:before, +.d-menu.red li > a.dropdown-toggle:before { + border-color: #ffffff; +} +.v-menu.red li.menu-title, +.d-menu.red li.menu-title { + background: #b93028; + color: #cccccc; +} +.v-menu.red li.divider, +.d-menu.red li.divider { + background: #da5a53; +} +.v-menu.green, +.d-menu.green { + background: #60a917; +} +.v-menu.green li > a, +.d-menu.green li > a { + background: #60a917; + color: #ffffff; +} +.v-menu.green li > a .icon, +.d-menu.green li > a .icon { + color: #cccccc; +} +.v-menu.green li > a:hover, +.d-menu.green li > a:hover { + background: #128023; + color: #ffffff; +} +.v-menu.green li > a:hover .icon, +.d-menu.green li > a:hover .icon { + color: #ffffff; +} +.v-menu.green li > .item-block, +.d-menu.green li > .item-block { + background: #6dbf1a; +} +.v-menu.green li.disabled > a, +.d-menu.green li.disabled > a { + background: #60a917; + color: #555555; +} +.v-menu.green li > a.dropdown-toggle:before, +.d-menu.green li > a.dropdown-toggle:before { + border-color: #ffffff; +} +.v-menu.green li.menu-title, +.d-menu.green li.menu-title { + background: #539314; + color: #cccccc; +} +.v-menu.green li.divider, +.d-menu.green li.divider { + background: #7ad61d; +} +.v-menu.orange, +.d-menu.orange { + background: #fa6800; +} +.v-menu.orange li > a, +.d-menu.orange li > a { + background: #fa6800; + color: #ffffff; +} +.v-menu.orange li > a .icon, +.d-menu.orange li > a .icon { + color: #cccccc; +} +.v-menu.orange li > a:hover, +.d-menu.orange li > a:hover { + background: #bf5a15; + color: #ffffff; +} +.v-menu.orange li > a:hover .icon, +.d-menu.orange li > a:hover .icon { + color: #ffffff; +} +.v-menu.orange li > .item-block, +.d-menu.orange li > .item-block { + background: #ff7615; +} +.v-menu.orange li.disabled > a, +.d-menu.orange li.disabled > a { + background: #fa6800; + color: #555555; +} +.v-menu.orange li > a.dropdown-toggle:before, +.d-menu.orange li > a.dropdown-toggle:before { + border-color: #ffffff; +} +.v-menu.orange li.menu-title, +.d-menu.orange li.menu-title { + background: #e15d00; + color: #cccccc; +} +.v-menu.orange li.divider, +.d-menu.orange li.divider { + background: #ffc194; +} +/* +* params: name, background, backgroundHover, item, itemHover, itemDisabled, divider, dropdown-toggle +*/ +.t-menu.darcula { + background-color: #3c3f41; +} +.t-menu.darcula .t-menu { + background-color: #3c3f41; +} +.t-menu.darcula li > a { + background: #3c3f41; + color: #ffffff; + border-bottom-color: #616162; +} +.t-menu.darcula li > a.dropdown-toggle:after, +.t-menu.darcula li > a.dropdown-toggle:hover:after { + border-color: transparent transparent #ffffff; +} +.t-menu.darcula li:hover > a { + background: #1d1d1d; + color: #ffffff; +} +.t-menu.darcula li:hover > a.dropdown-toggle:after { + border-color: transparent transparent #ffffff; +} +.t-menu.darcula li.disabled > a { + background: #3c3f41; + color: #555555; +} +.t-menu.darcula li.disabled > a:hover { + background: #3c3f41; +} +.t-menu.darcula.horizontal > li > a, +.t-menu.darcula .horizontal > li > a { + border-right-color: #616162; +} +.t-menu.pink { + background-color: #dc4fad; +} +.t-menu.pink .t-menu { + background-color: #dc4fad; +} +.t-menu.pink li > a { + background: #dc4fad; + color: #ffffff; + border-bottom-color: #f472d0; +} +.t-menu.pink li > a.dropdown-toggle:after, +.t-menu.pink li > a.dropdown-toggle:hover:after { + border-color: transparent transparent #ffffff; +} +.t-menu.pink li:hover > a { + background: #9a165a; + color: #ffffff; +} +.t-menu.pink li:hover > a.dropdown-toggle:after { + border-color: transparent transparent #ffffff; +} +.t-menu.pink li.disabled > a { + background: #dc4fad; + color: #555555; +} +.t-menu.pink li.disabled > a:hover { + background: #dc4fad; +} +.t-menu.pink.horizontal > li > a, +.t-menu.pink .horizontal > li > a { + border-right-color: #f472d0; +} +.t-menu.navy { + background-color: #0072c6; +} +.t-menu.navy .t-menu { + background-color: #0072c6; +} +.t-menu.navy li > a { + background: #0072c6; + color: #ffffff; + border-bottom-color: #4c9cd7; +} +.t-menu.navy li > a.dropdown-toggle:after, +.t-menu.navy li > a.dropdown-toggle:hover:after { + border-color: transparent transparent #ffffff; +} +.t-menu.navy li:hover > a { + background: #005696; + color: #ffffff; +} +.t-menu.navy li:hover > a.dropdown-toggle:after { + border-color: transparent transparent #ffffff; +} +.t-menu.navy li.disabled > a { + background: #0072c6; + color: #555555; +} +.t-menu.navy li.disabled > a:hover { + background: #0072c6; +} +.t-menu.navy.horizontal > li > a, +.t-menu.navy .horizontal > li > a { + border-right-color: #4c9cd7; +} +.t-menu.red { + background-color: #ce352c; +} +.t-menu.red .t-menu { + background-color: #ce352c; +} +.t-menu.red li > a { + background: #ce352c; + color: #ffffff; + border-bottom-color: #da5a53; +} +.t-menu.red li > a.dropdown-toggle:after, +.t-menu.red li > a.dropdown-toggle:hover:after { + border-color: transparent transparent #ffffff; +} +.t-menu.red li:hover > a { + background: #9a1616; + color: #ffffff; +} +.t-menu.red li:hover > a.dropdown-toggle:after { + border-color: transparent transparent #ffffff; +} +.t-menu.red li.disabled > a { + background: #ce352c; + color: #555555; +} +.t-menu.red li.disabled > a:hover { + background: #ce352c; +} +.t-menu.red.horizontal > li > a, +.t-menu.red .horizontal > li > a { + border-right-color: #da5a53; +} +.t-menu.green { + background-color: #60a917; +} +.t-menu.green .t-menu { + background-color: #60a917; +} +.t-menu.green li > a { + background: #60a917; + color: #ffffff; + border-bottom-color: #7ad61d; +} +.t-menu.green li > a.dropdown-toggle:after, +.t-menu.green li > a.dropdown-toggle:hover:after { + border-color: transparent transparent #ffffff; +} +.t-menu.green li:hover > a { + background: #128023; + color: #ffffff; +} +.t-menu.green li:hover > a.dropdown-toggle:after { + border-color: transparent transparent #ffffff; +} +.t-menu.green li.disabled > a { + background: #60a917; + color: #555555; +} +.t-menu.green li.disabled > a:hover { + background: #60a917; +} +.t-menu.green.horizontal > li > a, +.t-menu.green .horizontal > li > a { + border-right-color: #7ad61d; +} +.t-menu.orange { + background-color: #fa6800; +} +.t-menu.orange .t-menu { + background-color: #fa6800; +} +.t-menu.orange li > a { + background: #fa6800; + color: #ffffff; + border-bottom-color: #ffc194; +} +.t-menu.orange li > a.dropdown-toggle:after, +.t-menu.orange li > a.dropdown-toggle:hover:after { + border-color: transparent transparent #ffffff; +} +.t-menu.orange li:hover > a { + background: #bf5a15; + color: #ffffff; +} +.t-menu.orange li:hover > a.dropdown-toggle:after { + border-color: transparent transparent #ffffff; +} +.t-menu.orange li.disabled > a { + background: #fa6800; + color: #555555; +} +.t-menu.orange li.disabled > a:hover { + background: #fa6800; +} +.t-menu.orange.horizontal > li > a, +.t-menu.orange .horizontal > li > a { + border-right-color: #ffc194; +} +/* +* params: name, background, backgroundHover, backgroundActive, item, itemHover, itemActive, itemDisabled +*/ +.sidebar.darcula { + background: #3c3f41; +} +.sidebar.darcula li > a { + background: #3c3f41; + color: #ffffff; +} +.sidebar.darcula li:hover > a { + background: #4d5154; + color: #ffffff; +} +.sidebar.darcula li.active > a { + background: #1d1d1d; + color: #ffffff; +} +.sidebar.darcula li.disabled > a { + background: #3c3f41; + color: #555555; +} +.sidebar.pink { + background: #dc4fad; +} +.sidebar.pink li > a { + background: #dc4fad; + color: #ffffff; +} +.sidebar.pink li:hover > a { + background: #b91a6c; + color: #ffffff; +} +.sidebar.pink li.active > a { + background: #9a165a; + color: #ffffff; +} +.sidebar.pink li.disabled > a { + background: #dc4fad; + color: #555555; +} +.sidebar.navy { + background: #0072c6; +} +.sidebar.navy li > a { + background: #0072c6; + color: #ffffff; +} +.sidebar.navy li:hover > a { + background: #006aba; + color: #ffffff; +} +.sidebar.navy li.active > a { + background: #005696; + color: #ffffff; +} +.sidebar.navy li.disabled > a { + background: #0072c6; + color: #555555; +} +.sidebar.red { + background: #ce352c; +} +.sidebar.red li > a { + background: #ce352c; + color: #ffffff; +} +.sidebar.red li:hover > a { + background: #b91a1a; + color: #ffffff; +} +.sidebar.red li.active > a { + background: #9a1616; + color: #ffffff; +} +.sidebar.red li.disabled > a { + background: #ce352c; + color: #555555; +} +.sidebar.green { + background: #60a917; +} +.sidebar.green li > a { + background: #60a917; + color: #ffffff; +} +.sidebar.green li:hover > a { + background: #169f2c; + color: #ffffff; +} +.sidebar.green li.active > a { + background: #128023; + color: #ffffff; +} +.sidebar.green li.disabled > a { + background: #60a917; + color: #555555; +} +.sidebar.orange { + background: #fa6800; +} +.sidebar.orange li > a { + background: #fa6800; + color: #ffffff; +} +.sidebar.orange li:hover > a { + background: #df6919; + color: #ffffff; +} +.sidebar.orange li.active > a { + background: #bf5a15; + color: #ffffff; +} +.sidebar.orange li.disabled > a { + background: #fa6800; + color: #555555; +} +/* +* params: name, background, backgroundHover, backgroundActive, item, itemHover, itemActive, itemDisabled +*/ +.calendar.darcula { + background: #3c3f41; +} +.calendar.darcula a { + color: #ffffff; +} +.calendar.darcula a:hover { + background: #4d5154; + color: #ffffff; +} +.calendar.darcula .calendar-header { + background: #3c3f41; +} +.calendar.darcula .today a { + background-color: #fa6800; +} +.calendar.darcula .day, +.calendar.darcula .month, +.calendar.darcula .year { + border-color: #4d5154; +} +.calendar.darcula .other-day { + background: #555555; + border-color: #555555; +} +.calendar.darcula .day-of-week { + color: #ffffff; +} +.calendar.darcula .calendar-actions .calendar-btn-today { + background: #1d1d1d; + border-color: #1d1d1d; +} +.calendar.darcula .calendar-actions .calendar-btn-today:active { + background: #030303; +} +.calendar.darcula .calendar-actions .calendar-btn-clear { + background: transparent; + border-color: transparent; +} +.calendar.pink { + background: #dc4fad; +} +.calendar.pink a { + color: #ffffff; +} +.calendar.pink a:hover { + background: #b91a6c; + color: #ffffff; +} +.calendar.pink .calendar-header { + background: #dc4fad; +} +.calendar.pink .today a { + background-color: #fa6800; +} +.calendar.pink .day, +.calendar.pink .month, +.calendar.pink .year { + border-color: #b91a6c; +} +.calendar.pink .other-day { + background: #f472d0; + border-color: #f472d0; +} +.calendar.pink .day-of-week { + color: #ffffff; +} +.calendar.pink .calendar-actions .calendar-btn-today { + background: #9a165a; + border-color: #9a165a; +} +.calendar.pink .calendar-actions .calendar-btn-today:active { + background: #6d1040; +} +.calendar.pink .calendar-actions .calendar-btn-clear { + background: transparent; + border-color: transparent; +} +.calendar.navy { + background: #0072c6; +} +.calendar.navy a { + color: #ffffff; +} +.calendar.navy a:hover { + background: #006aba; + color: #ffffff; +} +.calendar.navy .calendar-header { + background: #0072c6; +} +.calendar.navy .today a { + background-color: #fa6800; +} +.calendar.navy .day, +.calendar.navy .month, +.calendar.navy .year { + border-color: #006aba; +} +.calendar.navy .other-day { + background: #59cde2; + border-color: #59cde2; +} +.calendar.navy .day-of-week { + color: #ffffff; +} +.calendar.navy .calendar-actions .calendar-btn-today { + background: #16499a; + border-color: #16499a; +} +.calendar.navy .calendar-actions .calendar-btn-today:active { + background: #10346d; +} +.calendar.navy .calendar-actions .calendar-btn-clear { + background: transparent; + border-color: transparent; +} +.calendar.red { + background: #ce352c; +} +.calendar.red a { + color: #ffffff; +} +.calendar.red a:hover { + background: #b91a1a; + color: #ffffff; +} +.calendar.red .calendar-header { + background: #ce352c; +} +.calendar.red .today a { + background-color: #fa6800; +} +.calendar.red .day, +.calendar.red .month, +.calendar.red .year { + border-color: #b91a1a; +} +.calendar.red .other-day { + background: #da5a53; + border-color: #da5a53; +} +.calendar.red .day-of-week { + color: #ffffff; +} +.calendar.red .calendar-actions .calendar-btn-today { + background: #9a1616; + border-color: #9a1616; +} +.calendar.red .calendar-actions .calendar-btn-today:active { + background: #6d1010; +} +.calendar.red .calendar-actions .calendar-btn-clear { + background: transparent; + border-color: transparent; +} +.calendar.green { + background: #60a917; +} +.calendar.green a { + color: #ffffff; +} +.calendar.green a:hover { + background: #169f2c; + color: #ffffff; +} +.calendar.green .calendar-header { + background: #60a917; +} +.calendar.green .today a { + background-color: #fa6800; +} +.calendar.green .day, +.calendar.green .month, +.calendar.green .year { + border-color: #169f2c; +} +.calendar.green .other-day { + background: #7ad61d; + border-color: #7ad61d; +} +.calendar.green .day-of-week { + color: #ffffff; +} +.calendar.green .calendar-actions .calendar-btn-today { + background: #128023; + border-color: #128023; +} +.calendar.green .calendar-actions .calendar-btn-today:active { + background: #0c5317; +} +.calendar.green .calendar-actions .calendar-btn-clear { + background: transparent; + border-color: transparent; +} +.calendar.orange { + background: #fa6800; +} +.calendar.orange a { + color: #ffffff; +} +.calendar.orange a:hover { + background: #df6919; + color: #ffffff; +} +.calendar.orange .calendar-header { + background: #fa6800; +} +.calendar.orange .today a { + background-color: #fa6800; +} +.calendar.orange .day, +.calendar.orange .month, +.calendar.orange .year { + border-color: #df6919; +} +.calendar.orange .other-day { + background: #ffc194; + border-color: #ffc194; +} +.calendar.orange .day-of-week { + color: #ffffff; +} +.calendar.orange .calendar-actions .calendar-btn-today { + background: #bf5a15; + border-color: #bf5a15; +} +.calendar.orange .calendar-actions .calendar-btn-today:active { + background: #914410; +} +.calendar.orange .calendar-actions .calendar-btn-clear { + background: transparent; + border-color: transparent; +} diff --git a/applications/assets/css/metro-schemes.min.css b/applications/assets/css/metro-schemes.min.css new file mode 100644 index 0000000..d749e65 --- /dev/null +++ b/applications/assets/css/metro-schemes.min.css @@ -0,0 +1 @@ +.app-bar.pink{background-color:#dc4fad}.app-bar.pink .app-bar-element:active,.app-bar.pink .app-bar-element:hover,.app-bar.pink .app-bar-menu>li:active,.app-bar.pink .app-bar-menu>li:hover,.app-bar.pink .app-bar-menu>li>a:active,.app-bar.pink .app-bar-menu>li>a:hover{background-color:#9a165a}.app-bar.pink .app-bar-divider{background-color:#f472d0}.app-bar.pink .app-bar-element .d-menu,.app-bar.pink .app-bar-menu>li .d-menu{background-color:#dc4fad;border-color:transparent}.app-bar.pink .app-bar-element .d-menu li:not(.disabled)>a,.app-bar.pink .app-bar-element .d-menu li>a,.app-bar.pink .app-bar-menu>li .d-menu li:not(.disabled)>a,.app-bar.pink .app-bar-menu>li .d-menu li>a{background-color:#dc4fad;color:#fff}.app-bar.pink .app-bar-element .d-menu li:not(.disabled)>a:hover,.app-bar.pink .app-bar-element .d-menu li>a:hover,.app-bar.pink .app-bar-menu>li .d-menu li:not(.disabled)>a:hover,.app-bar.pink .app-bar-menu>li .d-menu li>a:hover{background-color:#9a165a;color:#fff}.app-bar.pink .app-bar-element .d-menu li:hover>a,.app-bar.pink .app-bar-menu>li .d-menu li:hover>a{background-color:#9a165a}.app-bar.pink .app-bar-element .d-menu .divider,.app-bar.pink .app-bar-element .d-menu .divider:hover,.app-bar.pink .app-bar-menu>li .d-menu .divider,.app-bar.pink .app-bar-menu>li .d-menu .divider:hover{background-color:#f472d0}.app-bar.pink .app-bar-element .dropdown-toggle:before,.app-bar.pink .app-bar-menu li .dropdown-toggle:before{border-color:#fff}.app-bar.pink .app-bar-element.disabled,.app-bar.pink .app-bar-element:disabled,.app-bar.pink .app-bar-menu li.disabled,.app-bar.pink .app-bar-menu li:disabled{color:#555}.app-bar.pink .app-bar-element.disabled a,.app-bar.pink .app-bar-element:disabled a,.app-bar.pink .app-bar-menu li.disabled a,.app-bar.pink .app-bar-menu li:disabled a{color:inherit!important}.app-bar.pink .app-bar-pullbutton:hover{background-color:#9a165a}.app-bar.pink .app-bar-drop-container{border:2px solid #dc4fad;background-color:#dc4fad;color:#fff}.app-bar.pink .app-bar-drop-container:before{background-color:#dc4fad;border-color:#dc4fad}.app-bar.pink .app-bar-pullmenu .app-bar-menu{border-top:1px solid #f472d0;background-color:#f472d0}.app-bar.pink .app-bar-pullmenu .app-bar-menu li:hover{background-color:#dc4fad}.app-bar.pink .app-bar-pullmenu .app-bar-menu li:hover a{background-color:#9a165a;color:#fff}.app-bar.darcula{background-color:#3c3f41}.app-bar.darcula .app-bar-element:active,.app-bar.darcula .app-bar-element:hover,.app-bar.darcula .app-bar-menu>li:active,.app-bar.darcula .app-bar-menu>li:hover,.app-bar.darcula .app-bar-menu>li>a:active,.app-bar.darcula .app-bar-menu>li>a:hover{background-color:#1d1d1d}.app-bar.darcula .app-bar-divider{background-color:#616162}.app-bar.darcula .app-bar-element .d-menu,.app-bar.darcula .app-bar-menu>li .d-menu{background-color:#3c3f41;border-color:transparent}.app-bar.darcula .app-bar-element .d-menu li:not(.disabled)>a,.app-bar.darcula .app-bar-element .d-menu li>a,.app-bar.darcula .app-bar-menu>li .d-menu li:not(.disabled)>a,.app-bar.darcula .app-bar-menu>li .d-menu li>a{background-color:#3c3f41;color:#fff}.app-bar.darcula .app-bar-element .d-menu li:not(.disabled)>a:hover,.app-bar.darcula .app-bar-element .d-menu li>a:hover,.app-bar.darcula .app-bar-menu>li .d-menu li:not(.disabled)>a:hover,.app-bar.darcula .app-bar-menu>li .d-menu li>a:hover{background-color:#1d1d1d;color:#fff}.app-bar.darcula .app-bar-element .d-menu li:hover>a,.app-bar.darcula .app-bar-menu>li .d-menu li:hover>a{background-color:#1d1d1d}.app-bar.darcula .app-bar-element .d-menu .divider,.app-bar.darcula .app-bar-element .d-menu .divider:hover,.app-bar.darcula .app-bar-menu>li .d-menu .divider,.app-bar.darcula .app-bar-menu>li .d-menu .divider:hover{background-color:#616162}.app-bar.darcula .app-bar-element .dropdown-toggle:before,.app-bar.darcula .app-bar-menu li .dropdown-toggle:before{border-color:#fff}.app-bar.darcula .app-bar-element.disabled,.app-bar.darcula .app-bar-element:disabled,.app-bar.darcula .app-bar-menu li.disabled,.app-bar.darcula .app-bar-menu li:disabled{color:#555}.app-bar.darcula .app-bar-element.disabled a,.app-bar.darcula .app-bar-element:disabled a,.app-bar.darcula .app-bar-menu li.disabled a,.app-bar.darcula .app-bar-menu li:disabled a{color:inherit!important}.app-bar.darcula .app-bar-pullbutton:hover{background-color:#1d1d1d}.app-bar.darcula .app-bar-drop-container{border:2px solid #3c3f41;background-color:#3c3f41;color:#fff}.app-bar.darcula .app-bar-drop-container:before{background-color:#3c3f41;border-color:#3c3f41}.app-bar.darcula .app-bar-pullmenu .app-bar-menu{border-top:1px solid #616162;background-color:#616162}.app-bar.darcula .app-bar-pullmenu .app-bar-menu li:hover{background-color:#3c3f41}.app-bar.darcula .app-bar-pullmenu .app-bar-menu li:hover a{background-color:#1d1d1d;color:#fff}.app-bar.navy{background-color:#0072c6}.app-bar.navy .app-bar-element:active,.app-bar.navy .app-bar-element:hover,.app-bar.navy .app-bar-menu>li:active,.app-bar.navy .app-bar-menu>li:hover,.app-bar.navy .app-bar-menu>li>a:active,.app-bar.navy .app-bar-menu>li>a:hover{background-color:#005696}.app-bar.navy .app-bar-divider{background-color:#4c9cd7}.app-bar.navy .app-bar-element .d-menu,.app-bar.navy .app-bar-menu>li .d-menu{background-color:#0072c6;border-color:transparent}.app-bar.navy .app-bar-element .d-menu li:not(.disabled)>a,.app-bar.navy .app-bar-element .d-menu li>a,.app-bar.navy .app-bar-menu>li .d-menu li:not(.disabled)>a,.app-bar.navy .app-bar-menu>li .d-menu li>a{background-color:#0072c6;color:#fff}.app-bar.navy .app-bar-element .d-menu li:not(.disabled)>a:hover,.app-bar.navy .app-bar-element .d-menu li>a:hover,.app-bar.navy .app-bar-menu>li .d-menu li:not(.disabled)>a:hover,.app-bar.navy .app-bar-menu>li .d-menu li>a:hover{background-color:#005696;color:#fff}.app-bar.navy .app-bar-element .d-menu li:hover>a,.app-bar.navy .app-bar-menu>li .d-menu li:hover>a{background-color:#005696}.app-bar.navy .app-bar-element .d-menu .divider,.app-bar.navy .app-bar-element .d-menu .divider:hover,.app-bar.navy .app-bar-menu>li .d-menu .divider,.app-bar.navy .app-bar-menu>li .d-menu .divider:hover{background-color:#4c9cd7}.app-bar.navy .app-bar-element .dropdown-toggle:before,.app-bar.navy .app-bar-menu li .dropdown-toggle:before{border-color:#fff}.app-bar.navy .app-bar-element.disabled,.app-bar.navy .app-bar-element:disabled,.app-bar.navy .app-bar-menu li.disabled,.app-bar.navy .app-bar-menu li:disabled{color:#555}.app-bar.navy .app-bar-element.disabled a,.app-bar.navy .app-bar-element:disabled a,.app-bar.navy .app-bar-menu li.disabled a,.app-bar.navy .app-bar-menu li:disabled a{color:inherit!important}.app-bar.navy .app-bar-pullbutton:hover{background-color:#005696}.app-bar.navy .app-bar-drop-container{border:2px solid #0072c6;background-color:#0072c6;color:#fff}.app-bar.navy .app-bar-drop-container:before{background-color:#0072c6;border-color:#0072c6}.app-bar.navy .app-bar-pullmenu .app-bar-menu{border-top:1px solid #4c9cd7;background-color:#4c9cd7}.app-bar.navy .app-bar-pullmenu .app-bar-menu li:hover{background-color:#0072c6}.app-bar.navy .app-bar-pullmenu .app-bar-menu li:hover a{background-color:#005696;color:#fff}.app-bar.red{background-color:#ce352c}.app-bar.red .app-bar-element:active,.app-bar.red .app-bar-element:hover,.app-bar.red .app-bar-menu>li:active,.app-bar.red .app-bar-menu>li:hover,.app-bar.red .app-bar-menu>li>a:active,.app-bar.red .app-bar-menu>li>a:hover{background-color:#9a1616}.app-bar.red .app-bar-divider{background-color:#da5a53}.app-bar.red .app-bar-element .d-menu,.app-bar.red .app-bar-menu>li .d-menu{background-color:#ce352c;border-color:transparent}.app-bar.red .app-bar-element .d-menu li:not(.disabled)>a,.app-bar.red .app-bar-element .d-menu li>a,.app-bar.red .app-bar-menu>li .d-menu li:not(.disabled)>a,.app-bar.red .app-bar-menu>li .d-menu li>a{background-color:#ce352c;color:#fff}.app-bar.red .app-bar-element .d-menu li:not(.disabled)>a:hover,.app-bar.red .app-bar-element .d-menu li>a:hover,.app-bar.red .app-bar-menu>li .d-menu li:not(.disabled)>a:hover,.app-bar.red .app-bar-menu>li .d-menu li>a:hover{background-color:#9a1616;color:#fff}.app-bar.red .app-bar-element .d-menu li:hover>a,.app-bar.red .app-bar-menu>li .d-menu li:hover>a{background-color:#9a1616}.app-bar.red .app-bar-element .d-menu .divider,.app-bar.red .app-bar-element .d-menu .divider:hover,.app-bar.red .app-bar-menu>li .d-menu .divider,.app-bar.red .app-bar-menu>li .d-menu .divider:hover{background-color:#da5a53}.app-bar.red .app-bar-element .dropdown-toggle:before,.app-bar.red .app-bar-menu li .dropdown-toggle:before{border-color:#fff}.app-bar.red .app-bar-element.disabled,.app-bar.red .app-bar-element:disabled,.app-bar.red .app-bar-menu li.disabled,.app-bar.red .app-bar-menu li:disabled{color:#555}.app-bar.red .app-bar-element.disabled a,.app-bar.red .app-bar-element:disabled a,.app-bar.red .app-bar-menu li.disabled a,.app-bar.red .app-bar-menu li:disabled a{color:inherit!important}.app-bar.red .app-bar-pullbutton:hover{background-color:#9a1616}.app-bar.red .app-bar-drop-container{border:2px solid #ce352c;background-color:#ce352c;color:#fff}.app-bar.red .app-bar-drop-container:before{background-color:#ce352c;border-color:#ce352c}.app-bar.red .app-bar-pullmenu .app-bar-menu{border-top:1px solid #da5a53;background-color:#da5a53}.app-bar.red .app-bar-pullmenu .app-bar-menu li:hover{background-color:#ce352c}.app-bar.red .app-bar-pullmenu .app-bar-menu li:hover a{background-color:#9a1616;color:#fff}.app-bar.green{background-color:#60a917}.app-bar.green .app-bar-element:active,.app-bar.green .app-bar-element:hover,.app-bar.green .app-bar-menu>li:active,.app-bar.green .app-bar-menu>li:hover,.app-bar.green .app-bar-menu>li>a:active,.app-bar.green .app-bar-menu>li>a:hover{background-color:#128023}.app-bar.green .app-bar-divider{background-color:#7ad61d}.app-bar.green .app-bar-element .d-menu,.app-bar.green .app-bar-menu>li .d-menu{background-color:#60a917;border-color:transparent}.app-bar.green .app-bar-element .d-menu li:not(.disabled)>a,.app-bar.green .app-bar-element .d-menu li>a,.app-bar.green .app-bar-menu>li .d-menu li:not(.disabled)>a,.app-bar.green .app-bar-menu>li .d-menu li>a{background-color:#60a917;color:#fff}.app-bar.green .app-bar-element .d-menu li:not(.disabled)>a:hover,.app-bar.green .app-bar-element .d-menu li>a:hover,.app-bar.green .app-bar-menu>li .d-menu li:not(.disabled)>a:hover,.app-bar.green .app-bar-menu>li .d-menu li>a:hover{background-color:#128023;color:#fff}.app-bar.green .app-bar-element .d-menu li:hover>a,.app-bar.green .app-bar-menu>li .d-menu li:hover>a{background-color:#128023}.app-bar.green .app-bar-element .d-menu .divider,.app-bar.green .app-bar-element .d-menu .divider:hover,.app-bar.green .app-bar-menu>li .d-menu .divider,.app-bar.green .app-bar-menu>li .d-menu .divider:hover{background-color:#7ad61d}.app-bar.green .app-bar-element .dropdown-toggle:before,.app-bar.green .app-bar-menu li .dropdown-toggle:before{border-color:#fff}.app-bar.green .app-bar-element.disabled,.app-bar.green .app-bar-element:disabled,.app-bar.green .app-bar-menu li.disabled,.app-bar.green .app-bar-menu li:disabled{color:#555}.app-bar.green .app-bar-element.disabled a,.app-bar.green .app-bar-element:disabled a,.app-bar.green .app-bar-menu li.disabled a,.app-bar.green .app-bar-menu li:disabled a{color:inherit!important}.app-bar.green .app-bar-pullbutton:hover{background-color:#128023}.app-bar.green .app-bar-drop-container{border:2px solid #60a917;background-color:#60a917;color:#fff}.app-bar.green .app-bar-drop-container:before{background-color:#60a917;border-color:#60a917}.app-bar.green .app-bar-pullmenu .app-bar-menu{border-top:1px solid #7ad61d;background-color:#7ad61d}.app-bar.green .app-bar-pullmenu .app-bar-menu li:hover{background-color:#60a917}.app-bar.green .app-bar-pullmenu .app-bar-menu li:hover a{background-color:#128023;color:#fff}.app-bar.orange{background-color:#fa6800}.app-bar.orange .app-bar-element:active,.app-bar.orange .app-bar-element:hover,.app-bar.orange .app-bar-menu>li:active,.app-bar.orange .app-bar-menu>li:hover,.app-bar.orange .app-bar-menu>li>a:active,.app-bar.orange .app-bar-menu>li>a:hover{background-color:#bf5a15}.app-bar.orange .app-bar-divider{background-color:#ffc194}.app-bar.orange .app-bar-element .d-menu,.app-bar.orange .app-bar-menu>li .d-menu{background-color:#fa6800;border-color:transparent}.app-bar.orange .app-bar-element .d-menu li:not(.disabled)>a,.app-bar.orange .app-bar-element .d-menu li>a,.app-bar.orange .app-bar-menu>li .d-menu li:not(.disabled)>a,.app-bar.orange .app-bar-menu>li .d-menu li>a{background-color:#fa6800;color:#fff}.app-bar.orange .app-bar-element .d-menu li:not(.disabled)>a:hover,.app-bar.orange .app-bar-element .d-menu li>a:hover,.app-bar.orange .app-bar-menu>li .d-menu li:not(.disabled)>a:hover,.app-bar.orange .app-bar-menu>li .d-menu li>a:hover{background-color:#bf5a15;color:#fff}.app-bar.orange .app-bar-element .d-menu li:hover>a,.app-bar.orange .app-bar-menu>li .d-menu li:hover>a{background-color:#bf5a15}.app-bar.orange .app-bar-element .d-menu .divider,.app-bar.orange .app-bar-element .d-menu .divider:hover,.app-bar.orange .app-bar-menu>li .d-menu .divider,.app-bar.orange .app-bar-menu>li .d-menu .divider:hover{background-color:#ffc194}.app-bar.orange .app-bar-element .dropdown-toggle:before,.app-bar.orange .app-bar-menu li .dropdown-toggle:before{border-color:#fff}.app-bar.orange .app-bar-element.disabled,.app-bar.orange .app-bar-element:disabled,.app-bar.orange .app-bar-menu li.disabled,.app-bar.orange .app-bar-menu li:disabled{color:#555}.app-bar.orange .app-bar-element.disabled a,.app-bar.orange .app-bar-element:disabled a,.app-bar.orange .app-bar-menu li.disabled a,.app-bar.orange .app-bar-menu li:disabled a{color:inherit!important}.app-bar.orange .app-bar-pullbutton:hover{background-color:#bf5a15}.app-bar.orange .app-bar-drop-container{border:2px solid #fa6800;background-color:#fa6800;color:#fff}.app-bar.orange .app-bar-drop-container:before{background-color:#fa6800;border-color:#fa6800}.d-menu.darcula li>a.dropdown-toggle:before,.d-menu.green li>a.dropdown-toggle:before,.d-menu.navy li>a.dropdown-toggle:before,.d-menu.orange li>a.dropdown-toggle:before,.d-menu.pink li>a.dropdown-toggle:before,.d-menu.red li>a.dropdown-toggle:before,.v-menu.darcula li>a.dropdown-toggle:before,.v-menu.green li>a.dropdown-toggle:before,.v-menu.navy li>a.dropdown-toggle:before,.v-menu.orange li>a.dropdown-toggle:before,.v-menu.pink li>a.dropdown-toggle:before,.v-menu.red li>a.dropdown-toggle:before{border-color:#fff}.app-bar.orange .app-bar-pullmenu .app-bar-menu{border-top:1px solid #ffc194;background-color:#ffc194}.app-bar.orange .app-bar-pullmenu .app-bar-menu li:hover{background-color:#fa6800}.app-bar.orange .app-bar-pullmenu .app-bar-menu li:hover a{background-color:#bf5a15;color:#fff}.d-menu.darcula,.v-menu.darcula{background:#3c3f41}.d-menu.darcula li>a,.v-menu.darcula li>a{background:#3c3f41;color:#fff}.d-menu.darcula li>a .icon,.v-menu.darcula li>a .icon{color:#ccc}.d-menu.darcula li>a:hover,.v-menu.darcula li>a:hover{background:#1d1d1d;color:#fff}.d-menu.darcula li>a:hover .icon,.v-menu.darcula li>a:hover .icon{color:#fff}.d-menu.darcula li>.item-block,.v-menu.darcula li>.item-block{background:#484c4e}.d-menu.darcula li.disabled>a,.v-menu.darcula li.disabled>a{background:#3c3f41;color:#555}.d-menu.darcula li.menu-title,.v-menu.darcula li.menu-title{background:#303234;color:#ccc}.d-menu.darcula li.divider,.v-menu.darcula li.divider{background:#616162}.d-menu.pink,.v-menu.pink{background:#dc4fad}.d-menu.pink li>a,.v-menu.pink li>a{background:#dc4fad;color:#fff}.d-menu.pink li>a .icon,.v-menu.pink li>a .icon{color:#ccc}.d-menu.pink li>a:hover,.v-menu.pink li>a:hover{background:#9a165a;color:#fff}.d-menu.pink li>a:hover .icon,.v-menu.pink li>a:hover .icon{color:#fff}.d-menu.pink li>.item-block,.v-menu.pink li>.item-block{background:#e064b7}.d-menu.pink li.disabled>a,.v-menu.pink li.disabled>a{background:#dc4fad;color:#555}.d-menu.pink li.menu-title,.v-menu.pink li.menu-title{background:#d83aa3;color:#ccc}.d-menu.pink li.divider,.v-menu.pink li.divider{background:#f472d0}.d-menu.navy,.v-menu.navy{background:#0072c6}.d-menu.navy li>a,.v-menu.navy li>a{background:#0072c6;color:#fff}.d-menu.navy li>a .icon,.v-menu.navy li>a .icon{color:#ccc}.d-menu.navy li>a:hover,.v-menu.navy li>a:hover{background:#005696;color:#fff}.d-menu.navy li>a:hover .icon,.v-menu.navy li>a:hover .icon{color:#fff}.d-menu.navy li>.item-block,.v-menu.navy li>.item-block{background:#0081e0}.d-menu.navy li.disabled>a,.v-menu.navy li.disabled>a{background:#0072c6;color:#555}.d-menu.navy li.menu-title,.v-menu.navy li.menu-title{background:#0063ad;color:#ccc}.d-menu.navy li.divider,.v-menu.navy li.divider{background:#4c9cd7}.d-menu.red,.v-menu.red{background:#ce352c}.d-menu.red li>a,.v-menu.red li>a{background:#ce352c;color:#fff}.d-menu.red li>a .icon,.v-menu.red li>a .icon{color:#ccc}.d-menu.red li>a:hover,.v-menu.red li>a:hover{background:#9a1616;color:#fff}.d-menu.red li>a:hover .icon,.v-menu.red li>a:hover .icon{color:#fff}.d-menu.red li>.item-block,.v-menu.red li>.item-block{background:#d6463e}.d-menu.red li.disabled>a,.v-menu.red li.disabled>a{background:#ce352c;color:#555}.d-menu.red li.menu-title,.v-menu.red li.menu-title{background:#b93028;color:#ccc}.d-menu.red li.divider,.v-menu.red li.divider{background:#da5a53}.d-menu.green,.v-menu.green{background:#60a917}.d-menu.green li>a,.v-menu.green li>a{background:#60a917;color:#fff}.d-menu.green li>a .icon,.v-menu.green li>a .icon{color:#ccc}.d-menu.green li>a:hover,.v-menu.green li>a:hover{background:#128023;color:#fff}.d-menu.green li>a:hover .icon,.v-menu.green li>a:hover .icon{color:#fff}.d-menu.green li>.item-block,.v-menu.green li>.item-block{background:#6dbf1a}.d-menu.green li.disabled>a,.v-menu.green li.disabled>a{background:#60a917;color:#555}.d-menu.green li.menu-title,.v-menu.green li.menu-title{background:#539314;color:#ccc}.d-menu.green li.divider,.v-menu.green li.divider{background:#7ad61d}.d-menu.orange,.v-menu.orange{background:#fa6800}.d-menu.orange li>a,.v-menu.orange li>a{background:#fa6800;color:#fff}.d-menu.orange li>a .icon,.v-menu.orange li>a .icon{color:#ccc}.d-menu.orange li>a:hover,.v-menu.orange li>a:hover{background:#bf5a15;color:#fff}.d-menu.orange li>a:hover .icon,.v-menu.orange li>a:hover .icon{color:#fff}.d-menu.orange li>.item-block,.v-menu.orange li>.item-block{background:#ff7615}.d-menu.orange li.disabled>a,.v-menu.orange li.disabled>a{background:#fa6800;color:#555}.t-menu.darcula li:hover>a.dropdown-toggle:after,.t-menu.darcula li>a.dropdown-toggle:after,.t-menu.darcula li>a.dropdown-toggle:hover:after,.t-menu.green li:hover>a.dropdown-toggle:after,.t-menu.green li>a.dropdown-toggle:after,.t-menu.green li>a.dropdown-toggle:hover:after,.t-menu.navy li>a.dropdown-toggle:after,.t-menu.navy li>a.dropdown-toggle:hover:after,.t-menu.orange li:hover>a.dropdown-toggle:after,.t-menu.orange li>a.dropdown-toggle:after,.t-menu.orange li>a.dropdown-toggle:hover:after,.t-menu.pink li:hover>a.dropdown-toggle:after,.t-menu.pink li>a.dropdown-toggle:after,.t-menu.pink li>a.dropdown-toggle:hover:after,.t-menu.red li:hover>a.dropdown-toggle:after,.t-menu.red li>a.dropdown-toggle:after,.t-menu.red li>a.dropdown-toggle:hover:after{border-color:transparent transparent #fff}.d-menu.orange li.menu-title,.v-menu.orange li.menu-title{background:#e15d00;color:#ccc}.d-menu.orange li.divider,.v-menu.orange li.divider{background:#ffc194}.t-menu.darcula,.t-menu.darcula .t-menu{background-color:#3c3f41}.t-menu.darcula li>a{background:#3c3f41;color:#fff;border-bottom-color:#616162}.t-menu.darcula li:hover>a{background:#1d1d1d;color:#fff}.t-menu.darcula li.disabled>a{background:#3c3f41;color:#555}.t-menu.darcula li.disabled>a:hover{background:#3c3f41}.t-menu.darcula .horizontal>li>a,.t-menu.darcula.horizontal>li>a{border-right-color:#616162}.t-menu.pink,.t-menu.pink .t-menu{background-color:#dc4fad}.t-menu.pink li>a{background:#dc4fad;color:#fff;border-bottom-color:#f472d0}.t-menu.pink li:hover>a{background:#9a165a;color:#fff}.t-menu.pink li.disabled>a{background:#dc4fad;color:#555}.t-menu.pink li.disabled>a:hover{background:#dc4fad}.t-menu.pink .horizontal>li>a,.t-menu.pink.horizontal>li>a{border-right-color:#f472d0}.t-menu.navy,.t-menu.navy .t-menu{background-color:#0072c6}.t-menu.navy li>a{background:#0072c6;color:#fff;border-bottom-color:#4c9cd7}.t-menu.navy li:hover>a{background:#005696;color:#fff}.t-menu.navy li:hover>a.dropdown-toggle:after{border-color:transparent transparent #fff}.t-menu.navy li.disabled>a{background:#0072c6;color:#555}.t-menu.navy li.disabled>a:hover{background:#0072c6}.t-menu.navy .horizontal>li>a,.t-menu.navy.horizontal>li>a{border-right-color:#4c9cd7}.t-menu.red,.t-menu.red .t-menu{background-color:#ce352c}.t-menu.red li>a{background:#ce352c;color:#fff;border-bottom-color:#da5a53}.t-menu.red li:hover>a{background:#9a1616;color:#fff}.t-menu.red li.disabled>a{background:#ce352c;color:#555}.t-menu.red li.disabled>a:hover{background:#ce352c}.t-menu.red .horizontal>li>a,.t-menu.red.horizontal>li>a{border-right-color:#da5a53}.t-menu.green,.t-menu.green .t-menu{background-color:#60a917}.t-menu.green li>a{background:#60a917;color:#fff;border-bottom-color:#7ad61d}.t-menu.green li:hover>a{background:#128023;color:#fff}.t-menu.green li.disabled>a{background:#60a917;color:#555}.t-menu.green li.disabled>a:hover{background:#60a917}.t-menu.green .horizontal>li>a,.t-menu.green.horizontal>li>a{border-right-color:#7ad61d}.t-menu.orange,.t-menu.orange .t-menu{background-color:#fa6800}.t-menu.orange li>a{background:#fa6800;color:#fff;border-bottom-color:#ffc194}.t-menu.orange li:hover>a{background:#bf5a15;color:#fff}.t-menu.orange li.disabled>a{background:#fa6800;color:#555}.t-menu.orange li.disabled>a:hover{background:#fa6800}.t-menu.orange .horizontal>li>a,.t-menu.orange.horizontal>li>a{border-right-color:#ffc194}.sidebar.darcula{background:#3c3f41}.sidebar.darcula li>a{background:#3c3f41;color:#fff}.sidebar.darcula li:hover>a{background:#4d5154;color:#fff}.sidebar.darcula li.active>a{background:#1d1d1d;color:#fff}.sidebar.darcula li.disabled>a{background:#3c3f41;color:#555}.sidebar.pink,.sidebar.pink li>a{background:#dc4fad}.sidebar.pink li>a{color:#fff}.sidebar.pink li:hover>a{background:#b91a6c;color:#fff}.sidebar.pink li.active>a{background:#9a165a;color:#fff}.sidebar.pink li.disabled>a{background:#dc4fad;color:#555}.sidebar.navy,.sidebar.navy li>a{background:#0072c6}.sidebar.navy li>a{color:#fff}.sidebar.navy li:hover>a{background:#006aba;color:#fff}.sidebar.navy li.active>a{background:#005696;color:#fff}.sidebar.navy li.disabled>a{background:#0072c6;color:#555}.sidebar.red,.sidebar.red li>a{background:#ce352c}.sidebar.red li>a{color:#fff}.sidebar.red li:hover>a{background:#b91a1a;color:#fff}.sidebar.red li.active>a{background:#9a1616;color:#fff}.sidebar.red li.disabled>a{background:#ce352c;color:#555}.sidebar.green{background:#60a917}.sidebar.green li>a{background:#60a917;color:#fff}.sidebar.green li:hover>a{background:#169f2c;color:#fff}.sidebar.green li.active>a{background:#128023;color:#fff}.sidebar.green li.disabled>a{background:#60a917;color:#555}.sidebar.orange{background:#fa6800}.sidebar.orange li>a{background:#fa6800;color:#fff}.sidebar.orange li:hover>a{background:#df6919;color:#fff}.sidebar.orange li.active>a{background:#bf5a15;color:#fff}.sidebar.orange li.disabled>a{background:#fa6800;color:#555}.calendar.darcula .day-of-week,.calendar.darcula a,.calendar.darcula a:hover,.calendar.green .day-of-week,.calendar.green a,.calendar.green a:hover,.calendar.navy a,.calendar.navy a:hover,.calendar.orange .day-of-week,.calendar.orange a,.calendar.orange a:hover,.calendar.pink .day-of-week,.calendar.pink a,.calendar.pink a:hover,.calendar.red .day-of-week,.calendar.red a,.calendar.red a:hover{color:#fff}.calendar.darcula{background:#3c3f41}.calendar.darcula a:hover{background:#4d5154}.calendar.darcula .calendar-header{background:#3c3f41}.calendar.darcula .today a{background-color:#fa6800}.calendar.darcula .day,.calendar.darcula .month,.calendar.darcula .year{border-color:#4d5154}.calendar.darcula .other-day{background:#555;border-color:#555}.calendar.darcula .calendar-actions .calendar-btn-today{background:#1d1d1d;border-color:#1d1d1d}.calendar.darcula .calendar-actions .calendar-btn-today:active{background:#030303}.calendar.darcula .calendar-actions .calendar-btn-clear{background:0 0;border-color:transparent}.calendar.pink{background:#dc4fad}.calendar.pink a:hover{background:#b91a6c}.calendar.pink .calendar-header{background:#dc4fad}.calendar.pink .today a{background-color:#fa6800}.calendar.pink .day,.calendar.pink .month,.calendar.pink .year{border-color:#b91a6c}.calendar.pink .other-day{background:#f472d0;border-color:#f472d0}.calendar.pink .calendar-actions .calendar-btn-today{background:#9a165a;border-color:#9a165a}.calendar.pink .calendar-actions .calendar-btn-today:active{background:#6d1040}.calendar.pink .calendar-actions .calendar-btn-clear{background:0 0;border-color:transparent}.calendar.navy{background:#0072c6}.calendar.navy a:hover{background:#006aba}.calendar.navy .calendar-header{background:#0072c6}.calendar.navy .today a{background-color:#fa6800}.calendar.navy .day,.calendar.navy .month,.calendar.navy .year{border-color:#006aba}.calendar.navy .other-day{background:#59cde2;border-color:#59cde2}.calendar.navy .day-of-week{color:#fff}.calendar.navy .calendar-actions .calendar-btn-today{background:#16499a;border-color:#16499a}.calendar.navy .calendar-actions .calendar-btn-today:active{background:#10346d}.calendar.navy .calendar-actions .calendar-btn-clear{background:0 0;border-color:transparent}.calendar.red{background:#ce352c}.calendar.red a:hover{background:#b91a1a}.calendar.red .calendar-header{background:#ce352c}.calendar.red .today a{background-color:#fa6800}.calendar.red .day,.calendar.red .month,.calendar.red .year{border-color:#b91a1a}.calendar.red .other-day{background:#da5a53;border-color:#da5a53}.calendar.red .calendar-actions .calendar-btn-today{background:#9a1616;border-color:#9a1616}.calendar.red .calendar-actions .calendar-btn-today:active{background:#6d1010}.calendar.red .calendar-actions .calendar-btn-clear{background:0 0;border-color:transparent}.calendar.green{background:#60a917}.calendar.green a:hover{background:#169f2c}.calendar.green .calendar-header{background:#60a917}.calendar.green .today a{background-color:#fa6800}.calendar.green .day,.calendar.green .month,.calendar.green .year{border-color:#169f2c}.calendar.green .other-day{background:#7ad61d;border-color:#7ad61d}.calendar.green .calendar-actions .calendar-btn-today{background:#128023;border-color:#128023}.calendar.green .calendar-actions .calendar-btn-today:active{background:#0c5317}.calendar.green .calendar-actions .calendar-btn-clear{background:0 0;border-color:transparent}.calendar.orange{background:#fa6800}.calendar.orange a:hover{background:#df6919}.calendar.orange .calendar-header{background:#fa6800}.calendar.orange .today a{background-color:#fa6800}.calendar.orange .day,.calendar.orange .month,.calendar.orange .year{border-color:#df6919}.calendar.orange .other-day{background:#ffc194;border-color:#ffc194}.calendar.orange .calendar-actions .calendar-btn-today{background:#bf5a15;border-color:#bf5a15}.calendar.orange .calendar-actions .calendar-btn-today:active{background:#914410}.calendar.orange .calendar-actions .calendar-btn-clear{background:0 0;border-color:transparent} \ No newline at end of file diff --git a/applications/assets/css/metro.css b/applications/assets/css/metro.css new file mode 100644 index 0000000..8d13855 --- /dev/null +++ b/applications/assets/css/metro.css @@ -0,0 +1,18511 @@ +html, +body { + padding: 0; + margin: 0; + height: 100%; +} +html, +body, +* { + box-sizing: border-box; +} +article, +aside, +details, +figcaption, +figure, +footer, +header, +nav, +section { + display: block; +} +audio, +canvas, +video { + display: inline-block; +} +audio:not([controls]) { + display: none; +} +a:hover, +a:active, +.tile:active { + outline: 0; +} +sub, +sup { + position: relative; + font-size: 75%; + line-height: 0; + vertical-align: baseline; +} +sup { + top: -0.5em; +} +sub { + bottom: -0.25em; +} +img { + max-width: 100%; + height: auto; + vertical-align: middle; + border: 0; +} +#map_canvas img, +.google-maps img { + max-width: none; +} +button, +input, +select, +textarea { + margin: 0; + font-size: 100%; + vertical-align: middle; +} +button, +input { + line-height: normal; +} +button::-moz-focus-inner, +input::-moz-focus-inner { + padding: 0; + border: 0; +} +button, +html input[type="button"], +input[type="reset"], +input[type="submit"] { + -webkit-appearance: button; + cursor: pointer; +} +label, +select, +button, +input[type="button"], +input[type="reset"], +input[type="submit"], +input[type="radio"], +input[type="checkbox"] { + cursor: pointer; +} +input[type="search"] { + box-sizing: content-box; + appearance: textfield; +} +input[type="search"]::-webkit-search-decoration, +input[type="search"]::-webkit-search-cancel-button { + -webkit-appearance: none; +} +textarea { + overflow: auto; + vertical-align: top; +} +input[type=text]::-ms-clear, +input[type=email]::-ms-clear, +input[type=url]::-ms-clear, +input[type=tel]::-ms-clear, +input[type=number]::-ms-clear, +input[type=time]::-ms-clear { + display: none; +} +input[type=password]::-ms-reveal { + display: none; +} +* { + border-collapse: collapse; +} +a { + text-decoration: none; +} +@media print { + a, + a:visited { + text-decoration: underline; + } + a[href]:after { + content: " (" attr(href) ")"; + } + abbr[title]:after { + content: " (" attr(title) ")"; + } + .ir a:after, + a[href^="javascript:"]:after, + a[href^="#"]: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%; + } + p, + h2, + h3 { + orphans: 3; + widows: 3; + } + h2, + h3 { + page-break-after: avoid; + } +} +@font-face { + font-family: "PT Serif Caption"; + font-style: normal; + font-weight: 400; + src: local("Cambria"), local("PT Serif Caption"), local("PTSerif-Caption"), url(https://themes.googleusercontent.com/static/fonts/ptserifcaption/v6/7xkFOeTxxO1GMC1suOUYWWhBabBbEjGd1iRmpyoZukE.woff) format('woff'); +} +@font-face { + font-family: "Open Sans Light"; + font-style: normal; + font-weight: 300; + src: local("Segoe UI Light"), local("Open Sans Light"), local("OpenSans-Light"), url(https://themes.googleusercontent.com/static/fonts/opensans/v8/DXI1ORHCpsQm3Vp6mXoaTZ1r3JsPcQLi8jytr04NNhU.woff) format('woff'); +} +@font-face { + font-family: "Open Sans"; + font-style: normal; + font-weight: 400; + src: local("Segoe UI"), local("Open Sans"), local("OpenSans"), url(https://themes.googleusercontent.com/static/fonts/opensans/v8/K88pR3goAWT7BTt32Z01mz8E0i7KZn-EPnyo3HZu7kw.woff) format('woff'); +} +@font-face { + font-family: "Open Sans Bold"; + font-style: normal; + font-weight: 700; + src: local("Segoe UI Bold"), local("Open Sans Bold"), local("OpenSans-Bold"), url(https://themes.googleusercontent.com/static/fonts/opensans/v8/k3k702ZOKiLJc3WVjuplzJ1r3JsPcQLi8jytr04NNhU.woff) format('woff'); +} +html { + font-size: 100%; +} +body { + font-family: "Segoe UI", "Open Sans", sans-serif, serif; + font-size: 0.875rem; + line-height: 1.1; + font-weight: 400; + font-style: normal; +} +#font .light { + font-weight: 300; + font-style: normal; +} +#font .normal { + font-weight: 400; + font-style: normal; +} +#font .bold { + font-style: normal; + font-weight: 700; +} +#font .italic { + font-style: italic; +} +.leader { + font: 400 2.25rem/1.1 "Segoe UI", "Open Sans", sans-serif, serif; +} +.sub-leader { + font: 500 1.875rem/1.1 "Segoe UI", "Open Sans", sans-serif, serif; +} +.header { + font: 500 1.5rem/1.1 "Segoe UI", "Open Sans", sans-serif, serif; +} +.sub-header { + font: 500 1.125rem/1.1 "Segoe UI", "Open Sans", sans-serif, serif; +} +.alt-header { + font: 500 1rem/1.1 "Segoe UI", "Open Sans", sans-serif, serif; +} +.sub-alt-header { + font: 500 0.875rem/1.1 "Segoe UI", "Open Sans", sans-serif, serif; +} +.minor-header { + font: 500 0.75rem/1.1 "Segoe UI", "Open Sans", sans-serif, serif; +} +h1 { + font: 400 2.25rem/1.1 "Segoe UI", "Open Sans", sans-serif, serif; +} +h2 { + font: 500 1.875rem/1.1 "Segoe UI", "Open Sans", sans-serif, serif; +} +h3 { + font: 500 1.5rem/1.1 "Segoe UI", "Open Sans", sans-serif, serif; +} +h4 { + font: 500 1.125rem/1.1 "Segoe UI", "Open Sans", sans-serif, serif; +} +h5 { + font: 500 0.875rem/1.1 "Segoe UI", "Open Sans", sans-serif, serif; +} +h6 { + font: 500 0.75rem/1.1 "Segoe UI", "Open Sans", sans-serif, serif; +} +h1, +h2, +h3, +h4, +h5, +h6 { + margin: .625rem 0; +} +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: 400; + font-size: .7em; + line-height: 1; + color: #777; +} +.text-light { + font-weight: 300; + font-style: normal; +} +.text-normal { + font-weight: 400; + font-style: normal; +} +.text-bold { + font-style: normal; + font-weight: 700; +} +.text-italic { + font-style: italic; +} +.uppercase { + text-transform: uppercase; +} +.lowercase { + text-transform: lowercase; +} +.capital { + text-transform: capitalize; +} +.align-left { + text-align: left; +} +.align-right { + text-align: right; +} +.align-center { + text-align: center; +} +.align-justify { + text-align: justify; +} +.v-align-top { + vertical-align: top; +} +.v-align-bottom { + vertical-align: bottom; +} +.v-align-baseline { + vertical-align: baseline; +} +.v-align-middle { + vertical-align: middle; +} +.v-align-sub { + vertical-align: sub; +} +.v-align-super { + vertical-align: super; +} +.v-align-top-text { + vertical-align: text-top; +} +.v-align-bottom-text { + vertical-align: text-bottom; +} +.text-dashed { + border: 0; + border-bottom: 1px gray dashed; + display: inline; +} +.indent-paragraph:first-letter { + margin-left: 2.5rem; +} +.text-secondary { + font-size: 0.75rem; +} +.text-accent, +.text-enlarged { + font-size: 1.1rem; +} +.text-default { + font-size: 0.875rem; +} +.text-small { + font-size: 0.625rem; +} +.text-light { + font-weight: 300; +} +.text-ellipsis { + overflow: hidden; + white-space: nowrap; + text-overflow: ellipsis; +} +abbr { + text-decoration: none; + border-bottom: 1px #999999 dotted; + cursor: help; + display: inline; +} +address { + font-weight: 400; + font-style: normal; + margin: .625rem 0; +} +blockquote { + margin: .625rem 0; + padding: 0 0 0 .625rem; + border-left: 0.25rem #999999 solid; +} +blockquote small { + color: #999999; +} +blockquote small:before { + content: "\2014 \00A0"; +} +blockquote.place-right { + border: 0; + border-right: 4px #999999 solid; + padding-right: .625rem; + text-align: right; +} +blockquote.place-right small:before { + content: ""; +} +blockquote.place-right small:after { + content: " \00A0 \2014"; +} +.unstyled-list { + padding-left: 0; + list-style: none; +} +.unstyled-list li ul, +.unstyled-list li ol { + list-style: none; + padding-left: 1.5625rem; +} +.inline-list { + list-style: none; + padding-left: 0; +} +.inline-list li { + display: inline-block; + margin-right: .625rem; +} +.inline-list li:last-child { + margin-right: 0; +} +ul, +ol { + margin-left: .3125rem; +} +ul li, +ol li { + line-height: 1.25rem; +} +ul li ul, +ol li ul, +ul li ol, +ol li ol { + padding-left: 1.5625rem; +} +dl dt, +dl dd { + line-height: 1.25rem; +} +dl dt { + font-style: normal; + font-weight: 700; +} +dl dd { + margin-left: .9375rem; +} +dl.horizontal dt { + float: left; + width: 10rem; + overflow: hidden; + clear: left; + text-align: right; + text-overflow: ellipsis; + white-space: nowrap; +} +dl.horizontal dd { + margin-left: 11.25rem; +} +a { + color: #2086bf; +} +a:visited { + color: #2086bf; +} +hr { + border: 0; + height: 2px; + background-color: #88b9e3; +} +hr.thin { + height: 1px; +} +hr.fat { + height: 3px; +} +.tag { + display: inline-block; + line-height: 1.1; + font-size: 80%; + padding: 1px 4px 2px; + background-color: #eeeeee; + border-radius: 2px; + color: #1d1d1d; + vertical-align: middle; +} +.tag.success { + background-color: #60a917; + color: #ffffff; +} +.tag.alert { + background-color: #ce352c; + color: #ffffff; +} +.tag.info { + background-color: #1ba1e2; + color: #ffffff; +} +.tag.warning { + background-color: #fa6800; + color: #ffffff; +} +a.tag { + text-decoration: underline; + cursor: pointer; +} +.container { + width: 960px; + margin: 0 auto; +} +.fixed-top, +.fixed-bottom { + position: fixed; + left: 0; + right: 0; + z-index: 1030; +} +.fixed-top { + top: 0; + bottom: auto; +} +.fixed-bottom { + top: auto; + bottom: 0; +} +.pos-abs { + position: absolute !important; +} +.pos-rel { + position: relative !important; +} +.pos-fix { + position: fixed !important; +} +.dropdown-toggle { + position: relative; + cursor: pointer; +} +.dropdown-toggle:before { + display: block; + position: absolute; + vertical-align: middle; + color: transparent; + font-size: 0; + content: ""; + height: 5px; + width: 5px; + background-color: transparent; + border-left: 1px solid; + border-bottom: 1px solid; + border-color: #1d1d1d; + top: 50%; + left: 100%; + margin-left: -1rem; + margin-top: -0.1625rem; + z-index: 2; + -webkit-transform: rotate(-45deg); + transform: rotate(-45deg); +} +.dropdown-toggle.drop-marker-light:before { + border-color: #ffffff; +} +*.dropdown-toggle { + padding-right: 1.625rem; +} +.flush-list { + padding: 0; + margin: 0; + list-style: none inside none; +} +.shadow { + box-shadow: 0 2px 4px rgba(0, 0, 0, 0.35); +} +.before-shadow:before { + box-shadow: 0 2px 4px rgba(0, 0, 0, 0.35); +} +.after-shadow:after { + box-shadow: 0 2px 4px rgba(0, 0, 0, 0.35); +} +.block-shadow { + box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.3); +} +.block-shadow-success { + box-shadow: 0 0 25px 0 rgba(0, 128, 0, 0.7); +} +.block-shadow-error { + box-shadow: 0 0 25px 0 rgba(128, 0, 0, 0.7); +} +.block-shadow-danger { + box-shadow: 0 0 25px 0 rgba(128, 0, 0, 0.7); +} +.block-shadow-warning { + box-shadow: 0 0 25px 0 rgba(255, 165, 0, 0.7); +} +.block-shadow-info { + box-shadow: 0 0 25px 0 rgba(89, 205, 226, 0.7); +} +.block-shadow-impact { + box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2); +} +.bottom-shadow { + box-shadow: -1px 6px 6px -6px rgba(0, 0, 0, 0.35); +} +.text-shadow { + text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4); +} +.before-text-shadow:before { + text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4); +} +.after-text-shadow:after { + text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4); +} +.no-shadow { + box-shadow: none !important; +} +.full-size { + width: 100% !important; +} +.block { + display: block !important; +} +.inline-block { + display: inline-block !important; +} +.no-display { + display: none !important; +} +.no-margin { + margin: 0 !important; +} +.no-margin-right { + margin-right: 0 !important; +} +.no-margin-left { + margin-left: 0 !important; +} +.no-margin-top { + margin-top: 0 !important; +} +.no-margin-bottom { + margin-bottom: 0 !important; +} +.no-padding { + padding: 0 !important; +} +.no-padding-left { + padding-left: 0 !important; +} +.no-padding-right { + padding-right: 0 !important; +} +.no-padding-top { + padding-top: 0 !important; +} +.no-padding-bottom { + padding-bottom: 0 !important; +} +.no-float { + float: none !important; +} +.no-visible { + visibility: hidden !important; +} +.no-border { + border: 0 !important; +} +.no-overflow { + overflow: hidden !important; +} +.no-scroll { + overflow: hidden !important; +} +.no-scroll-x { + overflow-x: hidden !important; +} +.no-scroll-y { + overflow-y: hidden !important; +} +.no-wrap { + white-space: nowrap !important; +} +.no-border-left { + border-left: none !important; +} +.no-border-right { + border-right: none !important; +} +.no-border-top { + border-top: none !important; +} +.no-border-bottom { + border-bottom: none !important; +} +.transparent-border { + border-color: transparent !important; +} +.place-right { + float: right !important; +} +.place-left { + float: left !important; +} +.clear-float:before, +.clear-float:after { + display: table; + content: ""; +} +.clear-float:after { + clear: both; +} +.clearfix:before, +.clearfix:after { + display: table; + content: ""; +} +.clearfix:after { + clear: both; +} +.no-user-select { + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; +} +.no-appearance { + -moz-appearance: none; + -webkit-appearance: none; + appearance: none; +} +.debug { + border: 1px dashed red; +} +.example { + padding: .625rem 1.825rem .625rem 2.5rem; + border: 1px #ccc dashed; + position: relative; + margin: 0 0 .625rem 0; + background-color: #ffffff; +} +.example:before, +.example:after { + display: table; + content: ""; +} +.example:after { + clear: both; +} +.example:before { + position: absolute; + content: attr(data-text); + text-transform: lowercase; + left: 1.5rem; + top: 11.875rem; + color: gray; + display: block; + font-size: 1rem; + line-height: 1rem; + height: 1rem; + text-align: right; + white-space: nowrap; + direction: ltr; + width: 12.5rem; + -webkit-transform: rotate(-90deg); + transform: rotate(-90deg); + -webkit-transform-origin: 0 100%; + transform-origin: 0 100%; +} +.video-container { + position: relative; + padding-bottom: 56.25%; + padding-top: 30px; + height: 0; + overflow: hidden; +} +.video-container iframe, +.video-container object, +.video-container embed { + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100%; +} +.padding10 { + padding: 0.625rem; +} +.padding20 { + padding: 1.25rem; +} +.padding30 { + padding: 1.875rem; +} +.padding40 { + padding: 2.5rem; +} +.padding50 { + padding: 3.125rem; +} +.padding60 { + padding: 3.75rem; +} +.padding70 { + padding: 4.375rem; +} +.padding80 { + padding: 5rem; +} +.padding90 { + padding: 5.625rem; +} +.padding100 { + padding: 6.25rem; +} +.padding5 { + padding: 5px; +} +.margin5 { + margin: 5px; +} +.margin10 { + margin: 0.625rem; +} +.margin20 { + margin: 1.25rem; +} +.margin30 { + margin: 1.875rem; +} +.margin40 { + margin: 2.5rem; +} +.margin50 { + margin: 3.125rem; +} +.margin60 { + margin: 3.75rem; +} +.margin70 { + margin: 4.375rem; +} +.margin80 { + margin: 5rem; +} +.margin90 { + margin: 5.625rem; +} +.margin100 { + margin: 6.25rem; +} +.opacity { + opacity: .9; +} +.half-opacity { + opacity: .5; +} +.hi-opacity { + opacity: .2; +} +.element-selected { + border: 4px #4390df solid; +} +.element-selected:after { + position: absolute; + display: block; + border-top: 28px solid #4390df; + border-left: 28px solid transparent; + right: 0; + content: ""; + top: 0; + z-index: 101; +} +.element-selected:before { + position: absolute; + display: block; + content: ""; + background-color: transparent; + border-color: #ffffff; + border-left: 2px solid; + border-bottom: 2px solid; + height: .25rem; + width: .5rem; + right: 0; + top: 0; + z-index: 102; + -webkit-transform: rotate(-45deg); + transform: rotate(-45deg); +} +/* Block function */ +.set-border { + border: 1px #d9d9d9 solid; +} +.set-border.medium-border { + border-width: 8px; +} +.set-border.large-border { + border-width: 16px; +} +.grid { + display: block; + position: relative; + margin: .625rem 0; +} +.grid:before, +.grid:after { + display: table; + content: ""; +} +.grid:after { + clear: both; +} +.grid .row { + width: 100%; + display: block; + margin: 0 0 2.12765% 0; +} +.grid .row:before, +.grid .row:after { + display: table; + content: ""; +} +.grid .row:after { + clear: both; +} +.grid .row:last-child { + margin-bottom: 0; +} +.grid .row > .cell { + display: block; + float: left; + width: 100%; + min-height: 10px; + margin: 0 0 0 2.12765%; +} +.grid .row > .cell:first-child { + margin-left: 0; +} +.grid .row.cells2 > .cell { + width: 48.936175%; +} +.grid .row.cells2 > .cell.colspan2 { + width: 100%; +} +.grid .row.cells2 > .cell.offset1 { + margin-left: 51.063825%; +} +.grid .row.cells2 > .cell.offset2 { + margin-left: 102.12765%; +} +.grid .row.cells3 > .cell { + width: 31.9149%; +} +.grid .row.cells3 > .cell.colspan2 { + width: 65.95745%; +} +.grid .row.cells3 > .cell.colspan3 { + width: 100%; +} +.grid .row.cells3 > .cell.offset1 { + margin-left: 34.04255%; +} +.grid .row.cells3 > .cell.offset2 { + margin-left: 68.0851%; +} +.grid .row.cells3 > .cell.offset3 { + margin-left: 102.12765%; +} +.grid .row.cells4 > .cell { + width: 23.4042625%; +} +.grid .row.cells4 > .cell.colspan2 { + width: 48.936175%; +} +.grid .row.cells4 > .cell.colspan3 { + width: 74.4680875%; +} +.grid .row.cells4 > .cell.colspan4 { + width: 100%; +} +.grid .row.cells4 > .cell.offset1 { + margin-left: 25.5319125%; +} +.grid .row.cells4 > .cell.offset2 { + margin-left: 51.063825%; +} +.grid .row.cells4 > .cell.offset3 { + margin-left: 76.5957375%; +} +.grid .row.cells4 > .cell.offset4 { + margin-left: 102.12765%; +} +.grid .row.cells5 > .cell { + width: 18.29788%; +} +.grid .row.cells5 > .cell.colspan2 { + width: 38.72341%; +} +.grid .row.cells5 > .cell.colspan3 { + width: 59.14894%; +} +.grid .row.cells5 > .cell.colspan4 { + width: 79.57447%; +} +.grid .row.cells5 > .cell.colspan5 { + width: 100%; +} +.grid .row.cells5 > .cell.offset1 { + margin-left: 20.42553%; +} +.grid .row.cells5 > .cell.offset2 { + margin-left: 40.85106%; +} +.grid .row.cells5 > .cell.offset3 { + margin-left: 61.27659%; +} +.grid .row.cells5 > .cell.offset4 { + margin-left: 81.70212%; +} +.grid .row.cells5 > .cell.offset5 { + margin-left: 102.12765%; +} +.grid .row.cells6 > .cell { + width: 14.893625%; +} +.grid .row.cells6 > .cell.colspan2 { + width: 31.9149%; +} +.grid .row.cells6 > .cell.colspan3 { + width: 48.936175%; +} +.grid .row.cells6 > .cell.colspan4 { + width: 65.95745%; +} +.grid .row.cells6 > .cell.colspan5 { + width: 82.978725%; +} +.grid .row.cells6 > .cell.colspan6 { + width: 100%; +} +.grid .row.cells6 > .cell.offset1 { + margin-left: 17.021275%; +} +.grid .row.cells6 > .cell.offset2 { + margin-left: 34.04255%; +} +.grid .row.cells6 > .cell.offset3 { + margin-left: 51.063825%; +} +.grid .row.cells6 > .cell.offset4 { + margin-left: 68.0851%; +} +.grid .row.cells6 > .cell.offset5 { + margin-left: 85.106375%; +} +.grid .row.cells6 > .cell.offset6 { + margin-left: 102.12765%; +} +.grid .row.cells7 > .cell { + width: 12.46201429%; +} +.grid .row.cells7 > .cell.colspan2 { + width: 27.05167857%; +} +.grid .row.cells7 > .cell.colspan3 { + width: 41.64134286%; +} +.grid .row.cells7 > .cell.colspan4 { + width: 56.23100714%; +} +.grid .row.cells7 > .cell.colspan5 { + width: 70.82067143%; +} +.grid .row.cells7 > .cell.colspan6 { + width: 85.41033571%; +} +.grid .row.cells7 > .cell.colspan7 { + width: 100%; +} +.grid .row.cells7 > .cell.offset1 { + margin-left: 14.58966429%; +} +.grid .row.cells7 > .cell.offset2 { + margin-left: 29.17932857%; +} +.grid .row.cells7 > .cell.offset3 { + margin-left: 43.76899286%; +} +.grid .row.cells7 > .cell.offset4 { + margin-left: 58.35865714%; +} +.grid .row.cells7 > .cell.offset5 { + margin-left: 72.94832143%; +} +.grid .row.cells7 > .cell.offset6 { + margin-left: 87.53798571%; +} +.grid .row.cells7 > .cell.offset7 { + margin-left: 102.12765%; +} +.grid .row.cells8 > .cell { + width: 10.63830625%; +} +.grid .row.cells8 > .cell.colspan2 { + width: 23.4042625%; +} +.grid .row.cells8 > .cell.colspan3 { + width: 36.17021875%; +} +.grid .row.cells8 > .cell.colspan4 { + width: 48.936175%; +} +.grid .row.cells8 > .cell.colspan5 { + width: 61.70213125%; +} +.grid .row.cells8 > .cell.colspan6 { + width: 74.4680875%; +} +.grid .row.cells8 > .cell.colspan7 { + width: 87.23404375%; +} +.grid .row.cells8 > .cell.colspan8 { + width: 100%; +} +.grid .row.cells8 > .cell.offset1 { + margin-left: 12.76595625%; +} +.grid .row.cells8 > .cell.offset2 { + margin-left: 25.5319125%; +} +.grid .row.cells8 > .cell.offset3 { + margin-left: 38.29786875%; +} +.grid .row.cells8 > .cell.offset4 { + margin-left: 51.063825%; +} +.grid .row.cells8 > .cell.offset5 { + margin-left: 63.82978125%; +} +.grid .row.cells8 > .cell.offset6 { + margin-left: 76.5957375%; +} +.grid .row.cells8 > .cell.offset7 { + margin-left: 89.36169375%; +} +.grid .row.cells8 > .cell.offset8 { + margin-left: 102.12765%; +} +.grid .row.cells9 > .cell { + width: 9.21986667%; +} +.grid .row.cells9 > .cell.colspan2 { + width: 20.56738333%; +} +.grid .row.cells9 > .cell.colspan3 { + width: 31.9149%; +} +.grid .row.cells9 > .cell.colspan4 { + width: 43.26241667%; +} +.grid .row.cells9 > .cell.colspan5 { + width: 54.60993333%; +} +.grid .row.cells9 > .cell.colspan6 { + width: 65.95745%; +} +.grid .row.cells9 > .cell.colspan7 { + width: 77.30496667%; +} +.grid .row.cells9 > .cell.colspan8 { + width: 88.65248333%; +} +.grid .row.cells9 > .cell.colspan9 { + width: 100%; +} +.grid .row.cells9 > .cell.offset1 { + margin-left: 11.34751667%; +} +.grid .row.cells9 > .cell.offset2 { + margin-left: 22.69503333%; +} +.grid .row.cells9 > .cell.offset3 { + margin-left: 34.04255%; +} +.grid .row.cells9 > .cell.offset4 { + margin-left: 45.39006667%; +} +.grid .row.cells9 > .cell.offset5 { + margin-left: 56.73758333%; +} +.grid .row.cells9 > .cell.offset6 { + margin-left: 68.0851%; +} +.grid .row.cells9 > .cell.offset7 { + margin-left: 79.43261667%; +} +.grid .row.cells9 > .cell.offset8 { + margin-left: 90.78013333%; +} +.grid .row.cells9 > .cell.offset9 { + margin-left: 102.12765%; +} +.grid .row.cells10 > .cell { + width: 8.085115%; +} +.grid .row.cells10 > .cell.colspan2 { + width: 18.29788%; +} +.grid .row.cells10 > .cell.colspan3 { + width: 28.510645%; +} +.grid .row.cells10 > .cell.colspan4 { + width: 38.72341%; +} +.grid .row.cells10 > .cell.colspan5 { + width: 48.936175%; +} +.grid .row.cells10 > .cell.colspan6 { + width: 59.14894%; +} +.grid .row.cells10 > .cell.colspan7 { + width: 69.361705%; +} +.grid .row.cells10 > .cell.colspan8 { + width: 79.57447%; +} +.grid .row.cells10 > .cell.colspan9 { + width: 89.787235%; +} +.grid .row.cells10 > .cell.colspan10 { + width: 100%; +} +.grid .row.cells10 > .cell.offset1 { + margin-left: 10.212765%; +} +.grid .row.cells10 > .cell.offset2 { + margin-left: 20.42553%; +} +.grid .row.cells10 > .cell.offset3 { + margin-left: 30.638295%; +} +.grid .row.cells10 > .cell.offset4 { + margin-left: 40.85106%; +} +.grid .row.cells10 > .cell.offset5 { + margin-left: 51.063825%; +} +.grid .row.cells10 > .cell.offset6 { + margin-left: 61.27659%; +} +.grid .row.cells10 > .cell.offset7 { + margin-left: 71.489355%; +} +.grid .row.cells10 > .cell.offset8 { + margin-left: 81.70212%; +} +.grid .row.cells10 > .cell.offset9 { + margin-left: 91.914885%; +} +.grid .row.cells10 > .cell.offset10 { + margin-left: 102.12765%; +} +.grid .row.cells11 > .cell { + width: 7.15668182%; +} +.grid .row.cells11 > .cell.colspan2 { + width: 16.44101364%; +} +.grid .row.cells11 > .cell.colspan3 { + width: 25.72534545%; +} +.grid .row.cells11 > .cell.colspan4 { + width: 35.00967727%; +} +.grid .row.cells11 > .cell.colspan5 { + width: 44.29400909%; +} +.grid .row.cells11 > .cell.colspan6 { + width: 53.57834091%; +} +.grid .row.cells11 > .cell.colspan7 { + width: 62.86267273%; +} +.grid .row.cells11 > .cell.colspan8 { + width: 72.14700455%; +} +.grid .row.cells11 > .cell.colspan9 { + width: 81.43133636%; +} +.grid .row.cells11 > .cell.colspan10 { + width: 90.71566818%; +} +.grid .row.cells11 > .cell.colspan11 { + width: 100%; +} +.grid .row.cells11 > .cell.offset1 { + margin-left: 9.28433182%; +} +.grid .row.cells11 > .cell.offset2 { + margin-left: 18.56866364%; +} +.grid .row.cells11 > .cell.offset3 { + margin-left: 27.85299545%; +} +.grid .row.cells11 > .cell.offset4 { + margin-left: 37.13732727%; +} +.grid .row.cells11 > .cell.offset5 { + margin-left: 46.42165909%; +} +.grid .row.cells11 > .cell.offset6 { + margin-left: 55.70599091%; +} +.grid .row.cells11 > .cell.offset7 { + margin-left: 64.99032273%; +} +.grid .row.cells11 > .cell.offset8 { + margin-left: 74.27465455%; +} +.grid .row.cells11 > .cell.offset9 { + margin-left: 83.55898636%; +} +.grid .row.cells11 > .cell.offset10 { + margin-left: 92.84331818%; +} +.grid .row.cells11 > .cell.offset11 { + margin-left: 102.12765%; +} +.grid .row.cells12 > .cell { + width: 6.3829875%; +} +.grid .row.cells12 > .cell.colspan2 { + width: 14.893625%; +} +.grid .row.cells12 > .cell.colspan3 { + width: 23.4042625%; +} +.grid .row.cells12 > .cell.colspan4 { + width: 31.9149%; +} +.grid .row.cells12 > .cell.colspan5 { + width: 40.4255375%; +} +.grid .row.cells12 > .cell.colspan6 { + width: 48.936175%; +} +.grid .row.cells12 > .cell.colspan7 { + width: 57.4468125%; +} +.grid .row.cells12 > .cell.colspan8 { + width: 65.95745%; +} +.grid .row.cells12 > .cell.colspan9 { + width: 74.4680875%; +} +.grid .row.cells12 > .cell.colspan10 { + width: 82.978725%; +} +.grid .row.cells12 > .cell.colspan11 { + width: 91.4893625%; +} +.grid .row.cells12 > .cell.colspan12 { + width: 100%; +} +.grid .row.cells12 > .cell.offset1 { + margin-left: 8.5106375%; +} +.grid .row.cells12 > .cell.offset2 { + margin-left: 17.021275%; +} +.grid .row.cells12 > .cell.offset3 { + margin-left: 25.5319125%; +} +.grid .row.cells12 > .cell.offset4 { + margin-left: 34.04255%; +} +.grid .row.cells12 > .cell.offset5 { + margin-left: 42.5531875%; +} +.grid .row.cells12 > .cell.offset6 { + margin-left: 51.063825%; +} +.grid .row.cells12 > .cell.offset7 { + margin-left: 59.5744625%; +} +.grid .row.cells12 > .cell.offset8 { + margin-left: 68.0851%; +} +.grid .row.cells12 > .cell.offset9 { + margin-left: 76.5957375%; +} +.grid .row.cells12 > .cell.offset10 { + margin-left: 85.106375%; +} +.grid .row.cells12 > .cell.offset11 { + margin-left: 93.6170125%; +} +.grid .row.cells12 > .cell.offset12 { + margin-left: 102.12765%; +} +.grid .row:empty { + display: none; +} +.grid.condensed { + display: block; + position: relative; + margin: .625rem 0; +} +.grid.condensed:before, +.grid.condensed:after { + display: table; + content: ""; +} +.grid.condensed:after { + clear: both; +} +.grid.condensed .row { + width: 100%; + display: block; + margin: 0 0 0 0; +} +.grid.condensed .row:before, +.grid.condensed .row:after { + display: table; + content: ""; +} +.grid.condensed .row:after { + clear: both; +} +.grid.condensed .row:last-child { + margin-bottom: 0; +} +.grid.condensed .row > .cell { + display: block; + float: left; + width: 100%; + min-height: 10px; + margin: 0 0 0 0; +} +.grid.condensed .row > .cell:first-child { + margin-left: 0; +} +.grid.condensed .row.cells2 > .cell { + width: 50%; +} +.grid.condensed .row.cells2 > .cell.colspan2 { + width: 100%; +} +.grid.condensed .row.cells2 > .cell.offset1 { + margin-left: 50%; +} +.grid.condensed .row.cells2 > .cell.offset2 { + margin-left: 100%; +} +.grid.condensed .row.cells3 > .cell { + width: 33.33333333%; +} +.grid.condensed .row.cells3 > .cell.colspan2 { + width: 66.66666667%; +} +.grid.condensed .row.cells3 > .cell.colspan3 { + width: 100%; +} +.grid.condensed .row.cells3 > .cell.offset1 { + margin-left: 33.33333333%; +} +.grid.condensed .row.cells3 > .cell.offset2 { + margin-left: 66.66666667%; +} +.grid.condensed .row.cells3 > .cell.offset3 { + margin-left: 100%; +} +.grid.condensed .row.cells4 > .cell { + width: 25%; +} +.grid.condensed .row.cells4 > .cell.colspan2 { + width: 50%; +} +.grid.condensed .row.cells4 > .cell.colspan3 { + width: 75%; +} +.grid.condensed .row.cells4 > .cell.colspan4 { + width: 100%; +} +.grid.condensed .row.cells4 > .cell.offset1 { + margin-left: 25%; +} +.grid.condensed .row.cells4 > .cell.offset2 { + margin-left: 50%; +} +.grid.condensed .row.cells4 > .cell.offset3 { + margin-left: 75%; +} +.grid.condensed .row.cells4 > .cell.offset4 { + margin-left: 100%; +} +.grid.condensed .row.cells5 > .cell { + width: 20%; +} +.grid.condensed .row.cells5 > .cell.colspan2 { + width: 40%; +} +.grid.condensed .row.cells5 > .cell.colspan3 { + width: 60%; +} +.grid.condensed .row.cells5 > .cell.colspan4 { + width: 80%; +} +.grid.condensed .row.cells5 > .cell.colspan5 { + width: 100%; +} +.grid.condensed .row.cells5 > .cell.offset1 { + margin-left: 20%; +} +.grid.condensed .row.cells5 > .cell.offset2 { + margin-left: 40%; +} +.grid.condensed .row.cells5 > .cell.offset3 { + margin-left: 60%; +} +.grid.condensed .row.cells5 > .cell.offset4 { + margin-left: 80%; +} +.grid.condensed .row.cells5 > .cell.offset5 { + margin-left: 100%; +} +.grid.condensed .row.cells6 > .cell { + width: 16.66666667%; +} +.grid.condensed .row.cells6 > .cell.colspan2 { + width: 33.33333333%; +} +.grid.condensed .row.cells6 > .cell.colspan3 { + width: 50%; +} +.grid.condensed .row.cells6 > .cell.colspan4 { + width: 66.66666667%; +} +.grid.condensed .row.cells6 > .cell.colspan5 { + width: 83.33333333%; +} +.grid.condensed .row.cells6 > .cell.colspan6 { + width: 100%; +} +.grid.condensed .row.cells6 > .cell.offset1 { + margin-left: 16.66666667%; +} +.grid.condensed .row.cells6 > .cell.offset2 { + margin-left: 33.33333333%; +} +.grid.condensed .row.cells6 > .cell.offset3 { + margin-left: 50%; +} +.grid.condensed .row.cells6 > .cell.offset4 { + margin-left: 66.66666667%; +} +.grid.condensed .row.cells6 > .cell.offset5 { + margin-left: 83.33333333%; +} +.grid.condensed .row.cells6 > .cell.offset6 { + margin-left: 100%; +} +.grid.condensed .row.cells7 > .cell { + width: 14.28571429%; +} +.grid.condensed .row.cells7 > .cell.colspan2 { + width: 28.57142857%; +} +.grid.condensed .row.cells7 > .cell.colspan3 { + width: 42.85714286%; +} +.grid.condensed .row.cells7 > .cell.colspan4 { + width: 57.14285714%; +} +.grid.condensed .row.cells7 > .cell.colspan5 { + width: 71.42857143%; +} +.grid.condensed .row.cells7 > .cell.colspan6 { + width: 85.71428571%; +} +.grid.condensed .row.cells7 > .cell.colspan7 { + width: 100%; +} +.grid.condensed .row.cells7 > .cell.offset1 { + margin-left: 14.28571429%; +} +.grid.condensed .row.cells7 > .cell.offset2 { + margin-left: 28.57142857%; +} +.grid.condensed .row.cells7 > .cell.offset3 { + margin-left: 42.85714286%; +} +.grid.condensed .row.cells7 > .cell.offset4 { + margin-left: 57.14285714%; +} +.grid.condensed .row.cells7 > .cell.offset5 { + margin-left: 71.42857143%; +} +.grid.condensed .row.cells7 > .cell.offset6 { + margin-left: 85.71428571%; +} +.grid.condensed .row.cells7 > .cell.offset7 { + margin-left: 100%; +} +.grid.condensed .row.cells8 > .cell { + width: 12.5%; +} +.grid.condensed .row.cells8 > .cell.colspan2 { + width: 25%; +} +.grid.condensed .row.cells8 > .cell.colspan3 { + width: 37.5%; +} +.grid.condensed .row.cells8 > .cell.colspan4 { + width: 50%; +} +.grid.condensed .row.cells8 > .cell.colspan5 { + width: 62.5%; +} +.grid.condensed .row.cells8 > .cell.colspan6 { + width: 75%; +} +.grid.condensed .row.cells8 > .cell.colspan7 { + width: 87.5%; +} +.grid.condensed .row.cells8 > .cell.colspan8 { + width: 100%; +} +.grid.condensed .row.cells8 > .cell.offset1 { + margin-left: 12.5%; +} +.grid.condensed .row.cells8 > .cell.offset2 { + margin-left: 25%; +} +.grid.condensed .row.cells8 > .cell.offset3 { + margin-left: 37.5%; +} +.grid.condensed .row.cells8 > .cell.offset4 { + margin-left: 50%; +} +.grid.condensed .row.cells8 > .cell.offset5 { + margin-left: 62.5%; +} +.grid.condensed .row.cells8 > .cell.offset6 { + margin-left: 75%; +} +.grid.condensed .row.cells8 > .cell.offset7 { + margin-left: 87.5%; +} +.grid.condensed .row.cells8 > .cell.offset8 { + margin-left: 100%; +} +.grid.condensed .row.cells9 > .cell { + width: 11.11111111%; +} +.grid.condensed .row.cells9 > .cell.colspan2 { + width: 22.22222222%; +} +.grid.condensed .row.cells9 > .cell.colspan3 { + width: 33.33333333%; +} +.grid.condensed .row.cells9 > .cell.colspan4 { + width: 44.44444444%; +} +.grid.condensed .row.cells9 > .cell.colspan5 { + width: 55.55555556%; +} +.grid.condensed .row.cells9 > .cell.colspan6 { + width: 66.66666667%; +} +.grid.condensed .row.cells9 > .cell.colspan7 { + width: 77.77777778%; +} +.grid.condensed .row.cells9 > .cell.colspan8 { + width: 88.88888889%; +} +.grid.condensed .row.cells9 > .cell.colspan9 { + width: 100%; +} +.grid.condensed .row.cells9 > .cell.offset1 { + margin-left: 11.11111111%; +} +.grid.condensed .row.cells9 > .cell.offset2 { + margin-left: 22.22222222%; +} +.grid.condensed .row.cells9 > .cell.offset3 { + margin-left: 33.33333333%; +} +.grid.condensed .row.cells9 > .cell.offset4 { + margin-left: 44.44444444%; +} +.grid.condensed .row.cells9 > .cell.offset5 { + margin-left: 55.55555556%; +} +.grid.condensed .row.cells9 > .cell.offset6 { + margin-left: 66.66666667%; +} +.grid.condensed .row.cells9 > .cell.offset7 { + margin-left: 77.77777778%; +} +.grid.condensed .row.cells9 > .cell.offset8 { + margin-left: 88.88888889%; +} +.grid.condensed .row.cells9 > .cell.offset9 { + margin-left: 100%; +} +.grid.condensed .row.cells10 > .cell { + width: 10%; +} +.grid.condensed .row.cells10 > .cell.colspan2 { + width: 20%; +} +.grid.condensed .row.cells10 > .cell.colspan3 { + width: 30%; +} +.grid.condensed .row.cells10 > .cell.colspan4 { + width: 40%; +} +.grid.condensed .row.cells10 > .cell.colspan5 { + width: 50%; +} +.grid.condensed .row.cells10 > .cell.colspan6 { + width: 60%; +} +.grid.condensed .row.cells10 > .cell.colspan7 { + width: 70%; +} +.grid.condensed .row.cells10 > .cell.colspan8 { + width: 80%; +} +.grid.condensed .row.cells10 > .cell.colspan9 { + width: 90%; +} +.grid.condensed .row.cells10 > .cell.colspan10 { + width: 100%; +} +.grid.condensed .row.cells10 > .cell.offset1 { + margin-left: 10%; +} +.grid.condensed .row.cells10 > .cell.offset2 { + margin-left: 20%; +} +.grid.condensed .row.cells10 > .cell.offset3 { + margin-left: 30%; +} +.grid.condensed .row.cells10 > .cell.offset4 { + margin-left: 40%; +} +.grid.condensed .row.cells10 > .cell.offset5 { + margin-left: 50%; +} +.grid.condensed .row.cells10 > .cell.offset6 { + margin-left: 60%; +} +.grid.condensed .row.cells10 > .cell.offset7 { + margin-left: 70%; +} +.grid.condensed .row.cells10 > .cell.offset8 { + margin-left: 80%; +} +.grid.condensed .row.cells10 > .cell.offset9 { + margin-left: 90%; +} +.grid.condensed .row.cells10 > .cell.offset10 { + margin-left: 100%; +} +.grid.condensed .row.cells11 > .cell { + width: 9.09090909%; +} +.grid.condensed .row.cells11 > .cell.colspan2 { + width: 18.18181818%; +} +.grid.condensed .row.cells11 > .cell.colspan3 { + width: 27.27272727%; +} +.grid.condensed .row.cells11 > .cell.colspan4 { + width: 36.36363636%; +} +.grid.condensed .row.cells11 > .cell.colspan5 { + width: 45.45454545%; +} +.grid.condensed .row.cells11 > .cell.colspan6 { + width: 54.54545455%; +} +.grid.condensed .row.cells11 > .cell.colspan7 { + width: 63.63636364%; +} +.grid.condensed .row.cells11 > .cell.colspan8 { + width: 72.72727273%; +} +.grid.condensed .row.cells11 > .cell.colspan9 { + width: 81.81818182%; +} +.grid.condensed .row.cells11 > .cell.colspan10 { + width: 90.90909091%; +} +.grid.condensed .row.cells11 > .cell.colspan11 { + width: 100%; +} +.grid.condensed .row.cells11 > .cell.offset1 { + margin-left: 9.09090909%; +} +.grid.condensed .row.cells11 > .cell.offset2 { + margin-left: 18.18181818%; +} +.grid.condensed .row.cells11 > .cell.offset3 { + margin-left: 27.27272727%; +} +.grid.condensed .row.cells11 > .cell.offset4 { + margin-left: 36.36363636%; +} +.grid.condensed .row.cells11 > .cell.offset5 { + margin-left: 45.45454545%; +} +.grid.condensed .row.cells11 > .cell.offset6 { + margin-left: 54.54545455%; +} +.grid.condensed .row.cells11 > .cell.offset7 { + margin-left: 63.63636364%; +} +.grid.condensed .row.cells11 > .cell.offset8 { + margin-left: 72.72727273%; +} +.grid.condensed .row.cells11 > .cell.offset9 { + margin-left: 81.81818182%; +} +.grid.condensed .row.cells11 > .cell.offset10 { + margin-left: 90.90909091%; +} +.grid.condensed .row.cells11 > .cell.offset11 { + margin-left: 100%; +} +.grid.condensed .row.cells12 > .cell { + width: 8.33333333%; +} +.grid.condensed .row.cells12 > .cell.colspan2 { + width: 16.66666667%; +} +.grid.condensed .row.cells12 > .cell.colspan3 { + width: 25%; +} +.grid.condensed .row.cells12 > .cell.colspan4 { + width: 33.33333333%; +} +.grid.condensed .row.cells12 > .cell.colspan5 { + width: 41.66666667%; +} +.grid.condensed .row.cells12 > .cell.colspan6 { + width: 50%; +} +.grid.condensed .row.cells12 > .cell.colspan7 { + width: 58.33333333%; +} +.grid.condensed .row.cells12 > .cell.colspan8 { + width: 66.66666667%; +} +.grid.condensed .row.cells12 > .cell.colspan9 { + width: 75%; +} +.grid.condensed .row.cells12 > .cell.colspan10 { + width: 83.33333333%; +} +.grid.condensed .row.cells12 > .cell.colspan11 { + width: 91.66666667%; +} +.grid.condensed .row.cells12 > .cell.colspan12 { + width: 100%; +} +.grid.condensed .row.cells12 > .cell.offset1 { + margin-left: 8.33333333%; +} +.grid.condensed .row.cells12 > .cell.offset2 { + margin-left: 16.66666667%; +} +.grid.condensed .row.cells12 > .cell.offset3 { + margin-left: 25%; +} +.grid.condensed .row.cells12 > .cell.offset4 { + margin-left: 33.33333333%; +} +.grid.condensed .row.cells12 > .cell.offset5 { + margin-left: 41.66666667%; +} +.grid.condensed .row.cells12 > .cell.offset6 { + margin-left: 50%; +} +.grid.condensed .row.cells12 > .cell.offset7 { + margin-left: 58.33333333%; +} +.grid.condensed .row.cells12 > .cell.offset8 { + margin-left: 66.66666667%; +} +.grid.condensed .row.cells12 > .cell.offset9 { + margin-left: 75%; +} +.grid.condensed .row.cells12 > .cell.offset10 { + margin-left: 83.33333333%; +} +.grid.condensed .row.cells12 > .cell.offset11 { + margin-left: 91.66666667%; +} +.grid.condensed .row.cells12 > .cell.offset12 { + margin-left: 100%; +} +.flex-grid { + display: block; + width: 100%; +} +.flex-grid .row { + display: -webkit-flex; + display: flex; +} +.flex-grid .row .cell { + -webkit-flex: 0 0 8.33333333%; + flex: 0 0 8.33333333%; +} +.flex-grid .row.cell-auto-size .cell { + -webkit-flex: 1 1 auto; + flex: 1 1 auto; +} +.flex-grid .row .cell.colspan2 { + -webkit-flex: 0 0 16.66666666%; + flex: 0 0 16.66666666%; +} +.flex-grid .row .cell.colspan3 { + -webkit-flex: 0 0 24.99999999%; + flex: 0 0 24.99999999%; +} +.flex-grid .row .cell.colspan4 { + -webkit-flex: 0 0 33.33333332%; + flex: 0 0 33.33333332%; +} +.flex-grid .row .cell.colspan5 { + -webkit-flex: 0 0 41.66666665%; + flex: 0 0 41.66666665%; +} +.flex-grid .row .cell.colspan6 { + -webkit-flex: 0 0 49.99999998%; + flex: 0 0 49.99999998%; +} +.flex-grid .row .cell.colspan7 { + -webkit-flex: 0 0 58.33333331%; + flex: 0 0 58.33333331%; +} +.flex-grid .row .cell.colspan8 { + -webkit-flex: 0 0 66.66666664%; + flex: 0 0 66.66666664%; +} +.flex-grid .row .cell.colspan9 { + -webkit-flex: 0 0 74.99999997%; + flex: 0 0 74.99999997%; +} +.flex-grid .row .cell.colspan10 { + -webkit-flex: 0 0 83.3333333%; + flex: 0 0 83.3333333%; +} +.flex-grid .row .cell.colspan11 { + -webkit-flex: 0 0 91.66666663%; + flex: 0 0 91.66666663%; +} +.flex-grid .row .cell.colspan12 { + -webkit-flex: 0 0 99.99999996%; + flex: 0 0 99.99999996%; +} +.flex-grid .row .cell.size1 { + -webkit-flex: 0 0 8.33333333%; + flex: 0 0 8.33333333%; +} +.flex-grid .row .cell.size2 { + -webkit-flex: 0 0 16.66666666%; + flex: 0 0 16.66666666%; +} +.flex-grid .row .cell.size3 { + -webkit-flex: 0 0 24.99999999%; + flex: 0 0 24.99999999%; +} +.flex-grid .row .cell.size4 { + -webkit-flex: 0 0 33.33333332%; + flex: 0 0 33.33333332%; +} +.flex-grid .row .cell.size5 { + -webkit-flex: 0 0 41.66666665%; + flex: 0 0 41.66666665%; +} +.flex-grid .row .cell.size6 { + -webkit-flex: 0 0 49.99999998%; + flex: 0 0 49.99999998%; +} +.flex-grid .row .cell.size7 { + -webkit-flex: 0 0 58.33333331%; + flex: 0 0 58.33333331%; +} +.flex-grid .row .cell.size8 { + -webkit-flex: 0 0 66.66666664%; + flex: 0 0 66.66666664%; +} +.flex-grid .row .cell.size9 { + -webkit-flex: 0 0 74.99999997%; + flex: 0 0 74.99999997%; +} +.flex-grid .row .cell.size10 { + -webkit-flex: 0 0 83.3333333%; + flex: 0 0 83.3333333%; +} +.flex-grid .row .cell.size11 { + -webkit-flex: 0 0 91.66666663%; + flex: 0 0 91.66666663%; +} +.flex-grid .row .cell.size12 { + -webkit-flex: 0 0 99.99999996%; + flex: 0 0 99.99999996%; +} +.flex-grid .row .cell.size-p10 { + -webkit-flex: 0 0 10%; + flex: 0 0 10%; +} +.flex-grid .row .cell.size-p20 { + -webkit-flex: 0 0 20%; + flex: 0 0 20%; +} +.flex-grid .row .cell.size-p30 { + -webkit-flex: 0 0 30%; + flex: 0 0 30%; +} +.flex-grid .row .cell.size-p40 { + -webkit-flex: 0 0 40%; + flex: 0 0 40%; +} +.flex-grid .row .cell.size-p50 { + -webkit-flex: 0 0 50%; + flex: 0 0 50%; +} +.flex-grid .row .cell.size-p60 { + -webkit-flex: 0 0 60%; + flex: 0 0 60%; +} +.flex-grid .row .cell.size-p70 { + -webkit-flex: 0 0 70%; + flex: 0 0 70%; +} +.flex-grid .row .cell.size-p80 { + -webkit-flex: 0 0 80%; + flex: 0 0 80%; +} +.flex-grid .row .cell.size-p90 { + -webkit-flex: 0 0 90%; + flex: 0 0 90%; +} +.flex-grid .row .cell.size-p100 { + -webkit-flex: 0 0 100%; + flex: 0 0 100%; +} +.flex-grid .row .cell.size-x100 { + -webkit-flex: 0 0 100px; + flex: 0 0 100px; +} +.flex-grid .row .cell.size-x200 { + -webkit-flex: 0 0 200px; + flex: 0 0 200px; +} +.flex-grid .row .cell.size-x300 { + -webkit-flex: 0 0 300px; + flex: 0 0 300px; +} +.flex-grid .row .cell.size-x400 { + -webkit-flex: 0 0 400px; + flex: 0 0 400px; +} +.flex-grid .row .cell.size-x500 { + -webkit-flex: 0 0 500px; + flex: 0 0 500px; +} +.flex-grid .row .cell.size-x600 { + -webkit-flex: 0 0 600px; + flex: 0 0 600px; +} +.flex-grid .row .cell.size-x700 { + -webkit-flex: 0 0 700px; + flex: 0 0 700px; +} +.flex-grid .row .cell.size-x800 { + -webkit-flex: 0 0 800px; + flex: 0 0 800px; +} +.flex-grid .row .cell.size-x900 { + -webkit-flex: 0 0 900px; + flex: 0 0 900px; +} +.flex-grid .row .cell.size-x1000 { + -webkit-flex: 0 0 1000px; + flex: 0 0 1000px; +} +.flex-grid .row .cell.auto-size { + -webkit-flex: 1 auto; + flex: 1 auto; +} +.table { + width: 100%; + margin: .625rem 0; +} +.table th, +.table td { + padding: 0.625rem; +} +.table thead { + border-bottom: 4px solid #999999; +} +.table thead th, +.table thead td { + cursor: default; + color: #52677a; + border-color: transparent; + text-align: left; + font-style: normal; + font-weight: 700; + line-height: 100%; +} +.table tfoot { + border-top: 4px solid #999999; +} +.table tfoot th, +.table tfoot td { + cursor: default; + color: #52677a; + border-color: transparent; + text-align: left; + font-style: normal; + font-weight: 700; + line-height: 100%; +} +.table tbody td { + padding: 0.625rem 0.85rem; +} +.table .sortable-column { + position: relative; + cursor: pointer; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; +} +.table .sortable-column:after { + position: absolute; + content: ""; + width: 1rem; + height: 1rem; + left: 100%; + margin-left: -20px; + top: 50%; + margin-top: -0.5rem; + color: inherit; + font-size: 1rem; + line-height: 1; +} +.table .sortable-column.sort-asc, +.table .sortable-column.sort-desc { + background-color: #eeeeee; +} +.table .sortable-column.sort-asc:after, +.table .sortable-column.sort-desc:after { + color: #1d1d1d; +} +.table .sortable-column.sort-asc:after { + content: "\2191"; +} +.table .sortable-column.sort-desc:after { + content: "\2193"; +} +.table.sortable-markers-on-left .sortable-column { + padding-left: 30px; +} +.table.sortable-markers-on-left .sortable-column:before, +.table.sortable-markers-on-left .sortable-column:after { + left: 0; + margin-left: 10px; +} +.table tr.selected td { + background-color: rgba(28, 183, 236, 0.1); +} +.table td.selected { + background-color: rgba(28, 183, 236, 0.3); +} +.table.striped tbody tr:nth-child(odd) { + background: #eeeeee; +} +.table.hovered tbody tr:hover { + background-color: rgba(28, 183, 236, 0.1); +} +.table.cell-hovered tbody td:hover { + background-color: rgba(28, 183, 236, 0.3); +} +.table.border { + border: 1px #999999 solid; +} +.table.bordered th, +.table.bordered td { + border: 1px #999999 solid; +} +.table.bordered thead tr:first-child th, +.table.bordered thead tr:first-child td { + border-top: none; +} +.table.bordered thead tr:first-child th:first-child, +.table.bordered thead tr:first-child td:first-child { + border-left: none; +} +.table.bordered thead tr:first-child th:last-child, +.table.bordered thead tr:first-child td:last-child { + border-right: none; +} +.table.bordered tbody tr:first-child td { + border-top: none; +} +.table.bordered tbody tr td:first-child { + border-left: none; +} +.table.bordered tbody tr td:last-child { + border-right: none; +} +.table.bordered tbody tr:last-child td { + border-bottom: none; +} +.table .condensed th, +.table .condensed td { + padding: .3125rem; +} +.table .super-condensed th, +.table .super-condensed td { + padding: .125rem; +} +.table tbody tr.error { + background-color: #ce352c; + color: #ffffff; +} +.table tbody tr.error:hover { + background-color: #da5a53; +} +.table tbody tr.warning { + background-color: #fa6800; + color: #ffffff; +} +.table tbody tr.warning:hover { + background-color: #ffc194; +} +.table tbody tr.success { + background-color: #60a917; + color: #ffffff; +} +.table tbody tr.success:hover { + background-color: #7ad61d; +} +.table tbody tr.info { + background-color: #1ba1e2; + color: #ffffff; +} +.table tbody tr.info:hover { + background-color: #59cde2; +} +.app-bar { + display: block; + width: 100%; + position: relative; + background-color: #0072c6; + color: #ffffff; + height: 3.125rem; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; +} +.app-bar:before, +.app-bar:after { + display: table; + content: ""; +} +.app-bar:after { + clear: both; +} +.app-bar .app-bar-element { + line-height: 3.125rem; + padding: 0 .625rem; + font-size: 1rem; + cursor: pointer; + color: inherit; + display: block; + float: left; + position: relative; + vertical-align: middle; + height: 3.125rem; +} +.app-bar .app-bar-element:hover, +.app-bar .app-bar-element:active { + background-color: #005696; +} +.app-bar .app-bar-element.branding { + padding-left: 1rem; + padding-right: 1rem; +} +.app-bar .app-bar-element .d-menu { + top: 100%; + border: 2px solid #005696; +} +.app-bar .app-bar-element .d-menu li:not(.disabled):hover { + background-color: #eee; +} +.app-bar .app-bar-element .d-menu li:not(.disabled):hover > a { + color: #1d1d1d; +} +.app-bar .app-bar-element .d-menu .d-menu { + top: -0.625rem; + left: 100%; +} +.app-bar .app-bar-element .d-menu .dropdown-toggle:before { + border-color: #1d1d1d; +} +.app-bar .app-bar-divider { + display: block; + float: left; + line-height: 3.125rem; + height: 3.125rem; + width: 1px; + background-color: #4c9cd7; + padding: 0; +} +.app-bar .dropdown-toggle:before { + border-color: #ffffff; +} +.app-bar .app-bar-menu { + display: block; + float: left; + margin: 0; + padding: 0; +} +.app-bar .app-bar-menu > li, +.app-bar .app-bar-menu > li > a { + line-height: 3.125rem; + padding: 0 .625rem; + font-size: 1rem; + cursor: pointer; + color: inherit; + display: block; + float: left; + position: relative; + vertical-align: middle; + height: 3.125rem; +} +.app-bar .app-bar-menu > li:hover, +.app-bar .app-bar-menu > li > a:hover, +.app-bar .app-bar-menu > li:active, +.app-bar .app-bar-menu > li > a:active { + background-color: #005696; +} +.app-bar .app-bar-menu > li.branding, +.app-bar .app-bar-menu > li > a.branding { + padding-left: 1rem; + padding-right: 1rem; +} +.app-bar .app-bar-menu > li .d-menu, +.app-bar .app-bar-menu > li > a .d-menu { + top: 100%; + border: 2px solid #005696; +} +.app-bar .app-bar-menu > li .d-menu li:not(.disabled):hover, +.app-bar .app-bar-menu > li > a .d-menu li:not(.disabled):hover { + background-color: #eee; +} +.app-bar .app-bar-menu > li .d-menu li:not(.disabled):hover > a, +.app-bar .app-bar-menu > li > a .d-menu li:not(.disabled):hover > a { + color: #1d1d1d; +} +.app-bar .app-bar-menu > li .d-menu .d-menu, +.app-bar .app-bar-menu > li > a .d-menu .d-menu { + top: -0.625rem; + left: 100%; +} +.app-bar .app-bar-menu > li .d-menu .dropdown-toggle:before, +.app-bar .app-bar-menu > li > a .d-menu .dropdown-toggle:before { + border-color: #1d1d1d; +} +.app-bar .app-bar-menu > li:before, +.app-bar .app-bar-menu > li > a:before, +.app-bar .app-bar-menu > li:after, +.app-bar .app-bar-menu > li > a:after { + display: table; + content: ""; +} +.app-bar .app-bar-menu > li:after, +.app-bar .app-bar-menu > li > a:after { + clear: both; +} +.app-bar .app-bar-menu > li > .input-control.text, +.app-bar .app-bar-menu > li > a > .input-control.text, +.app-bar .app-bar-menu > li > .input-control.password, +.app-bar .app-bar-menu > li > a > .input-control.password { + margin-top: .55rem; + font-size: .875rem; + line-height: 1.8rem; + display: block; +} +.app-bar .app-bar-menu > li > .input-control.text input, +.app-bar .app-bar-menu > li > a > .input-control.text input, +.app-bar .app-bar-menu > li > .input-control.password input, +.app-bar .app-bar-menu > li > a > .input-control.password input { + border-color: transparent; +} +.app-bar .app-bar-menu > li > .button, +.app-bar .app-bar-menu > li > a > .button { + margin-top: -0.15rem; +} +.app-bar .app-bar-menu > li > .image-button, +.app-bar .app-bar-menu > li > a > .image-button { + margin: 0; + background-color: transparent; + color: #ffffff; + font-size: inherit; +} +.app-bar .app-bar-menu > li > .image-button img.icon, +.app-bar .app-bar-menu > li > a > .image-button img.icon { + padding: 0; +} +.app-bar .app-bar-menu > li .dropdown-toggle:before, +.app-bar .app-bar-menu > li > a .dropdown-toggle:before { + transition: all 0.3s ease; +} +.app-bar .app-bar-menu > li .dropdown-toggle.active-toggle:before, +.app-bar .app-bar-menu > li > a .dropdown-toggle.active-toggle:before { + -webkit-transform: rotate(135deg); + transform: rotate(135deg); + transition: all 0.3s ease; +} +.app-bar .app-bar-menu > li .d-menu .dropdown-toggle.active-toggle:before, +.app-bar .app-bar-menu > li > a .d-menu .dropdown-toggle.active-toggle:before { + -webkit-transform: rotate(45deg); + transform: rotate(45deg); +} +.app-bar .app-bar-menu > li.dropdown-toggle, +.app-bar .app-bar-menu > li > a.dropdown-toggle { + padding-right: 1.5rem; +} +.app-bar .app-bar-menu > li.dropdown-toggle:before, +.app-bar .app-bar-menu > li > a.dropdown-toggle:before { + border-color: #ffffff; + display: block; +} +.app-bar .app-bar-menu > li { + padding: 0; +} +.app-bar .app-bar-menu > li .d-menu { + top: 100%; + border: 2px solid #005696; +} +.app-bar .app-bar-menu > li .d-menu li:not(.disabled):hover { + background-color: #eee; +} +.app-bar .app-bar-menu > li .d-menu li:not(.disabled):hover > a { + color: #1d1d1d; +} +.app-bar .app-bar-menu > li .d-menu .d-menu { + top: -0.625rem; + left: 100%; +} +.app-bar .app-bar-menu > li .d-menu .dropdown-toggle:before { + border-color: #1d1d1d; +} +.app-bar .app-bar-menu.small-dropdown .d-menu li > a { + font-size: .8em; + padding: .325rem 1.2rem .325rem 1.8rem; +} +.app-bar .app-bar-pullbutton { + float: right; +} +.app-bar .app-bar-pullbutton.automatic { + display: none; + float: right; + color: #fff; + cursor: pointer; + font: 2rem sans-serif; + height: 3.125rem; + width: 3.125rem; + line-height: 1.25rem; + vertical-align: middle; + text-align: center; + margin: 0; +} +.app-bar .app-bar-pullbutton.automatic:before { + content: "\2261"; + position: absolute; + top: .875rem; + left: .875rem; +} +.app-bar .app-bar-drop-container { + position: absolute; + top: 100%; + left: 0; + margin-top: 10px; + border: 2px solid #005696; + background: #ffffff; +} +.app-bar .app-bar-drop-container:before { + content: ''; + position: absolute; + background-color: #ffffff; + width: 10px; + height: 10px; + border: 2px #005696 solid; + top: 1px; + left: 1rem; + margin: -8px 0; + border-bottom: none; + border-right: none; + -webkit-transform: rotate(45deg); + transform: rotate(45deg); +} +.app-bar .app-bar-drop-container:before { + z-index: 0; +} +.app-bar .app-bar-drop-container.place-right { + right: 0; + left: auto; +} +.app-bar .app-bar-drop-container.place-right:before { + left: auto; + right: 1rem; +} +.app-bar .app-bar-element:before, +.app-bar .app-bar-element:after { + display: table; + content: ""; +} +.app-bar .app-bar-element:after { + clear: both; +} +.app-bar .app-bar-element > .input-control.text, +.app-bar .app-bar-element > .input-control.password { + margin-top: .55rem; + font-size: .875rem; + line-height: 1.8rem; + display: block; +} +.app-bar .app-bar-element > .input-control.text input, +.app-bar .app-bar-element > .input-control.password input { + border-color: transparent; +} +.app-bar .app-bar-element > .button { + margin-top: -0.15rem; +} +.app-bar .app-bar-element > .image-button { + margin: 0; + background-color: transparent; + color: #ffffff; + font-size: inherit; +} +.app-bar .app-bar-element > .image-button img.icon { + padding: 0; +} +.app-bar.drop-up .app-bar-drop-container { + top: auto; + bottom: 3.75rem; +} +.app-bar.drop-up .app-bar-drop-container:before { + top: auto; + bottom: 1px; + -webkit-transform: rotate(225deg); + transform: rotate(225deg); +} +.app-bar.drop-up .app-bar-menu > li > .d-menu { + top: auto; + bottom: 3.125rem; +} +.app-bar.drop-up .app-bar-element > .d-menu { + top: auto; + bottom: 3.125rem; +} +.app-bar.drop-up .app-bar-menu li .d-menu .d-menu, +.app-bar.drop-up .app-bar-element .d-menu .d-menu { + top: auto ; + bottom: 0; +} +.app-bar .app-bar-element .dropdown-toggle:before, +.app-bar .app-bar-menu .dropdown-toggle:before { + transition: all 0.3s ease; +} +.app-bar .app-bar-element .dropdown-toggle.active-toggle:before, +.app-bar .app-bar-menu .dropdown-toggle.active-toggle:before { + -webkit-transform: rotate(135deg); + transform: rotate(135deg); + transition: all 0.3s ease; +} +.app-bar .app-bar-element .d-menu .dropdown-toggle.active-toggle:before, +.app-bar .app-bar-menu .d-menu .dropdown-toggle.active-toggle:before { + -webkit-transform: rotate(45deg); + transform: rotate(45deg); +} +.app-bar.fixed-top, +.app-bar.fixed-bottom { + z-index: 1030; + position: fixed; +} +.app-bar.fixed-top { + top: 0; +} +.app-bar.fixed-bottom { + bottom: 0; +} +.app-bar { + overflow: visible; + height: auto; +} +.app-bar .app-bar-pullbutton { + line-height: 3.125rem; + padding: 0 .625rem; + font-size: 1rem; + cursor: pointer; + color: inherit; + display: block; + float: left; + position: relative; + vertical-align: middle; + height: 3.125rem; + float: right; +} +.app-bar .app-bar-pullbutton:hover, +.app-bar .app-bar-pullbutton:active { + background-color: #005696; +} +.app-bar .app-bar-pullbutton.branding { + padding-left: 1rem; + padding-right: 1rem; +} +.app-bar .app-bar-pullbutton .d-menu { + top: 100%; + border: 2px solid #005696; +} +.app-bar .app-bar-pullbutton .d-menu li:not(.disabled):hover { + background-color: #eee; +} +.app-bar .app-bar-pullbutton .d-menu li:not(.disabled):hover > a { + color: #1d1d1d; +} +.app-bar .app-bar-pullbutton .d-menu .d-menu { + top: -0.625rem; + left: 100%; +} +.app-bar .app-bar-pullbutton .d-menu .dropdown-toggle:before { + border-color: #1d1d1d; +} +.app-bar .app-bar-pullbutton:before, +.app-bar .app-bar-pullbutton:after { + display: table; + content: ""; +} +.app-bar .app-bar-pullbutton:after { + clear: both; +} +.app-bar .app-bar-pullbutton > .input-control.text, +.app-bar .app-bar-pullbutton > .input-control.password { + margin-top: .55rem; + font-size: .875rem; + line-height: 1.8rem; + display: block; +} +.app-bar .app-bar-pullbutton > .input-control.text input, +.app-bar .app-bar-pullbutton > .input-control.password input { + border-color: transparent; +} +.app-bar .app-bar-pullbutton > .button { + margin-top: -0.15rem; +} +.app-bar .app-bar-pullbutton > .image-button { + margin: 0; + background-color: transparent; + color: #ffffff; + font-size: inherit; +} +.app-bar .app-bar-pullbutton > .image-button img.icon { + padding: 0; +} +.app-bar .app-bar-pullbutton .dropdown-toggle:before { + transition: all 0.3s ease; +} +.app-bar .app-bar-pullbutton .dropdown-toggle.active-toggle:before { + -webkit-transform: rotate(135deg); + transform: rotate(135deg); + transition: all 0.3s ease; +} +.app-bar .app-bar-pullbutton .d-menu .dropdown-toggle.active-toggle:before { + -webkit-transform: rotate(45deg); + transform: rotate(45deg); +} +.app-bar .app-bar-pullbutton { + display: none; +} +.app-bar .app-bar-pullmenu { + display: none; +} +.app-bar .app-bar-pullmenu.flexstyle-sidebar2 { + position: absolute; + right: 0; + z-index: 1000; +} +.app-bar .app-bar-pullmenu.flexstyle-sidebar2 .app-bar-pullmenubar { + float: right; +} +.app-bar .app-bar-pullmenu.flexstyle-sidebar2 .dropdown-toggle:before { + border-color: #323232; +} +.app-bar .app-bar-pullmenu.flexstyle-sidebar2 .sidebar2 li:hover { + background-color: #0072c6; +} +.app-bar .app-bar-pullmenu.flexstyle-sidebar2 .sidebar2 li .input-control { + text-align: center; + display: block; + margin: 0.325rem; +} +.app-bar .app-bar-pullmenu.flexstyle-sidebar2 .sidebar2 li:hover a { + background-color: #0072c6; +} +.app-bar .app-bar-pullmenu.flexstyle-sidebar2 .sidebar2 li li:not(:hover) { + color: #1d1d1d; +} +.app-bar .app-bar-pullmenu.flexstyle-sidebar2 .sidebar2 li li:not(:hover) a { + background-color: #ffffff; +} +.app-bar .app-bar-pullmenu .app-bar-menu { + width: 100%; + border-top: 1px solid #4c9cd7; + position: relative; + float: none; + display: none; + z-index: 1000 1; + background-color: #005696; + clear: both; +} +.app-bar .app-bar-pullmenu .app-bar-menu > li, +.app-bar .app-bar-pullmenu .app-bar-menu > li > a { + float: none; +} +.app-bar .app-bar-pullmenu .app-bar-menu > li { + height: auto; +} +.app-bar .app-bar-pullmenu .app-bar-menu li:hover { + background-color: #0072c6; +} +.app-bar .app-bar-pullmenu .app-bar-menu li:hover a { + background-color: #0072c6; + color: #ffffff; +} +.app-bar .app-bar-pullmenu .app-bar-menu .d-menu { + border: 0; + border-top: 1px solid #4c9cd7; + clear: both; + float: none; + width: 100%; + position: relative; + left: 0; + box-shadow: none; + max-width: 100%; + background-color: #005696; +} +.app-bar .app-bar-pullmenu .app-bar-menu .d-menu li { + width: 100%; + background-color: inherit; +} +.app-bar .app-bar-pullmenu .app-bar-menu .d-menu li a { + padding-left: 20px; + padding-right: 0; + background-color: inherit; + width: 100%; + color: #ffffff; +} +.app-bar .app-bar-pullmenu .app-bar-menu .d-menu .dropdown-toggle:before { + border-color: #ffffff; + -webkit-transform: rotate(-45deg); + transform: rotate(-45deg); +} +.app-bar .app-bar-pullmenu .app-bar-menu .d-menu .divider { + background-color: #4c9cd7; +} +.app-bar .app-bar-pullmenu .app-bar-menu .d-menu .d-menu { + top: 0; + left: 0; +} +.app-bar > .container { + padding: 0 !important; +} +.h-menu li:hover > .dropdown-toggle:before, +.v-menu li:hover > .dropdown-toggle:before, +.d-menu li:hover > .dropdown-toggle:before, +.m-menu li:hover > .dropdown-toggle:before { + border-color: #ffffff; +} +.h-menu { + text-align: left; + display: block; + height: auto; + list-style: none inside none; + margin: 0; + padding: 0; + background-color: #ffffff; + border-collapse: separate; +} +.h-menu:before, +.h-menu:after { + display: table; + content: ""; +} +.h-menu:after { + clear: both; +} +.h-menu > li { + display: block; + float: left; + position: relative; +} +.h-menu > li:hover { + background-color: #59cde2; + color: #ffffff; +} +.h-menu > li:hover > a { + color: #ffffff; +} +.h-menu > li.no-hovered { + background-color: inherit; + color: inherit; +} +.h-menu > li:first-child { + margin-left: 0; +} +.h-menu > li > a { + display: block; + float: left; + position: relative; + font-weight: normal; + color: #727272; + font-size: .875rem; + outline: none; + text-decoration: none; + padding: 1.125rem 1.625rem; + border: none; +} +.h-menu > li > a:hover { + background-color: #59cde2; + color: #ffffff; +} +.h-menu > li .input-control, +.h-menu > li .button { + margin-top: 10px; +} +.h-menu > li.active a { + background-color: #59cde2; + color: #ffffff; +} +.h-menu > li > .d-menu { + left: 0; + top: 100%; +} +.h-menu .dropdown-toggle:before { + transition: all 0.3s ease; +} +.h-menu .dropdown-toggle.active-toggle:before { + -webkit-transform: rotate(135deg); + transform: rotate(135deg); + transition: all 0.3s ease; +} +.f-menu { + text-align: left; + display: block; + height: auto; + list-style: none inside none; + margin: 0; + padding: 0; + background-color: #ffffff; + border-collapse: separate; + display: -webkit-flex; + display: flex; +} +.f-menu li:hover > .dropdown-toggle:before { + border-color: #ffffff; +} +.f-menu:before, +.f-menu:after { + display: table; + content: ""; +} +.f-menu:after { + clear: both; +} +.f-menu > li { + display: block; + float: left; + position: relative; +} +.f-menu > li:hover { + background-color: #59cde2; + color: #ffffff; +} +.f-menu > li:hover > a { + color: #ffffff; +} +.f-menu > li.no-hovered { + background-color: inherit; + color: inherit; +} +.f-menu > li:first-child { + margin-left: 0; +} +.f-menu > li > a { + display: block; + float: left; + position: relative; + font-weight: normal; + color: #727272; + font-size: .875rem; + outline: none; + text-decoration: none; + padding: 1.125rem 1.625rem; + border: none; +} +.f-menu > li > a:hover { + background-color: #59cde2; + color: #ffffff; +} +.f-menu > li .input-control, +.f-menu > li .button { + margin-top: 10px; +} +.f-menu > li.active a { + background-color: #59cde2; + color: #ffffff; +} +.f-menu > li > .d-menu { + left: 0; + top: 100%; +} +.f-menu .dropdown-toggle:before { + transition: all 0.3s ease; +} +.f-menu .dropdown-toggle.active-toggle:before { + -webkit-transform: rotate(135deg); + transform: rotate(135deg); + transition: all 0.3s ease; +} +.f-menu > li > .d-menu { + left: auto; +} +.f-menu > li { + text-align: center; + -webkit-flex: 1 auto; + flex: 1 auto; +} +.f-menu > li a { + text-align: center; + width: 100%; +} +.f-menu > li .d-menu { + width: 100%; + max-width: none; +} +.f-menu > li .d-menu li { + width: 100%; +} +.f-menu > li .d-menu li a { + width: 100%; + min-width: 0; + padding: .75rem 0; +} +.f-menu .d-menu .dropdown-toggle.active-toggle:before { + -webkit-transform: rotate(45deg); + transform: rotate(45deg); +} +.f-menu.default-dropdown > li .d-menu { + width: auto; + min-width: 12.5rem; +} +.f-menu.default-dropdown > li .d-menu a { + text-align: left; + padding: .75rem 2rem .75rem 2.5rem; +} +.v-menu { + text-align: left; + background: #ffffff; + max-width: 15.625rem; + list-style: none inside none; + margin: 0; + padding: 0; + position: relative; + width: auto; + float: left; +} +.v-menu li { + display: block; + float: none; + position: relative; +} +.v-menu li:before, +.v-menu li:after { + display: table; + content: ""; +} +.v-menu li:after { + clear: both; +} +.v-menu li a { + color: #727272; + font-size: .875rem; + display: block; + float: none; + padding: .75rem 2rem .75rem 2.5rem; + text-decoration: none; + vertical-align: middle; + position: relative; + white-space: nowrap; + min-width: 12.5rem; + border: none; +} +.v-menu li a img, +.v-menu li a .icon { + position: absolute; + left: .875rem; + top: 50%; + margin-top: -0.5625rem; + color: #262626; + max-height: 1.125rem; + font-size: 1.125rem; + display: inline-block; + margin-right: .3125rem; + vertical-align: middle; + text-align: center; +} +.v-menu li.active { + border-left: 2px solid; + border-color: #1ba1e2; +} +.v-menu li.active > a { + background-color: #59cde2; + color: #ffffff; + font-weight: bold; +} +.v-menu li:hover { + text-decoration: none; + background: #59cde2; +} +.v-menu li:hover > a, +.v-menu li:hover .icon { + color: #ffffff; +} +.v-menu li a[data-hotkey] { + padding-right: 3.2rem; +} +.v-menu li a[data-hotkey]:after { + content: attr(data-hotkey); + position: absolute; + right: 1.2rem; + width: auto; + font-size: .8em; +} +.v-menu .divider { + padding: 0; + height: 1px; + margin: 0 1px; + overflow: hidden; + background-color: #f2f2f2; +} +.v-menu .divider:hover { + background-color: #f2f2f2; +} +.v-menu.subdown .d-menu { + min-width: 0; + position: relative; + width: 100%; + left: 0 ; + right: 0 ; + top: 100%; + box-shadow: none; +} +.v-menu .item-block { + display: block; + padding: .625rem; + background-color: #eeeeee; +} +.v-menu .d-menu { + left: 100%; + top: -10%; +} +.v-menu .menu-title { + background-color: #f6f7f8; + font-size: 12px; + line-height: 14px; + padding: 4px 8px; + border: 0; + color: #646464; +} +.v-menu .menu-title:first-child { + margin: 0; + border-top-width: 0; +} +.v-menu .menu-title:first-child:hover { + border-top-width: 0; +} +.v-menu .menu-title:hover { + background-color: #f6f7f8; + cursor: default; + border: 0; +} +.v-menu .dropdown-toggle:before { + -webkit-transform: rotate(-135deg); + transform: rotate(-135deg); + margin-top: -2px; +} +.v-menu .dropdown-toggle:before { + transition: all 0.3s ease; +} +.v-menu .dropdown-toggle.active-toggle:before { + -webkit-transform: rotate(45deg); + transform: rotate(45deg); + transition: all 0.3s ease; +} +.v-menu.subdown .dropdown-toggle:before { + -webkit-transform: rotate(-45deg); + transform: rotate(-45deg); + margin-left: -1.25rem; +} +.v-menu.subdown .dropdown-toggle.active-toggle:before { + -webkit-transform: rotate(135deg); + transform: rotate(135deg); +} +.v-menu li.disabled a { + color: #eeeeee; +} +.v-menu li.disabled:hover { + background-color: inherit; + cursor: default; + border: 0; +} +.v-menu li.disabled:hover a { + cursor: inherit; +} +.d-menu { + text-align: left; + background: #ffffff; + max-width: 15.625rem; + list-style: none inside none; + margin: 0; + padding: 0; + position: relative; + width: auto; + float: left; + border-collapse: separate; + position: absolute; + display: none; + z-index: 1000; + left: 0; + box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2); +} +.d-menu li:hover > .dropdown-toggle:before { + border-color: #ffffff; +} +.d-menu li { + display: block; + float: none; + position: relative; +} +.d-menu li:before, +.d-menu li:after { + display: table; + content: ""; +} +.d-menu li:after { + clear: both; +} +.d-menu li a { + color: #727272; + font-size: .875rem; + display: block; + float: none; + padding: .75rem 2rem .75rem 2.5rem; + text-decoration: none; + vertical-align: middle; + position: relative; + white-space: nowrap; + min-width: 12.5rem; + border: none; +} +.d-menu li a img, +.d-menu li a .icon { + position: absolute; + left: .875rem; + top: 50%; + margin-top: -0.5625rem; + color: #262626; + max-height: 1.125rem; + font-size: 1.125rem; + display: inline-block; + margin-right: .3125rem; + vertical-align: middle; + text-align: center; +} +.d-menu li.active { + border-left: 2px solid; + border-color: #1ba1e2; +} +.d-menu li.active > a { + background-color: #59cde2; + color: #ffffff; + font-weight: bold; +} +.d-menu li:hover { + text-decoration: none; + background: #59cde2; +} +.d-menu li:hover > a, +.d-menu li:hover .icon { + color: #ffffff; +} +.d-menu li a[data-hotkey] { + padding-right: 3.2rem; +} +.d-menu li a[data-hotkey]:after { + content: attr(data-hotkey); + position: absolute; + right: 1.2rem; + width: auto; + font-size: .8em; +} +.d-menu .divider { + padding: 0; + height: 1px; + margin: 0 1px; + overflow: hidden; + background-color: #f2f2f2; +} +.d-menu .divider:hover { + background-color: #f2f2f2; +} +.d-menu.subdown .d-menu { + min-width: 0; + position: relative; + width: 100%; + left: 0 ; + right: 0 ; + top: 100%; + box-shadow: none; +} +.d-menu .item-block { + display: block; + padding: .625rem; + background-color: #eeeeee; +} +.d-menu .d-menu { + left: 100%; + top: -10%; +} +.d-menu .menu-title { + background-color: #f6f7f8; + font-size: 12px; + line-height: 14px; + padding: 4px 8px; + border: 0; + color: #646464; +} +.d-menu .menu-title:first-child { + margin: 0; + border-top-width: 0; +} +.d-menu .menu-title:first-child:hover { + border-top-width: 0; +} +.d-menu .menu-title:hover { + background-color: #f6f7f8; + cursor: default; + border: 0; +} +.d-menu .dropdown-toggle:before { + -webkit-transform: rotate(-135deg); + transform: rotate(-135deg); + margin-top: -2px; +} +.d-menu .dropdown-toggle:before { + transition: all 0.3s ease; +} +.d-menu .dropdown-toggle.active-toggle:before { + -webkit-transform: rotate(45deg); + transform: rotate(45deg); + transition: all 0.3s ease; +} +.d-menu.subdown .dropdown-toggle:before { + -webkit-transform: rotate(-45deg); + transform: rotate(-45deg); + margin-left: -1.25rem; +} +.d-menu.subdown .dropdown-toggle.active-toggle:before { + -webkit-transform: rotate(135deg); + transform: rotate(135deg); +} +.d-menu li.disabled a { + color: #eeeeee; +} +.d-menu li.disabled:hover { + background-color: inherit; + cursor: default; + border: 0; +} +.d-menu li.disabled:hover a { + cursor: inherit; +} +.d-menu.context li a { + font-size: .75rem; + padding: .3125rem 2rem .3125rem 2.5rem; +} +.d-menu.context li a .icon { + margin-top: -0.4375rem; + font-size: .825rem; + color: inherit; +} +.d-menu.no-min-size li a { + min-width: 0; +} +.d-menu.full-size li a { + min-width: 0; + width: 100%; +} +.d-menu .d-menu { + left: 100%; + top: -10%; +} +.d-menu.open { + display: block ; +} +.d-menu.drop-left { + left: -100%; +} +.d-menu.drop-up { + top: auto; + bottom: 0; +} +.d-menu.context li a { + font-size: .75rem; + padding: .3125rem 2rem .3125rem 2.5rem; +} +.d-menu.context li a .icon { + margin-top: -0.4375rem; +} +.d-menu.place-right { + left: auto ; + right: 0; + width: auto; +} +.h-menu, +.v-menu, +.d-menu { + border-collapse: separate; +} +.m-menu { + border-collapse: separate; + text-align: left; + display: block; + height: auto ; + position: relative; + background-color: #ffffff; + color: #1d1d1d; + box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2); + list-style: none inside none; + margin: 0; + padding: 0; +} +.m-menu:before, +.m-menu:after { + display: table; + content: ""; +} +.m-menu:after { + clear: both; +} +.m-menu > li, +.m-menu .m-menu-item { + display: block; + float: left; + background-color: #ffffff; +} +.m-menu > li:hover, +.m-menu .m-menu-item:hover { + background-color: #59cde2; +} +.m-menu > li:hover > a, +.m-menu .m-menu-item:hover > a { + color: #ffffff; +} +.m-menu > li.no-hovered, +.m-menu .m-menu-item.no-hovered { + background-color: inherit; + color: inherit; +} +.m-menu > li:first-child, +.m-menu .m-menu-item:first-child { + margin-left: 0; +} +.m-menu > li > a, +.m-menu .m-menu-item > a { + display: block; + float: left; + position: relative; + font-weight: normal; + color: inherit; + font-size: .875rem; + outline: none; + text-decoration: none; + padding: 1rem 1.625rem; + border: none; +} +.m-menu > li > a:hover, +.m-menu .m-menu-item > a:hover { + background-color: inherit; +} +.m-menu > li > a.dropdown-toggle, +.m-menu .m-menu-item > a.dropdown-toggle { + padding: 1rem 1.625rem 1rem 1.125rem; +} +.m-menu > li.active-container, +.m-menu .m-menu-item.active-container { + background-color: #59cde2; +} +.m-menu > li.active-container a, +.m-menu .m-menu-item.active-container a { + color: #ffffff; +} +.m-menu > li.active-container a.dropdown-toggle:before, +.m-menu .m-menu-item.active-container a.dropdown-toggle:before { + border-color: #ffffff; +} +.m-menu > li .d-menu, +.m-menu .m-menu-item .d-menu { + left: 0; + top: 100%; +} +.m-menu .m-menu-container { + position: absolute; + left: 0; + right: 0; + top: 100%; + padding: .3125rem; + font-size: .75rem; + z-index: 1000; + background-color: inherit; +} +.m-menu .m-menu-container li, +.m-menu .m-menu-container a { + color: #ffffff; +} +.m-menu .m-menu-container a { + text-decoration: underline; +} +.m-menu .m-menu-container li:hover > a, +.m-menu .m-menu-container li.active > a { + text-decoration: none; +} +.m-menu .m-menu-container { + display: none; +} +.m-menu .m-menu-container.open { + display: block; +} +.m-menu > li .dropdown-toggle:before { + transition: all 0.3s ease; +} +.m-menu > li .dropdown-toggle.active-toggle:before { + -webkit-transform: rotate(135deg); + transform: rotate(135deg); + transition: all 0.3s ease; +} +.v-menu.context li a, +.d-menu.context li a { + font-size: .75rem; + padding: .3125rem 2rem .3125rem 2.5rem; +} +.v-menu.context li a .icon, +.d-menu.context li a .icon { + margin-top: -0.4375rem; + font-size: .825rem; + color: inherit; +} +.v-menu.no-min-size li a, +.d-menu.no-min-size li a { + min-width: 0; +} +.v-menu.full-size li a, +.d-menu.full-size li a { + min-width: 0; + width: 100%; +} +.horizontal-menu { + display: block; + width: 100%; + color: #1d1d1d; + position: relative; + padding: 0; + margin: 0; + list-style: none inside none; +} +.horizontal-menu:before, +.horizontal-menu:after { + display: table; + content: ""; +} +.horizontal-menu:after { + clear: both; +} +.horizontal-menu > li { + display: block; + float: left; + color: inherit; + background-color: inherit; + position: relative; +} +.horizontal-menu > li > a { + position: relative; + display: block; + float: left; + font-size: 1.4rem; + color: inherit; + background-color: inherit; + padding: .625rem 1.625rem; + line-height: 1.4rem; +} +.horizontal-menu > li > .d-menu { + left: 0; + top: 100%; +} +.horizontal-menu.compact > li > a { + font-size: .9rem; + line-height: .9rem; +} +.horizontal-menu .dropdown-toggle:before { + transition: all 0.3s ease; +} +.horizontal-menu .dropdown-toggle.active-toggle:before { + -webkit-transform: rotate(135deg); + transform: rotate(135deg); + transition: all 0.3s ease; +} +.horizontal-menu .d-menu .dropdown-toggle.active-toggle:before { + -webkit-transform: rotate(45deg); + transform: rotate(45deg); +} +.vertical-menu { + display: block; + width: 100%; + color: #1d1d1d; + padding: 0; + margin: 0; + list-style: none inside none; + position: relative; + width: auto; + float: left; +} +.vertical-menu:before, +.vertical-menu:after { + display: table; + content: ""; +} +.vertical-menu:after { + clear: both; +} +.vertical-menu > li { + display: block; + float: left; + color: inherit; + background-color: inherit; + position: relative; +} +.vertical-menu > li > a { + position: relative; + display: block; + float: left; + font-size: 1.4rem; + color: inherit; + background-color: inherit; + padding: .625rem 1.625rem; + line-height: 1.4rem; +} +.vertical-menu > li > .d-menu { + left: 0; + top: 100%; +} +.vertical-menu.compact > li > a { + font-size: .9rem; + line-height: .9rem; +} +.vertical-menu .dropdown-toggle:before { + transition: all 0.3s ease; +} +.vertical-menu .dropdown-toggle.active-toggle:before { + -webkit-transform: rotate(135deg); + transform: rotate(135deg); + transition: all 0.3s ease; +} +.vertical-menu .d-menu .dropdown-toggle.active-toggle:before { + -webkit-transform: rotate(45deg); + transform: rotate(45deg); +} +.vertical-menu > li > .d-menu { + left: auto; +} +.vertical-menu > li { + float: none; +} +.vertical-menu > li > a { + float: none; +} +.vertical-menu > li > .d-menu { + left: 100%; + top: 0; +} +.vertical-menu.compact > li > a { + padding-top: .325rem; + padding-bottom: .325rem; +} +.vertical-menu .dropdown-toggle:before { + margin-top: -2px; + -webkit-transform: rotate(-135deg); + transform: rotate(-135deg); +} +.vertical-menu .dropdown-toggle:before { + transition: all 0.3s ease; +} +.vertical-menu .dropdown-toggle.active-toggle:before { + -webkit-transform: rotate(45deg); + transform: rotate(45deg); + transition: all 0.3s ease; +} +.t-menu { + list-style: none inside none; + margin: 0; + padding: 0; + position: relative; + width: auto; + float: left; + background-color: #ffffff; + border-collapse: separate; + box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2); +} +.t-menu > li { + position: relative; +} +.t-menu > li > a { + display: block; + padding: 1rem 1.2rem; + border-bottom: 1px #eeeeee solid; + position: relative; +} +.t-menu > li > a .icon { + width: 1.5rem; + height: 1.5rem; + font-size: 1.5rem; +} +.t-menu > li:hover > a { + background-color: #1ba1e2; + color: #ffffff; +} +.t-menu > li:last-child a { + border-bottom: 0; +} +.t-menu.compact > li > a { + padding: .5rem .7rem; +} +.t-menu.compact > li > a .icon { + width: 1rem; + height: 1rem; + font-size: 1rem; +} +.t-menu li .t-menu { + position: absolute; + left: 100%; + margin-left: .3125rem ; + top: 0; + float: none; +} +.t-menu li .t-menu > li { + float: left; + display: block; +} +.t-menu li .t-menu > li > a { + float: left; + display: block; +} +.t-menu .t-menu.horizontal .t-menu { + left: 0 ; + top: 100% ; + margin-top: .3125rem ; + margin-left: 0 ; +} +.t-menu .dropdown-toggle:after { + content: ""; + background-color: transparent; + position: absolute; + left: auto; + top: auto; + bottom: 0; + right: 0; + width: 0; + height: 0; + border-style: solid; + border-width: 0 0 8px 8px; + border-color: transparent transparent #1ba1e2 transparent; + -webkit-transform: rotate(0); + transform: rotate(0); +} +.t-menu .dropdown-toggle:before { + display: none; +} +.t-menu > li:hover > .dropdown-toggle:after { + border-color: transparent transparent #1b6eae transparent; +} +.t-menu.horizontal { + list-style: none inside none; + margin: 0; + padding: 0; + position: relative; + width: auto; + float: left; + background-color: #ffffff; + border-collapse: separate; + box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2); +} +.t-menu.horizontal > li { + position: relative; +} +.t-menu.horizontal > li > a { + display: block; + padding: 1rem 1.2rem; + border-bottom: 1px #eeeeee solid; + position: relative; +} +.t-menu.horizontal > li > a .icon { + width: 1.5rem; + height: 1.5rem; + font-size: 1.5rem; +} +.t-menu.horizontal > li:hover > a { + background-color: #1ba1e2; + color: #ffffff; +} +.t-menu.horizontal > li:last-child a { + border-bottom: 0; +} +.t-menu.horizontal.compact > li > a { + padding: .5rem .7rem; +} +.t-menu.horizontal.compact > li > a .icon { + width: 1rem; + height: 1rem; + font-size: 1rem; +} +.t-menu.horizontal li .t-menu { + position: absolute; + left: 100%; + margin-left: .3125rem ; + top: 0; + float: none; +} +.t-menu.horizontal li .t-menu > li { + float: left; + display: block; +} +.t-menu.horizontal li .t-menu > li > a { + float: left; + display: block; +} +.t-menu.horizontal .t-menu.horizontal .t-menu { + left: 0 ; + top: 100% ; + margin-top: .3125rem ; + margin-left: 0 ; +} +.t-menu.horizontal .dropdown-toggle:after { + content: ""; + background-color: transparent; + position: absolute; + left: auto; + top: auto; + bottom: 0; + right: 0; + width: 0; + height: 0; + border-style: solid; + border-width: 0 0 8px 8px; + border-color: transparent transparent #1ba1e2 transparent; + -webkit-transform: rotate(0); + transform: rotate(0); +} +.t-menu.horizontal .dropdown-toggle:before { + display: none; +} +.t-menu.horizontal > li:hover > .dropdown-toggle:after { + border-color: transparent transparent #1b6eae transparent; +} +.t-menu.horizontal > li { + display: block; + float: left; +} +.t-menu.horizontal > li > a { + display: block; + float: left; + border-right: 1px #eeeeee solid; + border-bottom: 0; +} +.t-menu.horizontal > li:last-child > a { + border-right: 0; +} +.t-menu.horizontal .t-menu:not(.horizontal) { + left: 0; + top: 100% ; + margin-top: .3125rem ; + margin-left: 0 ; +} +.t-menu.horizontal .t-menu:not(.horizontal) .t-menu.horizontal { + left: 100% ; + margin-left: .3125rem ; + top: 0 ; + float: left; +} +.horizontal-menu > li > .d-menu, +.h-menu > li > .d-menu, +.m-menu > li > .d-menu { + left: auto; +} +[data-role="dropdown"]:not(.open), +[data-role="dropdown"]:not(.keep-open) { + display: none; + position: absolute; + z-index: 1000; +} +.button { + padding: 0 1rem; + height: 2.125rem; + text-align: center; + vertical-align: middle; + background-color: #ffffff; + border: 1px #d9d9d9 solid; + color: #262626; + cursor: pointer; + display: inline-block; + outline: none; + font-size: .875rem; + line-height: 100%; + margin: .15625rem 0; + position: relative; +} +.button.default { + background-color: #008287; + color: #fff; +} +.button:hover { + border-color: #787878; +} +.button:active { + background: #eeeeee; + color: #262626; + box-shadow: none; +} +.button:focus { + outline: 0; +} +.button:disabled, +.button.disabled { + background-color: #eaeaea; + color: #bebebe; + cursor: default; + border-color: transparent; +} +.button * { + color: inherit; +} +.button *:hover { + color: inherit; +} +.button.rounded { + border-radius: .325rem; +} +.button > [class*=mif-] { + vertical-align: middle; +} +.button.button-shadow { + box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.3); +} +.button img { + height: .875rem; + vertical-align: middle; + margin: 0; +} +.round-button, +.cycle-button, +.square-button { + padding: 0 1rem; + height: 2.125rem; + background-color: #ffffff; + border: 1px #d9d9d9 solid; + color: #262626; + cursor: pointer; + display: inline-block; + outline: none; + font-size: .875rem; + line-height: 100%; + margin: .15625rem 0; + position: relative; + width: 2.125rem; + min-width: 2.125rem; + padding: 0 ; + border-radius: 50%; + text-align: center; + text-decoration: none; + vertical-align: middle; +} +.round-button.default, +.cycle-button.default, +.square-button.default { + background-color: #008287; + color: #fff; +} +.round-button:hover, +.cycle-button:hover, +.square-button:hover { + border-color: #787878; +} +.round-button:active, +.cycle-button:active, +.square-button:active { + background: #eeeeee; + color: #262626; + box-shadow: none; +} +.round-button:focus, +.cycle-button:focus, +.square-button:focus { + outline: 0; +} +.round-button:disabled, +.cycle-button:disabled, +.square-button:disabled, +.round-button.disabled, +.cycle-button.disabled, +.square-button.disabled { + background-color: #eaeaea; + color: #bebebe; + cursor: default; + border-color: transparent; +} +.round-button *, +.cycle-button *, +.square-button * { + color: inherit; +} +.round-button *:hover, +.cycle-button *:hover, +.square-button *:hover { + color: inherit; +} +.round-button.rounded, +.cycle-button.rounded, +.square-button.rounded { + border-radius: .325rem; +} +.round-button > [class*=mif-], +.cycle-button > [class*=mif-], +.square-button > [class*=mif-] { + vertical-align: middle; +} +.round-button img, +.cycle-button img, +.square-button img { + height: .875rem; + vertical-align: middle; + margin: 0; +} +.round-button.loading-pulse, +.cycle-button.loading-pulse, +.square-button.loading-pulse { + position: relative; + padding: 0 1.325rem; +} +.round-button.loading-pulse:before, +.cycle-button.loading-pulse:before, +.square-button.loading-pulse:before { + position: absolute; + content: ""; + left: 0; + top: 50%; + margin-top: -10px; + width: 20px; + height: 20px; + background-color: #333; + border-radius: 100%; + -webkit-animation: scaleout 1s infinite ease-in-out; + animation: scaleout 1s infinite ease-in-out; +} +.round-button.loading-pulse.lighten:before, +.cycle-button.loading-pulse.lighten:before, +.square-button.loading-pulse.lighten:before { + background-color: #fff; +} +.round-button.loading-cube, +.cycle-button.loading-cube, +.square-button.loading-cube { + position: relative; + padding: 0 1.325rem; +} +.round-button.loading-cube:before, +.cycle-button.loading-cube:before, +.square-button.loading-cube:before, +.round-button.loading-cube:after, +.cycle-button.loading-cube:after, +.square-button.loading-cube:after { + content: ""; + background-color: #333; + width: 5px; + height: 5px; + position: absolute; + top: 50%; + left: 3px; + margin-top: -8px; + -webkit-animation: cubemove 1.8s infinite ease-in-out; + animation: cubemove 1.8s infinite ease-in-out; +} +.round-button.loading-cube:after, +.cycle-button.loading-cube:after, +.square-button.loading-cube:after { + -webkit-animation-delay: -0.9s; + animation-delay: -0.9s; +} +.round-button.loading-cube.lighten:before, +.cycle-button.loading-cube.lighten:before, +.square-button.loading-cube.lighten:before, +.round-button.loading-cube.lighten:after, +.cycle-button.loading-cube.lighten:after, +.square-button.loading-cube.lighten:after { + background-color: #fff; +} +.round-button.dropdown-toggle, +.cycle-button.dropdown-toggle, +.square-button.dropdown-toggle { + padding-right: 1.625rem; +} +.round-button.dropdown-toggle.drop-marker-light:before, +.cycle-button.dropdown-toggle.drop-marker-light:before, +.square-button.dropdown-toggle.drop-marker-light:before, +.round-button.dropdown-toggle.drop-marker-light:after, +.cycle-button.dropdown-toggle.drop-marker-light:after, +.square-button.dropdown-toggle.drop-marker-light:after { + background-color: #ffffff; +} +.round-button.primary, +.cycle-button.primary, +.square-button.primary { + background: #2086bf; + color: #ffffff; + border-color: #2086bf; +} +.round-button.primary:active, +.cycle-button.primary:active, +.square-button.primary:active { + background: #1b6eae; + color: #ffffff; +} +.round-button.success, +.cycle-button.success, +.square-button.success { + background: #60a917; + color: #ffffff; + border-color: #60a917; +} +.round-button.success:active, +.cycle-button.success:active, +.square-button.success:active { + background: #128023; + color: #ffffff; +} +.round-button.danger, +.cycle-button.danger, +.square-button.danger, +.round-button.alert, +.cycle-button.alert, +.square-button.alert { + background: #ce352c; + color: #ffffff; + border-color: #ce352c; +} +.round-button.danger:active, +.cycle-button.danger:active, +.square-button.danger:active, +.round-button.alert:active, +.cycle-button.alert:active, +.square-button.alert:active { + background: #9a1616; + color: #ffffff; +} +.round-button.info, +.cycle-button.info, +.square-button.info { + background: #59cde2; + color: #ffffff; + border-color: #59cde2; +} +.round-button.info:active, +.cycle-button.info:active, +.square-button.info:active { + background: #1ba1e2; + color: #ffffff; +} +.round-button.warning, +.cycle-button.warning, +.square-button.warning { + background: #fa6800; + color: #ffffff; + border-color: #fa6800; +} +.round-button.warning:active, +.cycle-button.warning:active, +.square-button.warning:active { + background: #bf5a15; + color: #ffffff; +} +.round-button.link, +.cycle-button.link, +.square-button.link { + background: transparent; + color: #2086bf; + border-color: transparent; + text-decoration: underline; +} +.round-button.link:hover, +.cycle-button.link:hover, +.square-button.link:hover, +.round-button.link:active, +.cycle-button.link:active, +.square-button.link:active { + background: transparent; + color: #114968; + border-color: transparent; +} +.square-button { + border-radius: 0; +} +a.button, +a.round-button, +a.square-button { + color: inherit; +} +a.button:hover, +a.round-button:hover, +a.square-button:hover { + text-decoration: none; +} +.button.loading-pulse { + position: relative; + padding: 0 1.325rem; +} +.button.loading-pulse:before { + position: absolute; + content: ""; + left: 0; + top: 50%; + margin-top: -10px; + width: 20px; + height: 20px; + background-color: #333; + border-radius: 100%; + -webkit-animation: scaleout 1s infinite ease-in-out; + animation: scaleout 1s infinite ease-in-out; +} +.button.loading-pulse.lighten:before { + background-color: #fff; +} +.button.loading-cube { + position: relative; + padding: 0 1.325rem; +} +.button.loading-cube:before, +.button.loading-cube:after { + content: ""; + background-color: #333; + width: 5px; + height: 5px; + position: absolute; + top: 50%; + left: 3px; + margin-top: -8px; + -webkit-animation: cubemove 1.8s infinite ease-in-out; + animation: cubemove 1.8s infinite ease-in-out; +} +.button.loading-cube:after { + -webkit-animation-delay: -0.9s; + animation-delay: -0.9s; +} +.button.loading-cube.lighten:before, +.button.loading-cube.lighten:after { + background-color: #fff; +} +.command-button { + padding: 0 1rem; + height: 2.125rem; + text-align: center; + vertical-align: middle; + background-color: #ffffff; + border: 1px #d9d9d9 solid; + color: #262626; + cursor: pointer; + display: inline-block; + outline: none; + font-size: .875rem; + line-height: 100%; + margin: .15625rem 0; + position: relative; + height: auto; + text-align: left; + font-size: 1.325rem; + padding-left: 4rem; + padding-top: 8px; + padding-bottom: 4px; +} +.command-button.default { + background-color: #008287; + color: #fff; +} +.command-button:hover { + border-color: #787878; +} +.command-button:active { + background: #eeeeee; + color: #262626; + box-shadow: none; +} +.command-button:focus { + outline: 0; +} +.command-button:disabled, +.command-button.disabled { + background-color: #eaeaea; + color: #bebebe; + cursor: default; + border-color: transparent; +} +.command-button * { + color: inherit; +} +.command-button *:hover { + color: inherit; +} +.command-button.rounded { + border-radius: .325rem; +} +.command-button > [class*=mif-] { + vertical-align: middle; +} +.command-button img { + height: .875rem; + vertical-align: middle; + margin: 0; +} +.command-button.loading-pulse { + position: relative; + padding: 0 1.325rem; +} +.command-button.loading-pulse:before { + position: absolute; + content: ""; + left: 0; + top: 50%; + margin-top: -10px; + width: 20px; + height: 20px; + background-color: #333; + border-radius: 100%; + -webkit-animation: scaleout 1s infinite ease-in-out; + animation: scaleout 1s infinite ease-in-out; +} +.command-button.loading-pulse.lighten:before { + background-color: #fff; +} +.command-button.loading-cube { + position: relative; + padding: 0 1.325rem; +} +.command-button.loading-cube:before, +.command-button.loading-cube:after { + content: ""; + background-color: #333; + width: 5px; + height: 5px; + position: absolute; + top: 50%; + left: 3px; + margin-top: -8px; + -webkit-animation: cubemove 1.8s infinite ease-in-out; + animation: cubemove 1.8s infinite ease-in-out; +} +.command-button.loading-cube:after { + -webkit-animation-delay: -0.9s; + animation-delay: -0.9s; +} +.command-button.loading-cube.lighten:before, +.command-button.loading-cube.lighten:after { + background-color: #fff; +} +.command-button.dropdown-toggle { + padding-right: 1.625rem; +} +.command-button.dropdown-toggle.drop-marker-light:before, +.command-button.dropdown-toggle.drop-marker-light:after { + background-color: #ffffff; +} +.command-button.primary { + background: #2086bf; + color: #ffffff; + border-color: #2086bf; +} +.command-button.primary:active { + background: #1b6eae; + color: #ffffff; +} +.command-button.success { + background: #60a917; + color: #ffffff; + border-color: #60a917; +} +.command-button.success:active { + background: #128023; + color: #ffffff; +} +.command-button.danger, +.command-button.alert { + background: #ce352c; + color: #ffffff; + border-color: #ce352c; +} +.command-button.danger:active, +.command-button.alert:active { + background: #9a1616; + color: #ffffff; +} +.command-button.info { + background: #59cde2; + color: #ffffff; + border-color: #59cde2; +} +.command-button.info:active { + background: #1ba1e2; + color: #ffffff; +} +.command-button.warning { + background: #fa6800; + color: #ffffff; + border-color: #fa6800; +} +.command-button.warning:active { + background: #bf5a15; + color: #ffffff; +} +.command-button.link { + background: transparent; + color: #2086bf; + border-color: transparent; + text-decoration: underline; +} +.command-button.link:hover, +.command-button.link:active { + background: transparent; + color: #114968; + border-color: transparent; +} +.command-button small { + display: block; + font-size: .8rem; + line-height: 1.625rem; + margin-top: -0.3125rem; +} +.command-button .icon { + left: 1rem; + top: 50%; + margin-top: -1rem; + position: absolute; + font-size: 2rem; + height: 2rem; + width: 2rem; + margin-right: .625rem; +} +.command-button.icon-right { + padding-left: 1rem; + padding-right: 4rem; +} +.command-button.icon-right .icon { + left: auto; + right: 0; +} +.image-button { + padding: 0 1rem; + height: 2.125rem; + text-align: center; + vertical-align: middle; + background-color: #ffffff; + border: 1px #d9d9d9 solid; + color: #262626; + cursor: pointer; + display: inline-block; + outline: none; + font-size: .875rem; + line-height: 100%; + margin: .15625rem 0; + position: relative; + border: 0; + padding-left: 2.75rem; + background-color: #eeeeee; +} +.image-button.default { + background-color: #008287; + color: #fff; +} +.image-button:hover { + border-color: #787878; +} +.image-button:active { + background: #eeeeee; + color: #262626; + box-shadow: none; +} +.image-button:focus { + outline: 0; +} +.image-button:disabled, +.image-button.disabled { + background-color: #eaeaea; + color: #bebebe; + cursor: default; + border-color: transparent; +} +.image-button * { + color: inherit; +} +.image-button *:hover { + color: inherit; +} +.image-button.rounded { + border-radius: .325rem; +} +.image-button > [class*=mif-] { + vertical-align: middle; +} +.image-button img { + height: .875rem; + vertical-align: middle; + margin: 0; +} +.image-button.loading-pulse { + position: relative; + padding: 0 1.325rem; +} +.image-button.loading-pulse:before { + position: absolute; + content: ""; + left: 0; + top: 50%; + margin-top: -10px; + width: 20px; + height: 20px; + background-color: #333; + border-radius: 100%; + -webkit-animation: scaleout 1s infinite ease-in-out; + animation: scaleout 1s infinite ease-in-out; +} +.image-button.loading-pulse.lighten:before { + background-color: #fff; +} +.image-button.loading-cube { + position: relative; + padding: 0 1.325rem; +} +.image-button.loading-cube:before, +.image-button.loading-cube:after { + content: ""; + background-color: #333; + width: 5px; + height: 5px; + position: absolute; + top: 50%; + left: 3px; + margin-top: -8px; + -webkit-animation: cubemove 1.8s infinite ease-in-out; + animation: cubemove 1.8s infinite ease-in-out; +} +.image-button.loading-cube:after { + -webkit-animation-delay: -0.9s; + animation-delay: -0.9s; +} +.image-button.loading-cube.lighten:before, +.image-button.loading-cube.lighten:after { + background-color: #fff; +} +.image-button.dropdown-toggle { + padding-right: 1.625rem; +} +.image-button.dropdown-toggle.drop-marker-light:before, +.image-button.dropdown-toggle.drop-marker-light:after { + background-color: #ffffff; +} +.image-button.primary { + background: #2086bf; + color: #ffffff; + border-color: #2086bf; +} +.image-button.primary:active { + background: #1b6eae; + color: #ffffff; +} +.image-button.success { + background: #60a917; + color: #ffffff; + border-color: #60a917; +} +.image-button.success:active { + background: #128023; + color: #ffffff; +} +.image-button.danger, +.image-button.alert { + background: #ce352c; + color: #ffffff; + border-color: #ce352c; +} +.image-button.danger:active, +.image-button.alert:active { + background: #9a1616; + color: #ffffff; +} +.image-button.info { + background: #59cde2; + color: #ffffff; + border-color: #59cde2; +} +.image-button.info:active { + background: #1ba1e2; + color: #ffffff; +} +.image-button.warning { + background: #fa6800; + color: #ffffff; + border-color: #fa6800; +} +.image-button.warning:active { + background: #bf5a15; + color: #ffffff; +} +.image-button.link { + background: transparent; + color: #2086bf; + border-color: transparent; + text-decoration: underline; +} +.image-button.link:hover, +.image-button.link:active { + background: transparent; + color: #114968; + border-color: transparent; +} +.image-button:active { + background-color: #e1e1e1; +} +.image-button .icon { + position: absolute; + left: 0; + top: 0; + height: 100%; + width: 2.125rem; + padding: .525rem; + font-size: 1rem; + background-color: #999999; + text-align: center; + vertical-align: middle; +} +.image-button img.icon { + padding-top: .525rem; +} +.image-button.icon-right { + padding-left: 1rem; + padding-right: 2.75rem; +} +.image-button.icon-right .icon { + right: 0; + left: auto; +} +a.image-button { + padding-top: .525rem; +} +.image-button { + line-height: 100%; +} +.image-button.small-button { + padding-left: 2rem; + padding-right: 1rem; +} +.image-button.small-button .icon { + width: 1.625rem; + font-size: .875rem; + height: 100%; + padding: .4rem; +} +.image-button.small-button.icon-right { + padding-left: .625rem; + padding-right: 2rem; +} +.shortcut-button { + padding: 0 1rem; + height: 2.125rem; + vertical-align: middle; + background-color: #ffffff; + border: 1px #d9d9d9 solid; + color: #262626; + cursor: pointer; + display: inline-block; + outline: none; + font-size: .875rem; + line-height: 100%; + margin: .15625rem 0; + position: relative; + width: 5.75rem; + height: 5.75rem; + text-align: center; + font-size: .75rem; +} +.shortcut-button.default { + background-color: #008287; + color: #fff; +} +.shortcut-button:hover { + border-color: #787878; +} +.shortcut-button:active { + background: #eeeeee; + color: #262626; + box-shadow: none; +} +.shortcut-button:focus { + outline: 0; +} +.shortcut-button:disabled, +.shortcut-button.disabled { + background-color: #eaeaea; + color: #bebebe; + cursor: default; + border-color: transparent; +} +.shortcut-button * { + color: inherit; +} +.shortcut-button *:hover { + color: inherit; +} +.shortcut-button.rounded { + border-radius: .325rem; +} +.shortcut-button > [class*=mif-] { + vertical-align: middle; +} +.shortcut-button img { + height: .875rem; + vertical-align: middle; + margin: 0; +} +.shortcut-button.loading-pulse { + position: relative; + padding: 0 1.325rem; +} +.shortcut-button.loading-pulse:before { + position: absolute; + content: ""; + left: 0; + top: 50%; + margin-top: -10px; + width: 20px; + height: 20px; + background-color: #333; + border-radius: 100%; + -webkit-animation: scaleout 1s infinite ease-in-out; + animation: scaleout 1s infinite ease-in-out; +} +.shortcut-button.loading-pulse.lighten:before { + background-color: #fff; +} +.shortcut-button.loading-cube { + position: relative; + padding: 0 1.325rem; +} +.shortcut-button.loading-cube:before, +.shortcut-button.loading-cube:after { + content: ""; + background-color: #333; + width: 5px; + height: 5px; + position: absolute; + top: 50%; + left: 3px; + margin-top: -8px; + -webkit-animation: cubemove 1.8s infinite ease-in-out; + animation: cubemove 1.8s infinite ease-in-out; +} +.shortcut-button.loading-cube:after { + -webkit-animation-delay: -0.9s; + animation-delay: -0.9s; +} +.shortcut-button.loading-cube.lighten:before, +.shortcut-button.loading-cube.lighten:after { + background-color: #fff; +} +.shortcut-button.dropdown-toggle { + padding-right: 1.625rem; +} +.shortcut-button.dropdown-toggle.drop-marker-light:before, +.shortcut-button.dropdown-toggle.drop-marker-light:after { + background-color: #ffffff; +} +.shortcut-button.primary { + background: #2086bf; + color: #ffffff; + border-color: #2086bf; +} +.shortcut-button.primary:active { + background: #1b6eae; + color: #ffffff; +} +.shortcut-button.success { + background: #60a917; + color: #ffffff; + border-color: #60a917; +} +.shortcut-button.success:active { + background: #128023; + color: #ffffff; +} +.shortcut-button.danger, +.shortcut-button.alert { + background: #ce352c; + color: #ffffff; + border-color: #ce352c; +} +.shortcut-button.danger:active, +.shortcut-button.alert:active { + background: #9a1616; + color: #ffffff; +} +.shortcut-button.info { + background: #59cde2; + color: #ffffff; + border-color: #59cde2; +} +.shortcut-button.info:active { + background: #1ba1e2; + color: #ffffff; +} +.shortcut-button.warning { + background: #fa6800; + color: #ffffff; + border-color: #fa6800; +} +.shortcut-button.warning:active { + background: #bf5a15; + color: #ffffff; +} +.shortcut-button.link { + background: transparent; + color: #2086bf; + border-color: transparent; + text-decoration: underline; +} +.shortcut-button.link:hover, +.shortcut-button.link:active { + background: transparent; + color: #114968; + border-color: transparent; +} +.shortcut-button .icon, +.shortcut-button .title { + display: block; + color: inherit; +} +.shortcut-button .icon { + font-size: 1.7rem; + height: 1.7rem; + width: 1.7rem; + margin: .875rem auto; +} +.shortcut-button .badge { + color: inherit; + position: absolute; + top: 0; + right: 0; + font-size: .7rem; + line-height: 1rem; + padding: 0 .225rem; +} +a.shortcut-button { + padding-top: 10px; +} +.button.dropdown-toggle { + padding-right: 1.625rem; +} +.button.dropdown-toggle.drop-marker-light:before, +.button.dropdown-toggle.drop-marker-light:after { + background-color: #ffffff; +} +.nav-button { + width: 2rem; + height: 2rem; + background-size: 1rem 1rem; + background: center center no-repeat; + text-indent: -9999px; + border: 0; + display: inline-block; + cursor: pointer; + z-index: 2; + position: relative; +} +.nav-button span { + position: absolute; + top: 1.2rem; + left: .5rem; + width: 1.2rem; + height: 2px; + margin: 0 0 0; + background: #1d1d1d; + -webkit-transform: rotate(0); + transform: rotate(0); + transition: all 0.3s linear; +} +.nav-button span:before, +.nav-button span:after { + content: ''; + position: absolute; + top: -0.5rem; + right: 0; + width: 1.2rem; + height: 2px; + background: #1d1d1d; + -webkit-transform: rotate(0); + transform: rotate(0); + transition: all 0.3s linear; +} +.nav-button span:after { + top: .5rem; +} +.nav-button.transform span { + -webkit-transform: rotate(180deg); + transform: rotate(180deg); + background: #1d1d1d; +} +.nav-button.transform span:before, +.nav-button.transform span:after { + content: ''; + top: -5px; + right: 0; + width: .75rem; + -webkit-transform: rotate(45deg); + transform: rotate(45deg); +} +.nav-button.transform span:after { + top: 5px; + -webkit-transform: rotate(-45deg); + transform: rotate(-45deg); +} +.nav-button.light span { + background-color: #ffffff; +} +.nav-button.light span:before, +.nav-button.light span:after { + background-color: #ffffff; +} +.group-of-buttons .button.active, +.group-of-buttons .toolbar-button.active { + background-color: #00ccff; + color: #ffffff; +} +.group-of-buttons .button:active, +.group-of-buttons .toolbar-button:active { + background-color: #1ba1e2; + color: #ffffff; +} +.split-button, +.dropdown-button { + display: inline-block; + position: relative; + vertical-align: middle; +} +.split-button:before, +.dropdown-button:before, +.split-button:after, +.dropdown-button:after { + display: table; + content: ""; +} +.split-button:after, +.dropdown-button:after { + clear: both; +} +.split-button .button, +.dropdown-button .button, +.split-button .split, +.dropdown-button .split { + display: block; + float: left; +} +.split-button .split, +.dropdown-button .split { + padding: 0 1rem 0 .625rem; + height: 2.125rem; + text-align: center; + vertical-align: middle ; + background-color: #ffffff; + border: 1px #d9d9d9 solid; + color: #262626; + cursor: pointer; + outline: none; + font-size: .875rem; + position: relative; + margin: .15625rem 0; +} +.split-button .split:hover, +.dropdown-button .split:hover { + background-color: #eeeeee; + border-color: #787878; +} +.split-button .split.dropdown-toggle:before, +.dropdown-button .split.dropdown-toggle:before { + transition: all 0.3s ease; +} +.split-button .split.dropdown-toggle.active-toggle:before, +.dropdown-button .split.dropdown-toggle.active-toggle:before { + -webkit-transform: rotate(135deg); + transform: rotate(135deg); + transition: all 0.3s ease; +} +.split-button .split-content, +.dropdown-button .split-content { + position: absolute; + top: 100%; +} +.split.primary { + background: #2086bf; + color: #ffffff; + border-color: #2086bf; +} +.split.primary:active { + background: #1b6eae; +} +.split.primary:hover { + background: #59cde2; + border-color: #59cde2; +} +.split.primary.dropdown-toggle:before { + border-color: #ffffff; +} +.split.success { + background: #60a917; + color: #ffffff; + border-color: #60a917; +} +.split.success:active { + background: #128023; +} +.split.success:hover { + background: #7ad61d; + border-color: #7ad61d; +} +.split.success.dropdown-toggle:before { + border-color: #ffffff; +} +.split.danger { + background: #ce352c; + color: #ffffff; + border-color: #ce352c; +} +.split.danger:active { + background: #9a1616; +} +.split.danger:hover { + background: #da5a53; + border-color: #da5a53; +} +.split.danger.dropdown-toggle:before { + border-color: #ffffff; +} +.split.info { + background: #59cde2; + color: #ffffff; + border-color: #59cde2; +} +.split.info:active { + background: #1ba1e2; +} +.split.info:hover { + background: #4390df; + border-color: #4390df; +} +.split.info.dropdown-toggle:before { + border-color: #ffffff; +} +.split.warning { + background: #fa6800; + color: #ffffff; + border-color: #fa6800; +} +.split.warning:active { + background: #bf5a15; +} +.split.warning:hover { + background: #ffc194; + border-color: #ffc194; +} +.split.warning.dropdown-toggle:before { + border-color: #ffffff; +} +.mini-button, +.small-button, +.large-button, +.big-button { + line-height: 100%; +} +.mini-button { + font-size: .6rem; + padding: .2rem .625rem; + height: 1.4rem; +} +.small-button { + font-size: .7rem; + padding: 0 .625rem; + height: 1.7rem; +} +.large-button { + height: 2.55rem; + font-size: 1.05rem; +} +.big-button { + height: 3.125rem; + font-size: 1.2rem; +} +.round-button.mini-button, +.cycle-button.mini-button, +.square-button.mini-button { + width: 1.4rem; + height: 1.4rem; + font-size: .6rem; + line-height: 1; + padding: 0; + min-width: 0; +} +.round-button.small-button, +.cycle-button.small-button, +.square-button.small-button { + width: 1.7rem; + height: 1.7rem; + font-size: .7rem; + line-height: 1.68rem; + padding: 0; + min-width: 0; +} +.round-button.large-button, +.cycle-button.large-button, +.square-button.large-button { + font-size: 1.05rem; + line-height: 1; + width: 2.55rem; + height: 2.55rem; +} +.round-button.big-button, +.cycle-button.big-button, +.square-button.big-button { + font-size: 1.2rem; + line-height: 1; + width: 3.125rem; + height: 3.125rem; +} +.button.primary { + background: #2086bf; + color: #ffffff; + border-color: #2086bf; +} +.button.primary:active { + background: #1b6eae; + color: #ffffff; +} +.button.success { + background: #60a917; + color: #ffffff; + border-color: #60a917; +} +.button.success:active { + background: #128023; + color: #ffffff; +} +.button.danger, +.button.alert { + background: #ce352c; + color: #ffffff; + border-color: #ce352c; +} +.button.danger:active, +.button.alert:active { + background: #9a1616; + color: #ffffff; +} +.button.info { + background: #59cde2; + color: #ffffff; + border-color: #59cde2; +} +.button.info:active { + background: #1ba1e2; + color: #ffffff; +} +.button.warning { + background: #fa6800; + color: #ffffff; + border-color: #fa6800; +} +.button.warning:active { + background: #bf5a15; + color: #ffffff; +} +.button.link { + background: transparent; + color: #2086bf; + border-color: transparent; + text-decoration: underline; +} +.button.link:hover, +.button.link:active { + background: transparent; + color: #114968; + border-color: transparent; +} +a.button, +span.button, +div.button, +a.round-button, +span.round-button, +div.round-button, +a.cycle-button, +span.cycle-button, +div.cycle-button, +a.square-button, +span.square-button, +div.square-button { + padding-top: .53125rem; +} +a.button.big-button, +span.button.big-button, +div.button.big-button, +a.round-button.big-button, +span.round-button.big-button, +div.round-button.big-button, +a.cycle-button.big-button, +span.cycle-button.big-button, +div.cycle-button.big-button, +a.square-button.big-button, +span.square-button.big-button, +div.square-button.big-button { + padding-top: .78125rem; +} +.dropdown-button button.dropdown-toggle:before { + transition: all 0.3s ease; +} +.dropdown-button button.dropdown-toggle.active-toggle:before { + -webkit-transform: rotate(135deg); + transform: rotate(135deg); + transition: all 0.3s ease; +} +.shortcut-button[data-hotkey]::after { + position: absolute; + content: attr(data-hotkey); + font-size: .625rem; + bottom: 0; + right: 0; + color: #999999; +} +.shortcut-button[data-hotkey].no-hotkey-display::after { + display: none; +} +.toolbar { + position: relative; +} +.toolbar:before, +.toolbar:after { + display: table; + content: ""; +} +.toolbar:after { + clear: both; +} +.toolbar-section { + position: relative; + padding-left: .5725rem; + margin: .125rem; + float: left; + width: auto; +} +.toolbar-section.no-divider:before { + display: none; +} +.toolbar-section:before { + position: absolute; + content: ""; + width: .325rem; + height: 100%; + left: 0; + background-color: #eeeeee; + cursor: move; +} +.toolbar .toolbar-button { + padding: 0 1rem; + height: 2.125rem; + background-color: #ffffff; + border: 1px #d9d9d9 solid; + color: #262626; + cursor: pointer; + display: inline-block; + outline: none; + font-size: .875rem; + line-height: 100%; + margin: .15625rem 0; + position: relative; + width: 2.125rem; + min-width: 2.125rem; + padding: 0 ; + border-radius: 50%; + text-align: center; + text-decoration: none; + vertical-align: middle; + border-radius: 0; + margin: 0; +} +.toolbar .toolbar-button.default { + background-color: #008287; + color: #fff; +} +.toolbar .toolbar-button:hover { + border-color: #787878; +} +.toolbar .toolbar-button:active { + background: #eeeeee; + color: #262626; + box-shadow: none; +} +.toolbar .toolbar-button:focus { + outline: 0; +} +.toolbar .toolbar-button:disabled, +.toolbar .toolbar-button.disabled { + background-color: #eaeaea; + color: #bebebe; + cursor: default; + border-color: transparent; +} +.toolbar .toolbar-button * { + color: inherit; +} +.toolbar .toolbar-button *:hover { + color: inherit; +} +.toolbar .toolbar-button.rounded { + border-radius: .325rem; +} +.toolbar .toolbar-button > [class*=mif-] { + vertical-align: middle; +} +.toolbar .toolbar-button img { + height: .875rem; + vertical-align: middle; + margin: 0; +} +.toolbar .toolbar-button.loading-pulse { + position: relative; + padding: 0 1.325rem; +} +.toolbar .toolbar-button.loading-pulse:before { + position: absolute; + content: ""; + left: 0; + top: 50%; + margin-top: -10px; + width: 20px; + height: 20px; + background-color: #333; + border-radius: 100%; + -webkit-animation: scaleout 1s infinite ease-in-out; + animation: scaleout 1s infinite ease-in-out; +} +.toolbar .toolbar-button.loading-pulse.lighten:before { + background-color: #fff; +} +.toolbar .toolbar-button.loading-cube { + position: relative; + padding: 0 1.325rem; +} +.toolbar .toolbar-button.loading-cube:before, +.toolbar .toolbar-button.loading-cube:after { + content: ""; + background-color: #333; + width: 5px; + height: 5px; + position: absolute; + top: 50%; + left: 3px; + margin-top: -8px; + -webkit-animation: cubemove 1.8s infinite ease-in-out; + animation: cubemove 1.8s infinite ease-in-out; +} +.toolbar .toolbar-button.loading-cube:after { + -webkit-animation-delay: -0.9s; + animation-delay: -0.9s; +} +.toolbar .toolbar-button.loading-cube.lighten:before, +.toolbar .toolbar-button.loading-cube.lighten:after { + background-color: #fff; +} +.toolbar .toolbar-button.dropdown-toggle { + padding-right: 1.625rem; +} +.toolbar .toolbar-button.dropdown-toggle.drop-marker-light:before, +.toolbar .toolbar-button.dropdown-toggle.drop-marker-light:after { + background-color: #ffffff; +} +.toolbar .toolbar-button.primary { + background: #2086bf; + color: #ffffff; + border-color: #2086bf; +} +.toolbar .toolbar-button.primary:active { + background: #1b6eae; + color: #ffffff; +} +.toolbar .toolbar-button.success { + background: #60a917; + color: #ffffff; + border-color: #60a917; +} +.toolbar .toolbar-button.success:active { + background: #128023; + color: #ffffff; +} +.toolbar .toolbar-button.danger, +.toolbar .toolbar-button.alert { + background: #ce352c; + color: #ffffff; + border-color: #ce352c; +} +.toolbar .toolbar-button.danger:active, +.toolbar .toolbar-button.alert:active { + background: #9a1616; + color: #ffffff; +} +.toolbar .toolbar-button.info { + background: #59cde2; + color: #ffffff; + border-color: #59cde2; +} +.toolbar .toolbar-button.info:active { + background: #1ba1e2; + color: #ffffff; +} +.toolbar .toolbar-button.warning { + background: #fa6800; + color: #ffffff; + border-color: #fa6800; +} +.toolbar .toolbar-button.warning:active { + background: #bf5a15; + color: #ffffff; +} +.toolbar .toolbar-button.link { + background: transparent; + color: #2086bf; + border-color: transparent; + text-decoration: underline; +} +.toolbar .toolbar-button.link:hover, +.toolbar .toolbar-button.link:active { + background: transparent; + color: #114968; + border-color: transparent; +} +.toolbar .toolbar-button.mini-button { + width: 1.4rem; + height: 1.4rem; + font-size: .6rem; + line-height: 1; + padding: 0; + min-width: 0; +} +.toolbar .toolbar-button.small-button { + width: 1.7rem; + height: 1.7rem; + font-size: .7rem; + line-height: 1.68rem; + padding: 0; + min-width: 0; +} +.toolbar .toolbar-button.large-button { + font-size: 1.05rem; + line-height: 1; + width: 2.55rem; + height: 2.55rem; +} +.toolbar .toolbar-button.big-button { + font-size: 1.2rem; + line-height: 1; + width: 3.125rem; + height: 3.125rem; +} +.toolbar-group, +.toolbar-section { + display: inline-block; +} +.toolbar-group.condensed:before, +.toolbar-section.condensed:before, +.toolbar-group.condensed:after, +.toolbar-section.condensed:after { + display: table; + content: ""; +} +.toolbar-group.condensed:after, +.toolbar-section.condensed:after { + clear: both; +} +.toolbar-group.condensed .button, +.toolbar-section.condensed .button, +.toolbar-group.condensed .toolbar-button, +.toolbar-section.condensed .toolbar-button { + display: block; + float: left; +} +.toolbar-group-check .toolbar-button.checked { + background-color: #59cde2; + color: #ffffff; + border-color: #59cde2; +} +.toolbar-group-radio .toolbar-button.checked { + background-color: #59cde2; + color: #ffffff; + border-color: #59cde2; +} +.toolbar.rounded > .toolbar-button, +.toolbar.rounded > .toolbar-section .toolbar-button { + border-radius: .3125rem; +} +.toolbar.rounded .toolbar-section:before { + border-radius: .3125rem; +} +.v-toolbar { + position: relative; + float: left; +} +.v-toolbar:before, +.v-toolbar:after { + display: table; + content: ""; +} +.v-toolbar:after { + clear: both; +} +.v-toolbar .toolbar-button { + padding: 0 1rem; + height: 2.125rem; + background-color: #ffffff; + border: 1px #d9d9d9 solid; + color: #262626; + cursor: pointer; + display: inline-block; + outline: none; + font-size: .875rem; + line-height: 100%; + margin: .15625rem 0; + position: relative; + width: 2.125rem; + min-width: 2.125rem; + padding: 0 ; + border-radius: 50%; + text-align: center; + text-decoration: none; + vertical-align: middle; + border-radius: 0; + margin: 0; +} +.v-toolbar .toolbar-button.default { + background-color: #008287; + color: #fff; +} +.v-toolbar .toolbar-button:hover { + border-color: #787878; +} +.v-toolbar .toolbar-button:active { + background: #eeeeee; + color: #262626; + box-shadow: none; +} +.v-toolbar .toolbar-button:focus { + outline: 0; +} +.v-toolbar .toolbar-button:disabled, +.v-toolbar .toolbar-button.disabled { + background-color: #eaeaea; + color: #bebebe; + cursor: default; + border-color: transparent; +} +.v-toolbar .toolbar-button * { + color: inherit; +} +.v-toolbar .toolbar-button *:hover { + color: inherit; +} +.v-toolbar .toolbar-button.rounded { + border-radius: .325rem; +} +.v-toolbar .toolbar-button > [class*=mif-] { + vertical-align: middle; +} +.v-toolbar .toolbar-button img { + height: .875rem; + vertical-align: middle; + margin: 0; +} +.v-toolbar .toolbar-button.loading-pulse { + position: relative; + padding: 0 1.325rem; +} +.v-toolbar .toolbar-button.loading-pulse:before { + position: absolute; + content: ""; + left: 0; + top: 50%; + margin-top: -10px; + width: 20px; + height: 20px; + background-color: #333; + border-radius: 100%; + -webkit-animation: scaleout 1s infinite ease-in-out; + animation: scaleout 1s infinite ease-in-out; +} +.v-toolbar .toolbar-button.loading-pulse.lighten:before { + background-color: #fff; +} +.v-toolbar .toolbar-button.loading-cube { + position: relative; + padding: 0 1.325rem; +} +.v-toolbar .toolbar-button.loading-cube:before, +.v-toolbar .toolbar-button.loading-cube:after { + content: ""; + background-color: #333; + width: 5px; + height: 5px; + position: absolute; + top: 50%; + left: 3px; + margin-top: -8px; + -webkit-animation: cubemove 1.8s infinite ease-in-out; + animation: cubemove 1.8s infinite ease-in-out; +} +.v-toolbar .toolbar-button.loading-cube:after { + -webkit-animation-delay: -0.9s; + animation-delay: -0.9s; +} +.v-toolbar .toolbar-button.loading-cube.lighten:before, +.v-toolbar .toolbar-button.loading-cube.lighten:after { + background-color: #fff; +} +.v-toolbar .toolbar-button.dropdown-toggle { + padding-right: 1.625rem; +} +.v-toolbar .toolbar-button.dropdown-toggle.drop-marker-light:before, +.v-toolbar .toolbar-button.dropdown-toggle.drop-marker-light:after { + background-color: #ffffff; +} +.v-toolbar .toolbar-button.primary { + background: #2086bf; + color: #ffffff; + border-color: #2086bf; +} +.v-toolbar .toolbar-button.primary:active { + background: #1b6eae; + color: #ffffff; +} +.v-toolbar .toolbar-button.success { + background: #60a917; + color: #ffffff; + border-color: #60a917; +} +.v-toolbar .toolbar-button.success:active { + background: #128023; + color: #ffffff; +} +.v-toolbar .toolbar-button.danger, +.v-toolbar .toolbar-button.alert { + background: #ce352c; + color: #ffffff; + border-color: #ce352c; +} +.v-toolbar .toolbar-button.danger:active, +.v-toolbar .toolbar-button.alert:active { + background: #9a1616; + color: #ffffff; +} +.v-toolbar .toolbar-button.info { + background: #59cde2; + color: #ffffff; + border-color: #59cde2; +} +.v-toolbar .toolbar-button.info:active { + background: #1ba1e2; + color: #ffffff; +} +.v-toolbar .toolbar-button.warning { + background: #fa6800; + color: #ffffff; + border-color: #fa6800; +} +.v-toolbar .toolbar-button.warning:active { + background: #bf5a15; + color: #ffffff; +} +.v-toolbar .toolbar-button.link { + background: transparent; + color: #2086bf; + border-color: transparent; + text-decoration: underline; +} +.v-toolbar .toolbar-button.link:hover, +.v-toolbar .toolbar-button.link:active { + background: transparent; + color: #114968; + border-color: transparent; +} +.v-toolbar .toolbar-button.mini-button { + width: 1.4rem; + height: 1.4rem; + font-size: .6rem; + line-height: 1; + padding: 0; + min-width: 0; +} +.v-toolbar .toolbar-button.small-button { + width: 1.7rem; + height: 1.7rem; + font-size: .7rem; + line-height: 1.68rem; + padding: 0; + min-width: 0; +} +.v-toolbar .toolbar-button.large-button { + font-size: 1.05rem; + line-height: 1; + width: 2.55rem; + height: 2.55rem; +} +.v-toolbar .toolbar-button.big-button { + font-size: 1.2rem; + line-height: 1; + width: 3.125rem; + height: 3.125rem; +} +.v-toolbar.rounded > .toolbar-button, +.v-toolbar.rounded > .toolbar-section .toolbar-button { + border-radius: .3125rem; +} +.v-toolbar.rounded .toolbar-section:before { + border-radius: .3125rem; +} +.v-toolbar .toolbar-section { + padding-left: 0; + padding-top: .5725rem; +} +.v-toolbar .toolbar-section:before { + width: 100%; + top: 0; + height: .325rem; +} +.v-toolbar .toolbar-button { + display: block; + margin-bottom: .25rem; +} +.v-toolbar.no-divider .toolbar-section:before { + display: none; +} +.pagination { + display: block; + margin: .625rem 0; +} +.pagination:before, +.pagination:after { + display: table; + content: ""; +} +.pagination:after { + clear: both; +} +.pagination > .item { + display: block; + float: left; + margin-left: .0652rem; + padding: 0.25rem .625rem; + background-color: #ffffff; + cursor: pointer; + border: 1px #eeeeee solid; + text-align: center; + font-size: .875rem; + color: #1d1d1d; +} +.pagination > .item:first-child { + margin-left: 0 ; +} +.pagination > .item.current, +.pagination > .item.active { + background-color: #1ba1e2; + border-color: #59cde2; + color: #ffffff; + text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4); +} +.pagination > .item:hover { + background-color: #75c7ee; + border-color: #75c7ee; + color: #ffffff; +} +.pagination > .item:disabled, +.pagination > .item.disabled { + cursor: default; + background-color: #eeeeee; + border-color: #eeeeee; + color: #999999; +} +.pagination > .item.spaces { + border: 0; + cursor: default; + color: #1d1d1d; +} +.pagination > .item.spaces:hover { + background-color: inherit ; + color: #1d1d1d; +} +.pagination.rounded > .item { + border-radius: .3125rem; +} +.pagination.cycle > .item { + width: 28px; + height: 28px; + border-radius: 50%; + font-size: .7rem; + padding: .4375rem 0; +} +.pagination.no-border > .item { + border: 0; +} +.pagination.no-border > .item:hover { + color: #59cde2; + background-color: transparent ; +} +.pagination.no-border > .item:disabled, +.pagination.no-border > .item.disabled { + cursor: default; + background-color: transparent; + border-color: transparent; + color: #999999; +} +.pagination.no-border > .item.current:hover, +.pagination.no-border > .item.active:hover { + background-color: #75c7ee; + border-color: #75c7ee; + color: #ffffff; +} +.breadcrumbs { + padding: 0; + margin: 0; + list-style: none inside none; + background-color: #ffffff; + color: #999; + padding: 1rem; +} +.breadcrumbs > li { + display: inline-block; + color: inherit; + margin: 0 1rem 0 0; + position: relative; + vertical-align: middle; +} +.breadcrumbs > li:before, +.breadcrumbs > li:after { + display: block; + position: absolute; + vertical-align: middle; + color: transparent; + font-size: 0; + content: ""; + height: 1px; + width: .375rem; + background-color: #1d1d1d; + top: 50%; + left: 100%; + margin-left: .5rem; +} +.breadcrumbs > li:before { + -webkit-transform: rotate(45deg); + transform: rotate(45deg); + margin-top: -0.125rem; +} +.breadcrumbs > li:after { + -webkit-transform: rotate(-45deg); + transform: rotate(-45deg); + margin-top: .125rem; +} +.breadcrumbs > li > a { + color: inherit; + display: inline-block; + line-height: 1; +} +.breadcrumbs > li:last-child { + color: #1d1d1d; + font-weight: bolder; +} +.breadcrumbs > li:last-child a { + cursor: default; +} +.breadcrumbs > li:last-child:before, +.breadcrumbs > li:last-child:after { + background-color: transparent; +} +.breadcrumbs > li:hover { + color: #1d1d1d; +} +.breadcrumbs img, +.breadcrumbs .icon { + display: inline-block; + line-height: .8; + height: 1rem; + width: 1rem; + font-size: 1rem; + vertical-align: -15%; +} +.breadcrumbs.dark { + background-color: #393832; +} +.breadcrumbs.dark > li:hover, +.breadcrumbs.dark > li:last-child { + color: #ffffff; +} +.breadcrumbs.dark > li:before, +.breadcrumbs.dark > li:after { + background-color: #ffffff; +} +.breadcrumbs2 { + margin: 0.625rem 0; + padding: 0; + list-style: none; + overflow: hidden; + width: 100%; +} +.breadcrumbs2 li { + float: left; + margin: 0 .2em 0 1em; +} +.breadcrumbs2 a { + background: #d9d9d9; + padding: .3em 1em; + float: left; + text-decoration: none; + color: #2086bf; + position: relative; +} +.breadcrumbs2 a:hover { + background: #1ba1e2; + color: #ffffff; +} +.breadcrumbs2 a:hover:before { + border-color: #1ba1e2 #1ba1e2 #1ba1e2 transparent; +} +.breadcrumbs2 a:hover:after { + border-left-color: #1ba1e2; +} +.breadcrumbs2 a:before { + content: ""; + position: absolute; + top: 50%; + margin-top: -1.5em; + border-width: 1.5em 0 1.5em 1em; + border-style: solid; + border-color: #d9d9d9 #d9d9d9 #d9d9d9 transparent; + left: -1em; + margin-left: 1px; +} +.breadcrumbs2 a:after { + content: ""; + position: absolute; + top: 50%; + margin-top: -1.5em; + border-top: 1.5em solid transparent; + border-bottom: 1.5em solid transparent; + border-left: 1em solid #d9d9d9; + right: -1em; + margin-right: 1px; +} +.breadcrumbs2 > li:first-child { + margin-left: 0; +} +.breadcrumbs2 > li:first-child a:before { + content: normal; +} +.breadcrumbs2 > li:last-child { + background: none; +} +.breadcrumbs2 > li:last-child a { + color: #1d1d1d; +} +.breadcrumbs2 > li:last-child:after, +.breadcrumbs2 > li:last-child:before { + content: normal; +} +.breadcrumbs2 > li:last-child:hover a { + color: #ffffff; +} +.breadcrumbs2 .active, +.breadcrumbs2 .active:hover { + background: none; +} +.breadcrumbs2 .active a, +.breadcrumbs2 .active:hover a { + color: #1d1d1d; +} +.breadcrumbs2 .active:hover a { + color: #ffffff; +} +.breadcrumbs2 .active:after, +.breadcrumbs2 .active:before { + content: normal; +} +.breadcrumbs2.small a { + padding: .2em 1em; + font-size: 11.9px; +} +.breadcrumbs2.mini a { + padding: .1em 1em; + font-size: 10.5px; +} +.breadcrumbs2 > li > a > [class*=mif] { + vertical-align: -10%; +} +.input-control { + display: inline-block; + min-height: 2.125rem; + height: 2.125rem; + position: relative; + vertical-align: middle; + margin: .325rem 0; + line-height: 1; +} +.input-control[data-role=select] { + height: auto; +} +.input-control.text, +.input-control.select, +.input-control.file, +.input-control.password, +.input-control.number, +.input-control.email, +.input-control.tel { + width: 10.875rem; +} +.input-control.text .button, +.input-control.select .button, +.input-control.file .button, +.input-control.password .button, +.input-control.number .button, +.input-control.email .button, +.input-control.tel .button { + position: absolute; + top: 0; + right: 0; + z-index: 2; + margin: 0; +} +.input-control.text > label, +.input-control.select > label, +.input-control.file > label, +.input-control.password > label, +.input-control.number > label, +.input-control.email > label, +.input-control.tel > label, +.input-control.text > .label, +.input-control.select > .label, +.input-control.file > .label, +.input-control.password > .label, +.input-control.number > .label, +.input-control.email > .label, +.input-control.tel > .label { + position: absolute; + left: 0; + top: -1rem; + font-size: .875rem; +} +.input-control.text > input:disabled + .button, +.input-control.select > input:disabled + .button, +.input-control.file > input:disabled + .button, +.input-control.password > input:disabled + .button, +.input-control.number > input:disabled + .button, +.input-control.email > input:disabled + .button, +.input-control.tel > input:disabled + .button { + display: none; +} +.input-control.text .prepend-icon, +.input-control.select .prepend-icon, +.input-control.file .prepend-icon, +.input-control.password .prepend-icon, +.input-control.number .prepend-icon, +.input-control.email .prepend-icon, +.input-control.tel .prepend-icon { + width: 24px; + height: 24px; + font-size: 24px; + line-height: 1; + position: absolute; + top: 50%; + margin-top: -12px; + left: 4px; + z-index: 2; + color: #999999; +} +.input-control.text .prepend-icon ~ input, +.input-control.select .prepend-icon ~ input, +.input-control.file .prepend-icon ~ input, +.input-control.password .prepend-icon ~ input, +.input-control.number .prepend-icon ~ input, +.input-control.email .prepend-icon ~ input, +.input-control.tel .prepend-icon ~ input { + padding-left: 30px; +} +.input-control input, +.input-control textarea, +.input-control select { + -moz-appearance: none; + -webkit-appearance: none; + appearance: none; + position: relative; + border: 1px #d9d9d9 solid; + width: 100%; + height: 100%; + padding: .3125rem; + z-index: 0; +} +.input-control input:focus, +.input-control textarea:focus, +.input-control select:focus { + outline: none; +} +.input-control input:disabled, +.input-control textarea:disabled, +.input-control select:disabled { + background-color: #EBEBE4; +} +.input-control input:focus, +.input-control textarea:focus, +.input-control select:focus, +.input-control input:hover, +.input-control textarea:hover, +.input-control select:hover { + border-color: #787878; +} +.input-control textarea { + position: relative; + min-height: 6.25rem; + font-family: "Segoe UI", "Open Sans", sans-serif, serif; +} +.input-control.textarea { + height: auto; +} +.input-control.select { + position: relative; +} +.input-control.select select { + padding-right: 20px; +} +.input-control.rounded input, +.input-control.rounded textarea, +.input-control.rounded select { + border-radius: 0.3125rem; +} +.input-control.big-input { + height: 4.125rem; +} +.input-control.big-input input { + font-size: 1.875rem; + padding-left: 1.25rem ; +} +.input-control.big-input .button { + height: 3.25rem; + top: 50%; + margin-top: -1.625rem; + right: 0.3125rem; + font-size: 1.125rem; + font-weight: bold; + padding-left: 1.875rem; + padding-right: 1.875rem; +} +.input-control [class*=input-state-] { + position: absolute; + display: none; + top: 50%; + right: 8px; + z-index: 3; + font-size: 1rem; + margin-top: -0.5rem; +} +.input-control.required input, +.input-control.required textarea, +.input-control.required select { + border: 1px dashed #1ba1e2; +} +.input-control.required.neon input, +.input-control.required.neon textarea, +.input-control.required.neon select { + box-shadow: 0 0 25px 0 rgba(89, 205, 226, 0.7); +} +.input-control.required .input-state-required { + display: block; + color: #1ba1e2; +} +.input-control.error input, +.input-control.error textarea, +.input-control.error select { + border: 1px solid #ce352c; +} +.input-control.error.neon input, +.input-control.error.neon textarea, +.input-control.error.neon select { + box-shadow: 0 0 25px 0 rgba(128, 0, 0, 0.7); +} +.input-control.error .input-state-error { + display: block; + color: #ce352c; +} +.input-control.warning input, +.input-control.warning textarea, +.input-control.warning select { + border: 1px solid #e3c800; +} +.input-control.warning.neon input, +.input-control.warning.neon textarea, +.input-control.warning.neon select { + box-shadow: 0 0 25px 0 rgba(255, 165, 0, 0.7); +} +.input-control.warning .input-state-warning { + display: block; + color: #e3c800; +} +.input-control.success input, +.input-control.success textarea, +.input-control.success select { + border: 1px solid #60a917; +} +.input-control.success.neon input, +.input-control.success.neon textarea, +.input-control.success.neon select { + box-shadow: 0 0 25px 0 rgba(0, 128, 0, 0.7); +} +.input-control.success .input-state-success { + display: block; + color: #60a917; +} +.input-control.info input, +.input-control.info textarea, +.input-control.info select { + border: 1px solid #1ba1e2; +} +.input-control.info.neon input, +.input-control.info.neon textarea, +.input-control.info.neon select { + box-shadow: 0 0 25px 0 rgba(89, 205, 226, 0.7); +} +.input-control.info .input-state-success { + display: block; + color: #1ba1e2; +} +input.error, +select.error, +textarea.error { + border: 1px solid #ce352c; +} +input.warning, +select.warning, +textarea.warning { + border: 1px solid #e3c800; +} +input.info, +select.info, +textarea.info { + border: 1px solid #1ba1e2; +} +input.success, +select.success, +textarea.success { + border: 1px solid #60a917; +} +input.required, +select.required, +textarea.required { + border: 1px dashed #1ba1e2; +} +.input-control.file input[type=file] { + position: absolute; + opacity: 0; + width: 0.0625rem; + height: 0.0625rem; +} +.input-control.file input[type=file]:disabled ~ input[type=text], +.input-control.file input[type=file]:disabled ~ .button { + background-color: #EBEBE4; +} +.input-control.file:hover input[type=text], +.input-control.file:hover button { + border-color: #787878; +} +.input-control .button-group { + position: absolute; + right: 0; + top: 0; + margin: 0; + padding: 0; + z-index: 2; +} +.input-control .button-group:before, +.input-control .button-group:after { + display: table; + content: ""; +} +.input-control .button-group:after { + clear: both; +} +.input-control .button-group .button { + position: relative; + float: left; + margin: 0; +} +.input-control > .helper-button, +.input-control > .button-group > .helper-button { + visibility: hidden; + margin: 0; + border: 0; + height: 1.875rem; + padding: 0 .6rem; + z-index: 100; + font-size: .75rem; +} +.input-control > .button.helper-button { + margin: 2px 2px 0; +} +.input-control > .button-group > .button.helper-button { + margin: 2px 0 ; +} +.input-control > .button-group > .button.helper-button:last-child { + margin-right: 2px ; +} +.input-control input:focus ~ .helper-button, +.input-control input:focus ~ .button-group > .helper-button { + visibility: visible; +} +.input-control input ~ .helper-button:active, +.input-control input ~ .button-group > .helper-button:active { + visibility: visible; +} +.input-control input:disabled ~ .helper-button, +.input-control input:disabled ~ .button-group > .helper-button { + display: none ; +} +.input-control.modern { + position: relative; + width: 12.25rem; + height: 3rem; + display: inline-block; + margin: .625rem 0; +} +.input-control.modern input { + position: absolute; + top: 1rem; + left: 0; + right: 0; + bottom: .5rem; + border: 0; + border-bottom: 2px #DDDDDD solid; + background-color: transparent; + outline: none; + font-size: 1rem; + padding-bottom: .5rem; + padding-left: 0; + width: 100%; + z-index: 2; + height: 1.75rem; +} +.input-control.modern input:focus { + border-bottom-color: #1d1d1d; +} +.input-control.modern .label, +.input-control.modern .informer { + position: absolute; + display: block; + z-index: 1; + color: #1d1d1d; +} +.input-control.modern .label { + opacity: 0; + top: 16px; + left: 0; + transition: all 0.3s linear; +} +.input-control.modern .informer { + opacity: 0; + bottom: .75rem; + color: #C8C8C8; + font-size: .8rem; + transition: all 0.3s linear; +} +.input-control.modern .placeholder { + font-size: 1rem; + color: #C8C8C8; + position: absolute; + top: 1.2rem; + left: 0; + z-index: 1; + opacity: 1; + transition: all 0.3s linear; +} +.input-control.modern .helper-button { + top: 8px; +} +.input-control.modern.iconic { + margin-left: 32px; +} +.input-control.modern.iconic .icon { + width: 24px; + height: 24px; + font-size: 24px; + line-height: 1; + position: absolute; + left: -28px; + top: 50%; + margin-top: -8px; + display: block; + opacity: .2; + transition: all 0.3s linear; +} +.input-control.modern.iconic .icon img { + width: 100%; + max-width: 100%; + height: 100%; + max-height: 100%; +} +.input-control.modern.iconic.full-size { + width: calc(100% - 32px) !important; +} +.input-control.modern input:focus ~ .label { + opacity: 1; + -webkit-transform: translateY(-18px); + transform: translateY(-18px); + transition: all 0.3s linear; +} +.input-control.modern input:focus ~ .placeholder { + opacity: 0; + -webkit-transform: translateX(200px); + transform: translateX(200px); + transition: all 0.3s linear; +} +.input-control.modern input:focus ~ .informer { + opacity: 1; + color: #1d1d1d; + bottom: -0.75rem; + transition: all 0.3s linear; +} +.input-control.modern input:focus ~ .icon { + opacity: 1; + transition: all 0.3s linear; +} +.input-control.modern.error input { + border-bottom-color: #ce352c; +} +.input-control.modern.error .informer, +.input-control.modern.error .label { + color: #ce352c; +} +.input-control.modern.success input { + border-bottom-color: #60a917; +} +.input-control.modern.success .informer, +.input-control.modern.success .label { + color: #60a917; +} +.input-control.modern.warning input { + border-bottom-color: #e3c800; +} +.input-control.modern.warning .informer, +.input-control.modern.warning .label { + color: #e3c800; +} +.input-control.modern.info input { + border-bottom-color: #1ba1e2; +} +.input-control.modern.info .informer, +.input-control.modern.info .label { + color: #1ba1e2; +} +.input-control.modern input:disabled { + border-bottom-style: dotted; + color: #BCBCBC; +} +.input-control.checkbox, +.input-control.radio { + line-height: 1.875rem; + min-width: 1rem; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; +} +.input-control.checkbox input[type="checkbox"], +.input-control.radio input[type="checkbox"], +.input-control.checkbox input[type="radio"], +.input-control.radio input[type="radio"] { + position: absolute; + opacity: 0; + width: 0.0625rem; + height: 0.0625rem; +} +.input-control.checkbox .caption, +.input-control.radio .caption { + margin: 0 .125rem; + vertical-align: middle; +} +.input-control.checkbox .check, +.input-control.radio .check { + width: 1.625rem; + height: 1.625rem; + background-color: #ffffff; + border: 1px #999999 solid; + padding: 0; + position: relative; + display: inline-block; + vertical-align: middle; +} +.input-control.checkbox.text-left .check, +.input-control.radio.text-left .check { + margin: 0 0 0 .3125rem; +} +.input-control.checkbox .check:focus, +.input-control.radio .check:focus { + border-color: #bcd9e2; +} +.input-control.checkbox .check:before, +.input-control.radio .check:before { + position: absolute; + vertical-align: middle; + color: transparent; + font-size: 0; + content: ""; + height: .3125rem; + width: .565rem; + background-color: transparent; + border-left: .1875rem solid; + border-bottom: .1875rem solid; + border-color: transparent; + left: 50%; + top: 50%; + margin-left: -0.325rem; + margin-top: -0.365rem; + display: block; + -webkit-transform: rotate(-45deg); + transform: rotate(-45deg); + transition: all 0.2s linear; +} +.input-control.checkbox input[type=radio] ~ .check:before, +.input-control.radio input[type=radio] ~ .check:before { + border-color: transparent; +} +.input-control.checkbox input[type="checkbox"]:checked ~ .check:before, +.input-control.radio input[type="checkbox"]:checked ~ .check:before, +.input-control.checkbox input[type="radio"]:checked ~ .check:before, +.input-control.radio input[type="radio"]:checked ~ .check:before { + border-color: #555555; + transition: all 0.2s linear; +} +.input-control.checkbox input[type="checkbox"]:disabled ~ .caption, +.input-control.radio input[type="checkbox"]:disabled ~ .caption, +.input-control.checkbox input[type="radio"]:disabled ~ .caption, +.input-control.radio input[type="radio"]:disabled ~ .caption { + color: #cacaca; + cursor: default; +} +.input-control.checkbox input[type="checkbox"]:disabled ~ .check, +.input-control.radio input[type="checkbox"]:disabled ~ .check, +.input-control.checkbox input[type="radio"]:disabled ~ .check, +.input-control.radio input[type="radio"]:disabled ~ .check { + border-color: #cacaca; + cursor: default; +} +.input-control.checkbox input[type="checkbox"]:disabled:checked ~ .check:before, +.input-control.radio input[type="checkbox"]:disabled:checked ~ .check:before { + border-color: #cacaca; +} +.input-control.checkbox input[type="radio"]:disabled:checked ~ .check:before, +.input-control.radio input[type="radio"]:disabled:checked ~ .check:before { + background-color: #cacaca; +} +.input-control.checkbox input[data-show="indeterminate"] ~ .check:before, +.input-control.radio input[data-show="indeterminate"] ~ .check:before, +.input-control.checkbox input[data-show="indeterminate"]:checked ~ .check:before, +.input-control.radio input[data-show="indeterminate"]:checked ~ .check:before, +.input-control.checkbox input.indeterminate:checked ~ .check:before, +.input-control.radio input.indeterminate:checked ~ .check:before, +.input-control.checkbox input[type="checkbox"]:indeterminate ~ .check:before, +.input-control.radio input[type="checkbox"]:indeterminate ~ .check:before { + display: none; +} +.input-control.checkbox input[data-show="indeterminate"] ~ .check:after, +.input-control.radio input[data-show="indeterminate"] ~ .check:after, +.input-control.checkbox input[data-show="indeterminate"]:checked ~ .check:after, +.input-control.radio input[data-show="indeterminate"]:checked ~ .check:after, +.input-control.checkbox input.indeterminate:checked ~ .check:after, +.input-control.radio input.indeterminate:checked ~ .check:after, +.input-control.checkbox input[type="checkbox"]:indeterminate ~ .check:after, +.input-control.radio input[type="checkbox"]:indeterminate ~ .check:after { + position: absolute; + display: block; + content: ""; + background-color: #1d1d1d; + height: .875rem; + width: .875rem; + left: 50%; + top: 50%; + margin-left: -0.4375rem; + margin-top: -0.4375rem; +} +.input-control.checkbox input[data-show="indeterminate"]:not(:checked) ~ .check:after, +.input-control.radio input[data-show="indeterminate"]:not(:checked) ~ .check:after { + background-color: transparent; +} +.input-control.checkbox input[data-show="indeterminate"]:disabled ~ .check:after, +.input-control.radio input[data-show="indeterminate"]:disabled ~ .check:after { + background-color: #cacaca; +} +.input-control.radio .check { + border: 1px #999999 solid; + border-radius: 50%; +} +.input-control.radio .check:before { + position: absolute; + display: block; + content: ""; + background-color: #1d1d1d; + height: .5624rem; + width: .5624rem; + left: 50%; + top: 50%; + margin-left: -0.375rem; + margin-top: -0.375rem; + -webkit-transform: rotate(0deg); + transform: rotate(0deg); + border-radius: 50%; +} +.input-control.radio input[type="radio"]:checked ~ .check:before { + border-color: transparent; +} +.input-control.radio input[type="radio"]:not(:checked) ~ .check:before { + background-color: transparent; +} +.input-control.radio input[type="radio"]:disabled ~ .check:before { + border-color: transparent; +} +.input-control.small-check .check { + width: 1rem; + height: 1rem; +} +.input-control.small-check .check:before { + width: 6px; + height: 3px; + margin-left: -4px; + margin-top: -4px; + border-width: 2px; +} +.input-control.small-check.radio .check:before { + height: .375rem; + width: .375rem; + left: 50%; + top: 50%; + margin-left: -0.25rem; + margin-top: -0.25rem; +} +.input-control.small-check input[data-show="indeterminate"] ~ .check:after, +.input-control.small-check input[data-show="indeterminate"]:checked ~ .check:after, +.input-control.small-check input.indeterminate:checked ~ .check:after, +.input-control.small-check input[type="checkbox"]:indeterminate ~ .check:after { + height: .375rem; + width: .375rem; + left: 50%; + top: 50%; + margin-left: -0.1875rem; + margin-top: -0.1875rem; +} +input[type="button"], +input[type="reset"], +input[type="submit"] { + padding: 0 1rem; + height: 2.125rem; + text-align: center; + background-color: #ffffff; + border: 1px #d9d9d9 solid; + color: #262626; + cursor: pointer; + display: inline-block; + outline: none; + font-size: .875rem; + line-height: 100%; + margin: .15625rem 0; + position: relative; + vertical-align: middle; +} +input[type="button"].default, +input[type="reset"].default, +input[type="submit"].default { + background-color: #008287; + color: #fff; +} +input[type="button"]:hover, +input[type="reset"]:hover, +input[type="submit"]:hover { + border-color: #787878; +} +input[type="button"]:active, +input[type="reset"]:active, +input[type="submit"]:active { + background: #eeeeee; + color: #262626; + box-shadow: none; +} +input[type="button"]:focus, +input[type="reset"]:focus, +input[type="submit"]:focus { + outline: 0; +} +input[type="button"]:disabled, +input[type="reset"]:disabled, +input[type="submit"]:disabled, +input[type="button"].disabled, +input[type="reset"].disabled, +input[type="submit"].disabled { + background-color: #eaeaea; + color: #bebebe; + cursor: default; + border-color: transparent; +} +input[type="button"] *, +input[type="reset"] *, +input[type="submit"] * { + color: inherit; +} +input[type="button"] *:hover, +input[type="reset"] *:hover, +input[type="submit"] *:hover { + color: inherit; +} +input[type="button"].rounded, +input[type="reset"].rounded, +input[type="submit"].rounded { + border-radius: .325rem; +} +input[type="button"] > [class*=mif-], +input[type="reset"] > [class*=mif-], +input[type="submit"] > [class*=mif-] { + vertical-align: middle; +} +input[type="button"] img, +input[type="reset"] img, +input[type="submit"] img { + height: .875rem; + vertical-align: middle; + margin: 0; +} +input[type="button"].loading-pulse, +input[type="reset"].loading-pulse, +input[type="submit"].loading-pulse { + position: relative; + padding: 0 1.325rem; +} +input[type="button"].loading-pulse:before, +input[type="reset"].loading-pulse:before, +input[type="submit"].loading-pulse:before { + position: absolute; + content: ""; + left: 0; + top: 50%; + margin-top: -10px; + width: 20px; + height: 20px; + background-color: #333; + border-radius: 100%; + -webkit-animation: scaleout 1s infinite ease-in-out; + animation: scaleout 1s infinite ease-in-out; +} +input[type="button"].loading-pulse.lighten:before, +input[type="reset"].loading-pulse.lighten:before, +input[type="submit"].loading-pulse.lighten:before { + background-color: #fff; +} +input[type="button"].loading-cube, +input[type="reset"].loading-cube, +input[type="submit"].loading-cube { + position: relative; + padding: 0 1.325rem; +} +input[type="button"].loading-cube:before, +input[type="reset"].loading-cube:before, +input[type="submit"].loading-cube:before, +input[type="button"].loading-cube:after, +input[type="reset"].loading-cube:after, +input[type="submit"].loading-cube:after { + content: ""; + background-color: #333; + width: 5px; + height: 5px; + position: absolute; + top: 50%; + left: 3px; + margin-top: -8px; + -webkit-animation: cubemove 1.8s infinite ease-in-out; + animation: cubemove 1.8s infinite ease-in-out; +} +input[type="button"].loading-cube:after, +input[type="reset"].loading-cube:after, +input[type="submit"].loading-cube:after { + -webkit-animation-delay: -0.9s; + animation-delay: -0.9s; +} +input[type="button"].loading-cube.lighten:before, +input[type="reset"].loading-cube.lighten:before, +input[type="submit"].loading-cube.lighten:before, +input[type="button"].loading-cube.lighten:after, +input[type="reset"].loading-cube.lighten:after, +input[type="submit"].loading-cube.lighten:after { + background-color: #fff; +} +input[type="button"].dropdown-toggle, +input[type="reset"].dropdown-toggle, +input[type="submit"].dropdown-toggle { + padding-right: 1.625rem; +} +input[type="button"].dropdown-toggle.drop-marker-light:before, +input[type="reset"].dropdown-toggle.drop-marker-light:before, +input[type="submit"].dropdown-toggle.drop-marker-light:before, +input[type="button"].dropdown-toggle.drop-marker-light:after, +input[type="reset"].dropdown-toggle.drop-marker-light:after, +input[type="submit"].dropdown-toggle.drop-marker-light:after { + background-color: #ffffff; +} +input[type="button"].primary, +input[type="reset"].primary, +input[type="submit"].primary { + background: #2086bf; + color: #ffffff; + border-color: #2086bf; +} +input[type="button"].primary:active, +input[type="reset"].primary:active, +input[type="submit"].primary:active { + background: #1b6eae; + color: #ffffff; +} +input[type="button"].success, +input[type="reset"].success, +input[type="submit"].success { + background: #60a917; + color: #ffffff; + border-color: #60a917; +} +input[type="button"].success:active, +input[type="reset"].success:active, +input[type="submit"].success:active { + background: #128023; + color: #ffffff; +} +input[type="button"].danger, +input[type="reset"].danger, +input[type="submit"].danger, +input[type="button"].alert, +input[type="reset"].alert, +input[type="submit"].alert { + background: #ce352c; + color: #ffffff; + border-color: #ce352c; +} +input[type="button"].danger:active, +input[type="reset"].danger:active, +input[type="submit"].danger:active, +input[type="button"].alert:active, +input[type="reset"].alert:active, +input[type="submit"].alert:active { + background: #9a1616; + color: #ffffff; +} +input[type="button"].info, +input[type="reset"].info, +input[type="submit"].info { + background: #59cde2; + color: #ffffff; + border-color: #59cde2; +} +input[type="button"].info:active, +input[type="reset"].info:active, +input[type="submit"].info:active { + background: #1ba1e2; + color: #ffffff; +} +input[type="button"].warning, +input[type="reset"].warning, +input[type="submit"].warning { + background: #fa6800; + color: #ffffff; + border-color: #fa6800; +} +input[type="button"].warning:active, +input[type="reset"].warning:active, +input[type="submit"].warning:active { + background: #bf5a15; + color: #ffffff; +} +input[type="button"].link, +input[type="reset"].link, +input[type="submit"].link { + background: transparent; + color: #2086bf; + border-color: transparent; + text-decoration: underline; +} +input[type="button"].link:hover, +input[type="reset"].link:hover, +input[type="submit"].link:hover, +input[type="button"].link:active, +input[type="reset"].link:active, +input[type="submit"].link:active { + background: transparent; + color: #114968; + border-color: transparent; +} +.switch, +.switch-original { + display: inline-block; + margin: 0 .625rem 0 0; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; +} +.switch input, +.switch-original input { + position: absolute; + opacity: 0; + width: 0.0625rem; + height: 0.0625rem; +} +.switch .check, +.switch-original .check, +.switch .caption, +.switch-original .caption { + display: inline-block; + vertical-align: middle; + line-height: 18px; +} +.switch .check { + width: 36px; + height: 16px; + background-color: #929292; + border-radius: 8px; + overflow: visible; + position: relative; +} +.switch .check:before { + position: absolute; + display: block; + content: ""; + width: 22px; + height: 22px; + z-index: 2; + margin-top: -4px; + margin-left: -3px; + border-radius: 50%; + background-color: #ffffff; + box-shadow: 0 2px 4px rgba(0, 0, 0, 0.35); +} +.switch input:checked ~ .check { + background-color: #008287; +} +.switch input:not(:checked) ~ .check:before { + background-color: #ffffff; + transition: all 0.2s linear; +} +.switch input:checked ~ .check { + background-color: #008287; +} +.switch input:checked ~ .check:before { + -webkit-transform: translateX(22px); + transform: translateX(22px); + transition: all 0.2s linear; +} +.switch input:disabled ~ .check { + background-color: #D5D5D5; +} +.switch input:disabled ~ .check:before { + background-color: #BDBDBD; +} +.switch-original .caption { + margin: 0 5px; +} +.switch-original .check { + position: relative; + height: 1.125rem; + width: 2.8125rem; + outline: 2px #a6a6a6 solid; + border: 1px #fff solid; + cursor: pointer; + background: #A6A6A6; + z-index: 1; + display: inline-block; + vertical-align: middle; +} +.switch-original .check:after { + position: absolute; + left: -1px; + top: -1px; + display: block; + content: ""; + height: 1rem; + width: .5625rem; + outline: 2px #333 solid; + border: 1px #333 solid; + cursor: pointer; + background: #333; + z-index: 2; + transition: all 0.2s linear; +} +.switch-original input[type="checkbox"]:focus ~ .check { + outline: 1px #999999 dotted; +} +.switch-original input[type="checkbox"]:checked ~ .check { + background: #008287; +} +.switch-original input[type="checkbox"]:checked ~ .check:after { + left: auto; + -webkit-transform: translateX(2rem); + transform: translateX(2rem); + transition: all 0.2s linear; +} +.switch-original input[type="checkbox"]:disabled ~ .check { + background-color: #e6e6e6; + border-color: #ffffff; +} +.switch-original input[type="checkbox"]:disabled ~ .check:after { + background-color: #8a8a8a; + outline-color: #8a8a8a; + border-color: #8a8a8a; +} +.input-control.range input[type=range] { + border: 0; + box-sizing: border-box; + line-height: 1; + background-color: transparent; + cursor: pointer; + -webkit-appearance: none; + width: 100%; +} +.input-control.range input[type=range]::-webkit-slider-thumb { + -webkit-appearance: none; +} +.input-control.range input[type=range]:focus { + outline: none; +} +.input-control.range input[type=range]::-ms-track { + width: 100%; + cursor: pointer; + background: transparent; + border-color: transparent; + color: transparent; +} +.input-control.range input[type=range]::-webkit-slider-thumb { + -webkit-appearance: none; + width: 1em; + height: 1em; + margin-top: 0; + background-color: #555555; + border: 2px solid #555555; + cursor: pointer; +} +.input-control.range input[type=range]::-moz-range-thumb { + width: 1em; + height: 1em; + margin-top: 0; + background-color: #555555; + border: 2px solid #555555; + cursor: pointer; + border-radius: 0; + margin: 0; +} +.input-control.range input[type=range]::-ms-thumb { + width: 1em; + height: 1em; + margin-top: 0; + background-color: #555555; + border: 2px solid #555555; + cursor: pointer; +} +.input-control.range input[type=range]:hover::-webkit-slider-thumb { + border-color: #373737; + background-color: #1d1d1d; +} +.input-control.range input[type=range]:hover::-moz-range-thumb { + border-color: #373737; + background-color: #1d1d1d; +} +.input-control.range input[type=range]:hover::-ms-thumb { + border-color: #373737; + background-color: #1d1d1d; +} +.input-control.range input[type=range]:active::-webkit-slider-thumb { + border-color: #373737; +} +.input-control.range input[type=range]:active::-moz-range-thumb { + border-color: #373737; +} +.input-control.range input[type=range]:active::-ms-thumb { + border-color: #373737; +} +.input-control.range input[type=range]::-webkit-slider-runnable-track { + width: 100%; + cursor: pointer; + height: 100%; + background-color: #00aba9; + transition: background .3s ease; +} +.input-control.range input[type=range]::-moz-range-track { + width: 100%; + cursor: pointer; + height: 100%; + background-color: #00aba9; + transition: background .3s ease; +} +.input-control.range input[type=range]::-ms-track { + background: #00aba9; + border-color: transparent; + color: transparent; + height: 1.25em; +} +.input-control.range input[type=range]::-ms-fill-lower { + background: #00aba9; +} +.input-control.range input[type=range]::-ms-fill-upper { + display: none; +} +.input-control.range input[type=range]::-moz-range-track { + height: 1.25em; +} +.input-control.range.big-input { + height: 2.125rem; +} +.input-control.range.big-input input[type=range] { + padding: 0; +} +.input-control.range.big-input input[type=range]::-moz-range-track { + height: 1.2em; +} +.progress, +.progress-bar { + display: block; + position: relative; + width: 100%; + height: auto; + margin: .625rem 0; + background: #eeeeee; + overflow: hidden; +} +.progress:before, +.progress-bar:before, +.progress:after, +.progress-bar:after { + display: table; + content: ""; +} +.progress:after, +.progress-bar:after { + clear: both; +} +.progress .bar, +.progress-bar .bar { + position: relative; + display: block; + float: left; + width: 0; + background-color: #1ba1e2; + z-index: 1; + text-align: center; + height: .625rem; + line-height: .625rem; + color: #ffffff; +} +.progress.small > .bar, +.progress-bar.small > .bar { + height: .3125rem; +} +.progress.large > .bar, +.progress-bar.large > .bar { + height: 1rem; +} +.progress.gradient-bar .bar, +.progress-bar.gradient-bar .bar { + background: linear-gradient(to right, #4cd964, #5ac8fa, #007aff, #34aadc, #5856d6, #ff2d55); +} +.progress.ani .bar, +.progress-bar.ani .bar { + -webkit-animation: ani-bg-stripes 2s linear infinite; + animation: ani-bg-stripes 2s linear infinite; +} +.popover { + display: block; + min-width: 12.5rem; + height: auto; + position: relative; + background-color: #eeeeee; + padding: 1.25rem; +} +.popover * { + color: inherit; +} +.popover.popover-shadow { + box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.4); +} +.popover:before { + content: ""; + width: .625rem; + height: .625rem; + display: block; + position: absolute; + background-color: inherit; + left: -0.3125rem; + top: 50%; + margin-top: -0.3125rem; + -webkit-transform: rotate(45deg); + transform: rotate(45deg); +} +.popover.marker-on-top:before { + top: 0; + left: 50%; + margin-left: -0.3125rem; +} +.popover.marker-on-right:before { + top: 50%; + margin-top: -0.3125rem; + left: 100%; + margin-left: -0.3125rem; +} +.popover.marker-on-bottom:before { + top: 100%; + margin-left: -0.3125rem; + left: 50%; + margin-top: -0.3125rem; +} +.overlay { + position: fixed; + left: 0; + top: 0; + right: 0; + bottom: 0; + background-color: rgba(255, 255, 255, 0.5); + z-index: 1049; +} +.overlay.transparent { + background-color: rgba(255, 255, 255, 0); +} +.window { + display: block; + position: relative; + height: auto; + width: 100%; + background-color: #ffffff; + box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.3); +} +.window-caption { + position: relative; + background-color: #ffffff; + padding: .4375rem .3125rem; + border-bottom: 1px #e9e9e9 solid; + border-top: 0; + cursor: default; +} +.window-caption .window-caption-title { + font-size: .875rem; + font-style: normal; + font-weight: 700; +} +.window-caption .window-caption-icon { + margin-left: .3125rem; +} +.window-caption .window-caption-icon * { + height: 1rem; + width: 1rem; +} +.window-caption .window-caption-icon ~ .window-caption-title { + padding-left: .3125rem; +} +.window-caption .btn-close, +.window-caption .btn-min, +.window-caption .btn-max { + position: absolute; + height: 1.5rem; + width: 1.5rem; + min-height: 1.5rem; + text-align: center; + vertical-align: middle; + font-size: 1rem; + font-weight: normal; + padding: 0 0 .625rem 0; + z-index: 3; + outline: none; + cursor: pointer; + display: block; + background-color: #ffffff; + color: #777777; + top: .25rem; + right: .25rem; +} +.window-caption .btn-close:hover, +.window-caption .btn-min:hover, +.window-caption .btn-max:hover { + background-color: #cde6f7; + color: #2a8dd4; +} +.window-caption .btn-close:hover:after, +.window-caption .btn-min:hover:after, +.window-caption .btn-max:hover:after { + border-color: #2a8dd4; +} +.window-caption .btn-close:active, +.window-caption .btn-min:active, +.window-caption .btn-max:active { + background-color: #92c0e0; + color: #ffffff; +} +.window-caption .btn-close:after, +.window-caption .btn-min:after, +.window-caption .btn-max:after { + border-color: #777777; + content: '\D7'; + position: absolute; + left: 50%; + top: -2px; + margin-left: -0.25em; +} +.window-caption .btn-min:after, +.window-caption .btn-max:after { + display: block; + position: absolute; + width: .625rem; + height: .625rem; + border: 0 #000 solid; + border-bottom-width: 2px; + content: ' '; + bottom: .375rem; + left: 50%; + margin-left: -0.375rem; + top: auto; +} +.window-caption .btn-max:after { + height: .375rem; + border: 1px #000 solid; + border-top-width: 2px; +} +.window-caption .btn-max { + right: 1.8125rem; +} +.window-caption .btn-min { + right: 3.375rem; +} +.window-caption .btn-close:after { + margin-top: .1875rem; + margin-left: -0.3125rem; +} +.window-content { + position: relative; + width: 100%; + height: auto; + display: block; + padding: .25rem; +} +.window.success { + box-shadow: 0 0 25px 0 rgba(0, 128, 0, 0.7); +} +.window.success .window-caption { + background-color: #60a917; + color: #ffffff; +} +.window.error { + box-shadow: 0 0 25px 0 rgba(128, 0, 0, 0.7); +} +.window.error .window-caption { + background-color: #ce352c; + color: #ffffff; +} +.window.warning { + box-shadow: 0 0 25px 0 rgba(255, 165, 0, 0.7); +} +.window.warning .window-caption { + background-color: #fa6800; + color: #ffffff; +} +.simple-list, +.numeric-list { + list-style: none; + counter-reset: li; + padding-left: 0; + margin-left: .625rem; + color: #262626; +} +.simple-list li ul, +.numeric-list li ul, +.simple-list li ol, +.numeric-list li ol { + list-style: none; + padding-left: 1.5625rem; +} +.simple-list li, +.numeric-list li { + position: relative; + padding: 4px 12px; + list-style: none; + color: inherit; +} +.simple-list li:before, +.numeric-list li:before { + position: absolute; + top: 50%; + margin-top: -0.8rem; + left: -0.625rem; + color: #59cde2; + font-size: 2rem; + vertical-align: middle; + width: 1.25rem; + height: 1.25rem; + line-height: 1.25rem; +} +.simple-list ul, +.numeric-list ul { + margin: 4px .5em 0; +} +.simple-list > li:before { + content: "\2022"; +} +.simple-list ul li:before { + content: "\00B7"; +} +.numeric-list > li { + padding: 4px 12px 4px 18px; +} +.numeric-list > li:before { + content: counter(li); + counter-increment: li; + font-size: .8rem ; + color: #ffffff; + background-color: #59cde2; + border-radius: 50%; + text-align: center; + margin-top: -0.65rem; +} +.numeric-list.square-marker > li:before, +.numeric-list.square-bullet > li:before { + border-radius: 0; +} +.simple-list.large-bullet li, +.numeric-list.large-bullet li { + margin: 6px 0; + padding-left: 2rem; +} +.simple-list.large-bullet li:before, +.numeric-list.large-bullet li:before { + line-height: 2rem; + width: 2rem; + height: 2rem; + margin-top: -1rem; +} +.simple-list.large-bullet li { + padding-left: 1rem; +} +.simple-list.large-bullet li:before { + margin-top: -1.3rem; + font-size: 3rem; +} +.simple-list.dark-bullet li:before { + color: #1d1d1d; +} +.simple-list.alert-bullet li:before { + color: #ce352c; +} +.simple-list.info-bullet li:before { + color: #1ba1e2; +} +.simple-list.success-bullet li:before { + color: #60a917; +} +.simple-list.warning-bullet li:before { + color: #e3c800; +} +.simple-list.red-bullet li:before { + color: #ce352c; +} +.simple-list.blue-bullet li:before { + color: #1ba1e2; +} +.simple-list.green-bullet li:before { + color: #60a917; +} +.simple-list.yellow-bullet li:before { + color: #e3c800; +} +.numeric-list.dark-bullet li:before { + background-color: #1d1d1d; +} +.numeric-list.alert-bullet li:before { + background-color: #ce352c; +} +.numeric-list.info-bullet li:before { + background-color: #1ba1e2; +} +.numeric-list.success-bullet li:before { + background-color: #60a917; +} +.numeric-list.warning-bullet li:before { + background-color: #e3c800; +} +.numeric-list.red-bullet li:before { + background-color: #ce352c; +} +.numeric-list.blue-bullet li:before { + background-color: #1ba1e2; +} +.numeric-list.green-bullet li:before { + background-color: #60a917; +} +.numeric-list.yellow-bullet li:before { + background-color: #e3c800; +} +.step-list { + margin: 0 0 0 2rem; + padding: 0; + list-style-type: none; + counter-reset: li; +} +.step-list > li { + border-left: 1px #ccc solid; + position: relative; + padding: 0 .625rem; + margin: .625rem; + vertical-align: top; +} +.step-list > li:before { + position: absolute; + content: counter(li); + counter-increment: li; + font-size: 2rem; + color: #999999; + left: 0; + top: .3125rem; + margin-left: -1.5rem; +} +.image-container { + display: inline-block; + position: relative; + vertical-align: middle; + max-width: 100%; + background-color: transparent; +} +.image-container .frame { + background-color: #ffffff; + position: relative; + width: 100%; + height: 100%; +} +.image-container img { + display: block; + width: 100%; + height: 100%; +} +.image-container .image-overlay { + position: absolute; + top: 0; + bottom: 0; + left: 0; + right: 0; + opacity: 0; + overflow: hidden; + font-size: .875rem; + line-height: 1rem; + padding: 1em 1.5em; + background-color: rgba(27, 161, 226, 0.7); + color: #ffffff; + text-align: center; + border-radius: inherit; + transition: all 0.65s ease; +} +.image-container .image-overlay:hover { + opacity: 1; +} +.image-container .image-overlay:hover:before, +.image-container .image-overlay:hover:after { + opacity: 1; + -webkit-transform: scale(1); + transform: scale(1); +} +.image-container .image-overlay:before, +.image-container .image-overlay:after { + display: block; + position: absolute; + content: ""; + border: 1px solid rgba(255, 255, 255, 0.7); + top: 1em; + bottom: 1em; + left: 1em; + right: 1em; + opacity: 0; + border-radius: inherit; + -webkit-transform: scale(1.5); + transform: scale(1.5); + transition: all 0.65s ease; +} +.image-container .image-overlay:after { + border-left: none; + border-right: none; + bottom: 1em; + top: 1em; +} +.image-container .image-overlay:before { + border-top: none; + border-bottom: none; + bottom: 1em; + top: 1em; +} +.image-container.diamond { + overflow: hidden; +} +.image-container.diamond .frame { + -webkit-transform: rotate(45deg); + transform: rotate(45deg); + overflow: hidden; +} +.image-container.diamond .frame img, +.image-container.diamond .frame .image-replacer { + -webkit-transform: rotate(-45deg); + transform: rotate(-45deg); +} +.image-container.rounded img { + border-radius: 0.3125rem; +} +.image-container.bordered .frame { + border: 1px #eeeeee solid; + padding: .5rem; +} +.image-container.polaroid .frame { + border: 1px #eeeeee solid; + padding: .5rem .5rem 2rem; +} +.image-container.handing { + margin-top: 20px; +} +.image-container.handing .frame { + border: 1px #eeeeee solid; + position: relative; + padding: .5rem; +} +.image-container.handing .frame:after { + content: ""; + position: absolute; + width: .625rem; + height: .625rem; + background-color: #647687; + border-radius: 50%; + top: -20%; + left: 50%; + margin-left: -0.3125rem; + z-index: 3; + box-shadow: 0 2px 4px rgba(0, 0, 0, 0.35); +} +.image-container.handing.image-format-hd .frame:after { + top: -25%; +} +.image-container.handing.image-format-square .frame:after { + top: -15%; +} +.image-container.handing:after { + position: absolute; + content: ""; + background-color: transparent; + border-top: 1px solid #eeeeee; + -webkit-transform: rotate(-16deg); + transform: rotate(-16deg); + z-index: 2; + top: 0; + left: 0; + width: 50%; + height: 50%; + -webkit-transform-origin: top left; + transform-origin: top left; +} +.image-container.handing:before { + position: absolute; + content: ""; + background-color: transparent; + border-top: 1px solid #eeeeee; + -webkit-transform: rotate(16deg); + transform: rotate(16deg); + z-index: 2; + top: 0; + right: 0; + width: 50%; + height: 50%; + -webkit-transform-origin: top right; + transform-origin: top right; +} +.image-container.handing.ani { + -webkit-transform-origin: 50% -25px; + transform-origin: 50% -25px; + -webkit-animation: swinging 10s ease-in-out 0s infinite; + animation: swinging 10s ease-in-out 0s infinite; +} +.image-container.handing.ani-hover:hover { + -webkit-transform-origin: 50% -25px; + transform-origin: 50% -25px; + -webkit-animation: swinging 5s ease-in-out 0s; + animation: swinging 5s ease-in-out 0s; +} +.ani-spin, +.ani-hover-spin:hover { + -webkit-animation: ani-spin 1.5s linear infinite; + animation: ani-spin 1.5s linear infinite; +} +.ani-spin.ani-fast, +.ani-hover-spin.ani-fast:hover { + -webkit-animation: ani-spin 0.7s linear infinite; + animation: ani-spin 0.7s linear infinite; +} +.ani-spin.ani-slow, +.ani-hover-spin.ani-slow:hover { + -webkit-animation: ani-spin 2.2s linear infinite; + animation: ani-spin 2.2s linear infinite; +} +.ani-pulse, +.ani-hover-pulse:hover { + -webkit-animation: ani-pulse 1.7s infinite; + animation: ani-pulse 1.7s infinite; +} +.ani-pulse.ani-fast, +.ani-hover-pulse.ani-fast:hover { + -webkit-animation: ani-pulse 1s infinite; + animation: ani-pulse 1s infinite; +} +.ani-pulse.ani-slow, +.ani-hover-pulse.ani-slow:hover { + -webkit-animation: ani-pulse 3s infinite; + animation: ani-pulse 3s infinite; +} +.ani-spanner, +.ani-hover-spanner:hover { + transform-origin-x: 90%; + transform-origin-y: 35%; + transform-origin-z: initial; + -webkit-animation: ani-wrench 2.5s ease infinite; + animation: ani-wrench 2.5s ease infinite; +} +.ani-spanner.ani-fast, +.ani-hover-spanner.ani-fast:hover { + -webkit-animation: ani-wrench 1.2s ease infinite; + animation: ani-wrench 1.2s ease infinite; +} +.ani-spanner.ani-slow, +.ani-hover-spanner.ani-slow:hover { + -webkit-animation: ani-wrench 3.7s ease infinite; + animation: ani-wrench 3.7s ease infinite; +} +.ani-ring, +.ani-hover-ring:hover { + transform-origin-x: 50%; + transform-origin-y: 0px; + transform-origin-z: initial; + -webkit-animation: ani-ring 2s ease infinite; + animation: ani-ring 2s ease infinite; +} +.ani-ring.ani-fast, +.ani-hover-ring.ani-fast:hover { + -webkit-animation: ani-ring 1s ease infinite; + animation: ani-ring 1s ease infinite; +} +.ani-ring.ani-slow, +.ani-hover-ring.ani-slow:hover { + -webkit-animation: ani-ring 3s ease infinite; + animation: ani-ring 3s ease infinite; +} +.ani-vertical, +.ani-hover-vertical:hover { + -webkit-animation: ani-vertical 2s ease infinite; + animation: ani-vertical 2s ease infinite; +} +.ani-vertical.ani-fast, +.ani-vertical.ani-fast:hover { + -webkit-animation: ani-vertical 1s ease infinite; + animation: ani-vertical 1s ease infinite; +} +.ani-vertical.ani-slow, +.ani-hover-vertical.ani-slow:hover { + -webkit-animation: ani-vertical 4s ease infinite; + animation: ani-vertical 4s ease infinite; +} +.ani-horizontal, +.ani-hover-horizontal:hover { + -webkit-animation: ani-horizontal 2s ease infinite; + animation: ani-horizontal 2s ease infinite; +} +.ani-horizontal.ani-fast, +.ani-horizontal.ani-fast:hover { + -webkit-animation: ani-horizontal 1s ease infinite; + animation: ani-horizontal 1s ease infinite; +} +.ani-horizontal.ani-slow, +.ani-horizontal.ani-slow:hover { + -webkit-animation: ani-horizontal 3s ease infinite; + animation: ani-horizontal 3s ease infinite; +} +.ani-flash, +.ani-hover-flash:hover { + -webkit-animation: ani-flash 2s ease infinite; + animation: ani-flash 2s ease infinite; +} +.ani-flash.ani-fast, +.ani-hover-flash.ani-fast:hover { + -webkit-animation: ani-flash 1s ease infinite; + animation: ani-flash 1s ease infinite; +} +.ani-flash.ani-slow, +.ani-hover-flash.ani-slow:hover { + -webkit-animation: ani-flash 3s ease infinite; + animation: ani-flash 3s ease infinite; +} +.ani-bounce, +.ani-hover-bounce:hover { + -webkit-animation: ani-bounce 2s ease infinite; + animation: ani-bounce 2s ease infinite; +} +.ani-bounce.ani-fast, +.ani-hover-bounce.ani-fast:hover { + -webkit-animation: ani-bounce 1s ease infinite; + animation: ani-bounce 1s ease infinite; +} +.ani-bounce.ani-slow, +.ani-hover-bounce.ani-slow:hover { + -webkit-animation: ani-bounce 3s ease infinite; + animation: ani-bounce 3s ease infinite; +} +.ani-float, +.ani-hover-float:hover { + -webkit-animation: ani-float 2s linear infinite; + animation: ani-float 2s linear infinite; +} +.ani-float.ani-fast, +.ani-hover-float.ani-fast:hover { + -webkit-animation: ani-float 1s linear infinite; + animation: ani-float 1s linear infinite; +} +.ani-float.ani-slow, +.ani-hover-float.ani-slow:hover { + -webkit-animation: ani-float 3s linear infinite; + animation: ani-float 3s linear infinite; +} +.ani-heartbeat, +.ani-hover-heartbeat:hover { + -webkit-animation: ani-heartbeat 2s linear infinite; + animation: ani-heartbeat 2s linear infinite; +} +.ani-heartbeat.ani-fast, +.ani-hover-heartbeat.ani-fast:hover { + -webkit-animation: ani-heartbeat 1s linear infinite; + animation: ani-heartbeat 1s linear infinite; +} +.ani-heartbeat.ani-slow, +.ani-hover-heartbeat.ani-slow:hover { + -webkit-animation: ani-heartbeat 3s linear infinite; + animation: ani-heartbeat 3s linear infinite; +} +.ani-shake, +.ani-hover-shake:hover { + -webkit-animation: ani-wrench 2.5s ease infinite; + animation: ani-wrench 2.5s ease infinite; +} +.ani-shake.ani-fast, +.ani-hover-shake.ani-fast:hover { + -webkit-animation: ani-wrench 1.2s ease infinite; + animation: ani-wrench 1.2s ease infinite; +} +.ani-shake.ani-slow, +.ani-hover-shake.ani-slow:hover { + -webkit-animation: ani-wrench 3.7s ease infinite; + animation: ani-wrench 3.7s ease infinite; +} +.ani-shuttle, +.ani-hover-shuttle:hover { + -webkit-animation: ani-shuttle 2s linear infinite; + animation: ani-shuttle 2s linear infinite; +} +.ani-shuttle.ani-fast, +.ani-hover-shuttle.ani-fast:hover { + -webkit-animation: ani-shuttle 1s linear infinite; + animation: ani-shuttle 1s linear infinite; +} +.ani-shuttle.ani-slow, +.ani-hover-shuttle.ani-slow:hover { + -webkit-animation: ani-shuttle 3s linear infinite; + animation: ani-shuttle 3s linear infinite; +} +.ani-pass, +.ani-hover-pass:hover { + -webkit-animation: ani-pass 2s linear infinite; + animation: ani-pass 2s linear infinite; +} +.ani-pass.ani-fast, +.ani-hover-pass.ani-fast:hover { + -webkit-animation: ani-pass 1s linear infinite; + animation: ani-pass 1s linear infinite; +} +.ani-pass.ani-slow, +.ani-hover-pass.ani-slow:hover { + -webkit-animation: ani-pass 3s linear infinite; + animation: ani-pass 3s linear infinite; +} +.ani-ripple, +.ani-hover-ripple:hover { + -webkit-animation: ani-ripple 2s infinite linear; + animation: ani-ripple 2s infinite linear; +} +.ani-ripple.ani-fast, +.ani-hover-ripple.ani-fast:hover { + -webkit-animation: ani-ripple 1s infinite linear; + animation: ani-ripple 1s infinite linear; +} +.ani-ripple.ani-slow, +.ani-hover-ripple.ani-slow:hover { + -webkit-animation: ani-ripple 3s infinite linear; + animation: ani-ripple 3s infinite linear; +} +@-webkit-keyframes swinging { + 0% { + -webkit-transform: rotate(0deg); + transform: rotate(0deg); + } + 5% { + -webkit-transform: rotate(10deg); + transform: rotate(10deg); + } + 10% { + -webkit-transform: rotate(-9deg); + transform: rotate(-9deg); + } + 15% { + -webkit-transform: rotate(8deg); + transform: rotate(8deg); + } + 20% { + -webkit-transform: rotate(-7deg); + transform: rotate(-7deg); + } + 25% { + -webkit-transform: rotate(6deg); + transform: rotate(6deg); + } + 30% { + -webkit-transform: rotate(-5deg); + transform: rotate(-5deg); + } + 35% { + -webkit-transform: rotate(4deg); + transform: rotate(4deg); + } + 40% { + -webkit-transform: rotate(-3deg); + transform: rotate(-3deg); + } + 45% { + -webkit-transform: rotate(2deg); + transform: rotate(2deg); + } + 50% { + -webkit-transform: rotate(0deg); + transform: rotate(0deg); + } + 100% { + -webkit-transform: rotate(0deg); + transform: rotate(0deg); + } +} +@keyframes swinging { + 0% { + -webkit-transform: rotate(0deg); + transform: rotate(0deg); + } + 5% { + -webkit-transform: rotate(10deg); + transform: rotate(10deg); + } + 10% { + -webkit-transform: rotate(-9deg); + transform: rotate(-9deg); + } + 15% { + -webkit-transform: rotate(8deg); + transform: rotate(8deg); + } + 20% { + -webkit-transform: rotate(-7deg); + transform: rotate(-7deg); + } + 25% { + -webkit-transform: rotate(6deg); + transform: rotate(6deg); + } + 30% { + -webkit-transform: rotate(-5deg); + transform: rotate(-5deg); + } + 35% { + -webkit-transform: rotate(4deg); + transform: rotate(4deg); + } + 40% { + -webkit-transform: rotate(-3deg); + transform: rotate(-3deg); + } + 45% { + -webkit-transform: rotate(2deg); + transform: rotate(2deg); + } + 50% { + -webkit-transform: rotate(0deg); + transform: rotate(0deg); + } + 100% { + -webkit-transform: rotate(0deg); + transform: rotate(0deg); + } +} +@-webkit-keyframes scaleout { + 0% { + -webkit-transform: scale(0); + transform: scale(0); + } + 100% { + -webkit-transform: scale(1); + transform: scale(1); + opacity: 0; + } +} +@keyframes scaleout { + 0% { + -webkit-transform: scale(0); + transform: scale(0); + } + 100% { + -webkit-transform: scale(1); + transform: scale(1); + opacity: 0; + } +} +@-webkit-keyframes cubemove { + 25% { + -webkit-transform: translateX(10px) rotate(-90deg); + transform: translateX(10px) rotate(-90deg); + } + 50% { + -webkit-transform: translateX(10px) translateY(10px) rotate(-179deg); + transform: translateX(10px) translateY(10px) rotate(-179deg); + } + 50.1% { + -webkit-transform: translateX(10px) translateY(10px) rotate(-180deg); + transform: translateX(10px) translateY(10px) rotate(-180deg); + } + 75% { + -webkit-transform: translateX(0px) translateY(10px) rotate(-270deg); + transform: translateX(0px) translateY(10px) rotate(-270deg); + } + 100% { + -webkit-transform: rotate(-360deg); + transform: rotate(-360deg); + } +} +@keyframes cubemove { + 25% { + -webkit-transform: translateX(10px) rotate(-90deg); + transform: translateX(10px) rotate(-90deg); + } + 50% { + -webkit-transform: translateX(10px) translateY(10px) rotate(-179deg); + transform: translateX(10px) translateY(10px) rotate(-179deg); + } + 50.1% { + -webkit-transform: translateX(10px) translateY(10px) rotate(-180deg); + transform: translateX(10px) translateY(10px) rotate(-180deg); + } + 75% { + -webkit-transform: translateX(0px) translateY(10px) rotate(-270deg); + transform: translateX(0px) translateY(10px) rotate(-270deg); + } + 100% { + -webkit-transform: rotate(-360deg); + transform: rotate(-360deg); + } +} +@-webkit-keyframes orbit { + 0% { + opacity: 1; + -webkit-animation-timing-function: ease-out; + animation-timing-function: ease-out; + -webkit-transform: rotate(225deg); + transform: rotate(225deg); + } + 7% { + -webkit-transform: rotate(345deg); + transform: rotate(345deg); + -webkit-animation-timing-function: linear; + animation-timing-function: linear; + } + 35% { + -webkit-transform: rotate(495deg); + transform: rotate(495deg); + -webkit-animation-timing-function: ease-in-out; + animation-timing-function: ease-in-out; + } + 42% { + -webkit-transform: rotate(690deg); + transform: rotate(690deg); + -webkit-animation-timing-function: linear; + animation-timing-function: linear; + } + 70% { + opacity: 1; + -webkit-transform: rotate(835deg); + transform: rotate(835deg); + -webkit-animation-timing-function: linear; + animation-timing-function: linear; + } + 76% { + opacity: 1; + } + 77% { + -webkit-transform: rotate(955deg); + transform: rotate(955deg); + -webkit-animation-timing-function: ease-in; + animation-timing-function: ease-in; + } + 78% { + -webkit-transform: rotate(955deg); + transform: rotate(955deg); + opacity: 0; + } + 100% { + -webkit-transform: rotate(955deg); + transform: rotate(955deg); + opacity: 0; + } +} +@keyframes orbit { + 0% { + opacity: 1; + -webkit-animation-timing-function: ease-out; + animation-timing-function: ease-out; + -webkit-transform: rotate(225deg); + transform: rotate(225deg); + } + 7% { + -webkit-transform: rotate(345deg); + transform: rotate(345deg); + -webkit-animation-timing-function: linear; + animation-timing-function: linear; + } + 35% { + -webkit-transform: rotate(495deg); + transform: rotate(495deg); + -webkit-animation-timing-function: ease-in-out; + animation-timing-function: ease-in-out; + } + 42% { + -webkit-transform: rotate(690deg); + transform: rotate(690deg); + -webkit-animation-timing-function: linear; + animation-timing-function: linear; + } + 70% { + opacity: 1; + -webkit-transform: rotate(835deg); + transform: rotate(835deg); + -webkit-animation-timing-function: linear; + animation-timing-function: linear; + } + 76% { + opacity: 1; + } + 77% { + -webkit-transform: rotate(955deg); + transform: rotate(955deg); + -webkit-animation-timing-function: ease-in; + animation-timing-function: ease-in; + } + 78% { + -webkit-transform: rotate(955deg); + transform: rotate(955deg); + opacity: 0; + } + 100% { + -webkit-transform: rotate(955deg); + transform: rotate(955deg); + opacity: 0; + } +} +@-webkit-keyframes metro-slide { + 0% { + left: -50%; + } + 100% { + left: 150%; + } +} +@keyframes metro-slide { + 0% { + left: -50%; + } + 100% { + left: 150%; + } +} +@-webkit-keyframes metro-opacity { + 0% { + opacity: 0; + } + 50% { + opacity: .5; + } + 100% { + opacity: 1; + } +} +@keyframes metro-opacity { + 0% { + opacity: 0; + } + 50% { + opacity: .5; + } + 100% { + opacity: 1; + } +} +@-webkit-keyframes ani-spin { + 0% { + -webkit-transform: rotate(0deg); + transform: rotate(0deg); + } + 100% { + -webkit-transform: rotate(359deg); + transform: rotate(359deg); + } +} +@keyframes ani-spin { + 0% { + -webkit-transform: rotate(0deg); + transform: rotate(0deg); + } + 100% { + -webkit-transform: rotate(359deg); + transform: rotate(359deg); + } +} +@-webkit-keyframes ani-pulse { + 0% { + -webkit-transform: rotate(0deg); + transform: rotate(0deg); + } + 100% { + -webkit-transform: rotate(359deg); + transform: rotate(359deg); + } +} +@keyframes ani-pulse { + 0% { + -webkit-transform: rotate(0deg); + transform: rotate(0deg); + } + 100% { + -webkit-transform: rotate(359deg); + transform: rotate(359deg); + } +} +@-webkit-keyframes ani-wrench { + 0% { + -webkit-transform: rotate(-12deg); + transform: rotate(-12deg); + } + 8% { + -webkit-transform: rotate(12deg); + transform: rotate(12deg); + } + 10% { + -webkit-transform: rotate(24deg); + transform: rotate(24deg); + } + 18% { + -webkit-transform: rotate(-24deg); + transform: rotate(-24deg); + } + 20% { + -webkit-transform: rotate(-24deg); + transform: rotate(-24deg); + } + 28% { + -webkit-transform: rotate(24deg); + transform: rotate(24deg); + } + 30% { + -webkit-transform: rotate(24deg); + transform: rotate(24deg); + } + 38% { + -webkit-transform: rotate(-24deg); + transform: rotate(-24deg); + } + 40% { + -webkit-transform: rotate(-24deg); + transform: rotate(-24deg); + } + 48% { + -webkit-transform: rotate(24deg); + transform: rotate(24deg); + } + 50% { + -webkit-transform: rotate(24deg); + transform: rotate(24deg); + } + 58% { + -webkit-transform: rotate(-24deg); + transform: rotate(-24deg); + } + 60% { + -webkit-transform: rotate(-24deg); + transform: rotate(-24deg); + } + 68% { + -webkit-transform: rotate(24deg); + transform: rotate(24deg); + } + 75% { + -webkit-transform: rotate(0deg); + transform: rotate(0deg); + } +} +@keyframes ani-wrench { + 0% { + -webkit-transform: rotate(-12deg); + transform: rotate(-12deg); + } + 8% { + -webkit-transform: rotate(12deg); + transform: rotate(12deg); + } + 10% { + -webkit-transform: rotate(24deg); + transform: rotate(24deg); + } + 18% { + -webkit-transform: rotate(-24deg); + transform: rotate(-24deg); + } + 20% { + -webkit-transform: rotate(-24deg); + transform: rotate(-24deg); + } + 28% { + -webkit-transform: rotate(24deg); + transform: rotate(24deg); + } + 30% { + -webkit-transform: rotate(24deg); + transform: rotate(24deg); + } + 38% { + -webkit-transform: rotate(-24deg); + transform: rotate(-24deg); + } + 40% { + -webkit-transform: rotate(-24deg); + transform: rotate(-24deg); + } + 48% { + -webkit-transform: rotate(24deg); + transform: rotate(24deg); + } + 50% { + -webkit-transform: rotate(24deg); + transform: rotate(24deg); + } + 58% { + -webkit-transform: rotate(-24deg); + transform: rotate(-24deg); + } + 60% { + -webkit-transform: rotate(-24deg); + transform: rotate(-24deg); + } + 68% { + -webkit-transform: rotate(24deg); + transform: rotate(24deg); + } + 75% { + -webkit-transform: rotate(0deg); + transform: rotate(0deg); + } +} +@-webkit-keyframes ani-ring { + 0% { + -webkit-transform: rotate(-15deg); + transform: rotate(-15deg); + } + 2% { + -webkit-transform: rotate(15deg); + transform: rotate(15deg); + } + 4% { + -webkit-transform: rotate(-18deg); + transform: rotate(-18deg); + } + 6% { + -webkit-transform: rotate(18deg); + transform: rotate(18deg); + } + 8% { + -webkit-transform: rotate(-22deg); + transform: rotate(-22deg); + } + 10% { + -webkit-transform: rotate(22deg); + transform: rotate(22deg); + } + 12% { + -webkit-transform: rotate(-18deg); + transform: rotate(-18deg); + } + 14% { + -webkit-transform: rotate(18deg); + transform: rotate(18deg); + } + 16% { + -webkit-transform: rotate(-12deg); + transform: rotate(-12deg); + } + 18% { + -webkit-transform: rotate(12deg); + transform: rotate(12deg); + } + 20% { + -webkit-transform: rotate(0deg); + transform: rotate(0deg); + } +} +@keyframes ani-ring { + 0% { + -webkit-transform: rotate(-15deg); + transform: rotate(-15deg); + } + 2% { + -webkit-transform: rotate(15deg); + transform: rotate(15deg); + } + 4% { + -webkit-transform: rotate(-18deg); + transform: rotate(-18deg); + } + 6% { + -webkit-transform: rotate(18deg); + transform: rotate(18deg); + } + 8% { + -webkit-transform: rotate(-22deg); + transform: rotate(-22deg); + } + 10% { + -webkit-transform: rotate(22deg); + transform: rotate(22deg); + } + 12% { + -webkit-transform: rotate(-18deg); + transform: rotate(-18deg); + } + 14% { + -webkit-transform: rotate(18deg); + transform: rotate(18deg); + } + 16% { + -webkit-transform: rotate(-12deg); + transform: rotate(-12deg); + } + 18% { + -webkit-transform: rotate(12deg); + transform: rotate(12deg); + } + 20% { + -webkit-transform: rotate(0deg); + transform: rotate(0deg); + } +} +@-webkit-keyframes ani-vertical { + 0% { + -webkit-transform: translate(0, -3px); + transform: translate(0, -3px); + } + 4% { + -webkit-transform: translate(0, 3px); + transform: translate(0, 3px); + } + 8% { + -webkit-transform: translate(0, -3px); + transform: translate(0, -3px); + } + 12% { + -webkit-transform: translate(0, 3px); + transform: translate(0, 3px); + } + 16% { + -webkit-transform: translate(0, -3px); + transform: translate(0, -3px); + } + 20% { + -webkit-transform: translate(0, 3px); + transform: translate(0, 3px); + } + 22% { + -webkit-transform: translate(0, 0); + transform: translate(0, 0); + } +} +@keyframes ani-vertical { + 0% { + -webkit-transform: translate(0, -3px); + transform: translate(0, -3px); + } + 4% { + -webkit-transform: translate(0, 3px); + transform: translate(0, 3px); + } + 8% { + -webkit-transform: translate(0, -3px); + transform: translate(0, -3px); + } + 12% { + -webkit-transform: translate(0, 3px); + transform: translate(0, 3px); + } + 16% { + -webkit-transform: translate(0, -3px); + transform: translate(0, -3px); + } + 20% { + -webkit-transform: translate(0, 3px); + transform: translate(0, 3px); + } + 22% { + -webkit-transform: translate(0, 0); + transform: translate(0, 0); + } +} +@-webkit-keyframes ani-horizontal { + 0% { + -webkit-transform: translate(0, 0); + transform: translate(0, 0); + } + 6% { + -webkit-transform: translate(5px, 0); + transform: translate(5px, 0); + } + 12% { + -webkit-transform: translate(0, 0); + transform: translate(0, 0); + } + 18% { + -webkit-transform: translate(5px, 0); + transform: translate(5px, 0); + } + 24% { + -webkit-transform: translate(0, 0); + transform: translate(0, 0); + } + 30% { + -webkit-transform: translate(5px, 0); + transform: translate(5px, 0); + } + 36% { + -webkit-transform: translate(0, 0); + transform: translate(0, 0); + } +} +@keyframes ani-horizontal { + 0% { + -webkit-transform: translate(0, 0); + transform: translate(0, 0); + } + 6% { + -webkit-transform: translate(5px, 0); + transform: translate(5px, 0); + } + 12% { + -webkit-transform: translate(0, 0); + transform: translate(0, 0); + } + 18% { + -webkit-transform: translate(5px, 0); + transform: translate(5px, 0); + } + 24% { + -webkit-transform: translate(0, 0); + transform: translate(0, 0); + } + 30% { + -webkit-transform: translate(5px, 0); + transform: translate(5px, 0); + } + 36% { + -webkit-transform: translate(0, 0); + transform: translate(0, 0); + } +} +@-webkit-keyframes ani-flash { + 0%, + 100%, + 50% { + opacity: 1; + } + 25%, + 75% { + opacity: 0; + } +} +@keyframes ani-flash { + 0%, + 100%, + 50% { + opacity: 1; + } + 25%, + 75% { + opacity: 0; + } +} +@-webkit-keyframes ani-bounce { + 0%, + 10%, + 20%, + 50%, + 80% { + -webkit-transform: translateY(0); + transform: translateY(0); + } + 40% { + -webkit-transform: translateY(-15px); + transform: translateY(-15px); + } + 60% { + -webkit-transform: translateY(-15px); + transform: translateY(-15px); + } +} +@keyframes ani-bounce { + 0%, + 10%, + 20%, + 50%, + 80% { + -webkit-transform: translateY(0); + transform: translateY(0); + } + 40% { + -webkit-transform: translateY(-15px); + transform: translateY(-15px); + } + 60% { + -webkit-transform: translateY(-15px); + transform: translateY(-15px); + } +} +@-webkit-keyframes ani-float { + 0% { + -webkit-transform: translateY(0); + transform: translateY(0); + } + 50% { + -webkit-transform: translateY(-6px); + transform: translateY(-6px); + } + 100% { + -webkit-transform: translateY(0); + transform: translateY(0); + } +} +@keyframes ani-float { + 0% { + -webkit-transform: translateY(0); + transform: translateY(0); + } + 50% { + -webkit-transform: translateY(-6px); + transform: translateY(-6px); + } + 100% { + -webkit-transform: translateY(0); + transform: translateY(0); + } +} +@-webkit-keyframes ani-heartbeat { + 0% { + -webkit-transform: scale(1.1); + transform: scale(1.1); + } + 50% { + -webkit-transform: scale(0.8); + transform: scale(0.8); + } + 100% { + -webkit-transform: scale(1.1); + transform: scale(1.1); + } +} +@keyframes ani-heartbeat { + 0% { + -webkit-transform: scale(1.1); + transform: scale(1.1); + } + 50% { + -webkit-transform: scale(0.8); + transform: scale(0.8); + } + 100% { + -webkit-transform: scale(1.1); + transform: scale(1.1); + } +} +@-webkit-keyframes ani-shuttle { + 0% { + -webkit-transform: scale(1); + transform: scale(1); + } + 10%, + 20% { + -webkit-transform: scale(0.9) rotate(-8deg); + transform: scale(0.9) rotate(-8deg); + } + 30%, + 50%, + 70% { + -webkit-transform: scale(1.3) rotate(8deg); + transform: scale(1.3) rotate(8deg); + } + 40%, + 60% { + -webkit-transform: scale(1.3) rotate(-8deg); + transform: scale(1.3) rotate(-8deg); + } + 80% { + -webkit-transform: scale(1) rotate(0); + transform: scale(1) rotate(0); + } +} +@keyframes ani-shuttle { + 0% { + -webkit-transform: scale(1); + transform: scale(1); + } + 10%, + 20% { + -webkit-transform: scale(0.9) rotate(-8deg); + transform: scale(0.9) rotate(-8deg); + } + 30%, + 50%, + 70% { + -webkit-transform: scale(1.3) rotate(8deg); + transform: scale(1.3) rotate(8deg); + } + 40%, + 60% { + -webkit-transform: scale(1.3) rotate(-8deg); + transform: scale(1.3) rotate(-8deg); + } + 80% { + -webkit-transform: scale(1) rotate(0); + transform: scale(1) rotate(0); + } +} +@-webkit-keyframes ani-pass { + 0% { + -webkit-transform: translateX(-50%); + transform: translateX(-50%); + opacity: 0; + } + 50% { + -webkit-transform: translateX(0%); + transform: translateX(0%); + opacity: 1; + } + 100% { + -webkit-transform: translateX(50%); + transform: translateX(50%); + opacity: 0; + } +} +@keyframes ani-pass { + 0% { + -webkit-transform: translateX(-50%); + transform: translateX(-50%); + opacity: 0; + } + 50% { + -webkit-transform: translateX(0%); + transform: translateX(0%); + opacity: 1; + } + 100% { + -webkit-transform: translateX(50%); + transform: translateX(50%); + opacity: 0; + } +} +@-webkit-keyframes ani-ripple { + 0% { + opacity: .6; + } + 50% { + -webkit-transform: scale(1.8); + transform: scale(1.8); + opacity: 0; + } + 100% { + opacity: 0; + } +} +@keyframes ani-ripple { + 0% { + opacity: .6; + } + 50% { + -webkit-transform: scale(1.8); + transform: scale(1.8); + opacity: 0; + } + 100% { + opacity: 0; + } +} +@-webkit-keyframes ani-shrink { + 0% { + -webkit-transform: scale(1); + transform: scale(1); + } + 90% { + -webkit-transform: scale(1); + transform: scale(1); + } + 100% { + -webkit-transform: scale(0.5); + transform: scale(0.5); + } +} +@keyframes ani-shrink { + 0% { + -webkit-transform: scale(1); + transform: scale(1); + } + 90% { + -webkit-transform: scale(1); + transform: scale(1); + } + 100% { + -webkit-transform: scale(0.5); + transform: scale(0.5); + } +} +@-webkit-keyframes ani-drop { + 0% { + -webkit-transform: translateY(-50px); + transform: translateY(-50px); + } + 25% { + -webkit-transform: translate(0); + transform: translate(0); + } + 100% { + -webkit-transform: translate(0); + transform: translate(0); + } +} +@keyframes ani-drop { + 0% { + -webkit-transform: translateY(-50px); + transform: translateY(-50px); + } + 25% { + -webkit-transform: translate(0); + transform: translate(0); + } + 100% { + -webkit-transform: translate(0); + transform: translate(0); + } +} +@-webkit-keyframes ani-drop2 { + 0% { + -webkit-transform: translateY(-50px); + transform: translateY(-50px); + } + 50% { + -webkit-transform: translate(0); + transform: translate(0); + } + 100% { + -webkit-transform: translate(0); + transform: translate(0); + } +} +@keyframes ani-drop2 { + 0% { + -webkit-transform: translateY(-50px); + transform: translateY(-50px); + } + 50% { + -webkit-transform: translate(0); + transform: translate(0); + } + 100% { + -webkit-transform: translate(0); + transform: translate(0); + } +} +@-webkit-keyframes ani-drop3 { + 0% { + -webkit-transform: translateY(-50px); + transform: translateY(-50px); + } + 75% { + -webkit-transform: translate(0); + transform: translate(0); + } + 100% { + -webkit-transform: translate(0); + transform: translate(0); + } +} +@keyframes ani-drop3 { + 0% { + -webkit-transform: translateY(-50px); + transform: translateY(-50px); + } + 75% { + -webkit-transform: translate(0); + transform: translate(0); + } + 100% { + -webkit-transform: translate(0); + transform: translate(0); + } +} +@-webkit-keyframes ani-pre-spin { + 0% { + -webkit-transform: rotate(0deg); + transform: rotate(0deg); + } + 100% { + -webkit-transform: rotate(360deg); + transform: rotate(360deg); + } +} +@keyframes ani-pre-spin { + 0% { + -webkit-transform: rotate(0deg); + transform: rotate(0deg); + } + 100% { + -webkit-transform: rotate(360deg); + transform: rotate(360deg); + } +} +@-webkit-keyframes ani-bg-stripes { + from { + background-position: 40px 0; + } + to { + background-position: 0 0; + } +} +@keyframes ani-bg-stripes { + from { + background-position: 40px 0; + } + to { + background-position: 0 0; + } +} +.calendar { + min-width: 13.75rem; + border: 1px #eeeeee solid; + font-size: .75rem; + padding: .3125rem; + background-color: #ffffff; +} +.calendar .calendar-grid { + margin: 0; + padding: 0; +} +.calendar .calendar-row { + margin: 0 0 .3125rem; + width: 100%; +} +.calendar .calendar-row:before, +.calendar .calendar-row:after { + display: table; + content: ""; +} +.calendar .calendar-row:after { + clear: both; +} +.calendar .calendar-row:last-child { + margin-bottom: 0; +} +.calendar .calendar-cell { + width: 12.46201429%; + margin: 0 0 0 2.12765%; + display: block; + float: left; +} +.calendar .calendar-cell:first-child { + margin-left: 0; +} +.calendar .calendar-cell.sel-month { + width: 41.64134286%; +} +.calendar .calendar-cell.sel-year { + width: 48.936175%; +} +.calendar .calendar-cell.sel-plus, +.calendar .calendar-cell.sel-minus { + width: 23.4042625%; +} +.calendar .calendar-cell.month-cell, +.calendar .calendar-cell.year-cell { + width: 23.4042625%; +} +.calendar .calendar-actions .button { + margin: .15625rem; +} +.calendar .day-of-week { + padding: .3125rem; + cursor: default; +} +.calendar a { + display: block; + padding: .3125rem 0; +} +.calendar a:hover { + background-color: #75c7ee; + color: #ffffff; + border-radius: inherit; +} +.calendar .calendar-header { + background-color: #59cde2; + color: #ffffff; +} +.calendar .calendar-header a { + color: #ffffff; + padding: .325rem; +} +.calendar .calendar-header a:hover { + background-color: #47b4e9; + color: #ffffff; +} +.calendar .calendar-actions:before, +.calendar .calendar-actions:after { + display: table; + content: ""; +} +.calendar .calendar-actions:after { + clear: both; +} +.calendar .today a { + background-color: #60a917; + color: #ffffff; + text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4); +} +.calendar .day { + border: 1px #bcd9e2 solid; + text-align: center; +} +.calendar .day a { + display: block; + position: relative; + text-align: center; +} +.calendar .month, +.calendar .year { + border: 1px #bcd9e2 solid; +} +.calendar .month a, +.calendar .year a { + padding-top: 1.3125rem; + padding-bottom: 1.3125rem; +} +.calendar .empty { + cursor: default; +} +.calendar .other-day { + display: block; + text-align: center; + color: #999999; + padding: .325rem; + background-color: #eeeeee; + border: 1px #bcd9e2 solid; +} +.calendar .exclude { + background-color: #ce352c; +} +.calendar .exclude a { + cursor: not-allowed; + background-color: #ce352c; + color: #ffffff; +} +.calendar .stored { + background-color: #f472d0; +} +.calendar .stored a { + cursor: pointer; + background-color: #f472d0; + color: #ffffff; +} +.calendar .selected { + background-color: #59cde2; +} +.calendar .selected a { + background-color: #59cde2; + color: #ffffff; +} +.calendar.rounded button { + border-radius: 0.3125rem; +} +.calendar.rounded .day, +.calendar.rounded .month, +.calendar.rounded .year, +.calendar.rounded .other-day, +.calendar.rounded .today, +.calendar.rounded .calendar-header, +.calendar.rounded .selected { + border-radius: 0.3125rem; +} +.calendar.rounded .today a, +.calendar.rounded .selected a, +.calendar.rounded .exclude a { + border-radius: 0.3125rem; +} +.calendar.rounded .calendar-header a:hover { + border-radius: 0.3125rem; +} +.calendar.no-border .day, +.calendar.no-border .month, +.calendar.no-border .year, +.calendar.no-border .other-day, +.calendar.no-border .today, +.calendar.no-border .calendar-header { + border: 0; +} +.calendar.no-border .today a { + border: 0; +} +.calendar-dropdown { + border: 0; + box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.3); +} +.stepper { + margin: 10px 0; + width: 100%; +} +.stepper:before, +.stepper:after { + display: table; + content: ""; +} +.stepper:after { + clear: both; +} +.stepper > ul { + counter-reset: li; + border-top: 1px #1d1d1d dotted; + position: relative; + padding: 0; + margin: 30px 0; + width: 100%; + display: block; +} +.stepper > ul li { + list-style: none; + float: left; + width: 2em; + height: 2em; + margin-top: -1em; + position: absolute; + left: 0; + background: #666; + cursor: pointer; + font-size: .875rem; +} +.stepper > ul li:before { + content: counter(li); + counter-increment: li; + position: absolute; + box-sizing: border-box; + padding: .3em 10px; + color: #fff; + font-weight: bold; + font-family: "Helvetica Neue", Arial, sans-serif; + font-size: .9em; + text-align: center; +} +.stepper > ul li:hover { + background-color: #999999; +} +.stepper > ul li.current, +.stepper > ul li.complete { + transition: all 0.2s ease; +} +.stepper > ul li.current { + background-color: #1ba1e2; +} +.stepper > ul li.current:hover { + background-color: #00ccff; +} +.stepper > ul li.complete { + background-color: #60a917; +} +.stepper > ul li.complete:hover { + background-color: #7ad61d; +} +.stepper.cycle li { + border-radius: 50%; +} +.stepper.diamond li { + -webkit-transform: rotate(45deg); + transform: rotate(45deg); +} +.stepper.diamond li:before { + -webkit-transform: rotate(-45deg); + transform: rotate(-45deg); +} +.wizard { + position: relative; +} +.wizard .steps { + margin: 10px 0; + padding: 20px; + border: 1px #eeeeee solid; + position: relative; +} +.wizard .steps .step { + position: relative; + width: 100%; + height: 100%; + display: none; +} +.wizard .steps .step:first-child { + display: block; +} +.wizard .actions .group-right { + float: right; +} +.wizard .actions .group-left { + float: left; +} +.wizard .actions button { + padding: 0 1rem; + height: 2.125rem; + text-align: center; + vertical-align: middle; + background-color: #ffffff; + border: 1px #d9d9d9 solid; + color: #262626; + cursor: pointer; + display: inline-block; + outline: none; + font-size: .875rem; + line-height: 100%; + margin: .15625rem 0; + position: relative; + margin-right: 2px; +} +.wizard .actions button.default { + background-color: #008287; + color: #fff; +} +.wizard .actions button:hover { + border-color: #787878; +} +.wizard .actions button:active { + background: #eeeeee; + color: #262626; + box-shadow: none; +} +.wizard .actions button:focus { + outline: 0; +} +.wizard .actions button:disabled, +.wizard .actions button.disabled { + background-color: #eaeaea; + color: #bebebe; + cursor: default; + border-color: transparent; +} +.wizard .actions button * { + color: inherit; +} +.wizard .actions button *:hover { + color: inherit; +} +.wizard .actions button.rounded { + border-radius: .325rem; +} +.wizard .actions button > [class*=mif-] { + vertical-align: middle; +} +.wizard .actions button img { + height: .875rem; + vertical-align: middle; + margin: 0; +} +.wizard .actions button.loading-pulse { + position: relative; + padding: 0 1.325rem; +} +.wizard .actions button.loading-pulse:before { + position: absolute; + content: ""; + left: 0; + top: 50%; + margin-top: -10px; + width: 20px; + height: 20px; + background-color: #333; + border-radius: 100%; + -webkit-animation: scaleout 1s infinite ease-in-out; + animation: scaleout 1s infinite ease-in-out; +} +.wizard .actions button.loading-pulse.lighten:before { + background-color: #fff; +} +.wizard .actions button.loading-cube { + position: relative; + padding: 0 1.325rem; +} +.wizard .actions button.loading-cube:before, +.wizard .actions button.loading-cube:after { + content: ""; + background-color: #333; + width: 5px; + height: 5px; + position: absolute; + top: 50%; + left: 3px; + margin-top: -8px; + -webkit-animation: cubemove 1.8s infinite ease-in-out; + animation: cubemove 1.8s infinite ease-in-out; +} +.wizard .actions button.loading-cube:after { + -webkit-animation-delay: -0.9s; + animation-delay: -0.9s; +} +.wizard .actions button.loading-cube.lighten:before, +.wizard .actions button.loading-cube.lighten:after { + background-color: #fff; +} +.wizard .actions button.dropdown-toggle { + padding-right: 1.625rem; +} +.wizard .actions button.dropdown-toggle.drop-marker-light:before, +.wizard .actions button.dropdown-toggle.drop-marker-light:after { + background-color: #ffffff; +} +.wizard .actions button.primary { + background: #2086bf; + color: #ffffff; + border-color: #2086bf; +} +.wizard .actions button.primary:active { + background: #1b6eae; + color: #ffffff; +} +.wizard .actions button.success { + background: #60a917; + color: #ffffff; + border-color: #60a917; +} +.wizard .actions button.success:active { + background: #128023; + color: #ffffff; +} +.wizard .actions button.danger, +.wizard .actions button.alert { + background: #ce352c; + color: #ffffff; + border-color: #ce352c; +} +.wizard .actions button.danger:active, +.wizard .actions button.alert:active { + background: #9a1616; + color: #ffffff; +} +.wizard .actions button.info { + background: #59cde2; + color: #ffffff; + border-color: #59cde2; +} +.wizard .actions button.info:active { + background: #1ba1e2; + color: #ffffff; +} +.wizard .actions button.warning { + background: #fa6800; + color: #ffffff; + border-color: #fa6800; +} +.wizard .actions button.warning:active { + background: #bf5a15; + color: #ffffff; +} +.wizard .actions button.link { + background: transparent; + color: #2086bf; + border-color: transparent; + text-decoration: underline; +} +.wizard .actions button.link:hover, +.wizard .actions button.link:active { + background: transparent; + color: #114968; + border-color: transparent; +} +.wizard .actions button:last-child { + margin-right: 0; +} +.wizard .actions button.btn-finish { + background-color: #60a917; + color: #ffffff; +} +.wizard .actions button:disabled { + background-color: #6f6f6f; +} +.wizard2 { + counter-reset: div; + position: relative; + width: 100%; +} +.wizard2:before, +.wizard2:after { + display: table; + content: ""; +} +.wizard2:after { + clear: both; +} +.wizard2 .step { + width: auto; + display: block; + float: left; + position: relative; + z-index: 1; + padding: 0 0 3rem; +} +.wizard2 .step:before { + content: counter(div); + counter-increment: div; + position: absolute; + font-size: .8rem; + bottom: 20px; + width: 24px; + text-align: center; +} +.wizard2 .step.active { + border: 0; +} +.wizard2 .step.active:before { + visibility: hidden; +} +.wizard2 .step.prev { + border-left: 24px solid #eeeeee; + border-right: 1px solid #e6e6e6; + width: 0 ; +} +.wizard2 .step.prev:before { + left: 0 ; + margin-left: -24px; + color: #1d1d1d; +} +.wizard2 .step.next { + border-left: 1px solid #e6e6e6; + border-right: 24px solid #1ba1e2; + width: 0; +} +.wizard2 .step.next:before { + left: 100%; + color: #ffffff; +} +.wizard2 .step.next + .next { + border-color: #1891cb; +} +.wizard2 .step.next + .next + .next { + border-color: #1681b4; +} +.wizard2 .step.next + .next + .next + .next { + border-color: #13709e; +} +.wizard2 .step.next + .next + .next + .next + .next { + border-color: #106087; +} +.wizard2 .step.next + .next + .next + .next + .next + .next { + border-color: #0b4059; +} +.wizard2 .step.next + .next + .next + .next + .next + .next + .next { + border-color: #082f43; +} +.wizard2 .step.next + .next + .next + .next + .next + .next + .next + .next { + border-color: #051f2c; +} +.wizard2 .step.next + .next + .next + .next + .next + .next + .next + .next + .next { + border-color: #030f15; +} +.wizard2 .step-content { + width: auto; + overflow: hidden; + padding: .625rem; +} +.wizard2 .step.prev .step-content, +.wizard2 .step.next .step-content { + width: 0 ; + padding: 0 ; +} +.wizard2 .action-bar { + padding: 0 .625rem; + position: absolute; + bottom: 10px; + text-align: right; + z-index: 2; +} +.wizard2 .action-bar:before, +.wizard2 .action-bar:after { + display: table; + content: ""; +} +.wizard2 .action-bar:after { + clear: both; +} +.wizard2 .action-bar .button { + margin: 0 .125rem; + opacity: .6; +} +.wizard2 .action-bar .button:hover { + opacity: 1; +} +.countdown { + display: inline-block; + font-weight: 700; + font-size: 1rem; + margin: .1em 0 1.2em; +} +.countdown .part { + display: inline-block; + position: relative; +} +.countdown .part.days:after, +.countdown .part.hours:after, +.countdown .part.minutes:after, +.countdown .part.seconds:after { + position: absolute; + content: attr(data-day-text); + text-align: center; + top: 100%; + left: 0; + width: 100%; + font-size: .6em; + color: inherit; +} +.countdown .part.disabled .digit { + opacity: .3; + box-shadow: none; +} +.countdown .digit, +.countdown .divider { + display: inline-block; + padding: .3125em .625em; + background-color: #1ba1e2; + color: #ffffff; + cursor: default; + box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.3); + text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4); + transition: all 0.5s ease; +} +.countdown .digit, +.countdown .divider { + margin-left: 4px; +} +.countdown .divider { + padding: .125em .25em; + color: #1d1d1d; + background-color: transparent; + box-shadow: none; +} +.countdown.tick .divider { + opacity: 0; +} +.countdown.labels-top { + margin: 1.2em 0 .1em; +} +.countdown.labels-top .part.days:after, +.countdown.labels-top .part.hours:after, +.countdown.labels-top .part.minutes:after, +.countdown.labels-top .part.seconds:after { + top: 0; + left: 0; + margin-top: -1.5em; +} +.countdown.rounded .part .digit { + border-radius: .5em; +} +.countdown .digit.scaleIn { + transition: all 0.5s ease; + -webkit-transform: scale(1.1); + transform: scale(1.1); +} +.sidebar-container { + background-color: #71b1d1; + color: #ffffff; + position: absolute; + top: 0; + left: 0; + bottom: 0; + overflow-x: hidden; + overflow-y: scroll; +} +.sidebar { + background-color: #71b1d1; + color: #ffffff; + position: relative; + width: 100%; + padding: 0; + margin: 0; + list-style: none inside none; +} +.sidebar li { + display: block; + background-color: inherit; + color: inherit; + position: relative; + height: 52px; +} +.sidebar li a { + display: block; + background-color: inherit; + color: inherit; + padding: .625rem 1rem .625rem 3.75rem; + position: relative; + width: 100%; + height: 100%; + line-height: .875rem; +} +.sidebar li a .icon { + width: 28px; + height: 28px; + font-size: 28px; + line-height: 28px; + vertical-align: middle; + text-align: center; + position: absolute; + left: .625rem; + top: .625rem; +} +.sidebar li a .title, +.sidebar li a .counter { + display: block; + margin: 0; + white-space: nowrap; +} +.sidebar li a .title { + font-size: .6875rem; + font-weight: bold; + text-transform: uppercase; +} +.sidebar li a .counter { + font-size: .7rem; + font-weight: normal; +} +.sidebar li:hover { + background-color: #7cc1de; +} +.sidebar li.active { + background-color: #ffffff; + color: #323232; +} +.sidebar { + transition: all 0.2s ease; +} +.sidebar.compact { + width: 52px; + transition: all 0.2s ease; +} +.sidebar.compact a { + padding-right: 0; + padding-left: 0; + width: 52px; +} +.sidebar.compact .title { + display: none ; +} +.sidebar.compact .counter { + position: absolute; + top: 0; + right: 4px; +} +.sidebar2 { + text-align: left; + background: #ffffff; + max-width: 15.625rem; + list-style: none inside none; + margin: 0; + padding: 0; + position: relative; + width: auto; + float: left; + border-collapse: separate; + border: 1px #eeeeee solid; + width: 100%; +} +.sidebar2 li:hover > .dropdown-toggle:before { + border-color: #ffffff; +} +.sidebar2 li { + display: block; + float: none; + position: relative; +} +.sidebar2 li:before, +.sidebar2 li:after { + display: table; + content: ""; +} +.sidebar2 li:after { + clear: both; +} +.sidebar2 li a { + color: #727272; + font-size: .875rem; + display: block; + float: none; + padding: .75rem 2rem .75rem 2.5rem; + text-decoration: none; + vertical-align: middle; + position: relative; + white-space: nowrap; + min-width: 12.5rem; + border: none; +} +.sidebar2 li a img, +.sidebar2 li a .icon { + position: absolute; + left: .875rem; + top: 50%; + margin-top: -0.5625rem; + color: #262626; + max-height: 1.125rem; + font-size: 1.125rem; + display: inline-block; + margin-right: .3125rem; + vertical-align: middle; + text-align: center; +} +.sidebar2 li.active { + border-left: 2px solid; + border-color: #1ba1e2; +} +.sidebar2 li.active > a { + background-color: #59cde2; + color: #ffffff; + font-weight: bold; +} +.sidebar2 li:hover { + text-decoration: none; + background: #59cde2; +} +.sidebar2 li:hover > a, +.sidebar2 li:hover .icon { + color: #ffffff; +} +.sidebar2 li a[data-hotkey] { + padding-right: 3.2rem; +} +.sidebar2 li a[data-hotkey]:after { + content: attr(data-hotkey); + position: absolute; + right: 1.2rem; + width: auto; + font-size: .8em; +} +.sidebar2 .divider { + padding: 0; + height: 1px; + margin: 0 1px; + overflow: hidden; + background-color: #f2f2f2; +} +.sidebar2 .divider:hover { + background-color: #f2f2f2; +} +.sidebar2.subdown .d-menu { + min-width: 0; + position: relative; + width: 100%; + left: 0 ; + right: 0 ; + top: 100%; + box-shadow: none; +} +.sidebar2 .item-block { + display: block; + padding: .625rem; + background-color: #eeeeee; +} +.sidebar2 .d-menu { + left: 100%; + top: -10%; +} +.sidebar2 .menu-title { + background-color: #f6f7f8; + font-size: 12px; + line-height: 14px; + padding: 4px 8px; + border: 0; + color: #646464; +} +.sidebar2 .menu-title:first-child { + margin: 0; + border-top-width: 0; +} +.sidebar2 .menu-title:first-child:hover { + border-top-width: 0; +} +.sidebar2 .menu-title:hover { + background-color: #f6f7f8; + cursor: default; + border: 0; +} +.sidebar2 .dropdown-toggle:before { + -webkit-transform: rotate(-135deg); + transform: rotate(-135deg); + margin-top: -2px; +} +.sidebar2 .dropdown-toggle:before { + transition: all 0.3s ease; +} +.sidebar2 .dropdown-toggle.active-toggle:before { + -webkit-transform: rotate(45deg); + transform: rotate(45deg); + transition: all 0.3s ease; +} +.sidebar2.subdown .dropdown-toggle:before { + -webkit-transform: rotate(-45deg); + transform: rotate(-45deg); + margin-left: -1.25rem; +} +.sidebar2.subdown .dropdown-toggle.active-toggle:before { + -webkit-transform: rotate(135deg); + transform: rotate(135deg); +} +.sidebar2 li.disabled a { + color: #eeeeee; +} +.sidebar2 li.disabled:hover { + background-color: inherit; + cursor: default; + border: 0; +} +.sidebar2 li.disabled:hover a { + cursor: inherit; +} +.sidebar2.context li a { + font-size: .75rem; + padding: .3125rem 2rem .3125rem 2.5rem; +} +.sidebar2.context li a .icon { + margin-top: -0.4375rem; + font-size: .825rem; + color: inherit; +} +.sidebar2.no-min-size li a { + min-width: 0; +} +.sidebar2.full-size li a { + min-width: 0; + width: 100%; +} +.sidebar2 .d-menu { + min-width: 0; + position: relative; + width: 100%; + left: 0 ; + right: 0 ; + top: 100%; + box-shadow: none; +} +.sidebar2 .dropdown-toggle:before { + -webkit-transform: rotate(-45deg); + transform: rotate(-45deg); + margin-left: -1.25rem; +} +.sidebar2 .dropdown-toggle.active-toggle:before { + -webkit-transform: rotate(135deg); + transform: rotate(135deg); +} +.sidebar2 li { + border-top: 1px #eeeeee solid; + cursor: default; +} +.sidebar2 li.stick { + position: relative; +} +.sidebar2 li.stick:before { + content: ""; + position: absolute; + width: 7px; + height: 44px; + left: -7px; + text-indent: -9999px; + border-top-left-radius: 5px; + border-bottom-left-radius: 5px; + background-color: inherit; +} +.sidebar2 li.disabled { + background-color: inherit; +} +.sidebar2 li.disabled:hover { + border-top: 1px #eeeeee solid; +} +.sidebar2 li a { + background-color: #ffffff; + color: #323232; + white-space: normal; + min-width: 0; +} +.sidebar2 li a .icon { + color: inherit ; +} +.sidebar2 li.title { + padding: 20px 20px 10px 20px; + font-size: 24px; + border: 0; +} +.sidebar2 li.title:hover { + background-color: inherit; +} +.sidebar2 li:not(.title) + li.title { + border-top: 1px #eeeeee solid; +} +.sidebar2 li.active { + background-color: #71b1d1; + border: none; +} +.sidebar2 li.active a { + background-color: #71b1d1; + color: #ffffff; +} +.sidebar2 li.active a .icon { + color: inherit; +} +.sidebar2 li:hover a { + background-color: #7cc1de; +} +.sidebar2 li.disabled:hover a { + background-color: inherit; +} +.sidebar2 li li:not(:hover) { + color: #1d1d1d; +} +.sidebar2 li li:not(:hover) a { + background-color: #ffffff; +} +.sidebar2 .dropdown-toggle:before { + transition: all 0.3s ease; +} +.sidebar2 .dropdown-toggle.active-toggle:before { + -webkit-transform: rotate(135deg); + transform: rotate(135deg); + transition: all 0.3s ease; +} +.sidebar2.dark li { + border-top: 1px #5c5c5c solid; +} +.sidebar2.dark li.title { + background-color: #3D3D3D; + color: #ffffff; +} +.sidebar2.dark li a { + background-color: #3D3D3D; + color: #ffffff; +} +.sidebar2.dark li a:hover { + background-color: #262626; + color: #ffffff; +} +.sidebar2.dark li:not(.title) + li.title, +.sidebar2.dark li.disabled { + border-top-color: #5c5c5c; +} +.sidebar2.dark li.disabled:hover { + border-top-color: #5c5c5c ; +} +.sidebar2.dark li.disabled:hover a { + background-color: #3D3D3D; +} +.sidebar2.dark li.disabled a { + color: #999999; +} +.sidebar2.dark li.active a { + background-color: #ce352c; +} +.sidebar2.dark .dropdown-toggle:before { + border-color: #ffffff; +} +.sidebar2.dark .d-menu li a { + background-color: #3D3D3D; + color: #ffffff; +} +.sidebar2.dark .d-menu li a:hover { + background-color: #262626; + color: #ffffff; +} +.tabcontrol { + position: relative; + width: 100%; +} +.tabcontrol .tabs { + width: 100%; + margin: 0; + padding: 0; + list-style: none inside; + border-bottom: 2px #1ba1e2 solid; + white-space: nowrap; + overflow: visible; +} +.tabcontrol .tabs:before, +.tabcontrol .tabs:after { + display: table; + content: ""; +} +.tabcontrol .tabs:after { + clear: both; +} +.tabcontrol .tabs li { + display: block; + float: left; + position: relative; + white-space: nowrap; +} +.tabcontrol .tabs li a { + display: block; + float: left; + padding: 8px 24px; + color: #1d1d1d; + font-size: .6875rem; + font-weight: bold; + text-transform: uppercase; + position: relative; + white-space: nowrap; +} +.tabcontrol .tabs li:hover a { + background-color: #eeeeee; +} +.tabcontrol .tabs li.active a { + background-color: #1ba1e2; + color: #ffffff; + text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4); +} +.tabcontrol .tabs li.disabled a { + background: #eeeeee 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; + color: #999999; + cursor: default; +} +.tabcontrol .tabs li.non-visible-tabs { + display: block; + float: right; +} +.tabcontrol .tabs li.non-visible-tabs:empty { + display: none; +} +.tabcontrol .tabs li.non-visible-tabs.dropdown-toggle { + height: 100% ; +} +.tabcontrol.tabs-bottom .tabs { + border-bottom: none; + border-top: 2px #1ba1e2 solid; +} +.tabcontrol.tabs-bottom .tabs li.disabled { + top: 0; +} +.tabcontrol.tabs-bottom .tabs li:hover { + top: 0; +} +.tabcontrol .frames { + width: 100%; + position: relative; +} +.tabcontrol .frames .frame { + display: block; + position: relative; + width: 100%; + padding: 20px; + background-color: #999999; +} +.tabcontrol2 { + position: relative; + width: 100%; +} +.tabcontrol2 .tabs { + width: 100%; + margin: 0; + padding: 0; + list-style: none inside; + border-bottom: 2px #1ba1e2 solid; + white-space: nowrap; + overflow: visible; +} +.tabcontrol2 .tabs:before, +.tabcontrol2 .tabs:after { + display: table; + content: ""; +} +.tabcontrol2 .tabs:after { + clear: both; +} +.tabcontrol2 .tabs li { + display: block; + float: left; + position: relative; + white-space: nowrap; +} +.tabcontrol2 .tabs li a { + display: block; + float: left; + padding: 8px 24px; + color: #1d1d1d; + font-size: .6875rem; + font-weight: bold; + text-transform: uppercase; + position: relative; + white-space: nowrap; +} +.tabcontrol2 .tabs li:hover a { + background-color: #eeeeee; +} +.tabcontrol2 .tabs li.active a { + background-color: #1ba1e2; + color: #ffffff; + text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4); +} +.tabcontrol2 .tabs li.disabled a { + background: #eeeeee 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; + color: #999999; + cursor: default; +} +.tabcontrol2 .tabs li.non-visible-tabs { + display: block; + float: right; +} +.tabcontrol2 .tabs li.non-visible-tabs:empty { + display: none; +} +.tabcontrol2 .tabs li.non-visible-tabs.dropdown-toggle { + height: 100% ; +} +.tabcontrol2.tabs-bottom .tabs { + border-bottom: none; + border-top: 2px #1ba1e2 solid; +} +.tabcontrol2.tabs-bottom .tabs li.disabled { + top: 0; +} +.tabcontrol2.tabs-bottom .tabs li:hover { + top: 0; +} +.tabcontrol2 .frames { + width: 100%; + position: relative; +} +.tabcontrol2 .frames .frame { + display: block; + position: relative; + width: 100%; + padding: 20px; + background-color: #999999; +} +.tabcontrol2 .tabs { + border-bottom: 0; + vertical-align: bottom; + z-index: 2; +} +.tabcontrol2 .tabs li { + padding-top: 2px; + overflow: visible; + margin: 0 2px; +} +.tabcontrol2 .tabs li:after { + content: ""; + position: absolute; + left: 0; + top: 100%; + width: 100%; + background-color: #ffffff; + height: 2px; + z-index: 3; +} +.tabcontrol2 .tabs li:not(.active):after { + background-color: #eeeeee; + height: 1px; +} +.tabcontrol2 .tabs li:first-child { + margin-left: 10px; +} +.tabcontrol2 .tabs li a { + background-color: #eeeeee; + padding-top: .3125rem; + text-shadow: none ; +} +.tabcontrol2 .tabs li.active { + padding-top: 0; + padding-bottom: 0; +} +.tabcontrol2 .tabs li.active a { + background-color: #ffffff; + border: 1px #eeeeee solid; + border-top: 2px #ce352c solid; + border-bottom: 0; + color: #1ba1e2; +} +.tabcontrol2 .tabs li.active:hover a { + background-color: inherit; +} +.tabcontrol2 .tabs li:hover a { + background-color: #e1e1e1; +} +.tabcontrol2.tabs-bottom .tabs { + border-top: 0; +} +.tabcontrol2.tabs-bottom .tabs li { + padding: 0; +} +.tabcontrol2.tabs-bottom .tabs li:after { + top: -1px; + background-color: #ffffff; +} +.tabcontrol2.tabs-bottom .tabs li.active { + padding-bottom: 0; +} +.tabcontrol2.tabs-bottom .tabs li.active a { + border: 1px #eeeeee solid; + border-bottom: 2px #ce352c solid; + border-top: 0; +} +.tabcontrol2.tabs-bottom .tabs li:not(.active) { + margin-bottom: 0; +} +.tabcontrol2.tabs-bottom .tabs li:not(.active):after { + background-color: #eeeeee; +} +.tabcontrol2 .frames { + z-index: 1; + border: 1px #eeeeee solid; +} +.tabcontrol2 .frames .frame { + background-color: #ffffff; +} +.accordion > .frame { + margin-top: 1px; +} +.accordion > .frame:first-child { + margin-top: 0; +} +.accordion > .frame > .heading { + display: block; + padding: 8px 16px 8px 20px; + background-color: #f6f6f6; + cursor: pointer; + font-size: .6875rem; + text-transform: uppercase; + font-weight: bold; + position: relative; + border: 1px #eeeeee solid; + overflow: hidden; + z-index: 2; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; + transition: all 0.3s ease; +} +.accordion > .frame > .heading:before { + position: absolute; + display: block; + left: 4px; + top: 6px; + content: ''; + width: 0; + height: 0; + border-left: 6px solid transparent; + border-top: 6px solid transparent; + border-bottom: 6px solid black; + -webkit-transform: rotate(-45deg); + transform: rotate(-45deg); + transition: all 0.3s ease; +} +.accordion > .frame > .heading:hover { + background-color: #eeeeee; +} +.accordion > .frame > .heading .icon { + position: absolute; + right: 0; + top: 0; + font-size: 3rem; + width: 3rem; + max-height: 3rem; + opacity: .6; + color: #999999; +} +.accordion > .frame.active > .heading { + background-color: #1ba1e2; + border-color: #1ba1e2; + color: #ffffff; + box-shadow: -1px 6px 6px -6px rgba(0, 0, 0, 0.35); + text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4); + transition: all 0.3s ease; +} +.accordion > .frame.active > .heading .icon { + color: #ffffff; +} +.accordion > .frame.active > .heading:before { + left: 8px; + border-bottom-color: #ffffff; + transition: all 0.3s ease; + -webkit-transform: rotate(0deg); + transform: rotate(0deg); + -webkit-transform-origin: 50% 50%; + transform-origin: 50% 50%; +} +.accordion > .frame.active > .content { + display: block; +} +.accordion > .frame > .content { + padding: .625rem; + display: none; + background-color: #ffffff; + z-index: 1; +} +.accordion > .frame.disabled > .heading { + cursor: default; + background: #ffffff 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; +} +.accordion.large-heading > .frame > .heading { + font-size: 2rem; + line-height: 1.1; + font-weight: 300; + padding-left: 32px; + text-shadow: none; +} +.accordion.large-heading > .frame > .heading:before { + top: 10px; + border-left: 12px solid transparent; + border-top: 12px solid transparent; + border-bottom: 12px solid black; +} +.accordion.large-heading > .frame.active > .heading:before { + border-bottom-color: #ffffff; +} +.carousel { + display: block; + width: 100%; + position: relative; + min-height: 100px; + overflow: hidden; +} +.carousel .slide { + top: 0; + left: 0; + position: absolute; + display: block; + width: 100%; + height: 100%; + min-height: 100%; +} +.carousel .slide:before, +.carousel .slide:after { + display: table; + content: ""; +} +.carousel .slide:after { + clear: both; +} +.carousel [class*="carousel-switch"], +.carousel .carousel-bullets { + position: absolute; + display: block; + z-index: 999; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; +} +.carousel .carousel-bullets { + left: 0; + right: 0; + bottom: .625rem; + text-align: center; +} +.carousel .carousel-bullets .carousel-bullet { + display: inline-block; + float: none; + width: .625rem; + height: .625rem; + background-color: #ababab; + box-shadow: none; + border-radius: 50%; + margin-right: .625rem; + cursor: pointer; + border: 1px #ffffff solid; +} +.carousel .carousel-bullets .carousel-bullet:last-child { + margin-right: 0; +} +.carousel .carousel-bullets .carousel-bullet.bullet-on { + background-color: #59cde2; +} +.carousel.square-bullets .carousel-bullet { + border-radius: 0 ; +} +.carousel .carousel-switch-next, +.carousel .carousel-switch-prev { + width: auto; + line-height: 4rem; + height: 4rem; + text-decoration: none; + margin-top: -2rem; + top: 50%; + font-size: 4rem; + font-weight: 300; + color: #eeeeee; + cursor: pointer; + vertical-align: middle; + padding: 0; +} +.carousel .carousel-switch-next:hover, +.carousel .carousel-switch-prev:hover { + color: #ffffff; + text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4); +} +.carousel .carousel-switch-next img, +.carousel .carousel-switch-prev img { + max-width: 64px; + max-height: 64px; +} +.carousel .carousel-switch-next { + right: 0; + left: auto; +} +.carousel .carousel-switch-prev { + left: 0; + right: auto; +} +.panel { + display: block; + position: relative; + background-color: #ffffff; +} +.panel > .heading, +.panel > .content { + display: block; + position: relative; + color: #1d1d1d; +} +.panel > .heading { + padding: .625rem 0 ; + color: #ffffff; + background-color: #1ba1e2; + cursor: default; + vertical-align: middle; + z-index: 2; + height: 2.625rem; + box-shadow: -1px 6px 6px -6px rgba(0, 0, 0, 0.35); + font: 500 1.125rem/1.1 "Segoe UI", "Open Sans", sans-serif, serif; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; +} +.panel > .heading > .title { + margin-left: .625rem; +} +.panel > .heading > .icon + .title { + margin-left: 3.625rem; +} +.panel > .heading > .icon { + position: absolute; + background-color: #1b6eae; + top: 0; + left: 0; + bottom: 0; + vertical-align: middle; + height: 2.625rem; + width: 2.625rem; + text-align: center; + padding: .625rem; +} +.panel > .content { + background-color: #e8f1f4; + z-index: 1; + font-size: 0.875rem; +} +.panel.collapsible > .heading { + cursor: pointer; +} +.panel.collapsible > .heading:before { + content: "\2212"; + display: block; + position: absolute; + top: 50%; + margin-top: -1.3rem; + right: .625rem; + color: inherit; + vertical-align: middle; + font-size: 2rem; +} +.panel.collapsed > .heading:before { + content: "\002b"; +} +.panel.collapsed > .content { + display: none; +} +.panel.alert > .heading, +.panel.error > .heading, +.panel.danger > .heading { + background-color: #ce352c; +} +.panel.warning > .heading { + background-color: #fa6800; +} +.panel.success > .heading { + background-color: #60a917; +} +.rating { + cursor: pointer; + display: inline-block; +} +.rating:before, +.rating:after { + display: table; + content: ""; +} +.rating:after { + clear: both; +} +.rating .star { + cursor: pointer; + display: block; + float: left; + color: #555555; + font-size: 20px; + z-index: 1; + position: relative; + width: 20px; + height: 24px; + vertical-align: middle; + line-height: 22px; +} +.rating .star:before, +.rating .star:after { + position: absolute; + content: '\2605'; + display: block; + z-index: 2; + top: 0 ; + left: 0; + vertical-align: middle; +} +.rating .star.on { + color: gold; +} +.rating .star.on.half { + color: #555555; +} +.rating .star.on.half:after { + color: gold; +} +.rating .star.half:after { + z-index: 3; + width: 8px; + overflow: hidden; +} +.rating.poor .star.on { + color: #ce352c; +} +.rating.poor .star.on.half { + color: #555555; +} +.rating.poor .star.on.half:after { + color: #ce352c; +} +.rating.regular .star.on { + color: gold; +} +.rating.regular .star.on.half { + color: #555555; +} +.rating.regular .star.on.half:after { + color: gold; +} +.rating.good .star.on { + color: #60a917; +} +.rating.good .star.on.half { + color: #555555; +} +.rating.good .star.on.half:after { + color: #60a917; +} +.rating:not(.static) .star:hover { + color: gold ; +} +.rating:not(.static) .star:hover.half, +.rating:not(.static) .star:hover.on.half { + color: gold; +} +.rating:not(.static) .star:hover.half:after, +.rating:not(.static) .star:hover.on.half:after { + color: gold; +} +.rating:not(.static):hover > .star, +.rating:not(.static):hover > .star:after { + color: gold ; +} +.rating:not(.static):hover > .star.half, +.rating:not(.static):hover > .star:after.half, +.rating:not(.static):hover > .star.on.half, +.rating:not(.static):hover > .star:after.on.half { + color: gold; +} +.rating:not(.static):hover > .star.half:after, +.rating:not(.static):hover > .star:after.half:after, +.rating:not(.static):hover > .star.on.half:after, +.rating:not(.static):hover > .star:after.on.half:after { + color: gold; +} +.rating:not(.static) .star:hover ~ .star, +.rating:not(.static) .star:hover ~ .star:after { + color: gray ; +} +.rating:not(.static) .star:hover ~ .star.half, +.rating:not(.static) .star:hover ~ .star:after.half, +.rating:not(.static) .star:hover ~ .star.on.half, +.rating:not(.static) .star:hover ~ .star:after.on.half { + color: gray; +} +.rating:not(.static) .star:hover ~ .star.half:after, +.rating:not(.static) .star:hover ~ .star:after.half:after, +.rating:not(.static) .star:hover ~ .star.on.half:after, +.rating:not(.static) .star:hover ~ .star:after.on.half:after { + color: gray; +} +.rating.small .star { + width: 14px; + height: 16px; + font-size: 14px; + line-height: 14px; +} +.rating.small .star.half:after { + width: 6px; +} +.rating.large .star { + width: 28px; + height: 30px; + font-size: 32px; + line-height: 24px; +} +.rating.large .star.half:after { + width: 13px; +} +.rating .score { + display: block; + font-size: .8rem; +} +.rating.small .score { + font-size: .6rem; +} +.rating.large .score { + font-size: 1rem; +} +.slider { + height: 2.125rem; + line-height: 1; + width: auto; + position: relative; +} +.slider .marker { + height: 1rem; + width: 1rem; + cursor: pointer; + position: absolute; + top: 50%; + margin-top: -0.5rem; + left: 0; + background-color: #1d1d1d; + z-index: 2; +} +.slider .marker:focus, +.slider .marker:active, +.slider .markerhover { + border: 2px #ce352c solid; +} +.slider .slider-backside, +.slider .complete { + height: .5rem; + background: #999999; + width: 100%; + line-height: 2.125rem; + top: 50%; + margin-top: -0.25rem; + position: absolute; +} +.slider .complete { + width: auto; + background-color: #00aba9; + z-index: 2; + transition: background .3s ease; + left: 0; +} +.slider .buffer { + height: 4px; + width: auto; + background-color: #ffffff; + z-index: 1; + transition: background .3s ease; + position: absolute; + top: 50%; + margin-top: -2px; + left: 0; +} +.slider .slider-hint { + min-width: 1.8rem; + width: auto; + height: auto; + position: absolute; + z-index: 3; + border: 1px #ccc solid; + padding: .25rem; + top: -1.2rem; + text-align: center; + font-size: .625rem; + display: none; + background: #fffcc0; +} +.slider .slider-hint:before { + border: 1px #ccc solid; + border-left: 0; + border-top: 0; + content: ""; + width: .25rem; + height: .25rem; + display: block; + position: absolute; + background-color: inherit; + margin-top: -0.125rem; + margin-left: -0.15625rem; + top: 100%; + left: 50%; + -webkit-transform: rotate(45deg); + transform: rotate(45deg); +} +.slider.hint-bottom .slider-hint { + top: 100%; + margin-top: -0.125rem; +} +.slider.hint-bottom .slider-hint:before { + top: -0.0625rem; + -webkit-transform: rotate(-135deg); + transform: rotate(-135deg); +} +.slider.permanent-hint > .slider-hint { + display: block; +} +.slider:hover .complete { + background-color: #45fffd; +} +.slider:active .complete, +.slider:active + .marker:active .complete { + background-color: #45fffd; +} +.slider.place-left { + margin-right: 20px; +} +.slider.place-right { + margin-left: 20px; +} +.slider.ani .complete { + -webkit-animation: ani-bg-stripes 2s linear infinite; + animation: ani-bg-stripes 2s linear infinite; +} +.slider.vertical { + min-height: 100px; + width: 2.125rem; + display: inline-block; +} +.slider.vertical .slider-backside, +.slider.vertical .complete { + position: absolute; + height: 100%; + width: .5rem; + bottom: 0; + left: 50%; + margin-left: -0.25rem; + top: auto; +} +.slider.vertical .marker { + left: 50%; + top: auto; + margin-left: -0.5rem; +} +.slider.vertical .buffer { + position: absolute; + height: auto; + width: 6px ; + bottom: 0; + left: 50%; + margin-left: -3px; + top: auto; +} +.slider.vertical .slider-hint { + left: 100%; + margin-top: 0; +} +.slider.vertical .slider-hint:before { + height: .25rem; + width: .25rem; + -webkit-transform: rotate(135deg); + transform: rotate(135deg); + left: -1px; + top: 50%; + margin-top: -0.125rem; + margin-left: -0.135rem; +} +.slider.vertical.hint-left .slider-hint { + left: -100%; + margin-left: .25rem; +} +.slider.vertical.hint-left .slider-hint:before { + left: 100%; + -webkit-transform: rotate(-45deg); + transform: rotate(-45deg); +} +.slider.cycle-marker .marker { + border-radius: 50%; +} +.tile-area { + min-width: 100%; + height: 100%; + position: relative; + padding: 120px 80px 0 0; + overflow: hidden; +} +.tile-area:before, +.tile-area:after { + display: table; + content: ""; +} +.tile-area:after { + clear: both; +} +.tile-area .tile-area-title { + position: fixed; + top: 20px; + left: 80px; + font-weight: 300; + font-size: 42px; + line-height: 1.1; +} +.tile-group { + margin-left: 80px; + min-width: 80px; + width: auto; + float: left; + display: block; + padding-top: 40px; + position: relative; +} +.tile-group.one { + width: 160px; +} +.tile-group.two, +.tile-group.double { + width: 320px; +} +.tile-group.three, +.tile-group.triple { + width: 480px; +} +.tile-group.four, +.tile-group.quadro { + width: 640px; +} +.tile-group.five { + width: 800px; +} +.tile-group.six { + width: 960px; +} +.tile-group.seven { + width: 1120px; +} +.tile-group .tile-group-title { + color: #ffffff; + font-size: 18px; + line-height: 20px; + position: absolute; + top: 10px; + left: 0; +} +.tile-container { + width: 100%; + height: auto; + display: block; + margin: 0; + padding: 0; +} +.tile-container:before, +.tile-container:after { + display: table; + content: ""; +} +.tile-container:after { + clear: both; +} +.tile { + width: 150px; + height: 150px; + display: block; + float: left; + margin: 5px; + background-color: #eeeeee; + box-shadow: inset 0 0 1px #FFFFCC; + cursor: pointer; + position: relative; + overflow: hidden; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; +} +.tile:hover { + outline: #999999 solid 3px; +} +.tile:active { + outline: 0; +} +.tile.no-outline { + outline-color: transparent; +} +.tile.small-tile { + width: 70px; + height: 70px; +} +.tile.wide-tile { + width: 310px; + height: 150px; +} +.tile.wide-tile-v { + height: 310px; + width: 150px; +} +.tile.large-tile { + width: 310px; + height: 310px; +} +.tile.big-tile { + width: 470px; + height: 470px; +} +.tile.super-tile { + width: 630px; + height: 630px; +} +.tile-square { + width: 150px; + height: 150px; + display: block; + float: left; + margin: 5px; + background-color: #eeeeee; + box-shadow: inset 0 0 1px #FFFFCC; + cursor: pointer; + position: relative; + overflow: hidden; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; + overflow: visible; +} +.tile-square:hover { + outline: #999999 solid 3px; +} +.tile-square:active { + outline: 0; +} +.tile-square.no-outline { + outline-color: transparent; +} +.tile-square.small-tile { + width: 70px; + height: 70px; +} +.tile-square.wide-tile { + width: 310px; + height: 150px; +} +.tile-square.wide-tile-v { + height: 310px; + width: 150px; +} +.tile-square.large-tile { + width: 310px; + height: 310px; +} +.tile-square.big-tile { + width: 470px; + height: 470px; +} +.tile-square.super-tile { + width: 630px; + height: 630px; +} +.tile-square .tile-content.flipVertical { + -webkit-transform: perspective(1000px); + transform: perspective(1000px); + overflow: visible; +} +.tile-square:hover .tile-content.flipVertical, +.tile-square.hover .tile-content.flipVertical, +.tile-square.flip .tile-content.flipVertical { + -webkit-transform: rotateY(180deg); + transform: rotateY(180deg); +} +.tile-square .tile-content.flipVertical { + -webkit-transform-style: preserve-3d; + transform-style: preserve-3d; + transition: all 0.6s ease; +} +.tile-square .tile-content.flipVertical .slide, +.tile-square .tile-content.flipVertical .slide-over { + top: 0; + left: 0; + position: absolute; + height: 100%; + width: 100%; + -webkit-backface-visibility: hidden; + backface-visibility: hidden; +} +.tile-square .tile-content.flipVertical .slide { + z-index: 2; + -webkit-transform: rotateY(0deg); + transform: rotateY(0deg); +} +.tile-square .tile-content.flipVertical .slide-over { + -webkit-transform: rotateY(180deg); + transform: rotateY(180deg); +} +.tile-square .tile-content.flipHorizontal { + -webkit-transform: perspective(1000px); + transform: perspective(1000px); + overflow: visible; +} +.tile-square:hover .tile-content.flipHorizontal, +.tile-square.hover .tile-content.flipHorizontal, +.tile-square.flip .tile-content.flipHorizontal { + -webkit-transform: rotateX(180deg); + transform: rotateX(180deg); +} +.tile-square .tile-content.flipHorizontal { + -webkit-transform-style: preserve-3d; + transform-style: preserve-3d; + transition: all 0.6s ease; +} +.tile-square .tile-content.flipHorizontal .slide, +.tile-square .tile-content.flipHorizontal .slide-over { + top: 0; + left: 0; + position: absolute; + height: 100%; + width: 100%; + -webkit-backface-visibility: hidden; + backface-visibility: hidden; +} +.tile-square .tile-content.flipHorizontal .slide { + z-index: 2; + -webkit-transform: rotateX(0deg); + transform: rotateX(0deg); +} +.tile-square .tile-content.flipHorizontal .slide-over { + -webkit-transform: rotateX(180deg); + transform: rotateX(180deg); +} +.tile-square .tile-badge { + position: absolute; + bottom: 0; + right: .625rem; + padding: .25rem .625rem; + z-index: 999; +} +.tile-square .tile-label { + position: absolute; + bottom: 0; + left: .625rem; + padding: .425rem .25rem; + z-index: 999; +} +.tile-small { + width: 150px; + height: 150px; + display: block; + float: left; + margin: 5px; + background-color: #eeeeee; + box-shadow: inset 0 0 1px #FFFFCC; + cursor: pointer; + position: relative; + overflow: hidden; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; + overflow: visible; + width: 70px; + height: 70px; +} +.tile-small:hover { + outline: #999999 solid 3px; +} +.tile-small:active { + outline: 0; +} +.tile-small.no-outline { + outline-color: transparent; +} +.tile-small.small-tile { + width: 70px; + height: 70px; +} +.tile-small.wide-tile { + width: 310px; + height: 150px; +} +.tile-small.wide-tile-v { + height: 310px; + width: 150px; +} +.tile-small.large-tile { + width: 310px; + height: 310px; +} +.tile-small.big-tile { + width: 470px; + height: 470px; +} +.tile-small.super-tile { + width: 630px; + height: 630px; +} +.tile-small .tile-content.flipVertical { + -webkit-transform: perspective(1000px); + transform: perspective(1000px); + overflow: visible; +} +.tile-small:hover .tile-content.flipVertical, +.tile-small.hover .tile-content.flipVertical, +.tile-small.flip .tile-content.flipVertical { + -webkit-transform: rotateY(180deg); + transform: rotateY(180deg); +} +.tile-small .tile-content.flipVertical { + -webkit-transform-style: preserve-3d; + transform-style: preserve-3d; + transition: all 0.6s ease; +} +.tile-small .tile-content.flipVertical .slide, +.tile-small .tile-content.flipVertical .slide-over { + top: 0; + left: 0; + position: absolute; + height: 100%; + width: 100%; + -webkit-backface-visibility: hidden; + backface-visibility: hidden; +} +.tile-small .tile-content.flipVertical .slide { + z-index: 2; + -webkit-transform: rotateY(0deg); + transform: rotateY(0deg); +} +.tile-small .tile-content.flipVertical .slide-over { + -webkit-transform: rotateY(180deg); + transform: rotateY(180deg); +} +.tile-small .tile-content.flipHorizontal { + -webkit-transform: perspective(1000px); + transform: perspective(1000px); + overflow: visible; +} +.tile-small:hover .tile-content.flipHorizontal, +.tile-small.hover .tile-content.flipHorizontal, +.tile-small.flip .tile-content.flipHorizontal { + -webkit-transform: rotateX(180deg); + transform: rotateX(180deg); +} +.tile-small .tile-content.flipHorizontal { + -webkit-transform-style: preserve-3d; + transform-style: preserve-3d; + transition: all 0.6s ease; +} +.tile-small .tile-content.flipHorizontal .slide, +.tile-small .tile-content.flipHorizontal .slide-over { + top: 0; + left: 0; + position: absolute; + height: 100%; + width: 100%; + -webkit-backface-visibility: hidden; + backface-visibility: hidden; +} +.tile-small .tile-content.flipHorizontal .slide { + z-index: 2; + -webkit-transform: rotateX(0deg); + transform: rotateX(0deg); +} +.tile-small .tile-content.flipHorizontal .slide-over { + -webkit-transform: rotateX(180deg); + transform: rotateX(180deg); +} +.tile-small .tile-badge { + position: absolute; + bottom: 0; + right: .625rem; + padding: .25rem .625rem; + z-index: 999; +} +.tile-small .tile-label { + position: absolute; + bottom: 0; + left: .625rem; + padding: .425rem .25rem; + z-index: 999; +} +.tile-wide { + width: 150px; + display: block; + float: left; + margin: 5px; + background-color: #eeeeee; + box-shadow: inset 0 0 1px #FFFFCC; + cursor: pointer; + position: relative; + overflow: hidden; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; + overflow: visible; + width: 310px; + height: 150px; +} +.tile-wide:hover { + outline: #999999 solid 3px; +} +.tile-wide:active { + outline: 0; +} +.tile-wide.no-outline { + outline-color: transparent; +} +.tile-wide.small-tile { + width: 70px; + height: 70px; +} +.tile-wide.wide-tile { + width: 310px; + height: 150px; +} +.tile-wide.wide-tile-v { + height: 310px; + width: 150px; +} +.tile-wide.large-tile { + width: 310px; + height: 310px; +} +.tile-wide.big-tile { + width: 470px; + height: 470px; +} +.tile-wide.super-tile { + width: 630px; + height: 630px; +} +.tile-wide .tile-content.flipVertical { + -webkit-transform: perspective(1000px); + transform: perspective(1000px); + overflow: visible; +} +.tile-wide:hover .tile-content.flipVertical, +.tile-wide.hover .tile-content.flipVertical, +.tile-wide.flip .tile-content.flipVertical { + -webkit-transform: rotateY(180deg); + transform: rotateY(180deg); +} +.tile-wide .tile-content.flipVertical { + -webkit-transform-style: preserve-3d; + transform-style: preserve-3d; + transition: all 0.6s ease; +} +.tile-wide .tile-content.flipVertical .slide, +.tile-wide .tile-content.flipVertical .slide-over { + top: 0; + left: 0; + position: absolute; + height: 100%; + width: 100%; + -webkit-backface-visibility: hidden; + backface-visibility: hidden; +} +.tile-wide .tile-content.flipVertical .slide { + z-index: 2; + -webkit-transform: rotateY(0deg); + transform: rotateY(0deg); +} +.tile-wide .tile-content.flipVertical .slide-over { + -webkit-transform: rotateY(180deg); + transform: rotateY(180deg); +} +.tile-wide .tile-content.flipHorizontal { + -webkit-transform: perspective(1000px); + transform: perspective(1000px); + overflow: visible; +} +.tile-wide:hover .tile-content.flipHorizontal, +.tile-wide.hover .tile-content.flipHorizontal, +.tile-wide.flip .tile-content.flipHorizontal { + -webkit-transform: rotateX(180deg); + transform: rotateX(180deg); +} +.tile-wide .tile-content.flipHorizontal { + -webkit-transform-style: preserve-3d; + transform-style: preserve-3d; + transition: all 0.6s ease; +} +.tile-wide .tile-content.flipHorizontal .slide, +.tile-wide .tile-content.flipHorizontal .slide-over { + top: 0; + left: 0; + position: absolute; + height: 100%; + width: 100%; + -webkit-backface-visibility: hidden; + backface-visibility: hidden; +} +.tile-wide .tile-content.flipHorizontal .slide { + z-index: 2; + -webkit-transform: rotateX(0deg); + transform: rotateX(0deg); +} +.tile-wide .tile-content.flipHorizontal .slide-over { + -webkit-transform: rotateX(180deg); + transform: rotateX(180deg); +} +.tile-wide .tile-badge { + position: absolute; + bottom: 0; + right: .625rem; + padding: .25rem .625rem; + z-index: 999; +} +.tile-wide .tile-label { + position: absolute; + bottom: 0; + left: .625rem; + padding: .425rem .25rem; + z-index: 999; +} +.tile-large { + width: 150px; + height: 150px; + display: block; + float: left; + margin: 5px; + background-color: #eeeeee; + box-shadow: inset 0 0 1px #FFFFCC; + cursor: pointer; + position: relative; + overflow: hidden; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; + overflow: visible; + width: 310px; + height: 310px; +} +.tile-large:hover { + outline: #999999 solid 3px; +} +.tile-large:active { + outline: 0; +} +.tile-large.no-outline { + outline-color: transparent; +} +.tile-large.small-tile { + width: 70px; + height: 70px; +} +.tile-large.wide-tile { + width: 310px; + height: 150px; +} +.tile-large.wide-tile-v { + height: 310px; + width: 150px; +} +.tile-large.large-tile { + width: 310px; + height: 310px; +} +.tile-large.big-tile { + width: 470px; + height: 470px; +} +.tile-large.super-tile { + width: 630px; + height: 630px; +} +.tile-large .tile-content.flipVertical { + -webkit-transform: perspective(1000px); + transform: perspective(1000px); + overflow: visible; +} +.tile-large:hover .tile-content.flipVertical, +.tile-large.hover .tile-content.flipVertical, +.tile-large.flip .tile-content.flipVertical { + -webkit-transform: rotateY(180deg); + transform: rotateY(180deg); +} +.tile-large .tile-content.flipVertical { + -webkit-transform-style: preserve-3d; + transform-style: preserve-3d; + transition: all 0.6s ease; +} +.tile-large .tile-content.flipVertical .slide, +.tile-large .tile-content.flipVertical .slide-over { + top: 0; + left: 0; + position: absolute; + height: 100%; + width: 100%; + -webkit-backface-visibility: hidden; + backface-visibility: hidden; +} +.tile-large .tile-content.flipVertical .slide { + z-index: 2; + -webkit-transform: rotateY(0deg); + transform: rotateY(0deg); +} +.tile-large .tile-content.flipVertical .slide-over { + -webkit-transform: rotateY(180deg); + transform: rotateY(180deg); +} +.tile-large .tile-content.flipHorizontal { + -webkit-transform: perspective(1000px); + transform: perspective(1000px); + overflow: visible; +} +.tile-large:hover .tile-content.flipHorizontal, +.tile-large.hover .tile-content.flipHorizontal, +.tile-large.flip .tile-content.flipHorizontal { + -webkit-transform: rotateX(180deg); + transform: rotateX(180deg); +} +.tile-large .tile-content.flipHorizontal { + -webkit-transform-style: preserve-3d; + transform-style: preserve-3d; + transition: all 0.6s ease; +} +.tile-large .tile-content.flipHorizontal .slide, +.tile-large .tile-content.flipHorizontal .slide-over { + top: 0; + left: 0; + position: absolute; + height: 100%; + width: 100%; + -webkit-backface-visibility: hidden; + backface-visibility: hidden; +} +.tile-large .tile-content.flipHorizontal .slide { + z-index: 2; + -webkit-transform: rotateX(0deg); + transform: rotateX(0deg); +} +.tile-large .tile-content.flipHorizontal .slide-over { + -webkit-transform: rotateX(180deg); + transform: rotateX(180deg); +} +.tile-large .tile-badge { + position: absolute; + bottom: 0; + right: .625rem; + padding: .25rem .625rem; + z-index: 999; +} +.tile-large .tile-label { + position: absolute; + bottom: 0; + left: .625rem; + padding: .425rem .25rem; + z-index: 999; +} +.tile-big { + width: 150px; + height: 150px; + display: block; + float: left; + margin: 5px; + background-color: #eeeeee; + box-shadow: inset 0 0 1px #FFFFCC; + cursor: pointer; + position: relative; + overflow: hidden; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; + overflow: visible; + width: 470px; + height: 470px; +} +.tile-big:hover { + outline: #999999 solid 3px; +} +.tile-big:active { + outline: 0; +} +.tile-big.no-outline { + outline-color: transparent; +} +.tile-big.small-tile { + width: 70px; + height: 70px; +} +.tile-big.wide-tile { + width: 310px; + height: 150px; +} +.tile-big.wide-tile-v { + height: 310px; + width: 150px; +} +.tile-big.large-tile { + width: 310px; + height: 310px; +} +.tile-big.big-tile { + width: 470px; + height: 470px; +} +.tile-big.super-tile { + width: 630px; + height: 630px; +} +.tile-big .tile-content.flipVertical { + -webkit-transform: perspective(1000px); + transform: perspective(1000px); + overflow: visible; +} +.tile-big:hover .tile-content.flipVertical, +.tile-big.hover .tile-content.flipVertical, +.tile-big.flip .tile-content.flipVertical { + -webkit-transform: rotateY(180deg); + transform: rotateY(180deg); +} +.tile-big .tile-content.flipVertical { + -webkit-transform-style: preserve-3d; + transform-style: preserve-3d; + transition: all 0.6s ease; +} +.tile-big .tile-content.flipVertical .slide, +.tile-big .tile-content.flipVertical .slide-over { + top: 0; + left: 0; + position: absolute; + height: 100%; + width: 100%; + -webkit-backface-visibility: hidden; + backface-visibility: hidden; +} +.tile-big .tile-content.flipVertical .slide { + z-index: 2; + -webkit-transform: rotateY(0deg); + transform: rotateY(0deg); +} +.tile-big .tile-content.flipVertical .slide-over { + -webkit-transform: rotateY(180deg); + transform: rotateY(180deg); +} +.tile-big .tile-content.flipHorizontal { + -webkit-transform: perspective(1000px); + transform: perspective(1000px); + overflow: visible; +} +.tile-big:hover .tile-content.flipHorizontal, +.tile-big.hover .tile-content.flipHorizontal, +.tile-big.flip .tile-content.flipHorizontal { + -webkit-transform: rotateX(180deg); + transform: rotateX(180deg); +} +.tile-big .tile-content.flipHorizontal { + -webkit-transform-style: preserve-3d; + transform-style: preserve-3d; + transition: all 0.6s ease; +} +.tile-big .tile-content.flipHorizontal .slide, +.tile-big .tile-content.flipHorizontal .slide-over { + top: 0; + left: 0; + position: absolute; + height: 100%; + width: 100%; + -webkit-backface-visibility: hidden; + backface-visibility: hidden; +} +.tile-big .tile-content.flipHorizontal .slide { + z-index: 2; + -webkit-transform: rotateX(0deg); + transform: rotateX(0deg); +} +.tile-big .tile-content.flipHorizontal .slide-over { + -webkit-transform: rotateX(180deg); + transform: rotateX(180deg); +} +.tile-big .tile-badge { + position: absolute; + bottom: 0; + right: .625rem; + padding: .25rem .625rem; + z-index: 999; +} +.tile-big .tile-label { + position: absolute; + bottom: 0; + left: .625rem; + padding: .425rem .25rem; + z-index: 999; +} +.tile-super { + width: 150px; + height: 150px; + display: block; + float: left; + margin: 5px; + background-color: #eeeeee; + box-shadow: inset 0 0 1px #FFFFCC; + cursor: pointer; + position: relative; + overflow: hidden; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; + overflow: visible; + width: 630px; + height: 630px; +} +.tile-super:hover { + outline: #999999 solid 3px; +} +.tile-super:active { + outline: 0; +} +.tile-super.no-outline { + outline-color: transparent; +} +.tile-super.small-tile { + width: 70px; + height: 70px; +} +.tile-super.wide-tile { + width: 310px; + height: 150px; +} +.tile-super.wide-tile-v { + height: 310px; + width: 150px; +} +.tile-super.large-tile { + width: 310px; + height: 310px; +} +.tile-super.big-tile { + width: 470px; + height: 470px; +} +.tile-super.super-tile { + width: 630px; + height: 630px; +} +.tile-super .tile-content.flipVertical { + -webkit-transform: perspective(1000px); + transform: perspective(1000px); + overflow: visible; +} +.tile-super:hover .tile-content.flipVertical, +.tile-super.hover .tile-content.flipVertical, +.tile-super.flip .tile-content.flipVertical { + -webkit-transform: rotateY(180deg); + transform: rotateY(180deg); +} +.tile-super .tile-content.flipVertical { + -webkit-transform-style: preserve-3d; + transform-style: preserve-3d; + transition: all 0.6s ease; +} +.tile-super .tile-content.flipVertical .slide, +.tile-super .tile-content.flipVertical .slide-over { + top: 0; + left: 0; + position: absolute; + height: 100%; + width: 100%; + -webkit-backface-visibility: hidden; + backface-visibility: hidden; +} +.tile-super .tile-content.flipVertical .slide { + z-index: 2; + -webkit-transform: rotateY(0deg); + transform: rotateY(0deg); +} +.tile-super .tile-content.flipVertical .slide-over { + -webkit-transform: rotateY(180deg); + transform: rotateY(180deg); +} +.tile-super .tile-content.flipHorizontal { + -webkit-transform: perspective(1000px); + transform: perspective(1000px); + overflow: visible; +} +.tile-super:hover .tile-content.flipHorizontal, +.tile-super.hover .tile-content.flipHorizontal, +.tile-super.flip .tile-content.flipHorizontal { + -webkit-transform: rotateX(180deg); + transform: rotateX(180deg); +} +.tile-super .tile-content.flipHorizontal { + -webkit-transform-style: preserve-3d; + transform-style: preserve-3d; + transition: all 0.6s ease; +} +.tile-super .tile-content.flipHorizontal .slide, +.tile-super .tile-content.flipHorizontal .slide-over { + top: 0; + left: 0; + position: absolute; + height: 100%; + width: 100%; + -webkit-backface-visibility: hidden; + backface-visibility: hidden; +} +.tile-super .tile-content.flipHorizontal .slide { + z-index: 2; + -webkit-transform: rotateX(0deg); + transform: rotateX(0deg); +} +.tile-super .tile-content.flipHorizontal .slide-over { + -webkit-transform: rotateX(180deg); + transform: rotateX(180deg); +} +.tile-super .tile-badge { + position: absolute; + bottom: 0; + right: .625rem; + padding: .25rem .625rem; + z-index: 999; +} +.tile-super .tile-label { + position: absolute; + bottom: 0; + left: .625rem; + padding: .425rem .25rem; + z-index: 999; +} +.tile-small-x { + width: 70px; +} +.tile-square-x { + width: 150px; +} +.tile-wide-x { + width: 310px; +} +.tile-large-x { + width: 310px; +} +.tile-big-x { + width: 470px; +} +.tile-super-x { + width: 630px; +} +.tile-small-y { + height: 70px; +} +.tile-square-y { + height: 150px; +} +.tile-wide-y { + height: 310px; +} +.tile-large-y { + height: 310px; +} +.tile-big-y { + height: 470px; +} +.tile-super-y { + height: 630px; +} +.tile-content { + position: absolute; + top: 0; + left: 0; + width: 100%; + height: inherit; + overflow: hidden; + display: none; +} +.tile-content:first-child { + display: block; +} +.tile-content .live-slide { + position: absolute; + height: 100%; + width: 100%; + top: 0; + left: 0; + display: none; + overflow: hidden; +} +.tile-content .live-slide:nth-child(1) { + display: block; +} +.tile-content.iconic .icon { + position: absolute; + width: 64px; + height: 64px; + font-size: 64px; + top: 50%; + margin-top: -40px; + left: 50%; + margin-left: -32px; + text-align: center; +} +.tile-small .tile-content.iconic .icon { + width: 32px; + height: 32px; + font-size: 32px; + margin-left: -16px; + margin-top: -16px; +} +.tile-content.image-set > img, +.tile-content.image-set > .image-container { + margin: 0; + padding: 0; + width: 25% ; + height: 50% ; + float: left; + border: 1px #1e1e1e solid; +} +.tile-content.image-set > img:first-child, +.tile-content.image-set > .image-container:first-child { + width: 50% ; + float: left; + height: 100% ; +} +.tile-content.slide-up > .slide, +.tile-content.slide-down > .slide, +.tile-content.slide-up-2 > .slide, +.tile-content.slide-down-2 > .slide, +.tile-content.slide-left > .slide, +.tile-content.slide-right > .slide, +.tile-content.slide-left-2 > .slide, +.tile-content.slide-right-2 > .slide, +.tile-content.slide-up > .slide-over, +.tile-content.slide-down > .slide-over, +.tile-content.slide-up-2 > .slide-over, +.tile-content.slide-down-2 > .slide-over, +.tile-content.slide-left > .slide-over, +.tile-content.slide-right > .slide-over, +.tile-content.slide-left-2 > .slide-over, +.tile-content.slide-right-2 > .slide-over { + width: 100%; + height: inherit; + display: block; + position: absolute; + box-shadow: inset 0 0 1px #FFFFCC; +} +.tile-content.slide-up > .slide, +.tile-content.slide-down > .slide, +.tile-content.slide-up-2 > .slide, +.tile-content.slide-down-2 > .slide, +.tile-content.slide-left > .slide, +.tile-content.slide-right > .slide, +.tile-content.slide-left-2 > .slide, +.tile-content.slide-right-2 > .slide { + top: 0; + z-index: 1; + transition: all 0.3s ease; +} +.tile-content.slide-up:hover > .slide, +.tile-content.slide-down:hover > .slide, +.tile-content.slide-up-2:hover > .slide, +.tile-content.slide-down-2:hover > .slide, +.tile-content.slide-left:hover > .slide, +.tile-content.slide-right:hover > .slide, +.tile-content.slide-left-2:hover > .slide, +.tile-content.slide-right-2:hover > .slide { + -webkit-transform: scale(1.5); + transform: scale(1.5); + transition: all 0.6s ease; +} +.tile-content.slide-up > .slide-over { + top: 100%; + z-index: 2; + height: 75%; + transition: all 0.6s ease; +} +.tile-content.slide-up:hover > .slide-over { + top: 25%; + transition: all 0.3s ease; +} +.tile-content.slide-up-2 > .slide-over { + top: 100%; + z-index: 2; + height: 100%; + transition: all 0.3s ease; +} +.tile-content.slide-up-2:hover > .slide { + -webkit-transform: scale(1); + transform: scale(1); + top: -100%; + transition: all 0.4s ease; +} +.tile-content.slide-up-2:hover > .slide-over { + top: 0; + transition: all 0.4s ease; +} +.tile-content.slide-down > .slide-over { + top: -100%; + z-index: 2; + height: 75%; + transition: all 0.6s ease; +} +.tile-content.slide-down:hover > .slide-over { + top: 0; + transition: all 0.3s ease; +} +.tile-content.slide-down-2 > .slide-over { + top: -100%; + z-index: 2; + height: 100%; + transition: all 0.3s ease; +} +.tile-content.slide-down-2:hover > .slide { + -webkit-transform: scale(1); + transform: scale(1); + top: 100%; + transition: all 0.4s ease; +} +.tile-content.slide-down-2:hover > .slide-over { + top: 0; + transition: all 0.4s ease; +} +.tile-content.slide-left > .slide-over { + left: -100%; + z-index: 2; + width: 75%; + height: 100%; + transition: all 0.6s ease; +} +.tile-content.slide-left:hover > .slide-over { + left: 0; + transition: all 0.3s ease; +} +.tile-content.slide-left-2 > .slide { + left: 0; + transition: all 0.3s ease; +} +.tile-content.slide-left-2 > .slide-over { + left: -100%; + z-index: 2; + width: 100%; + height: 100%; + transition: all 0.3s ease; +} +.tile-content.slide-left-2:hover > .slide { + -webkit-transform: scale(1); + transform: scale(1); + left: 100%; + transition: all 0.4s ease; +} +.tile-content.slide-left-2:hover > .slide-over { + left: 0; + transition: all 0.4s ease; +} +.tile-content.slide-right > .slide-over { + left: 100%; + z-index: 2; + width: 75%; + height: 100%; + transition: all 0.6s ease; +} +.tile-content.slide-right:hover > .slide-over { + left: 25%; + transition: all 0.3s ease; +} +.tile-content.slide-right-2 > .slide { + left: 0; + transition: all 0.3s ease; +} +.tile-content.slide-right-2 > .slide-over { + left: 100%; + z-index: 2; + width: 100%; + height: 100%; + transition: all 0.3s ease; +} +.tile-content.slide-right-2:hover > .slide { + -webkit-transform: scale(1); + transform: scale(1); + left: -100%; + transition: all 0.4s ease; +} +.tile-content.slide-right-2:hover > .slide-over { + left: 0; + transition: all 0.4s ease; +} +.tile-content.zooming .slide { + box-shadow: inset 0 0 1px #FFFFCC; + width: 100%; + height: 100%; + display: block; + position: relative; + transition: all 0.6s ease; +} +.tile-content.zooming .slide:hover { + -webkit-transform: scale(1.5); + transform: scale(1.5); + transition: all 0.6s ease; +} +.tile-content.zooming-out .slide { + width: 100%; + height: 100%; + display: block; + position: relative; + -webkit-transform: scale(1.5); + transform: scale(1.5); + transition: all 0.6s ease; +} +.tile-content.zooming-out .slide:hover { + -webkit-transform: scale(1); + transform: scale(1); + transition: all 0.6s ease; +} +.tile-small, +.tile, +.tile-square, +.tile-wide, +.tile-large, +.tile-big, +.tile-super { + overflow: visible; +} +.tile-small .tile-content.flipVertical, +.tile .tile-content.flipVertical, +.tile-square .tile-content.flipVertical, +.tile-wide .tile-content.flipVertical, +.tile-large .tile-content.flipVertical, +.tile-big .tile-content.flipVertical, +.tile-super .tile-content.flipVertical { + -webkit-transform: perspective(1000px); + transform: perspective(1000px); + overflow: visible; +} +.tile-small:hover .tile-content.flipVertical, +.tile:hover .tile-content.flipVertical, +.tile-square:hover .tile-content.flipVertical, +.tile-wide:hover .tile-content.flipVertical, +.tile-large:hover .tile-content.flipVertical, +.tile-big:hover .tile-content.flipVertical, +.tile-super:hover .tile-content.flipVertical, +.tile-small.hover .tile-content.flipVertical, +.tile.hover .tile-content.flipVertical, +.tile-square.hover .tile-content.flipVertical, +.tile-wide.hover .tile-content.flipVertical, +.tile-large.hover .tile-content.flipVertical, +.tile-big.hover .tile-content.flipVertical, +.tile-super.hover .tile-content.flipVertical, +.tile-small.flip .tile-content.flipVertical, +.tile.flip .tile-content.flipVertical, +.tile-square.flip .tile-content.flipVertical, +.tile-wide.flip .tile-content.flipVertical, +.tile-large.flip .tile-content.flipVertical, +.tile-big.flip .tile-content.flipVertical, +.tile-super.flip .tile-content.flipVertical { + -webkit-transform: rotateY(180deg); + transform: rotateY(180deg); +} +.tile-small .tile-content.flipVertical, +.tile .tile-content.flipVertical, +.tile-square .tile-content.flipVertical, +.tile-wide .tile-content.flipVertical, +.tile-large .tile-content.flipVertical, +.tile-big .tile-content.flipVertical, +.tile-super .tile-content.flipVertical { + -webkit-transform-style: preserve-3d; + transform-style: preserve-3d; + transition: all 0.6s ease; +} +.tile-small .tile-content.flipVertical .slide, +.tile .tile-content.flipVertical .slide, +.tile-square .tile-content.flipVertical .slide, +.tile-wide .tile-content.flipVertical .slide, +.tile-large .tile-content.flipVertical .slide, +.tile-big .tile-content.flipVertical .slide, +.tile-super .tile-content.flipVertical .slide, +.tile-small .tile-content.flipVertical .slide-over, +.tile .tile-content.flipVertical .slide-over, +.tile-square .tile-content.flipVertical .slide-over, +.tile-wide .tile-content.flipVertical .slide-over, +.tile-large .tile-content.flipVertical .slide-over, +.tile-big .tile-content.flipVertical .slide-over, +.tile-super .tile-content.flipVertical .slide-over { + top: 0; + left: 0; + position: absolute; + height: 100%; + width: 100%; + -webkit-backface-visibility: hidden; + backface-visibility: hidden; +} +.tile-small .tile-content.flipVertical .slide, +.tile .tile-content.flipVertical .slide, +.tile-square .tile-content.flipVertical .slide, +.tile-wide .tile-content.flipVertical .slide, +.tile-large .tile-content.flipVertical .slide, +.tile-big .tile-content.flipVertical .slide, +.tile-super .tile-content.flipVertical .slide { + z-index: 2; + -webkit-transform: rotateY(0deg); + transform: rotateY(0deg); +} +.tile-small .tile-content.flipVertical .slide-over, +.tile .tile-content.flipVertical .slide-over, +.tile-square .tile-content.flipVertical .slide-over, +.tile-wide .tile-content.flipVertical .slide-over, +.tile-large .tile-content.flipVertical .slide-over, +.tile-big .tile-content.flipVertical .slide-over, +.tile-super .tile-content.flipVertical .slide-over { + -webkit-transform: rotateY(180deg); + transform: rotateY(180deg); +} +.tile-small .tile-content.flipHorizontal, +.tile .tile-content.flipHorizontal, +.tile-square .tile-content.flipHorizontal, +.tile-wide .tile-content.flipHorizontal, +.tile-large .tile-content.flipHorizontal, +.tile-big .tile-content.flipHorizontal, +.tile-super .tile-content.flipHorizontal { + -webkit-transform: perspective(1000px); + transform: perspective(1000px); + overflow: visible; +} +.tile-small:hover .tile-content.flipHorizontal, +.tile:hover .tile-content.flipHorizontal, +.tile-square:hover .tile-content.flipHorizontal, +.tile-wide:hover .tile-content.flipHorizontal, +.tile-large:hover .tile-content.flipHorizontal, +.tile-big:hover .tile-content.flipHorizontal, +.tile-super:hover .tile-content.flipHorizontal, +.tile-small.hover .tile-content.flipHorizontal, +.tile.hover .tile-content.flipHorizontal, +.tile-square.hover .tile-content.flipHorizontal, +.tile-wide.hover .tile-content.flipHorizontal, +.tile-large.hover .tile-content.flipHorizontal, +.tile-big.hover .tile-content.flipHorizontal, +.tile-super.hover .tile-content.flipHorizontal, +.tile-small.flip .tile-content.flipHorizontal, +.tile.flip .tile-content.flipHorizontal, +.tile-square.flip .tile-content.flipHorizontal, +.tile-wide.flip .tile-content.flipHorizontal, +.tile-large.flip .tile-content.flipHorizontal, +.tile-big.flip .tile-content.flipHorizontal, +.tile-super.flip .tile-content.flipHorizontal { + -webkit-transform: rotateX(180deg); + transform: rotateX(180deg); +} +.tile-small .tile-content.flipHorizontal, +.tile .tile-content.flipHorizontal, +.tile-square .tile-content.flipHorizontal, +.tile-wide .tile-content.flipHorizontal, +.tile-large .tile-content.flipHorizontal, +.tile-big .tile-content.flipHorizontal, +.tile-super .tile-content.flipHorizontal { + -webkit-transform-style: preserve-3d; + transform-style: preserve-3d; + transition: all 0.6s ease; +} +.tile-small .tile-content.flipHorizontal .slide, +.tile .tile-content.flipHorizontal .slide, +.tile-square .tile-content.flipHorizontal .slide, +.tile-wide .tile-content.flipHorizontal .slide, +.tile-large .tile-content.flipHorizontal .slide, +.tile-big .tile-content.flipHorizontal .slide, +.tile-super .tile-content.flipHorizontal .slide, +.tile-small .tile-content.flipHorizontal .slide-over, +.tile .tile-content.flipHorizontal .slide-over, +.tile-square .tile-content.flipHorizontal .slide-over, +.tile-wide .tile-content.flipHorizontal .slide-over, +.tile-large .tile-content.flipHorizontal .slide-over, +.tile-big .tile-content.flipHorizontal .slide-over, +.tile-super .tile-content.flipHorizontal .slide-over { + top: 0; + left: 0; + position: absolute; + height: 100%; + width: 100%; + -webkit-backface-visibility: hidden; + backface-visibility: hidden; +} +.tile-small .tile-content.flipHorizontal .slide, +.tile .tile-content.flipHorizontal .slide, +.tile-square .tile-content.flipHorizontal .slide, +.tile-wide .tile-content.flipHorizontal .slide, +.tile-large .tile-content.flipHorizontal .slide, +.tile-big .tile-content.flipHorizontal .slide, +.tile-super .tile-content.flipHorizontal .slide { + z-index: 2; + -webkit-transform: rotateX(0deg); + transform: rotateX(0deg); +} +.tile-small .tile-content.flipHorizontal .slide-over, +.tile .tile-content.flipHorizontal .slide-over, +.tile-square .tile-content.flipHorizontal .slide-over, +.tile-wide .tile-content.flipHorizontal .slide-over, +.tile-large .tile-content.flipHorizontal .slide-over, +.tile-big .tile-content.flipHorizontal .slide-over, +.tile-super .tile-content.flipHorizontal .slide-over { + -webkit-transform: rotateX(180deg); + transform: rotateX(180deg); +} +.tile .tile-badge { + position: absolute; + bottom: 0; + right: .625rem; + padding: .25rem .625rem; + z-index: 999; +} +.tile .tile-label { + position: absolute; + bottom: 0; + left: .625rem; + padding: .425rem .25rem; + z-index: 999; +} +.tile-content .image-container, +.tile-content .carousel { + box-shadow: inset 0 0 1px #FFFFCC; + width: 100%; + height: 100%; +} +[class*=tile-transform-] { + transition: all 0.22s ease; +} +.tile-transform-right { + -webkit-transform-origin: left 50%; + transform-origin: left 50%; +} +.tile.tile-transform-right { + -webkit-transform: perspective(500px) rotateY(0.138372rad) !important; + transform: perspective(500px) rotateY(0.138372rad) !important; +} +.tile-square.tile-transform-right { + -webkit-transform: perspective(500px) rotateY(0.138372rad) !important; + transform: perspective(500px) rotateY(0.138372rad) !important; +} +.tile-wide.tile-transform-right { + -webkit-transform: perspective(500px) rotateY(0.069186rad) !important; + transform: perspective(500px) rotateY(0.069186rad) !important; +} +.tile-large.tile-transform-right { + -webkit-transform: perspective(500px) rotateY(0.069186rad) !important; + transform: perspective(500px) rotateY(0.069186rad) !important; +} +.tile-big.tile-transform-right { + -webkit-transform: perspective(500px) rotateY(0.046124rad) !important; + transform: perspective(500px) rotateY(0.046124rad) !important; +} +.tile-super.tile-transform-right { + -webkit-transform: perspective(500px) rotateY(0.034593rad) !important; + transform: perspective(500px) rotateY(0.034593rad) !important; +} +.tile-small.tile-transform-right { + -webkit-transform: perspective(500px) rotateY(0.276744rad) !important; + transform: perspective(500px) rotateY(0.276744rad) !important; +} +.tile-transform-left { + -webkit-transform-origin: right 50%; + transform-origin: right 50%; +} +.tile.tile-transform-left { + -webkit-transform: perspective(500px) rotateY(-0.138372rad) !important; + transform: perspective(500px) rotateY(-0.138372rad) !important; +} +.tile-square.tile-transform-left { + -webkit-transform: perspective(500px) rotateY(-0.138372rad) !important; + transform: perspective(500px) rotateY(-0.138372rad) !important; +} +.tile-wide.tile-transform-left { + -webkit-transform: perspective(500px) rotateY(-0.069186rad) !important; + transform: perspective(500px) rotateY(-0.069186rad) !important; +} +.tile-large.tile-transform-left { + -webkit-transform: perspective(500px) rotateY(-0.069186rad) !important; + transform: perspective(500px) rotateY(-0.069186rad) !important; +} +.tile-big.tile-transform-left { + -webkit-transform: perspective(500px) rotateY(-0.046124rad) !important; + transform: perspective(500px) rotateY(-0.046124rad) !important; +} +.tile-super.tile-transform-left { + -webkit-transform: perspective(500px) rotateY(-0.034593rad) !important; + transform: perspective(500px) rotateY(-0.034593rad) !important; +} +.tile-small.tile-transform-left { + -webkit-transform: perspective(500px) rotateY(-0.276744rad) !important; + transform: perspective(500px) rotateY(-0.276744rad) !important; +} +.tile-transform-top { + -webkit-transform-origin: 50% bottom; + transform-origin: 50% bottom; +} +.tile.tile-transform-top { + -webkit-transform: perspective(500px) rotateX(0.138372rad) !important; + transform: perspective(500px) rotateX(0.138372rad) !important; +} +.tile-square.tile-transform-top { + -webkit-transform: perspective(500px) rotateX(0.138372rad) !important; + transform: perspective(500px) rotateX(0.138372rad) !important; +} +.tile-wide.tile-transform-top { + -webkit-transform: perspective(500px) rotateX(0.069186rad) !important; + transform: perspective(500px) rotateX(0.069186rad) !important; +} +.tile-large.tile-transform-top { + -webkit-transform: perspective(500px) rotateX(0.069186rad) !important; + transform: perspective(500px) rotateX(0.069186rad) !important; +} +.tile-big.tile-transform-top { + -webkit-transform: perspective(500px) rotateX(0.046124rad) !important; + transform: perspective(500px) rotateX(0.046124rad) !important; +} +.tile-super.tile-transform-top { + -webkit-transform: perspective(500px) rotateX(0.034593rad) !important; + transform: perspective(500px) rotateX(0.034593rad) !important; +} +.tile-small.tile-transform-top { + -webkit-transform: perspective(500px) rotateX(0.276744rad) !important; + transform: perspective(500px) rotateX(0.276744rad) !important; +} +.tile-transform-bottom { + -webkit-transform-origin: 50% top; + transform-origin: 50% top; +} +.tile.tile-transform-bottom { + -webkit-transform: perspective(500px) rotateX(-0.138372rad) !important; + transform: perspective(500px) rotateX(-0.138372rad) !important; +} +.tile-square.tile-transform-bottom { + -webkit-transform: perspective(500px) rotateX(-0.138372rad) !important; + transform: perspective(500px) rotateX(-0.138372rad) !important; +} +.tile-wide.tile-transform-bottom { + -webkit-transform: perspective(500px) rotateX(-0.069186rad) !important; + transform: perspective(500px) rotateX(-0.069186rad) !important; +} +.tile-large.tile-transform-bottom { + -webkit-transform: perspective(500px) rotateX(-0.069186rad) !important; + transform: perspective(500px) rotateX(-0.069186rad) !important; +} +.tile-big.tile-transform-bottom { + -webkit-transform: perspective(500px) rotateX(-0.046124rad) !important; + transform: perspective(500px) rotateX(-0.046124rad) !important; +} +.tile-super.tile-transform-bottom { + -webkit-transform: perspective(500px) rotateX(-0.034593rad) !important; + transform: perspective(500px) rotateX(-0.034593rad) !important; +} +.tile-small.tile-transform-bottom { + -webkit-transform: perspective(500px) rotateX(-0.276744rad) !important; + transform: perspective(500px) rotateX(-0.276744rad) !important; +} +.tile-area-scheme-dark { + background-color: #1d1d1d; +} +.tile-area-scheme-dark [class*=tile] { + outline-color: #373737; +} +.tile-area-scheme-darkBrown { + background-color: #63362f; +} +.tile-area-scheme-darkBrown [class*=tile] { + outline-color: #86493f; +} +.tile-area-scheme-darkCrimson { + background-color: #640024; +} +.tile-area-scheme-darkCrimson [class*=tile] { + outline-color: #970036; +} +.tile-area-scheme-darkViolet { + background-color: #57169a; +} +.tile-area-scheme-darkViolet [class*=tile] { + outline-color: #701cc7; +} +.tile-area-scheme-darkMagenta { + background-color: #81003c; +} +.tile-area-scheme-darkMagenta [class*=tile] { + outline-color: #b40054; +} +.tile-area-scheme-darkCyan { + background-color: #1b6eae; +} +.tile-area-scheme-darkCyan [class*=tile] { + outline-color: #228ada; +} +.tile-area-scheme-darkCobalt { + background-color: #00356a; +} +.tile-area-scheme-darkCobalt [class*=tile] { + outline-color: #004e9d; +} +.tile-area-scheme-darkTeal { + background-color: #004050; +} +.tile-area-scheme-darkTeal [class*=tile] { + outline-color: #006983; +} +.tile-area-scheme-darkEmerald { + background-color: #003e00; +} +.tile-area-scheme-darkEmerald [class*=tile] { + outline-color: #007100; +} +.tile-area-scheme-darkGreen { + background-color: #128023; +} +.tile-area-scheme-darkGreen [class*=tile] { + outline-color: #18ad2f; +} +.tile-area-scheme-darkOrange { + background-color: #bf5a15; +} +.tile-area-scheme-darkOrange [class*=tile] { + outline-color: #e77120; +} +.tile-area-scheme-darkRed { + background-color: #9a1616; +} +.tile-area-scheme-darkRed [class*=tile] { + outline-color: #c71c1c; +} +.tile-area-scheme-darkPink { + background-color: #9a165a; +} +.tile-area-scheme-darkPink [class*=tile] { + outline-color: #c71c74; +} +.tile-area-scheme-darkIndigo { + background-color: #4b0096; +} +.tile-area-scheme-darkIndigo [class*=tile] { + outline-color: #6400c9; +} +.tile-area-scheme-darkBlue { + background-color: #16499a; +} +.tile-area-scheme-darkBlue [class*=tile] { + outline-color: #1c5ec7; +} +.tile-area-scheme-lightBlue { + background-color: #4390df; +} +.tile-area-scheme-lightBlue [class*=tile] { + outline-color: #6faae6; +} +.tile-area-scheme-lightTeal { + background-color: #45fffd; +} +.tile-area-scheme-lightTeal [class*=tile] { + outline-color: #78fffd; +} +.tile-area-scheme-lightOlive { + background-color: #78aa1c; +} +.tile-area-scheme-lightOlive [class*=tile] { + outline-color: #97d623; +} +.tile-area-scheme-lightOrange { + background-color: #ffc194; +} +.tile-area-scheme-lightOrange [class*=tile] { + outline-color: #ffdec7; +} +.tile-area-scheme-lightPink { + background-color: #f472d0; +} +.tile-area-scheme-lightPink [class*=tile] { + outline-color: #f8a1e0; +} +.tile-area-scheme-grayed { + background-color: #585858; +} +.tile-area-scheme-grayed [class*=tile] { + outline-color: #727272; +} +.treeview { + margin: 0; + padding: 0; + display: block; + font-size: .75rem; +} +.treeview ul { + margin: 0; + padding: 0; + list-style: none; + width: 100%; + font-size: inherit; +} +.treeview li { + font-size: inherit; + padding: 2px 16px; + cursor: pointer; + position: relative; + color: #555555; + vertical-align: middle; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; +} +.treeview li.active > .leaf { + font-weight: bold; +} +.treeview li.disabled { + cursor: default; + color: #999999; +} +.treeview li.disabled:hover > .leaf { + color: #999999; +} +.treeview li .input-control { + margin: 0 .3125rem 0 0; + height: 1rem; + line-height: .625rem; + min-height: 0; +} +.treeview li .input-control .check { + line-height: 1rem; +} +.treeview ul > li > .leaf:hover { + color: #1d1d1d; +} +.treeview .leaf { + vertical-align: middle; + display: inline-block; + color: inherit; +} +.treeview .leaf .icon { + width: 1rem; + height: 1rem; + text-align: center; +} +.treeview .node-toggle { + position: absolute; + left: 0; + top: 8px; + width: 8px; + height: 8px; +} +.treeview .node-toggle:before { + position: absolute; + display: block; + left: 0; + top: -3px; + height: 0; + content: ''; + width: 0; + border-left: 7px solid transparent; + border-top: 7px solid transparent; + border-bottom: 7px #1ba1e2 solid; +} +.treeview li:hover > .node-toggle:before { + border-bottom-color: #1b6eae; +} +.treeview .node.collapsed > .node-toggle:before { + left: -4px; + -webkit-transform: rotate(-45deg); + transform: rotate(-45deg); + border-bottom-color: #999999; +} +.treeview .node.collapsed:hover > .node-toggle:before { + border-bottom-color: #1b6eae; +} +.treeview .node.collapsed > ul { + display: none; +} +.presenter { + width: 100%; + height: 200px; + min-height: 200px; + position: relative; + display: block; +} +.scene { + position: relative; + width: 100%; + height: 100%; + margin: 0; + padding: 0; + overflow: hidden; + display: block; +} +.act { + width: 100%; + height: 100%; + display: block; + position: relative; + padding: 10px ; +} +.act:before, +.act:after { + display: table; + content: ""; +} +.act:after { + clear: both; +} +.actor { + position: absolute; + margin-right: 10px; +} +.listview { + display: block; + width: 100%; + height: auto; +} +.listview:before, +.listview:after { + display: table; + content: ""; +} +.listview:after { + clear: both; +} +.listview .list-group { + display: block; + width: 100%; + height: auto; + position: relative; +} +.listview .list-group:before, +.listview .list-group:after { + display: table; + content: ""; +} +.listview .list-group:after { + clear: both; +} +.listview .list-group .list-group-toggle { + display: block; + padding-left: 16px; + cursor: pointer; + position: relative; + margin-top: 10px; +} +.listview .list-group .list-group-toggle:before { + position: absolute; + display: block; + left: 0; + top: -3px; + height: 0; + content: ''; + width: 0; + border-left: 7px solid transparent; + border-top: 7px solid transparent; + border-bottom: 7px #1ba1e2 solid; +} +.listview .list-group .list-group-content { + display: block; + width: 100%; + height: auto; + margin-top: 1rem; +} +.listview .list-group .list-group-content:before, +.listview .list-group .list-group-content:after { + display: table; + content: ""; +} +.listview .list-group .list-group-content:after { + clear: both; +} +.listview .list-group.collapsed > .list-group-toggle:before { + left: -4px; + -webkit-transform: rotate(-45deg); + transform: rotate(-45deg); + border-bottom-color: #999999; +} +.listview .list-group.collapsed:hover > .list-group-toggle:before { + border-bottom-color: #1b6eae; +} +.listview .list { + display: block; + width: 100%; + padding: 8px 8px 4px 48px; + border: 1px transparent solid; + cursor: pointer; + height: 50px; + border-bottom-color: #eeeeee; + position: relative; +} +.listview .list:last-child { + border-bottom-color: transparent; +} +.listview .list .list-icon { + position: absolute; + left: 0; + top: 0; + margin: 8px; + width: 32px; + height: 32px; + font-size: 32px; + text-align: center; +} +.listview .list .list-data { + display: block; + margin: 4px 0; +} +.listview.list-type-icons .list { + display: block; + float: left; + padding: 0; + width: 105px; + height: 116px; + border-color: transparent; + margin: .625rem; + text-align: center; +} +.listview.list-type-icons .list .list-title { + position: absolute; + left: 0; + right: 0; + bottom: 4px; + height: auto; + text-align: center; +} +.listview.list-type-icons .list .list-icon { + width: 80px; + height: 80px; + font-size: 80px; + text-align: center; + left: 50%; + margin-left: -40px; +} +.listview.list-type-icons .list .list-data { + display: none; +} +.listview.list-type-tiles .list { + display: block; + float: left; + padding: 8px 8px 4px 48px; + width: 250px; + height: 52px; + border-color: transparent; + margin: .625rem; +} +.listview.list-type-tiles .list .list-title { + margin-top: 8px; + display: block; +} +.listview.list-type-tiles .list .list-icon { + width: 48px; + height: 48px; + font-size: 48px; + text-align: center; + top: 0; + left: 0; + margin: 2px; +} +.listview.list-type-tiles .list .list-data { + display: none; +} +.listview.list-type-listing .list { + display: block; + float: left; + padding: 4px 2px 4px 24px; + width: auto; + height: auto; + border-color: transparent; + margin: 1px; +} +.listview.list-type-listing .list .list-title { + display: block; +} +.listview.list-type-listing .list .list-icon { + width: 20px; + height: 20px; + font-size: 20px; + text-align: center; + top: 0; + left: 0; + margin: 1px; +} +.listview.list-type-listing .list .list-data { + display: none; +} +.listview .list.active { + background-color: #d1e8ff; + border-color: #64b4db; +} +.listview .list:hover { + background-color: #e5f3fb; + border-color: #64b4db; +} +.listview-outlook { + display: block; + width: 100%; + height: auto; +} +.listview-outlook:before, +.listview-outlook:after { + display: table; + content: ""; +} +.listview-outlook:after { + clear: both; +} +.listview-outlook .list { + display: block; + width: 100%; + border: 0; + border-bottom: 1px #eeeeee solid; + padding: 2px 0; + color: #555555; + margin-bottom: 0; + background-color: transparent; +} +.listview-outlook .list .list-content { + margin: 2px 0; + padding: 2px 20px; + font-size: 1rem; + color: inherit; + border-left: 3px transparent solid; +} +.listview-outlook .list .list-content .list-title, +.listview-outlook .list .list-content .list-subtitle, +.listview-outlook .list .list-content .list-remark { + width: 100%; + display: block; + color: inherit; + overflow: hidden; + white-space: nowrap; + text-overflow: ellipsis; +} +.listview-outlook .list .list-content .list-title { + line-height: 1.3; +} +.listview-outlook .list .list-content .list-subtitle { + font-size: .75rem; + line-height: 1.2; + font-weight: 500; + color: #0067cb; +} +.listview-outlook .list .list-content .list-remark { + font-weight: normal; + line-height: 1.2; + font-size: .625rem; + color: #999999; +} +.listview-outlook .list:hover { + background-color: #eeeeee; + outline: none; +} +.listview-outlook .list:hover .list-content { + border-left: 3px transparent solid; +} +.listview-outlook .list.marked .list-content { + border-left: 3px #1b6eae solid; +} +.listview-outlook .list:active, +.listview-outlook .list:focus, +.listview-outlook .list.active { + background-color: #cde6f7; + outline: 1px #999999 dotted; + color: #555555; +} +.listview-outlook .list-group { + display: block; + position: relative; +} +.listview-outlook .list-group .list-group-toggle { + display: block; + margin-bottom: 2px; + background-color: #f0f0f0; + padding: 4px 20px 4px 24px; + font-size: .875rem; + font-weight: 500; + color: #333333; + cursor: pointer; +} +.listview-outlook .list-group .list-group-toggle:before { + position: absolute; + display: block; + left: 10px; + top: 2px; + content: ''; + width: 0; + height: 0; + border-left: 7px solid transparent; + border-top: 7px solid transparent; + border-bottom: 7px solid black; +} +.listview-outlook .list-group .list-group-content { + display: block; +} +.listview-outlook .list-group.collapsed .list-group-toggle:before { + -webkit-transform: rotate(-45deg); + transform: rotate(-45deg); + margin-left: -4px; +} +.listview-outlook .list-group .list-group-toggle:hover:before { + border-bottom-color: #0067cb; +} +.charm { + display: block; + position: fixed; + z-index: 1060; + background: #1d1d1d; + color: #eeeeee; + padding: .625rem; +} +.charm .charm-closer { + position: absolute; + height: 1rem; + width: 1rem; + text-align: center; + vertical-align: middle; + font-size: 1rem; + font-weight: normal; + padding: 0 0 .625rem 0; + z-index: 3; + outline: none; + cursor: pointer; + color: #777777; + top: .25rem; + right: .25rem; +} +.charm .charm-closer:after { + content: '\D7'; + position: absolute; + left: 50%; + top: 50%; + margin-top: -0.65rem; + margin-left: -0.35rem; +} +.charm .charm-closer:hover { + color: #ffffff; +} +.charm .charm-closer:active { + color: #ffffff; +} +.charm.right-side { + width: auto; + right: 0; + top: 0; + left: auto; + bottom: 0; +} +.charm.left-side { + width: auto; + left: 0; + top: 0; + bottom: 0; +} +.charm.top-side { + height: auto; + left: 0; + right: 0; + top: 0; +} +.charm.bottom-side { + height: auto; + left: 0; + right: 0; + top: auto; + bottom: 0; +} +.notify-container { + position: fixed; + top: 0; + right: 0; + width: auto; + z-index: 1061; +} +.notify-container:before, +.notify-container:after { + display: table; + content: ""; +} +.notify-container:after { + clear: both; +} +.notify-container.position-left { + left: 0; + right: auto; +} +.notify-container.position-top { + left: 0; + right: 0; + top: 0; + height: auto; +} +.notify-container.position-top .notify { + float: left; +} +.notify-container.position-bottom { + left: 0; + right: 0; + bottom: 0; + top: auto; + height: auto; +} +.notify-container.position-bottom .notify { + float: left; +} +.notify { + display: block; + margin: .3125rem; + padding: .625rem; + min-width: 200px; + cursor: default; + max-width: 300px; + position: relative; +} +.notify .notify-icon { + width: 32px; + height: 32px; + font-size: 32px; + text-align: center; + position: absolute; + margin: -16px 10px; + top: 50%; + left: 0; +} +.notify .notify-icon ~ .notify-title, +.notify .notify-icon ~ .notify-text { + position: relative; + margin-left: 42px; +} +.notify .notify-title, +.notify .notify-text { + display: block; + margin-right: 20px; +} +.notify .notify-title { + font-weight: 500; + font-size: 1rem; +} +.notify .notify-text { + font-size: .875rem; +} +.notify .notify-closer { + position: absolute; + height: 1rem; + width: 1rem; + text-align: center; + vertical-align: middle; + font-size: 1rem; + font-weight: normal; + padding: 0 0 .625rem 0; + z-index: 3; + outline: none; + cursor: pointer; + background-color: #ffffff; + color: #777777; + top: .25rem; + right: .25rem; +} +.notify .notify-closer:after { + border-color: #777777; + content: '\D7'; + position: absolute; + left: 50%; + top: 50%; + margin-top: -0.65rem; + margin-left: -0.35rem; +} +.notify .notify-closer:hover { + background-color: #cde6f7; + color: #ffffff; +} +.notify .notify-closer:active { + background-color: #92c0e0; + color: #ffffff; +} +.notify { + background-color: #e5f3fb; + color: #1d1d1d; +} +.notify.success { + background-color: #60a917; + color: #ffffff; +} +.notify.success .notify-closer { + background-color: #60a917; + color: #ffffff; +} +.notify.success .notify-closer:hover { + background-color: #7ad61d; +} +.notify.success .notify-closer:active { + background-color: #128023; +} +.notify.alert { + background-color: #ce352c; + color: #ffffff; +} +.notify.alert .notify-closer { + background-color: #ce352c; + color: #ffffff; +} +.notify.alert .notify-closer:hover { + background-color: #da5a53; +} +.notify.alert .notify-closer:active { + background-color: #9a1616; +} +.notify.warning { + background-color: #fa6800; + color: #ffffff; +} +.notify.warning .notify-closer { + background-color: #fa6800; + color: #ffffff; +} +.notify.warning .notify-closer:hover { + background-color: #ffc194; +} +.notify.warning .notify-closer:active { + background-color: #bf5a15; +} +.notify.info { + background-color: #1ba1e2; + color: #ffffff; +} +.notify.info .notify-closer { + background-color: #1ba1e2; + color: #ffffff; +} +.notify.info .notify-closer:hover { + background-color: #59cde2; +} +.notify.info .notify-closer:active { + background-color: #1b6eae; +} +p [data-hint] { + border-bottom: 1px #373737 dotted; + white-space: nowrap; +} +.hint { + position: fixed; + color: #1d1d1d; + padding: 10px; + font-size: 12px; + width: auto; + max-width: 220px; + margin-top: 10px; + z-index: 1030; + display: none; + border: 1px #eee solid; +} +.hint .hint-title, +.hint .hint-text { + color: inherit; + text-align: left; +} +.hint .hint-title { + font-size: 1.2em; + font-weight: bold; +} +.hint:before { + content: ''; + position: absolute; + background-color: inherit; + width: 10px; + height: 10px; + border: 1px #eee solid; + -webkit-transform: rotate(45deg); + transform: rotate(45deg); +} +.hint:before { + z-index: 2; +} +.hint.bottom:before { + top: 1px; + left: 5px; + margin: -7px 0; + border-bottom: none; + border-right: none; +} +.hint.top:before { + top: 100%; + margin-top: -5px; + left: 5px; + border-top: none; + border-left: none; +} +.hint.left:before { + top: 5px; + left: 100%; + margin-left: -5px; + border-bottom: none; + border-left: none; +} +.hint.right:before { + top: 5px; + left: -9px; + margin: 1px 0 0 3px; + border-top: none; + border-right: none; +} +.hint2 { + position: fixed; + color: #1d1d1d; + padding: 10px; + font-size: 12px; + width: auto; + max-width: 220px; + margin-top: 10px; + z-index: 1030; + display: none; + border: 1px #eee solid; +} +.hint2 .hint-title, +.hint2 .hint-text { + color: inherit; + text-align: left; +} +.hint2 .hint-title { + font-size: 1.2em; + font-weight: bold; +} +.hint2:before { + content: ''; + position: absolute; + background-color: inherit; + width: 10px; + height: 10px; + border: 1px #eee solid; + -webkit-transform: rotate(45deg); + transform: rotate(45deg); +} +.hint2:before { + z-index: 2; +} +.hint2.bottom:before { + top: 1px; + left: 5px; + margin: -7px 0; + border-bottom: none; + border-right: none; +} +.hint2.top:before { + top: 100%; + margin-top: -5px; + left: 5px; + border-top: none; + border-left: none; +} +.hint2.left:before { + top: 5px; + left: 100%; + margin-left: -5px; + border-bottom: none; + border-left: none; +} +.hint2.right:before { + top: 5px; + left: -9px; + margin: 1px 0 0 3px; + border-top: none; + border-right: none; +} +.hint2.no-border { + border: none; +} +.hint2.no-border:before { + border: none; +} +.hint2.no-border.right:before { + left: -7px; +} +.hint2.bottom:before { + top: 1px; + left: 50%; + margin: -7px 0 0 -5px; + border-bottom: none; + border-right: none; +} +.hint2.top:before { + top: 100%; + margin-top: -5px; + left: 50%; + margin-left: -5px; + border-top: none; + border-left: none; +} +.hint2.left:before { + top: 50%; + margin-top: -5px; + left: 100%; + margin-left: -5px; + border-bottom: none; + border-left: none; +} +.hint2.right:before { + top: 50%; + margin: -5px 0 0 3px; + left: -9px; + border-top: none; + border-right: none; +} +.hint.no-border, +.hint2.no-border { + border: none; +} +.hint.no-border:before, +.hint2.no-border:before { + border: none; +} +.hint.no-border.right:before, +.hint2.no-border.right:before { + left: -7px; +} +.hint2.line { + padding: 2px 4px; + border: none; + display: block; + max-width: 100%; + margin: -5px 0 4px 0; +} +.hint2.line:before { + display: none; +} +.preloader-ring { + position: relative; + padding-top: 0.22rem; + width: 32px; + height: 32px; + margin: .625rem; +} +.preloader-ring > .wrap { + position: absolute; + width: 30px; + height: 30px; +} +.preloader-ring > .wrap > .circle { + opacity: 0; + width: 30px; + height: 30px; + -webkit-transform: rotate(225deg); + transform: rotate(225deg); + -webkit-animation: orbit 4000ms infinite; + animation: orbit 4000ms infinite; +} +.preloader-ring > .wrap > .circle:after { + position: absolute; + content: ''; + width: 4px; + height: 4px; + border-radius: 4px; + background: #ffffff; +} +.preloader-ring > .wrap:nth-child(2) { + -webkit-transform: rotate(-14deg); + transform: rotate(-14deg); +} +.preloader-ring > .wrap:nth-child(2) > .circle { + -webkit-animation-delay: 133.33333333ms; + animation-delay: 133.33333333ms; +} +.preloader-ring > .wrap:nth-child(3) { + -webkit-transform: rotate(-28deg); + transform: rotate(-28deg); +} +.preloader-ring > .wrap:nth-child(3) > .circle { + -webkit-animation-delay: 266.66666667ms; + animation-delay: 266.66666667ms; +} +.preloader-ring > .wrap:nth-child(4) { + -webkit-transform: rotate(-42deg); + transform: rotate(-42deg); +} +.preloader-ring > .wrap:nth-child(4) > .circle { + -webkit-animation-delay: 400ms; + animation-delay: 400ms; +} +.preloader-ring > .wrap:nth-child(5) { + -webkit-transform: rotate(-56deg); + transform: rotate(-56deg); +} +.preloader-ring > .wrap:nth-child(5) > .circle { + -webkit-animation-delay: 533.33333333ms; + animation-delay: 533.33333333ms; +} +.preloader-ring.dark-style > .wrap > .circle:after { + background-color: #555555; +} +.preloader-ring.color-style > .wrap > .circle:after { + background-color: #1ba1e2; +} +.preloader-ring.color-style > .wrap:nth-child(2) > .circle:after { + background-color: #fa6800; +} +.preloader-ring.color-style > .wrap:nth-child(3) > .circle:after { + background-color: #60a917; +} +.preloader-ring.color-style > .wrap:nth-child(4) > .circle:after { + background-color: #ce352c; +} +.preloader-ring.color-style > .wrap:nth-child(5) > .circle:after { + background-color: #e3c800; +} +.preloader-metro { + overflow: hidden; + position: relative; + width: 100%; + height: 10px; + background-color: transparent; +} +.preloader-metro > .circle { + display: inline-block; + position: absolute; + width: 10px; + height: 10px; + background-color: #ffffff; + opacity: 0; + margin-left: 5px; + -webkit-animation: metro-slide 3s cubic-bezier(0.1, 0.85, 0.9, 0.15) infinite, metro-opacity 2s ease-in-out infinite alternate; + animation: metro-slide 3s cubic-bezier(0.1, 0.85, 0.9, 0.15) infinite, metro-opacity 2s ease-in-out infinite alternate; +} +.preloader-metro > .circle:nth-child(2) { + -webkit-animation-delay: .8s; + animation-delay: .8s; +} +.preloader-metro > .circle:nth-child(3) { + -webkit-animation-delay: .7s; + animation-delay: .7s; +} +.preloader-metro > .circle:nth-child(4) { + -webkit-animation-delay: .6s; + animation-delay: .6s; +} +.preloader-metro > .circle:nth-child(5) { + -webkit-animation-delay: .5s; + animation-delay: .5s; +} +.preloader-metro.dark-style > .circle { + background-color: #555555; +} +.preloader-metro.color-style > .circle { + background-color: #1ba1e2; +} +.preloader-metro.color-style > .circle:nth-child(2) { + background-color: #fa6800; +} +.preloader-metro.color-style > .circle:nth-child(3) { + background-color: #60a917; +} +.preloader-metro.color-style > .circle:nth-child(4) { + background-color: #ce352c; +} +.preloader-metro.color-style > .circle:nth-child(5) { + background-color: #e3c800; +} +.preloader-square { + position: relative; + width: 40px; + height: 40px; + overflow: hidden; + -webkit-transform-origin: bottom left; + transform-origin: bottom left; + -webkit-animation: ani-shrink 1s linear infinite; + animation: ani-shrink 1s linear infinite; +} +.preloader-square .square { + position: absolute; + width: 19px; + height: 19px; + background: #ffffff; +} +.preloader-square .square:nth-child(1) { + left: 0; + top: 21px; +} +.preloader-square .square:nth-child(2) { + left: 21px; + top: 21px; + -webkit-animation: ani-drop 1s linear infinite; + animation: ani-drop 1s linear infinite; +} +.preloader-square .square:nth-child(3) { + left: 0; + top: 0; + -webkit-animation: ani-drop2 1s linear infinite; + animation: ani-drop2 1s linear infinite; +} +.preloader-square .square:nth-child(4) { + left: 21px; + top: 0; + -webkit-animation: ani-drop3 1s linear infinite; + animation: ani-drop3 1s linear infinite; +} +.preloader-square.dark-style > .square { + background-color: #555555; +} +.preloader-square.color-style > .square:nth-child(1) { + background-color: #fa6800; +} +.preloader-square.color-style > .square:nth-child(2) { + background-color: #60a917; +} +.preloader-square.color-style > .square:nth-child(3) { + background-color: #1ba1e2; +} +.preloader-square.color-style > .square:nth-child(4) { + background-color: #e3c800; +} +.preloader-cycle { + width: 64px; + height: 64px; + position: relative; + overflow: hidden; +} +.preloader-cycle .cycle { + display: block; + position: relative; + left: 50%; + top: 50%; + width: 64px; + height: 64px; + margin: -32px 0 0 -32px; + border-radius: 50%; + border: 3px solid transparent; + border-top-color: #ffffff; + -webkit-animation: ani-pre-spin 1s linear infinite; + animation: ani-pre-spin 1s linear infinite; + z-index: 1001; +} +.preloader-cycle .cycle:before { + content: ""; + position: absolute; + top: 5px; + left: 5px; + right: 5px; + bottom: 5px; + border-radius: 50%; + border: 3px solid transparent; + border-top-color: #ffffff; + -webkit-animation: ani-pre-spin 2s linear infinite; + animation: ani-pre-spin 2s linear infinite; +} +.preloader-cycle .cycle:after { + content: ""; + position: absolute; + top: 15px; + left: 15px; + right: 15px; + bottom: 15px; + border-radius: 50%; + border: 3px solid transparent; + border-top-color: #ffffff; + -webkit-animation: spin 1.5s linear infinite; + animation: spin 1.5s linear infinite; +} +.preloader-cycle.dark-style .cycle { + border-top-color: #1d1d1d; +} +.preloader-cycle.dark-style .cycle:before { + border-top-color: #1d1d1d; +} +.preloader-cycle.dark-style .cycle:after { + border-top-color: #1d1d1d; +} +.preloader-cycle.color-style .cycle { + border-top-color: #3498db; +} +.preloader-cycle.color-style .cycle:before { + border-top-color: #e74c3c; +} +.preloader-cycle.color-style .cycle:after { + border-top-color: #f9c922; +} +.dialog-overlay { + background-color: transparent; + position: fixed; + top: 0; + left: 0; + right: 0; + bottom: 0; + min-height: 100%; + min-width: 100%; + z-index: 1049; +} +.dialog { + position: fixed; + display: block; + width: auto; + height: auto; + float: left; + background-color: #ffffff; + color: #1d1d1d; + z-index: 1050; + box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.3); +} +.dialog .dialog-close-button { + position: absolute; + height: 1.5rem; + width: 1.5rem; + min-height: 1.5rem; + text-align: center; + vertical-align: middle; + font-size: 1rem; + font-weight: normal; + padding: .125rem 0 .625rem 0; + z-index: 3; + outline: none; + cursor: pointer; + background-color: #ffffff; + color: #777777; + top: .25rem; + right: .25rem; +} +.dialog .dialog-close-button:hover { + background-color: #cde6f7; + color: #2a8dd4; +} +.dialog .dialog-close-button:hover:after { + border-color: #2a8dd4; +} +.dialog .dialog-close-button:active { + background-color: #92c0e0; + color: #ffffff; +} +.dialog .dialog-close-button:after { + border-color: #777777; + content: '\D7'; + line-height: 1; +} +.dialog.success { + background-color: #60a917; + color: #ffffff; +} +.dialog.success .dialog-close-button { + background-color: #7ad61d; + color: #ffffff; +} +.dialog.success .dialog-close-button:active { + background-color: #128023; +} +.dialog.warning { + background-color: #fa6800; + color: #ffffff; +} +.dialog.warning .dialog-close-button { + background-color: #ffc194; + color: #ffffff; +} +.dialog.warning .dialog-close-button:active { + background-color: #bf5a15; +} +.dialog.alert { + background-color: #ce352c; + color: #ffffff; +} +.dialog.alert .dialog-close-button { + background-color: #da5a53; + color: #ffffff; +} +.dialog.alert .dialog-close-button:active { + background-color: #9a1616; +} +.dialog.info { + background-color: #1ba1e2; + color: #ffffff; +} +.dialog.info .dialog-close-button { + background-color: #59cde2; + color: #ffffff; +} +.dialog.info .dialog-close-button:active { + background-color: #1b6eae; +} +.streamer { + position: relative; + display: block; + width: 100%; + overflow: hidden; +} +.streamer .streamer-toolbar .toolbar-button { + display: block; + float: left; + width: .625rem; + height: 1.5rem; +} +.streamer .streamer-toolbar .toolbar-button.active { + background-color: #555555; + color: #ffffff; +} +.streamer .meter { + height: 25px; + width: auto; + list-style: none; + margin: 0; + padding: 0; + display: block; + overflow: hidden; +} +.streamer .meter li { + display: block; + float: left; + width: 213px; + padding: 2px 3px; + background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAANUAAAAUCAYAAAAa9HiSAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAHlJREFUeNrs2csJgDAQQMFE7Gj77yA9+UNswOwewgwI3hYTngrpY4yjAb9FRH9u7qguLfuqmFP1PKutm/2Zu36b9wvMJSoQFYgKRAWICkQFq9qrBn0HY4neM4pl5lSyP75U4PcPRAWICkQFogJEBaICUQGigjynAAMAqEOFksZmC3MAAAAASUVORK5CYII=') top left repeat-x; +} +.streamer .meter li em { + font-size: 10px; + font-style: normal; +} +.streamer .streams { + width: 142px; + padding-top: 25px; + position: absolute; + left: 0; + top: 0; + z-index: 2; + background-color: #ffffff; +} +.streamer .streams .streams-title { + position: absolute; + top: 0; +} +.streamer .streams .stream { + position: relative; + display: block; + width: 100%; + height: 75px; + margin: 0 2px 2px 0; + padding: 5px; + color: #ffffff; + cursor: pointer; +} +.streamer .streams .stream .stream-title { + font-size: .75rem; + line-height: 1; +} +.streamer .streams .stream .stream-number { + position: absolute; + left: 5px; + bottom: 5px; + font-size: .6875rem; + line-height: 1; +} +.streamer .events { + padding-left: 143px; + overflow: hidden; + height: 100%; + min-height: 100%; + overflow-x: scroll; +} +.streamer .events .double { + width: 424px; +} +.streamer .events .triple { + width: 637px; +} +.streamer .events .quadro { + width: 850px; +} +.streamer .events .events-area { + height: 100%; + min-height: 100%; + overflow: hidden; +} +.streamer .events .events-area:before, +.streamer .events .events-area:after { + display: table; + content: ""; +} +.streamer .events .events-area:after { + clear: both; +} +.streamer .events .events-grid { + height: 100%; + min-height: 100%; +} +.streamer .events .events-grid:before, +.streamer .events .events-grid:after { + display: table; + content: ""; +} +.streamer .events .events-grid:after { + clear: both; +} +.streamer .events .event-group { + height: 460px; + min-width: 211px; + margin: 0 2px 2px 0; + float: left; +} +.streamer .events .event-super { + height: 100%; + min-height: 100%; + border: 1px #d9d9d9 solid; +} +.streamer .events .event-super.medium-border { + border-width: 8px; +} +.streamer .events .event-super.large-border { + border-width: 16px; +} +.streamer .events .event-stream { + height: 75px; +} +.streamer .events .event-stream .event { + min-width: 211px; + height: 75px; + float: left; + display: block; + margin: 0 2px 2px 0; + cursor: pointer; + position: relative; + overflow: hidden; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; + border: 1px #d9d9d9 solid; +} +.streamer .events .event-stream .event.medium-border { + border-width: 8px; +} +.streamer .events .event-stream .event.large-border { + border-width: 16px; +} +.streamer .events .event-stream .event:last-child { + margin-right: 0; +} +.streamer .events .event-stream .event.event-disable { + opacity: .2; +} +.streamer .events .event-stream .event .event-content { + width: 100%; + height: 100%; + padding: 0; + margin: 0; + position: absolute; + left: 0; + top: 0; + overflow: hidden; + display: none; +} +.streamer .events .event-stream .event .event-content:first-child { + display: block; +} +.streamer .events .event-stream .event .event-content-logo { + display: block; + float: left; + margin-right: 5px; + padding: 3px; +} +.streamer .events .event-stream .event .event-content-logo .icon { + position: relative; + width: 39px; + height: 39px; + margin-bottom: 1px; +} +.streamer .events .event-stream .event .event-content-logo .icon img { + width: 100%; + height: 100%; +} +.streamer .events .event-stream .event .event-content-logo .time { + position: relative; + width: 39px; + padding: 8px 4px; + font-size: .75rem; + color: #ffffff; + line-height: 1; +} +.streamer .events .event-stream .event .event-content-data { + display: block; + padding: 0; + margin: 0; + position: relative; + margin-left: 50px; +} +.streamer .events .event-stream .event .event-content-data .title { + position: relative; + font-size: .875rem; + line-height: 1; + margin: 3px 0 0; + padding: 0; +} +.streamer .events .event-stream .event .event-content-data .subtitle { + position: relative; + font-size: .625rem; + line-height: 1; + margin: 0; + padding: 0; + margin-bottom: 10px; +} +.streamer .events .event-stream .event .event-content-data .remark { + position: absolute; + display: block; + top: 36px; + margin-right: 4px; + font-size: .6875rem; + line-height: 1; + color: #999999; +} +.streamer .events .event-stream .event:hover { + border-color: #999999; +} +.streamer .events .event-stream .event.selected { + border: 4px #4390df solid; + border-width: 1px; +} +.streamer .events .event-stream .event.selected:after { + position: absolute; + display: block; + border-top: 28px solid #4390df; + border-left: 28px solid transparent; + right: 0; + content: ""; + top: 0; + z-index: 101; +} +.streamer .events .event-stream .event.selected:before { + position: absolute; + display: block; + content: ""; + background-color: transparent; + border-color: #ffffff; + border-left: 2px solid; + border-bottom: 2px solid; + height: .25rem; + width: .5rem; + right: 0; + top: 0; + z-index: 102; + -webkit-transform: rotate(-45deg); + transform: rotate(-45deg); +} +.streamer .events .event-stream .event.selected:before { + right: 3px; + top: 3px; + color: #ffffff; +} +.streamer .events .event-stream .event.margin-one { + margin-left: 213px; +} +.streamer .events .event-stream .event.margin-double { + margin-left: 426px; +} +.streamer .events .event-stream .event.margin-triple { + margin-left: 639px; +} +.streamer .events .event-stream .event.margin-quadro { + margin-left: 852px; +} +.keypad { + position: relative; + width: 106px; + padding: 1px; + border: 1px #eeeeee solid; + vertical-align: middle; + background-color: #ffffff; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; +} +.keypad:before, +.keypad:after { + display: table; + content: ""; +} +.keypad:after { + clear: both; +} +.keypad .key { + width: 32px; + height: 32px; + display: block; + float: left; + margin: 1px; + border: 1px #eeeeee solid; + vertical-align: middle; + text-align: center; + cursor: pointer; + font-size: .875rem; + line-height: 32px; +} +.keypad .key:hover { + background-color: #eeeeee; +} +.keypad .key:active { + background-color: #555555; + color: #ffffff; +} +.keypad.shadow { + box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.3); +} +.fluent-menu .tabs-holder { + list-style: none; + position: relative; + margin: 0; + padding: 0; + display: block; + z-index: 2; +} +.fluent-menu .tabs-holder:before, +.fluent-menu .tabs-holder:after { + display: table; + content: ""; +} +.fluent-menu .tabs-holder:after { + clear: both; +} +.fluent-menu .tabs-holder li { + display: block; + float: left; + margin-right: 5px; + background-color: #ffffff; +} +.fluent-menu .tabs-holder li a { + display: block; + float: left; + padding: .25rem 1rem; + text-transform: uppercase; + font-size: .8em; + color: #444444; +} +.fluent-menu .tabs-holder li a:hover { + color: #0072c6; +} +.fluent-menu .tabs-holder li:first-child { + margin-left: 0; +} +.fluent-menu .tabs-holder li.active { + border: 1px #d4d4d4 solid; + border-bottom-color: #ffffff; +} +.fluent-menu .tabs-holder li.active a { + color: #0072c6; +} +.fluent-menu .tabs-holder li.special { + border: 1px #0072c6 solid; + background-color: #0072c6; +} +.fluent-menu .tabs-holder li.special a { + color: #ffffff; +} +.fluent-menu .tabs-holder li.special a:hover { + color: #ffffff; +} +.fluent-menu .tabs-content { + z-index: 1; + position: relative; + margin-top: -1px; + border: 1px #d4d4d4 solid; + background-color: #ffffff; + height: 120px; +} +.fluent-menu .tabs-content .tab-panel { + display: block; + height: 100%; + padding: 5px 0 2px; +} +.fluent-menu .tabs-content .tab-panel .tab-panel-group { + height: 100%; + position: relative; + display: block; + float: left; + padding: 0 5px; + border-right: 1px #d4d4d4 solid; +} +.fluent-menu .tabs-content .tab-panel .tab-panel-group:last-child { + margin-right: 0; +} +.fluent-menu .tabs-content .tab-panel .tab-group-caption { + font-size: 10px; + margin: 2px 0 -2px; + text-align: center; + display: block; + position: absolute; + bottom: 0; + right: 0; + left: 0; + white-space: nowrap; + background: #eeeeee; +} +.fluent-menu .tabs-content .tab-panel .tab-content-segment { + display: block; + float: left; + position: relative; +} +.fluent-menu .fluent-button, +.fluent-menu .fluent-big-button, +.fluent-menu .fluent-tool-button { + background-color: #ffffff; + padding: .3125rem; + display: block; + cursor: default; + border: 0; + outline: none; + font-size: .8em; + line-height: 1.2; + vertical-align: middle; +} +.fluent-menu .fluent-button:hover, +.fluent-menu .fluent-big-button:hover, +.fluent-menu .fluent-tool-button:hover { + background-color: #cde6f7; +} +.fluent-menu .fluent-button img, +.fluent-menu .fluent-big-button img, +.fluent-menu .fluent-tool-button img, +.fluent-menu .fluent-button .icon, +.fluent-menu .fluent-big-button .icon, +.fluent-menu .fluent-tool-button .icon, +.fluent-menu .fluent-button [class*=mif-], +.fluent-menu .fluent-big-button [class*=mif-], +.fluent-menu .fluent-tool-button [class*=mif-] { + line-height: 1.2; + display: block; + float: left; + margin-right: 5px; + width: 16px; + height: 16px; + color: #444444; + vertical-align: middle; +} +.fluent-menu .fluent-button .label, +.fluent-menu .fluent-big-button .label, +.fluent-menu .fluent-tool-button .label { + display: inline-block; + color: inherit; + font: inherit; +} +.fluent-menu .fluent-button:active, +.fluent-menu .fluent-big-button:active, +.fluent-menu .fluent-tool-button:active { + top: 0; + left: 0; + background-color: #75bae9; +} +.fluent-menu .fluent-button.dropdown-toggle:before, +.fluent-menu .fluent-big-button.dropdown-toggle:before, +.fluent-menu .fluent-tool-button.dropdown-toggle:before { + margin-top: -0.3125rem; +} +.fluent-menu .fluent-big-button { + padding: 7px 5px; + text-align: center; + white-space: normal; + line-height: 12px; + float: left; + position: relative; +} +.fluent-menu .fluent-big-button img, +.fluent-menu .fluent-big-button .icon, +.fluent-menu .fluent-big-button [class*=mif-] { + display: block; + width: 40px; + height: 40px; + font-size: 40px; + float: none; + text-align: center; + margin: 5px auto 5px; +} +.fluent-menu .fluent-big-button br { + line-height: 4px; + height: 4px; + font-size: 4px; +} +.fluent-menu .fluent-tool-button { + padding: 4px; +} +.fluent-menu .fluent-tool-button img, +.fluent-menu .fluent-tool-button [class*="icon-"] { + display: block; + width: 16px; + height: 16px; + font-size: 16px; + float: none; + text-align: center; +} +.fluent-menu .fluent-tool-button img { + margin-right: 0; +} +.fluent-menu .dropdown-toggle { + padding-right: 24px; +} +.fluent-menu .d-menu { + position: absolute; + top: 100%; + z-index: 100; +} +.fluent-menu .d-menu a { + padding: 4px 24px; + font-size: .8em; +} +.fluent-menu .d-menu a:hover { + background-color: #cde6f7; + color: #444444; +} +.video-player:-webkit-full-screen { + position: fixed; + top: 0; + min-width: 100%; + min-height: 100%; + width: 100%; + height: 100%; +} +.video-player:-webkit-full-screen video { + width: 100%; + height: 100%; +} +.video-player:-webkit-full-screen { + position: fixed; + top: 0; + min-width: 100%; + min-height: 100%; +} +.video-player:-moz-full-screen { + position: fixed; + top: 0; + min-width: 100%; + min-height: 100%; +} +.video-player:-ms-fullscreen { + position: fixed; + top: 0; + min-width: 100%; + min-height: 100%; +} +.video-player:fullscreen { + position: fixed; + top: 0; + min-width: 100%; + min-height: 100%; +} +.video-player:-webkit-full-screen video { + width: 100%; + height: 100%; +} +.video-player:-moz-full-screen video { + width: 100%; + height: 100%; +} +.video-player:-ms-fullscreen video { + width: 100%; + height: 100%; +} +.video-player:fullscreen video { + width: 100%; + height: 100%; +} +.video-player { + display: block; + background: #1d1d1d; + position: relative; + width: 100%; + height: auto; + z-index: 1; +} +.video-player .video-preloader { + position: absolute; + z-index: 2147483647; + top: 50%; + left: 50%; + margin-top: -32px; + margin-left: -32px; +} +.video-player .video-logo { + position: absolute; + z-index: 2147483647; + right: 20px; + top: 20px; + height: 32px; +} +.video-player video { + width: 100%; + height: 100%; + z-index: 1; +} +.video-player .controls { + position: absolute; + height: auto; + padding: .625rem; + z-index: 2147483647; + background: rgba(34, 34, 34, 0.5); +} +.video-player .controls .info-box { + float: left; + background: inherit; + margin: 0 2px; + padding: .75rem 1rem; + color: #ffffff; + height: 2.125rem; + text-align: center; + font-size: .8em; +} +.video-player .controls .control-slider { + height: 2.125rem; + float: left; + padding: 0 1rem 0; + margin: 0 2px; + background: inherit; +} +.video-player .controls .volume-slider-wrapper { + width: 6rem; +} +.video-player .controls .stream-slider-wrapper { + float: none; + width: 100%; +} +.video-player .controls .control-button { + float: left; + background: inherit; + border: 0; + color: #b3b3b3; + outline: none; + position: relative; + margin: 0 2px; +} +.video-player .controls .control-button:hover, +.video-player .controls .control-button:active { + color: #ffffff; +} +.video-player .controls .control-button.loop.active { + color: #60a917; +} +.video-player .controls .control-button.stop:disabled { + color: #555555; +} +.video-player .controls .control-button.full { + float: right; +} +.video-player .controls.position-bottom { + bottom: 0; + left: 0; + right: 0; +} +.video-player.full-screen { + position: fixed; + top: 0; + left: 0; + bottom: 0; + right: 0; + width: auto !important; + z-index: 2147483646; +} +video::-webkit-media-controls { + display: none !important; +} +video::-webkit-media-controls-enclosure { + display: none !important; +} +.audio-player { + display: inline-block; + position: relative; + background: #1d1d1d; + height: auto; +} +.audio-player .controls { + position: relative; + width: 100%; + height: auto; + padding: 4px; + background: inherit; +} +.audio-player .controls:before, +.audio-player .controls:after { + display: table; + content: ""; +} +.audio-player .controls:after { + clear: both; +} +.audio-player .controls .control-element { + height: 2.125rem; + display: inline-block; + border: none; + background: rgba(34, 34, 34, 0.5); + vertical-align: middle; +} +.audio-player .controls .stream-wrapper { + padding: 0 .25rem; +} +.audio-player .controls .stream-slider { + width: 200px; +} +.audio-player .controls .info-box { + margin: 0 2px; + padding: .75rem 1rem; + color: #ffffff; + height: 2.125rem; + line-height: 1; + text-align: center; + font-size: .8em; +} +.audio-player .controls .volume-wrapper { + width: 100px; + padding: 0 .25rem 0; +} +.audio-player .controls .play, +.audio-player .controls .stop, +.audio-player .controls .loop, +.audio-player .controls .volume, +.audio-player .controls .next, +.audio-player .controls .prev, +.audio-player .controls .shuffle, +.audio-player .controls .random, +.audio-player .controls .plist { + color: #b3b3b3; +} +.audio-player .controls .play:hover, +.audio-player .controls .stop:hover, +.audio-player .controls .loop:hover, +.audio-player .controls .volume:hover, +.audio-player .controls .next:hover, +.audio-player .controls .prev:hover, +.audio-player .controls .shuffle:hover, +.audio-player .controls .random:hover, +.audio-player .controls .plist:hover, +.audio-player .controls .play:active, +.audio-player .controls .stop:active, +.audio-player .controls .loop:active, +.audio-player .controls .volume:active, +.audio-player .controls .next:active, +.audio-player .controls .prev:active, +.audio-player .controls .shuffle:active, +.audio-player .controls .random:active, +.audio-player .controls .plist:active { + color: #ffffff; +} +.audio-player .controls .loop.active { + color: #7ad61d; +} +.audio-player .controls .control-element:disabled { + color: #555555; +} +.audio-player .play-list-wrapper { + display: block; + position: relative; + padding: .625rem; + border-bottom: 1px solid #555555; +} +.audio-player .play-list-wrapper:before, +.audio-player .play-list-wrapper:after { + display: table; + content: ""; +} +.audio-player .play-list-wrapper:after { + clear: both; +} +.audio-player .play-list-wrapper.not-visible { + display: none; +} +.audio-player .album-title { + font-size: 2rem; + color: #ffffff; + font-weight: lighter; + margin: 0 0 .625rem; + padding-bottom: .625rem; + border-bottom: 1px solid #555555; +} +.audio-player .poster { + float: left; + width: 10rem; + height: 100%; +} +.audio-player .album-desc { + padding: .625rem; + color: #eeeeee; + font-size: .6875rem; +} +.audio-player .play-list { + list-style: none; + padding: 10px; + color: #ffffff; + display: block; + font-size: .8em; + width: 100%; +} +.audio-player .play-list li { + padding: .125rem 1rem; + cursor: pointer; + position: relative; +} +.audio-player .play-list li:hover { + background: #555555; +} +.audio-player .play-list li.current { + color: #1ba1e2; + text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4); +} +.audio-player .play-list li.current:before { + content: "\25B6"; + position: absolute; + left: .25rem; +} +.audio-player .poster ~ .play-list { + margin: 0 0 0 11rem; + width: calc(100% - 11rem); +} +.audio-player.micro .plist, +.audio-player.micro .loop, +.audio-player.micro .next, +.audio-player.micro .prev, +.audio-player.micro .random, +.audio-player.micro .stop, +.audio-player.micro .stream-wrapper, +.audio-player.micro .info-box, +.audio-player.micro .volume-wrapper, +.audio-player.micro .volume { + display: none; +} +.audio-player.small .plist, +.audio-player.small .stop, +.audio-player.small .stream-wrapper, +.audio-player.small .next, +.audio-player.small .prev, +.audio-player.small .random, +.audio-player.small .loop { + display: none; +} +.audio-player.medium .plist, +.audio-player.medium .stop, +.audio-player.medium .next, +.audio-player.medium .prev, +.audio-player.medium .random, +.audio-player.medium .loop { + display: none; +} +.select2-container { + box-sizing: border-box; + display: inline-block; + margin: .3125rem 0; + position: relative; + vertical-align: middle; + height: auto; +} +.select2-container .select2-selection--single { + box-sizing: border-box; + cursor: pointer; + display: block; + min-height: 2.125rem; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; +} +.select2-container .select2-selection--single .select2-selection__rendered { + display: block; + padding-left: 8px; + padding-right: 20px; + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; +} +.select2-container .select2-selection--multiple { + box-sizing: border-box; + cursor: pointer; + display: block; + min-height: 2.125rem; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; + z-index: 998; +} +.select2-container .select2-selection--multiple .select2-selection__rendered { + display: inline-block; + overflow: hidden; + padding-left: 8px; + text-overflow: ellipsis; + white-space: nowrap; +} +.select2-container .select2-container .select2-search--inline { + float: left; +} +.select2-container .select2-container .select2-search--inline .select2-search__field { + box-sizing: border-box; + border: none; + font-size: 100%; + margin-top: 5px; +} +.select2-container .select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button { + -webkit-appearance: none; +} +.select2-dropdown { + background-color: white; + border: 1px solid #aaa; + border-radius: 0; + box-sizing: border-box; + display: block; + position: absolute; + left: -100000px; + width: 100%; + z-index: 1051; + box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2); +} +.select2-results { + display: block; +} +.select2-results__options { + list-style: none; + margin: 0; + padding: 0; +} +.select2-results__option { + padding: 6px; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; +} +.select2-results__option[aria-selected] { + cursor: pointer; +} +.select2-container--open .select2-dropdown { + left: 0; +} +.select2-search--dropdown { + display: block; + padding: 4px; +} +.select2-search--dropdown .select2-search__field { + padding: 4px; + width: 100%; + box-sizing: border-box; +} +.select2-search--dropdown .select2-search__field::-webkit-search-cancel-button { + -webkit-appearance: none; +} +.select2-search--dropdown.select2-search--hide { + display: none; +} +.select2-close-mask { + border: 0; + margin: 0; + padding: 0; + display: block; + position: fixed; + left: 0; + top: 0; + min-height: 100%; + min-width: 100%; + height: auto; + width: auto; + opacity: 0; + z-index: 2; + background-color: #fff; + filter: alpha(opacity=0); +} +.select2-container--default .select2-selection--single { + background-color: #fff; + border: 1px solid #aaa; +} +.select2-container--default .select2-selection--single .select2-selection__rendered { + color: #444; + line-height: 28px; +} +.select2-container--default .select2-selection--single .select2-selection__clear { + cursor: pointer; + float: right; + font-weight: bold; +} +.select2-container--default .select2-selection--single .select2-selection__placeholder { + color: #999; +} +.select2-container--default .select2-selection--single .select2-selection__arrow { + height: 26px; + position: absolute; + top: 1px; + right: 1px; + width: 20px; +} +.select2-container--default .select2-selection--single .select2-selection__arrow b { + border-color: #888 transparent transparent transparent; + border-style: solid; + border-width: 5px 4px 0 4px; + height: 0; + left: 50%; + margin-left: -4px; + margin-top: -2px; + position: absolute; + top: 50%; + width: 0; +} +.select2-container--default.select2-container--disabled .select2-selection--single { + background-color: #eee; + cursor: default; +} +.select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear { + display: none; +} +.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b { + border-color: transparent transparent #888 transparent; + border-width: 0 4px 5px 4px; +} +.select2-container--default .select2-selection--multiple { + background-color: white; + border: 1px solid #aaa; + cursor: text; +} +.select2-container--default .select2-selection--multiple .select2-selection__rendered { + box-sizing: border-box; + list-style: none; + margin: 0; + padding: 0 5px; + width: 100%; +} +.select2-container--default .select2-selection--multiple .select2-selection__placeholder { + color: #999; + margin-top: 5px; + float: left; +} +.select2-container--default .select2-selection--multiple .select2-selection__clear { + cursor: pointer; + float: right; + font-weight: bold; + margin-top: 5px; + margin-right: 10px; +} +.select2-container--default .select2-selection--multiple .select2-selection__choice { + background-color: #eeeeee; + border: 1px solid #999999; + color: #1d1d1d; + font-size: .875rem; + cursor: default; + float: left; + margin-right: 5px; + margin-top: 5px; + padding: 0 5px; + vertical-align: middle; + box-shadow: 0 2px 4px rgba(0, 0, 0, 0.35); +} +.select2-container--default .select2-selection--multiple .select2-selection__choice__remove { + color: #999; + cursor: pointer; + display: inline-block; + margin-right: 2px; +} +.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover { + color: #333; +} +.select2-container--default.select2-container--focus .select2-selection--multiple { + border: solid black 1px; + outline: 0; +} +.select2-container--default.select2-container--focus .select2-selection--single { + border: solid black 1px; + outline: 0; +} +.select2-container--default.select2-container--disabled .select2-selection--multiple { + background-color: #eee; + cursor: default; +} +.select2-container--default.select2-container--disabled .select2-selection__choice__remove { + display: none; +} +.select2-container--default .select2-search--dropdown .select2-search__field { + border: 1px solid #aaa; +} +.select2-container--default .select2-search--inline .select2-search__field { + background: transparent; + border: none; + outline: 0; +} +.select2-container--default .select2-results > .select2-results__options { + max-height: 200px; + overflow-y: auto; +} +.select2-container--default .select2-results__option[role=group] { + padding: 0; +} +.select2-container--default .select2-results__option[aria-disabled=true] { + color: #999; +} +.select2-container--default .select2-results__option[aria-selected=true] { + background-color: #ddd; +} +.select2-container--default .select2-results__option .select2-results__option { + padding-left: 1em; +} +.select2-container--default .select2-results__option .select2-results__option .select2-results__group { + padding-left: 0; +} +.select2-container--default .select2-results__option .select2-results__option .select2-results__option { + margin-left: -1em; + padding-left: 2em; +} +.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option { + margin-left: -2em; + padding-left: 3em; +} +.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option { + margin-left: -3em; + padding-left: 4em; +} +.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option { + margin-left: -4em; + padding-left: 5em; +} +.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option { + margin-left: -5em; + padding-left: 6em; +} +.select2-container--default .select2-results__option--highlighted[aria-selected] { + background-color: #5897fb; + color: white; +} +.select2-container--default .select2-results__group { + cursor: default; + display: block; + padding: 6px; +} +.select2-container input { + outline: none; +} +.select2-container .select2-search.select2-search--inline input { + margin-top: 7px; + padding: 0; +} +.input-control .select2-container { + margin: 0; +} +.input-control.required .select2-selection { + border: 1px dashed #1ba1e2; +} +.input-control.error .select2-selection { + border: 1px solid #ce352c; +} +.input-control.warning .select2-selection { + border: 1px solid #e3c800; +} +.input-control.success .select2-selection { + border: 1px solid #60a917; +} +.input-control.info .select2-selection { + border: 1px solid #1ba1e2; +} +/* +* Third-party plugin DataTables +* Plugin home page: http://datatables.net/ +*/ +.dataTable { + width: 100%; + margin: .625rem 0; + clear: both; +} +.dataTable th, +.dataTable td { + padding: 0.625rem; +} +.dataTable thead { + border-bottom: 4px solid #999999; +} +.dataTable thead th, +.dataTable thead td { + cursor: default; + color: #52677a; + border-color: transparent; + text-align: left; + font-style: normal; + font-weight: 700; + line-height: 100%; +} +.dataTable tfoot { + border-top: 4px solid #999999; +} +.dataTable tfoot th, +.dataTable tfoot td { + cursor: default; + color: #52677a; + border-color: transparent; + text-align: left; + font-style: normal; + font-weight: 700; + line-height: 100%; +} +.dataTable tbody td { + padding: 0.625rem 0.85rem; +} +.dataTable .sortable-column { + position: relative; + cursor: pointer; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; +} +.dataTable .sortable-column:after { + position: absolute; + content: ""; + width: 1rem; + height: 1rem; + left: 100%; + margin-left: -20px; + top: 50%; + margin-top: -0.5rem; + color: inherit; + font-size: 1rem; + line-height: 1; +} +.dataTable .sortable-column.sort-asc, +.dataTable .sortable-column.sort-desc { + background-color: #eeeeee; +} +.dataTable .sortable-column.sort-asc:after, +.dataTable .sortable-column.sort-desc:after { + color: #1d1d1d; +} +.dataTable .sortable-column.sort-asc:after { + content: "\2191"; +} +.dataTable .sortable-column.sort-desc:after { + content: "\2193"; +} +.dataTable.sortable-markers-on-left .sortable-column { + padding-left: 30px; +} +.dataTable.sortable-markers-on-left .sortable-column:before, +.dataTable.sortable-markers-on-left .sortable-column:after { + left: 0; + margin-left: 10px; +} +.dataTable tr.selected td { + background-color: rgba(28, 183, 236, 0.1); +} +.dataTable td.selected { + background-color: rgba(28, 183, 236, 0.3); +} +.dataTable.striped tbody tr:nth-child(odd) { + background: #eeeeee; +} +.dataTable.hovered tbody tr:hover { + background-color: rgba(28, 183, 236, 0.1); +} +.dataTable.cell-hovered tbody td:hover { + background-color: rgba(28, 183, 236, 0.3); +} +.dataTable.border { + border: 1px #999999 solid; +} +.dataTable.bordered th, +.dataTable.bordered td { + border: 1px #999999 solid; +} +.dataTable.bordered thead tr:first-child th, +.dataTable.bordered thead tr:first-child td { + border-top: none; +} +.dataTable.bordered thead tr:first-child th:first-child, +.dataTable.bordered thead tr:first-child td:first-child { + border-left: none; +} +.dataTable.bordered thead tr:first-child th:last-child, +.dataTable.bordered thead tr:first-child td:last-child { + border-right: none; +} +.dataTable.bordered tbody tr:first-child td { + border-top: none; +} +.dataTable.bordered tbody tr td:first-child { + border-left: none; +} +.dataTable.bordered tbody tr td:last-child { + border-right: none; +} +.dataTable.bordered tbody tr:last-child td { + border-bottom: none; +} +.dataTable .condensed th, +.dataTable .condensed td { + padding: .3125rem; +} +.dataTable .super-condensed th, +.dataTable .super-condensed td { + padding: .125rem; +} +.dataTable tbody tr.error { + background-color: #ce352c; + color: #ffffff; +} +.dataTable tbody tr.error:hover { + background-color: #da5a53; +} +.dataTable tbody tr.warning { + background-color: #fa6800; + color: #ffffff; +} +.dataTable tbody tr.warning:hover { + background-color: #ffc194; +} +.dataTable tbody tr.success { + background-color: #60a917; + color: #ffffff; +} +.dataTable tbody tr.success:hover { + background-color: #7ad61d; +} +.dataTable tbody tr.info { + background-color: #1ba1e2; + color: #ffffff; +} +.dataTable tbody tr.info:hover { + background-color: #59cde2; +} +.dataTable .sorting { + position: relative; + cursor: pointer; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; +} +.dataTable .sorting:after { + position: absolute; + content: ""; + width: 1rem; + height: 1rem; + left: 100%; + margin-left: -20px; + top: 50%; + margin-top: -0.5rem; + color: inherit; + font-size: 1rem; + line-height: 1; +} +.dataTable .sorting.sort-asc, +.dataTable .sorting.sort-desc { + background-color: #eeeeee; +} +.dataTable .sorting.sort-asc:after, +.dataTable .sorting.sort-desc:after { + color: #1d1d1d; +} +.dataTable .sorting.sort-asc:after { + content: "\2191"; +} +.dataTable .sorting.sort-desc:after { + content: "\2193"; +} +.dataTable .sorting_asc, +.dataTable .sorting_desc { + position: relative; +} +.dataTable .sorting_asc:after, +.dataTable .sorting_desc:after { + position: absolute; + content: ""; + width: 1rem; + height: 1rem; + left: 100%; + margin-left: -20px; + top: 50%; + margin-top: -0.5rem; + color: inherit; + line-height: 1; + font-size: 1.1rem; +} +.dataTable .sorting_asc { + background-color: #eeeeee; +} +.dataTable .sorting_asc:after { + color: #1d1d1d; +} +.dataTable .sorting_asc:after { + content: "\2191"; +} +.dataTable .sorting_desc { + background-color: #eeeeee; +} +.dataTable .sorting_desc:after { + color: #1d1d1d; +} +.dataTable .sorting_desc:after { + content: "\2193"; +} +.dataTables_paginate { + display: block; + margin: .625rem 0; + float: left; + width: 50%; + margin: 0; +} +.dataTables_paginate:before, +.dataTables_paginate:after { + display: table; + content: ""; +} +.dataTables_paginate:after { + clear: both; +} +.dataTables_paginate > .item { + display: block; + float: left; + margin-left: .0652rem; + padding: 0.25rem .625rem; + background-color: #ffffff; + cursor: pointer; + border: 1px #eeeeee solid; + text-align: center; + font-size: .875rem; + color: #1d1d1d; +} +.dataTables_paginate > .item:first-child { + margin-left: 0 ; +} +.dataTables_paginate > .item.current, +.dataTables_paginate > .item.active { + background-color: #1ba1e2; + border-color: #59cde2; + color: #ffffff; + text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4); +} +.dataTables_paginate > .item:hover { + background-color: #75c7ee; + border-color: #75c7ee; + color: #ffffff; +} +.dataTables_paginate > .item:disabled, +.dataTables_paginate > .item.disabled { + cursor: default; + background-color: #eeeeee; + border-color: #eeeeee; + color: #999999; +} +.dataTables_paginate > .item.spaces { + border: 0; + cursor: default; + color: #1d1d1d; +} +.dataTables_paginate > .item.spaces:hover { + background-color: inherit ; + color: #1d1d1d; +} +.dataTables_paginate.rounded > .item { + border-radius: .3125rem; +} +.dataTables_paginate.cycle > .item { + width: 28px; + height: 28px; + border-radius: 50%; + font-size: .7rem; + padding: .4375rem 0; +} +.dataTables_paginate.no-border > .item { + border: 0; +} +.dataTables_paginate.no-border > .item:hover { + color: #59cde2; + background-color: transparent ; +} +.dataTables_paginate.no-border > .item:disabled, +.dataTables_paginate.no-border > .item.disabled { + cursor: default; + background-color: transparent; + border-color: transparent; + color: #999999; +} +.dataTables_paginate.no-border > .item.current:hover, +.dataTables_paginate.no-border > .item.active:hover { + background-color: #75c7ee; + border-color: #75c7ee; + color: #ffffff; +} +.dataTables_paginate .paginate_button { + display: block; + float: left; + margin-left: .0652rem; + padding: 0.25rem .625rem; + background-color: #ffffff; + cursor: pointer; + border: 1px #eeeeee solid; + text-align: center; + font-size: .875rem; + color: #1d1d1d; +} +.dataTables_paginate .paginate_button:first-child { + margin-left: 0 ; +} +.dataTables_paginate .paginate_button.current, +.dataTables_paginate .paginate_button.active { + background-color: #1ba1e2; + border-color: #59cde2; + color: #ffffff; + text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4); +} +.dataTables_paginate .paginate_button:hover { + background-color: #75c7ee; + border-color: #75c7ee; + color: #ffffff; +} +.dataTables_paginate .paginate_button:disabled, +.dataTables_paginate .paginate_button.disabled { + cursor: default; + background-color: #eeeeee; + border-color: #eeeeee; + color: #999999; +} +.dataTables_paginate .paginate_button.spaces { + border: 0; + cursor: default; + color: #1d1d1d; +} +.dataTables_paginate .paginate_button.spaces:hover { + background-color: inherit ; + color: #1d1d1d; +} +.dataTables_paginate .ellipsis { + display: block; + float: left; + padding: .25rem .625rem; +} +.dataTables_info { + padding: 5px; + background-color: #eeeeee; + font-size: .875rem; + float: right; +} +.dataTables_length { + display: block; + float: left; + margin: .625rem 0; +} +.dataTables_length select { + -moz-appearance: none; + -webkit-appearance: none; + appearance: none; + margin: 0 .125rem; + padding: .3125rem; + border: 1px #d9d9d9 solid; +} +.dataTables_length select:focus { + outline: none; + border-color: #1d1d1d; +} +.dataTables_filter { + display: block; + float: right; + margin: .625rem 0; +} +.dataTables_filter label > input { + margin: 0 0 0 .25rem; +} +.dataTables_filter input { + -moz-appearance: none; + -webkit-appearance: none; + appearance: none; + padding: .3125rem; + border: 1px #d9d9d9 solid; +} +.dataTables_filter input:focus { + outline: none; + border-color: #1d1d1d; +} +.flexbox { + display: -webkit-flex; + display: flex; +} +.flex-dir-row { + -webkit-flex-direction: row; + flex-direction: row; +} +.flex-dir-row-reverse { + -webkit-flex-direction: row-reverse; + flex-direction: row-reverse; +} +.flex-dir-column { + -webkit-flex-direction: column; + flex-direction: column; +} +.flex-dir-column-reverse { + -webkit-flex-direction: column-reverse; + flex-direction: column-reverse; +} +.flex-wrap { + -webkit-flex-wrap: wrap; + flex-wrap: wrap; +} +.flex-wrap-reverse { + -webkit-flex-wrap: wrap-reverse; + flex-wrap: wrap-reverse; +} +.flex-no-wrap { + -webkit-flex-wrap: nowrap; + flex-wrap: nowrap; +} +.flex-just-start { + -webkit-justify-content: flex-start; + justify-content: flex-start; +} +.flex-just-end { + -webkit-justify-content: flex-end; + justify-content: flex-end; +} +.flex-just-center { + -webkit-justify-content: center; + justify-content: center; +} +.flex-just-sa { + -webkit-justify-content: space-around; + justify-content: space-around; +} +.flex-just-sb { + -webkit-justify-content: space-between; + justify-content: space-between; +} +.flex-align-stretch { + -webkit-align-items: stretch; + align-items: stretch; +} +.flex-align-start { + -webkit-align-items: flex-start; + align-items: flex-start; +} +.flex-align-end { + -webkit-align-items: flex-end; + align-items: flex-end; +} +.flex-align-center { + -webkit-align-items: center; + align-items: center; +} +.flex-align-base { + -webkit-align-items: baseline; + align-items: baseline; +} +.flex-content-stretch { + -webkit-align-content: stretch; + align-content: stretch; +} +.flex-content-start { + -webkit-align-content: flex-start; + align-content: flex-start; +} +.flex-content-end { + -webkit-align-content: flex-end; + align-content: flex-end; +} +.flex-content-center { + -webkit-align-content: center; + align-content: center; +} +.flex-content-sb { + -webkit-align-content: space-between; + align-content: space-between; +} +.flex-content-sa { + -webkit-align-content: space-around; + align-content: space-around; +} +.flex-self-auto { + -webkit-align-self: auto; + align-self: auto; +} +.flex-self-start { + -webkit-align-self: flex-start; + align-self: flex-start; +} +.flex-self-end { + -webkit-align-self: flex-end; + align-self: flex-end; +} +.flex-self-center { + -webkit-align-self: center; + align-self: center; +} +.flex-self-base { + -webkit-align-self: baseline; + align-self: baseline; +} +.flex-self-stretch { + -webkit-align-self: stretch; + align-self: stretch; +} +.no-shrink { + -webkit-flex-shrink: 0 !important; + flex-shrink: 0 !important; +} +.no-grow { + -webkit-flex-grow: 0 !important; + flex-grow: 0 !important; +} +.flex-size-auto { + -webkit-flex: 1 auto; + flex: 1 auto; +} +.flex-size1 { + -webkit-flex-grow: 1; + flex-grow: 1; +} +.flex-size2 { + -webkit-flex-grow: 2; + flex-grow: 2; +} +.flex-size3 { + -webkit-flex-grow: 3; + flex-grow: 3; +} +.flex-size4 { + -webkit-flex-grow: 4; + flex-grow: 4; +} +.flex-size5 { + -webkit-flex-grow: 5; + flex-grow: 5; +} +.flex-size6 { + -webkit-flex-grow: 6; + flex-grow: 6; +} +.flex-size7 { + -webkit-flex-grow: 7; + flex-grow: 7; +} +.flex-size8 { + -webkit-flex-grow: 8; + flex-grow: 8; +} +.flex-size9 { + -webkit-flex-grow: 9; + flex-grow: 9; +} +.flex-size10 { + -webkit-flex-grow: 10; + flex-grow: 10; +} +.flex-size11 { + -webkit-flex-grow: 11; + flex-grow: 11; +} +.flex-size12 { + -webkit-flex-grow: 12; + flex-grow: 12; +} +.flex-size-p10 { + -webkit-flex: 0 0 10%; + flex: 0 0 10%; +} +.flex-size-p20 { + -webkit-flex: 0 0 20%; + flex: 0 0 20%; +} +.flex-size-p30 { + -webkit-flex: 0 0 30%; + flex: 0 0 30%; +} +.flex-size-p40 { + -webkit-flex: 0 0 40%; + flex: 0 0 40%; +} +.flex-size-p50 { + -webkit-flex: 0 0 50%; + flex: 0 0 50%; +} +.flex-size-p60 { + -webkit-flex: 0 0 60%; + flex: 0 0 60%; +} +.flex-size-p70 { + -webkit-flex: 0 0 70%; + flex: 0 0 70%; +} +.flex-size-p80 { + -webkit-flex: 0 0 80%; + flex: 0 0 80%; +} +.flex-size-p90 { + -webkit-flex: 0 0 90%; + flex: 0 0 90%; +} +.flex-size-p100 { + -webkit-flex: 0 0 100%; + flex: 0 0 100%; +} +.flex-size-x100 { + -webkit-flex: 0 0 100px; + flex: 0 0 100px; +} +.flex-size-x200 { + -webkit-flex: 0 0 200px; + flex: 0 0 200px; +} +.flex-size-x300 { + -webkit-flex: 0 0 300px; + flex: 0 0 300px; +} +.flex-size-x400 { + -webkit-flex: 0 0 400px; + flex: 0 0 400px; +} +.flex-size-x500 { + -webkit-flex: 0 0 500px; + flex: 0 0 500px; +} +.flex-size-x600 { + -webkit-flex: 0 0 600px; + flex: 0 0 600px; +} +.flex-size-x700 { + -webkit-flex: 0 0 700px; + flex: 0 0 700px; +} +.flex-size-x800 { + -webkit-flex: 0 0 800px; + flex: 0 0 800px; +} +.flex-size-x900 { + -webkit-flex: 0 0 900px; + flex: 0 0 900px; +} +.flex-size-x1000 { + -webkit-flex: 0 0 1000px; + flex: 0 0 1000px; +} +.op-default { + background-color: rgba(27, 161, 226, 0.7); +} +.fg-black { + color: #000000 !important; +} +.bg-black { + background-color: #000000 !important; +} +.bd-black { + border-color: #000000 !important; +} +.ol-black { + outline-color: #000000 !important; +} +.op-black { + background-color: rgba(0, 0, 0, 0.7); +} +.ribbed-black { + background: #000000 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) !important; + background-size: 40px 40px !important; +} +.before-bg-black:before { + background: #000000 !important; +} +.before-fg-black:before { + color: #000000 !important; +} +.after-bg-black:after { + background: #000000 !important; +} +.after-fg-black:after { + color: #000000 !important; +} +.bg-hover-black:hover { + background: #000000 !important; +} +.bg-active-black:active { + background: #000000 !important; +} +.bg-focus-black:focus { + background: #000000 !important; +} +.fg-hover-black:hover { + color: #000000 !important; +} +.fg-active-black:active { + color: #000000 !important; +} +.fg-focus-black:focus { + color: #000000 !important; +} +.fg-white { + color: #ffffff !important; +} +.bg-white { + background-color: #ffffff !important; +} +.bd-white { + border-color: #ffffff !important; +} +.ol-white { + outline-color: #ffffff !important; +} +.op-white { + background-color: rgba(255, 255, 255, 0.7); +} +.ribbed-white { + background: #ffffff 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) !important; + background-size: 40px 40px !important; +} +.before-bg-white:before { + background: #ffffff !important; +} +.before-fg-white:before { + color: #ffffff !important; +} +.after-bg-white:after { + background: #ffffff !important; +} +.after-fg-white:after { + color: #ffffff !important; +} +.bg-hover-white:hover { + background: #ffffff !important; +} +.bg-active-white:active { + background: #ffffff !important; +} +.bg-focus-white:focus { + background: #ffffff !important; +} +.fg-hover-white:hover { + color: #ffffff !important; +} +.fg-active-white:active { + color: #ffffff !important; +} +.fg-focus-white:focus { + color: #ffffff !important; +} +.fg-lime { + color: #a4c400 !important; +} +.bg-lime { + background-color: #a4c400 !important; +} +.bd-lime { + border-color: #a4c400 !important; +} +.ol-lime { + outline-color: #a4c400 !important; +} +.op-lime { + background-color: rgba(164, 196, 0, 0.7); +} +.ribbed-lime { + background: #a4c400 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) !important; + background-size: 40px 40px !important; +} +.before-bg-lime:before { + background: #a4c400 !important; +} +.before-fg-lime:before { + color: #a4c400 !important; +} +.after-bg-lime:after { + background: #a4c400 !important; +} +.after-fg-lime:after { + color: #a4c400 !important; +} +.bg-hover-lime:hover { + background: #a4c400 !important; +} +.bg-active-lime:active { + background: #a4c400 !important; +} +.bg-focus-lime:focus { + background: #a4c400 !important; +} +.fg-hover-lime:hover { + color: #a4c400 !important; +} +.fg-active-lime:active { + color: #a4c400 !important; +} +.fg-focus-lime:focus { + color: #a4c400 !important; +} +.fg-green { + color: #60a917 !important; +} +.bg-green { + background-color: #60a917 !important; +} +.bd-green { + border-color: #60a917 !important; +} +.ol-green { + outline-color: #60a917 !important; +} +.op-green { + background-color: rgba(96, 169, 23, 0.7); +} +.ribbed-green { + background: #60a917 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) !important; + background-size: 40px 40px !important; +} +.before-bg-green:before { + background: #60a917 !important; +} +.before-fg-green:before { + color: #60a917 !important; +} +.after-bg-green:after { + background: #60a917 !important; +} +.after-fg-green:after { + color: #60a917 !important; +} +.bg-hover-green:hover { + background: #60a917 !important; +} +.bg-active-green:active { + background: #60a917 !important; +} +.bg-focus-green:focus { + background: #60a917 !important; +} +.fg-hover-green:hover { + color: #60a917 !important; +} +.fg-active-green:active { + color: #60a917 !important; +} +.fg-focus-green:focus { + color: #60a917 !important; +} +.fg-emerald { + color: #008a00 !important; +} +.bg-emerald { + background-color: #008a00 !important; +} +.bd-emerald { + border-color: #008a00 !important; +} +.ol-emerald { + outline-color: #008a00 !important; +} +.op-emerald { + background-color: rgba(0, 138, 0, 0.7); +} +.ribbed-emerald { + background: #008a00 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) !important; + background-size: 40px 40px !important; +} +.before-bg-emerald:before { + background: #008a00 !important; +} +.before-fg-emerald:before { + color: #008a00 !important; +} +.after-bg-emerald:after { + background: #008a00 !important; +} +.after-fg-emerald:after { + color: #008a00 !important; +} +.bg-hover-emerald:hover { + background: #008a00 !important; +} +.bg-active-emerald:active { + background: #008a00 !important; +} +.bg-focus-emerald:focus { + background: #008a00 !important; +} +.fg-hover-emerald:hover { + color: #008a00 !important; +} +.fg-active-emerald:active { + color: #008a00 !important; +} +.fg-focus-emerald:focus { + color: #008a00 !important; +} +.fg-blue { + color: #00aff0 !important; +} +.bg-blue { + background-color: #00aff0 !important; +} +.bd-blue { + border-color: #00aff0 !important; +} +.ol-blue { + outline-color: #00aff0 !important; +} +.op-blue { + background-color: rgba(0, 175, 240, 0.7); +} +.ribbed-blue { + background: #00aff0 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) !important; + background-size: 40px 40px !important; +} +.before-bg-blue:before { + background: #00aff0 !important; +} +.before-fg-blue:before { + color: #00aff0 !important; +} +.after-bg-blue:after { + background: #00aff0 !important; +} +.after-fg-blue:after { + color: #00aff0 !important; +} +.bg-hover-blue:hover { + background: #00aff0 !important; +} +.bg-active-blue:active { + background: #00aff0 !important; +} +.bg-focus-blue:focus { + background: #00aff0 !important; +} +.fg-hover-blue:hover { + color: #00aff0 !important; +} +.fg-active-blue:active { + color: #00aff0 !important; +} +.fg-focus-blue:focus { + color: #00aff0 !important; +} +.fg-teal { + color: #00aba9 !important; +} +.bg-teal { + background-color: #00aba9 !important; +} +.bd-teal { + border-color: #00aba9 !important; +} +.ol-teal { + outline-color: #00aba9 !important; +} +.op-teal { + background-color: rgba(0, 171, 169, 0.7); +} +.ribbed-teal { + background: #00aba9 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) !important; + background-size: 40px 40px !important; +} +.before-bg-teal:before { + background: #00aba9 !important; +} +.before-fg-teal:before { + color: #00aba9 !important; +} +.after-bg-teal:after { + background: #00aba9 !important; +} +.after-fg-teal:after { + color: #00aba9 !important; +} +.bg-hover-teal:hover { + background: #00aba9 !important; +} +.bg-active-teal:active { + background: #00aba9 !important; +} +.bg-focus-teal:focus { + background: #00aba9 !important; +} +.fg-hover-teal:hover { + color: #00aba9 !important; +} +.fg-active-teal:active { + color: #00aba9 !important; +} +.fg-focus-teal:focus { + color: #00aba9 !important; +} +.fg-cyan { + color: #1ba1e2 !important; +} +.bg-cyan { + background-color: #1ba1e2 !important; +} +.bd-cyan { + border-color: #1ba1e2 !important; +} +.ol-cyan { + outline-color: #1ba1e2 !important; +} +.op-cyan { + background-color: rgba(27, 161, 226, 0.7); +} +.ribbed-cyan { + background: #1ba1e2 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) !important; + background-size: 40px 40px !important; +} +.before-bg-cyan:before { + background: #1ba1e2 !important; +} +.before-fg-cyan:before { + color: #1ba1e2 !important; +} +.after-bg-cyan:after { + background: #1ba1e2 !important; +} +.after-fg-cyan:after { + color: #1ba1e2 !important; +} +.bg-hover-cyan:hover { + background: #1ba1e2 !important; +} +.bg-active-cyan:active { + background: #1ba1e2 !important; +} +.bg-focus-cyan:focus { + background: #1ba1e2 !important; +} +.fg-hover-cyan:hover { + color: #1ba1e2 !important; +} +.fg-active-cyan:active { + color: #1ba1e2 !important; +} +.fg-focus-cyan:focus { + color: #1ba1e2 !important; +} +.fg-cobalt { + color: #0050ef !important; +} +.bg-cobalt { + background-color: #0050ef !important; +} +.bd-cobalt { + border-color: #0050ef !important; +} +.ol-cobalt { + outline-color: #0050ef !important; +} +.op-cobalt { + background-color: rgba(0, 80, 239, 0.7); +} +.ribbed-cobalt { + background: #0050ef 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) !important; + background-size: 40px 40px !important; +} +.before-bg-cobalt:before { + background: #0050ef !important; +} +.before-fg-cobalt:before { + color: #0050ef !important; +} +.after-bg-cobalt:after { + background: #0050ef !important; +} +.after-fg-cobalt:after { + color: #0050ef !important; +} +.bg-hover-cobalt:hover { + background: #0050ef !important; +} +.bg-active-cobalt:active { + background: #0050ef !important; +} +.bg-focus-cobalt:focus { + background: #0050ef !important; +} +.fg-hover-cobalt:hover { + color: #0050ef !important; +} +.fg-active-cobalt:active { + color: #0050ef !important; +} +.fg-focus-cobalt:focus { + color: #0050ef !important; +} +.fg-indigo { + color: #6a00ff !important; +} +.bg-indigo { + background-color: #6a00ff !important; +} +.bd-indigo { + border-color: #6a00ff !important; +} +.ol-indigo { + outline-color: #6a00ff !important; +} +.op-indigo { + background-color: rgba(106, 0, 255, 0.7); +} +.ribbed-indigo { + background: #6a00ff 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) !important; + background-size: 40px 40px !important; +} +.before-bg-indigo:before { + background: #6a00ff !important; +} +.before-fg-indigo:before { + color: #6a00ff !important; +} +.after-bg-indigo:after { + background: #6a00ff !important; +} +.after-fg-indigo:after { + color: #6a00ff !important; +} +.bg-hover-indigo:hover { + background: #6a00ff !important; +} +.bg-active-indigo:active { + background: #6a00ff !important; +} +.bg-focus-indigo:focus { + background: #6a00ff !important; +} +.fg-hover-indigo:hover { + color: #6a00ff !important; +} +.fg-active-indigo:active { + color: #6a00ff !important; +} +.fg-focus-indigo:focus { + color: #6a00ff !important; +} +.fg-violet { + color: #aa00ff !important; +} +.bg-violet { + background-color: #aa00ff !important; +} +.bd-violet { + border-color: #aa00ff !important; +} +.ol-violet { + outline-color: #aa00ff !important; +} +.op-violet { + background-color: rgba(170, 0, 255, 0.7); +} +.ribbed-violet { + background: #aa00ff 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) !important; + background-size: 40px 40px !important; +} +.before-bg-violet:before { + background: #aa00ff !important; +} +.before-fg-violet:before { + color: #aa00ff !important; +} +.after-bg-violet:after { + background: #aa00ff !important; +} +.after-fg-violet:after { + color: #aa00ff !important; +} +.bg-hover-violet:hover { + background: #aa00ff !important; +} +.bg-active-violet:active { + background: #aa00ff !important; +} +.bg-focus-violet:focus { + background: #aa00ff !important; +} +.fg-hover-violet:hover { + color: #aa00ff !important; +} +.fg-active-violet:active { + color: #aa00ff !important; +} +.fg-focus-violet:focus { + color: #aa00ff !important; +} +.fg-pink { + color: #dc4fad !important; +} +.bg-pink { + background-color: #dc4fad !important; +} +.bd-pink { + border-color: #dc4fad !important; +} +.ol-pink { + outline-color: #dc4fad !important; +} +.op-pink { + background-color: rgba(220, 79, 173, 0.7); +} +.ribbed-pink { + background: #dc4fad 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) !important; + background-size: 40px 40px !important; +} +.before-bg-pink:before { + background: #dc4fad !important; +} +.before-fg-pink:before { + color: #dc4fad !important; +} +.after-bg-pink:after { + background: #dc4fad !important; +} +.after-fg-pink:after { + color: #dc4fad !important; +} +.bg-hover-pink:hover { + background: #dc4fad !important; +} +.bg-active-pink:active { + background: #dc4fad !important; +} +.bg-focus-pink:focus { + background: #dc4fad !important; +} +.fg-hover-pink:hover { + color: #dc4fad !important; +} +.fg-active-pink:active { + color: #dc4fad !important; +} +.fg-focus-pink:focus { + color: #dc4fad !important; +} +.fg-magenta { + color: #d80073 !important; +} +.bg-magenta { + background-color: #d80073 !important; +} +.bd-magenta { + border-color: #d80073 !important; +} +.ol-magenta { + outline-color: #d80073 !important; +} +.op-magenta { + background-color: rgba(216, 0, 115, 0.7); +} +.ribbed-magenta { + background: #d80073 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) !important; + background-size: 40px 40px !important; +} +.before-bg-magenta:before { + background: #d80073 !important; +} +.before-fg-magenta:before { + color: #d80073 !important; +} +.after-bg-magenta:after { + background: #d80073 !important; +} +.after-fg-magenta:after { + color: #d80073 !important; +} +.bg-hover-magenta:hover { + background: #d80073 !important; +} +.bg-active-magenta:active { + background: #d80073 !important; +} +.bg-focus-magenta:focus { + background: #d80073 !important; +} +.fg-hover-magenta:hover { + color: #d80073 !important; +} +.fg-active-magenta:active { + color: #d80073 !important; +} +.fg-focus-magenta:focus { + color: #d80073 !important; +} +.fg-crimson { + color: #a20025 !important; +} +.bg-crimson { + background-color: #a20025 !important; +} +.bd-crimson { + border-color: #a20025 !important; +} +.ol-crimson { + outline-color: #a20025 !important; +} +.op-crimson { + background-color: rgba(162, 0, 37, 0.7); +} +.ribbed-crimson { + background: #a20025 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) !important; + background-size: 40px 40px !important; +} +.before-bg-crimson:before { + background: #a20025 !important; +} +.before-fg-crimson:before { + color: #a20025 !important; +} +.after-bg-crimson:after { + background: #a20025 !important; +} +.after-fg-crimson:after { + color: #a20025 !important; +} +.bg-hover-crimson:hover { + background: #a20025 !important; +} +.bg-active-crimson:active { + background: #a20025 !important; +} +.bg-focus-crimson:focus { + background: #a20025 !important; +} +.fg-hover-crimson:hover { + color: #a20025 !important; +} +.fg-active-crimson:active { + color: #a20025 !important; +} +.fg-focus-crimson:focus { + color: #a20025 !important; +} +.fg-red { + color: #ce352c !important; +} +.bg-red { + background-color: #ce352c !important; +} +.bd-red { + border-color: #ce352c !important; +} +.ol-red { + outline-color: #ce352c !important; +} +.op-red { + background-color: rgba(206, 53, 44, 0.7); +} +.ribbed-red { + background: #ce352c 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) !important; + background-size: 40px 40px !important; +} +.before-bg-red:before { + background: #ce352c !important; +} +.before-fg-red:before { + color: #ce352c !important; +} +.after-bg-red:after { + background: #ce352c !important; +} +.after-fg-red:after { + color: #ce352c !important; +} +.bg-hover-red:hover { + background: #ce352c !important; +} +.bg-active-red:active { + background: #ce352c !important; +} +.bg-focus-red:focus { + background: #ce352c !important; +} +.fg-hover-red:hover { + color: #ce352c !important; +} +.fg-active-red:active { + color: #ce352c !important; +} +.fg-focus-red:focus { + color: #ce352c !important; +} +.fg-orange { + color: #fa6800 !important; +} +.bg-orange { + background-color: #fa6800 !important; +} +.bd-orange { + border-color: #fa6800 !important; +} +.ol-orange { + outline-color: #fa6800 !important; +} +.op-orange { + background-color: rgba(250, 104, 0, 0.7); +} +.ribbed-orange { + background: #fa6800 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) !important; + background-size: 40px 40px !important; +} +.before-bg-orange:before { + background: #fa6800 !important; +} +.before-fg-orange:before { + color: #fa6800 !important; +} +.after-bg-orange:after { + background: #fa6800 !important; +} +.after-fg-orange:after { + color: #fa6800 !important; +} +.bg-hover-orange:hover { + background: #fa6800 !important; +} +.bg-active-orange:active { + background: #fa6800 !important; +} +.bg-focus-orange:focus { + background: #fa6800 !important; +} +.fg-hover-orange:hover { + color: #fa6800 !important; +} +.fg-active-orange:active { + color: #fa6800 !important; +} +.fg-focus-orange:focus { + color: #fa6800 !important; +} +.fg-amber { + color: #f0a30a !important; +} +.bg-amber { + background-color: #f0a30a !important; +} +.bd-amber { + border-color: #f0a30a !important; +} +.ol-amber { + outline-color: #f0a30a !important; +} +.op-amber { + background-color: rgba(240, 163, 10, 0.7); +} +.ribbed-amber { + background: #f0a30a 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) !important; + background-size: 40px 40px !important; +} +.before-bg-amber:before { + background: #f0a30a !important; +} +.before-fg-amber:before { + color: #f0a30a !important; +} +.after-bg-amber:after { + background: #f0a30a !important; +} +.after-fg-amber:after { + color: #f0a30a !important; +} +.bg-hover-amber:hover { + background: #f0a30a !important; +} +.bg-active-amber:active { + background: #f0a30a !important; +} +.bg-focus-amber:focus { + background: #f0a30a !important; +} +.fg-hover-amber:hover { + color: #f0a30a !important; +} +.fg-active-amber:active { + color: #f0a30a !important; +} +.fg-focus-amber:focus { + color: #f0a30a !important; +} +.fg-yellow { + color: #e3c800 !important; +} +.bg-yellow { + background-color: #e3c800 !important; +} +.bd-yellow { + border-color: #e3c800 !important; +} +.ol-yellow { + outline-color: #e3c800 !important; +} +.op-yellow { + background-color: rgba(227, 200, 0, 0.7); +} +.ribbed-yellow { + background: #e3c800 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) !important; + background-size: 40px 40px !important; +} +.before-bg-yellow:before { + background: #e3c800 !important; +} +.before-fg-yellow:before { + color: #e3c800 !important; +} +.after-bg-yellow:after { + background: #e3c800 !important; +} +.after-fg-yellow:after { + color: #e3c800 !important; +} +.bg-hover-yellow:hover { + background: #e3c800 !important; +} +.bg-active-yellow:active { + background: #e3c800 !important; +} +.bg-focus-yellow:focus { + background: #e3c800 !important; +} +.fg-hover-yellow:hover { + color: #e3c800 !important; +} +.fg-active-yellow:active { + color: #e3c800 !important; +} +.fg-focus-yellow:focus { + color: #e3c800 !important; +} +.fg-brown { + color: #825a2c !important; +} +.bg-brown { + background-color: #825a2c !important; +} +.bd-brown { + border-color: #825a2c !important; +} +.ol-brown { + outline-color: #825a2c !important; +} +.op-brown { + background-color: rgba(130, 90, 44, 0.7); +} +.ribbed-brown { + background: #825a2c 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) !important; + background-size: 40px 40px !important; +} +.before-bg-brown:before { + background: #825a2c !important; +} +.before-fg-brown:before { + color: #825a2c !important; +} +.after-bg-brown:after { + background: #825a2c !important; +} +.after-fg-brown:after { + color: #825a2c !important; +} +.bg-hover-brown:hover { + background: #825a2c !important; +} +.bg-active-brown:active { + background: #825a2c !important; +} +.bg-focus-brown:focus { + background: #825a2c !important; +} +.fg-hover-brown:hover { + color: #825a2c !important; +} +.fg-active-brown:active { + color: #825a2c !important; +} +.fg-focus-brown:focus { + color: #825a2c !important; +} +.fg-olive { + color: #6d8764 !important; +} +.bg-olive { + background-color: #6d8764 !important; +} +.bd-olive { + border-color: #6d8764 !important; +} +.ol-olive { + outline-color: #6d8764 !important; +} +.op-olive { + background-color: rgba(109, 135, 100, 0.7); +} +.ribbed-olive { + background: #6d8764 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) !important; + background-size: 40px 40px !important; +} +.before-bg-olive:before { + background: #6d8764 !important; +} +.before-fg-olive:before { + color: #6d8764 !important; +} +.after-bg-olive:after { + background: #6d8764 !important; +} +.after-fg-olive:after { + color: #6d8764 !important; +} +.bg-hover-olive:hover { + background: #6d8764 !important; +} +.bg-active-olive:active { + background: #6d8764 !important; +} +.bg-focus-olive:focus { + background: #6d8764 !important; +} +.fg-hover-olive:hover { + color: #6d8764 !important; +} +.fg-active-olive:active { + color: #6d8764 !important; +} +.fg-focus-olive:focus { + color: #6d8764 !important; +} +.fg-steel { + color: #647687 !important; +} +.bg-steel { + background-color: #647687 !important; +} +.bd-steel { + border-color: #647687 !important; +} +.ol-steel { + outline-color: #647687 !important; +} +.op-steel { + background-color: rgba(100, 118, 135, 0.7); +} +.ribbed-steel { + background: #647687 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) !important; + background-size: 40px 40px !important; +} +.before-bg-steel:before { + background: #647687 !important; +} +.before-fg-steel:before { + color: #647687 !important; +} +.after-bg-steel:after { + background: #647687 !important; +} +.after-fg-steel:after { + color: #647687 !important; +} +.bg-hover-steel:hover { + background: #647687 !important; +} +.bg-active-steel:active { + background: #647687 !important; +} +.bg-focus-steel:focus { + background: #647687 !important; +} +.fg-hover-steel:hover { + color: #647687 !important; +} +.fg-active-steel:active { + color: #647687 !important; +} +.fg-focus-steel:focus { + color: #647687 !important; +} +.fg-mauve { + color: #76608a !important; +} +.bg-mauve { + background-color: #76608a !important; +} +.bd-mauve { + border-color: #76608a !important; +} +.ol-mauve { + outline-color: #76608a !important; +} +.op-mauve { + background-color: rgba(118, 96, 138, 0.7); +} +.ribbed-mauve { + background: #76608a 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) !important; + background-size: 40px 40px !important; +} +.before-bg-mauve:before { + background: #76608a !important; +} +.before-fg-mauve:before { + color: #76608a !important; +} +.after-bg-mauve:after { + background: #76608a !important; +} +.after-fg-mauve:after { + color: #76608a !important; +} +.bg-hover-mauve:hover { + background: #76608a !important; +} +.bg-active-mauve:active { + background: #76608a !important; +} +.bg-focus-mauve:focus { + background: #76608a !important; +} +.fg-hover-mauve:hover { + color: #76608a !important; +} +.fg-active-mauve:active { + color: #76608a !important; +} +.fg-focus-mauve:focus { + color: #76608a !important; +} +.fg-taupe { + color: #87794e !important; +} +.bg-taupe { + background-color: #87794e !important; +} +.bd-taupe { + border-color: #87794e !important; +} +.ol-taupe { + outline-color: #87794e !important; +} +.op-taupe { + background-color: rgba(135, 121, 78, 0.7); +} +.ribbed-taupe { + background: #87794e 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) !important; + background-size: 40px 40px !important; +} +.before-bg-taupe:before { + background: #87794e !important; +} +.before-fg-taupe:before { + color: #87794e !important; +} +.after-bg-taupe:after { + background: #87794e !important; +} +.after-fg-taupe:after { + color: #87794e !important; +} +.bg-hover-taupe:hover { + background: #87794e !important; +} +.bg-active-taupe:active { + background: #87794e !important; +} +.bg-focus-taupe:focus { + background: #87794e !important; +} +.fg-hover-taupe:hover { + color: #87794e !important; +} +.fg-active-taupe:active { + color: #87794e !important; +} +.fg-focus-taupe:focus { + color: #87794e !important; +} +.fg-dark { + color: #1d1d1d !important; +} +.bg-dark { + background-color: #1d1d1d !important; +} +.bd-dark { + border-color: #1d1d1d !important; +} +.ol-dark { + outline-color: #1d1d1d !important; +} +.op-dark { + background-color: rgba(29, 29, 29, 0.7); +} +.ribbed-dark { + background: #1d1d1d 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) !important; + background-size: 40px 40px !important; +} +.before-bg-dark:before { + background: #1d1d1d !important; +} +.before-fg-dark:before { + color: #1d1d1d !important; +} +.after-bg-dark:after { + background: #1d1d1d !important; +} +.after-fg-dark:after { + color: #1d1d1d !important; +} +.bg-hover-dark:hover { + background: #1d1d1d !important; +} +.bg-active-dark:active { + background: #1d1d1d !important; +} +.bg-focus-dark:focus { + background: #1d1d1d !important; +} +.fg-hover-dark:hover { + color: #1d1d1d !important; +} +.fg-active-dark:active { + color: #1d1d1d !important; +} +.fg-focus-dark:focus { + color: #1d1d1d !important; +} +.fg-darkBrown { + color: #63362f !important; +} +.bg-darkBrown { + background-color: #63362f !important; +} +.bd-darkBrown { + border-color: #63362f !important; +} +.ol-darkBrown { + outline-color: #63362f !important; +} +.op-darkBrown { + background-color: rgba(99, 54, 47, 0.7); +} +.ribbed-darkBrown { + background: #63362f 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) !important; + background-size: 40px 40px !important; +} +.before-bg-darkBrown:before { + background: #63362f !important; +} +.before-fg-darkBrown:before { + color: #63362f !important; +} +.after-bg-darkBrown:after { + background: #63362f !important; +} +.after-fg-darkBrown:after { + color: #63362f !important; +} +.bg-hover-darkBrown:hover { + background: #63362f !important; +} +.bg-active-darkBrown:active { + background: #63362f !important; +} +.bg-focus-darkBrown:focus { + background: #63362f !important; +} +.fg-hover-darkBrown:hover { + color: #63362f !important; +} +.fg-active-darkBrown:active { + color: #63362f !important; +} +.fg-focus-darkBrown:focus { + color: #63362f !important; +} +.fg-darkCrimson { + color: #640024 !important; +} +.bg-darkCrimson { + background-color: #640024 !important; +} +.bd-darkCrimson { + border-color: #640024 !important; +} +.ol-darkCrimson { + outline-color: #640024 !important; +} +.op-darkCrimson { + background-color: rgba(100, 0, 36, 0.7); +} +.ribbed-darkCrimson { + background: #640024 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) !important; + background-size: 40px 40px !important; +} +.before-bg-darkCrimson:before { + background: #640024 !important; +} +.before-fg-darkCrimson:before { + color: #640024 !important; +} +.after-bg-darkCrimson:after { + background: #640024 !important; +} +.after-fg-darkCrimson:after { + color: #640024 !important; +} +.bg-hover-darkCrimson:hover { + background: #640024 !important; +} +.bg-active-darkCrimson:active { + background: #640024 !important; +} +.bg-focus-darkCrimson:focus { + background: #640024 !important; +} +.fg-hover-darkCrimson:hover { + color: #640024 !important; +} +.fg-active-darkCrimson:active { + color: #640024 !important; +} +.fg-focus-darkCrimson:focus { + color: #640024 !important; +} +.fg-darkMagenta { + color: #81003c !important; +} +.bg-darkMagenta { + background-color: #81003c !important; +} +.bd-darkMagenta { + border-color: #81003c !important; +} +.ol-darkMagenta { + outline-color: #81003c !important; +} +.op-darkMagenta { + background-color: rgba(129, 0, 60, 0.7); +} +.ribbed-darkMagenta { + background: #81003c 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) !important; + background-size: 40px 40px !important; +} +.before-bg-darkMagenta:before { + background: #81003c !important; +} +.before-fg-darkMagenta:before { + color: #81003c !important; +} +.after-bg-darkMagenta:after { + background: #81003c !important; +} +.after-fg-darkMagenta:after { + color: #81003c !important; +} +.bg-hover-darkMagenta:hover { + background: #81003c !important; +} +.bg-active-darkMagenta:active { + background: #81003c !important; +} +.bg-focus-darkMagenta:focus { + background: #81003c !important; +} +.fg-hover-darkMagenta:hover { + color: #81003c !important; +} +.fg-active-darkMagenta:active { + color: #81003c !important; +} +.fg-focus-darkMagenta:focus { + color: #81003c !important; +} +.fg-darkIndigo { + color: #4b0096 !important; +} +.bg-darkIndigo { + background-color: #4b0096 !important; +} +.bd-darkIndigo { + border-color: #4b0096 !important; +} +.ol-darkIndigo { + outline-color: #4b0096 !important; +} +.op-darkIndigo { + background-color: rgba(75, 0, 150, 0.7); +} +.ribbed-darkIndigo { + background: #4b0096 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) !important; + background-size: 40px 40px !important; +} +.before-bg-darkIndigo:before { + background: #4b0096 !important; +} +.before-fg-darkIndigo:before { + color: #4b0096 !important; +} +.after-bg-darkIndigo:after { + background: #4b0096 !important; +} +.after-fg-darkIndigo:after { + color: #4b0096 !important; +} +.bg-hover-darkIndigo:hover { + background: #4b0096 !important; +} +.bg-active-darkIndigo:active { + background: #4b0096 !important; +} +.bg-focus-darkIndigo:focus { + background: #4b0096 !important; +} +.fg-hover-darkIndigo:hover { + color: #4b0096 !important; +} +.fg-active-darkIndigo:active { + color: #4b0096 !important; +} +.fg-focus-darkIndigo:focus { + color: #4b0096 !important; +} +.fg-darkCyan { + color: #1b6eae !important; +} +.bg-darkCyan { + background-color: #1b6eae !important; +} +.bd-darkCyan { + border-color: #1b6eae !important; +} +.ol-darkCyan { + outline-color: #1b6eae !important; +} +.op-darkCyan { + background-color: rgba(27, 110, 174, 0.7); +} +.ribbed-darkCyan { + background: #1b6eae 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) !important; + background-size: 40px 40px !important; +} +.before-bg-darkCyan:before { + background: #1b6eae !important; +} +.before-fg-darkCyan:before { + color: #1b6eae !important; +} +.after-bg-darkCyan:after { + background: #1b6eae !important; +} +.after-fg-darkCyan:after { + color: #1b6eae !important; +} +.bg-hover-darkCyan:hover { + background: #1b6eae !important; +} +.bg-active-darkCyan:active { + background: #1b6eae !important; +} +.bg-focus-darkCyan:focus { + background: #1b6eae !important; +} +.fg-hover-darkCyan:hover { + color: #1b6eae !important; +} +.fg-active-darkCyan:active { + color: #1b6eae !important; +} +.fg-focus-darkCyan:focus { + color: #1b6eae !important; +} +.fg-darkCobalt { + color: #00356a !important; +} +.bg-darkCobalt { + background-color: #00356a !important; +} +.bd-darkCobalt { + border-color: #00356a !important; +} +.ol-darkCobalt { + outline-color: #00356a !important; +} +.op-darkCobalt { + background-color: rgba(0, 53, 106, 0.7); +} +.ribbed-darkCobalt { + background: #00356a 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) !important; + background-size: 40px 40px !important; +} +.before-bg-darkCobalt:before { + background: #00356a !important; +} +.before-fg-darkCobalt:before { + color: #00356a !important; +} +.after-bg-darkCobalt:after { + background: #00356a !important; +} +.after-fg-darkCobalt:after { + color: #00356a !important; +} +.bg-hover-darkCobalt:hover { + background: #00356a !important; +} +.bg-active-darkCobalt:active { + background: #00356a !important; +} +.bg-focus-darkCobalt:focus { + background: #00356a !important; +} +.fg-hover-darkCobalt:hover { + color: #00356a !important; +} +.fg-active-darkCobalt:active { + color: #00356a !important; +} +.fg-focus-darkCobalt:focus { + color: #00356a !important; +} +.fg-darkTeal { + color: #004050 !important; +} +.bg-darkTeal { + background-color: #004050 !important; +} +.bd-darkTeal { + border-color: #004050 !important; +} +.ol-darkTeal { + outline-color: #004050 !important; +} +.op-darkTeal { + background-color: rgba(0, 64, 80, 0.7); +} +.ribbed-darkTeal { + background: #004050 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) !important; + background-size: 40px 40px !important; +} +.before-bg-darkTeal:before { + background: #004050 !important; +} +.before-fg-darkTeal:before { + color: #004050 !important; +} +.after-bg-darkTeal:after { + background: #004050 !important; +} +.after-fg-darkTeal:after { + color: #004050 !important; +} +.bg-hover-darkTeal:hover { + background: #004050 !important; +} +.bg-active-darkTeal:active { + background: #004050 !important; +} +.bg-focus-darkTeal:focus { + background: #004050 !important; +} +.fg-hover-darkTeal:hover { + color: #004050 !important; +} +.fg-active-darkTeal:active { + color: #004050 !important; +} +.fg-focus-darkTeal:focus { + color: #004050 !important; +} +.fg-darkEmerald { + color: #003e00 !important; +} +.bg-darkEmerald { + background-color: #003e00 !important; +} +.bd-darkEmerald { + border-color: #003e00 !important; +} +.ol-darkEmerald { + outline-color: #003e00 !important; +} +.op-darkEmerald { + background-color: rgba(0, 62, 0, 0.7); +} +.ribbed-darkEmerald { + background: #003e00 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) !important; + background-size: 40px 40px !important; +} +.before-bg-darkEmerald:before { + background: #003e00 !important; +} +.before-fg-darkEmerald:before { + color: #003e00 !important; +} +.after-bg-darkEmerald:after { + background: #003e00 !important; +} +.after-fg-darkEmerald:after { + color: #003e00 !important; +} +.bg-hover-darkEmerald:hover { + background: #003e00 !important; +} +.bg-active-darkEmerald:active { + background: #003e00 !important; +} +.bg-focus-darkEmerald:focus { + background: #003e00 !important; +} +.fg-hover-darkEmerald:hover { + color: #003e00 !important; +} +.fg-active-darkEmerald:active { + color: #003e00 !important; +} +.fg-focus-darkEmerald:focus { + color: #003e00 !important; +} +.fg-darkGreen { + color: #128023 !important; +} +.bg-darkGreen { + background-color: #128023 !important; +} +.bd-darkGreen { + border-color: #128023 !important; +} +.ol-darkGreen { + outline-color: #128023 !important; +} +.op-darkGreen { + background-color: rgba(18, 128, 35, 0.7); +} +.ribbed-darkGreen { + background: #128023 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) !important; + background-size: 40px 40px !important; +} +.before-bg-darkGreen:before { + background: #128023 !important; +} +.before-fg-darkGreen:before { + color: #128023 !important; +} +.after-bg-darkGreen:after { + background: #128023 !important; +} +.after-fg-darkGreen:after { + color: #128023 !important; +} +.bg-hover-darkGreen:hover { + background: #128023 !important; +} +.bg-active-darkGreen:active { + background: #128023 !important; +} +.bg-focus-darkGreen:focus { + background: #128023 !important; +} +.fg-hover-darkGreen:hover { + color: #128023 !important; +} +.fg-active-darkGreen:active { + color: #128023 !important; +} +.fg-focus-darkGreen:focus { + color: #128023 !important; +} +.fg-darkOrange { + color: #bf5a15 !important; +} +.bg-darkOrange { + background-color: #bf5a15 !important; +} +.bd-darkOrange { + border-color: #bf5a15 !important; +} +.ol-darkOrange { + outline-color: #bf5a15 !important; +} +.op-darkOrange { + background-color: rgba(191, 90, 21, 0.7); +} +.ribbed-darkOrange { + background: #bf5a15 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) !important; + background-size: 40px 40px !important; +} +.before-bg-darkOrange:before { + background: #bf5a15 !important; +} +.before-fg-darkOrange:before { + color: #bf5a15 !important; +} +.after-bg-darkOrange:after { + background: #bf5a15 !important; +} +.after-fg-darkOrange:after { + color: #bf5a15 !important; +} +.bg-hover-darkOrange:hover { + background: #bf5a15 !important; +} +.bg-active-darkOrange:active { + background: #bf5a15 !important; +} +.bg-focus-darkOrange:focus { + background: #bf5a15 !important; +} +.fg-hover-darkOrange:hover { + color: #bf5a15 !important; +} +.fg-active-darkOrange:active { + color: #bf5a15 !important; +} +.fg-focus-darkOrange:focus { + color: #bf5a15 !important; +} +.fg-darkRed { + color: #9a1616 !important; +} +.bg-darkRed { + background-color: #9a1616 !important; +} +.bd-darkRed { + border-color: #9a1616 !important; +} +.ol-darkRed { + outline-color: #9a1616 !important; +} +.op-darkRed { + background-color: rgba(154, 22, 22, 0.7); +} +.ribbed-darkRed { + background: #9a1616 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) !important; + background-size: 40px 40px !important; +} +.before-bg-darkRed:before { + background: #9a1616 !important; +} +.before-fg-darkRed:before { + color: #9a1616 !important; +} +.after-bg-darkRed:after { + background: #9a1616 !important; +} +.after-fg-darkRed:after { + color: #9a1616 !important; +} +.bg-hover-darkRed:hover { + background: #9a1616 !important; +} +.bg-active-darkRed:active { + background: #9a1616 !important; +} +.bg-focus-darkRed:focus { + background: #9a1616 !important; +} +.fg-hover-darkRed:hover { + color: #9a1616 !important; +} +.fg-active-darkRed:active { + color: #9a1616 !important; +} +.fg-focus-darkRed:focus { + color: #9a1616 !important; +} +.fg-darkPink { + color: #9a165a !important; +} +.bg-darkPink { + background-color: #9a165a !important; +} +.bd-darkPink { + border-color: #9a165a !important; +} +.ol-darkPink { + outline-color: #9a165a !important; +} +.op-darkPink { + background-color: rgba(154, 22, 90, 0.7); +} +.ribbed-darkPink { + background: #9a165a 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) !important; + background-size: 40px 40px !important; +} +.before-bg-darkPink:before { + background: #9a165a !important; +} +.before-fg-darkPink:before { + color: #9a165a !important; +} +.after-bg-darkPink:after { + background: #9a165a !important; +} +.after-fg-darkPink:after { + color: #9a165a !important; +} +.bg-hover-darkPink:hover { + background: #9a165a !important; +} +.bg-active-darkPink:active { + background: #9a165a !important; +} +.bg-focus-darkPink:focus { + background: #9a165a !important; +} +.fg-hover-darkPink:hover { + color: #9a165a !important; +} +.fg-active-darkPink:active { + color: #9a165a !important; +} +.fg-focus-darkPink:focus { + color: #9a165a !important; +} +.fg-darkViolet { + color: #57169a !important; +} +.bg-darkViolet { + background-color: #57169a !important; +} +.bd-darkViolet { + border-color: #57169a !important; +} +.ol-darkViolet { + outline-color: #57169a !important; +} +.op-darkViolet { + background-color: rgba(87, 22, 154, 0.7); +} +.ribbed-darkViolet { + background: #57169a 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) !important; + background-size: 40px 40px !important; +} +.before-bg-darkViolet:before { + background: #57169a !important; +} +.before-fg-darkViolet:before { + color: #57169a !important; +} +.after-bg-darkViolet:after { + background: #57169a !important; +} +.after-fg-darkViolet:after { + color: #57169a !important; +} +.bg-hover-darkViolet:hover { + background: #57169a !important; +} +.bg-active-darkViolet:active { + background: #57169a !important; +} +.bg-focus-darkViolet:focus { + background: #57169a !important; +} +.fg-hover-darkViolet:hover { + color: #57169a !important; +} +.fg-active-darkViolet:active { + color: #57169a !important; +} +.fg-focus-darkViolet:focus { + color: #57169a !important; +} +.fg-darkBlue { + color: #16499a !important; +} +.bg-darkBlue { + background-color: #16499a !important; +} +.bd-darkBlue { + border-color: #16499a !important; +} +.ol-darkBlue { + outline-color: #16499a !important; +} +.op-darkBlue { + background-color: rgba(22, 73, 154, 0.7); +} +.ribbed-darkBlue { + background: #16499a 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) !important; + background-size: 40px 40px !important; +} +.before-bg-darkBlue:before { + background: #16499a !important; +} +.before-fg-darkBlue:before { + color: #16499a !important; +} +.after-bg-darkBlue:after { + background: #16499a !important; +} +.after-fg-darkBlue:after { + color: #16499a !important; +} +.bg-hover-darkBlue:hover { + background: #16499a !important; +} +.bg-active-darkBlue:active { + background: #16499a !important; +} +.bg-focus-darkBlue:focus { + background: #16499a !important; +} +.fg-hover-darkBlue:hover { + color: #16499a !important; +} +.fg-active-darkBlue:active { + color: #16499a !important; +} +.fg-focus-darkBlue:focus { + color: #16499a !important; +} +.fg-lightBlue { + color: #4390df !important; +} +.bg-lightBlue { + background-color: #4390df !important; +} +.bd-lightBlue { + border-color: #4390df !important; +} +.ol-lightBlue { + outline-color: #4390df !important; +} +.op-lightBlue { + background-color: rgba(67, 144, 223, 0.7); +} +.ribbed-lightBlue { + background: #4390df 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) !important; + background-size: 40px 40px !important; +} +.before-bg-lightBlue:before { + background: #4390df !important; +} +.before-fg-lightBlue:before { + color: #4390df !important; +} +.after-bg-lightBlue:after { + background: #4390df !important; +} +.after-fg-lightBlue:after { + color: #4390df !important; +} +.bg-hover-lightBlue:hover { + background: #4390df !important; +} +.bg-active-lightBlue:active { + background: #4390df !important; +} +.bg-focus-lightBlue:focus { + background: #4390df !important; +} +.fg-hover-lightBlue:hover { + color: #4390df !important; +} +.fg-active-lightBlue:active { + color: #4390df !important; +} +.fg-focus-lightBlue:focus { + color: #4390df !important; +} +.fg-lighterBlue { + color: #00ccff !important; +} +.bg-lighterBlue { + background-color: #00ccff !important; +} +.bd-lighterBlue { + border-color: #00ccff !important; +} +.ol-lighterBlue { + outline-color: #00ccff !important; +} +.op-lighterBlue { + background-color: rgba(0, 204, 255, 0.7); +} +.ribbed-lighterBlue { + background: #00ccff 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) !important; + background-size: 40px 40px !important; +} +.before-bg-lighterBlue:before { + background: #00ccff !important; +} +.before-fg-lighterBlue:before { + color: #00ccff !important; +} +.after-bg-lighterBlue:after { + background: #00ccff !important; +} +.after-fg-lighterBlue:after { + color: #00ccff !important; +} +.bg-hover-lighterBlue:hover { + background: #00ccff !important; +} +.bg-active-lighterBlue:active { + background: #00ccff !important; +} +.bg-focus-lighterBlue:focus { + background: #00ccff !important; +} +.fg-hover-lighterBlue:hover { + color: #00ccff !important; +} +.fg-active-lighterBlue:active { + color: #00ccff !important; +} +.fg-focus-lighterBlue:focus { + color: #00ccff !important; +} +.fg-lightTeal { + color: #45fffd !important; +} +.bg-lightTeal { + background-color: #45fffd !important; +} +.bd-lightTeal { + border-color: #45fffd !important; +} +.ol-lightTeal { + outline-color: #45fffd !important; +} +.op-lightTeal { + background-color: rgba(69, 255, 253, 0.7); +} +.ribbed-lightTeal { + background: #45fffd 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) !important; + background-size: 40px 40px !important; +} +.before-bg-lightTeal:before { + background: #45fffd !important; +} +.before-fg-lightTeal:before { + color: #45fffd !important; +} +.after-bg-lightTeal:after { + background: #45fffd !important; +} +.after-fg-lightTeal:after { + color: #45fffd !important; +} +.bg-hover-lightTeal:hover { + background: #45fffd !important; +} +.bg-active-lightTeal:active { + background: #45fffd !important; +} +.bg-focus-lightTeal:focus { + background: #45fffd !important; +} +.fg-hover-lightTeal:hover { + color: #45fffd !important; +} +.fg-active-lightTeal:active { + color: #45fffd !important; +} +.fg-focus-lightTeal:focus { + color: #45fffd !important; +} +.fg-lightOlive { + color: #78aa1c !important; +} +.bg-lightOlive { + background-color: #78aa1c !important; +} +.bd-lightOlive { + border-color: #78aa1c !important; +} +.ol-lightOlive { + outline-color: #78aa1c !important; +} +.op-lightOlive { + background-color: rgba(120, 170, 28, 0.7); +} +.ribbed-lightOlive { + background: #78aa1c 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) !important; + background-size: 40px 40px !important; +} +.before-bg-lightOlive:before { + background: #78aa1c !important; +} +.before-fg-lightOlive:before { + color: #78aa1c !important; +} +.after-bg-lightOlive:after { + background: #78aa1c !important; +} +.after-fg-lightOlive:after { + color: #78aa1c !important; +} +.bg-hover-lightOlive:hover { + background: #78aa1c !important; +} +.bg-active-lightOlive:active { + background: #78aa1c !important; +} +.bg-focus-lightOlive:focus { + background: #78aa1c !important; +} +.fg-hover-lightOlive:hover { + color: #78aa1c !important; +} +.fg-active-lightOlive:active { + color: #78aa1c !important; +} +.fg-focus-lightOlive:focus { + color: #78aa1c !important; +} +.fg-lightOrange { + color: #ffc194 !important; +} +.bg-lightOrange { + background-color: #ffc194 !important; +} +.bd-lightOrange { + border-color: #ffc194 !important; +} +.ol-lightOrange { + outline-color: #ffc194 !important; +} +.op-lightOrange { + background-color: rgba(255, 193, 148, 0.7); +} +.ribbed-lightOrange { + background: #ffc194 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) !important; + background-size: 40px 40px !important; +} +.before-bg-lightOrange:before { + background: #ffc194 !important; +} +.before-fg-lightOrange:before { + color: #ffc194 !important; +} +.after-bg-lightOrange:after { + background: #ffc194 !important; +} +.after-fg-lightOrange:after { + color: #ffc194 !important; +} +.bg-hover-lightOrange:hover { + background: #ffc194 !important; +} +.bg-active-lightOrange:active { + background: #ffc194 !important; +} +.bg-focus-lightOrange:focus { + background: #ffc194 !important; +} +.fg-hover-lightOrange:hover { + color: #ffc194 !important; +} +.fg-active-lightOrange:active { + color: #ffc194 !important; +} +.fg-focus-lightOrange:focus { + color: #ffc194 !important; +} +.fg-lightPink { + color: #f472d0 !important; +} +.bg-lightPink { + background-color: #f472d0 !important; +} +.bd-lightPink { + border-color: #f472d0 !important; +} +.ol-lightPink { + outline-color: #f472d0 !important; +} +.op-lightPink { + background-color: rgba(244, 114, 208, 0.7); +} +.ribbed-lightPink { + background: #f472d0 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) !important; + background-size: 40px 40px !important; +} +.before-bg-lightPink:before { + background: #f472d0 !important; +} +.before-fg-lightPink:before { + color: #f472d0 !important; +} +.after-bg-lightPink:after { + background: #f472d0 !important; +} +.after-fg-lightPink:after { + color: #f472d0 !important; +} +.bg-hover-lightPink:hover { + background: #f472d0 !important; +} +.bg-active-lightPink:active { + background: #f472d0 !important; +} +.bg-focus-lightPink:focus { + background: #f472d0 !important; +} +.fg-hover-lightPink:hover { + color: #f472d0 !important; +} +.fg-active-lightPink:active { + color: #f472d0 !important; +} +.fg-focus-lightPink:focus { + color: #f472d0 !important; +} +.fg-lightRed { + color: #da5a53 !important; +} +.bg-lightRed { + background-color: #da5a53 !important; +} +.bd-lightRed { + border-color: #da5a53 !important; +} +.ol-lightRed { + outline-color: #da5a53 !important; +} +.op-lightRed { + background-color: rgba(218, 90, 83, 0.7); +} +.ribbed-lightRed { + background: #da5a53 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) !important; + background-size: 40px 40px !important; +} +.before-bg-lightRed:before { + background: #da5a53 !important; +} +.before-fg-lightRed:before { + color: #da5a53 !important; +} +.after-bg-lightRed:after { + background: #da5a53 !important; +} +.after-fg-lightRed:after { + color: #da5a53 !important; +} +.bg-hover-lightRed:hover { + background: #da5a53 !important; +} +.bg-active-lightRed:active { + background: #da5a53 !important; +} +.bg-focus-lightRed:focus { + background: #da5a53 !important; +} +.fg-hover-lightRed:hover { + color: #da5a53 !important; +} +.fg-active-lightRed:active { + color: #da5a53 !important; +} +.fg-focus-lightRed:focus { + color: #da5a53 !important; +} +.fg-lightGreen { + color: #7ad61d !important; +} +.bg-lightGreen { + background-color: #7ad61d !important; +} +.bd-lightGreen { + border-color: #7ad61d !important; +} +.ol-lightGreen { + outline-color: #7ad61d !important; +} +.op-lightGreen { + background-color: rgba(122, 214, 29, 0.7); +} +.ribbed-lightGreen { + background: #7ad61d 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) !important; + background-size: 40px 40px !important; +} +.before-bg-lightGreen:before { + background: #7ad61d !important; +} +.before-fg-lightGreen:before { + color: #7ad61d !important; +} +.after-bg-lightGreen:after { + background: #7ad61d !important; +} +.after-fg-lightGreen:after { + color: #7ad61d !important; +} +.bg-hover-lightGreen:hover { + background: #7ad61d !important; +} +.bg-active-lightGreen:active { + background: #7ad61d !important; +} +.bg-focus-lightGreen:focus { + background: #7ad61d !important; +} +.fg-hover-lightGreen:hover { + color: #7ad61d !important; +} +.fg-active-lightGreen:active { + color: #7ad61d !important; +} +.fg-focus-lightGreen:focus { + color: #7ad61d !important; +} +.fg-lightCyan { + color: #59cde2 !important; +} +.bg-lightCyan { + background-color: #59cde2 !important; +} +.bd-lightCyan { + border-color: #59cde2 !important; +} +.ol-lightCyan { + outline-color: #59cde2 !important; +} +.op-lightCyan { + background-color: rgba(89, 205, 226, 0.7); +} +.ribbed-lightCyan { + background: #59cde2 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) !important; + background-size: 40px 40px !important; +} +.before-bg-lightCyan:before { + background: #59cde2 !important; +} +.before-fg-lightCyan:before { + color: #59cde2 !important; +} +.after-bg-lightCyan:after { + background: #59cde2 !important; +} +.after-fg-lightCyan:after { + color: #59cde2 !important; +} +.bg-hover-lightCyan:hover { + background: #59cde2 !important; +} +.bg-active-lightCyan:active { + background: #59cde2 !important; +} +.bg-focus-lightCyan:focus { + background: #59cde2 !important; +} +.fg-hover-lightCyan:hover { + color: #59cde2 !important; +} +.fg-active-lightCyan:active { + color: #59cde2 !important; +} +.fg-focus-lightCyan:focus { + color: #59cde2 !important; +} +.fg-grayed { + color: #585858 !important; +} +.bg-grayed { + background-color: #585858 !important; +} +.bd-grayed { + border-color: #585858 !important; +} +.ol-grayed { + outline-color: #585858 !important; +} +.op-grayed { + background-color: rgba(88, 88, 88, 0.7); +} +.ribbed-grayed { + background: #585858 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) !important; + background-size: 40px 40px !important; +} +.before-bg-grayed:before { + background: #585858 !important; +} +.before-fg-grayed:before { + color: #585858 !important; +} +.after-bg-grayed:after { + background: #585858 !important; +} +.after-fg-grayed:after { + color: #585858 !important; +} +.bg-hover-grayed:hover { + background: #585858 !important; +} +.bg-active-grayed:active { + background: #585858 !important; +} +.bg-focus-grayed:focus { + background: #585858 !important; +} +.fg-hover-grayed:hover { + color: #585858 !important; +} +.fg-active-grayed:active { + color: #585858 !important; +} +.fg-focus-grayed:focus { + color: #585858 !important; +} +.fg-grayDarker { + color: #222222 !important; +} +.bg-grayDarker { + background-color: #222222 !important; +} +.bd-grayDarker { + border-color: #222222 !important; +} +.ol-grayDarker { + outline-color: #222222 !important; +} +.op-grayDarker { + background-color: rgba(34, 34, 34, 0.7); +} +.ribbed-grayDarker { + background: #222222 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) !important; + background-size: 40px 40px !important; +} +.before-bg-grayDarker:before { + background: #222222 !important; +} +.before-fg-grayDarker:before { + color: #222222 !important; +} +.after-bg-grayDarker:after { + background: #222222 !important; +} +.after-fg-grayDarker:after { + color: #222222 !important; +} +.bg-hover-grayDarker:hover { + background: #222222 !important; +} +.bg-active-grayDarker:active { + background: #222222 !important; +} +.bg-focus-grayDarker:focus { + background: #222222 !important; +} +.fg-hover-grayDarker:hover { + color: #222222 !important; +} +.fg-active-grayDarker:active { + color: #222222 !important; +} +.fg-focus-grayDarker:focus { + color: #222222 !important; +} +.fg-grayDark { + color: #333333 !important; +} +.bg-grayDark { + background-color: #333333 !important; +} +.bd-grayDark { + border-color: #333333 !important; +} +.ol-grayDark { + outline-color: #333333 !important; +} +.op-grayDark { + background-color: rgba(51, 51, 51, 0.7); +} +.ribbed-grayDark { + background: #333333 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) !important; + background-size: 40px 40px !important; +} +.before-bg-grayDark:before { + background: #333333 !important; +} +.before-fg-grayDark:before { + color: #333333 !important; +} +.after-bg-grayDark:after { + background: #333333 !important; +} +.after-fg-grayDark:after { + color: #333333 !important; +} +.bg-hover-grayDark:hover { + background: #333333 !important; +} +.bg-active-grayDark:active { + background: #333333 !important; +} +.bg-focus-grayDark:focus { + background: #333333 !important; +} +.fg-hover-grayDark:hover { + color: #333333 !important; +} +.fg-active-grayDark:active { + color: #333333 !important; +} +.fg-focus-grayDark:focus { + color: #333333 !important; +} +.fg-gray { + color: #555555 !important; +} +.bg-gray { + background-color: #555555 !important; +} +.bd-gray { + border-color: #555555 !important; +} +.ol-gray { + outline-color: #555555 !important; +} +.op-gray { + background-color: rgba(85, 85, 85, 0.7); +} +.ribbed-gray { + background: #555555 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) !important; + background-size: 40px 40px !important; +} +.before-bg-gray:before { + background: #555555 !important; +} +.before-fg-gray:before { + color: #555555 !important; +} +.after-bg-gray:after { + background: #555555 !important; +} +.after-fg-gray:after { + color: #555555 !important; +} +.bg-hover-gray:hover { + background: #555555 !important; +} +.bg-active-gray:active { + background: #555555 !important; +} +.bg-focus-gray:focus { + background: #555555 !important; +} +.fg-hover-gray:hover { + color: #555555 !important; +} +.fg-active-gray:active { + color: #555555 !important; +} +.fg-focus-gray:focus { + color: #555555 !important; +} +.fg-grayLight { + color: #999999 !important; +} +.bg-grayLight { + background-color: #999999 !important; +} +.bd-grayLight { + border-color: #999999 !important; +} +.ol-grayLight { + outline-color: #999999 !important; +} +.op-grayLight { + background-color: rgba(153, 153, 153, 0.7); +} +.ribbed-grayLight { + background: #999999 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) !important; + background-size: 40px 40px !important; +} +.before-bg-grayLight:before { + background: #999999 !important; +} +.before-fg-grayLight:before { + color: #999999 !important; +} +.after-bg-grayLight:after { + background: #999999 !important; +} +.after-fg-grayLight:after { + color: #999999 !important; +} +.bg-hover-grayLight:hover { + background: #999999 !important; +} +.bg-active-grayLight:active { + background: #999999 !important; +} +.bg-focus-grayLight:focus { + background: #999999 !important; +} +.fg-hover-grayLight:hover { + color: #999999 !important; +} +.fg-active-grayLight:active { + color: #999999 !important; +} +.fg-focus-grayLight:focus { + color: #999999 !important; +} +.fg-grayLighter { + color: #eeeeee !important; +} +.bg-grayLighter { + background-color: #eeeeee !important; +} +.bd-grayLighter { + border-color: #eeeeee !important; +} +.ol-grayLighter { + outline-color: #eeeeee !important; +} +.op-grayLighter { + background-color: rgba(238, 238, 238, 0.7); +} +.ribbed-grayLighter { + background: #eeeeee 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) !important; + background-size: 40px 40px !important; +} +.before-bg-grayLighter:before { + background: #eeeeee !important; +} +.before-fg-grayLighter:before { + color: #eeeeee !important; +} +.after-bg-grayLighter:after { + background: #eeeeee !important; +} +.after-fg-grayLighter:after { + color: #eeeeee !important; +} +.bg-hover-grayLighter:hover { + background: #eeeeee !important; +} +.bg-active-grayLighter:active { + background: #eeeeee !important; +} +.bg-focus-grayLighter:focus { + background: #eeeeee !important; +} +.fg-hover-grayLighter:hover { + color: #eeeeee !important; +} +.fg-active-grayLighter:active { + color: #eeeeee !important; +} +.fg-focus-grayLighter:focus { + color: #eeeeee !important; +} +.fg-lightGray { + color: #999999 !important; +} +.bg-lightGray { + background-color: #999999 !important; +} +.bd-lightGray { + border-color: #999999 !important; +} +.ol-lightGray { + outline-color: #999999 !important; +} +.op-lightGray { + background-color: rgba(153, 153, 153, 0.7); +} +.ribbed-lightGray { + background: #999999 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) !important; + background-size: 40px 40px !important; +} +.before-bg-lightGray:before { + background: #999999 !important; +} +.before-fg-lightGray:before { + color: #999999 !important; +} +.after-bg-lightGray:after { + background: #999999 !important; +} +.after-fg-lightGray:after { + color: #999999 !important; +} +.bg-hover-lightGray:hover { + background: #999999 !important; +} +.bg-active-lightGray:active { + background: #999999 !important; +} +.bg-focus-lightGray:focus { + background: #999999 !important; +} +.fg-hover-lightGray:hover { + color: #999999 !important; +} +.fg-active-lightGray:active { + color: #999999 !important; +} +.fg-focus-lightGray:focus { + color: #999999 !important; +} +.fg-lighterGray { + color: #eeeeee !important; +} +.bg-lighterGray { + background-color: #eeeeee !important; +} +.bd-lighterGray { + border-color: #eeeeee !important; +} +.ol-lighterGray { + outline-color: #eeeeee !important; +} +.op-lighterGray { + background-color: rgba(238, 238, 238, 0.7); +} +.ribbed-lighterGray { + background: #eeeeee 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) !important; + background-size: 40px 40px !important; +} +.before-bg-lighterGray:before { + background: #eeeeee !important; +} +.before-fg-lighterGray:before { + color: #eeeeee !important; +} +.after-bg-lighterGray:after { + background: #eeeeee !important; +} +.after-fg-lighterGray:after { + color: #eeeeee !important; +} +.bg-hover-lighterGray:hover { + background: #eeeeee !important; +} +.bg-active-lighterGray:active { + background: #eeeeee !important; +} +.bg-focus-lighterGray:focus { + background: #eeeeee !important; +} +.fg-hover-lighterGray:hover { + color: #eeeeee !important; +} +.fg-active-lighterGray:active { + color: #eeeeee !important; +} +.fg-focus-lighterGray:focus { + color: #eeeeee !important; +} +.fg-darkGray { + color: #333333 !important; +} +.bg-darkGray { + background-color: #333333 !important; +} +.bd-darkGray { + border-color: #333333 !important; +} +.ol-darkGray { + outline-color: #333333 !important; +} +.op-darkGray { + background-color: rgba(51, 51, 51, 0.7); +} +.ribbed-darkGray { + background: #333333 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) !important; + background-size: 40px 40px !important; +} +.before-bg-darkGray:before { + background: #333333 !important; +} +.before-fg-darkGray:before { + color: #333333 !important; +} +.after-bg-darkGray:after { + background: #333333 !important; +} +.after-fg-darkGray:after { + color: #333333 !important; +} +.bg-hover-darkGray:hover { + background: #333333 !important; +} +.bg-active-darkGray:active { + background: #333333 !important; +} +.bg-focus-darkGray:focus { + background: #333333 !important; +} +.fg-hover-darkGray:hover { + color: #333333 !important; +} +.fg-active-darkGray:active { + color: #333333 !important; +} +.fg-focus-darkGray:focus { + color: #333333 !important; +} +.fg-darkerGray { + color: #222222 !important; +} +.bg-darkerGray { + background-color: #222222 !important; +} +.bd-darkerGray { + border-color: #222222 !important; +} +.ol-darkerGray { + outline-color: #222222 !important; +} +.op-darkerGray { + background-color: rgba(34, 34, 34, 0.7); +} +.ribbed-darkerGray { + background: #222222 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) !important; + background-size: 40px 40px !important; +} +.before-bg-darkerGray:before { + background: #222222 !important; +} +.before-fg-darkerGray:before { + color: #222222 !important; +} +.after-bg-darkerGray:after { + background: #222222 !important; +} +.after-fg-darkerGray:after { + color: #222222 !important; +} +.bg-hover-darkerGray:hover { + background: #222222 !important; +} +.bg-active-darkerGray:active { + background: #222222 !important; +} +.bg-focus-darkerGray:focus { + background: #222222 !important; +} +.fg-hover-darkerGray:hover { + color: #222222 !important; +} +.fg-active-darkerGray:active { + color: #222222 !important; +} +.fg-focus-darkerGray:focus { + color: #222222 !important; +} +.fg-darker { + color: #222222 !important; +} +.bg-darker { + background-color: #222222 !important; +} +.bd-darker { + border-color: #222222 !important; +} +.ol-darker { + outline-color: #222222 !important; +} +.op-darker { + background-color: rgba(34, 34, 34, 0.7); +} +.ribbed-darker { + background: #222222 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) !important; + background-size: 40px 40px !important; +} +.before-bg-darker:before { + background: #222222 !important; +} +.before-fg-darker:before { + color: #222222 !important; +} +.after-bg-darker:after { + background: #222222 !important; +} +.after-fg-darker:after { + color: #222222 !important; +} +.bg-hover-darker:hover { + background: #222222 !important; +} +.bg-active-darker:active { + background: #222222 !important; +} +.bg-focus-darker:focus { + background: #222222 !important; +} +.fg-hover-darker:hover { + color: #222222 !important; +} +.fg-active-darker:active { + color: #222222 !important; +} +.fg-focus-darker:focus { + color: #222222 !important; +} +/* transform functions */ +.rotate45 { + -webkit-transform: rotate(45deg); + transform: rotate(45deg); +} +.rotate90 { + -webkit-transform: rotate(90deg); + transform: rotate(90deg); +} +.rotate135 { + -webkit-transform: rotate(135deg); + transform: rotate(135deg); +} +.rotate180 { + -webkit-transform: rotate(180deg); + transform: rotate(180deg); +} +.rotate225 { + -webkit-transform: rotate(225deg); + transform: rotate(225deg); +} +.rotate270 { + -webkit-transform: rotate(270deg); + transform: rotate(270deg); +} +.rotate360 { + -webkit-transform: rotate(360deg); + transform: rotate(360deg); +} +.rotate-45 { + -webkit-transform: rotate(-45deg); + transform: rotate(-45deg); +} +.rotate-90 { + -webkit-transform: rotate(-90deg); + transform: rotate(-90deg); +} +.rotate-135 { + -webkit-transform: rotate(-135deg); + transform: rotate(-135deg); +} +.rotate-180 { + -webkit-transform: rotate(-180deg); + transform: rotate(-180deg); +} +.rotate-225 { + -webkit-transform: rotate(-225deg); + transform: rotate(-225deg); +} +.rotate-270 { + -webkit-transform: rotate(-270deg); + transform: rotate(-270deg); +} +.rotate-360 { + -webkit-transform: rotate(-360deg); + transform: rotate(-360deg); +} +.rotateX45 { + -webkit-transform: rotateX(45deg); + transform: rotateX(45deg); +} +.rotateX90 { + -webkit-transform: rotateX(90deg); + transform: rotateX(90deg); +} +.rotateX135 { + -webkit-transform: rotateX(135deg); + transform: rotateX(135deg); +} +.rotateX180 { + -webkit-transform: rotateX(180deg); + transform: rotateX(180deg); +} +.rotateX225 { + -webkit-transform: rotateX(225deg); + transform: rotateX(225deg); +} +.rotateX270 { + -webkit-transform: rotateX(270deg); + transform: rotateX(270deg); +} +.rotateX360 { + -webkit-transform: rotateX(360deg); + transform: rotateX(360deg); +} +.rotateX-45 { + -webkit-transform: rotateX(-45deg); + transform: rotateX(-45deg); +} +.rotateX-90 { + -webkit-transform: rotateX(-90deg); + transform: rotateX(-90deg); +} +.rotateX-135 { + -webkit-transform: rotateX(-135deg); + transform: rotateX(-135deg); +} +.rotateX-180 { + -webkit-transform: rotateX(-180deg); + transform: rotateX(-180deg); +} +.rotateX-225 { + -webkit-transform: rotateX(-225deg); + transform: rotateX(-225deg); +} +.rotateX-270 { + -webkit-transform: rotateX(-270deg); + transform: rotateX(-270deg); +} +.rotateX-360 { + -webkit-transform: rotateX(-360deg); + transform: rotateX(-360deg); +} +.rotateY45 { + -webkit-transform: rotateY(45deg); + transform: rotateY(45deg); +} +.rotateY90 { + -webkit-transform: rotateY(90deg); + transform: rotateY(90deg); +} +.rotateY135 { + -webkit-transform: rotateY(135deg); + transform: rotateY(135deg); +} +.rotateY180 { + -webkit-transform: rotateY(180deg); + transform: rotateY(180deg); +} +.rotateY225 { + -webkit-transform: rotateY(225deg); + transform: rotateY(225deg); +} +.rotateY270 { + -webkit-transform: rotateY(270deg); + transform: rotateY(270deg); +} +.rotateY360 { + -webkit-transform: rotateY(360deg); + transform: rotateY(360deg); +} +.rotateY-45 { + -webkit-transform: rotateY(-45deg); + transform: rotateY(-45deg); +} +.rotateY-90 { + -webkit-transform: rotateY(-90deg); + transform: rotateY(-90deg); +} +.rotateY-135 { + -webkit-transform: rotateY(-135deg); + transform: rotateY(-135deg); +} +.rotateY-180 { + -webkit-transform: rotateY(-180deg); + transform: rotateY(-180deg); +} +.rotateY-225 { + -webkit-transform: rotateY(-225deg); + transform: rotateY(-225deg); +} +.rotateY-270 { + -webkit-transform: rotateY(-270deg); + transform: rotateY(-270deg); +} +.rotateY-360 { + -webkit-transform: rotateY(-360deg); + transform: rotateY(-360deg); +} diff --git a/applications/assets/css/metro.min.css b/applications/assets/css/metro.min.css new file mode 100644 index 0000000..45cd23e --- /dev/null +++ b/applications/assets/css/metro.min.css @@ -0,0 +1 @@ +#font .bold,#font .light,#font .normal,body{font-style:normal}.d-menu li a,.d-menu li:hover,.f-menu>li>a,.h-menu>li>a,.v-menu li a,.v-menu li:hover,a,abbr{text-decoration:none}.text-ellipsis,dl.horizontal dt{overflow:hidden;white-space:nowrap}.after-text-shadow:after,.before-text-shadow:before,.calendar .today a,.countdown .digit,.countdown .divider,.tabcontrol .tabs li.active a,.tabcontrol2 .tabs li.active a,.text-shadow{text-shadow:2px 2px 4px rgba(0,0,0,.4)}body,html{padding:0;margin:0;height:100%}*,body,html{box-sizing:border-box}article,aside,details,figcaption,figure,footer,header,nav,section{display:block}audio,canvas,video{display:inline-block}audio:not([controls]){display:none}.tile:active,a:active,a:hover{outline:0}sub,sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline}sup{top:-.5em}sub{bottom:-.25em}img{max-width:100%;height:auto;vertical-align:middle;border:0}#map_canvas img,.google-maps img{max-width:none}button,input,select,textarea{margin:0;font-size:100%;vertical-align:middle}.v-align-top,textarea{vertical-align:top}button,input{line-height:normal}button::-moz-focus-inner,input::-moz-focus-inner{padding:0;border:0}button,html input[type=button],input[type=reset],input[type=submit]{-webkit-appearance:button;cursor:pointer}button,input[type=button],input[type=reset],input[type=submit],input[type=radio],input[type=checkbox],label,select{cursor:pointer}input[type=search]{box-sizing:content-box;appearance:textfield}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}textarea{overflow:auto}input[type=email]::-ms-clear,input[type=number]::-ms-clear,input[type=tel]::-ms-clear,input[type=text]::-ms-clear,input[type=time]::-ms-clear,input[type=url]::-ms-clear{display:none}input[type=password]::-ms-reveal{display:none}*{border-collapse:collapse}.d-menu,.f-menu,.h-menu,.m-menu,.sidebar2,.t-menu,.t-menu.horizontal,.v-menu{border-collapse:separate}@media print{blockquote,img,pre,tr{page-break-inside:avoid}a,a:visited{text-decoration:underline}a[href]:after{content:" (" attr(href)")"}abbr[title]:after{content:" (" attr(title)")"}.ir a:after,a[href^="javascript:"]:after,a[href^="#"]:after{content:""}blockquote,pre{border:1px solid #999}thead{display:table-header-group}img{max-width:100%}h2,h3,p{orphans:3;widows:3}h2,h3{page-break-after:avoid}}@font-face{font-family:"PT Serif Caption";font-style:normal;font-weight:400;src:local("Cambria"),local("PT Serif Caption"),local("PTSerif-Caption"),url(https://themes.googleusercontent.com/static/fonts/ptserifcaption/v6/7xkFOeTxxO1GMC1suOUYWWhBabBbEjGd1iRmpyoZukE.woff)format('woff')}@font-face{font-family:"Open Sans Light";font-style:normal;font-weight:300;src:local("Segoe UI Light"),local("Open Sans Light"),local("OpenSans-Light"),url(https://themes.googleusercontent.com/static/fonts/opensans/v8/DXI1ORHCpsQm3Vp6mXoaTZ1r3JsPcQLi8jytr04NNhU.woff)format('woff')}@font-face{font-family:"Open Sans";font-style:normal;font-weight:400;src:local("Segoe UI"),local("Open Sans"),local("OpenSans"),url(https://themes.googleusercontent.com/static/fonts/opensans/v8/K88pR3goAWT7BTt32Z01mz8E0i7KZn-EPnyo3HZu7kw.woff)format('woff')}@font-face{font-family:"Open Sans Bold";font-style:normal;font-weight:700;src:local("Segoe UI Bold"),local("Open Sans Bold"),local("OpenSans-Bold"),url(https://themes.googleusercontent.com/static/fonts/opensans/v8/k3k702ZOKiLJc3WVjuplzJ1r3JsPcQLi8jytr04NNhU.woff)format('woff')}html{font-size:100%}body{font-family:"Segoe UI","Open Sans",sans-serif,serif;font-size:.875rem;line-height:1.1;font-weight:400}#font .light{font-weight:300}#font .normal{font-weight:400}#font .bold{font-weight:700}#font .italic{font-style:italic}.leader{font:400 2.25rem/1.1 "Segoe UI","Open Sans",sans-serif,serif}.sub-leader{font:500 1.875rem/1.1 "Segoe UI","Open Sans",sans-serif,serif}.header{font:500 1.5rem/1.1 "Segoe UI","Open Sans",sans-serif,serif}.sub-header{font:500 1.125rem/1.1 "Segoe UI","Open Sans",sans-serif,serif}.alt-header{font:500 1rem/1.1 "Segoe UI","Open Sans",sans-serif,serif}.sub-alt-header{font:500 .875rem/1.1 "Segoe UI","Open Sans",sans-serif,serif}.minor-header,h6{font:500 .75rem/1.1 "Segoe UI","Open Sans",sans-serif,serif}h1{font:400 2.25rem/1.1 "Segoe UI","Open Sans",sans-serif,serif}h2{font:500 1.875rem/1.1 "Segoe UI","Open Sans",sans-serif,serif}h3{font:500 1.5rem/1.1 "Segoe UI","Open Sans",sans-serif,serif}h4{font:500 1.125rem/1.1 "Segoe UI","Open Sans",sans-serif,serif}h5{font:500 .875rem/1.1 "Segoe UI","Open Sans",sans-serif,serif}.text-bold,.text-light,.text-normal{font-style:normal}h1,h2,h3,h4,h5,h6{margin:.625rem 0}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;font-size:.7em;line-height:1;color:#777}.text-normal{font-weight:400}.text-bold{font-weight:700}.text-italic{font-style:italic}.uppercase{text-transform:uppercase}.lowercase{text-transform:lowercase}.capital{text-transform:capitalize}.align-left{text-align:left}.align-right{text-align:right}.align-center{text-align:center}.align-justify{text-align:justify}.v-align-bottom{vertical-align:bottom}.v-align-baseline{vertical-align:baseline}.v-align-middle{vertical-align:middle}.v-align-sub{vertical-align:sub}.v-align-super{vertical-align:super}.v-align-top-text{vertical-align:text-top}.v-align-bottom-text{vertical-align:text-bottom}.text-dashed{border:0;border-bottom:1px gray dashed;display:inline}.indent-paragraph:first-letter{margin-left:2.5rem}.text-secondary{font-size:.75rem}.text-accent,.text-enlarged{font-size:1.1rem}.text-default{font-size:.875rem}.text-small{font-size:.625rem}.text-light{font-weight:300}.text-ellipsis{text-overflow:ellipsis}abbr{border-bottom:1px #999 dotted;cursor:help;display:inline}.inline-list li,.tag{display:inline-block}address{font-weight:400;font-style:normal;margin:.625rem 0}blockquote{margin:.625rem 0;padding:0 0 0 .625rem;border-left:.25rem #999 solid}blockquote small{color:#999}blockquote small:before{content:"\2014 \00A0"}.clear-float:after,.clear-float:before,.clearfix:after,.clearfix:before,.dropdown-toggle:before,.example:after,.example:before,blockquote.place-right small:before{content:""}blockquote.place-right{border:0;border-right:4px #999 solid;padding-right:.625rem;text-align:right}blockquote.place-right small:after{content:" \00A0 \2014"}.unstyled-list{padding-left:0;list-style:none}.unstyled-list li ol,.unstyled-list li ul{list-style:none;padding-left:1.5625rem}.inline-list{list-style:none;padding-left:0}.breadcrumbs,.d-menu,.f-menu,.flush-list,.h-menu,.horizontal-menu,.t-menu,.t-menu.horizontal,.v-menu,.vertical-menu{list-style:none inside}.inline-list li{margin-right:.625rem}.inline-list li:last-child{margin-right:0}ol,ul{margin-left:.3125rem}dl dd,dl dt,ol li,ul li{line-height:1.25rem}ol li ol,ol li ul,ul li ol,ul li ul{padding-left:1.5625rem}dl dt{font-style:normal;font-weight:700}dl dd{margin-left:.9375rem}dl.horizontal dt{float:left;width:10rem;clear:left;text-align:right;text-overflow:ellipsis}.act:after,.app-bar .app-bar-element:after,.app-bar .app-bar-menu>li:after,.app-bar .app-bar-menu>li>a:after,.app-bar .app-bar-pullbutton:after,.app-bar .app-bar-pullmenu .app-bar-menu,.app-bar .app-bar-pullmenu .app-bar-menu .d-menu,.app-bar:after,.audio-player .controls:after,.audio-player .play-list-wrapper:after,.calendar .calendar-actions:after,.calendar .calendar-row:after,.carousel .slide:after,.clear-float:after,.clearfix:after,.d-menu li:after,.dataTable,.dataTables_paginate:after,.dropdown-button:after,.example:after,.f-menu:after,.fluent-menu .tabs-holder:after,.grid .row:after,.grid.condensed .row:after,.grid.condensed:after,.grid:after,.h-menu:after,.horizontal-menu:after,.input-control .button-group:after,.keypad:after,.listview .list-group .list-group-content:after,.listview .list-group:after,.listview-outlook:after,.listview:after,.m-menu:after,.notify-container:after,.pagination:after,.rating:after,.sidebar2 li:after,.split-button:after,.stepper:after,.streamer .events .events-area:after,.streamer .events .events-grid:after,.tabcontrol .tabs:after,.tabcontrol2 .tabs:after,.tile-area:after,.tile-container:after,.toolbar-group.condensed:after,.toolbar-section.condensed:after,.toolbar:after,.v-menu li:after,.v-toolbar:after,.vertical-menu:after,.wizard2 .action-bar:after,.wizard2:after{clear:both}dl.horizontal dd{margin-left:11.25rem}a,a:visited{color:#2086bf}hr{border:0;height:2px;background-color:#88b9e3}hr.thin{height:1px}hr.fat{height:3px}.tag{line-height:1.1;font-size:80%;padding:1px 4px 2px;background-color:#eee;border-radius:2px;color:#1d1d1d;vertical-align:middle}.tag.success{background-color:#60a917;color:#fff}.tag.alert{background-color:#ce352c;color:#fff}.tag.info{background-color:#1ba1e2;color:#fff}.tag.warning{background-color:#fa6800;color:#fff}a.tag{text-decoration:underline;cursor:pointer}.container{width:960px;margin:0 auto}.fixed-bottom,.fixed-top{position:fixed;left:0;right:0;z-index:1030}.fixed-top{top:0;bottom:auto}.fixed-bottom{top:auto;bottom:0}.pos-abs{position:absolute!important}.pos-rel{position:relative!important}.pos-fix{position:fixed!important}.dropdown-toggle{position:relative;cursor:pointer;padding-right:1.625rem}.dropdown-toggle:before{display:block;position:absolute;vertical-align:middle;color:transparent;font-size:0;height:5px;width:5px;background-color:transparent;border-left:1px solid;border-bottom:1px solid;border-color:#1d1d1d;top:50%;left:100%;margin-left:-1rem;margin-top:-.1625rem;z-index:2;-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}.dropdown-toggle.drop-marker-light:before{border-color:#fff}.flush-list{padding:0;margin:0}.after-shadow:after,.before-shadow:before,.shadow{box-shadow:0 2px 4px rgba(0,0,0,.35)}.block-shadow{box-shadow:0 0 5px 0 rgba(0,0,0,.3)}.block-shadow-success{box-shadow:0 0 25px 0 rgba(0,128,0,.7)}.block-shadow-danger,.block-shadow-error{box-shadow:0 0 25px 0 rgba(128,0,0,.7)}.block-shadow-warning{box-shadow:0 0 25px 0 rgba(255,165,0,.7)}.block-shadow-info{box-shadow:0 0 25px 0 rgba(89,205,226,.7)}.block-shadow-impact{box-shadow:0 0 20px 0 rgba(0,0,0,.2)}.bottom-shadow{box-shadow:-1px 6px 6px -6px rgba(0,0,0,.35)}.no-shadow{box-shadow:none!important}.full-size{width:100%!important}.block{display:block!important}.inline-block{display:inline-block!important}.no-display{display:none!important}.no-margin{margin:0!important}.no-margin-right{margin-right:0!important}.no-margin-left{margin-left:0!important}.no-margin-top{margin-top:0!important}.no-margin-bottom{margin-bottom:0!important}.no-padding{padding:0!important}.no-padding-left{padding-left:0!important}.no-padding-right{padding-right:0!important}.no-padding-top{padding-top:0!important}.no-padding-bottom{padding-bottom:0!important}.no-float{float:none!important}.no-visible{visibility:hidden!important}.no-border{border:0!important}.no-overflow,.no-scroll{overflow:hidden!important}.no-scroll-x{overflow-x:hidden!important}.no-scroll-y{overflow-y:hidden!important}.no-wrap{white-space:nowrap!important}.no-border-left{border-left:none!important}.no-border-right{border-right:none!important}.table.bordered tbody tr td:last-child,.table.bordered thead tr:first-child td:last-child,.table.bordered thead tr:first-child th:last-child{border-right:none}.no-border-top{border-top:none!important}.no-border-bottom{border-bottom:none!important}.transparent-border{border-color:transparent!important}.place-right{float:right!important}.place-left{float:left!important}.clear-float:after,.clear-float:before{display:table}.clearfix:after,.clearfix:before{display:table}.no-user-select{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.no-appearance{-moz-appearance:none;-webkit-appearance:none;appearance:none}.debug{border:1px dashed red}.example{padding:.625rem 1.825rem .625rem 2.5rem;border:1px dashed #ccc;position:relative;margin:0 0 .625rem;background-color:#fff}.example:after,.example:before{display:table}.example:before{position:absolute;content:attr(data-text);text-transform:lowercase;left:1.5rem;top:11.875rem;color:gray;display:block;font-size:1rem;line-height:1rem;height:1rem;text-align:right;white-space:nowrap;direction:ltr;width:12.5rem;-webkit-transform:rotate(-90deg);transform:rotate(-90deg);-webkit-transform-origin:0 100%;transform-origin:0 100%}.table tfoot td,.table tfoot th,.table thead td,.table thead th{border-color:transparent;color:#52677a;line-height:100%;text-align:left}.element-selected:after,.element-selected:before,.grid .row:after,.grid .row:before,.grid.condensed:after,.grid.condensed:before,.grid:after,.grid:before,.table .sortable-column:after{content:""}.video-container{position:relative;padding-bottom:56.25%;padding-top:30px;height:0;overflow:hidden}.video-container embed,.video-container iframe,.video-container object{position:absolute;top:0;left:0;width:100%;height:100%}.padding10{padding:.625rem}.padding20{padding:1.25rem}.padding30{padding:1.875rem}.padding40{padding:2.5rem}.padding50{padding:3.125rem}.padding60{padding:3.75rem}.padding70{padding:4.375rem}.padding80{padding:5rem}.padding90{padding:5.625rem}.padding100{padding:6.25rem}.padding5{padding:5px}.margin5{margin:5px}.margin10{margin:.625rem}.margin20{margin:1.25rem}.margin30{margin:1.875rem}.margin40{margin:2.5rem}.margin50{margin:3.125rem}.margin60{margin:3.75rem}.margin70{margin:4.375rem}.margin80{margin:5rem}.margin90{margin:5.625rem}.margin100{margin:6.25rem}.opacity{opacity:.9}.half-opacity{opacity:.5}.hi-opacity{opacity:.2}.element-selected{border:4px solid #4390df}.element-selected:after{position:absolute;display:block;border-top:28px solid #4390df;border-left:28px solid transparent;right:0;top:0;z-index:101}.element-selected:before{position:absolute;display:block;background-color:transparent;border-color:#fff;border-left:2px solid;border-bottom:2px solid;height:.25rem;width:.5rem;right:0;top:0;z-index:102;-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}.table.bordered tbody tr td:first-child,.table.bordered thead tr:first-child td:first-child,.table.bordered thead tr:first-child th:first-child{border-left:none}.set-border{border:1px solid #d9d9d9}.set-border.medium-border{border-width:8px}.set-border.large-border{border-width:16px}.grid{display:block;position:relative;margin:.625rem 0}.grid:after,.grid:before{display:table}.grid .row{width:100%;display:block;margin:0 0 2.12765%}.grid .row:after,.grid .row:before{display:table}.grid .row:last-child{margin-bottom:0}.grid .row>.cell{display:block;float:left;width:100%;min-height:10px;margin:0 0 0 2.12765%}.grid .row>.cell:first-child{margin-left:0}.grid .row.cells2>.cell{width:48.936175%}.grid .row.cells2>.cell.colspan2{width:100%}.grid .row.cells2>.cell.offset1{margin-left:51.063825%}.grid .row.cells2>.cell.offset2{margin-left:102.12765%}.grid .row.cells3>.cell{width:31.9149%}.grid .row.cells3>.cell.colspan2{width:65.95745%}.grid .row.cells3>.cell.colspan3{width:100%}.grid .row.cells3>.cell.offset1{margin-left:34.04255%}.grid .row.cells3>.cell.offset2{margin-left:68.0851%}.grid .row.cells3>.cell.offset3{margin-left:102.12765%}.grid .row.cells4>.cell{width:23.4042625%}.grid .row.cells4>.cell.colspan2{width:48.936175%}.grid .row.cells4>.cell.colspan3{width:74.4680875%}.grid .row.cells4>.cell.colspan4{width:100%}.grid .row.cells4>.cell.offset1{margin-left:25.5319125%}.grid .row.cells4>.cell.offset2{margin-left:51.063825%}.grid .row.cells4>.cell.offset3{margin-left:76.5957375%}.grid .row.cells4>.cell.offset4{margin-left:102.12765%}.grid .row.cells5>.cell{width:18.29788%}.grid .row.cells5>.cell.colspan2{width:38.72341%}.grid .row.cells5>.cell.colspan3{width:59.14894%}.grid .row.cells5>.cell.colspan4{width:79.57447%}.grid .row.cells5>.cell.colspan5{width:100%}.grid .row.cells5>.cell.offset1{margin-left:20.42553%}.grid .row.cells5>.cell.offset2{margin-left:40.85106%}.grid .row.cells5>.cell.offset3{margin-left:61.27659%}.grid .row.cells5>.cell.offset4{margin-left:81.70212%}.grid .row.cells5>.cell.offset5{margin-left:102.12765%}.grid .row.cells6>.cell{width:14.893625%}.grid .row.cells6>.cell.colspan2{width:31.9149%}.grid .row.cells6>.cell.colspan3{width:48.936175%}.grid .row.cells6>.cell.colspan4{width:65.95745%}.grid .row.cells6>.cell.colspan5{width:82.978725%}.grid .row.cells6>.cell.colspan6{width:100%}.grid .row.cells6>.cell.offset1{margin-left:17.021275%}.grid .row.cells6>.cell.offset2{margin-left:34.04255%}.grid .row.cells6>.cell.offset3{margin-left:51.063825%}.grid .row.cells6>.cell.offset4{margin-left:68.0851%}.grid .row.cells6>.cell.offset5{margin-left:85.106375%}.grid .row.cells6>.cell.offset6{margin-left:102.12765%}.grid .row.cells7>.cell{width:12.46201429%}.grid .row.cells7>.cell.colspan2{width:27.05167857%}.grid .row.cells7>.cell.colspan3{width:41.64134286%}.grid .row.cells7>.cell.colspan4{width:56.23100714%}.grid .row.cells7>.cell.colspan5{width:70.82067143%}.grid .row.cells7>.cell.colspan6{width:85.41033571%}.grid .row.cells7>.cell.colspan7{width:100%}.grid .row.cells7>.cell.offset1{margin-left:14.58966429%}.grid .row.cells7>.cell.offset2{margin-left:29.17932857%}.grid .row.cells7>.cell.offset3{margin-left:43.76899286%}.grid .row.cells7>.cell.offset4{margin-left:58.35865714%}.grid .row.cells7>.cell.offset5{margin-left:72.94832143%}.grid .row.cells7>.cell.offset6{margin-left:87.53798571%}.grid .row.cells7>.cell.offset7{margin-left:102.12765%}.grid .row.cells8>.cell{width:10.63830625%}.grid .row.cells8>.cell.colspan2{width:23.4042625%}.grid .row.cells8>.cell.colspan3{width:36.17021875%}.grid .row.cells8>.cell.colspan4{width:48.936175%}.grid .row.cells8>.cell.colspan5{width:61.70213125%}.grid .row.cells8>.cell.colspan6{width:74.4680875%}.grid .row.cells8>.cell.colspan7{width:87.23404375%}.grid .row.cells8>.cell.colspan8{width:100%}.grid .row.cells8>.cell.offset1{margin-left:12.76595625%}.grid .row.cells8>.cell.offset2{margin-left:25.5319125%}.grid .row.cells8>.cell.offset3{margin-left:38.29786875%}.grid .row.cells8>.cell.offset4{margin-left:51.063825%}.grid .row.cells8>.cell.offset5{margin-left:63.82978125%}.grid .row.cells8>.cell.offset6{margin-left:76.5957375%}.grid .row.cells8>.cell.offset7{margin-left:89.36169375%}.grid .row.cells8>.cell.offset8{margin-left:102.12765%}.grid .row.cells9>.cell{width:9.21986667%}.grid .row.cells9>.cell.colspan2{width:20.56738333%}.grid .row.cells9>.cell.colspan3{width:31.9149%}.grid .row.cells9>.cell.colspan4{width:43.26241667%}.grid .row.cells9>.cell.colspan5{width:54.60993333%}.grid .row.cells9>.cell.colspan6{width:65.95745%}.grid .row.cells9>.cell.colspan7{width:77.30496667%}.grid .row.cells9>.cell.colspan8{width:88.65248333%}.grid .row.cells9>.cell.colspan9{width:100%}.grid .row.cells9>.cell.offset1{margin-left:11.34751667%}.grid .row.cells9>.cell.offset2{margin-left:22.69503333%}.grid .row.cells9>.cell.offset3{margin-left:34.04255%}.grid .row.cells9>.cell.offset4{margin-left:45.39006667%}.grid .row.cells9>.cell.offset5{margin-left:56.73758333%}.grid .row.cells9>.cell.offset6{margin-left:68.0851%}.grid .row.cells9>.cell.offset7{margin-left:79.43261667%}.grid .row.cells9>.cell.offset8{margin-left:90.78013333%}.grid .row.cells9>.cell.offset9{margin-left:102.12765%}.grid .row.cells10>.cell{width:8.085115%}.grid .row.cells10>.cell.colspan2{width:18.29788%}.grid .row.cells10>.cell.colspan3{width:28.510645%}.grid .row.cells10>.cell.colspan4{width:38.72341%}.grid .row.cells10>.cell.colspan5{width:48.936175%}.grid .row.cells10>.cell.colspan6{width:59.14894%}.grid .row.cells10>.cell.colspan7{width:69.361705%}.grid .row.cells10>.cell.colspan8{width:79.57447%}.grid .row.cells10>.cell.colspan9{width:89.787235%}.grid .row.cells10>.cell.colspan10{width:100%}.grid .row.cells10>.cell.offset1{margin-left:10.212765%}.grid .row.cells10>.cell.offset2{margin-left:20.42553%}.grid .row.cells10>.cell.offset3{margin-left:30.638295%}.grid .row.cells10>.cell.offset4{margin-left:40.85106%}.grid .row.cells10>.cell.offset5{margin-left:51.063825%}.grid .row.cells10>.cell.offset6{margin-left:61.27659%}.grid .row.cells10>.cell.offset7{margin-left:71.489355%}.grid .row.cells10>.cell.offset8{margin-left:81.70212%}.grid .row.cells10>.cell.offset9{margin-left:91.914885%}.grid .row.cells10>.cell.offset10{margin-left:102.12765%}.grid .row.cells11>.cell{width:7.15668182%}.grid .row.cells11>.cell.colspan2{width:16.44101364%}.grid .row.cells11>.cell.colspan3{width:25.72534545%}.grid .row.cells11>.cell.colspan4{width:35.00967727%}.grid .row.cells11>.cell.colspan5{width:44.29400909%}.grid .row.cells11>.cell.colspan6{width:53.57834091%}.grid .row.cells11>.cell.colspan7{width:62.86267273%}.grid .row.cells11>.cell.colspan8{width:72.14700455%}.grid .row.cells11>.cell.colspan9{width:81.43133636%}.grid .row.cells11>.cell.colspan10{width:90.71566818%}.grid .row.cells11>.cell.colspan11{width:100%}.grid .row.cells11>.cell.offset1{margin-left:9.28433182%}.grid .row.cells11>.cell.offset2{margin-left:18.56866364%}.grid .row.cells11>.cell.offset3{margin-left:27.85299545%}.grid .row.cells11>.cell.offset4{margin-left:37.13732727%}.grid .row.cells11>.cell.offset5{margin-left:46.42165909%}.grid .row.cells11>.cell.offset6{margin-left:55.70599091%}.grid .row.cells11>.cell.offset7{margin-left:64.99032273%}.grid .row.cells11>.cell.offset8{margin-left:74.27465455%}.grid .row.cells11>.cell.offset9{margin-left:83.55898636%}.grid .row.cells11>.cell.offset10{margin-left:92.84331818%}.grid .row.cells11>.cell.offset11{margin-left:102.12765%}.grid .row.cells12>.cell{width:6.3829875%}.grid .row.cells12>.cell.colspan2{width:14.893625%}.grid .row.cells12>.cell.colspan3{width:23.4042625%}.grid .row.cells12>.cell.colspan4{width:31.9149%}.grid .row.cells12>.cell.colspan5{width:40.4255375%}.grid .row.cells12>.cell.colspan6{width:48.936175%}.grid .row.cells12>.cell.colspan7{width:57.4468125%}.grid .row.cells12>.cell.colspan8{width:65.95745%}.grid .row.cells12>.cell.colspan9{width:74.4680875%}.grid .row.cells12>.cell.colspan10{width:82.978725%}.grid .row.cells12>.cell.colspan11{width:91.4893625%}.grid .row.cells12>.cell.colspan12{width:100%}.grid .row.cells12>.cell.offset1{margin-left:8.5106375%}.grid .row.cells12>.cell.offset2{margin-left:17.021275%}.grid .row.cells12>.cell.offset3{margin-left:25.5319125%}.grid .row.cells12>.cell.offset4{margin-left:34.04255%}.grid .row.cells12>.cell.offset5{margin-left:42.5531875%}.grid .row.cells12>.cell.offset6{margin-left:51.063825%}.grid .row.cells12>.cell.offset7{margin-left:59.5744625%}.grid .row.cells12>.cell.offset8{margin-left:68.0851%}.grid .row.cells12>.cell.offset9{margin-left:76.5957375%}.grid .row.cells12>.cell.offset10{margin-left:85.106375%}.grid .row.cells12>.cell.offset11{margin-left:93.6170125%}.grid .row.cells12>.cell.offset12{margin-left:102.12765%}.grid .row:empty{display:none}.grid.condensed{display:block;position:relative;margin:.625rem 0}.grid.condensed:after,.grid.condensed:before{display:table}.grid.condensed .row{width:100%;display:block;margin:0}.grid.condensed .row:after,.grid.condensed .row:before{display:table;content:""}.app-bar,.flex-grid{display:block}.grid.condensed .row:last-child{margin-bottom:0}.grid.condensed .row>.cell{display:block;float:left;width:100%;min-height:10px;margin:0}.grid.condensed .row>.cell:first-child{margin-left:0}.grid.condensed .row.cells2>.cell{width:50%}.grid.condensed .row.cells2>.cell.colspan2{width:100%}.grid.condensed .row.cells2>.cell.offset1{margin-left:50%}.grid.condensed .row.cells2>.cell.offset2{margin-left:100%}.grid.condensed .row.cells3>.cell{width:33.33333333%}.grid.condensed .row.cells3>.cell.colspan2{width:66.66666667%}.grid.condensed .row.cells3>.cell.colspan3{width:100%}.grid.condensed .row.cells3>.cell.offset1{margin-left:33.33333333%}.grid.condensed .row.cells3>.cell.offset2{margin-left:66.66666667%}.grid.condensed .row.cells3>.cell.offset3{margin-left:100%}.grid.condensed .row.cells4>.cell{width:25%}.grid.condensed .row.cells4>.cell.colspan2{width:50%}.grid.condensed .row.cells4>.cell.colspan3{width:75%}.grid.condensed .row.cells4>.cell.colspan4{width:100%}.grid.condensed .row.cells4>.cell.offset1{margin-left:25%}.grid.condensed .row.cells4>.cell.offset2{margin-left:50%}.grid.condensed .row.cells4>.cell.offset3{margin-left:75%}.grid.condensed .row.cells4>.cell.offset4{margin-left:100%}.grid.condensed .row.cells5>.cell{width:20%}.grid.condensed .row.cells5>.cell.colspan2{width:40%}.grid.condensed .row.cells5>.cell.colspan3{width:60%}.grid.condensed .row.cells5>.cell.colspan4{width:80%}.grid.condensed .row.cells5>.cell.colspan5{width:100%}.grid.condensed .row.cells5>.cell.offset1{margin-left:20%}.grid.condensed .row.cells5>.cell.offset2{margin-left:40%}.grid.condensed .row.cells5>.cell.offset3{margin-left:60%}.grid.condensed .row.cells5>.cell.offset4{margin-left:80%}.grid.condensed .row.cells5>.cell.offset5{margin-left:100%}.grid.condensed .row.cells6>.cell{width:16.66666667%}.grid.condensed .row.cells6>.cell.colspan2{width:33.33333333%}.grid.condensed .row.cells6>.cell.colspan3{width:50%}.grid.condensed .row.cells6>.cell.colspan4{width:66.66666667%}.grid.condensed .row.cells6>.cell.colspan5{width:83.33333333%}.grid.condensed .row.cells6>.cell.colspan6{width:100%}.grid.condensed .row.cells6>.cell.offset1{margin-left:16.66666667%}.grid.condensed .row.cells6>.cell.offset2{margin-left:33.33333333%}.grid.condensed .row.cells6>.cell.offset3{margin-left:50%}.grid.condensed .row.cells6>.cell.offset4{margin-left:66.66666667%}.grid.condensed .row.cells6>.cell.offset5{margin-left:83.33333333%}.grid.condensed .row.cells6>.cell.offset6{margin-left:100%}.grid.condensed .row.cells7>.cell{width:14.28571429%}.grid.condensed .row.cells7>.cell.colspan2{width:28.57142857%}.grid.condensed .row.cells7>.cell.colspan3{width:42.85714286%}.grid.condensed .row.cells7>.cell.colspan4{width:57.14285714%}.grid.condensed .row.cells7>.cell.colspan5{width:71.42857143%}.grid.condensed .row.cells7>.cell.colspan6{width:85.71428571%}.grid.condensed .row.cells7>.cell.colspan7{width:100%}.grid.condensed .row.cells7>.cell.offset1{margin-left:14.28571429%}.grid.condensed .row.cells7>.cell.offset2{margin-left:28.57142857%}.grid.condensed .row.cells7>.cell.offset3{margin-left:42.85714286%}.grid.condensed .row.cells7>.cell.offset4{margin-left:57.14285714%}.grid.condensed .row.cells7>.cell.offset5{margin-left:71.42857143%}.grid.condensed .row.cells7>.cell.offset6{margin-left:85.71428571%}.grid.condensed .row.cells7>.cell.offset7{margin-left:100%}.grid.condensed .row.cells8>.cell{width:12.5%}.grid.condensed .row.cells8>.cell.colspan2{width:25%}.grid.condensed .row.cells8>.cell.colspan3{width:37.5%}.grid.condensed .row.cells8>.cell.colspan4{width:50%}.grid.condensed .row.cells8>.cell.colspan5{width:62.5%}.grid.condensed .row.cells8>.cell.colspan6{width:75%}.grid.condensed .row.cells8>.cell.colspan7{width:87.5%}.grid.condensed .row.cells8>.cell.colspan8{width:100%}.grid.condensed .row.cells8>.cell.offset1{margin-left:12.5%}.grid.condensed .row.cells8>.cell.offset2{margin-left:25%}.grid.condensed .row.cells8>.cell.offset3{margin-left:37.5%}.grid.condensed .row.cells8>.cell.offset4{margin-left:50%}.grid.condensed .row.cells8>.cell.offset5{margin-left:62.5%}.grid.condensed .row.cells8>.cell.offset6{margin-left:75%}.grid.condensed .row.cells8>.cell.offset7{margin-left:87.5%}.grid.condensed .row.cells8>.cell.offset8{margin-left:100%}.grid.condensed .row.cells9>.cell{width:11.11111111%}.grid.condensed .row.cells9>.cell.colspan2{width:22.22222222%}.grid.condensed .row.cells9>.cell.colspan3{width:33.33333333%}.grid.condensed .row.cells9>.cell.colspan4{width:44.44444444%}.grid.condensed .row.cells9>.cell.colspan5{width:55.55555556%}.grid.condensed .row.cells9>.cell.colspan6{width:66.66666667%}.grid.condensed .row.cells9>.cell.colspan7{width:77.77777778%}.grid.condensed .row.cells9>.cell.colspan8{width:88.88888889%}.grid.condensed .row.cells9>.cell.colspan9{width:100%}.grid.condensed .row.cells9>.cell.offset1{margin-left:11.11111111%}.grid.condensed .row.cells9>.cell.offset2{margin-left:22.22222222%}.grid.condensed .row.cells9>.cell.offset3{margin-left:33.33333333%}.grid.condensed .row.cells9>.cell.offset4{margin-left:44.44444444%}.grid.condensed .row.cells9>.cell.offset5{margin-left:55.55555556%}.grid.condensed .row.cells9>.cell.offset6{margin-left:66.66666667%}.grid.condensed .row.cells9>.cell.offset7{margin-left:77.77777778%}.grid.condensed .row.cells9>.cell.offset8{margin-left:88.88888889%}.grid.condensed .row.cells9>.cell.offset9{margin-left:100%}.grid.condensed .row.cells10>.cell{width:10%}.grid.condensed .row.cells10>.cell.colspan2{width:20%}.grid.condensed .row.cells10>.cell.colspan3{width:30%}.grid.condensed .row.cells10>.cell.colspan4{width:40%}.grid.condensed .row.cells10>.cell.colspan5{width:50%}.grid.condensed .row.cells10>.cell.colspan6{width:60%}.grid.condensed .row.cells10>.cell.colspan7{width:70%}.grid.condensed .row.cells10>.cell.colspan8{width:80%}.grid.condensed .row.cells10>.cell.colspan9{width:90%}.grid.condensed .row.cells10>.cell.colspan10{width:100%}.grid.condensed .row.cells10>.cell.offset1{margin-left:10%}.grid.condensed .row.cells10>.cell.offset2{margin-left:20%}.grid.condensed .row.cells10>.cell.offset3{margin-left:30%}.grid.condensed .row.cells10>.cell.offset4{margin-left:40%}.grid.condensed .row.cells10>.cell.offset5{margin-left:50%}.grid.condensed .row.cells10>.cell.offset6{margin-left:60%}.grid.condensed .row.cells10>.cell.offset7{margin-left:70%}.grid.condensed .row.cells10>.cell.offset8{margin-left:80%}.grid.condensed .row.cells10>.cell.offset9{margin-left:90%}.grid.condensed .row.cells10>.cell.offset10{margin-left:100%}.grid.condensed .row.cells11>.cell{width:9.09090909%}.grid.condensed .row.cells11>.cell.colspan2{width:18.18181818%}.grid.condensed .row.cells11>.cell.colspan3{width:27.27272727%}.grid.condensed .row.cells11>.cell.colspan4{width:36.36363636%}.grid.condensed .row.cells11>.cell.colspan5{width:45.45454545%}.grid.condensed .row.cells11>.cell.colspan6{width:54.54545455%}.grid.condensed .row.cells11>.cell.colspan7{width:63.63636364%}.grid.condensed .row.cells11>.cell.colspan8{width:72.72727273%}.grid.condensed .row.cells11>.cell.colspan9{width:81.81818182%}.grid.condensed .row.cells11>.cell.colspan10{width:90.90909091%}.grid.condensed .row.cells11>.cell.colspan11{width:100%}.grid.condensed .row.cells11>.cell.offset1{margin-left:9.09090909%}.grid.condensed .row.cells11>.cell.offset2{margin-left:18.18181818%}.grid.condensed .row.cells11>.cell.offset3{margin-left:27.27272727%}.grid.condensed .row.cells11>.cell.offset4{margin-left:36.36363636%}.grid.condensed .row.cells11>.cell.offset5{margin-left:45.45454545%}.grid.condensed .row.cells11>.cell.offset6{margin-left:54.54545455%}.grid.condensed .row.cells11>.cell.offset7{margin-left:63.63636364%}.grid.condensed .row.cells11>.cell.offset8{margin-left:72.72727273%}.grid.condensed .row.cells11>.cell.offset9{margin-left:81.81818182%}.grid.condensed .row.cells11>.cell.offset10{margin-left:90.90909091%}.grid.condensed .row.cells11>.cell.offset11{margin-left:100%}.grid.condensed .row.cells12>.cell{width:8.33333333%}.grid.condensed .row.cells12>.cell.colspan2{width:16.66666667%}.grid.condensed .row.cells12>.cell.colspan3{width:25%}.grid.condensed .row.cells12>.cell.colspan4{width:33.33333333%}.grid.condensed .row.cells12>.cell.colspan5{width:41.66666667%}.grid.condensed .row.cells12>.cell.colspan6{width:50%}.grid.condensed .row.cells12>.cell.colspan7{width:58.33333333%}.grid.condensed .row.cells12>.cell.colspan8{width:66.66666667%}.grid.condensed .row.cells12>.cell.colspan9{width:75%}.grid.condensed .row.cells12>.cell.colspan10{width:83.33333333%}.grid.condensed .row.cells12>.cell.colspan11{width:91.66666667%}.flex-grid,.grid.condensed .row.cells12>.cell.colspan12,.table{width:100%}.grid.condensed .row.cells12>.cell.offset1{margin-left:8.33333333%}.grid.condensed .row.cells12>.cell.offset2{margin-left:16.66666667%}.grid.condensed .row.cells12>.cell.offset3{margin-left:25%}.grid.condensed .row.cells12>.cell.offset4{margin-left:33.33333333%}.grid.condensed .row.cells12>.cell.offset5{margin-left:41.66666667%}.grid.condensed .row.cells12>.cell.offset6{margin-left:50%}.grid.condensed .row.cells12>.cell.offset7{margin-left:58.33333333%}.grid.condensed .row.cells12>.cell.offset8{margin-left:66.66666667%}.grid.condensed .row.cells12>.cell.offset9{margin-left:75%}.grid.condensed .row.cells12>.cell.offset10{margin-left:83.33333333%}.grid.condensed .row.cells12>.cell.offset11{margin-left:91.66666667%}.grid.condensed .row.cells12>.cell.offset12{margin-left:100%}.flex-grid .row{display:-webkit-flex;display:flex}.flex-grid .row .cell{-webkit-flex:0 0 8.33333333%;flex:0 0 8.33333333%}.flex-grid .row.cell-auto-size .cell{-webkit-flex:1 1 auto;flex:1 1 auto}.flex-grid .row .cell.colspan2{-webkit-flex:0 0 16.66666666%;flex:0 0 16.66666666%}.flex-grid .row .cell.colspan3{-webkit-flex:0 0 24.99999999%;flex:0 0 24.99999999%}.flex-grid .row .cell.colspan4{-webkit-flex:0 0 33.33333332%;flex:0 0 33.33333332%}.flex-grid .row .cell.colspan5{-webkit-flex:0 0 41.66666665%;flex:0 0 41.66666665%}.flex-grid .row .cell.colspan6{-webkit-flex:0 0 49.99999998%;flex:0 0 49.99999998%}.flex-grid .row .cell.colspan7{-webkit-flex:0 0 58.33333331%;flex:0 0 58.33333331%}.flex-grid .row .cell.colspan8{-webkit-flex:0 0 66.66666664%;flex:0 0 66.66666664%}.flex-grid .row .cell.colspan9{-webkit-flex:0 0 74.99999997%;flex:0 0 74.99999997%}.flex-grid .row .cell.colspan10{-webkit-flex:0 0 83.3333333%;flex:0 0 83.3333333%}.flex-grid .row .cell.colspan11{-webkit-flex:0 0 91.66666663%;flex:0 0 91.66666663%}.flex-grid .row .cell.colspan12{-webkit-flex:0 0 99.99999996%;flex:0 0 99.99999996%}.flex-grid .row .cell.size1{-webkit-flex:0 0 8.33333333%;flex:0 0 8.33333333%}.flex-grid .row .cell.size2{-webkit-flex:0 0 16.66666666%;flex:0 0 16.66666666%}.flex-grid .row .cell.size3{-webkit-flex:0 0 24.99999999%;flex:0 0 24.99999999%}.flex-grid .row .cell.size4{-webkit-flex:0 0 33.33333332%;flex:0 0 33.33333332%}.flex-grid .row .cell.size5{-webkit-flex:0 0 41.66666665%;flex:0 0 41.66666665%}.flex-grid .row .cell.size6{-webkit-flex:0 0 49.99999998%;flex:0 0 49.99999998%}.flex-grid .row .cell.size7{-webkit-flex:0 0 58.33333331%;flex:0 0 58.33333331%}.flex-grid .row .cell.size8{-webkit-flex:0 0 66.66666664%;flex:0 0 66.66666664%}.flex-grid .row .cell.size9{-webkit-flex:0 0 74.99999997%;flex:0 0 74.99999997%}.flex-grid .row .cell.size10{-webkit-flex:0 0 83.3333333%;flex:0 0 83.3333333%}.flex-grid .row .cell.size11{-webkit-flex:0 0 91.66666663%;flex:0 0 91.66666663%}.flex-grid .row .cell.size12{-webkit-flex:0 0 99.99999996%;flex:0 0 99.99999996%}.flex-grid .row .cell.size-p10{-webkit-flex:0 0 10%;flex:0 0 10%}.flex-grid .row .cell.size-p20{-webkit-flex:0 0 20%;flex:0 0 20%}.flex-grid .row .cell.size-p30{-webkit-flex:0 0 30%;flex:0 0 30%}.flex-grid .row .cell.size-p40{-webkit-flex:0 0 40%;flex:0 0 40%}.flex-grid .row .cell.size-p50{-webkit-flex:0 0 50%;flex:0 0 50%}.flex-grid .row .cell.size-p60{-webkit-flex:0 0 60%;flex:0 0 60%}.flex-grid .row .cell.size-p70{-webkit-flex:0 0 70%;flex:0 0 70%}.flex-grid .row .cell.size-p80{-webkit-flex:0 0 80%;flex:0 0 80%}.flex-grid .row .cell.size-p90{-webkit-flex:0 0 90%;flex:0 0 90%}.flex-grid .row .cell.size-p100{-webkit-flex:0 0 100%;flex:0 0 100%}.flex-grid .row .cell.size-x100{-webkit-flex:0 0 100px;flex:0 0 100px}.flex-grid .row .cell.size-x200{-webkit-flex:0 0 200px;flex:0 0 200px}.flex-grid .row .cell.size-x300{-webkit-flex:0 0 300px;flex:0 0 300px}.flex-grid .row .cell.size-x400{-webkit-flex:0 0 400px;flex:0 0 400px}.flex-grid .row .cell.size-x500{-webkit-flex:0 0 500px;flex:0 0 500px}.flex-grid .row .cell.size-x600{-webkit-flex:0 0 600px;flex:0 0 600px}.flex-grid .row .cell.size-x700{-webkit-flex:0 0 700px;flex:0 0 700px}.flex-grid .row .cell.size-x800{-webkit-flex:0 0 800px;flex:0 0 800px}.flex-grid .row .cell.size-x900{-webkit-flex:0 0 900px;flex:0 0 900px}.flex-grid .row .cell.size-x1000{-webkit-flex:0 0 1000px;flex:0 0 1000px}.flex-grid .row .cell.auto-size{-webkit-flex:1 auto;flex:1 auto}.table{margin:.625rem 0}.table td,.table th{padding:.625rem}.table thead{border-bottom:4px solid #999}.table thead td,.table thead th{cursor:default;font-style:normal;font-weight:700}.table tfoot{border-top:4px solid #999}.table.bordered tbody tr:first-child td,.table.bordered thead tr:first-child td,.table.bordered thead tr:first-child th{border-top:none}.table tfoot td,.table tfoot th{cursor:default;font-style:normal;font-weight:700}.table tbody td{padding:.625rem .85rem}.table .sortable-column{position:relative;cursor:pointer;-webkit-user-select:none;user-select:none}.app-bar,.table .sortable-column{-moz-user-select:none;-ms-user-select:none}.table .sortable-column:after{position:absolute;width:1rem;height:1rem;left:100%;margin-left:-20px;top:50%;margin-top:-.5rem;color:inherit;font-size:1rem;line-height:1}.table .sortable-column.sort-asc,.table .sortable-column.sort-desc{background-color:#eee}.table .sortable-column.sort-asc:after,.table .sortable-column.sort-desc:after{color:#1d1d1d}.table .sortable-column.sort-asc:after{content:"\2191"}.table .sortable-column.sort-desc:after{content:"\2193"}.table.sortable-markers-on-left .sortable-column{padding-left:30px}.table.sortable-markers-on-left .sortable-column:after,.table.sortable-markers-on-left .sortable-column:before{left:0;margin-left:10px}.table tr.selected td{background-color:rgba(28,183,236,.1)}.table td.selected{background-color:rgba(28,183,236,.3)}.table.striped tbody tr:nth-child(odd){background:#eee}.table.hovered tbody tr:hover{background-color:rgba(28,183,236,.1)}.table.cell-hovered tbody td:hover{background-color:rgba(28,183,236,.3)}.table.border,.table.bordered td,.table.bordered th{border:1px solid #999}.table.bordered tbody tr:last-child td{border-bottom:none}.table .condensed td,.table .condensed th{padding:.3125rem}.table .super-condensed td,.table .super-condensed th{padding:.125rem}.table tbody tr.error{background-color:#ce352c;color:#fff}.table tbody tr.error:hover{background-color:#da5a53}.table tbody tr.warning{background-color:#fa6800;color:#fff}.table tbody tr.warning:hover{background-color:#ffc194}.table tbody tr.success{background-color:#60a917;color:#fff}.table tbody tr.success:hover{background-color:#7ad61d}.table tbody tr.info{background-color:#1ba1e2;color:#fff}.table tbody tr.info:hover{background-color:#59cde2}.app-bar{width:100%;position:relative;background-color:#0072c6;color:#fff;-webkit-user-select:none;user-select:none}.app-bar:after,.app-bar:before{display:table;content:""}.app-bar .app-bar-element{line-height:3.125rem;padding:0 .625rem;font-size:1rem;cursor:pointer;color:inherit;display:block;float:left;position:relative;vertical-align:middle;height:3.125rem}.app-bar .app-bar-element:active,.app-bar .app-bar-element:hover{background-color:#005696}.app-bar .app-bar-element.branding{padding-left:1rem;padding-right:1rem}.app-bar .app-bar-element .d-menu{top:100%;border:2px solid #005696}.app-bar .app-bar-element .d-menu li:not(.disabled):hover{background-color:#eee}.app-bar .app-bar-element .d-menu li:not(.disabled):hover>a{color:#1d1d1d}.app-bar .app-bar-element .d-menu .d-menu{top:-.625rem;left:100%}.app-bar .app-bar-element .d-menu .dropdown-toggle:before{border-color:#1d1d1d}.app-bar .app-bar-divider{display:block;float:left;line-height:3.125rem;height:3.125rem;width:1px;background-color:#4c9cd7;padding:0}.app-bar .dropdown-toggle:before{border-color:#fff}.app-bar .app-bar-menu{display:block;float:left;margin:0;padding:0}.app-bar .app-bar-menu>li,.app-bar .app-bar-menu>li>a{line-height:3.125rem;padding:0 .625rem;font-size:1rem;cursor:pointer;color:inherit;display:block;float:left;position:relative;vertical-align:middle;height:3.125rem}.app-bar .app-bar-menu>li:active,.app-bar .app-bar-menu>li:hover,.app-bar .app-bar-menu>li>a:active,.app-bar .app-bar-menu>li>a:hover{background-color:#005696}.app-bar .app-bar-menu>li.branding,.app-bar .app-bar-menu>li>a.branding{padding-left:1rem;padding-right:1rem}.app-bar .app-bar-menu>li .d-menu,.app-bar .app-bar-menu>li>a .d-menu{top:100%;border:2px solid #005696}.app-bar .app-bar-menu>li .d-menu li:not(.disabled):hover,.app-bar .app-bar-menu>li>a .d-menu li:not(.disabled):hover{background-color:#eee}.app-bar .app-bar-menu>li .d-menu li:not(.disabled):hover>a,.app-bar .app-bar-menu>li>a .d-menu li:not(.disabled):hover>a{color:#1d1d1d}.app-bar .app-bar-menu>li .d-menu .d-menu,.app-bar .app-bar-menu>li>a .d-menu .d-menu{top:-.625rem;left:100%}.app-bar .app-bar-menu>li .d-menu .dropdown-toggle:before,.app-bar .app-bar-menu>li>a .d-menu .dropdown-toggle:before{border-color:#1d1d1d}.app-bar .app-bar-element>.input-control.password input,.app-bar .app-bar-element>.input-control.text input,.app-bar .app-bar-menu>li>.input-control.password input,.app-bar .app-bar-menu>li>.input-control.text input,.app-bar .app-bar-menu>li>a>.input-control.password input,.app-bar .app-bar-menu>li>a>.input-control.text input{border-color:transparent}.app-bar .app-bar-menu>li:after,.app-bar .app-bar-menu>li:before,.app-bar .app-bar-menu>li>a:after,.app-bar .app-bar-menu>li>a:before{display:table;content:""}.app-bar .app-bar-menu>li>.input-control.password,.app-bar .app-bar-menu>li>.input-control.text,.app-bar .app-bar-menu>li>a>.input-control.password,.app-bar .app-bar-menu>li>a>.input-control.text{margin-top:.55rem;font-size:.875rem;line-height:1.8rem;display:block}.app-bar .app-bar-menu>li>.button,.app-bar .app-bar-menu>li>a>.button{margin-top:-.15rem}.app-bar .app-bar-menu>li>.image-button,.app-bar .app-bar-menu>li>a>.image-button{margin:0;background-color:transparent;color:#fff;font-size:inherit}.app-bar .app-bar-menu>li>.image-button img.icon,.app-bar .app-bar-menu>li>a>.image-button img.icon{padding:0}.app-bar .app-bar-menu>li .dropdown-toggle:before,.app-bar .app-bar-menu>li>a .dropdown-toggle:before{transition:all .3s ease}.app-bar .app-bar-menu>li .dropdown-toggle.active-toggle:before,.app-bar .app-bar-menu>li>a .dropdown-toggle.active-toggle:before{-webkit-transform:rotate(135deg);transform:rotate(135deg);transition:all .3s ease}.app-bar .app-bar-menu>li .d-menu .dropdown-toggle.active-toggle:before,.app-bar .app-bar-menu>li>a .d-menu .dropdown-toggle.active-toggle:before{-webkit-transform:rotate(45deg);transform:rotate(45deg)}.app-bar .app-bar-menu>li.dropdown-toggle,.app-bar .app-bar-menu>li>a.dropdown-toggle{padding-right:1.5rem}.app-bar .app-bar-element>.image-button img.icon,.app-bar .app-bar-menu>li{padding:0}.app-bar .app-bar-menu>li.dropdown-toggle:before,.app-bar .app-bar-menu>li>a.dropdown-toggle:before{border-color:#fff;display:block}.app-bar .app-bar-menu>li .d-menu{top:100%;border:2px solid #005696}.app-bar .app-bar-menu>li .d-menu li:not(.disabled):hover{background-color:#eee}.app-bar .app-bar-menu>li .d-menu li:not(.disabled):hover>a{color:#1d1d1d}.app-bar .app-bar-menu>li .d-menu .d-menu{top:-.625rem;left:100%}.app-bar .app-bar-menu>li .d-menu .dropdown-toggle:before{border-color:#1d1d1d}.app-bar .app-bar-menu.small-dropdown .d-menu li>a{font-size:.8em;padding:.325rem 1.2rem .325rem 1.8rem}.app-bar .app-bar-pullbutton.automatic{display:none;float:right;color:#fff;cursor:pointer;font:2rem sans-serif;height:3.125rem;width:3.125rem;line-height:1.25rem;vertical-align:middle;text-align:center;margin:0}.f-menu>li>a,.h-menu>li>a{border:none;font-weight:400}.app-bar .app-bar-pullbutton.automatic:before{content:"\2261";position:absolute;top:.875rem;left:.875rem}.app-bar .app-bar-drop-container{position:absolute;top:100%;left:0;margin-top:10px;border:2px solid #005696;background:#fff}.app-bar .app-bar-drop-container:before{content:'';position:absolute;background-color:#fff;width:10px;height:10px;border:2px solid #005696;top:1px;left:1rem;margin:-8px 0;border-bottom:none;border-right:none;-webkit-transform:rotate(45deg);transform:rotate(45deg);z-index:0}.app-bar .app-bar-drop-container.place-right{right:0;left:auto}.app-bar .app-bar-drop-container.place-right:before{left:auto;right:1rem}.app-bar .app-bar-element:after,.app-bar .app-bar-element:before{display:table;content:""}.app-bar .app-bar-element>.input-control.password,.app-bar .app-bar-element>.input-control.text{margin-top:.55rem;font-size:.875rem;line-height:1.8rem;display:block}.app-bar .app-bar-element>.button{margin-top:-.15rem}.app-bar .app-bar-element>.image-button{margin:0;background-color:transparent;color:#fff;font-size:inherit}.app-bar.drop-up .app-bar-drop-container{top:auto;bottom:3.75rem}.app-bar.drop-up .app-bar-drop-container:before{top:auto;bottom:1px;-webkit-transform:rotate(225deg);transform:rotate(225deg)}.app-bar.drop-up .app-bar-element>.d-menu,.app-bar.drop-up .app-bar-menu>li>.d-menu{top:auto;bottom:3.125rem}.app-bar.drop-up .app-bar-element .d-menu .d-menu,.app-bar.drop-up .app-bar-menu li .d-menu .d-menu{top:auto;bottom:0}.app-bar .app-bar-element .dropdown-toggle:before,.app-bar .app-bar-menu .dropdown-toggle:before{transition:all .3s ease}.app-bar .app-bar-element .dropdown-toggle.active-toggle:before,.app-bar .app-bar-menu .dropdown-toggle.active-toggle:before{-webkit-transform:rotate(135deg);transform:rotate(135deg);transition:all .3s ease}.app-bar .app-bar-element .d-menu .dropdown-toggle.active-toggle:before,.app-bar .app-bar-menu .d-menu .dropdown-toggle.active-toggle:before{-webkit-transform:rotate(45deg);transform:rotate(45deg)}.app-bar.fixed-bottom,.app-bar.fixed-top{z-index:1030;position:fixed}.app-bar.fixed-top{top:0}.app-bar.fixed-bottom{bottom:0}.app-bar{overflow:visible;height:auto}.app-bar .app-bar-pullbutton{line-height:3.125rem;padding:0 .625rem;font-size:1rem;cursor:pointer;color:inherit;position:relative;vertical-align:middle;height:3.125rem;float:right}.app-bar .app-bar-pullmenu .app-bar-menu>li,.f-menu,.h-menu{height:auto}.app-bar .app-bar-pullbutton:active,.app-bar .app-bar-pullbutton:hover{background-color:#005696}.app-bar .app-bar-pullbutton.branding{padding-left:1rem;padding-right:1rem}.app-bar .app-bar-pullbutton .d-menu{top:100%;border:2px solid #005696}.app-bar .app-bar-pullbutton .d-menu li:not(.disabled):hover{background-color:#eee}.app-bar .app-bar-pullbutton .d-menu li:not(.disabled):hover>a{color:#1d1d1d}.app-bar .app-bar-pullbutton .d-menu .d-menu{top:-.625rem;left:100%}.app-bar .app-bar-pullbutton .d-menu .dropdown-toggle:before{border-color:#1d1d1d}.app-bar .app-bar-pullbutton:after,.app-bar .app-bar-pullbutton:before{display:table;content:""}.app-bar .app-bar-pullbutton>.input-control.password,.app-bar .app-bar-pullbutton>.input-control.text{margin-top:.55rem;font-size:.875rem;line-height:1.8rem;display:block}.app-bar .app-bar-pullbutton>.input-control.password input,.app-bar .app-bar-pullbutton>.input-control.text input{border-color:transparent}.app-bar .app-bar-pullbutton>.button{margin-top:-.15rem}.app-bar .app-bar-pullbutton>.image-button{margin:0;background-color:transparent;color:#fff;font-size:inherit}.d-menu li a,.f-menu>li>a,.h-menu>li>a,.v-menu li a{font-size:.875rem}.app-bar .app-bar-pullmenu.flexstyle-sidebar2 .sidebar2 li:hover,.app-bar .app-bar-pullmenu.flexstyle-sidebar2 .sidebar2 li:hover a{background-color:#0072c6}.app-bar .app-bar-pullbutton>.image-button img.icon{padding:0}.app-bar .app-bar-pullbutton .dropdown-toggle:before{transition:all .3s ease}.app-bar .app-bar-pullbutton .dropdown-toggle.active-toggle:before{-webkit-transform:rotate(135deg);transform:rotate(135deg);transition:all .3s ease}.app-bar .app-bar-pullbutton .d-menu .dropdown-toggle.active-toggle:before{-webkit-transform:rotate(45deg);transform:rotate(45deg)}.app-bar .app-bar-pullbutton,.app-bar .app-bar-pullmenu{display:none}.app-bar .app-bar-pullmenu.flexstyle-sidebar2{position:absolute;right:0;z-index:1000}.app-bar .app-bar-pullmenu .app-bar-menu,.f-menu>li,.f-menu>li>a,.h-menu>li,.h-menu>li>a,.v-menu,.v-menu li,.v-menu li a{position:relative}.app-bar .app-bar-pullmenu.flexstyle-sidebar2 .app-bar-pullmenubar{float:right}.app-bar .app-bar-pullmenu.flexstyle-sidebar2 .dropdown-toggle:before{border-color:#323232}.d-menu li:hover>.dropdown-toggle:before,.f-menu li:hover>.dropdown-toggle:before,.h-menu li:hover>.dropdown-toggle:before,.m-menu li:hover>.dropdown-toggle:before,.v-menu li:hover>.dropdown-toggle:before{border-color:#fff}.app-bar .app-bar-pullmenu.flexstyle-sidebar2 .sidebar2 li .input-control{text-align:center;display:block;margin:.325rem}.f-menu>li:first-child,.h-menu>li:first-child{margin-left:0}.f-menu,.h-menu{text-align:left}.app-bar .app-bar-pullmenu.flexstyle-sidebar2 .sidebar2 li li:not(:hover){color:#1d1d1d}.app-bar .app-bar-pullmenu.flexstyle-sidebar2 .sidebar2 li li:not(:hover) a{background-color:#fff}.app-bar .app-bar-pullmenu .app-bar-menu{width:100%;border-top:1px solid #4c9cd7;float:none;display:none;z-index:1000 1;background-color:#005696}.app-bar .app-bar-pullmenu .app-bar-menu>li,.app-bar .app-bar-pullmenu .app-bar-menu>li>a{float:none}.app-bar .app-bar-pullmenu .app-bar-menu li:hover{background-color:#0072c6}.app-bar .app-bar-pullmenu .app-bar-menu li:hover a{background-color:#0072c6;color:#fff}.app-bar .app-bar-pullmenu .app-bar-menu .d-menu{border:0;border-top:1px solid #4c9cd7;float:none;width:100%;position:relative;left:0;box-shadow:none;max-width:100%;background-color:#005696}.d-menu .menu-title:first-child,.d-menu .menu-title:first-child:hover,.v-menu .menu-title:first-child:hover{border-top-width:0}.app-bar .app-bar-pullmenu .app-bar-menu .d-menu li{width:100%;background-color:inherit}.app-bar .app-bar-pullmenu .app-bar-menu .d-menu li a{padding-left:20px;padding-right:0;background-color:inherit;width:100%;color:#fff}.app-bar .app-bar-pullmenu .app-bar-menu .d-menu .dropdown-toggle:before{border-color:#fff;-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}.app-bar .app-bar-pullmenu .app-bar-menu .d-menu .divider{background-color:#4c9cd7}.app-bar .app-bar-pullmenu .app-bar-menu .d-menu .d-menu{top:0;left:0}.app-bar>.container{padding:0!important}.h-menu{display:block;margin:0;padding:0;background-color:#fff}.h-menu:after,.h-menu:before{display:table;content:""}.h-menu>li{display:block;float:left}.h-menu>li:hover{background-color:#59cde2;color:#fff}.h-menu>li:hover>a{color:#fff}.h-menu>li.no-hovered{background-color:inherit;color:inherit}.h-menu>li>a{display:block;float:left;color:#727272;outline:0;padding:1.125rem 1.625rem}.h-menu>li>a:hover{background-color:#59cde2;color:#fff}.h-menu>li .button,.h-menu>li .input-control{margin-top:10px}.h-menu>li.active a{background-color:#59cde2;color:#fff}.h-menu>li>.d-menu{top:100%}.h-menu .dropdown-toggle:before{transition:all .3s ease}.h-menu .dropdown-toggle.active-toggle:before{-webkit-transform:rotate(135deg);transform:rotate(135deg);transition:all .3s ease}.f-menu{margin:0;padding:0;background-color:#fff;display:-webkit-flex;display:flex}.f-menu:after,.f-menu:before{display:table;content:""}.f-menu>li{display:block;float:left;text-align:center;-webkit-flex:1 auto;flex:1 auto}.f-menu>li:hover{background-color:#59cde2;color:#fff}.f-menu>li:hover>a{color:#fff}.f-menu>li.no-hovered{background-color:inherit;color:inherit}.f-menu>li.active a,.f-menu>li>a:hover{color:#fff;background-color:#59cde2}.f-menu>li>a{display:block;float:left;color:#727272;outline:0;padding:1.125rem 1.625rem}.f-menu>li .button,.f-menu>li .input-control{margin-top:10px}.f-menu>li>.d-menu{top:100%;left:auto}.f-menu .dropdown-toggle:before{transition:all .3s ease}.f-menu .dropdown-toggle.active-toggle:before{-webkit-transform:rotate(135deg);transform:rotate(135deg);transition:all .3s ease}.f-menu>li a{text-align:center;width:100%}.f-menu>li .d-menu{width:100%;max-width:none}.d-menu,.v-menu{max-width:15.625rem}.f-menu>li .d-menu li{width:100%}.f-menu>li .d-menu li a{width:100%;min-width:0;padding:.75rem 0}.f-menu .d-menu .dropdown-toggle.active-toggle:before{-webkit-transform:rotate(45deg);transform:rotate(45deg)}.f-menu.default-dropdown>li .d-menu{width:auto;min-width:12.5rem}.f-menu.default-dropdown>li .d-menu a{text-align:left;padding:.75rem 2rem .75rem 2.5rem}.v-menu{text-align:left;background:#fff;margin:0;padding:0;width:auto;float:left}.v-menu li{display:block;float:none}.v-menu li:after,.v-menu li:before{display:table;content:""}.v-menu li a{color:#727272;display:block;float:none;padding:.75rem 2rem .75rem 2.5rem;vertical-align:middle;white-space:nowrap;min-width:12.5rem;border:none}.v-menu li a .icon,.v-menu li a img{position:absolute;left:.875rem;top:50%;margin-top:-.5625rem;color:#262626;max-height:1.125rem;font-size:1.125rem;display:inline-block;margin-right:.3125rem;vertical-align:middle;text-align:center}.v-menu li.active{border-left:2px solid;border-color:#1ba1e2}.v-menu li.active>a{background-color:#59cde2;color:#fff;font-weight:700}.v-menu li:hover{background:#59cde2}.v-menu .divider,.v-menu .divider:hover{background-color:#f2f2f2}.v-menu li:hover .icon,.v-menu li:hover>a{color:#fff}.v-menu li a[data-hotkey]{padding-right:3.2rem}.v-menu li a[data-hotkey]:after{content:attr(data-hotkey);position:absolute;right:1.2rem;width:auto;font-size:.8em}.v-menu .divider{padding:0;height:1px;margin:0 1px;overflow:hidden}.v-menu.subdown .d-menu{min-width:0;position:relative;width:100%;left:0;right:0;top:100%;box-shadow:none}.v-menu .item-block{display:block;padding:.625rem;background-color:#eee}.v-menu .d-menu{left:100%;top:-10%}.v-menu .menu-title{background-color:#f6f7f8;font-size:12px;line-height:14px;padding:4px 8px;border:0;color:#646464}.v-menu .menu-title:first-child{margin:0;border-top-width:0}.v-menu .menu-title:hover{background-color:#f6f7f8;cursor:default;border:0}.v-menu .dropdown-toggle:before{-webkit-transform:rotate(-135deg);transform:rotate(-135deg);margin-top:-2px;transition:all .3s ease}.v-menu .dropdown-toggle.active-toggle:before{-webkit-transform:rotate(45deg);transform:rotate(45deg);transition:all .3s ease}.v-menu.subdown .dropdown-toggle:before{-webkit-transform:rotate(-45deg);transform:rotate(-45deg);margin-left:-1.25rem}.v-menu.subdown .dropdown-toggle.active-toggle:before{-webkit-transform:rotate(135deg);transform:rotate(135deg)}.v-menu li.disabled a{color:#eee}.v-menu li.disabled:hover{background-color:inherit;cursor:default;border:0}.v-menu li.disabled:hover a{cursor:inherit}.d-menu{text-align:left;background:#fff;margin:0;padding:0;width:auto;float:left;position:absolute;display:none;z-index:1000;left:0;box-shadow:0 0 20px 0 rgba(0,0,0,.2)}.d-menu li,.d-menu li a{float:none;position:relative}.d-menu li:hover>.dropdown-toggle:before{border-color:#fff}.d-menu li{display:block}.d-menu li:after,.d-menu li:before{display:table;content:""}.d-menu li a{color:#727272;display:block;padding:.75rem 2rem .75rem 2.5rem;vertical-align:middle;white-space:nowrap;min-width:12.5rem;border:none}.d-menu.no-min-size li a,.d-menu.subdown .d-menu,.v-menu.no-min-size li a{min-width:0}.d-menu li a .icon,.d-menu li a img{position:absolute;left:.875rem;top:50%;margin-top:-.5625rem;color:#262626;max-height:1.125rem;font-size:1.125rem;display:inline-block;margin-right:.3125rem;vertical-align:middle;text-align:center}.d-menu.open,.m-menu{display:block}.d-menu li.active{border-left:2px solid;border-color:#1ba1e2}.d-menu li.active>a{background-color:#59cde2;color:#fff;font-weight:700}.d-menu li:hover{background:#59cde2}.d-menu .divider,.d-menu .divider:hover{background-color:#f2f2f2}.d-menu li:hover .icon,.d-menu li:hover>a{color:#fff}.d-menu li a[data-hotkey]{padding-right:3.2rem}.d-menu li a[data-hotkey]:after{content:attr(data-hotkey);position:absolute;right:1.2rem;width:auto;font-size:.8em}.d-menu .divider{padding:0;height:1px;margin:0 1px;overflow:hidden}.d-menu.subdown .d-menu{position:relative;width:100%;left:0;right:0;top:100%;box-shadow:none}.m-menu,.t-menu,.t-menu.horizontal{box-shadow:0 0 20px 0 rgba(0,0,0,.2)}.d-menu .item-block{display:block;padding:.625rem;background-color:#eee}.d-menu .menu-title{background-color:#f6f7f8;font-size:12px;line-height:14px;padding:4px 8px;border:0;color:#646464}.d-menu .menu-title:first-child{margin:0}.d-menu .menu-title:hover{background-color:#f6f7f8;cursor:default;border:0}.d-menu .dropdown-toggle:before{-webkit-transform:rotate(-135deg);transform:rotate(-135deg);margin-top:-2px;transition:all .3s ease}.d-menu .dropdown-toggle.active-toggle:before{-webkit-transform:rotate(45deg);transform:rotate(45deg);transition:all .3s ease}.d-menu.subdown .dropdown-toggle:before{-webkit-transform:rotate(-45deg);transform:rotate(-45deg);margin-left:-1.25rem}.d-menu.subdown .dropdown-toggle.active-toggle:before{-webkit-transform:rotate(135deg);transform:rotate(135deg)}.d-menu li.disabled a{color:#eee}.d-menu li.disabled:hover{background-color:inherit;cursor:default;border:0}.d-menu li.disabled:hover a{cursor:inherit}.d-menu .d-menu{left:100%;top:-10%}.d-menu.drop-left{left:-100%}.d-menu.drop-up{top:auto;bottom:0}.d-menu.context li a .icon{margin-top:-.4375rem}.d-menu.place-right{left:auto;right:0;width:auto}.m-menu{text-align:left;height:auto;position:relative;background-color:#fff;color:#1d1d1d;list-style:none inside;margin:0;padding:0}.m-menu:after,.m-menu:before{display:table;content:""}.m-menu .m-menu-item,.m-menu>li{display:block;float:left;background-color:#fff}.m-menu .m-menu-item:hover,.m-menu>li:hover{background-color:#59cde2}.m-menu .m-menu-item:hover>a,.m-menu>li:hover>a{color:#fff}.m-menu .m-menu-item.no-hovered,.m-menu>li.no-hovered{background-color:inherit;color:inherit}.m-menu .m-menu-item:first-child,.m-menu>li:first-child{margin-left:0}.m-menu .m-menu-item>a,.m-menu>li>a{display:block;float:left;position:relative;font-weight:400;color:inherit;font-size:.875rem;outline:0;text-decoration:none;padding:1rem 1.625rem;border:none}.button,.command-button{border:1px solid #d9d9d9}.m-menu .m-menu-container a,.m-menu .m-menu-container li,.m-menu .m-menu-item.active-container a,.m-menu>li.active-container a{color:#fff}.m-menu .m-menu-item>a:hover,.m-menu>li>a:hover{background-color:inherit}.m-menu .m-menu-item>a.dropdown-toggle,.m-menu>li>a.dropdown-toggle{padding:1rem 1.625rem 1rem 1.125rem}.m-menu .m-menu-item.active-container,.m-menu>li.active-container{background-color:#59cde2}.m-menu .m-menu-item.active-container a.dropdown-toggle:before,.m-menu>li.active-container a.dropdown-toggle:before{border-color:#fff}.m-menu .m-menu-item .d-menu,.m-menu>li .d-menu{left:0;top:100%}.m-menu .m-menu-container{position:absolute;left:0;right:0;top:100%;padding:.3125rem;font-size:.75rem;z-index:1000;background-color:inherit;display:none}.horizontal-menu,.horizontal-menu>li,.t-menu,.t-menu>li,.t-menu>li>a,.vertical-menu,.vertical-menu>li,.vertical-menu>li>a{position:relative}.m-menu .m-menu-container a{text-decoration:underline}.m-menu .m-menu-container li.active>a,.m-menu .m-menu-container li:hover>a{text-decoration:none}.m-menu .m-menu-container.open{display:block}.m-menu>li .dropdown-toggle:before{transition:all .3s ease}.m-menu>li .dropdown-toggle.active-toggle:before{-webkit-transform:rotate(135deg);transform:rotate(135deg);transition:all .3s ease}.d-menu.context li a,.v-menu.context li a{font-size:.75rem;padding:.3125rem 2rem .3125rem 2.5rem}.d-menu.context li a .icon,.v-menu.context li a .icon{margin-top:-.4375rem;font-size:.825rem;color:inherit}.d-menu.full-size li a,.v-menu.full-size li a{min-width:0;width:100%}.horizontal-menu{display:block;width:100%;color:#1d1d1d;padding:0;margin:0}.horizontal-menu:after,.horizontal-menu:before{display:table;content:""}.horizontal-menu>li{display:block;float:left;color:inherit;background-color:inherit}.horizontal-menu>li>a{position:relative;display:block;float:left;font-size:1.4rem;color:inherit;background-color:inherit;padding:.625rem 1.625rem;line-height:1.4rem}.horizontal-menu>li>.d-menu{top:100%}.horizontal-menu.compact>li>a{font-size:.9rem;line-height:.9rem}.horizontal-menu .dropdown-toggle:before{transition:all .3s ease}.horizontal-menu .dropdown-toggle.active-toggle:before{-webkit-transform:rotate(135deg);transform:rotate(135deg);transition:all .3s ease}.horizontal-menu .d-menu .dropdown-toggle.active-toggle:before{-webkit-transform:rotate(45deg);transform:rotate(45deg)}.vertical-menu{display:block;color:#1d1d1d;padding:0;margin:0;width:auto;float:left}.vertical-menu:after,.vertical-menu:before{display:table;content:""}.vertical-menu>li{display:block;color:inherit;background-color:inherit}.vertical-menu>li>a{display:block;font-size:1.4rem;color:inherit;background-color:inherit;padding:.625rem 1.625rem;line-height:1.4rem}.vertical-menu.compact>li>a{font-size:.9rem;line-height:.9rem;padding-top:.325rem;padding-bottom:.325rem}.vertical-menu .d-menu .dropdown-toggle.active-toggle:before{-webkit-transform:rotate(45deg);transform:rotate(45deg)}.vertical-menu>li,.vertical-menu>li>a{float:none}.vertical-menu>li>.d-menu{left:100%;top:0}.vertical-menu .dropdown-toggle:before{margin-top:-2px;-webkit-transform:rotate(-135deg);transform:rotate(-135deg);transition:all .3s ease}.vertical-menu .dropdown-toggle.active-toggle:before{-webkit-transform:rotate(45deg);transform:rotate(45deg);transition:all .3s ease}.t-menu{margin:0;padding:0;width:auto;float:left;background-color:#fff}.t-menu>li>a{display:block;padding:1rem 1.2rem;border-bottom:1px #eee solid}.t-menu.horizontal>li:last-child a,.t-menu>li:last-child a{border-bottom:0}.t-menu>li>a .icon{width:1.5rem;height:1.5rem;font-size:1.5rem}.t-menu>li:hover>a{background-color:#1ba1e2;color:#fff}.t-menu.compact>li>a{padding:.5rem .7rem}.t-menu.compact>li>a .icon{width:1rem;height:1rem;font-size:1rem}.t-menu li .t-menu{position:absolute;left:100%;margin-left:.3125rem;top:0;float:none}.t-menu li .t-menu>li,.t-menu li .t-menu>li>a{float:left;display:block}.t-menu .t-menu.horizontal .t-menu{left:0;top:100%;margin-top:.3125rem;margin-left:0}.t-menu .dropdown-toggle:after{content:"";background-color:transparent;position:absolute;left:auto;top:auto;bottom:0;right:0;width:0;height:0;border-style:solid;border-width:0 0 8px 8px;border-color:transparent transparent #1ba1e2;-webkit-transform:rotate(0);transform:rotate(0)}.t-menu.horizontal>li,.t-menu.horizontal>li>a{display:block;position:relative}.t-menu .dropdown-toggle:before{display:none}.t-menu>li:hover>.dropdown-toggle:after{border-color:transparent transparent #1b6eae}.t-menu.horizontal{margin:0;padding:0;position:relative;width:auto;float:left;background-color:#fff}.t-menu.horizontal>li{position:relative}.t-menu.horizontal>li>a{padding:1rem 1.2rem;position:relative}.t-menu.horizontal>li>a .icon{width:1.5rem;height:1.5rem;font-size:1.5rem}.t-menu.horizontal>li:hover>a{background-color:#1ba1e2;color:#fff}.t-menu.horizontal.compact>li>a{padding:.5rem .7rem}.t-menu.horizontal.compact>li>a .icon{width:1rem;height:1rem;font-size:1rem}.button,.cycle-button,.round-button,.square-button{display:inline-block;position:relative;font-size:.875rem}.t-menu.horizontal li .t-menu{position:absolute;left:100%;margin-left:.3125rem;top:0;float:none}.t-menu.horizontal li .t-menu>li,.t-menu.horizontal li .t-menu>li>a{float:left;display:block}.t-menu.horizontal .t-menu.horizontal .t-menu{left:0;top:100%;margin-top:.3125rem;margin-left:0}.t-menu.horizontal .dropdown-toggle:after{content:"";background-color:transparent;position:absolute;left:auto;top:auto;bottom:0;right:0;width:0;height:0;border-style:solid;border-width:0 0 8px 8px;border-color:transparent transparent #1ba1e2;-webkit-transform:rotate(0);transform:rotate(0)}.t-menu.horizontal .dropdown-toggle:before{display:none}.t-menu.horizontal>li:hover>.dropdown-toggle:after{border-color:transparent transparent #1b6eae}.t-menu.horizontal>li{float:left}.t-menu.horizontal>li>a{float:left;border-right:1px #eee solid;border-bottom:0}.t-menu.horizontal>li:last-child>a{border-right:0}.t-menu.horizontal .t-menu:not(.horizontal){left:0;top:100%;margin-top:.3125rem;margin-left:0}.t-menu.horizontal .t-menu:not(.horizontal) .t-menu.horizontal{left:100%;margin-left:.3125rem;top:0;float:left}.h-menu>li>.d-menu,.horizontal-menu>li>.d-menu,.m-menu>li>.d-menu{left:auto}[data-role=dropdown]:not(.keep-open),[data-role=dropdown]:not(.open){display:none;position:absolute;z-index:1000}.button{padding:0 1rem;height:2.125rem;text-align:center;vertical-align:middle;background-color:#fff;color:#262626;cursor:pointer;outline:0;line-height:100%;margin:.15625rem 0}.button.default{background-color:#008287;color:#fff}.button:hover{border-color:#787878}.button:active{background:#eee;color:#262626;box-shadow:none}.button:focus{outline:0}.button.disabled,.button:disabled{background-color:#eaeaea;color:#bebebe;cursor:default;border-color:transparent}.button *,.button :hover{color:inherit}.button.rounded{border-radius:.325rem}.button>[class*=mif-]{vertical-align:middle}.button.button-shadow{box-shadow:0 1px 2px 0 rgba(0,0,0,.3)}.button img{height:.875rem;vertical-align:middle;margin:0}.cycle-button,.round-button,.square-button{height:2.125rem;background-color:#fff;border:1px solid #d9d9d9;color:#262626;cursor:pointer;outline:0;line-height:100%;margin:.15625rem 0;width:2.125rem;min-width:2.125rem;padding:0;border-radius:50%;text-align:center;text-decoration:none;vertical-align:middle}.cycle-button.default,.round-button.default,.square-button.default{background-color:#008287;color:#fff}.cycle-button:hover,.round-button:hover,.square-button:hover{border-color:#787878}.cycle-button:active,.round-button:active,.square-button:active{background:#eee;color:#262626;box-shadow:none}.cycle-button:focus,.round-button:focus,.square-button:focus{outline:0}.cycle-button.disabled,.cycle-button:disabled,.round-button.disabled,.round-button:disabled,.square-button.disabled,.square-button:disabled{background-color:#eaeaea;color:#bebebe;cursor:default;border-color:transparent}.cycle-button *,.cycle-button :hover,.round-button *,.round-button :hover,.square-button *,.square-button :hover{color:inherit}.cycle-button.rounded,.round-button.rounded,.square-button.rounded{border-radius:.325rem}.cycle-button>[class*=mif-],.round-button>[class*=mif-],.square-button>[class*=mif-]{vertical-align:middle}.cycle-button img,.round-button img,.square-button img{height:.875rem;vertical-align:middle;margin:0}.cycle-button.loading-pulse,.round-button.loading-pulse,.square-button.loading-pulse{position:relative;padding:0 1.325rem}.cycle-button.loading-pulse:before,.round-button.loading-pulse:before,.square-button.loading-pulse:before{position:absolute;content:"";left:0;top:50%;margin-top:-10px;width:20px;height:20px;background-color:#333;border-radius:100%;-webkit-animation:scaleout 1s infinite ease-in-out;animation:scaleout 1s infinite ease-in-out}.cycle-button.loading-pulse.lighten:before,.round-button.loading-pulse.lighten:before,.square-button.loading-pulse.lighten:before{background-color:#fff}.cycle-button.loading-cube,.round-button.loading-cube,.square-button.loading-cube{position:relative;padding:0 1.325rem}.cycle-button.loading-cube:after,.cycle-button.loading-cube:before,.round-button.loading-cube:after,.round-button.loading-cube:before,.square-button.loading-cube:after,.square-button.loading-cube:before{content:"";background-color:#333;width:5px;height:5px;position:absolute;top:50%;left:3px;margin-top:-8px;-webkit-animation:cubemove 1.8s infinite ease-in-out;animation:cubemove 1.8s infinite ease-in-out}.cycle-button.dropdown-toggle.drop-marker-light:after,.cycle-button.dropdown-toggle.drop-marker-light:before,.cycle-button.loading-cube.lighten:after,.cycle-button.loading-cube.lighten:before,.round-button.dropdown-toggle.drop-marker-light:after,.round-button.dropdown-toggle.drop-marker-light:before,.round-button.loading-cube.lighten:after,.round-button.loading-cube.lighten:before,.square-button.dropdown-toggle.drop-marker-light:after,.square-button.dropdown-toggle.drop-marker-light:before,.square-button.loading-cube.lighten:after,.square-button.loading-cube.lighten:before{background-color:#fff}.cycle-button.loading-cube:after,.round-button.loading-cube:after,.square-button.loading-cube:after{-webkit-animation-delay:-.9s;animation-delay:-.9s}.cycle-button.dropdown-toggle,.round-button.dropdown-toggle,.square-button.dropdown-toggle{padding-right:1.625rem}.cycle-button.primary,.round-button.primary,.square-button.primary{background:#2086bf;color:#fff;border-color:#2086bf}.cycle-button.primary:active,.round-button.primary:active,.square-button.primary:active{background:#1b6eae;color:#fff}.cycle-button.success,.round-button.success,.square-button.success{background:#60a917;color:#fff;border-color:#60a917}.cycle-button.success:active,.round-button.success:active,.square-button.success:active{background:#128023;color:#fff}.cycle-button.alert,.cycle-button.danger,.round-button.alert,.round-button.danger,.square-button.alert,.square-button.danger{background:#ce352c;color:#fff;border-color:#ce352c}.cycle-button.alert:active,.cycle-button.danger:active,.round-button.alert:active,.round-button.danger:active,.square-button.alert:active,.square-button.danger:active{background:#9a1616;color:#fff}.cycle-button.info,.round-button.info,.square-button.info{background:#59cde2;color:#fff;border-color:#59cde2}.cycle-button.info:active,.round-button.info:active,.square-button.info:active{background:#1ba1e2;color:#fff}.cycle-button.warning,.round-button.warning,.square-button.warning{background:#fa6800;color:#fff;border-color:#fa6800}.cycle-button.warning:active,.round-button.warning:active,.square-button.warning:active{background:#bf5a15;color:#fff}.cycle-button.link,.round-button.link,.square-button.link{background:0 0;color:#2086bf;border-color:transparent;text-decoration:underline}.cycle-button.link:active,.cycle-button.link:hover,.round-button.link:active,.round-button.link:hover,.square-button.link:active,.square-button.link:hover{background:0 0;color:#114968;border-color:transparent}.square-button{border-radius:0}a.button,a.round-button,a.square-button{color:inherit}a.button:hover,a.round-button:hover,a.square-button:hover{text-decoration:none}.button.link,.command-button.link,.image-button.link,.shortcut-button.link{text-decoration:underline}.button.loading-pulse{position:relative;padding:0 1.325rem}.button.loading-pulse:before{position:absolute;content:"";left:0;top:50%;margin-top:-10px;width:20px;height:20px;background-color:#333;border-radius:100%;-webkit-animation:scaleout 1s infinite ease-in-out;animation:scaleout 1s infinite ease-in-out}.button.loading-pulse.lighten:before{background-color:#fff}.button.loading-cube{position:relative;padding:0 1.325rem}.button.loading-cube:after,.button.loading-cube:before{content:"";background-color:#333;width:5px;height:5px;position:absolute;top:50%;left:3px;margin-top:-8px;-webkit-animation:cubemove 1.8s infinite ease-in-out;animation:cubemove 1.8s infinite ease-in-out}.button.loading-cube.lighten:after,.button.loading-cube.lighten:before,.command-button{background-color:#fff}.button.loading-cube:after{-webkit-animation-delay:-.9s;animation-delay:-.9s}.command-button{padding:8px 1rem 4px 4rem;vertical-align:middle;color:#262626;cursor:pointer;display:inline-block;outline:0;line-height:100%;margin:.15625rem 0;position:relative;height:auto;text-align:left;font-size:1.325rem}.command-button.default{background-color:#008287;color:#fff}.command-button:hover{border-color:#787878}.command-button:active{background:#eee;color:#262626;box-shadow:none}.command-button:focus{outline:0}.command-button.disabled,.command-button:disabled{background-color:#eaeaea;color:#bebebe;cursor:default;border-color:transparent}.command-button *,.command-button :hover{color:inherit}.command-button.rounded{border-radius:.325rem}.command-button>[class*=mif-]{vertical-align:middle}.command-button img{height:.875rem;vertical-align:middle;margin:0}.command-button.loading-pulse{position:relative;padding:0 1.325rem}.command-button.loading-pulse:before{position:absolute;content:"";left:0;top:50%;margin-top:-10px;width:20px;height:20px;background-color:#333;border-radius:100%;-webkit-animation:scaleout 1s infinite ease-in-out;animation:scaleout 1s infinite ease-in-out}.command-button.loading-pulse.lighten:before{background-color:#fff}.command-button.loading-cube{position:relative;padding:0 1.325rem}.command-button.loading-cube:after,.command-button.loading-cube:before{content:"";background-color:#333;width:5px;height:5px;position:absolute;top:50%;left:3px;margin-top:-8px;-webkit-animation:cubemove 1.8s infinite ease-in-out;animation:cubemove 1.8s infinite ease-in-out}.command-button.dropdown-toggle.drop-marker-light:after,.command-button.dropdown-toggle.drop-marker-light:before,.command-button.loading-cube.lighten:after,.command-button.loading-cube.lighten:before{background-color:#fff}.command-button.loading-cube:after{-webkit-animation-delay:-.9s;animation-delay:-.9s}.command-button.dropdown-toggle{padding-right:1.625rem}.command-button.primary{background:#2086bf;color:#fff;border-color:#2086bf}.command-button.primary:active{background:#1b6eae;color:#fff}.command-button.success{background:#60a917;color:#fff;border-color:#60a917}.command-button.success:active{background:#128023;color:#fff}.command-button.alert,.command-button.danger{background:#ce352c;color:#fff;border-color:#ce352c}.command-button.alert:active,.command-button.danger:active{background:#9a1616;color:#fff}.command-button.info{background:#59cde2;color:#fff;border-color:#59cde2}.command-button.info:active{background:#1ba1e2;color:#fff}.command-button.warning{background:#fa6800;color:#fff;border-color:#fa6800}.command-button.warning:active{background:#bf5a15;color:#fff}.command-button.link{background:0 0;color:#2086bf;border-color:transparent}.command-button.link:active,.command-button.link:hover{background:0 0;color:#114968;border-color:transparent}.command-button small{display:block;font-size:.8rem;line-height:1.625rem;margin-top:-.3125rem}.image-button,.shortcut-button{display:inline-block;line-height:100%}.command-button .icon{left:1rem;top:50%;margin-top:-1rem;position:absolute;font-size:2rem;height:2rem;width:2rem;margin-right:.625rem}.command-button.icon-right{padding-left:1rem;padding-right:4rem}.command-button.icon-right .icon{left:auto;right:0}.image-button{padding:0 1rem 0 2.75rem;height:2.125rem;text-align:center;vertical-align:middle;color:#262626;cursor:pointer;outline:0;font-size:.875rem;margin:.15625rem 0;position:relative;border:0;background-color:#eee}.image-button.default{background-color:#008287;color:#fff}.image-button:hover{border-color:#787878}.image-button:active{background:#eee;color:#262626;box-shadow:none}.image-button:focus{outline:0}.image-button.disabled,.image-button:disabled{background-color:#eaeaea;color:#bebebe;cursor:default;border-color:transparent}.image-button *,.image-button :hover{color:inherit}.image-button.rounded{border-radius:.325rem}.image-button>[class*=mif-]{vertical-align:middle}.image-button img{height:.875rem;vertical-align:middle;margin:0}.image-button.loading-pulse{position:relative;padding:0 1.325rem}.image-button.loading-pulse:before{position:absolute;content:"";left:0;top:50%;margin-top:-10px;width:20px;height:20px;background-color:#333;border-radius:100%;-webkit-animation:scaleout 1s infinite ease-in-out;animation:scaleout 1s infinite ease-in-out}.image-button.loading-pulse.lighten:before{background-color:#fff}.image-button.loading-cube{position:relative;padding:0 1.325rem}.image-button img.icon,a.image-button{padding-top:.525rem}.image-button.loading-cube:after,.image-button.loading-cube:before{content:"";background-color:#333;width:5px;height:5px;position:absolute;top:50%;left:3px;margin-top:-8px;-webkit-animation:cubemove 1.8s infinite ease-in-out;animation:cubemove 1.8s infinite ease-in-out}.image-button.dropdown-toggle.drop-marker-light:after,.image-button.dropdown-toggle.drop-marker-light:before,.image-button.loading-cube.lighten:after,.image-button.loading-cube.lighten:before{background-color:#fff}.image-button.loading-cube:after{-webkit-animation-delay:-.9s;animation-delay:-.9s}.image-button.dropdown-toggle{padding-right:1.625rem}.image-button.primary{background:#2086bf;color:#fff;border-color:#2086bf}.image-button.primary:active{background:#1b6eae;color:#fff}.image-button.success{background:#60a917;color:#fff;border-color:#60a917}.image-button.success:active{background:#128023;color:#fff}.image-button.alert,.image-button.danger{background:#ce352c;color:#fff;border-color:#ce352c}.image-button.alert:active,.image-button.danger:active{background:#9a1616;color:#fff}.image-button.info{background:#59cde2;color:#fff;border-color:#59cde2}.image-button.info:active{background:#1ba1e2;color:#fff}.image-button.warning{background:#fa6800;color:#fff;border-color:#fa6800}.image-button.warning:active{background:#bf5a15;color:#fff}.image-button.link{background:0 0;color:#2086bf;border-color:transparent}.image-button.link:active,.image-button.link:hover{background:0 0;color:#114968;border-color:transparent}.image-button:active{background-color:#e1e1e1}.image-button .icon{position:absolute;left:0;top:0;height:100%;width:2.125rem;padding:.525rem;font-size:1rem;background-color:#999;text-align:center;vertical-align:middle}.image-button.icon-right{padding-left:1rem;padding-right:2.75rem}.image-button.icon-right .icon{right:0;left:auto}.image-button.small-button{padding-left:2rem;padding-right:1rem}.image-button.small-button .icon{width:1.625rem;font-size:.875rem;height:100%;padding:.4rem}.image-button.small-button.icon-right{padding-left:.625rem;padding-right:2rem}.shortcut-button{padding:0 1rem;vertical-align:middle;background-color:#fff;border:1px solid #d9d9d9;color:#262626;cursor:pointer;outline:0;margin:.15625rem 0;position:relative;width:5.75rem;height:5.75rem;text-align:center;font-size:.75rem}.shortcut-button.default{background-color:#008287;color:#fff}.shortcut-button:hover{border-color:#787878}.shortcut-button:active{background:#eee;color:#262626;box-shadow:none}.shortcut-button:focus{outline:0}.shortcut-button.disabled,.shortcut-button:disabled{background-color:#eaeaea;color:#bebebe;cursor:default;border-color:transparent}.shortcut-button *,.shortcut-button :hover{color:inherit}.shortcut-button.rounded{border-radius:.325rem}.shortcut-button>[class*=mif-]{vertical-align:middle}.shortcut-button img{height:.875rem;vertical-align:middle;margin:0}.shortcut-button.loading-pulse{position:relative;padding:0 1.325rem}.shortcut-button.loading-pulse:before{position:absolute;content:"";left:0;top:50%;margin-top:-10px;width:20px;height:20px;background-color:#333;border-radius:100%;-webkit-animation:scaleout 1s infinite ease-in-out;animation:scaleout 1s infinite ease-in-out}.shortcut-button.loading-pulse.lighten:before{background-color:#fff}.shortcut-button.loading-cube{position:relative;padding:0 1.325rem}.shortcut-button.loading-cube:after,.shortcut-button.loading-cube:before{content:"";background-color:#333;width:5px;height:5px;position:absolute;top:50%;left:3px;margin-top:-8px;-webkit-animation:cubemove 1.8s infinite ease-in-out;animation:cubemove 1.8s infinite ease-in-out}.shortcut-button.dropdown-toggle.drop-marker-light:after,.shortcut-button.dropdown-toggle.drop-marker-light:before,.shortcut-button.loading-cube.lighten:after,.shortcut-button.loading-cube.lighten:before{background-color:#fff}.shortcut-button.loading-cube:after{-webkit-animation-delay:-.9s;animation-delay:-.9s}.shortcut-button.dropdown-toggle{padding-right:1.625rem}.shortcut-button.primary{background:#2086bf;color:#fff;border-color:#2086bf}.shortcut-button.primary:active{background:#1b6eae;color:#fff}.shortcut-button.success{background:#60a917;color:#fff;border-color:#60a917}.shortcut-button.success:active{background:#128023;color:#fff}.shortcut-button.alert,.shortcut-button.danger{background:#ce352c;color:#fff;border-color:#ce352c}.shortcut-button.alert:active,.shortcut-button.danger:active{background:#9a1616;color:#fff}.shortcut-button.info{background:#59cde2;color:#fff;border-color:#59cde2}.shortcut-button.info:active{background:#1ba1e2;color:#fff}.shortcut-button.warning{background:#fa6800;color:#fff;border-color:#fa6800}.shortcut-button.warning:active{background:#bf5a15;color:#fff}.shortcut-button.link{background:0 0;color:#2086bf;border-color:transparent}.shortcut-button.link:active,.shortcut-button.link:hover{background:0 0;color:#114968;border-color:transparent}.shortcut-button .icon,.shortcut-button .title{display:block;color:inherit}.shortcut-button .icon{font-size:1.7rem;height:1.7rem;width:1.7rem;margin:.875rem auto}.shortcut-button .badge{color:inherit;position:absolute;top:0;right:0;font-size:.7rem;line-height:1rem;padding:0 .225rem}a.shortcut-button{padding-top:10px}.button.dropdown-toggle{padding-right:1.625rem}.button.dropdown-toggle.drop-marker-light:after,.button.dropdown-toggle.drop-marker-light:before{background-color:#fff}.nav-button{width:2rem;height:2rem;background:center center no-repeat;text-indent:-9999px;border:0;display:inline-block;cursor:pointer;z-index:2;position:relative}.nav-button span,.nav-button span:after,.nav-button span:before{-webkit-transform:rotate(0);width:1.2rem;height:2px;background:#1d1d1d}.nav-button span{position:absolute;top:1.2rem;left:.5rem;margin:0;transform:rotate(0);transition:all .3s linear}.nav-button span:after,.nav-button span:before{content:'';position:absolute;top:-.5rem;right:0;transform:rotate(0);transition:all .3s linear}.nav-button span:after{top:.5rem}.nav-button.transform span{-webkit-transform:rotate(180deg);transform:rotate(180deg);background:#1d1d1d}.nav-button.transform span:after,.nav-button.transform span:before{content:'';top:-5px;right:0;width:.75rem;-webkit-transform:rotate(45deg);transform:rotate(45deg)}.nav-button.transform span:after{top:5px;-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}.nav-button.light span,.nav-button.light span:after,.nav-button.light span:before{background-color:#fff}.group-of-buttons .button.active,.group-of-buttons .toolbar-button.active{background-color:#0cf;color:#fff}.group-of-buttons .button:active,.group-of-buttons .toolbar-button:active{background-color:#1ba1e2;color:#fff}.dropdown-button,.split-button{display:inline-block;position:relative;vertical-align:middle}.dropdown-button:after,.dropdown-button:before,.split-button:after,.split-button:before{display:table;content:""}.dropdown-button .button,.dropdown-button .split,.split-button .button,.split-button .split{display:block;float:left}.dropdown-button .split,.split-button .split{padding:0 1rem 0 .625rem;height:2.125rem;text-align:center;vertical-align:middle;background-color:#fff;border:1px solid #d9d9d9;color:#262626;cursor:pointer;outline:0;font-size:.875rem;position:relative;margin:.15625rem 0}.dropdown-button .split:hover,.split-button .split:hover{background-color:#eee;border-color:#787878}.dropdown-button .split.dropdown-toggle:before,.split-button .split.dropdown-toggle:before{transition:all .3s ease}.dropdown-button .split.dropdown-toggle.active-toggle:before,.split-button .split.dropdown-toggle.active-toggle:before{-webkit-transform:rotate(135deg);transform:rotate(135deg);transition:all .3s ease}.dropdown-button .split-content,.split-button .split-content{position:absolute;top:100%}.split.primary{background:#2086bf;color:#fff;border-color:#2086bf}.split.primary:active{background:#1b6eae}.split.primary:hover{background:#59cde2;border-color:#59cde2}.split.primary.dropdown-toggle:before{border-color:#fff}.split.success{background:#60a917;color:#fff;border-color:#60a917}.split.success:active{background:#128023}.split.success:hover{background:#7ad61d;border-color:#7ad61d}.split.success.dropdown-toggle:before{border-color:#fff}.split.danger{background:#ce352c;color:#fff;border-color:#ce352c}.split.danger:active{background:#9a1616}.split.danger:hover{background:#da5a53;border-color:#da5a53}.split.danger.dropdown-toggle:before{border-color:#fff}.split.info{background:#59cde2;color:#fff;border-color:#59cde2}.split.info:active{background:#1ba1e2}.split.info:hover{background:#4390df;border-color:#4390df}.split.info.dropdown-toggle:before{border-color:#fff}.split.warning{background:#fa6800;color:#fff;border-color:#fa6800}.split.warning:active{background:#bf5a15}.split.warning:hover{background:#ffc194;border-color:#ffc194}.split.warning.dropdown-toggle:before{border-color:#fff}.big-button,.large-button,.mini-button,.small-button{line-height:100%}.mini-button{font-size:.6rem;padding:.2rem .625rem;height:1.4rem}.small-button{font-size:.7rem;padding:0 .625rem;height:1.7rem}.large-button{height:2.55rem;font-size:1.05rem}.big-button{height:3.125rem;font-size:1.2rem}.cycle-button.mini-button,.round-button.mini-button,.square-button.mini-button{width:1.4rem;height:1.4rem;font-size:.6rem;line-height:1;padding:0;min-width:0}.cycle-button.small-button,.round-button.small-button,.square-button.small-button{width:1.7rem;height:1.7rem;font-size:.7rem;line-height:1.68rem;padding:0;min-width:0}.cycle-button.large-button,.round-button.large-button,.square-button.large-button{font-size:1.05rem;line-height:1;width:2.55rem;height:2.55rem}.cycle-button.big-button,.round-button.big-button,.square-button.big-button{font-size:1.2rem;line-height:1;width:3.125rem;height:3.125rem}.button.primary{background:#2086bf;color:#fff;border-color:#2086bf}.button.primary:active{background:#1b6eae;color:#fff}.button.success{background:#60a917;color:#fff;border-color:#60a917}.button.success:active{background:#128023;color:#fff}.button.alert,.button.danger{background:#ce352c;color:#fff;border-color:#ce352c}.button.alert:active,.button.danger:active{background:#9a1616;color:#fff}.button.info{background:#59cde2;color:#fff;border-color:#59cde2}.button.info:active{background:#1ba1e2;color:#fff}.button.warning{background:#fa6800;color:#fff;border-color:#fa6800}.button.warning:active{background:#bf5a15;color:#fff}.button.link{background:0 0;color:#2086bf;border-color:transparent}.button.link:active,.button.link:hover{background:0 0;color:#114968;border-color:transparent}a.button,a.cycle-button,a.round-button,a.square-button,div.button,div.cycle-button,div.round-button,div.square-button,span.button,span.cycle-button,span.round-button,span.square-button{padding-top:.53125rem}a.button.big-button,a.cycle-button.big-button,a.round-button.big-button,a.square-button.big-button,div.button.big-button,div.cycle-button.big-button,div.round-button.big-button,div.square-button.big-button,span.button.big-button,span.cycle-button.big-button,span.round-button.big-button,span.square-button.big-button{padding-top:.78125rem}.dropdown-button button.dropdown-toggle:before{transition:all .3s ease}.dropdown-button button.dropdown-toggle.active-toggle:before{-webkit-transform:rotate(135deg);transform:rotate(135deg);transition:all .3s ease}.shortcut-button[data-hotkey]::after{position:absolute;content:attr(data-hotkey);font-size:.625rem;bottom:0;right:0;color:#999}.toolbar,.toolbar-section{position:relative}.shortcut-button[data-hotkey].no-hotkey-display::after{display:none}.toolbar:after,.toolbar:before{display:table;content:""}.toolbar-section{padding-left:.5725rem;margin:.125rem;float:left;width:auto}.toolbar-section.no-divider:before{display:none}.toolbar-section:before{position:absolute;content:"";width:.325rem;height:100%;left:0;background-color:#eee;cursor:move}.toolbar .toolbar-button{height:2.125rem;background-color:#fff;border:1px solid #d9d9d9;color:#262626;cursor:pointer;display:inline-block;outline:0;font-size:.875rem;line-height:100%;position:relative;width:2.125rem;min-width:2.125rem;padding:0;text-align:center;text-decoration:none;vertical-align:middle;border-radius:0;margin:0}.toolbar .toolbar-button.default{background-color:#008287;color:#fff}.toolbar .toolbar-button:hover{border-color:#787878}.toolbar .toolbar-button:active{background:#eee;color:#262626;box-shadow:none}.toolbar .toolbar-button:focus{outline:0}.toolbar .toolbar-button.disabled,.toolbar .toolbar-button:disabled{background-color:#eaeaea;color:#bebebe;cursor:default;border-color:transparent}.toolbar .toolbar-button *,.toolbar .toolbar-button :hover{color:inherit}.toolbar .toolbar-button.rounded{border-radius:.325rem}.toolbar .toolbar-button>[class*=mif-]{vertical-align:middle}.toolbar .toolbar-button img{height:.875rem;vertical-align:middle;margin:0}.toolbar .toolbar-button.loading-pulse{position:relative;padding:0 1.325rem}.toolbar .toolbar-button.loading-pulse:before{position:absolute;content:"";left:0;top:50%;margin-top:-10px;width:20px;height:20px;background-color:#333;border-radius:100%;-webkit-animation:scaleout 1s infinite ease-in-out;animation:scaleout 1s infinite ease-in-out}.toolbar .toolbar-button.loading-pulse.lighten:before{background-color:#fff}.toolbar .toolbar-button.loading-cube{position:relative;padding:0 1.325rem}.toolbar .toolbar-button.loading-cube:after,.toolbar .toolbar-button.loading-cube:before{content:"";background-color:#333;width:5px;height:5px;position:absolute;top:50%;left:3px;margin-top:-8px;-webkit-animation:cubemove 1.8s infinite ease-in-out;animation:cubemove 1.8s infinite ease-in-out}.toolbar .toolbar-button.dropdown-toggle.drop-marker-light:after,.toolbar .toolbar-button.dropdown-toggle.drop-marker-light:before,.toolbar .toolbar-button.loading-cube.lighten:after,.toolbar .toolbar-button.loading-cube.lighten:before{background-color:#fff}.toolbar .toolbar-button.loading-cube:after{-webkit-animation-delay:-.9s;animation-delay:-.9s}.toolbar .toolbar-button.dropdown-toggle{padding-right:1.625rem}.toolbar .toolbar-button.primary{background:#2086bf;color:#fff;border-color:#2086bf}.toolbar .toolbar-button.primary:active{background:#1b6eae;color:#fff}.toolbar .toolbar-button.success{background:#60a917;color:#fff;border-color:#60a917}.toolbar .toolbar-button.success:active{background:#128023;color:#fff}.toolbar .toolbar-button.alert,.toolbar .toolbar-button.danger{background:#ce352c;color:#fff;border-color:#ce352c}.toolbar .toolbar-button.alert:active,.toolbar .toolbar-button.danger:active{background:#9a1616;color:#fff}.toolbar .toolbar-button.info{background:#59cde2;color:#fff;border-color:#59cde2}.toolbar .toolbar-button.info:active{background:#1ba1e2;color:#fff}.toolbar .toolbar-button.warning{background:#fa6800;color:#fff;border-color:#fa6800}.toolbar .toolbar-button.warning:active{background:#bf5a15;color:#fff}.toolbar .toolbar-button.link{background:0 0;color:#2086bf;border-color:transparent;text-decoration:underline}.toolbar .toolbar-button.link:active,.toolbar .toolbar-button.link:hover{background:0 0;color:#114968;border-color:transparent}.toolbar .toolbar-button.mini-button{width:1.4rem;height:1.4rem;font-size:.6rem;line-height:1;padding:0;min-width:0}.toolbar .toolbar-button.small-button{width:1.7rem;height:1.7rem;font-size:.7rem;line-height:1.68rem;padding:0;min-width:0}.toolbar .toolbar-button.large-button{font-size:1.05rem;line-height:1;width:2.55rem;height:2.55rem}.toolbar .toolbar-button.big-button{font-size:1.2rem;line-height:1;width:3.125rem;height:3.125rem}.toolbar-group,.toolbar-section{display:inline-block}.toolbar-group.condensed:after,.toolbar-group.condensed:before,.toolbar-section.condensed:after,.toolbar-section.condensed:before{display:table;content:""}.toolbar-group.condensed .button,.toolbar-group.condensed .toolbar-button,.toolbar-section.condensed .button,.toolbar-section.condensed .toolbar-button{display:block;float:left}.toolbar-group-check .toolbar-button.checked,.toolbar-group-radio .toolbar-button.checked{background-color:#59cde2;color:#fff;border-color:#59cde2}.toolbar.rounded .toolbar-section:before,.toolbar.rounded>.toolbar-button,.toolbar.rounded>.toolbar-section .toolbar-button{border-radius:.3125rem}.v-toolbar{position:relative;float:left}.v-toolbar:after,.v-toolbar:before{display:table;content:""}.v-toolbar .toolbar-button{height:2.125rem;background-color:#fff;border:1px solid #d9d9d9;color:#262626;cursor:pointer;outline:0;font-size:.875rem;line-height:100%;position:relative;width:2.125rem;min-width:2.125rem;padding:0;text-align:center;text-decoration:none;vertical-align:middle;border-radius:0;margin:0}.v-toolbar .toolbar-button.default{background-color:#008287;color:#fff}.v-toolbar .toolbar-button:hover{border-color:#787878}.v-toolbar .toolbar-button:active{background:#eee;color:#262626;box-shadow:none}.v-toolbar .toolbar-button:focus{outline:0}.v-toolbar .toolbar-button.disabled,.v-toolbar .toolbar-button:disabled{background-color:#eaeaea;color:#bebebe;cursor:default;border-color:transparent}.v-toolbar .toolbar-button *,.v-toolbar .toolbar-button :hover{color:inherit}.v-toolbar .toolbar-button.rounded{border-radius:.325rem}.v-toolbar .toolbar-button>[class*=mif-]{vertical-align:middle}.v-toolbar .toolbar-button img{height:.875rem;vertical-align:middle;margin:0}.v-toolbar .toolbar-button.loading-pulse{position:relative;padding:0 1.325rem}.v-toolbar .toolbar-button.loading-pulse:before{position:absolute;content:"";left:0;top:50%;margin-top:-10px;width:20px;height:20px;background-color:#333;border-radius:100%;-webkit-animation:scaleout 1s infinite ease-in-out;animation:scaleout 1s infinite ease-in-out}.pagination.rounded>.item,.v-toolbar.rounded .toolbar-section:before,.v-toolbar.rounded>.toolbar-button,.v-toolbar.rounded>.toolbar-section .toolbar-button{border-radius:.3125rem}.v-toolbar .toolbar-button.loading-pulse.lighten:before{background-color:#fff}.v-toolbar .toolbar-button.loading-cube{position:relative;padding:0 1.325rem}.v-toolbar .toolbar-button.loading-cube:after,.v-toolbar .toolbar-button.loading-cube:before{content:"";background-color:#333;width:5px;height:5px;position:absolute;top:50%;left:3px;margin-top:-8px;-webkit-animation:cubemove 1.8s infinite ease-in-out;animation:cubemove 1.8s infinite ease-in-out}.v-toolbar .toolbar-button.dropdown-toggle.drop-marker-light:after,.v-toolbar .toolbar-button.dropdown-toggle.drop-marker-light:before,.v-toolbar .toolbar-button.loading-cube.lighten:after,.v-toolbar .toolbar-button.loading-cube.lighten:before{background-color:#fff}.v-toolbar .toolbar-button.loading-cube:after{-webkit-animation-delay:-.9s;animation-delay:-.9s}.v-toolbar .toolbar-button.dropdown-toggle{padding-right:1.625rem}.v-toolbar .toolbar-button.primary{background:#2086bf;color:#fff;border-color:#2086bf}.v-toolbar .toolbar-button.primary:active{background:#1b6eae;color:#fff}.v-toolbar .toolbar-button.success{background:#60a917;color:#fff;border-color:#60a917}.v-toolbar .toolbar-button.success:active{background:#128023;color:#fff}.v-toolbar .toolbar-button.alert,.v-toolbar .toolbar-button.danger{background:#ce352c;color:#fff;border-color:#ce352c}.v-toolbar .toolbar-button.alert:active,.v-toolbar .toolbar-button.danger:active{background:#9a1616;color:#fff}.v-toolbar .toolbar-button.info{background:#59cde2;color:#fff;border-color:#59cde2}.v-toolbar .toolbar-button.info:active{background:#1ba1e2;color:#fff}.v-toolbar .toolbar-button.warning{background:#fa6800;color:#fff;border-color:#fa6800}.v-toolbar .toolbar-button.warning:active{background:#bf5a15;color:#fff}.v-toolbar .toolbar-button.link{background:0 0;color:#2086bf;border-color:transparent;text-decoration:underline}.v-toolbar .toolbar-button.link:active,.v-toolbar .toolbar-button.link:hover{background:0 0;color:#114968;border-color:transparent}.v-toolbar .toolbar-button.mini-button{width:1.4rem;height:1.4rem;font-size:.6rem;line-height:1;padding:0;min-width:0}.v-toolbar .toolbar-button.small-button{width:1.7rem;height:1.7rem;font-size:.7rem;line-height:1.68rem;padding:0;min-width:0}.v-toolbar .toolbar-button.large-button{font-size:1.05rem;line-height:1;width:2.55rem;height:2.55rem}.v-toolbar .toolbar-button.big-button{font-size:1.2rem;line-height:1;width:3.125rem;height:3.125rem}.v-toolbar .toolbar-section{padding-left:0;padding-top:.5725rem}.v-toolbar .toolbar-section:before{width:100%;top:0;height:.325rem}.v-toolbar .toolbar-button{display:block;margin-bottom:.25rem}.v-toolbar.no-divider .toolbar-section:before{display:none}.pagination{display:block;margin:.625rem 0}.pagination:after,.pagination:before{display:table;content:""}.pagination>.item{display:block;float:left;margin-left:.0652rem;padding:.25rem .625rem;background-color:#fff;cursor:pointer;border:1px solid #eee;text-align:center;font-size:.875rem;color:#1d1d1d}.pagination>.item:first-child{margin-left:0}.pagination>.item.active,.pagination>.item.current{background-color:#1ba1e2;border-color:#59cde2;color:#fff;text-shadow:2px 2px 4px rgba(0,0,0,.4)}.pagination>.item:hover{background-color:#75c7ee;border-color:#75c7ee;color:#fff}.pagination>.item.disabled,.pagination>.item:disabled{cursor:default;background-color:#eee;border-color:#eee;color:#999}.pagination>.item.spaces{border:0;cursor:default;color:#1d1d1d}.pagination>.item.spaces:hover{background-color:inherit;color:#1d1d1d}.pagination.cycle>.item{width:28px;height:28px;border-radius:50%;font-size:.7rem;padding:.4375rem 0}.pagination.no-border>.item{border:0}.pagination.no-border>.item:hover{color:#59cde2;background-color:transparent}.pagination.no-border>.item.disabled,.pagination.no-border>.item:disabled{cursor:default;background-color:transparent;border-color:transparent;color:#999}.pagination.no-border>.item.active:hover,.pagination.no-border>.item.current:hover{background-color:#75c7ee;border-color:#75c7ee;color:#fff}.breadcrumbs{margin:0;background-color:#fff;color:#999;padding:1rem}.breadcrumbs>li{display:inline-block;color:inherit;margin:0 1rem 0 0;position:relative;vertical-align:middle}.breadcrumbs>li:after,.breadcrumbs>li:before{display:block;position:absolute;vertical-align:middle;color:transparent;font-size:0;content:"";height:1px;width:.375rem;background-color:#1d1d1d;top:50%;left:100%;margin-left:.5rem}.breadcrumbs>li:before{-webkit-transform:rotate(45deg);transform:rotate(45deg);margin-top:-.125rem}.breadcrumbs>li:after{-webkit-transform:rotate(-45deg);transform:rotate(-45deg);margin-top:.125rem}.breadcrumbs>li>a{color:inherit;display:inline-block;line-height:1}.breadcrumbs>li:last-child{color:#1d1d1d;font-weight:bolder}.breadcrumbs>li:last-child a{cursor:default}.breadcrumbs>li:last-child:after,.breadcrumbs>li:last-child:before{background-color:transparent}.breadcrumbs>li:hover{color:#1d1d1d}.breadcrumbs .icon,.breadcrumbs img{display:inline-block;line-height:.8;height:1rem;width:1rem;font-size:1rem;vertical-align:-15%}.breadcrumbs.dark{background-color:#393832}.breadcrumbs.dark>li:hover,.breadcrumbs.dark>li:last-child{color:#fff}.breadcrumbs.dark>li:after,.breadcrumbs.dark>li:before{background-color:#fff}.breadcrumbs2{margin:.625rem 0;padding:0;list-style:none;overflow:hidden;width:100%}.breadcrumbs2 li{float:left;margin:0 .2em 0 1em}.breadcrumbs2 a{background:#d9d9d9;padding:.3em 1em;float:left;text-decoration:none;color:#2086bf;position:relative}.breadcrumbs2 a:hover{background:#1ba1e2;color:#fff}.breadcrumbs2 .active,.breadcrumbs2 .active:hover,.breadcrumbs2>li:last-child{background:0 0}.breadcrumbs2 a:hover:before{border-color:#1ba1e2 #1ba1e2 #1ba1e2 transparent}.breadcrumbs2 a:hover:after{border-left-color:#1ba1e2}.breadcrumbs2 a:before{content:"";position:absolute;top:50%;margin-top:-1.5em;border-width:1.5em 0 1.5em 1em;border-style:solid;border-color:#d9d9d9 #d9d9d9 #d9d9d9 transparent;left:-1em;margin-left:1px}.input-control input:focus,.input-control input:hover,.input-control select:focus,.input-control select:hover,.input-control textarea:focus,.input-control textarea:hover,.input-control.file:hover button,.input-control.file:hover input[type=text]{border-color:#787878}.breadcrumbs2 a:after{content:"";position:absolute;top:50%;margin-top:-1.5em;border-top:1.5em solid transparent;border-bottom:1.5em solid transparent;border-left:1em solid #d9d9d9;right:-1em;margin-right:1px}.breadcrumbs2 .active:after,.breadcrumbs2 .active:before,.breadcrumbs2>li:first-child a:before,.breadcrumbs2>li:last-child:after,.breadcrumbs2>li:last-child:before{content:normal}.breadcrumbs2>li:first-child{margin-left:0}.breadcrumbs2>li:last-child a{color:#1d1d1d}.breadcrumbs2>li:last-child:hover a{color:#fff}.input-control input:disabled,.input-control select:disabled,.input-control textarea:disabled,.input-control.file input[type=file]:disabled~.button,.input-control.file input[type=file]:disabled~input[type=text]{background-color:#EBEBE4}.breadcrumbs2 .active a,.breadcrumbs2 .active:hover a{color:#1d1d1d}.breadcrumbs2 .active:hover a{color:#fff}.breadcrumbs2.small a{padding:.2em 1em;font-size:11.9px}.breadcrumbs2.mini a{padding:.1em 1em;font-size:10.5px}.breadcrumbs2>li>a>[class*=mif]{vertical-align:-10%}.input-control{display:inline-block;min-height:2.125rem;height:2.125rem;position:relative;vertical-align:middle;margin:.325rem 0;line-height:1}.input-control[data-role=select]{height:auto}.input-control.email,.input-control.file,.input-control.number,.input-control.password,.input-control.select,.input-control.tel,.input-control.text{width:10.875rem}.input-control.email .button,.input-control.file .button,.input-control.number .button,.input-control.password .button,.input-control.select .button,.input-control.tel .button,.input-control.text .button{position:absolute;top:0;right:0;z-index:2;margin:0}.input-control.email>.label,.input-control.email>label,.input-control.file>.label,.input-control.file>label,.input-control.number>.label,.input-control.number>label,.input-control.password>.label,.input-control.password>label,.input-control.select>.label,.input-control.select>label,.input-control.tel>.label,.input-control.tel>label,.input-control.text>.label,.input-control.text>label{position:absolute;left:0;top:-1rem;font-size:.875rem}.input-control.email>input:disabled+.button,.input-control.file>input:disabled+.button,.input-control.number>input:disabled+.button,.input-control.password>input:disabled+.button,.input-control.select>input:disabled+.button,.input-control.tel>input:disabled+.button,.input-control.text>input:disabled+.button{display:none}.input-control.email .prepend-icon,.input-control.file .prepend-icon,.input-control.number .prepend-icon,.input-control.password .prepend-icon,.input-control.select .prepend-icon,.input-control.tel .prepend-icon,.input-control.text .prepend-icon{width:24px;height:24px;font-size:24px;line-height:1;position:absolute;top:50%;margin-top:-12px;left:4px;z-index:2;color:#999}.input-control.email .prepend-icon~input,.input-control.file .prepend-icon~input,.input-control.number .prepend-icon~input,.input-control.password .prepend-icon~input,.input-control.select .prepend-icon~input,.input-control.tel .prepend-icon~input,.input-control.text .prepend-icon~input{padding-left:30px}.input-control input,.input-control select,.input-control textarea{-moz-appearance:none;-webkit-appearance:none;appearance:none;position:relative;border:1px solid #d9d9d9;width:100%;height:100%;padding:.3125rem;z-index:0}.input-control input:focus,.input-control select:focus,.input-control textarea:focus{outline:0}.input-control textarea{position:relative;min-height:6.25rem;font-family:"Segoe UI","Open Sans",sans-serif,serif}.input-control.textarea{height:auto}.input-control.select{position:relative}.input-control.select select{padding-right:20px}.input-control.rounded input,.input-control.rounded select,.input-control.rounded textarea{border-radius:.3125rem}.input-control.big-input{height:4.125rem}.input-control.big-input input{font-size:1.875rem;padding-left:1.25rem}.input-control.big-input .button{height:3.25rem;top:50%;margin-top:-1.625rem;right:.3125rem;font-size:1.125rem;font-weight:700;padding-left:1.875rem;padding-right:1.875rem}.input-control [class*=input-state-]{position:absolute;display:none;top:50%;right:8px;z-index:3;font-size:1rem;margin-top:-.5rem}.input-control.required input,.input-control.required select,.input-control.required textarea{border:1px dashed #1ba1e2}.input-control.required.neon input,.input-control.required.neon select,.input-control.required.neon textarea{box-shadow:0 0 25px 0 rgba(89,205,226,.7)}.input-control.required .input-state-required{display:block;color:#1ba1e2}.input-control.error input,.input-control.error select,.input-control.error textarea{border:1px solid #ce352c}.input-control.error.neon input,.input-control.error.neon select,.input-control.error.neon textarea{box-shadow:0 0 25px 0 rgba(128,0,0,.7)}.input-control.error .input-state-error{display:block;color:#ce352c}.input-control.warning input,.input-control.warning select,.input-control.warning textarea{border:1px solid #e3c800}.input-control.warning.neon input,.input-control.warning.neon select,.input-control.warning.neon textarea{box-shadow:0 0 25px 0 rgba(255,165,0,.7)}.input-control.warning .input-state-warning{display:block;color:#e3c800}.input-control.success input,.input-control.success select,.input-control.success textarea{border:1px solid #60a917}.input-control.success.neon input,.input-control.success.neon select,.input-control.success.neon textarea{box-shadow:0 0 25px 0 rgba(0,128,0,.7)}.input-control.success .input-state-success{display:block;color:#60a917}.input-control.info input,.input-control.info select,.input-control.info textarea{border:1px solid #1ba1e2}.input-control.info.neon input,.input-control.info.neon select,.input-control.info.neon textarea{box-shadow:0 0 25px 0 rgba(89,205,226,.7)}.input-control.info .input-state-success{display:block;color:#1ba1e2}input.error,select.error,textarea.error{border:1px solid #ce352c}input.warning,select.warning,textarea.warning{border:1px solid #e3c800}input.info,select.info,textarea.info{border:1px solid #1ba1e2}input.success,select.success,textarea.success{border:1px solid #60a917}input.required,select.required,textarea.required{border:1px dashed #1ba1e2}.input-control.file input[type=file]{position:absolute;opacity:0;width:.0625rem;height:.0625rem}.input-control .button-group{position:absolute;right:0;top:0;margin:0;padding:0;z-index:2}.input-control .button-group:after,.input-control .button-group:before{display:table;content:""}.input-control .button-group .button{position:relative;float:left;margin:0}.input-control>.button-group>.helper-button,.input-control>.helper-button{visibility:hidden;margin:0;border:0;height:1.875rem;padding:0 .6rem;z-index:100;font-size:.75rem}.input-control>.button.helper-button{margin:2px 2px 0}.input-control>.button-group>.button.helper-button{margin:2px 0}.input-control>.button-group>.button.helper-button:last-child{margin-right:2px}.input-control input:focus~.button-group>.helper-button,.input-control input:focus~.helper-button,.input-control input~.button-group>.helper-button:active,.input-control input~.helper-button:active{visibility:visible}.input-control input:disabled~.button-group>.helper-button,.input-control input:disabled~.helper-button{display:none}.input-control.modern{position:relative;width:12.25rem;height:3rem;display:inline-block;margin:.625rem 0}.input-control.modern input{position:absolute;top:1rem;left:0;right:0;bottom:.5rem;border:0;border-bottom:2px #DDD solid;background-color:transparent;outline:0;font-size:1rem;padding-bottom:.5rem;padding-left:0;width:100%;z-index:2;height:1.75rem}.input-control.modern input:focus{border-bottom-color:#1d1d1d}.input-control.modern .informer,.input-control.modern .label{position:absolute;display:block;z-index:1;color:#1d1d1d}.input-control.modern .label{opacity:0;top:16px;left:0;transition:all .3s linear}.input-control.modern .informer{opacity:0;bottom:.75rem;color:#C8C8C8;font-size:.8rem;transition:all .3s linear}.input-control.modern .placeholder{font-size:1rem;color:#C8C8C8;position:absolute;top:1.2rem;left:0;z-index:1;opacity:1;transition:all .3s linear}.input-control.modern .helper-button{top:8px}.input-control.modern.iconic{margin-left:32px}.input-control.modern.iconic .icon{width:24px;height:24px;font-size:24px;line-height:1;position:absolute;left:-28px;top:50%;margin-top:-8px;display:block;opacity:.2;transition:all .3s linear}.input-control.modern.iconic .icon img{width:100%;max-width:100%;height:100%;max-height:100%}.input-control.modern.iconic.full-size{width:calc(100% - 32px)!important}.input-control.modern input:focus~.label{opacity:1;-webkit-transform:translateY(-18px);transform:translateY(-18px);transition:all .3s linear}.input-control.modern input:focus~.placeholder{opacity:0;-webkit-transform:translateX(200px);transform:translateX(200px);transition:all .3s linear}.input-control.modern input:focus~.informer{opacity:1;color:#1d1d1d;bottom:-.75rem;transition:all .3s linear}.input-control.modern input:focus~.icon{opacity:1;transition:all .3s linear}.input-control.modern.error input{border-bottom-color:#ce352c}.input-control.modern.error .informer,.input-control.modern.error .label{color:#ce352c}.input-control.modern.success input{border-bottom-color:#60a917}.input-control.modern.success .informer,.input-control.modern.success .label{color:#60a917}.input-control.modern.warning input{border-bottom-color:#e3c800}.input-control.modern.warning .informer,.input-control.modern.warning .label{color:#e3c800}.input-control.modern.info input{border-bottom-color:#1ba1e2}.input-control.modern.info .informer,.input-control.modern.info .label{color:#1ba1e2}.input-control.modern input:disabled{border-bottom-style:dotted;color:#BCBCBC}.input-control.checkbox,.input-control.radio{line-height:1.875rem;min-width:1rem;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.input-control.checkbox input[type=radio],.input-control.checkbox input[type=checkbox],.input-control.radio input[type=radio],.input-control.radio input[type=checkbox]{position:absolute;opacity:0;width:.0625rem;height:.0625rem}.input-control.checkbox .caption,.input-control.radio .caption{margin:0 .125rem;vertical-align:middle}.input-control.checkbox .check,.input-control.radio .check{width:1.625rem;height:1.625rem;background-color:#fff;border:1px solid #999;padding:0;position:relative;display:inline-block;vertical-align:middle}.input-control.checkbox.text-left .check,.input-control.radio.text-left .check{margin:0 0 0 .3125rem}.input-control.checkbox .check:focus,.input-control.radio .check:focus{border-color:#bcd9e2}.input-control.checkbox .check:before,.input-control.radio .check:before{position:absolute;vertical-align:middle;color:transparent;font-size:0;content:"";height:.3125rem;width:.565rem;background-color:transparent;border-left:.1875rem solid;border-bottom:.1875rem solid;border-color:transparent;left:50%;top:50%;margin-left:-.325rem;margin-top:-.365rem;display:block;-webkit-transform:rotate(-45deg);transform:rotate(-45deg);transition:all .2s linear}.input-control.checkbox input[type=radio]~.check:before,.input-control.radio input[type=radio]~.check:before{border-color:transparent}.input-control.checkbox input[type=radio]:checked~.check:before,.input-control.checkbox input[type=checkbox]:checked~.check:before,.input-control.radio input[type=radio]:checked~.check:before,.input-control.radio input[type=checkbox]:checked~.check:before{border-color:#555;transition:all .2s linear}.input-control.checkbox input[type=radio]:disabled~.caption,.input-control.checkbox input[type=checkbox]:disabled~.caption,.input-control.radio input[type=radio]:disabled~.caption,.input-control.radio input[type=checkbox]:disabled~.caption{color:#cacaca;cursor:default}.input-control.checkbox input[type=radio]:disabled~.check,.input-control.checkbox input[type=checkbox]:disabled~.check,.input-control.radio input[type=radio]:disabled~.check,.input-control.radio input[type=checkbox]:disabled~.check{border-color:#cacaca;cursor:default}.input-control.checkbox input[type=checkbox]:disabled:checked~.check:before,.input-control.radio input[type=checkbox]:disabled:checked~.check:before{border-color:#cacaca}.input-control.radio input[type=radio]:checked~.check:before,.input-control.radio input[type=radio]:disabled~.check:before{border-color:transparent}.input-control.checkbox input[type=radio]:disabled:checked~.check:before,.input-control.radio input[type=radio]:disabled:checked~.check:before{background-color:#cacaca}.input-control.checkbox input.indeterminate:checked~.check:before,.input-control.checkbox input[data-show=indeterminate]:checked~.check:before,.input-control.checkbox input[data-show=indeterminate]~.check:before,.input-control.checkbox input[type=checkbox]:indeterminate~.check:before,.input-control.radio input.indeterminate:checked~.check:before,.input-control.radio input[data-show=indeterminate]:checked~.check:before,.input-control.radio input[data-show=indeterminate]~.check:before,.input-control.radio input[type=checkbox]:indeterminate~.check:before{display:none}.input-control.checkbox input.indeterminate:checked~.check:after,.input-control.checkbox input[data-show=indeterminate]:checked~.check:after,.input-control.checkbox input[data-show=indeterminate]~.check:after,.input-control.checkbox input[type=checkbox]:indeterminate~.check:after,.input-control.radio input.indeterminate:checked~.check:after,.input-control.radio input[data-show=indeterminate]:checked~.check:after,.input-control.radio input[data-show=indeterminate]~.check:after,.input-control.radio input[type=checkbox]:indeterminate~.check:after{position:absolute;display:block;content:"";background-color:#1d1d1d;height:.875rem;width:.875rem;left:50%;top:50%;margin-left:-.4375rem;margin-top:-.4375rem}.input-control.checkbox input[data-show=indeterminate]:not(:checked)~.check:after,.input-control.radio input[data-show=indeterminate]:not(:checked)~.check:after{background-color:transparent}.input-control.checkbox input[data-show=indeterminate]:disabled~.check:after,.input-control.radio input[data-show=indeterminate]:disabled~.check:after{background-color:#cacaca}.input-control.radio .check{border:1px solid #999;border-radius:50%}.input-control.radio .check:before{position:absolute;display:block;content:"";background-color:#1d1d1d;height:.5624rem;width:.5624rem;left:50%;top:50%;margin-left:-.375rem;margin-top:-.375rem;-webkit-transform:rotate(0);transform:rotate(0);border-radius:50%}.input-control.radio input[type=radio]:not(:checked)~.check:before{background-color:transparent}.input-control.small-check .check{width:1rem;height:1rem}.input-control.small-check .check:before{width:6px;height:3px;margin-left:-4px;margin-top:-4px;border-width:2px}.input-control.small-check.radio .check:before{height:.375rem;width:.375rem;left:50%;top:50%;margin-left:-.25rem;margin-top:-.25rem}.input-control.small-check input.indeterminate:checked~.check:after,.input-control.small-check input[data-show=indeterminate]:checked~.check:after,.input-control.small-check input[data-show=indeterminate]~.check:after,.input-control.small-check input[type=checkbox]:indeterminate~.check:after{height:.375rem;width:.375rem;left:50%;top:50%;margin-left:-.1875rem;margin-top:-.1875rem}input[type=button],input[type=reset],input[type=submit]{padding:0 1rem;height:2.125rem;text-align:center;background-color:#fff;border:1px solid #d9d9d9;color:#262626;cursor:pointer;display:inline-block;outline:0;font-size:.875rem;line-height:100%;margin:.15625rem 0;position:relative;vertical-align:middle}input[type=button].default,input[type=reset].default,input[type=submit].default{background-color:#008287;color:#fff}input[type=button]:hover,input[type=reset]:hover,input[type=submit]:hover{border-color:#787878}input[type=button]:active,input[type=reset]:active,input[type=submit]:active{background:#eee;color:#262626;box-shadow:none}input[type=button]:focus,input[type=reset]:focus,input[type=submit]:focus{outline:0}input[type=button].disabled,input[type=button]:disabled,input[type=reset].disabled,input[type=reset]:disabled,input[type=submit].disabled,input[type=submit]:disabled{background-color:#eaeaea;color:#bebebe;cursor:default;border-color:transparent}input[type=button] *,input[type=button] :hover,input[type=reset] *,input[type=reset] :hover,input[type=submit] *,input[type=submit] :hover{color:inherit}input[type=button].rounded,input[type=reset].rounded,input[type=submit].rounded{border-radius:.325rem}input[type=button]>[class*=mif-],input[type=reset]>[class*=mif-],input[type=submit]>[class*=mif-]{vertical-align:middle}input[type=button] img,input[type=reset] img,input[type=submit] img{height:.875rem;vertical-align:middle;margin:0}input[type=button].loading-pulse,input[type=reset].loading-pulse,input[type=submit].loading-pulse{position:relative;padding:0 1.325rem}input[type=button].loading-pulse:before,input[type=reset].loading-pulse:before,input[type=submit].loading-pulse:before{position:absolute;content:"";left:0;top:50%;margin-top:-10px;width:20px;height:20px;background-color:#333;border-radius:100%;-webkit-animation:scaleout 1s infinite ease-in-out;animation:scaleout 1s infinite ease-in-out}input[type=button].loading-pulse.lighten:before,input[type=reset].loading-pulse.lighten:before,input[type=submit].loading-pulse.lighten:before{background-color:#fff}input[type=button].loading-cube,input[type=reset].loading-cube,input[type=submit].loading-cube{position:relative;padding:0 1.325rem}input[type=button].loading-cube:after,input[type=button].loading-cube:before,input[type=reset].loading-cube:after,input[type=reset].loading-cube:before,input[type=submit].loading-cube:after,input[type=submit].loading-cube:before{content:"";background-color:#333;width:5px;height:5px;position:absolute;top:50%;left:3px;margin-top:-8px;-webkit-animation:cubemove 1.8s infinite ease-in-out;animation:cubemove 1.8s infinite ease-in-out}input[type=button].dropdown-toggle.drop-marker-light:after,input[type=button].dropdown-toggle.drop-marker-light:before,input[type=button].loading-cube.lighten:after,input[type=button].loading-cube.lighten:before,input[type=reset].dropdown-toggle.drop-marker-light:after,input[type=reset].dropdown-toggle.drop-marker-light:before,input[type=reset].loading-cube.lighten:after,input[type=reset].loading-cube.lighten:before,input[type=submit].dropdown-toggle.drop-marker-light:after,input[type=submit].dropdown-toggle.drop-marker-light:before,input[type=submit].loading-cube.lighten:after,input[type=submit].loading-cube.lighten:before{background-color:#fff}input[type=button].loading-cube:after,input[type=reset].loading-cube:after,input[type=submit].loading-cube:after{-webkit-animation-delay:-.9s;animation-delay:-.9s}input[type=button].dropdown-toggle,input[type=reset].dropdown-toggle,input[type=submit].dropdown-toggle{padding-right:1.625rem}input[type=button].primary,input[type=reset].primary,input[type=submit].primary{background:#2086bf;color:#fff;border-color:#2086bf}input[type=button].primary:active,input[type=reset].primary:active,input[type=submit].primary:active{background:#1b6eae;color:#fff}input[type=button].success,input[type=reset].success,input[type=submit].success{background:#60a917;color:#fff;border-color:#60a917}input[type=button].success:active,input[type=reset].success:active,input[type=submit].success:active{background:#128023;color:#fff}input[type=button].alert,input[type=button].danger,input[type=reset].alert,input[type=reset].danger,input[type=submit].alert,input[type=submit].danger{background:#ce352c;color:#fff;border-color:#ce352c}input[type=button].alert:active,input[type=button].danger:active,input[type=reset].alert:active,input[type=reset].danger:active,input[type=submit].alert:active,input[type=submit].danger:active{background:#9a1616;color:#fff}input[type=button].info,input[type=reset].info,input[type=submit].info{background:#59cde2;color:#fff;border-color:#59cde2}input[type=button].info:active,input[type=reset].info:active,input[type=submit].info:active{background:#1ba1e2;color:#fff}input[type=button].warning,input[type=reset].warning,input[type=submit].warning{background:#fa6800;color:#fff;border-color:#fa6800}input[type=button].warning:active,input[type=reset].warning:active,input[type=submit].warning:active{background:#bf5a15;color:#fff}input[type=button].link,input[type=reset].link,input[type=submit].link{background:0 0;color:#2086bf;border-color:transparent;text-decoration:underline}input[type=button].link:active,input[type=button].link:hover,input[type=reset].link:active,input[type=reset].link:hover,input[type=submit].link:active,input[type=submit].link:hover{background:0 0;color:#114968;border-color:transparent}.switch,.switch-original{display:inline-block;margin:0 .625rem 0 0;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.switch input,.switch-original input{position:absolute;opacity:0;width:.0625rem;height:.0625rem}.switch .caption,.switch .check,.switch-original .caption,.switch-original .check{display:inline-block;vertical-align:middle;line-height:18px}.switch .check{width:36px;height:16px;background-color:#929292;border-radius:8px;overflow:visible;position:relative}.switch .check:before{position:absolute;display:block;content:"";width:22px;height:22px;z-index:2;margin-top:-4px;margin-left:-3px;border-radius:50%;background-color:#fff;box-shadow:0 2px 4px rgba(0,0,0,.35)}.switch input:not(:checked)~.check:before{background-color:#fff;transition:all .2s linear}.switch input:checked~.check{background-color:#008287}.switch input:checked~.check:before{-webkit-transform:translateX(22px);transform:translateX(22px);transition:all .2s linear}.switch input:disabled~.check{background-color:#D5D5D5}.switch input:disabled~.check:before{background-color:#BDBDBD}.switch-original .caption{margin:0 5px}.switch-original .check{position:relative;height:1.125rem;width:2.8125rem;outline:#a6a6a6 solid 2px;border:1px solid #fff;cursor:pointer;background:#A6A6A6;z-index:1;display:inline-block;vertical-align:middle}.switch-original .check:after{position:absolute;left:-1px;top:-1px;display:block;content:"";height:1rem;width:.5625rem;outline:#333 solid 2px;border:1px solid #333;cursor:pointer;background:#333;z-index:2;transition:all .2s linear}.switch-original input[type=checkbox]:focus~.check{outline:#999 dotted 1px}.switch-original input[type=checkbox]:checked~.check{background:#008287}.switch-original input[type=checkbox]:checked~.check:after{left:auto;-webkit-transform:translateX(2rem);transform:translateX(2rem);transition:all .2s linear}.switch-original input[type=checkbox]:disabled~.check{background-color:#e6e6e6;border-color:#fff}.switch-original input[type=checkbox]:disabled~.check:after{background-color:#8a8a8a;outline-color:#8a8a8a;border-color:#8a8a8a}.input-control.range input[type=range]{border:0;box-sizing:border-box;line-height:1;background-color:transparent;cursor:pointer;-webkit-appearance:none;width:100%}.input-control.range input[type=range]:focus{outline:0}.input-control.range input[type=range]::-ms-track{width:100%;cursor:pointer}.input-control.range input[type=range]::-webkit-slider-thumb{-webkit-appearance:none;width:1em;height:1em;margin-top:0;background-color:#555;border:2px solid #555;cursor:pointer}.input-control.range input[type=range]::-moz-range-thumb{width:1em;height:1em;background-color:#555;border:2px solid #555;cursor:pointer;border-radius:0;margin:0}.input-control.range input[type=range]::-ms-thumb{width:1em;height:1em;margin-top:0;background-color:#555;border:2px solid #555;cursor:pointer}.input-control.range input[type=range]:hover::-webkit-slider-thumb{border-color:#373737;background-color:#1d1d1d}.input-control.range input[type=range]:hover::-moz-range-thumb{border-color:#373737;background-color:#1d1d1d}.input-control.range input[type=range]:hover::-ms-thumb{border-color:#373737;background-color:#1d1d1d}.input-control.range input[type=range]:active::-webkit-slider-thumb{border-color:#373737}.input-control.range input[type=range]:active::-moz-range-thumb{border-color:#373737}.input-control.range input[type=range]:active::-ms-thumb{border-color:#373737}.input-control.range input[type=range]::-webkit-slider-runnable-track{width:100%;cursor:pointer;height:100%;background-color:#00aba9;transition:background .3s ease}.input-control.range input[type=range]::-moz-range-track{width:100%;cursor:pointer;background-color:#00aba9;transition:background .3s ease;height:1.25em}.input-control.range input[type=range]::-ms-track{background:#00aba9;border-color:transparent;color:transparent;height:1.25em}.input-control.range input[type=range]::-ms-fill-lower{background:#00aba9}.input-control.range input[type=range]::-ms-fill-upper{display:none}.input-control.range.big-input{height:2.125rem}.input-control.range.big-input input[type=range]{padding:0}.input-control.range.big-input input[type=range]::-moz-range-track{height:1.2em}.progress,.progress-bar{display:block;position:relative;width:100%;height:auto;margin:.625rem 0;background:#eee;overflow:hidden}.progress-bar:after,.progress-bar:before,.progress:after,.progress:before{display:table;content:""}.progress-bar:after,.progress:after{clear:both}.progress .bar,.progress-bar .bar{position:relative;display:block;float:left;width:0;background-color:#1ba1e2;z-index:1;text-align:center;height:.625rem;line-height:.625rem;color:#fff}.progress-bar.small>.bar,.progress.small>.bar{height:.3125rem}.progress-bar.large>.bar,.progress.large>.bar{height:1rem}.progress-bar.gradient-bar .bar,.progress.gradient-bar .bar{background:linear-gradient(to right,#4cd964,#5ac8fa,#007aff,#34aadc,#5856d6,#ff2d55)}.progress-bar.ani .bar,.progress.ani .bar{-webkit-animation:ani-bg-stripes 2s linear infinite;animation:ani-bg-stripes 2s linear infinite}.popover{display:block;min-width:12.5rem;height:auto;position:relative;background-color:#eee;padding:1.25rem}.popover *{color:inherit}.popover.popover-shadow{box-shadow:0 0 10px 0 rgba(0,0,0,.4)}.popover:before{content:"";width:.625rem;height:.625rem;display:block;position:absolute;background-color:inherit;left:-.3125rem;top:50%;margin-top:-.3125rem;-webkit-transform:rotate(45deg);transform:rotate(45deg)}.popover.marker-on-top:before{top:0;left:50%;margin-left:-.3125rem}.popover.marker-on-right:before{top:50%;margin-top:-.3125rem;left:100%;margin-left:-.3125rem}.popover.marker-on-bottom:before{top:100%;margin-left:-.3125rem;left:50%;margin-top:-.3125rem}.overlay{position:fixed;left:0;top:0;right:0;bottom:0;background-color:rgba(255,255,255,.5);z-index:1049}.window,.window-caption{background-color:#fff;position:relative}.overlay.transparent{background-color:rgba(255,255,255,0)}.window{display:block;height:auto;width:100%;box-shadow:0 0 5px 0 rgba(0,0,0,.3)}.window-caption{padding:.4375rem .3125rem;border-bottom:1px #e9e9e9 solid;border-top:0;cursor:default}.window-caption .window-caption-title{font-size:.875rem;font-style:normal;font-weight:700}.window-caption .window-caption-icon{margin-left:.3125rem}.window-caption .window-caption-icon *{height:1rem;width:1rem}.window-caption .window-caption-icon~.window-caption-title{padding-left:.3125rem}.window-caption .btn-close,.window-caption .btn-max,.window-caption .btn-min{position:absolute;height:1.5rem;width:1.5rem;min-height:1.5rem;text-align:center;vertical-align:middle;font-size:1rem;font-weight:400;padding:0 0 .625rem;z-index:3;outline:0;cursor:pointer;display:block;background-color:#fff;color:#777;top:.25rem;right:.25rem}.window-caption .btn-close:hover,.window-caption .btn-max:hover,.window-caption .btn-min:hover{background-color:#cde6f7;color:#2a8dd4}.window-caption .btn-close:hover:after,.window-caption .btn-max:hover:after,.window-caption .btn-min:hover:after{border-color:#2a8dd4}.window-caption .btn-close:active,.window-caption .btn-max:active,.window-caption .btn-min:active{background-color:#92c0e0;color:#fff}.window-caption .btn-close:after,.window-caption .btn-max:after,.window-caption .btn-min:after{border-color:#777;content:'\D7';position:absolute;left:50%;top:-2px;margin-left:-.25em}.window-caption .btn-max:after,.window-caption .btn-min:after{display:block;position:absolute;width:.625rem;height:.625rem;border:0 solid #000;border-bottom-width:2px;content:' ';bottom:.375rem;left:50%;margin-left:-.375rem;top:auto}.window-caption .btn-max:after{height:.375rem;border:1px solid #000;border-top-width:2px}.window-caption .btn-max{right:1.8125rem}.window-caption .btn-min{right:3.375rem}.window-caption .btn-close:after{margin-top:.1875rem;margin-left:-.3125rem}.window-content{position:relative;width:100%;height:auto;display:block;padding:.25rem}.window.success{box-shadow:0 0 25px 0 rgba(0,128,0,.7)}.window.success .window-caption{background-color:#60a917;color:#fff}.window.error{box-shadow:0 0 25px 0 rgba(128,0,0,.7)}.window.error .window-caption{background-color:#ce352c;color:#fff}.window.warning{box-shadow:0 0 25px 0 rgba(255,165,0,.7)}.window.warning .window-caption{background-color:#fa6800;color:#fff}.numeric-list,.simple-list{list-style:none;counter-reset:li;padding-left:0;margin-left:.625rem;color:#262626}.numeric-list li ol,.numeric-list li ul,.simple-list li ol,.simple-list li ul{list-style:none;padding-left:1.5625rem}.numeric-list li,.simple-list li{position:relative;padding:4px 12px;list-style:none;color:inherit}.numeric-list li:before,.simple-list li:before{position:absolute;top:50%;margin-top:-.8rem;left:-.625rem;color:#59cde2;font-size:2rem;vertical-align:middle;width:1.25rem;height:1.25rem;line-height:1.25rem}.numeric-list ul,.simple-list ul{margin:4px .5em 0}.simple-list>li:before{content:"\2022"}.simple-list ul li:before{content:"\00B7"}.numeric-list>li{padding:4px 12px 4px 18px}.numeric-list>li:before{content:counter(li);counter-increment:li;font-size:.8rem;color:#fff;background-color:#59cde2;border-radius:50%;text-align:center;margin-top:-.65rem}.numeric-list.square-bullet>li:before,.numeric-list.square-marker>li:before{border-radius:0}.numeric-list.large-bullet li,.simple-list.large-bullet li{margin:6px 0;padding-left:2rem}.numeric-list.large-bullet li:before,.simple-list.large-bullet li:before{line-height:2rem;width:2rem;height:2rem;margin-top:-1rem}.simple-list.large-bullet li{padding-left:1rem}.simple-list.large-bullet li:before{margin-top:-1.3rem;font-size:3rem}.simple-list.dark-bullet li:before{color:#1d1d1d}.simple-list.alert-bullet li:before{color:#ce352c}.simple-list.info-bullet li:before{color:#1ba1e2}.simple-list.success-bullet li:before{color:#60a917}.simple-list.warning-bullet li:before{color:#e3c800}.simple-list.red-bullet li:before{color:#ce352c}.simple-list.blue-bullet li:before{color:#1ba1e2}.simple-list.green-bullet li:before{color:#60a917}.simple-list.yellow-bullet li:before{color:#e3c800}.numeric-list.dark-bullet li:before{background-color:#1d1d1d}.numeric-list.alert-bullet li:before{background-color:#ce352c}.numeric-list.info-bullet li:before{background-color:#1ba1e2}.numeric-list.success-bullet li:before{background-color:#60a917}.numeric-list.warning-bullet li:before{background-color:#e3c800}.numeric-list.red-bullet li:before{background-color:#ce352c}.numeric-list.blue-bullet li:before{background-color:#1ba1e2}.numeric-list.green-bullet li:before{background-color:#60a917}.numeric-list.yellow-bullet li:before{background-color:#e3c800}.step-list{margin:0 0 0 2rem;padding:0;list-style-type:none;counter-reset:li}.step-list>li{border-left:1px #ccc solid;position:relative;padding:0 .625rem;margin:.625rem;vertical-align:top}.image-container,.sidebar li a .icon,.sidebar2 li a,.wizard .actions button,.wizard .actions button img,.wizard .actions button>[class*=mif-]{vertical-align:middle}.dataTable.bordered tbody tr td:first-child,.dataTable.bordered thead tr:first-child td:first-child,.dataTable.bordered thead tr:first-child th:first-child,.hint.left:before,.hint.top:before,.hint2.left:before,.hint2.top:before{border-left:none}.step-list>li:before{position:absolute;content:counter(li);counter-increment:li;font-size:2rem;color:#999;left:0;top:.3125rem;margin-left:-1.5rem}.image-container{display:inline-block;position:relative;max-width:100%;background-color:transparent}.image-container .frame{background-color:#fff;position:relative;width:100%;height:100%}.image-container img{display:block;width:100%;height:100%}.image-container .image-overlay{position:absolute;top:0;bottom:0;left:0;right:0;opacity:0;overflow:hidden;font-size:.875rem;line-height:1rem;padding:1em 1.5em;background-color:rgba(27,161,226,.7);color:#fff;text-align:center;border-radius:inherit;transition:all .65s ease}.image-container .image-overlay:hover{opacity:1}.image-container .image-overlay:hover:after,.image-container .image-overlay:hover:before{opacity:1;-webkit-transform:scale(1);transform:scale(1)}.image-container .image-overlay:after,.image-container .image-overlay:before{display:block;position:absolute;content:"";border:1px solid rgba(255,255,255,.7);left:1em;right:1em;opacity:0;border-radius:inherit;-webkit-transform:scale(1.5);transform:scale(1.5);transition:all .65s ease}.image-container .image-overlay:after{border-left:none;border-right:none;bottom:1em;top:1em}.image-container .image-overlay:before{border-top:none;border-bottom:none;bottom:1em;top:1em}.image-container.diamond{overflow:hidden}.image-container.diamond .frame{-webkit-transform:rotate(45deg);transform:rotate(45deg);overflow:hidden}.image-container.diamond .frame .image-replacer,.image-container.diamond .frame img{-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}.image-container.rounded img{border-radius:.3125rem}.image-container.bordered .frame{border:1px solid #eee;padding:.5rem}.image-container.polaroid .frame{border:1px solid #eee;padding:.5rem .5rem 2rem}.image-container.handing{margin-top:20px}.image-container.handing .frame{border:1px solid #eee;position:relative;padding:.5rem}.image-container.handing .frame:after{content:"";position:absolute;width:.625rem;height:.625rem;background-color:#647687;border-radius:50%;top:-20%;left:50%;margin-left:-.3125rem;z-index:3;box-shadow:0 2px 4px rgba(0,0,0,.35)}.image-container.handing:after,.image-container.handing:before{top:0;width:50%;height:50%;background-color:transparent;z-index:2}.image-container.handing.image-format-hd .frame:after{top:-25%}.image-container.handing.image-format-square .frame:after{top:-15%}.image-container.handing:after{position:absolute;content:"";border-top:1px solid #eee;-webkit-transform:rotate(-16deg);transform:rotate(-16deg);left:0;-webkit-transform-origin:top left;transform-origin:top left}.image-container.handing:before{position:absolute;content:"";border-top:1px solid #eee;-webkit-transform:rotate(16deg);transform:rotate(16deg);right:0;-webkit-transform-origin:top right;transform-origin:top right}.image-container.handing.ani{-webkit-transform-origin:50% -25px;transform-origin:50% -25px;-webkit-animation:swinging 10s ease-in-out 0s infinite;animation:swinging 10s ease-in-out 0s infinite}.image-container.handing.ani-hover:hover{-webkit-transform-origin:50% -25px;transform-origin:50% -25px;-webkit-animation:swinging 5s ease-in-out 0s;animation:swinging 5s ease-in-out 0s}.ani-hover-spin:hover,.ani-spin{-webkit-animation:ani-spin 1.5s linear infinite;animation:ani-spin 1.5s linear infinite}.ani-hover-spin.ani-fast:hover,.ani-spin.ani-fast{-webkit-animation:ani-spin .7s linear infinite;animation:ani-spin .7s linear infinite}.ani-hover-spin.ani-slow:hover,.ani-spin.ani-slow{-webkit-animation:ani-spin 2.2s linear infinite;animation:ani-spin 2.2s linear infinite}.ani-hover-pulse:hover,.ani-pulse{-webkit-animation:ani-pulse 1.7s infinite;animation:ani-pulse 1.7s infinite}.ani-hover-pulse.ani-fast:hover,.ani-pulse.ani-fast{-webkit-animation:ani-pulse 1s infinite;animation:ani-pulse 1s infinite}.ani-hover-pulse.ani-slow:hover,.ani-pulse.ani-slow{-webkit-animation:ani-pulse 3s infinite;animation:ani-pulse 3s infinite}.ani-hover-spanner:hover,.ani-spanner{transform-origin-x:90%;transform-origin-y:35%;transform-origin-z:initial;-webkit-animation:ani-wrench 2.5s ease infinite;animation:ani-wrench 2.5s ease infinite}.ani-hover-spanner.ani-fast:hover,.ani-spanner.ani-fast{-webkit-animation:ani-wrench 1.2s ease infinite;animation:ani-wrench 1.2s ease infinite}.ani-hover-spanner.ani-slow:hover,.ani-spanner.ani-slow{-webkit-animation:ani-wrench 3.7s ease infinite;animation:ani-wrench 3.7s ease infinite}.ani-hover-ring:hover,.ani-ring{transform-origin-x:50%;transform-origin-y:0;transform-origin-z:initial;-webkit-animation:ani-ring 2s ease infinite;animation:ani-ring 2s ease infinite}.ani-hover-ring.ani-fast:hover,.ani-ring.ani-fast{-webkit-animation:ani-ring 1s ease infinite;animation:ani-ring 1s ease infinite}.ani-hover-ring.ani-slow:hover,.ani-ring.ani-slow{-webkit-animation:ani-ring 3s ease infinite;animation:ani-ring 3s ease infinite}.ani-hover-vertical:hover,.ani-vertical{-webkit-animation:ani-vertical 2s ease infinite;animation:ani-vertical 2s ease infinite}.ani-vertical.ani-fast,.ani-vertical.ani-fast:hover{-webkit-animation:ani-vertical 1s ease infinite;animation:ani-vertical 1s ease infinite}.ani-hover-vertical.ani-slow:hover,.ani-vertical.ani-slow{-webkit-animation:ani-vertical 4s ease infinite;animation:ani-vertical 4s ease infinite}.ani-horizontal,.ani-hover-horizontal:hover{-webkit-animation:ani-horizontal 2s ease infinite;animation:ani-horizontal 2s ease infinite}.ani-horizontal.ani-fast,.ani-horizontal.ani-fast:hover{-webkit-animation:ani-horizontal 1s ease infinite;animation:ani-horizontal 1s ease infinite}.ani-horizontal.ani-slow,.ani-horizontal.ani-slow:hover{-webkit-animation:ani-horizontal 3s ease infinite;animation:ani-horizontal 3s ease infinite}.ani-flash,.ani-hover-flash:hover{-webkit-animation:ani-flash 2s ease infinite;animation:ani-flash 2s ease infinite}.ani-flash.ani-fast,.ani-hover-flash.ani-fast:hover{-webkit-animation:ani-flash 1s ease infinite;animation:ani-flash 1s ease infinite}.ani-flash.ani-slow,.ani-hover-flash.ani-slow:hover{-webkit-animation:ani-flash 3s ease infinite;animation:ani-flash 3s ease infinite}.ani-bounce,.ani-hover-bounce:hover{-webkit-animation:ani-bounce 2s ease infinite;animation:ani-bounce 2s ease infinite}.ani-bounce.ani-fast,.ani-hover-bounce.ani-fast:hover{-webkit-animation:ani-bounce 1s ease infinite;animation:ani-bounce 1s ease infinite}.ani-bounce.ani-slow,.ani-hover-bounce.ani-slow:hover{-webkit-animation:ani-bounce 3s ease infinite;animation:ani-bounce 3s ease infinite}.ani-float,.ani-hover-float:hover{-webkit-animation:ani-float 2s linear infinite;animation:ani-float 2s linear infinite}.ani-float.ani-fast,.ani-hover-float.ani-fast:hover{-webkit-animation:ani-float 1s linear infinite;animation:ani-float 1s linear infinite}.ani-float.ani-slow,.ani-hover-float.ani-slow:hover{-webkit-animation:ani-float 3s linear infinite;animation:ani-float 3s linear infinite}.ani-heartbeat,.ani-hover-heartbeat:hover{-webkit-animation:ani-heartbeat 2s linear infinite;animation:ani-heartbeat 2s linear infinite}.ani-heartbeat.ani-fast,.ani-hover-heartbeat.ani-fast:hover{-webkit-animation:ani-heartbeat 1s linear infinite;animation:ani-heartbeat 1s linear infinite}.ani-heartbeat.ani-slow,.ani-hover-heartbeat.ani-slow:hover{-webkit-animation:ani-heartbeat 3s linear infinite;animation:ani-heartbeat 3s linear infinite}.ani-hover-shake:hover,.ani-shake{-webkit-animation:ani-wrench 2.5s ease infinite;animation:ani-wrench 2.5s ease infinite}.ani-hover-shake.ani-fast:hover,.ani-shake.ani-fast{-webkit-animation:ani-wrench 1.2s ease infinite;animation:ani-wrench 1.2s ease infinite}.ani-hover-shake.ani-slow:hover,.ani-shake.ani-slow{-webkit-animation:ani-wrench 3.7s ease infinite;animation:ani-wrench 3.7s ease infinite}.ani-hover-shuttle:hover,.ani-shuttle{-webkit-animation:ani-shuttle 2s linear infinite;animation:ani-shuttle 2s linear infinite}.ani-hover-shuttle.ani-fast:hover,.ani-shuttle.ani-fast{-webkit-animation:ani-shuttle 1s linear infinite;animation:ani-shuttle 1s linear infinite}.ani-hover-shuttle.ani-slow:hover,.ani-shuttle.ani-slow{-webkit-animation:ani-shuttle 3s linear infinite;animation:ani-shuttle 3s linear infinite}.ani-hover-pass:hover,.ani-pass{-webkit-animation:ani-pass 2s linear infinite;animation:ani-pass 2s linear infinite}.ani-hover-pass.ani-fast:hover,.ani-pass.ani-fast{-webkit-animation:ani-pass 1s linear infinite;animation:ani-pass 1s linear infinite}.ani-hover-pass.ani-slow:hover,.ani-pass.ani-slow{-webkit-animation:ani-pass 3s linear infinite;animation:ani-pass 3s linear infinite}.ani-hover-ripple:hover,.ani-ripple{-webkit-animation:ani-ripple 2s infinite linear;animation:ani-ripple 2s infinite linear}.ani-hover-ripple.ani-fast:hover,.ani-ripple.ani-fast{-webkit-animation:ani-ripple 1s infinite linear;animation:ani-ripple 1s infinite linear}.ani-hover-ripple.ani-slow:hover,.ani-ripple.ani-slow{-webkit-animation:ani-ripple 3s infinite linear;animation:ani-ripple 3s infinite linear}@-webkit-keyframes swinging{0%,100%,50%{-webkit-transform:rotate(0);transform:rotate(0)}5%{-webkit-transform:rotate(10deg);transform:rotate(10deg)}10%{-webkit-transform:rotate(-9deg);transform:rotate(-9deg)}15%{-webkit-transform:rotate(8deg);transform:rotate(8deg)}20%{-webkit-transform:rotate(-7deg);transform:rotate(-7deg)}25%{-webkit-transform:rotate(6deg);transform:rotate(6deg)}30%{-webkit-transform:rotate(-5deg);transform:rotate(-5deg)}35%{-webkit-transform:rotate(4deg);transform:rotate(4deg)}40%{-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}45%{-webkit-transform:rotate(2deg);transform:rotate(2deg)}}@keyframes swinging{0%,100%,50%{-webkit-transform:rotate(0);transform:rotate(0)}5%{-webkit-transform:rotate(10deg);transform:rotate(10deg)}10%{-webkit-transform:rotate(-9deg);transform:rotate(-9deg)}15%{-webkit-transform:rotate(8deg);transform:rotate(8deg)}20%{-webkit-transform:rotate(-7deg);transform:rotate(-7deg)}25%{-webkit-transform:rotate(6deg);transform:rotate(6deg)}30%{-webkit-transform:rotate(-5deg);transform:rotate(-5deg)}35%{-webkit-transform:rotate(4deg);transform:rotate(4deg)}40%{-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}45%{-webkit-transform:rotate(2deg);transform:rotate(2deg)}}@-webkit-keyframes scaleout{0%{-webkit-transform:scale(0);transform:scale(0)}100%{-webkit-transform:scale(1);transform:scale(1);opacity:0}}@keyframes scaleout{0%{-webkit-transform:scale(0);transform:scale(0)}100%{-webkit-transform:scale(1);transform:scale(1);opacity:0}}@-webkit-keyframes cubemove{25%{-webkit-transform:translateX(10px)rotate(-90deg);transform:translateX(10px)rotate(-90deg)}50%{-webkit-transform:translateX(10px)translateY(10px)rotate(-179deg);transform:translateX(10px)translateY(10px)rotate(-179deg)}50.1%{-webkit-transform:translateX(10px)translateY(10px)rotate(-180deg);transform:translateX(10px)translateY(10px)rotate(-180deg)}75%{-webkit-transform:translateX(0)translateY(10px)rotate(-270deg);transform:translateX(0)translateY(10px)rotate(-270deg)}100%{-webkit-transform:rotate(-360deg);transform:rotate(-360deg)}}@keyframes cubemove{25%{-webkit-transform:translateX(10px)rotate(-90deg);transform:translateX(10px)rotate(-90deg)}50%{-webkit-transform:translateX(10px)translateY(10px)rotate(-179deg);transform:translateX(10px)translateY(10px)rotate(-179deg)}50.1%{-webkit-transform:translateX(10px)translateY(10px)rotate(-180deg);transform:translateX(10px)translateY(10px)rotate(-180deg)}75%{-webkit-transform:translateX(0)translateY(10px)rotate(-270deg);transform:translateX(0)translateY(10px)rotate(-270deg)}100%{-webkit-transform:rotate(-360deg);transform:rotate(-360deg)}}@-webkit-keyframes orbit{0%{opacity:1;-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out;-webkit-transform:rotate(225deg);transform:rotate(225deg)}7%{-webkit-transform:rotate(345deg);transform:rotate(345deg);-webkit-animation-timing-function:linear;animation-timing-function:linear}35%{-webkit-transform:rotate(495deg);transform:rotate(495deg);-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}42%{-webkit-transform:rotate(690deg);transform:rotate(690deg);-webkit-animation-timing-function:linear;animation-timing-function:linear}70%{opacity:1;-webkit-transform:rotate(835deg);transform:rotate(835deg);-webkit-animation-timing-function:linear;animation-timing-function:linear}76%{opacity:1}77%{-webkit-transform:rotate(955deg);transform:rotate(955deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}100%,78%{-webkit-transform:rotate(955deg);transform:rotate(955deg);opacity:0}}@keyframes orbit{0%{opacity:1;-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out;-webkit-transform:rotate(225deg);transform:rotate(225deg)}7%{-webkit-transform:rotate(345deg);transform:rotate(345deg);-webkit-animation-timing-function:linear;animation-timing-function:linear}35%{-webkit-transform:rotate(495deg);transform:rotate(495deg);-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}42%{-webkit-transform:rotate(690deg);transform:rotate(690deg);-webkit-animation-timing-function:linear;animation-timing-function:linear}70%{opacity:1;-webkit-transform:rotate(835deg);transform:rotate(835deg);-webkit-animation-timing-function:linear;animation-timing-function:linear}76%{opacity:1}77%{-webkit-transform:rotate(955deg);transform:rotate(955deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}100%,78%{-webkit-transform:rotate(955deg);transform:rotate(955deg);opacity:0}}@-webkit-keyframes metro-slide{0%{left:-50%}100%{left:150%}}@keyframes metro-slide{0%{left:-50%}100%{left:150%}}@-webkit-keyframes metro-opacity{0%{opacity:0}50%{opacity:.5}100%{opacity:1}}@keyframes metro-opacity{0%{opacity:0}50%{opacity:.5}100%{opacity:1}}@-webkit-keyframes ani-spin{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes ani-spin{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@-webkit-keyframes ani-pulse{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes ani-pulse{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@-webkit-keyframes ani-wrench{0%{-webkit-transform:rotate(-12deg);transform:rotate(-12deg)}8%{-webkit-transform:rotate(12deg);transform:rotate(12deg)}10%,28%,30%,48%,50%,68%{-webkit-transform:rotate(24deg);transform:rotate(24deg)}18%,20%,38%,40%,58%,60%{-webkit-transform:rotate(-24deg);transform:rotate(-24deg)}75%{-webkit-transform:rotate(0);transform:rotate(0)}}@keyframes ani-wrench{0%{-webkit-transform:rotate(-12deg);transform:rotate(-12deg)}8%{-webkit-transform:rotate(12deg);transform:rotate(12deg)}10%,28%,30%,48%,50%,68%{-webkit-transform:rotate(24deg);transform:rotate(24deg)}18%,20%,38%,40%,58%,60%{-webkit-transform:rotate(-24deg);transform:rotate(-24deg)}75%{-webkit-transform:rotate(0);transform:rotate(0)}}@-webkit-keyframes ani-ring{0%{-webkit-transform:rotate(-15deg);transform:rotate(-15deg)}2%{-webkit-transform:rotate(15deg);transform:rotate(15deg)}12%,4%{-webkit-transform:rotate(-18deg);transform:rotate(-18deg)}14%,6%{-webkit-transform:rotate(18deg);transform:rotate(18deg)}8%{-webkit-transform:rotate(-22deg);transform:rotate(-22deg)}10%{-webkit-transform:rotate(22deg);transform:rotate(22deg)}16%{-webkit-transform:rotate(-12deg);transform:rotate(-12deg)}18%{-webkit-transform:rotate(12deg);transform:rotate(12deg)}20%{-webkit-transform:rotate(0);transform:rotate(0)}}@keyframes ani-ring{0%{-webkit-transform:rotate(-15deg);transform:rotate(-15deg)}2%{-webkit-transform:rotate(15deg);transform:rotate(15deg)}12%,4%{-webkit-transform:rotate(-18deg);transform:rotate(-18deg)}14%,6%{-webkit-transform:rotate(18deg);transform:rotate(18deg)}8%{-webkit-transform:rotate(-22deg);transform:rotate(-22deg)}10%{-webkit-transform:rotate(22deg);transform:rotate(22deg)}16%{-webkit-transform:rotate(-12deg);transform:rotate(-12deg)}18%{-webkit-transform:rotate(12deg);transform:rotate(12deg)}20%{-webkit-transform:rotate(0);transform:rotate(0)}}@-webkit-keyframes ani-vertical{0%,16%,8%{-webkit-transform:translate(0,-3px);transform:translate(0,-3px)}12%,20%,4%{-webkit-transform:translate(0,3px);transform:translate(0,3px)}22%{-webkit-transform:translate(0,0);transform:translate(0,0)}}@keyframes ani-vertical{0%,16%,8%{-webkit-transform:translate(0,-3px);transform:translate(0,-3px)}12%,20%,4%{-webkit-transform:translate(0,3px);transform:translate(0,3px)}22%{-webkit-transform:translate(0,0);transform:translate(0,0)}}@-webkit-keyframes ani-horizontal{0%,12%,24%,36%{-webkit-transform:translate(0,0);transform:translate(0,0)}18%,30%,6%{-webkit-transform:translate(5px,0);transform:translate(5px,0)}}@keyframes ani-horizontal{0%,12%,24%,36%{-webkit-transform:translate(0,0);transform:translate(0,0)}18%,30%,6%{-webkit-transform:translate(5px,0);transform:translate(5px,0)}}@-webkit-keyframes ani-flash{0%,100%,50%{opacity:1}25%,75%{opacity:0}}@keyframes ani-flash{0%,100%,50%{opacity:1}25%,75%{opacity:0}}@-webkit-keyframes ani-bounce{0%,10%,20%,50%,80%{-webkit-transform:translateY(0);transform:translateY(0)}40%,60%{-webkit-transform:translateY(-15px);transform:translateY(-15px)}}@keyframes ani-bounce{0%,10%,20%,50%,80%{-webkit-transform:translateY(0);transform:translateY(0)}40%,60%{-webkit-transform:translateY(-15px);transform:translateY(-15px)}}@-webkit-keyframes ani-float{0%,100%{-webkit-transform:translateY(0);transform:translateY(0)}50%{-webkit-transform:translateY(-6px);transform:translateY(-6px)}}@keyframes ani-float{0%,100%{-webkit-transform:translateY(0);transform:translateY(0)}50%{-webkit-transform:translateY(-6px);transform:translateY(-6px)}}@-webkit-keyframes ani-heartbeat{0%,100%{-webkit-transform:scale(1.1);transform:scale(1.1)}50%{-webkit-transform:scale(.8);transform:scale(.8)}}@keyframes ani-heartbeat{0%,100%{-webkit-transform:scale(1.1);transform:scale(1.1)}50%{-webkit-transform:scale(.8);transform:scale(.8)}}@-webkit-keyframes ani-shuttle{0%{-webkit-transform:scale(1);transform:scale(1)}10%,20%{-webkit-transform:scale(.9)rotate(-8deg);transform:scale(.9)rotate(-8deg)}30%,50%,70%{-webkit-transform:scale(1.3)rotate(8deg);transform:scale(1.3)rotate(8deg)}40%,60%{-webkit-transform:scale(1.3)rotate(-8deg);transform:scale(1.3)rotate(-8deg)}80%{-webkit-transform:scale(1)rotate(0);transform:scale(1)rotate(0)}}@keyframes ani-shuttle{0%{-webkit-transform:scale(1);transform:scale(1)}10%,20%{-webkit-transform:scale(.9)rotate(-8deg);transform:scale(.9)rotate(-8deg)}30%,50%,70%{-webkit-transform:scale(1.3)rotate(8deg);transform:scale(1.3)rotate(8deg)}40%,60%{-webkit-transform:scale(1.3)rotate(-8deg);transform:scale(1.3)rotate(-8deg)}80%{-webkit-transform:scale(1)rotate(0);transform:scale(1)rotate(0)}}@-webkit-keyframes ani-pass{0%{-webkit-transform:translateX(-50%);transform:translateX(-50%);opacity:0}50%{-webkit-transform:translateX(0);transform:translateX(0);opacity:1}100%{-webkit-transform:translateX(50%);transform:translateX(50%);opacity:0}}@keyframes ani-pass{0%{-webkit-transform:translateX(-50%);transform:translateX(-50%);opacity:0}50%{-webkit-transform:translateX(0);transform:translateX(0);opacity:1}100%{-webkit-transform:translateX(50%);transform:translateX(50%);opacity:0}}@-webkit-keyframes ani-ripple{0%{opacity:.6}50%{-webkit-transform:scale(1.8);transform:scale(1.8);opacity:0}100%{opacity:0}}@keyframes ani-ripple{0%{opacity:.6}50%{-webkit-transform:scale(1.8);transform:scale(1.8);opacity:0}100%{opacity:0}}@-webkit-keyframes ani-shrink{0%,90%{-webkit-transform:scale(1);transform:scale(1)}100%{-webkit-transform:scale(.5);transform:scale(.5)}}@keyframes ani-shrink{0%,90%{-webkit-transform:scale(1);transform:scale(1)}100%{-webkit-transform:scale(.5);transform:scale(.5)}}@-webkit-keyframes ani-drop{0%{-webkit-transform:translateY(-50px);transform:translateY(-50px)}100%,25%{-webkit-transform:translate(0);transform:translate(0)}}@keyframes ani-drop{0%{-webkit-transform:translateY(-50px);transform:translateY(-50px)}100%,25%{-webkit-transform:translate(0);transform:translate(0)}}@-webkit-keyframes ani-drop2{0%{-webkit-transform:translateY(-50px);transform:translateY(-50px)}100%,50%{-webkit-transform:translate(0);transform:translate(0)}}@keyframes ani-drop2{0%{-webkit-transform:translateY(-50px);transform:translateY(-50px)}100%,50%{-webkit-transform:translate(0);transform:translate(0)}}@-webkit-keyframes ani-drop3{0%{-webkit-transform:translateY(-50px);transform:translateY(-50px)}100%,75%{-webkit-transform:translate(0);transform:translate(0)}}@keyframes ani-drop3{0%{-webkit-transform:translateY(-50px);transform:translateY(-50px)}100%,75%{-webkit-transform:translate(0);transform:translate(0)}}@-webkit-keyframes ani-pre-spin{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes ani-pre-spin{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@-webkit-keyframes ani-bg-stripes{from{background-position:40px 0}to{background-position:0 0}}@keyframes ani-bg-stripes{from{background-position:40px 0}to{background-position:0 0}}.calendar{min-width:13.75rem;border:1px solid #eee;font-size:.75rem;padding:.3125rem;background-color:#fff}.calendar .day,.calendar .month,.calendar .other-day,.calendar .year{border:1px solid #bcd9e2}.calendar .calendar-grid{margin:0;padding:0}.calendar .calendar-row{margin:0 0 .3125rem;width:100%}.calendar .calendar-row:after,.calendar .calendar-row:before{display:table;content:""}.calendar .calendar-row:last-child{margin-bottom:0}.calendar .calendar-cell{width:12.46201429%;margin:0 0 0 2.12765%;display:block;float:left}.calendar .calendar-cell:first-child{margin-left:0}.calendar .calendar-cell.sel-month{width:41.64134286%}.calendar .calendar-cell.sel-year{width:48.936175%}.calendar .calendar-cell.month-cell,.calendar .calendar-cell.sel-minus,.calendar .calendar-cell.sel-plus,.calendar .calendar-cell.year-cell{width:23.4042625%}.calendar .calendar-actions .button{margin:.15625rem}.calendar .day-of-week{padding:.3125rem;cursor:default}.calendar a{display:block;padding:.3125rem 0}.calendar a:hover{background-color:#75c7ee;color:#fff;border-radius:inherit}.calendar .calendar-header{background-color:#59cde2;color:#fff}.calendar .calendar-header a{color:#fff;padding:.325rem}.calendar .calendar-header a:hover{background-color:#47b4e9;color:#fff}.calendar .calendar-actions:after,.calendar .calendar-actions:before{display:table;content:""}.calendar .today a{background-color:#60a917;color:#fff}.calendar .day{text-align:center}.calendar .day a{display:block;position:relative;text-align:center}.calendar .month a,.calendar .year a{padding-top:1.3125rem;padding-bottom:1.3125rem}.calendar .empty{cursor:default}.calendar .other-day{display:block;text-align:center;color:#999;padding:.325rem;background-color:#eee}.calendar .exclude,.calendar .exclude a{background-color:#ce352c}.calendar .exclude a{cursor:not-allowed;color:#fff}.calendar .stored,.calendar .stored a{background-color:#f472d0}.calendar .stored a{cursor:pointer;color:#fff}.calendar .selected,.calendar .selected a{background-color:#59cde2}.calendar .selected a{color:#fff}.calendar.rounded .calendar-header,.calendar.rounded .calendar-header a:hover,.calendar.rounded .day,.calendar.rounded .exclude a,.calendar.rounded .month,.calendar.rounded .other-day,.calendar.rounded .selected,.calendar.rounded .selected a,.calendar.rounded .today,.calendar.rounded .today a,.calendar.rounded .year,.calendar.rounded button{border-radius:.3125rem}.calendar.no-border .calendar-header,.calendar.no-border .day,.calendar.no-border .month,.calendar.no-border .other-day,.calendar.no-border .today,.calendar.no-border .today a,.calendar.no-border .year{border:0}.calendar-dropdown{border:0;box-shadow:0 0 5px 0 rgba(0,0,0,.3)}.stepper{margin:10px 0;width:100%}.stepper:after,.stepper:before{display:table;content:""}.stepper>ul{counter-reset:li;border-top:1px #1d1d1d dotted;position:relative;padding:0;margin:30px 0;width:100%;display:block}.stepper>ul li{list-style:none;float:left;width:2em;height:2em;margin-top:-1em;position:absolute;left:0;background:#666;cursor:pointer;font-size:.875rem}.sidebar,.sidebar2,.tabcontrol .tabs,.tabcontrol2 .tabs{list-style:none inside}.stepper>ul li:before{content:counter(li);counter-increment:li;position:absolute;box-sizing:border-box;padding:.3em 10px;color:#fff;font-weight:700;font-family:"Helvetica Neue",Arial,sans-serif;font-size:.9em;text-align:center}.stepper>ul li:hover{background-color:#999}.stepper>ul li.complete,.stepper>ul li.current{transition:all .2s ease}.stepper>ul li.current{background-color:#1ba1e2}.stepper>ul li.current:hover{background-color:#0cf}.stepper>ul li.complete{background-color:#60a917}.stepper>ul li.complete:hover{background-color:#7ad61d}.stepper.cycle li{border-radius:50%}.stepper.diamond li{-webkit-transform:rotate(45deg);transform:rotate(45deg)}.stepper.diamond li:before{-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}.wizard{position:relative}.wizard .steps{margin:10px 0;padding:20px;border:1px solid #eee;position:relative}.wizard .steps .step{position:relative;width:100%;height:100%;display:none}.wizard .steps .step:first-child{display:block}.wizard .actions .group-right{float:right}.sidebar2,.wizard .actions .group-left{float:left}.wizard .actions button{padding:0 1rem;height:2.125rem;text-align:center;background-color:#fff;border:1px solid #d9d9d9;color:#262626;cursor:pointer;display:inline-block;outline:0;font-size:.875rem;line-height:100%;margin:.15625rem 2px .15625rem 0;position:relative}.wizard .actions button.default{background-color:#008287;color:#fff}.wizard .actions button:hover{border-color:#787878}.wizard .actions button:active{background:#eee;color:#262626;box-shadow:none}.wizard .actions button:focus{outline:0}.wizard .actions button.disabled,.wizard .actions button:disabled{background-color:#eaeaea;color:#bebebe;cursor:default;border-color:transparent}.wizard .actions button *,.wizard .actions button :hover{color:inherit}.wizard .actions button.rounded{border-radius:.325rem}.wizard .actions button img{height:.875rem;margin:0}.wizard .actions button.loading-pulse{position:relative;padding:0 1.325rem}.wizard .actions button.loading-pulse:before{position:absolute;content:"";left:0;top:50%;margin-top:-10px;width:20px;height:20px;background-color:#333;border-radius:100%;-webkit-animation:scaleout 1s infinite ease-in-out;animation:scaleout 1s infinite ease-in-out}.wizard .actions button.loading-pulse.lighten:before{background-color:#fff}.wizard .actions button.loading-cube{position:relative;padding:0 1.325rem}.wizard .actions button.loading-cube:after,.wizard .actions button.loading-cube:before{content:"";background-color:#333;width:5px;height:5px;position:absolute;top:50%;left:3px;margin-top:-8px;-webkit-animation:cubemove 1.8s infinite ease-in-out;animation:cubemove 1.8s infinite ease-in-out}.wizard .actions button.dropdown-toggle.drop-marker-light:after,.wizard .actions button.dropdown-toggle.drop-marker-light:before,.wizard .actions button.loading-cube.lighten:after,.wizard .actions button.loading-cube.lighten:before{background-color:#fff}.wizard .actions button.loading-cube:after{-webkit-animation-delay:-.9s;animation-delay:-.9s}.wizard .actions button.dropdown-toggle{padding-right:1.625rem}.wizard .actions button.primary{background:#2086bf;color:#fff;border-color:#2086bf}.wizard .actions button.primary:active{background:#1b6eae;color:#fff}.wizard .actions button.success{background:#60a917;color:#fff;border-color:#60a917}.wizard .actions button.success:active{background:#128023;color:#fff}.wizard .actions button.alert,.wizard .actions button.danger{background:#ce352c;color:#fff;border-color:#ce352c}.wizard .actions button.alert:active,.wizard .actions button.danger:active{background:#9a1616;color:#fff}.wizard .actions button.info{background:#59cde2;color:#fff;border-color:#59cde2}.wizard .actions button.info:active{background:#1ba1e2;color:#fff}.wizard .actions button.warning{background:#fa6800;color:#fff;border-color:#fa6800}.wizard .actions button.warning:active{background:#bf5a15;color:#fff}.wizard .actions button.link{background:0 0;color:#2086bf;border-color:transparent;text-decoration:underline}.wizard .actions button.link:active,.wizard .actions button.link:hover{background:0 0;color:#114968;border-color:transparent}.wizard .actions button:last-child{margin-right:0}.wizard .actions button.btn-finish{background-color:#60a917;color:#fff}.wizard .actions button:disabled{background-color:#6f6f6f}.wizard2{counter-reset:div;position:relative;width:100%}.wizard2:after,.wizard2:before{display:table;content:""}.wizard2 .step{width:auto;display:block;float:left;position:relative;z-index:1;padding:0 0 3rem}.wizard2 .step:before{content:counter(div);counter-increment:div;position:absolute;font-size:.8rem;bottom:20px;width:24px;text-align:center}.wizard2 .step.active{border:0}.wizard2 .step.active:before{visibility:hidden}.wizard2 .step.prev{border-left:24px solid #eee;border-right:1px solid #e6e6e6;width:0}.wizard2 .step.prev:before{left:0;margin-left:-24px;color:#1d1d1d}.wizard2 .step.next{border-left:1px solid #e6e6e6;border-right:24px solid #1ba1e2;width:0}.wizard2 .step.next:before{left:100%;color:#fff}.wizard2 .step.next+.next{border-color:#1891cb}.wizard2 .step.next+.next+.next{border-color:#1681b4}.wizard2 .step.next+.next+.next+.next{border-color:#13709e}.wizard2 .step.next+.next+.next+.next+.next{border-color:#106087}.wizard2 .step.next+.next+.next+.next+.next+.next{border-color:#0b4059}.wizard2 .step.next+.next+.next+.next+.next+.next+.next{border-color:#082f43}.wizard2 .step.next+.next+.next+.next+.next+.next+.next+.next{border-color:#051f2c}.wizard2 .step.next+.next+.next+.next+.next+.next+.next+.next+.next{border-color:#030f15}.sidebar2 li:hover>.dropdown-toggle:before,.sidebar2.dark .dropdown-toggle:before{border-color:#fff}.wizard2 .step-content{width:auto;overflow:hidden;padding:.625rem}.wizard2 .step.next .step-content,.wizard2 .step.prev .step-content{width:0;padding:0}.wizard2 .action-bar{padding:0 .625rem;position:absolute;bottom:10px;text-align:right;z-index:2}.wizard2 .action-bar:after,.wizard2 .action-bar:before{display:table;content:""}.wizard2 .action-bar .button{margin:0 .125rem;opacity:.6}.wizard2 .action-bar .button:hover{opacity:1}.countdown{display:inline-block;font-weight:700;font-size:1rem;margin:.1em 0 1.2em}.countdown .part{display:inline-block;position:relative}.countdown .part.days:after,.countdown .part.hours:after,.countdown .part.minutes:after,.countdown .part.seconds:after{position:absolute;content:attr(data-day-text);text-align:center;top:100%;left:0;width:100%;font-size:.6em;color:inherit}.countdown .part.disabled .digit{opacity:.3;box-shadow:none}.dialog,.keypad.shadow{box-shadow:0 0 5px 0 rgba(0,0,0,.3)}.countdown .digit,.countdown .divider{display:inline-block;padding:.3125em .625em;background-color:#1ba1e2;color:#fff;cursor:default;box-shadow:0 0 5px 0 rgba(0,0,0,.3);transition:all .5s ease;margin-left:4px}.countdown .divider{padding:.125em .25em;color:#1d1d1d;background-color:transparent;box-shadow:none}.sidebar,.sidebar-container{color:#fff;background-color:#71b1d1}.countdown.tick .divider{opacity:0}.countdown.labels-top{margin:1.2em 0 .1em}.countdown.labels-top .part.days:after,.countdown.labels-top .part.hours:after,.countdown.labels-top .part.minutes:after,.countdown.labels-top .part.seconds:after{top:0;left:0;margin-top:-1.5em}.countdown.rounded .part .digit{border-radius:.5em}.countdown .digit.scaleIn{transition:all .5s ease;-webkit-transform:scale(1.1);transform:scale(1.1)}.sidebar-container{position:absolute;top:0;left:0;bottom:0;overflow-x:hidden;overflow-y:scroll}.sidebar,.sidebar li,.sidebar li a{position:relative}.sidebar{width:100%;padding:0;margin:0;transition:all .2s ease}.sidebar li,.sidebar li a{background-color:inherit;color:inherit}.sidebar li{display:block;height:52px}.sidebar li a{display:block;padding:.625rem 1rem .625rem 3.75rem;width:100%;height:100%;line-height:.875rem}.sidebar li a .icon{width:28px;height:28px;font-size:28px;line-height:28px;text-align:center;position:absolute;left:.625rem;top:.625rem}.sidebar li a .counter,.sidebar li a .title{display:block;margin:0;white-space:nowrap}.sidebar li a .title{font-size:.6875rem;font-weight:700;text-transform:uppercase}.sidebar li a .counter{font-size:.7rem;font-weight:400}.sidebar li:hover{background-color:#7cc1de}.sidebar li.active{background-color:#fff;color:#323232}.sidebar.compact{width:52px;transition:all .2s ease}.sidebar.compact a{padding-right:0;padding-left:0;width:52px}.sidebar.compact .title{display:none}.sidebar.compact .counter{position:absolute;top:0;right:4px}.sidebar2 li,.sidebar2 li a{float:none;position:relative}.sidebar2{text-align:left;background:#fff;max-width:15.625rem;margin:0;padding:0;position:relative;border:1px solid #eee;width:100%}.sidebar2 li{display:block}.sidebar2 li:after,.sidebar2 li:before{display:table;content:""}.sidebar2 li a{font-size:.875rem;display:block;padding:.75rem 2rem .75rem 2.5rem;text-decoration:none;border:none}.sidebar2 li a .icon,.sidebar2 li a img{position:absolute;left:.875rem;top:50%;margin-top:-.5625rem;color:#262626;max-height:1.125rem;font-size:1.125rem;display:inline-block;margin-right:.3125rem;vertical-align:middle;text-align:center}.sidebar2 li.active>a{background-color:#59cde2;color:#fff;font-weight:700}.sidebar2 li:hover{text-decoration:none;background:#59cde2}.sidebar2 .divider,.sidebar2 .divider:hover{background-color:#f2f2f2}.sidebar2 li:hover .icon,.sidebar2 li:hover>a{color:#fff}.sidebar2 li a[data-hotkey]{padding-right:3.2rem}.sidebar2 li a[data-hotkey]:after{content:attr(data-hotkey);position:absolute;right:1.2rem;width:auto;font-size:.8em}.sidebar2 .d-menu,.sidebar2 li.stick{position:relative}.sidebar2 .divider{padding:0;height:1px;margin:0 1px;overflow:hidden}.sidebar2.subdown .d-menu{min-width:0;position:relative;width:100%;left:0;right:0;top:100%;box-shadow:none}.sidebar2 .item-block{display:block;padding:.625rem;background-color:#eee}.sidebar2 .menu-title{background-color:#f6f7f8;font-size:12px;line-height:14px;padding:4px 8px;border:0;color:#646464}.sidebar2 .menu-title:first-child{margin:0;border-top-width:0}.sidebar2 .menu-title:first-child:hover{border-top-width:0}.sidebar2 li,.sidebar2 li:not(.title)+li.title{border-top:1px #eee solid}.sidebar2 .menu-title:hover{background-color:#f6f7f8;cursor:default;border:0}.sidebar2 .dropdown-toggle:before{margin-top:-2px}.sidebar2.subdown .dropdown-toggle:before{-webkit-transform:rotate(-45deg);transform:rotate(-45deg);margin-left:-1.25rem}.sidebar2.subdown .dropdown-toggle.active-toggle:before{-webkit-transform:rotate(135deg);transform:rotate(135deg)}.sidebar2 li.disabled a{color:#eee}.sidebar2 li.disabled:hover{background-color:inherit;cursor:default;border:0;border-top:1px #eee solid}.sidebar2 li.disabled:hover a{cursor:inherit}.sidebar2.context li a{font-size:.75rem;padding:.3125rem 2rem .3125rem 2.5rem}.sidebar2.context li a .icon{margin-top:-.4375rem;font-size:.825rem;color:inherit}.sidebar2.no-min-size li a{min-width:0}.sidebar2.full-size li a{min-width:0;width:100%}.sidebar2 .d-menu{min-width:0;width:100%;left:0;right:0;top:100%;box-shadow:none}.tabcontrol.tabs-bottom .tabs li.disabled,.tabcontrol.tabs-bottom .tabs li:hover,.tabcontrol2.tabs-bottom .tabs li.disabled,.tabcontrol2.tabs-bottom .tabs li:hover{top:0}.sidebar2 .dropdown-toggle:before{-webkit-transform:rotate(-45deg);transform:rotate(-45deg);margin-left:-1.25rem;transition:all .3s ease}.sidebar2 li{cursor:default}.sidebar2 li.stick:before{content:"";position:absolute;width:7px;height:44px;left:-7px;text-indent:-9999px;border-top-left-radius:5px;border-bottom-left-radius:5px;background-color:inherit}.tabcontrol .tabs li.non-visible-tabs.dropdown-toggle,.tabcontrol2 .tabs li.non-visible-tabs.dropdown-toggle{height:100%}.sidebar2 li.disabled{background-color:inherit}.sidebar2 li a{background-color:#fff;color:#323232;white-space:normal;min-width:0}.sidebar2 li a .icon{color:inherit}.sidebar2 li.title{padding:20px 20px 10px;font-size:24px;border:0}.sidebar2 li.title:hover{background-color:inherit}.sidebar2 li.active{background-color:#71b1d1;border:none}.accordion>.frame>.heading,.hint,.hint2,.hint2:before,.hint:before,.tabcontrol2 .frames,.tabcontrol2 .tabs li.active a{border:1px solid #eee}.sidebar2 li.active a{background-color:#71b1d1;color:#fff}.sidebar2 li.active a .icon{color:inherit}.sidebar2 li:hover a{background-color:#7cc1de}.sidebar2 li.disabled:hover a{background-color:inherit}.sidebar2 li li:not(:hover){color:#1d1d1d}.sidebar2 li li:not(:hover) a{background-color:#fff}.sidebar2 .dropdown-toggle.active-toggle:before{-webkit-transform:rotate(135deg);transform:rotate(135deg);transition:all .3s ease}.sidebar2.dark li{border-top:1px #5c5c5c solid}.sidebar2.dark li a,.sidebar2.dark li.title{background-color:#3D3D3D;color:#fff}.sidebar2.dark li a:hover{background-color:#262626;color:#fff}.sidebar2.dark li.disabled,.sidebar2.dark li.disabled:hover,.sidebar2.dark li:not(.title)+li.title{border-top-color:#5c5c5c}.sidebar2.dark li.disabled:hover a{background-color:#3D3D3D}.sidebar2.dark li.disabled a{color:#999}.sidebar2.dark li.active a{background-color:#ce352c}.sidebar2.dark .d-menu li a{background-color:#3D3D3D;color:#fff}.sidebar2.dark .d-menu li a:hover{background-color:#262626;color:#fff}.tabcontrol{position:relative;width:100%}.tabcontrol .tabs{width:100%;margin:0;padding:0;border-bottom:2px #1ba1e2 solid;white-space:nowrap;overflow:visible}.tabcontrol .tabs:after,.tabcontrol .tabs:before{display:table;content:""}.tabcontrol .tabs li{display:block;float:left;position:relative;white-space:nowrap}.tabcontrol .tabs li a{display:block;float:left;padding:8px 24px;color:#1d1d1d;font-size:.6875rem;font-weight:700;text-transform:uppercase;position:relative;white-space:nowrap}.tabcontrol .tabs li:hover a{background-color:#eee}.tabcontrol .tabs li.active a{background-color:#1ba1e2;color:#fff}.tabcontrol .tabs li.disabled a{background: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)#eee;background-size:40px 40px;color:#999;cursor:default}.tabcontrol .tabs li.non-visible-tabs{display:block;float:right}.tabcontrol .tabs li.non-visible-tabs:empty{display:none}.tabcontrol.tabs-bottom .tabs{border-bottom:none;border-top:2px #1ba1e2 solid}.tabcontrol .frames{width:100%;position:relative}.tabcontrol .frames .frame{display:block;position:relative;width:100%;padding:20px;background-color:#999}.tabcontrol2{position:relative;width:100%}.tabcontrol2 .tabs{width:100%;margin:0;padding:0;white-space:nowrap;overflow:visible}.tabcontrol2 .tabs:after,.tabcontrol2 .tabs:before{display:table;content:""}.tabcontrol2 .tabs li{display:block;float:left;position:relative;white-space:nowrap}.tabcontrol2 .tabs li a{display:block;float:left;padding:8px 24px;color:#1d1d1d;font-size:.6875rem;font-weight:700;text-transform:uppercase;position:relative;white-space:nowrap}.tabcontrol2 .tabs li.disabled a{background: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)#eee;background-size:40px 40px;color:#999;cursor:default}.tabcontrol2 .tabs li.non-visible-tabs{display:block;float:right}.tabcontrol2 .tabs li.non-visible-tabs:empty{display:none}.tabcontrol2.tabs-bottom .tabs{border-bottom:none}.tabcontrol2 .frames{width:100%;position:relative}.tabcontrol2 .frames .frame{display:block;position:relative;width:100%;padding:20px}.tabcontrol2 .tabs{border-bottom:0;vertical-align:bottom;z-index:2}.tabcontrol2 .tabs li{padding-top:2px;overflow:visible;margin:0 2px}.tabcontrol2 .tabs li:after{content:"";position:absolute;left:0;top:100%;width:100%;background-color:#fff;height:2px;z-index:3}.tabcontrol2 .tabs li:not(.active):after{background-color:#eee;height:1px}.tabcontrol2 .tabs li:first-child{margin-left:10px}.tabcontrol2 .tabs li a{background-color:#eee;padding-top:.3125rem;text-shadow:none}.tabcontrol2 .tabs li.active{padding-top:0;padding-bottom:0}.tabcontrol2 .tabs li.active a{background-color:#fff;border-top:2px #ce352c solid;border-bottom:0;color:#1ba1e2}.tabcontrol2 .tabs li.active:hover a{background-color:inherit}.tabcontrol2 .tabs li:hover a{background-color:#e1e1e1}.tabcontrol2.tabs-bottom .tabs{border-top:0}.tabcontrol2.tabs-bottom .tabs li{padding:0}.tabcontrol2.tabs-bottom .tabs li:after{top:-1px;background-color:#fff}.tabcontrol2.tabs-bottom .tabs li.active{padding-bottom:0}.tabcontrol2.tabs-bottom .tabs li.active a{border:1px solid #eee;border-bottom:2px #ce352c solid;border-top:0}.tabcontrol2.tabs-bottom .tabs li:not(.active){margin-bottom:0}.tabcontrol2.tabs-bottom .tabs li:not(.active):after{background-color:#eee}.tabcontrol2 .frames{z-index:1}.tabcontrol2 .frames .frame{background-color:#fff}.accordion>.frame{margin-top:1px}.accordion>.frame:first-child{margin-top:0}.accordion>.frame>.heading{display:block;padding:8px 16px 8px 20px;background-color:#f6f6f6;cursor:pointer;font-size:.6875rem;text-transform:uppercase;font-weight:700;position:relative;overflow:hidden;z-index:2;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;transition:all .3s ease}.accordion>.frame>.heading:before{position:absolute;display:block;left:4px;top:6px;content:'';width:0;height:0;border-left:6px solid transparent;border-top:6px solid transparent;border-bottom:6px solid #000;-webkit-transform:rotate(-45deg);transform:rotate(-45deg);transition:all .3s ease}.accordion>.frame>.heading:hover{background-color:#eee}.accordion>.frame>.heading .icon{position:absolute;right:0;top:0;font-size:3rem;width:3rem;max-height:3rem;opacity:.6;color:#999}.accordion>.frame.active>.heading{background-color:#1ba1e2;border-color:#1ba1e2;color:#fff;box-shadow:-1px 6px 6px -6px rgba(0,0,0,.35);text-shadow:2px 2px 4px rgba(0,0,0,.4);transition:all .3s ease}.accordion>.frame.active>.heading .icon{color:#fff}.accordion>.frame.active>.heading:before{left:8px;border-bottom-color:#fff;transition:all .3s ease;-webkit-transform:rotate(0);transform:rotate(0);-webkit-transform-origin:50% 50%;transform-origin:50% 50%}.slider .buffer,.slider .complete{width:auto;transition:background .3s ease}.accordion>.frame.active>.content{display:block}.accordion>.frame>.content{padding:.625rem;display:none;background-color:#fff;z-index:1}.accordion>.frame.disabled>.heading{cursor:default;background: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)#fff;background-size:40px 40px}.accordion.large-heading>.frame>.heading{font-size:2rem;line-height:1.1;font-weight:300;padding-left:32px;text-shadow:none}.accordion.large-heading>.frame>.heading:before{top:10px;border-left:12px solid transparent;border-top:12px solid transparent;border-bottom:12px solid #000}.accordion.large-heading>.frame.active>.heading:before{border-bottom-color:#fff}.carousel{display:block;width:100%;position:relative;min-height:100px;overflow:hidden}.carousel .slide{top:0;left:0;position:absolute;display:block;width:100%;height:100%;min-height:100%}.carousel .slide:after,.carousel .slide:before{display:table;content:""}.carousel .carousel-bullets,.carousel [class*=carousel-switch]{position:absolute;display:block;z-index:999;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.carousel .carousel-bullets{left:0;right:0;bottom:.625rem;text-align:center}.carousel .carousel-bullets .carousel-bullet{display:inline-block;float:none;width:.625rem;height:.625rem;background-color:#ababab;box-shadow:none;border-radius:50%;margin-right:.625rem;cursor:pointer;border:1px solid #fff}.carousel .carousel-bullets .carousel-bullet:last-child{margin-right:0}.carousel .carousel-bullets .carousel-bullet.bullet-on{background-color:#59cde2}.carousel.square-bullets .carousel-bullet{border-radius:0}.carousel .carousel-switch-next,.carousel .carousel-switch-prev{width:auto;line-height:4rem;height:4rem;text-decoration:none;margin-top:-2rem;top:50%;font-size:4rem;font-weight:300;color:#eee;cursor:pointer;vertical-align:middle;padding:0}.carousel .carousel-switch-next:hover,.carousel .carousel-switch-prev:hover{color:#fff;text-shadow:2px 2px 4px rgba(0,0,0,.4)}.carousel .carousel-switch-next img,.carousel .carousel-switch-prev img{max-width:64px;max-height:64px}.carousel .carousel-switch-next{right:0;left:auto}.carousel .carousel-switch-prev{left:0;right:auto}.panel{display:block;position:relative;background-color:#fff}.panel>.content,.panel>.heading{display:block;position:relative;color:#1d1d1d}.panel>.heading{padding:.625rem 0;color:#fff;background-color:#1ba1e2;cursor:default;vertical-align:middle;z-index:2;height:2.625rem;box-shadow:-1px 6px 6px -6px rgba(0,0,0,.35);font:500 1.125rem/1.1 "Segoe UI","Open Sans",sans-serif,serif;-ms-user-select:none;user-select:none}.panel>.heading,.tile{-moz-user-select:none;-webkit-user-select:none}.panel.collapsible>.heading,.rating,.rating .star,.slider .marker,.tile,.tile-big,.tile-large,.tile-small,.tile-super,.tile-wide,.treeview li{cursor:pointer}.panel>.heading>.title{margin-left:.625rem}.panel>.heading>.icon+.title{margin-left:3.625rem}.panel>.heading>.icon{position:absolute;background-color:#1b6eae;top:0;left:0;bottom:0;vertical-align:middle;height:2.625rem;width:2.625rem;text-align:center;padding:.625rem}.panel>.content{background-color:#e8f1f4;z-index:1;font-size:.875rem}.panel.collapsible>.heading:before{content:"\2212";display:block;position:absolute;top:50%;margin-top:-1.3rem;right:.625rem;color:inherit;vertical-align:middle;font-size:2rem}.panel.collapsed>.heading:before{content:"\002b"}.panel.collapsed>.content{display:none}.panel.alert>.heading,.panel.danger>.heading,.panel.error>.heading{background-color:#ce352c}.panel.warning>.heading{background-color:#fa6800}.panel.success>.heading{background-color:#60a917}.rating{display:inline-block}.rating:after,.rating:before{display:table;content:""}.rating .star{display:block;float:left;color:#555;font-size:20px;z-index:1;position:relative;width:20px;height:24px;vertical-align:middle;line-height:22px}.rating .star:after,.rating .star:before{position:absolute;content:'\2605';display:block;z-index:2;top:0;left:0;vertical-align:middle}.rating .star.on{color:gold}.rating .star.on.half{color:#555}.rating .star.on.half:after{color:gold}.rating .star.half:after{z-index:3;width:8px;overflow:hidden}.rating.poor .star.on{color:#ce352c}.rating.poor .star.on.half{color:#555}.rating.poor .star.on.half:after{color:#ce352c}.rating.regular .star.on{color:gold}.rating.regular .star.on.half{color:#555}.rating.regular .star.on.half:after{color:gold}.rating.good .star.on{color:#60a917}.rating.good .star.on.half{color:#555}.rating.good .star.on.half:after{color:#60a917}.rating:not(.static) .star:hover,.rating:not(.static) .star:hover.half,.rating:not(.static) .star:hover.half:after,.rating:not(.static) .star:hover.on.half,.rating:not(.static) .star:hover.on.half:after,.rating:not(.static):hover>.star,.rating:not(.static):hover>.star.half,.rating:not(.static):hover>.star.half:after,.rating:not(.static):hover>.star.on.half,.rating:not(.static):hover>.star.on.half:after,.rating:not(.static):hover>.star:after,.rating:not(.static):hover>.star:after.half,.rating:not(.static):hover>.star:after.half:after,.rating:not(.static):hover>.star:after.on.half,.rating:not(.static):hover>.star:after.on.half:after{color:gold}.rating:not(.static) .star:hover~.star,.rating:not(.static) .star:hover~.star.half,.rating:not(.static) .star:hover~.star.half:after,.rating:not(.static) .star:hover~.star.on.half,.rating:not(.static) .star:hover~.star.on.half:after,.rating:not(.static) .star:hover~.star:after,.rating:not(.static) .star:hover~.star:after.half,.rating:not(.static) .star:hover~.star:after.half:after,.rating:not(.static) .star:hover~.star:after.on.half,.rating:not(.static) .star:hover~.star:after.on.half:after{color:gray}.rating.small .star{width:14px;height:16px;font-size:14px;line-height:14px}.rating.small .star.half:after{width:6px}.rating.large .star{width:28px;height:30px;font-size:32px;line-height:24px}.rating.large .star.half:after{width:13px}.rating .score{display:block;font-size:.8rem}.rating.small .score{font-size:.6rem}.rating.large .score{font-size:1rem}.slider{height:2.125rem;line-height:1;width:auto;position:relative}.slider .marker{height:1rem;width:1rem;position:absolute;top:50%;margin-top:-.5rem;left:0;background-color:#1d1d1d;z-index:2}.slider .marker:active,.slider .marker:focus,.slider .markerhover{border:2px solid #ce352c}.slider .complete,.slider .slider-backside{height:.5rem;background:#999;width:100%;line-height:2.125rem;top:50%;margin-top:-.25rem;position:absolute}.slider .complete{background-color:#00aba9;z-index:2;left:0}.slider .buffer{height:4px;background-color:#fff;z-index:1;position:absolute;top:50%;margin-top:-2px;left:0}.slider .slider-hint:before,.slider.hint-bottom .slider-hint{top:100%;margin-top:-.125rem}.slider .slider-hint{min-width:1.8rem;width:auto;height:auto;position:absolute;z-index:3;border:1px solid #ccc;padding:.25rem;top:-1.2rem;text-align:center;font-size:.625rem;display:none;background:#fffcc0}.slider .slider-hint:before{border:1px solid #ccc;border-left:0;border-top:0;content:"";width:.25rem;height:.25rem;display:block;position:absolute;background-color:inherit;margin-left:-.15625rem;left:50%;-webkit-transform:rotate(45deg);transform:rotate(45deg)}.slider.hint-bottom .slider-hint:before{top:-.0625rem;-webkit-transform:rotate(-135deg);transform:rotate(-135deg)}.slider.permanent-hint>.slider-hint{display:block}.slider:active .complete,.slider:active+.marker:active .complete,.slider:hover .complete{background-color:#45fffd}.tile,.tile-big,.tile-large,.tile-small,.tile-square,.tile-super,.tile-wide{background-color:#eee}.slider.place-left{margin-right:20px}.slider.place-right{margin-left:20px}.slider.ani .complete{-webkit-animation:ani-bg-stripes 2s linear infinite;animation:ani-bg-stripes 2s linear infinite}.slider.vertical{min-height:100px;width:2.125rem;display:inline-block}.slider.vertical .complete,.slider.vertical .slider-backside{position:absolute;height:100%;width:.5rem;bottom:0;left:50%;margin-left:-.25rem;top:auto}.slider.vertical .marker{left:50%;top:auto;margin-left:-.5rem}.slider.vertical .buffer{position:absolute;height:auto;width:6px;bottom:0;left:50%;margin-left:-3px;top:auto}.slider.vertical .slider-hint{left:100%;margin-top:0}.slider.vertical .slider-hint:before{height:.25rem;width:.25rem;-webkit-transform:rotate(135deg);transform:rotate(135deg);left:-1px;top:50%;margin-top:-.125rem;margin-left:-.135rem}.slider.vertical.hint-left .slider-hint{left:-100%;margin-left:.25rem}.slider.vertical.hint-left .slider-hint:before{left:100%;-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}.slider.cycle-marker .marker{border-radius:50%}.tile-area{min-width:100%;height:100%;position:relative;padding:120px 80px 0 0;overflow:hidden}.tile-area:after,.tile-area:before{display:table;content:""}.tile-area .tile-area-title{position:fixed;top:20px;left:80px;font-weight:300;font-size:42px;line-height:1.1}.tile-group{margin-left:80px;min-width:80px;width:auto;float:left;display:block;padding-top:40px;position:relative}.tile-group.one{width:160px}.tile-group.double,.tile-group.two{width:320px}.tile-group.three,.tile-group.triple{width:480px}.tile-group.four,.tile-group.quadro{width:640px}.tile-group.five{width:800px}.tile-group.six{width:960px}.tile-group.seven{width:1120px}.tile-group .tile-group-title{color:#fff;font-size:18px;line-height:20px;position:absolute;top:10px;left:0}.tile-content,.tile-content .live-slide{width:100%;left:0;overflow:hidden;top:0}.tile-container{width:100%;height:auto;display:block;margin:0;padding:0}.tile-container:after,.tile-container:before{display:table;content:""}.tile,.tile-big,.tile-large,.tile-small,.tile-square,.tile-super,.tile-wide{display:block}.tile{width:150px;height:150px;float:left;margin:5px;box-shadow:inset 0 0 1px #FFC;position:relative;user-select:none}.tile,.tile-square{-ms-user-select:none}.tile:hover{outline:#999 solid 3px}.tile:active{outline:0}.tile.no-outline{outline-color:transparent}.tile.small-tile{width:70px;height:70px}.tile.wide-tile{width:310px;height:150px}.tile.wide-tile-v{height:310px;width:150px}.tile.large-tile{width:310px;height:310px}.tile.big-tile{width:470px;height:470px}.tile.super-tile{width:630px;height:630px}.tile-square{width:150px;height:150px;float:left;margin:5px;box-shadow:inset 0 0 1px #FFC;cursor:pointer;position:relative;-moz-user-select:none;user-select:none;overflow:visible}.tile-small,.tile-square{-webkit-user-select:none}.tile-square:hover{outline:#999 solid 3px}.tile-square:active{outline:0}.tile-square.no-outline{outline-color:transparent}.tile-square.small-tile{width:70px;height:70px}.tile-square.wide-tile{width:310px;height:150px}.tile-square.wide-tile-v{height:310px;width:150px}.tile-square.large-tile{width:310px;height:310px}.tile-square.big-tile{width:470px;height:470px}.tile-square.super-tile{width:630px;height:630px}.tile-small,.tile-small.small-tile{width:70px;height:70px}.tile-square .tile-badge{position:absolute;bottom:0;right:.625rem;padding:.25rem .625rem;z-index:999}.tile-square .tile-label{position:absolute;bottom:0;left:.625rem;padding:.425rem .25rem;z-index:999}.tile-small{float:left;margin:5px;box-shadow:inset 0 0 1px #FFC;position:relative;-moz-user-select:none;-ms-user-select:none;user-select:none}.tile-small:hover{outline:#999 solid 3px}.tile-small:active{outline:0}.tile-small.no-outline{outline-color:transparent}.tile-small.wide-tile{width:310px;height:150px}.tile-small.wide-tile-v{height:310px;width:150px}.tile-small.large-tile{width:310px;height:310px}.tile-small.big-tile{width:470px;height:470px}.tile-small.super-tile{width:630px;height:630px}.tile-small .tile-badge{position:absolute;bottom:0;right:.625rem;padding:.25rem .625rem;z-index:999}.tile-small .tile-label{position:absolute;bottom:0;left:.625rem;padding:.425rem .25rem;z-index:999}.tile-wide{float:left;margin:5px;box-shadow:inset 0 0 1px #FFC;position:relative;-moz-user-select:none;-ms-user-select:none;user-select:none;width:310px;height:150px}.tile-large,.tile-wide{-webkit-user-select:none}.tile-wide:hover{outline:#999 solid 3px}.tile-wide:active{outline:0}.tile-wide.no-outline{outline-color:transparent}.tile-wide.small-tile{width:70px;height:70px}.tile-wide.wide-tile{width:310px;height:150px}.tile-wide.wide-tile-v{height:310px;width:150px}.tile-wide.large-tile{width:310px;height:310px}.tile-wide.big-tile{width:470px;height:470px}.tile-wide.super-tile{width:630px;height:630px}.tile-wide .tile-badge{position:absolute;bottom:0;right:.625rem;padding:.25rem .625rem;z-index:999}.tile-wide .tile-label{position:absolute;bottom:0;left:.625rem;padding:.425rem .25rem;z-index:999}.tile-large{float:left;margin:5px;box-shadow:inset 0 0 1px #FFC;position:relative;-moz-user-select:none;user-select:none;width:310px;height:310px}.tile-big,.tile-large,.tile-super{-ms-user-select:none}.tile-large:hover{outline:#999 solid 3px}.tile-large:active{outline:0}.tile-large.no-outline{outline-color:transparent}.tile-large.small-tile{width:70px;height:70px}.tile-large.wide-tile{width:310px;height:150px}.tile-large.wide-tile-v{height:310px;width:150px}.tile-large.large-tile{width:310px;height:310px}.tile-large.big-tile{width:470px;height:470px}.tile-large.super-tile{width:630px;height:630px}.tile-large .tile-badge{position:absolute;bottom:0;right:.625rem;padding:.25rem .625rem;z-index:999}.tile-large .tile-label{position:absolute;bottom:0;left:.625rem;padding:.425rem .25rem;z-index:999}.tile-big{float:left;margin:5px;box-shadow:inset 0 0 1px #FFC;position:relative;user-select:none;width:470px;height:470px}.tile-big,.tile-super{-moz-user-select:none;-webkit-user-select:none}.tile-big:hover{outline:#999 solid 3px}.tile-big:active{outline:0}.tile-big.no-outline{outline-color:transparent}.tile-big.small-tile{width:70px;height:70px}.tile-big.wide-tile{width:310px;height:150px}.tile-big.wide-tile-v{height:310px;width:150px}.tile-big.large-tile{width:310px;height:310px}.tile-big.big-tile{width:470px;height:470px}.tile-big.super-tile,.tile-super{width:630px;height:630px}.tile-big .tile-badge{position:absolute;bottom:0;right:.625rem;padding:.25rem .625rem;z-index:999}.tile-big .tile-label{position:absolute;bottom:0;left:.625rem;padding:.425rem .25rem;z-index:999}.tile-super{float:left;margin:5px;box-shadow:inset 0 0 1px #FFC;position:relative;user-select:none}.tile-super:hover{outline:#999 solid 3px}.tile-super:active{outline:0}.tile-super.no-outline{outline-color:transparent}.tile-super.small-tile{width:70px;height:70px}.tile-super.wide-tile{width:310px;height:150px}.tile-super.wide-tile-v{height:310px;width:150px}.tile-super.large-tile{width:310px;height:310px}.tile-super.big-tile{width:470px;height:470px}.tile-super.super-tile{width:630px;height:630px}.tile-super .tile-badge{position:absolute;bottom:0;right:.625rem;padding:.25rem .625rem;z-index:999}.tile-super .tile-label{position:absolute;bottom:0;left:.625rem;padding:.425rem .25rem;z-index:999}.tile-small-x{width:70px}.tile-square-x{width:150px}.tile-large-x,.tile-wide-x{width:310px}.tile-big-x{width:470px}.tile-super-x{width:630px}.tile-small-y{height:70px}.tile-square-y{height:150px}.tile-large-y,.tile-wide-y{height:310px}.tile-big-y{height:470px}.tile-super-y{height:630px}.tile-content{position:absolute;height:inherit;display:none}.tile-content:first-child{display:block}.tile-content .live-slide{position:absolute;height:100%;display:none}.tile-content .live-slide:nth-child(1){display:block}.tile-content.iconic .icon{position:absolute;width:64px;height:64px;font-size:64px;top:50%;margin-top:-40px;left:50%;margin-left:-32px;text-align:center}.tile-small .tile-content.iconic .icon{width:32px;height:32px;font-size:32px;margin-left:-16px;margin-top:-16px}.tile-content.image-set>.image-container,.tile-content.image-set>img{margin:0;padding:0;width:25%;height:50%;float:left;border:1px solid #1e1e1e}.tile-content.image-set>.image-container:first-child,.tile-content.image-set>img:first-child{width:50%;float:left;height:100%}.tile-content.slide-down-2>.slide,.tile-content.slide-down-2>.slide-over,.tile-content.slide-down>.slide,.tile-content.slide-down>.slide-over,.tile-content.slide-left-2>.slide,.tile-content.slide-left-2>.slide-over,.tile-content.slide-left>.slide,.tile-content.slide-left>.slide-over,.tile-content.slide-right-2>.slide,.tile-content.slide-right-2>.slide-over,.tile-content.slide-right>.slide,.tile-content.slide-right>.slide-over,.tile-content.slide-up-2>.slide,.tile-content.slide-up-2>.slide-over,.tile-content.slide-up>.slide,.tile-content.slide-up>.slide-over{width:100%;height:inherit;display:block;position:absolute;box-shadow:inset 0 0 1px #FFC}.tile-content.slide-down-2>.slide,.tile-content.slide-down>.slide,.tile-content.slide-left-2>.slide,.tile-content.slide-left>.slide,.tile-content.slide-right-2>.slide,.tile-content.slide-right>.slide,.tile-content.slide-up-2>.slide,.tile-content.slide-up>.slide{top:0;z-index:1;transition:all .3s ease}.tile-content.slide-down-2:hover>.slide,.tile-content.slide-down:hover>.slide,.tile-content.slide-left-2:hover>.slide,.tile-content.slide-left:hover>.slide,.tile-content.slide-right-2:hover>.slide,.tile-content.slide-right:hover>.slide,.tile-content.slide-up-2:hover>.slide,.tile-content.slide-up:hover>.slide{-webkit-transform:scale(1.5);transform:scale(1.5);transition:all .6s ease}.tile-content.slide-up>.slide-over{top:100%;z-index:2;height:75%;transition:all .6s ease}.tile-content.slide-up:hover>.slide-over{top:25%;transition:all .3s ease}.tile-content.slide-up-2>.slide-over{top:100%;z-index:2;height:100%;transition:all .3s ease}.tile-content.slide-up-2:hover>.slide{-webkit-transform:scale(1);transform:scale(1);top:-100%;transition:all .4s ease}.tile-content.slide-up-2:hover>.slide-over{top:0;transition:all .4s ease}.tile-content.slide-down>.slide-over{top:-100%;z-index:2;height:75%;transition:all .6s ease}.tile-content.slide-down:hover>.slide-over{top:0;transition:all .3s ease}.tile-content.slide-down-2>.slide-over{top:-100%;z-index:2;height:100%;transition:all .3s ease}.tile-content.slide-down-2:hover>.slide{-webkit-transform:scale(1);transform:scale(1);top:100%;transition:all .4s ease}.tile-content.slide-down-2:hover>.slide-over{top:0;transition:all .4s ease}.tile-content.slide-left>.slide-over{left:-100%;z-index:2;width:75%;height:100%;transition:all .6s ease}.tile-content.slide-left-2>.slide,.tile-content.slide-left:hover>.slide-over{left:0;transition:all .3s ease}.tile-content.slide-left-2>.slide-over{left:-100%;z-index:2;width:100%;height:100%;transition:all .3s ease}.tile-content.slide-left-2:hover>.slide{-webkit-transform:scale(1);transform:scale(1);left:100%;transition:all .4s ease}.tile-content.slide-left-2:hover>.slide-over{left:0;transition:all .4s ease}.tile-content.slide-right>.slide-over{left:100%;z-index:2;width:75%;height:100%;transition:all .6s ease}.tile-content.slide-right:hover>.slide-over{left:25%;transition:all .3s ease}.tile-content.slide-right-2>.slide{left:0;transition:all .3s ease}.tile-content.slide-right-2>.slide-over{left:100%;z-index:2;width:100%;height:100%;transition:all .3s ease}.tile-content.slide-right-2:hover>.slide{-webkit-transform:scale(1);transform:scale(1);left:-100%;transition:all .4s ease}.tile-content.slide-right-2:hover>.slide-over{left:0;transition:all .4s ease}.tile-content.zooming .slide{box-shadow:inset 0 0 1px #FFC;width:100%;height:100%;display:block;position:relative;transition:all .6s ease}.tile-content.zooming .slide:hover{-webkit-transform:scale(1.5);transform:scale(1.5);transition:all .6s ease}.tile-content.zooming-out .slide{width:100%;height:100%;display:block;position:relative;-webkit-transform:scale(1.5);transform:scale(1.5);transition:all .6s ease}.tile-content.zooming-out .slide:hover{-webkit-transform:scale(1);transform:scale(1);transition:all .6s ease}.tile,.tile-big,.tile-large,.tile-small,.tile-square,.tile-super,.tile-wide{overflow:visible}.tile .tile-content.flipVertical,.tile-big .tile-content.flipVertical,.tile-large .tile-content.flipVertical,.tile-small .tile-content.flipVertical,.tile-square .tile-content.flipVertical,.tile-super .tile-content.flipVertical,.tile-wide .tile-content.flipVertical{-webkit-transform:perspective(1000px);transform:perspective(1000px);overflow:visible}.tile-big.flip .tile-content.flipVertical,.tile-big.hover .tile-content.flipVertical,.tile-big:hover .tile-content.flipVertical,.tile-large.flip .tile-content.flipVertical,.tile-large.hover .tile-content.flipVertical,.tile-large:hover .tile-content.flipVertical,.tile-small.flip .tile-content.flipVertical,.tile-small.hover .tile-content.flipVertical,.tile-small:hover .tile-content.flipVertical,.tile-square.flip .tile-content.flipVertical,.tile-square.hover .tile-content.flipVertical,.tile-square:hover .tile-content.flipVertical,.tile-super.flip .tile-content.flipVertical,.tile-super.hover .tile-content.flipVertical,.tile-super:hover .tile-content.flipVertical,.tile-wide.flip .tile-content.flipVertical,.tile-wide.hover .tile-content.flipVertical,.tile-wide:hover .tile-content.flipVertical,.tile.flip .tile-content.flipVertical,.tile.hover .tile-content.flipVertical,.tile:hover .tile-content.flipVertical{-webkit-transform:rotateY(180deg);transform:rotateY(180deg)}.tile .tile-content.flipVertical,.tile-big .tile-content.flipVertical,.tile-large .tile-content.flipVertical,.tile-small .tile-content.flipVertical,.tile-square .tile-content.flipVertical,.tile-super .tile-content.flipVertical,.tile-wide .tile-content.flipVertical{-webkit-transform-style:preserve-3d;transform-style:preserve-3d;transition:all .6s ease}.tile .tile-content.flipVertical .slide,.tile .tile-content.flipVertical .slide-over,.tile-big .tile-content.flipVertical .slide,.tile-big .tile-content.flipVertical .slide-over,.tile-large .tile-content.flipVertical .slide,.tile-large .tile-content.flipVertical .slide-over,.tile-small .tile-content.flipVertical .slide,.tile-small .tile-content.flipVertical .slide-over,.tile-square .tile-content.flipVertical .slide,.tile-square .tile-content.flipVertical .slide-over,.tile-super .tile-content.flipVertical .slide,.tile-super .tile-content.flipVertical .slide-over,.tile-wide .tile-content.flipVertical .slide,.tile-wide .tile-content.flipVertical .slide-over{top:0;left:0;position:absolute;height:100%;width:100%;-webkit-backface-visibility:hidden;backface-visibility:hidden}.tile .tile-content.flipVertical .slide,.tile-big .tile-content.flipVertical .slide,.tile-large .tile-content.flipVertical .slide,.tile-small .tile-content.flipVertical .slide,.tile-square .tile-content.flipVertical .slide,.tile-super .tile-content.flipVertical .slide,.tile-wide .tile-content.flipVertical .slide{z-index:2;-webkit-transform:rotateY(0);transform:rotateY(0)}.tile .tile-content.flipVertical .slide-over,.tile-big .tile-content.flipVertical .slide-over,.tile-large .tile-content.flipVertical .slide-over,.tile-small .tile-content.flipVertical .slide-over,.tile-square .tile-content.flipVertical .slide-over,.tile-super .tile-content.flipVertical .slide-over,.tile-wide .tile-content.flipVertical .slide-over{-webkit-transform:rotateY(180deg);transform:rotateY(180deg)}.tile .tile-content.flipHorizontal,.tile-big .tile-content.flipHorizontal,.tile-large .tile-content.flipHorizontal,.tile-small .tile-content.flipHorizontal,.tile-square .tile-content.flipHorizontal,.tile-super .tile-content.flipHorizontal,.tile-wide .tile-content.flipHorizontal{-webkit-transform:perspective(1000px);transform:perspective(1000px);overflow:visible}.preloader-cycle,.preloader-metro,.preloader-square,.scene,.streamer,.streamer .meter{overflow:hidden}.tile-big.flip .tile-content.flipHorizontal,.tile-big.hover .tile-content.flipHorizontal,.tile-big:hover .tile-content.flipHorizontal,.tile-large.flip .tile-content.flipHorizontal,.tile-large.hover .tile-content.flipHorizontal,.tile-large:hover .tile-content.flipHorizontal,.tile-small.flip .tile-content.flipHorizontal,.tile-small.hover .tile-content.flipHorizontal,.tile-small:hover .tile-content.flipHorizontal,.tile-square.flip .tile-content.flipHorizontal,.tile-square.hover .tile-content.flipHorizontal,.tile-square:hover .tile-content.flipHorizontal,.tile-super.flip .tile-content.flipHorizontal,.tile-super.hover .tile-content.flipHorizontal,.tile-super:hover .tile-content.flipHorizontal,.tile-wide.flip .tile-content.flipHorizontal,.tile-wide.hover .tile-content.flipHorizontal,.tile-wide:hover .tile-content.flipHorizontal,.tile.flip .tile-content.flipHorizontal,.tile.hover .tile-content.flipHorizontal,.tile:hover .tile-content.flipHorizontal{-webkit-transform:rotateX(180deg);transform:rotateX(180deg)}.tile .tile-content.flipHorizontal,.tile-big .tile-content.flipHorizontal,.tile-large .tile-content.flipHorizontal,.tile-small .tile-content.flipHorizontal,.tile-square .tile-content.flipHorizontal,.tile-super .tile-content.flipHorizontal,.tile-wide .tile-content.flipHorizontal{-webkit-transform-style:preserve-3d;transform-style:preserve-3d;transition:all .6s ease}.tile .tile-content.flipHorizontal .slide,.tile .tile-content.flipHorizontal .slide-over,.tile-big .tile-content.flipHorizontal .slide,.tile-big .tile-content.flipHorizontal .slide-over,.tile-large .tile-content.flipHorizontal .slide,.tile-large .tile-content.flipHorizontal .slide-over,.tile-small .tile-content.flipHorizontal .slide,.tile-small .tile-content.flipHorizontal .slide-over,.tile-square .tile-content.flipHorizontal .slide,.tile-square .tile-content.flipHorizontal .slide-over,.tile-super .tile-content.flipHorizontal .slide,.tile-super .tile-content.flipHorizontal .slide-over,.tile-wide .tile-content.flipHorizontal .slide,.tile-wide .tile-content.flipHorizontal .slide-over{top:0;left:0;position:absolute;height:100%;width:100%;-webkit-backface-visibility:hidden;backface-visibility:hidden}.tile .tile-content.flipHorizontal .slide,.tile-big .tile-content.flipHorizontal .slide,.tile-large .tile-content.flipHorizontal .slide,.tile-small .tile-content.flipHorizontal .slide,.tile-square .tile-content.flipHorizontal .slide,.tile-super .tile-content.flipHorizontal .slide,.tile-wide .tile-content.flipHorizontal .slide{z-index:2;-webkit-transform:rotateX(0);transform:rotateX(0)}.tile .tile-content.flipHorizontal .slide-over,.tile-big .tile-content.flipHorizontal .slide-over,.tile-large .tile-content.flipHorizontal .slide-over,.tile-small .tile-content.flipHorizontal .slide-over,.tile-square .tile-content.flipHorizontal .slide-over,.tile-super .tile-content.flipHorizontal .slide-over,.tile-wide .tile-content.flipHorizontal .slide-over{-webkit-transform:rotateX(180deg);transform:rotateX(180deg)}.tile .tile-badge{position:absolute;bottom:0;right:.625rem;padding:.25rem .625rem;z-index:999}.tile .tile-label{position:absolute;bottom:0;left:.625rem;padding:.425rem .25rem;z-index:999}.tile-content .carousel,.tile-content .image-container{box-shadow:inset 0 0 1px #FFC;width:100%;height:100%}[class*=tile-transform-]{transition:all .22s ease}.tile-transform-right{-webkit-transform-origin:left 50%;transform-origin:left 50%}.tile-square.tile-transform-right,.tile.tile-transform-right{-webkit-transform:perspective(500px)rotateY(.138372rad)!important;transform:perspective(500px)rotateY(.138372rad)!important}.tile-large.tile-transform-right,.tile-wide.tile-transform-right{-webkit-transform:perspective(500px)rotateY(.069186rad)!important;transform:perspective(500px)rotateY(.069186rad)!important}.tile-big.tile-transform-right{-webkit-transform:perspective(500px)rotateY(.046124rad)!important;transform:perspective(500px)rotateY(.046124rad)!important}.tile-super.tile-transform-right{-webkit-transform:perspective(500px)rotateY(.034593rad)!important;transform:perspective(500px)rotateY(.034593rad)!important}.tile-small.tile-transform-right{-webkit-transform:perspective(500px)rotateY(.276744rad)!important;transform:perspective(500px)rotateY(.276744rad)!important}.tile-transform-left{-webkit-transform-origin:right 50%;transform-origin:right 50%}.tile-square.tile-transform-left,.tile.tile-transform-left{-webkit-transform:perspective(500px)rotateY(-.138372rad)!important;transform:perspective(500px)rotateY(-.138372rad)!important}.tile-large.tile-transform-left,.tile-wide.tile-transform-left{-webkit-transform:perspective(500px)rotateY(-.069186rad)!important;transform:perspective(500px)rotateY(-.069186rad)!important}.tile-big.tile-transform-left{-webkit-transform:perspective(500px)rotateY(-.046124rad)!important;transform:perspective(500px)rotateY(-.046124rad)!important}.tile-super.tile-transform-left{-webkit-transform:perspective(500px)rotateY(-.034593rad)!important;transform:perspective(500px)rotateY(-.034593rad)!important}.tile-small.tile-transform-left{-webkit-transform:perspective(500px)rotateY(-.276744rad)!important;transform:perspective(500px)rotateY(-.276744rad)!important}.tile-transform-top{-webkit-transform-origin:50% bottom;transform-origin:50% bottom}.tile-square.tile-transform-top,.tile.tile-transform-top{-webkit-transform:perspective(500px)rotateX(.138372rad)!important;transform:perspective(500px)rotateX(.138372rad)!important}.tile-large.tile-transform-top,.tile-wide.tile-transform-top{-webkit-transform:perspective(500px)rotateX(.069186rad)!important;transform:perspective(500px)rotateX(.069186rad)!important}.tile-big.tile-transform-top{-webkit-transform:perspective(500px)rotateX(.046124rad)!important;transform:perspective(500px)rotateX(.046124rad)!important}.tile-super.tile-transform-top{-webkit-transform:perspective(500px)rotateX(.034593rad)!important;transform:perspective(500px)rotateX(.034593rad)!important}.tile-small.tile-transform-top{-webkit-transform:perspective(500px)rotateX(.276744rad)!important;transform:perspective(500px)rotateX(.276744rad)!important}.tile-transform-bottom{-webkit-transform-origin:50% top;transform-origin:50% top}.tile-square.tile-transform-bottom,.tile.tile-transform-bottom{-webkit-transform:perspective(500px)rotateX(-.138372rad)!important;transform:perspective(500px)rotateX(-.138372rad)!important}.tile-large.tile-transform-bottom,.tile-wide.tile-transform-bottom{-webkit-transform:perspective(500px)rotateX(-.069186rad)!important;transform:perspective(500px)rotateX(-.069186rad)!important}.tile-big.tile-transform-bottom{-webkit-transform:perspective(500px)rotateX(-.046124rad)!important;transform:perspective(500px)rotateX(-.046124rad)!important}.tile-super.tile-transform-bottom{-webkit-transform:perspective(500px)rotateX(-.034593rad)!important;transform:perspective(500px)rotateX(-.034593rad)!important}.tile-small.tile-transform-bottom{-webkit-transform:perspective(500px)rotateX(-.276744rad)!important;transform:perspective(500px)rotateX(-.276744rad)!important}.tile-area-scheme-dark{background-color:#1d1d1d}.tile-area-scheme-dark [class*=tile]{outline-color:#373737}.tile-area-scheme-darkBrown{background-color:#63362f}.tile-area-scheme-darkBrown [class*=tile]{outline-color:#86493f}.tile-area-scheme-darkCrimson{background-color:#640024}.tile-area-scheme-darkCrimson [class*=tile]{outline-color:#970036}.tile-area-scheme-darkViolet{background-color:#57169a}.tile-area-scheme-darkViolet [class*=tile]{outline-color:#701cc7}.tile-area-scheme-darkMagenta{background-color:#81003c}.tile-area-scheme-darkMagenta [class*=tile]{outline-color:#b40054}.tile-area-scheme-darkCyan{background-color:#1b6eae}.tile-area-scheme-darkCyan [class*=tile]{outline-color:#228ada}.tile-area-scheme-darkCobalt{background-color:#00356a}.tile-area-scheme-darkCobalt [class*=tile]{outline-color:#004e9d}.tile-area-scheme-darkTeal{background-color:#004050}.tile-area-scheme-darkTeal [class*=tile]{outline-color:#006983}.tile-area-scheme-darkEmerald{background-color:#003e00}.tile-area-scheme-darkEmerald [class*=tile]{outline-color:#007100}.tile-area-scheme-darkGreen{background-color:#128023}.tile-area-scheme-darkGreen [class*=tile]{outline-color:#18ad2f}.tile-area-scheme-darkOrange{background-color:#bf5a15}.tile-area-scheme-darkOrange [class*=tile]{outline-color:#e77120}.tile-area-scheme-darkRed{background-color:#9a1616}.tile-area-scheme-darkRed [class*=tile]{outline-color:#c71c1c}.tile-area-scheme-darkPink{background-color:#9a165a}.tile-area-scheme-darkPink [class*=tile]{outline-color:#c71c74}.tile-area-scheme-darkIndigo{background-color:#4b0096}.tile-area-scheme-darkIndigo [class*=tile]{outline-color:#6400c9}.tile-area-scheme-darkBlue{background-color:#16499a}.tile-area-scheme-darkBlue [class*=tile]{outline-color:#1c5ec7}.tile-area-scheme-lightBlue{background-color:#4390df}.tile-area-scheme-lightBlue [class*=tile]{outline-color:#6faae6}.tile-area-scheme-lightTeal{background-color:#45fffd}.tile-area-scheme-lightTeal [class*=tile]{outline-color:#78fffd}.tile-area-scheme-lightOlive{background-color:#78aa1c}.tile-area-scheme-lightOlive [class*=tile]{outline-color:#97d623}.tile-area-scheme-lightOrange{background-color:#ffc194}.tile-area-scheme-lightOrange [class*=tile]{outline-color:#ffdec7}.tile-area-scheme-lightPink{background-color:#f472d0}.tile-area-scheme-lightPink [class*=tile]{outline-color:#f8a1e0}.tile-area-scheme-grayed{background-color:#585858}.tile-area-scheme-grayed [class*=tile]{outline-color:#727272}.treeview{margin:0;padding:0;display:block;font-size:.75rem}.treeview ul{margin:0;padding:0;list-style:none;width:100%;font-size:inherit}.treeview li{font-size:inherit;padding:2px 16px;position:relative;color:#555;vertical-align:middle;user-select:none}.streamer .events .event-stream .event,.treeview li{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none}.treeview li.active>.leaf{font-weight:700}.treeview li.disabled{cursor:default;color:#999}.treeview li.disabled:hover>.leaf{color:#999}.treeview li .input-control{margin:0 .3125rem 0 0;height:1rem;line-height:.625rem;min-height:0}.treeview li .input-control .check{line-height:1rem}.treeview ul>li>.leaf:hover{color:#1d1d1d}.treeview .leaf{vertical-align:middle;display:inline-block;color:inherit}.treeview .leaf .icon{width:1rem;height:1rem;text-align:center}.treeview .node-toggle{position:absolute;left:0;top:8px;width:8px;height:8px}.treeview .node-toggle:before{position:absolute;display:block;left:0;top:-3px;height:0;content:'';width:0;border-left:7px solid transparent;border-top:7px solid transparent;border-bottom:7px #1ba1e2 solid}.act,.listview,.presenter,.scene{width:100%}.act,.presenter,.scene{position:relative}.treeview li:hover>.node-toggle:before{border-bottom-color:#1b6eae}.treeview .node.collapsed>.node-toggle:before{left:-4px;-webkit-transform:rotate(-45deg);transform:rotate(-45deg);border-bottom-color:#999}.treeview .node.collapsed:hover>.node-toggle:before{border-bottom-color:#1b6eae}.treeview .node.collapsed>ul{display:none}.act,.presenter,.scene{display:block}.presenter{height:200px;min-height:200px}.act,.scene{height:100%}.scene{margin:0;padding:0}.act{padding:10px}.act:after,.act:before{display:table;content:""}.actor{position:absolute;margin-right:10px}.listview{display:block;height:auto}.listview:after,.listview:before{display:table;content:""}.listview .list-group{display:block;width:100%;height:auto;position:relative}.listview .list-group:after,.listview .list-group:before{display:table;content:""}.listview .list-group .list-group-toggle{display:block;padding-left:16px;cursor:pointer;position:relative;margin-top:10px}.listview .list-group .list-group-toggle:before{position:absolute;display:block;left:0;top:-3px;height:0;content:'';width:0;border-left:7px solid transparent;border-top:7px solid transparent;border-bottom:7px #1ba1e2 solid}.listview .list-group .list-group-content{display:block;width:100%;height:auto;margin-top:1rem}.listview .list-group .list-group-content:after,.listview .list-group .list-group-content:before{display:table;content:""}.listview .list-group.collapsed>.list-group-toggle:before{left:-4px;-webkit-transform:rotate(-45deg);transform:rotate(-45deg);border-bottom-color:#999}.listview .list-group.collapsed:hover>.list-group-toggle:before{border-bottom-color:#1b6eae}.listview .list{display:block;width:100%;padding:8px 8px 4px 48px;border:1px solid transparent;cursor:pointer;height:50px;border-bottom-color:#eee;position:relative}.listview .list:last-child{border-bottom-color:transparent}.listview .list .list-icon{position:absolute;left:0;top:0;margin:8px;width:32px;height:32px;font-size:32px;text-align:center}.listview .list .list-data{display:block;margin:4px 0}.listview.list-type-icons .list{display:block;float:left;padding:0;width:105px;height:116px;border-color:transparent;margin:.625rem;text-align:center}.listview.list-type-icons .list .list-title{position:absolute;left:0;right:0;bottom:4px;height:auto;text-align:center}.listview.list-type-icons .list .list-icon{width:80px;height:80px;font-size:80px;text-align:center;left:50%;margin-left:-40px}.listview.list-type-icons .list .list-data{display:none}.listview.list-type-tiles .list{display:block;float:left;padding:8px 8px 4px 48px;width:250px;height:52px;border-color:transparent;margin:.625rem}.listview.list-type-tiles .list .list-title{margin-top:8px;display:block}.listview.list-type-tiles .list .list-icon{width:48px;height:48px;font-size:48px;text-align:center;top:0;left:0;margin:2px}.listview.list-type-tiles .list .list-data{display:none}.listview.list-type-listing .list{display:block;float:left;padding:4px 2px 4px 24px;width:auto;height:auto;border-color:transparent;margin:1px}.listview.list-type-listing .list .list-title{display:block}.listview.list-type-listing .list .list-icon{width:20px;height:20px;font-size:20px;text-align:center;top:0;left:0;margin:1px}.listview.list-type-listing .list .list-data{display:none}.listview .list.active{background-color:#d1e8ff;border-color:#64b4db}.listview .list:hover{background-color:#e5f3fb;border-color:#64b4db}.listview-outlook{display:block;width:100%;height:auto}.listview-outlook:after,.listview-outlook:before{display:table;content:""}.listview-outlook .list{display:block;width:100%;border:0;border-bottom:1px #eee solid;padding:2px 0;color:#555;margin-bottom:0;background-color:transparent}.listview-outlook .list .list-content{margin:2px 0;padding:2px 20px;font-size:1rem;color:inherit;border-left:3px transparent solid}.listview-outlook .list .list-content .list-remark,.listview-outlook .list .list-content .list-subtitle,.listview-outlook .list .list-content .list-title{width:100%;display:block;color:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.listview-outlook .list .list-content .list-title{line-height:1.3}.listview-outlook .list .list-content .list-subtitle{font-size:.75rem;line-height:1.2;font-weight:500;color:#0067cb}.listview-outlook .list .list-content .list-remark{font-weight:400;line-height:1.2;font-size:.625rem;color:#999}.listview-outlook .list:hover{background-color:#eee;outline:0}.listview-outlook .list:hover .list-content{border-left:3px transparent solid}.listview-outlook .list.marked .list-content{border-left:3px #1b6eae solid}.listview-outlook .list.active,.listview-outlook .list:active,.listview-outlook .list:focus{background-color:#cde6f7;outline:#999 dotted 1px;color:#555}.listview-outlook .list-group{display:block;position:relative}.listview-outlook .list-group .list-group-toggle{display:block;margin-bottom:2px;background-color:#f0f0f0;padding:4px 20px 4px 24px;font-size:.875rem;font-weight:500;color:#333;cursor:pointer}.listview-outlook .list-group .list-group-toggle:before{position:absolute;display:block;left:10px;top:2px;content:'';width:0;height:0;border-left:7px solid transparent;border-top:7px solid transparent;border-bottom:7px solid #000}.listview-outlook .list-group .list-group-content{display:block}.listview-outlook .list-group.collapsed .list-group-toggle:before{-webkit-transform:rotate(-45deg);transform:rotate(-45deg);margin-left:-4px}.listview-outlook .list-group .list-group-toggle:hover:before{border-bottom-color:#0067cb}.charm{display:block;position:fixed;z-index:1060;background:#1d1d1d;color:#eee;padding:.625rem}.charm .charm-closer{position:absolute;height:1rem;width:1rem;text-align:center;vertical-align:middle;font-size:1rem;font-weight:400;padding:0 0 .625rem;z-index:3;outline:0;cursor:pointer;color:#777;top:.25rem;right:.25rem}.charm .charm-closer:after{content:'\D7';position:absolute;left:50%;top:50%;margin-top:-.65rem;margin-left:-.35rem}.charm .charm-closer:active,.charm .charm-closer:hover{color:#fff}.charm.right-side{width:auto;right:0;top:0;left:auto;bottom:0}.charm.left-side{width:auto;left:0;top:0;bottom:0}.charm.top-side{height:auto;left:0;right:0;top:0}.charm.bottom-side{height:auto;left:0;right:0;top:auto;bottom:0}.notify-container{position:fixed;top:0;right:0;width:auto;z-index:1061}.notify-container:after,.notify-container:before{display:table;content:""}.notify-container.position-left{left:0;right:auto}.notify-container.position-top{left:0;right:0;top:0;height:auto}.notify-container.position-top .notify{float:left}.notify-container.position-bottom{left:0;right:0;bottom:0;top:auto;height:auto}.notify-container.position-bottom .notify{float:left}.notify{display:block;margin:.3125rem;padding:.625rem;min-width:200px;cursor:default;max-width:300px;position:relative}.hint,.hint2{max-width:220px}.notify .notify-icon{width:32px;height:32px;font-size:32px;text-align:center;position:absolute;margin:-16px 10px;top:50%;left:0}.notify .notify-icon~.notify-text,.notify .notify-icon~.notify-title{position:relative;margin-left:42px}.notify .notify-text,.notify .notify-title{display:block;margin-right:20px}.hint,.hint2{display:none}.notify .notify-title{font-weight:500;font-size:1rem}.notify .notify-text{font-size:.875rem}.notify .notify-closer{position:absolute;height:1rem;width:1rem;text-align:center;vertical-align:middle;font-size:1rem;font-weight:400;padding:0 0 .625rem;z-index:3;outline:0;cursor:pointer;background-color:#fff;color:#777;top:.25rem;right:.25rem}.hint,.hint2{padding:10px}.hint2:before,.hint:before{background-color:inherit;height:10px}.notify .notify-closer:after{border-color:#777;content:'\D7';position:absolute;left:50%;top:50%;margin-top:-.65rem;margin-left:-.35rem}.hint2:before,.hint:before,.preloader-ring>.wrap>.circle:after{content:''}.notify .notify-closer:hover{background-color:#cde6f7;color:#fff}.notify .notify-closer:active{background-color:#92c0e0;color:#fff}.notify{background-color:#e5f3fb;color:#1d1d1d}.notify.success,.notify.success .notify-closer{background-color:#60a917;color:#fff}.notify.success .notify-closer:hover{background-color:#7ad61d}.notify.success .notify-closer:active{background-color:#128023}.notify.alert,.notify.alert .notify-closer{background-color:#ce352c;color:#fff}.notify.alert .notify-closer:hover{background-color:#da5a53}.notify.alert .notify-closer:active{background-color:#9a1616}.notify.warning,.notify.warning .notify-closer{background-color:#fa6800;color:#fff}.notify.warning .notify-closer:hover{background-color:#ffc194}.notify.warning .notify-closer:active{background-color:#bf5a15}.notify.info,.notify.info .notify-closer{background-color:#1ba1e2;color:#fff}.notify.info .notify-closer:hover{background-color:#59cde2}.notify.info .notify-closer:active{background-color:#1b6eae}p [data-hint]{border-bottom:1px #373737 dotted;white-space:nowrap}.hint{position:fixed;color:#1d1d1d;font-size:12px;width:auto;margin-top:10px;z-index:1030}.hint .hint-text,.hint .hint-title{color:inherit;text-align:left}.hint .hint-title{font-size:1.2em;font-weight:700}.hint:before{position:absolute;width:10px;transform:rotate(45deg);z-index:2}.hint2:before,.hint:before{-webkit-transform:rotate(45deg)}.hint.bottom:before{top:1px;left:5px;margin:-7px 0;border-bottom:none;border-right:none}.hint.top:before{top:100%;margin-top:-5px;left:5px;border-top:none}.hint.left:before{top:5px;left:100%;margin-left:-5px;border-bottom:none}.hint.right:before{top:5px;left:-9px;margin:1px 0 0 3px;border-top:none;border-right:none}.hint2{position:fixed;color:#1d1d1d;font-size:12px;width:auto;margin-top:10px;z-index:1030}.hint2 .hint-text,.hint2 .hint-title{color:inherit;text-align:left}.hint2 .hint-title{font-size:1.2em;font-weight:700}.hint2:before{position:absolute;width:10px;transform:rotate(45deg);z-index:2}.hint.no-border,.hint.no-border:before,.hint2.line,.hint2.no-border,.hint2.no-border:before{border:none}.hint2.no-border.right:before{left:-7px}.hint2.bottom:before{top:1px;left:50%;margin:-7px 0 0 -5px;border-bottom:none;border-right:none}.hint2.top:before{top:100%;margin-top:-5px;left:50%;margin-left:-5px;border-top:none}.hint2.left:before{top:50%;margin-top:-5px;left:100%;margin-left:-5px;border-bottom:none}.hint2.right:before{top:50%;margin:-5px 0 0 3px;left:-9px;border-top:none;border-right:none}.preloader-cycle .cycle,.preloader-cycle .cycle:after,.preloader-cycle .cycle:before{border:3px solid transparent;border-top-color:#fff}.hint.no-border.right:before,.hint2.no-border.right:before{left:-7px}.hint2.line{padding:2px 4px;display:block;max-width:100%;margin:-5px 0 4px}.hint2.line:before{display:none}.preloader-ring{position:relative;padding-top:.22rem;width:32px;height:32px;margin:.625rem}.preloader-ring>.wrap{position:absolute;width:30px;height:30px}.preloader-ring>.wrap>.circle{opacity:0;width:30px;height:30px;-webkit-transform:rotate(225deg);transform:rotate(225deg);-webkit-animation:orbit 4000ms infinite;animation:orbit 4000ms infinite}.preloader-ring>.wrap>.circle:after{position:absolute;width:4px;height:4px;border-radius:4px;background:#fff}.preloader-cycle .cycle:after,.preloader-cycle .cycle:before{position:absolute;content:"";border-radius:50%}.preloader-ring>.wrap:nth-child(2){-webkit-transform:rotate(-14deg);transform:rotate(-14deg)}.preloader-ring>.wrap:nth-child(2)>.circle{-webkit-animation-delay:133.33333333ms;animation-delay:133.33333333ms}.preloader-ring>.wrap:nth-child(3){-webkit-transform:rotate(-28deg);transform:rotate(-28deg)}.preloader-ring>.wrap:nth-child(3)>.circle{-webkit-animation-delay:266.66666667ms;animation-delay:266.66666667ms}.preloader-ring>.wrap:nth-child(4){-webkit-transform:rotate(-42deg);transform:rotate(-42deg)}.preloader-ring>.wrap:nth-child(4)>.circle{-webkit-animation-delay:400ms;animation-delay:400ms}.preloader-ring>.wrap:nth-child(5){-webkit-transform:rotate(-56deg);transform:rotate(-56deg)}.preloader-ring>.wrap:nth-child(5)>.circle{-webkit-animation-delay:533.33333333ms;animation-delay:533.33333333ms}.preloader-ring.dark-style>.wrap>.circle:after{background-color:#555}.preloader-ring.color-style>.wrap>.circle:after{background-color:#1ba1e2}.preloader-ring.color-style>.wrap:nth-child(2)>.circle:after{background-color:#fa6800}.preloader-ring.color-style>.wrap:nth-child(3)>.circle:after{background-color:#60a917}.preloader-ring.color-style>.wrap:nth-child(4)>.circle:after{background-color:#ce352c}.preloader-ring.color-style>.wrap:nth-child(5)>.circle:after{background-color:#e3c800}.preloader-metro{position:relative;width:100%;height:10px;background-color:transparent}.preloader-metro>.circle{display:inline-block;position:absolute;width:10px;height:10px;background-color:#fff;opacity:0;margin-left:5px;-webkit-animation:metro-slide 3s cubic-bezier(.1,.85,.9,.15)infinite,metro-opacity 2s ease-in-out infinite alternate;animation:metro-slide 3s cubic-bezier(.1,.85,.9,.15)infinite,metro-opacity 2s ease-in-out infinite alternate}.preloader-metro>.circle:nth-child(2){-webkit-animation-delay:.8s;animation-delay:.8s}.preloader-metro>.circle:nth-child(3){-webkit-animation-delay:.7s;animation-delay:.7s}.preloader-metro>.circle:nth-child(4){-webkit-animation-delay:.6s;animation-delay:.6s}.preloader-metro>.circle:nth-child(5){-webkit-animation-delay:.5s;animation-delay:.5s}.preloader-metro.dark-style>.circle{background-color:#555}.preloader-metro.color-style>.circle{background-color:#1ba1e2}.preloader-metro.color-style>.circle:nth-child(2){background-color:#fa6800}.preloader-metro.color-style>.circle:nth-child(3){background-color:#60a917}.preloader-metro.color-style>.circle:nth-child(4){background-color:#ce352c}.preloader-metro.color-style>.circle:nth-child(5){background-color:#e3c800}.preloader-square{position:relative;width:40px;height:40px;-webkit-transform-origin:bottom left;transform-origin:bottom left;-webkit-animation:ani-shrink 1s linear infinite;animation:ani-shrink 1s linear infinite}.preloader-square .square{position:absolute;width:19px;height:19px;background:#fff}.preloader-cycle,.preloader-cycle .cycle{position:relative;width:64px;height:64px}.preloader-square .square:nth-child(1){left:0;top:21px}.preloader-square .square:nth-child(2){left:21px;top:21px;-webkit-animation:ani-drop 1s linear infinite;animation:ani-drop 1s linear infinite}.preloader-square .square:nth-child(3){left:0;top:0;-webkit-animation:ani-drop2 1s linear infinite;animation:ani-drop2 1s linear infinite}.preloader-square .square:nth-child(4){left:21px;top:0;-webkit-animation:ani-drop3 1s linear infinite;animation:ani-drop3 1s linear infinite}.preloader-square.dark-style>.square{background-color:#555}.preloader-square.color-style>.square:nth-child(1){background-color:#fa6800}.preloader-square.color-style>.square:nth-child(2){background-color:#60a917}.preloader-square.color-style>.square:nth-child(3){background-color:#1ba1e2}.preloader-square.color-style>.square:nth-child(4){background-color:#e3c800}.preloader-cycle .cycle{display:block;left:50%;top:50%;margin:-32px 0 0 -32px;border-radius:50%;-webkit-animation:ani-pre-spin 1s linear infinite;animation:ani-pre-spin 1s linear infinite;z-index:1001}.preloader-cycle .cycle:before{top:5px;left:5px;right:5px;bottom:5px;-webkit-animation:ani-pre-spin 2s linear infinite;animation:ani-pre-spin 2s linear infinite}.preloader-cycle .cycle:after{top:15px;left:15px;right:15px;bottom:15px;-webkit-animation:spin 1.5s linear infinite;animation:spin 1.5s linear infinite}.preloader-cycle.dark-style .cycle,.preloader-cycle.dark-style .cycle:after,.preloader-cycle.dark-style .cycle:before{border-top-color:#1d1d1d}.preloader-cycle.color-style .cycle{border-top-color:#3498db}.preloader-cycle.color-style .cycle:before{border-top-color:#e74c3c}.preloader-cycle.color-style .cycle:after{border-top-color:#f9c922}.dialog-overlay{background-color:transparent;position:fixed;top:0;left:0;right:0;bottom:0;min-height:100%;min-width:100%;z-index:1049}.dialog{position:fixed;display:block;width:auto;height:auto;float:left;background-color:#fff;color:#1d1d1d;z-index:1050}.dialog .dialog-close-button{position:absolute;height:1.5rem;width:1.5rem;min-height:1.5rem;text-align:center;vertical-align:middle;font-size:1rem;font-weight:400;padding:.125rem 0 .625rem;z-index:3;outline:0;cursor:pointer;background-color:#fff;color:#777;top:.25rem;right:.25rem}.streamer .streams,.streamer .streams .streams-title{position:absolute;top:0}.streamer .events,.streamer .events .events-grid{height:100%;min-height:100%}.dialog .dialog-close-button:hover{background-color:#cde6f7;color:#2a8dd4}.dialog .dialog-close-button:hover:after{border-color:#2a8dd4}.dialog .dialog-close-button:active{background-color:#92c0e0;color:#fff}.dialog .dialog-close-button:after{border-color:#777;content:'\D7';line-height:1}.dialog.success{background-color:#60a917;color:#fff}.dialog.success .dialog-close-button{background-color:#7ad61d;color:#fff}.dialog.success .dialog-close-button:active{background-color:#128023}.dialog.warning{background-color:#fa6800;color:#fff}.dialog.warning .dialog-close-button{background-color:#ffc194;color:#fff}.dialog.warning .dialog-close-button:active{background-color:#bf5a15}.dialog.alert{background-color:#ce352c;color:#fff}.dialog.alert .dialog-close-button{background-color:#da5a53;color:#fff}.dialog.alert .dialog-close-button:active{background-color:#9a1616}.dialog.info{background-color:#1ba1e2;color:#fff}.dialog.info .dialog-close-button{background-color:#59cde2;color:#fff}.dialog.info .dialog-close-button:active{background-color:#1b6eae}.streamer{position:relative;display:block;width:100%}.streamer .streamer-toolbar .toolbar-button{display:block;float:left;width:.625rem;height:1.5rem}.streamer .streamer-toolbar .toolbar-button.active{background-color:#555;color:#fff}.streamer .meter{height:25px;width:auto;list-style:none;margin:0;padding:0;display:block}.streamer .meter li{display:block;float:left;width:213px;padding:2px 3px;background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAANUAAAAUCAYAAAAa9HiSAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAHlJREFUeNrs2csJgDAQQMFE7Gj77yA9+UNswOwewgwI3hYTngrpY4yjAb9FRH9u7qguLfuqmFP1PKutm/2Zu36b9wvMJSoQFYgKRAWICkQFq9qrBn0HY4neM4pl5lSyP75U4PcPRAWICkQFogJEBaICUQGigjynAAMAqEOFksZmC3MAAAAASUVORK5CYII=)top left repeat-x}.streamer .meter li em{font-size:10px;font-style:normal}.streamer .streams{width:142px;padding-top:25px;left:0;z-index:2;background-color:#fff}.streamer .streams .stream{position:relative;display:block;width:100%;height:75px;margin:0 2px 2px 0;padding:5px;color:#fff;cursor:pointer}.streamer .streams .stream .stream-title{font-size:.75rem;line-height:1}.streamer .streams .stream .stream-number{position:absolute;left:5px;bottom:5px;font-size:.6875rem;line-height:1}.streamer .events{padding-left:143px;overflow:hidden;overflow-x:scroll}.streamer .events .double{width:424px}.streamer .events .triple{width:637px}.streamer .events .quadro{width:850px}.streamer .events .events-area{height:100%;min-height:100%;overflow:hidden}.streamer .events .events-area:after,.streamer .events .events-area:before{display:table;content:""}.streamer .events .events-grid:after,.streamer .events .events-grid:before{display:table;content:""}.streamer .events .event-group{height:460px;min-width:211px;margin:0 2px 2px 0;float:left}.streamer .events .event-super{height:100%;min-height:100%;border:1px solid #d9d9d9}.streamer .events .event-super.medium-border{border-width:8px}.streamer .events .event-super.large-border{border-width:16px}.streamer .events .event-stream{height:75px}.streamer .events .event-stream .event{min-width:211px;height:75px;float:left;display:block;margin:0 2px 2px 0;cursor:pointer;position:relative;overflow:hidden;user-select:none;border:1px solid #d9d9d9}.streamer .events .event-stream .event.medium-border{border-width:8px}.streamer .events .event-stream .event.large-border{border-width:16px}.streamer .events .event-stream .event:last-child{margin-right:0}.streamer .events .event-stream .event.event-disable{opacity:.2}.streamer .events .event-stream .event .event-content{width:100%;height:100%;padding:0;margin:0;position:absolute;left:0;top:0;overflow:hidden;display:none}.streamer .events .event-stream .event .event-content:first-child{display:block}.streamer .events .event-stream .event .event-content-logo{display:block;float:left;margin-right:5px;padding:3px}.streamer .events .event-stream .event .event-content-logo .icon{position:relative;width:39px;height:39px;margin-bottom:1px}.streamer .events .event-stream .event .event-content-logo .icon img{width:100%;height:100%}.streamer .events .event-stream .event .event-content-logo .time{position:relative;width:39px;padding:8px 4px;font-size:.75rem;color:#fff;line-height:1}.streamer .events .event-stream .event .event-content-data{display:block;padding:0;margin:0 0 0 50px;position:relative}.streamer .events .event-stream .event .event-content-data .title{position:relative;font-size:.875rem;line-height:1;margin:3px 0 0;padding:0}.streamer .events .event-stream .event .event-content-data .subtitle{position:relative;font-size:.625rem;line-height:1;margin:0 0 10px;padding:0}.streamer .events .event-stream .event .event-content-data .remark{position:absolute;display:block;top:36px;margin-right:4px;font-size:.6875rem;line-height:1;color:#999}.streamer .events .event-stream .event:hover{border-color:#999}.streamer .events .event-stream .event.selected{border:4px solid #4390df;border-width:1px}.keypad,.keypad .key{border:1px solid #eee}.streamer .events .event-stream .event.selected:after{position:absolute;display:block;border-top:28px solid #4390df;border-left:28px solid transparent;right:0;content:"";top:0;z-index:101}.streamer .events .event-stream .event.selected:before{position:absolute;display:block;content:"";background-color:transparent;border-color:#fff;border-left:2px solid;border-bottom:2px solid;height:.25rem;width:.5rem;z-index:102;-webkit-transform:rotate(-45deg);transform:rotate(-45deg);right:3px;top:3px;color:#fff}.streamer .events .event-stream .event.margin-one{margin-left:213px}.streamer .events .event-stream .event.margin-double{margin-left:426px}.streamer .events .event-stream .event.margin-triple{margin-left:639px}.streamer .events .event-stream .event.margin-quadro{margin-left:852px}.keypad{position:relative;width:106px;padding:1px;vertical-align:middle;background-color:#fff;user-select:none}.keypad,.select2-container .select2-selection--single{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none}.keypad:after,.keypad:before{display:table;content:""}.keypad .key{width:32px;height:32px;display:block;float:left;margin:1px;vertical-align:middle;text-align:center;cursor:pointer;font-size:.875rem;line-height:32px}.keypad .key:hover{background-color:#eee}.keypad .key:active{background-color:#555;color:#fff}.fluent-menu .tabs-holder{list-style:none;position:relative;margin:0;padding:0;display:block;z-index:2}.fluent-menu .tabs-holder:after,.fluent-menu .tabs-holder:before{display:table;content:""}.fluent-menu .tabs-holder li{display:block;float:left;margin-right:5px;background-color:#fff}.fluent-menu .tabs-holder li a{display:block;float:left;padding:.25rem 1rem;text-transform:uppercase;font-size:.8em;color:#444}.fluent-menu .tabs-holder li a:hover,.fluent-menu .tabs-holder li.active a{color:#0072c6}.fluent-menu .tabs-holder li:first-child{margin-left:0}.fluent-menu .tabs-holder li.active{border:1px solid #d4d4d4;border-bottom-color:#fff}.fluent-menu .tabs-holder li.special{border:1px solid #0072c6;background-color:#0072c6}.fluent-menu .tabs-holder li.special a,.fluent-menu .tabs-holder li.special a:hover{color:#fff}.fluent-menu .tabs-content{z-index:1;position:relative;margin-top:-1px;border:1px solid #d4d4d4;background-color:#fff;height:120px}.fluent-menu .tabs-content .tab-panel{display:block;height:100%;padding:5px 0 2px}.fluent-menu .tabs-content .tab-panel .tab-panel-group{height:100%;position:relative;display:block;float:left;padding:0 5px;border-right:1px #d4d4d4 solid}.dataTable.bordered tbody tr td:last-child,.dataTable.bordered thead tr:first-child td:last-child,.dataTable.bordered thead tr:first-child th:last-child{border-right:none}.fluent-menu .tabs-content .tab-panel .tab-panel-group:last-child{margin-right:0}.fluent-menu .tabs-content .tab-panel .tab-group-caption{font-size:10px;margin:2px 0 -2px;text-align:center;display:block;position:absolute;bottom:0;right:0;left:0;white-space:nowrap;background:#eee}.fluent-menu .tabs-content .tab-panel .tab-content-segment{display:block;float:left;position:relative}.fluent-menu .fluent-big-button,.fluent-menu .fluent-button,.fluent-menu .fluent-tool-button{background-color:#fff;padding:.3125rem;display:block;cursor:default;border:0;outline:0;font-size:.8em;line-height:1.2;vertical-align:middle}.fluent-menu .fluent-big-button:hover,.fluent-menu .fluent-button:hover,.fluent-menu .fluent-tool-button:hover{background-color:#cde6f7}.fluent-menu .fluent-big-button .icon,.fluent-menu .fluent-big-button [class*=mif-],.fluent-menu .fluent-big-button img,.fluent-menu .fluent-button .icon,.fluent-menu .fluent-button [class*=mif-],.fluent-menu .fluent-button img,.fluent-menu .fluent-tool-button .icon,.fluent-menu .fluent-tool-button [class*=mif-],.fluent-menu .fluent-tool-button img{line-height:1.2;display:block;float:left;margin-right:5px;width:16px;height:16px;color:#444;vertical-align:middle}.fluent-menu .fluent-big-button .label,.fluent-menu .fluent-button .label,.fluent-menu .fluent-tool-button .label{display:inline-block;color:inherit;font:inherit}.dataTable tfoot td,.dataTable tfoot th,.dataTable thead td,.dataTable thead th{color:#52677a;border-color:transparent;line-height:100%;text-align:left;font-style:normal}.fluent-menu .fluent-big-button:active,.fluent-menu .fluent-button:active,.fluent-menu .fluent-tool-button:active{top:0;left:0;background-color:#75bae9}.fluent-menu .fluent-big-button.dropdown-toggle:before,.fluent-menu .fluent-button.dropdown-toggle:before,.fluent-menu .fluent-tool-button.dropdown-toggle:before{margin-top:-.3125rem}.fluent-menu .fluent-big-button{padding:7px 5px;text-align:center;white-space:normal;line-height:12px;float:left;position:relative}.fluent-menu .fluent-big-button .icon,.fluent-menu .fluent-big-button [class*=mif-],.fluent-menu .fluent-big-button img{display:block;width:40px;height:40px;font-size:40px;float:none;text-align:center;margin:5px auto}.fluent-menu .fluent-big-button br{line-height:4px;height:4px;font-size:4px}.fluent-menu .fluent-tool-button{padding:4px}.fluent-menu .fluent-tool-button [class*=icon-],.fluent-menu .fluent-tool-button img{display:block;width:16px;height:16px;font-size:16px;float:none;text-align:center}.fluent-menu .fluent-tool-button img{margin-right:0}.fluent-menu .dropdown-toggle{padding-right:24px}.fluent-menu .d-menu{position:absolute;top:100%;z-index:100}.fluent-menu .d-menu a{padding:4px 24px;font-size:.8em}.fluent-menu .d-menu a:hover{background-color:#cde6f7;color:#444}.video-player:-webkit-full-screen{width:100%;height:100%;position:fixed;top:0;min-width:100%;min-height:100%}.video-player:-moz-full-screen{position:fixed;top:0;min-width:100%;min-height:100%}.video-player:-ms-fullscreen{position:fixed;top:0;min-width:100%;min-height:100%}.video-player:fullscreen{position:fixed;top:0;min-width:100%;min-height:100%}.video-player:-webkit-full-screen video{width:100%;height:100%}.video-player:-moz-full-screen video{width:100%;height:100%}.video-player:-ms-fullscreen video{width:100%;height:100%}.video-player:fullscreen video{width:100%;height:100%}.video-player{display:block;background:#1d1d1d;position:relative;width:100%;height:auto;z-index:1}.video-player .video-preloader{position:absolute;z-index:2147483647;top:50%;left:50%;margin-top:-32px;margin-left:-32px}.video-player .video-logo{position:absolute;z-index:2147483647;right:20px;top:20px;height:32px}.video-player video{width:100%;height:100%;z-index:1}.video-player .controls{position:absolute;height:auto;padding:.625rem;z-index:2147483647;background:rgba(34,34,34,.5)}.video-player .controls .control-button,.video-player .controls .control-slider,.video-player .controls .info-box{background:inherit inherit/inherit inherit inherit inherit}.video-player .controls .info-box{float:left;margin:0 2px;padding:.75rem 1rem;color:#fff;height:2.125rem;text-align:center;font-size:.8em}.video-player .controls .control-slider{height:2.125rem;float:left;padding:0 1rem;margin:0 2px}.video-player .controls .volume-slider-wrapper{width:6rem}.video-player .controls .stream-slider-wrapper{float:none;width:100%}.video-player .controls .control-button{float:left;border:0;color:#b3b3b3;outline:0;position:relative;margin:0 2px}.video-player .controls .control-button:active,.video-player .controls .control-button:hover{color:#fff}.video-player .controls .control-button.loop.active{color:#60a917}.video-player .controls .control-button.stop:disabled{color:#555}.video-player .controls .control-button.full{float:right}.video-player .controls.position-bottom{bottom:0;left:0;right:0}.video-player.full-screen{position:fixed;top:0;left:0;bottom:0;right:0;width:auto!important;z-index:2147483646}video::-webkit-media-controls{display:none!important}video::-webkit-media-controls-enclosure{display:none!important}.audio-player{display:inline-block;position:relative;background:#1d1d1d;height:auto}.audio-player .controls{position:relative;width:100%;height:auto;padding:4px;background:inherit inherit/inherit inherit inherit inherit}.audio-player .controls:after,.audio-player .controls:before{display:table;content:""}.audio-player .controls .control-element{height:2.125rem;display:inline-block;border:none;background:rgba(34,34,34,.5);vertical-align:middle}.audio-player .controls .stream-wrapper{padding:0 .25rem}.audio-player .controls .stream-slider{width:200px}.audio-player .controls .info-box{margin:0 2px;padding:.75rem 1rem;color:#fff;height:2.125rem;line-height:1;text-align:center;font-size:.8em}.audio-player .controls .volume-wrapper{width:100px;padding:0 .25rem}.audio-player .controls .loop,.audio-player .controls .next,.audio-player .controls .play,.audio-player .controls .plist,.audio-player .controls .prev,.audio-player .controls .random,.audio-player .controls .shuffle,.audio-player .controls .stop,.audio-player .controls .volume{color:#b3b3b3}.audio-player .controls .loop:active,.audio-player .controls .loop:hover,.audio-player .controls .next:active,.audio-player .controls .next:hover,.audio-player .controls .play:active,.audio-player .controls .play:hover,.audio-player .controls .plist:active,.audio-player .controls .plist:hover,.audio-player .controls .prev:active,.audio-player .controls .prev:hover,.audio-player .controls .random:active,.audio-player .controls .random:hover,.audio-player .controls .shuffle:active,.audio-player .controls .shuffle:hover,.audio-player .controls .stop:active,.audio-player .controls .stop:hover,.audio-player .controls .volume:active,.audio-player .controls .volume:hover{color:#fff}.audio-player .controls .loop.active{color:#7ad61d}.audio-player .controls .control-element:disabled{color:#555}.audio-player .play-list-wrapper{display:block;position:relative;padding:.625rem;border-bottom:1px solid #555}.audio-player .play-list-wrapper:after,.audio-player .play-list-wrapper:before{display:table;content:""}.audio-player .play-list-wrapper.not-visible{display:none}.audio-player .album-title{font-size:2rem;color:#fff;font-weight:lighter;margin:0 0 .625rem;padding-bottom:.625rem;border-bottom:1px solid #555}.audio-player .poster{float:left;width:10rem;height:100%}.audio-player .album-desc{padding:.625rem;color:#eee;font-size:.6875rem}.audio-player .play-list{list-style:none;padding:10px;color:#fff;display:block;font-size:.8em;width:100%}.audio-player .play-list li{padding:.125rem 1rem;cursor:pointer;position:relative}.audio-player .play-list li:hover{background:#555}.audio-player .play-list li.current{color:#1ba1e2;text-shadow:2px 2px 4px rgba(0,0,0,.4)}.audio-player .play-list li.current:before{content:"\25B6";position:absolute;left:.25rem}.audio-player .poster~.play-list{margin:0 0 0 11rem;width:calc(100% - 11rem)}.audio-player.medium .loop,.audio-player.medium .next,.audio-player.medium .plist,.audio-player.medium .prev,.audio-player.medium .random,.audio-player.medium .stop,.audio-player.micro .info-box,.audio-player.micro .loop,.audio-player.micro .next,.audio-player.micro .plist,.audio-player.micro .prev,.audio-player.micro .random,.audio-player.micro .stop,.audio-player.micro .stream-wrapper,.audio-player.micro .volume,.audio-player.micro .volume-wrapper,.audio-player.small .loop,.audio-player.small .next,.audio-player.small .plist,.audio-player.small .prev,.audio-player.small .random,.audio-player.small .stop,.audio-player.small .stream-wrapper{display:none}.select2-container{box-sizing:border-box;display:inline-block;margin:.3125rem 0;position:relative;vertical-align:middle;height:auto}.select2-container .select2-selection--single{box-sizing:border-box;cursor:pointer;display:block;min-height:2.125rem;user-select:none}.select2-container .select2-selection--single .select2-selection__rendered{display:block;padding-left:8px;padding-right:20px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.select2-container .select2-selection--multiple{box-sizing:border-box;cursor:pointer;display:block;min-height:2.125rem;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;z-index:998}.select2-container .select2-selection--multiple .select2-selection__rendered{display:inline-block;overflow:hidden;padding-left:8px;text-overflow:ellipsis;white-space:nowrap}.select2-container .select2-container .select2-search--inline{float:left}.select2-container .select2-container .select2-search--inline .select2-search__field{box-sizing:border-box;border:none;font-size:100%;margin-top:5px}.select2-container .select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button{-webkit-appearance:none}.select2-dropdown{background-color:#fff;border:1px solid #aaa;border-radius:0;box-sizing:border-box;display:block;position:absolute;left:-100000px;width:100%;z-index:1051;box-shadow:0 0 20px 0 rgba(0,0,0,.2)}.select2-results{display:block}.select2-results__options{list-style:none;margin:0;padding:0}.select2-results__option{padding:6px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.select2-results__option[aria-selected]{cursor:pointer}.select2-container--open .select2-dropdown{left:0}.select2-search--dropdown{display:block;padding:4px}.select2-search--dropdown .select2-search__field{padding:4px;width:100%;box-sizing:border-box}.select2-search--dropdown .select2-search__field::-webkit-search-cancel-button{-webkit-appearance:none}.select2-search--dropdown.select2-search--hide{display:none}.select2-close-mask{border:0;margin:0;padding:0;display:block;position:fixed;left:0;top:0;min-height:100%;min-width:100%;height:auto;width:auto;opacity:0;z-index:2;background-color:#fff;filter:alpha(opacity=0)}.select2-container--default .select2-selection--single{background-color:#fff;border:1px solid #aaa}.select2-container--default .select2-selection--single .select2-selection__rendered{color:#444;line-height:28px}.select2-container--default .select2-selection--single .select2-selection__clear{cursor:pointer;float:right;font-weight:700}.select2-container--default .select2-selection--single .select2-selection__placeholder{color:#999}.select2-container--default .select2-selection--single .select2-selection__arrow{height:26px;position:absolute;top:1px;right:1px;width:20px}.dataTable .sortable-column:after,.dataTable .sorting:after,.dataTable .sorting_asc:after,.dataTable .sorting_desc:after{line-height:1;width:1rem;margin-top:-.5rem;height:1rem;top:50%}.select2-container--default .select2-selection--single .select2-selection__arrow b{border-color:#888 transparent transparent;border-style:solid;border-width:5px 4px 0;height:0;left:50%;margin-left:-4px;margin-top:-2px;position:absolute;top:50%;width:0}.select2-container--default.select2-container--disabled .select2-selection--single{background-color:#eee;cursor:default}.select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear{display:none}.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b{border-color:transparent transparent #888;border-width:0 4px 5px}.select2-container--default .select2-selection--multiple{background-color:#fff;border:1px solid #aaa;cursor:text}.select2-container--default .select2-selection--multiple .select2-selection__rendered{box-sizing:border-box;list-style:none;margin:0;padding:0 5px;width:100%}.select2-container--default .select2-selection--multiple .select2-selection__placeholder{color:#999;margin-top:5px;float:left}.select2-container--default .select2-selection--multiple .select2-selection__clear{cursor:pointer;float:right;font-weight:700;margin-top:5px;margin-right:10px}.select2-container--default .select2-selection--multiple .select2-selection__choice{background-color:#eee;border:1px solid #999;color:#1d1d1d;font-size:.875rem;cursor:default;float:left;margin-right:5px;margin-top:5px;padding:0 5px;vertical-align:middle;box-shadow:0 2px 4px rgba(0,0,0,.35)}.select2-container--default .select2-selection--multiple .select2-selection__choice__remove{color:#999;cursor:pointer;display:inline-block;margin-right:2px}.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover{color:#333}.select2-container--default.select2-container--focus .select2-selection--multiple,.select2-container--default.select2-container--focus .select2-selection--single{border:1px solid #000;outline:0}.select2-container--default.select2-container--disabled .select2-selection--multiple{background-color:#eee;cursor:default}.select2-container--default.select2-container--disabled .select2-selection__choice__remove{display:none}.select2-container--default .select2-search--dropdown .select2-search__field{border:1px solid #aaa}.select2-container--default .select2-search--inline .select2-search__field{background:0 0;border:none;outline:0}.select2-container--default .select2-results>.select2-results__options{max-height:200px;overflow-y:auto}.select2-container--default .select2-results__option[role=group]{padding:0}.select2-container--default .select2-results__option[aria-disabled=true]{color:#999}.select2-container--default .select2-results__option[aria-selected=true]{background-color:#ddd}.select2-container--default .select2-results__option .select2-results__option{padding-left:1em}.select2-container--default .select2-results__option .select2-results__option .select2-results__group{padding-left:0}.select2-container--default .select2-results__option .select2-results__option .select2-results__option{margin-left:-1em;padding-left:2em}.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-2em;padding-left:3em}.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-3em;padding-left:4em}.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-4em;padding-left:5em}.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-5em;padding-left:6em}.select2-container--default .select2-results__option--highlighted[aria-selected]{background-color:#5897fb;color:#fff}.select2-container--default .select2-results__group{cursor:default;display:block;padding:6px}.select2-container input{outline:0}.select2-container .select2-search.select2-search--inline input{margin-top:7px;padding:0}.input-control .select2-container{margin:0}.input-control.required .select2-selection{border:1px dashed #1ba1e2}.input-control.error .select2-selection{border:1px solid #ce352c}.input-control.warning .select2-selection{border:1px solid #e3c800}.input-control.success .select2-selection{border:1px solid #60a917}.input-control.info .select2-selection{border:1px solid #1ba1e2}.dataTable{width:100%;margin:.625rem 0}.dataTable td,.dataTable th{padding:.625rem}.dataTable thead{border-bottom:4px solid #999}.dataTable thead td,.dataTable thead th{cursor:default;font-weight:700}.dataTable tfoot{border-top:4px solid #999}.dataTable.bordered tbody tr:first-child td,.dataTable.bordered thead tr:first-child td,.dataTable.bordered thead tr:first-child th{border-top:none}.dataTable tfoot td,.dataTable tfoot th{cursor:default;font-weight:700}.dataTable tbody td{padding:.625rem .85rem}.dataTable .sortable-column{position:relative;cursor:pointer;user-select:none}.dataTable .sortable-column,.dataTable .sorting{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none}.dataTable .sortable-column:after{position:absolute;content:"";left:100%;margin-left:-20px;color:inherit;font-size:1rem}.dataTable .sortable-column.sort-asc,.dataTable .sortable-column.sort-desc{background-color:#eee}.dataTable .sortable-column.sort-asc:after,.dataTable .sortable-column.sort-desc:after{color:#1d1d1d}.dataTable .sortable-column.sort-asc:after{content:"\2191"}.dataTable .sortable-column.sort-desc:after{content:"\2193"}.dataTable.sortable-markers-on-left .sortable-column{padding-left:30px}.dataTable.sortable-markers-on-left .sortable-column:after,.dataTable.sortable-markers-on-left .sortable-column:before{left:0;margin-left:10px}.dataTable tr.selected td{background-color:rgba(28,183,236,.1)}.dataTable td.selected{background-color:rgba(28,183,236,.3)}.dataTable.striped tbody tr:nth-child(odd){background:#eee}.dataTable.hovered tbody tr:hover{background-color:rgba(28,183,236,.1)}.dataTable.cell-hovered tbody td:hover{background-color:rgba(28,183,236,.3)}.dataTable.border,.dataTable.bordered td,.dataTable.bordered th{border:1px solid #999}.dataTable.bordered tbody tr:last-child td{border-bottom:none}.dataTable .condensed td,.dataTable .condensed th{padding:.3125rem}.dataTable .super-condensed td,.dataTable .super-condensed th{padding:.125rem}.dataTable tbody tr.error{background-color:#ce352c;color:#fff}.dataTable tbody tr.error:hover{background-color:#da5a53}.dataTable tbody tr.warning{background-color:#fa6800;color:#fff}.dataTable tbody tr.warning:hover{background-color:#ffc194}.dataTable tbody tr.success{background-color:#60a917;color:#fff}.dataTable tbody tr.success:hover{background-color:#7ad61d}.dataTable tbody tr.info{background-color:#1ba1e2;color:#fff}.dataTable tbody tr.info:hover{background-color:#59cde2}.dataTable .sorting.sort-asc,.dataTable .sorting.sort-desc,.dataTable .sorting_asc,.dataTable .sorting_desc{background-color:#eee}.dataTable .sorting{position:relative;cursor:pointer;user-select:none}.dataTable .sorting:after{position:absolute;content:"";left:100%;margin-left:-20px;color:inherit;font-size:1rem}.dataTable .sorting.sort-asc:after,.dataTable .sorting.sort-desc:after{color:#1d1d1d}.dataTable .sorting.sort-asc:after{content:"\2191"}.dataTable .sorting.sort-desc:after{content:"\2193"}.dataTable .sorting_asc,.dataTable .sorting_desc{position:relative}.dataTable .sorting_asc:after,.dataTable .sorting_desc:after{position:absolute;left:100%;margin-left:-20px;font-size:1.1rem}.dataTable .sorting_asc:after{color:#1d1d1d;content:"\2191"}.dataTable .sorting_desc:after{color:#1d1d1d;content:"\2193"}.dataTables_paginate{display:block;float:left;width:50%;margin:0}.dataTables_paginate:after,.dataTables_paginate:before{display:table;content:""}.dataTables_paginate>.item{display:block;float:left;margin-left:.0652rem;padding:.25rem .625rem;background-color:#fff;cursor:pointer;border:1px solid #eee;text-align:center;font-size:.875rem;color:#1d1d1d}.dataTables_paginate>.item:first-child{margin-left:0}.dataTables_paginate>.item.active,.dataTables_paginate>.item.current{background-color:#1ba1e2;border-color:#59cde2;color:#fff;text-shadow:2px 2px 4px rgba(0,0,0,.4)}.dataTables_paginate>.item:hover{background-color:#75c7ee;border-color:#75c7ee;color:#fff}.dataTables_paginate>.item.disabled,.dataTables_paginate>.item:disabled{cursor:default;background-color:#eee;border-color:#eee;color:#999}.dataTables_paginate>.item.spaces{border:0;cursor:default;color:#1d1d1d}.dataTables_paginate>.item.spaces:hover{background-color:inherit;color:#1d1d1d}.dataTables_paginate.rounded>.item{border-radius:.3125rem}.dataTables_paginate.cycle>.item{width:28px;height:28px;border-radius:50%;font-size:.7rem;padding:.4375rem 0}.dataTables_paginate.no-border>.item{border:0}.dataTables_paginate.no-border>.item:hover{color:#59cde2;background-color:transparent}.dataTables_paginate.no-border>.item.disabled,.dataTables_paginate.no-border>.item:disabled{cursor:default;background-color:transparent;border-color:transparent;color:#999}.dataTables_paginate.no-border>.item.active:hover,.dataTables_paginate.no-border>.item.current:hover{background-color:#75c7ee;border-color:#75c7ee;color:#fff}.dataTables_paginate .paginate_button{display:block;float:left;margin-left:.0652rem;padding:.25rem .625rem;background-color:#fff;cursor:pointer;border:1px solid #eee;text-align:center;font-size:.875rem;color:#1d1d1d}.dataTables_paginate .paginate_button:first-child{margin-left:0}.dataTables_paginate .paginate_button.active,.dataTables_paginate .paginate_button.current{background-color:#1ba1e2;border-color:#59cde2;color:#fff;text-shadow:2px 2px 4px rgba(0,0,0,.4)}.dataTables_paginate .paginate_button:hover{background-color:#75c7ee;border-color:#75c7ee;color:#fff}.dataTables_paginate .paginate_button.disabled,.dataTables_paginate .paginate_button:disabled{cursor:default;background-color:#eee;border-color:#eee;color:#999}.dataTables_paginate .paginate_button.spaces{border:0;cursor:default;color:#1d1d1d}.dataTables_paginate .paginate_button.spaces:hover{background-color:inherit;color:#1d1d1d}.after-fg-black:after,.before-fg-black:before,.fg-active-black:active,.fg-black,.fg-focus-black:focus,.fg-hover-black:hover{color:#000!important}.dataTables_paginate .ellipsis{display:block;float:left;padding:.25rem .625rem}.dataTables_info{padding:5px;background-color:#eee;font-size:.875rem;float:right}.dataTables_filter input,.dataTables_length select{-moz-appearance:none;-webkit-appearance:none;padding:.3125rem}.dataTables_length{display:block;float:left;margin:.625rem 0}.dataTables_length select{appearance:none;margin:0 .125rem;border:1px solid #d9d9d9}.dataTables_length select:focus{outline:0;border-color:#1d1d1d}.dataTables_filter{display:block;float:right;margin:.625rem 0}.dataTables_filter label>input{margin:0 0 0 .25rem}.dataTables_filter input{appearance:none;border:1px solid #d9d9d9}.dataTables_filter input:focus{outline:0;border-color:#1d1d1d}.flexbox{display:-webkit-flex;display:flex}.flex-dir-row{-webkit-flex-direction:row;flex-direction:row}.flex-dir-row-reverse{-webkit-flex-direction:row-reverse;flex-direction:row-reverse}.flex-dir-column{-webkit-flex-direction:column;flex-direction:column}.flex-dir-column-reverse{-webkit-flex-direction:column-reverse;flex-direction:column-reverse}.flex-wrap{-webkit-flex-wrap:wrap;flex-wrap:wrap}.flex-wrap-reverse{-webkit-flex-wrap:wrap-reverse;flex-wrap:wrap-reverse}.flex-no-wrap{-webkit-flex-wrap:nowrap;flex-wrap:nowrap}.flex-just-start{-webkit-justify-content:flex-start;justify-content:flex-start}.flex-just-end{-webkit-justify-content:flex-end;justify-content:flex-end}.flex-just-center{-webkit-justify-content:center;justify-content:center}.flex-just-sa{-webkit-justify-content:space-around;justify-content:space-around}.flex-just-sb{-webkit-justify-content:space-between;justify-content:space-between}.flex-align-stretch{-webkit-align-items:stretch;align-items:stretch}.flex-align-start{-webkit-align-items:flex-start;align-items:flex-start}.flex-align-end{-webkit-align-items:flex-end;align-items:flex-end}.flex-align-center{-webkit-align-items:center;align-items:center}.flex-align-base{-webkit-align-items:baseline;align-items:baseline}.flex-content-stretch{-webkit-align-content:stretch;align-content:stretch}.flex-content-start{-webkit-align-content:flex-start;align-content:flex-start}.flex-content-end{-webkit-align-content:flex-end;align-content:flex-end}.flex-content-center{-webkit-align-content:center;align-content:center}.flex-content-sb{-webkit-align-content:space-between;align-content:space-between}.flex-content-sa{-webkit-align-content:space-around;align-content:space-around}.flex-self-auto{-webkit-align-self:auto;align-self:auto}.flex-self-start{-webkit-align-self:flex-start;align-self:flex-start}.flex-self-end{-webkit-align-self:flex-end;align-self:flex-end}.flex-self-center{-webkit-align-self:center;align-self:center}.flex-self-base{-webkit-align-self:baseline;align-self:baseline}.flex-self-stretch{-webkit-align-self:stretch;align-self:stretch}.no-shrink{-webkit-flex-shrink:0!important;flex-shrink:0!important}.no-grow{-webkit-flex-grow:0!important;flex-grow:0!important}.flex-size-auto{-webkit-flex:1 auto;flex:1 auto}.flex-size1{-webkit-flex-grow:1;flex-grow:1}.flex-size2{-webkit-flex-grow:2;flex-grow:2}.flex-size3{-webkit-flex-grow:3;flex-grow:3}.flex-size4{-webkit-flex-grow:4;flex-grow:4}.flex-size5{-webkit-flex-grow:5;flex-grow:5}.flex-size6{-webkit-flex-grow:6;flex-grow:6}.flex-size7{-webkit-flex-grow:7;flex-grow:7}.flex-size8{-webkit-flex-grow:8;flex-grow:8}.flex-size9{-webkit-flex-grow:9;flex-grow:9}.flex-size10{-webkit-flex-grow:10;flex-grow:10}.flex-size11{-webkit-flex-grow:11;flex-grow:11}.flex-size12{-webkit-flex-grow:12;flex-grow:12}.flex-size-p10{-webkit-flex:0 0 10%;flex:0 0 10%}.flex-size-p20{-webkit-flex:0 0 20%;flex:0 0 20%}.flex-size-p30{-webkit-flex:0 0 30%;flex:0 0 30%}.flex-size-p40{-webkit-flex:0 0 40%;flex:0 0 40%}.flex-size-p50{-webkit-flex:0 0 50%;flex:0 0 50%}.flex-size-p60{-webkit-flex:0 0 60%;flex:0 0 60%}.flex-size-p70{-webkit-flex:0 0 70%;flex:0 0 70%}.flex-size-p80{-webkit-flex:0 0 80%;flex:0 0 80%}.flex-size-p90{-webkit-flex:0 0 90%;flex:0 0 90%}.flex-size-p100{-webkit-flex:0 0 100%;flex:0 0 100%}.flex-size-x100{-webkit-flex:0 0 100px;flex:0 0 100px}.flex-size-x200{-webkit-flex:0 0 200px;flex:0 0 200px}.flex-size-x300{-webkit-flex:0 0 300px;flex:0 0 300px}.flex-size-x400{-webkit-flex:0 0 400px;flex:0 0 400px}.flex-size-x500{-webkit-flex:0 0 500px;flex:0 0 500px}.flex-size-x600{-webkit-flex:0 0 600px;flex:0 0 600px}.flex-size-x700{-webkit-flex:0 0 700px;flex:0 0 700px}.flex-size-x800{-webkit-flex:0 0 800px;flex:0 0 800px}.flex-size-x900{-webkit-flex:0 0 900px;flex:0 0 900px}.flex-size-x1000{-webkit-flex:0 0 1000px;flex:0 0 1000px}.op-default{background-color:rgba(27,161,226,.7)}.bg-black{background-color:#000!important}.bd-black{border-color:#000!important}.ol-black{outline-color:#000!important}.op-black{background-color:rgba(0,0,0,.7)}.ribbed-black{background: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)#000!important;background-size:40px 40px!important}.after-bg-black:after,.before-bg-black:before,.bg-active-black:active,.bg-focus-black:focus,.bg-hover-black:hover{background:#000!important}.after-fg-white:after,.before-fg-white:before,.fg-active-white:active,.fg-focus-white:focus,.fg-hover-white:hover,.fg-white{color:#fff!important}.bg-white{background-color:#fff!important}.bd-white{border-color:#fff!important}.ol-white{outline-color:#fff!important}.op-white{background-color:rgba(255,255,255,.7)}.ribbed-white{background: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)#fff!important;background-size:40px 40px!important}.after-bg-white:after,.before-bg-white:before,.bg-active-white:active,.bg-focus-white:focus,.bg-hover-white:hover{background:#fff!important}.after-fg-lime:after,.before-fg-lime:before,.fg-active-lime:active,.fg-focus-lime:focus,.fg-hover-lime:hover,.fg-lime{color:#a4c400!important}.bg-lime{background-color:#a4c400!important}.bd-lime{border-color:#a4c400!important}.ol-lime{outline-color:#a4c400!important}.op-lime{background-color:rgba(164,196,0,.7)}.ribbed-lime{background: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)#a4c400!important;background-size:40px 40px!important}.after-bg-lime:after,.before-bg-lime:before,.bg-active-lime:active,.bg-focus-lime:focus,.bg-hover-lime:hover{background:#a4c400!important}.after-fg-green:after,.before-fg-green:before,.fg-active-green:active,.fg-focus-green:focus,.fg-green,.fg-hover-green:hover{color:#60a917!important}.bg-green{background-color:#60a917!important}.bd-green{border-color:#60a917!important}.ol-green{outline-color:#60a917!important}.op-green{background-color:rgba(96,169,23,.7)}.ribbed-green{background: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)#60a917!important;background-size:40px 40px!important}.after-bg-green:after,.before-bg-green:before,.bg-active-green:active,.bg-focus-green:focus,.bg-hover-green:hover{background:#60a917!important}.after-fg-emerald:after,.before-fg-emerald:before,.fg-active-emerald:active,.fg-emerald,.fg-focus-emerald:focus,.fg-hover-emerald:hover{color:#008a00!important}.bg-emerald{background-color:#008a00!important}.bd-emerald{border-color:#008a00!important}.ol-emerald{outline-color:#008a00!important}.op-emerald{background-color:rgba(0,138,0,.7)}.ribbed-emerald{background: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)#008a00!important;background-size:40px 40px!important}.after-bg-emerald:after,.before-bg-emerald:before,.bg-active-emerald:active,.bg-focus-emerald:focus,.bg-hover-emerald:hover{background:#008a00!important}.after-fg-blue:after,.before-fg-blue:before,.fg-active-blue:active,.fg-blue,.fg-focus-blue:focus,.fg-hover-blue:hover{color:#00aff0!important}.bg-blue{background-color:#00aff0!important}.bd-blue{border-color:#00aff0!important}.ol-blue{outline-color:#00aff0!important}.op-blue{background-color:rgba(0,175,240,.7)}.ribbed-blue{background: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)#00aff0!important;background-size:40px 40px!important}.after-bg-blue:after,.before-bg-blue:before,.bg-active-blue:active,.bg-focus-blue:focus,.bg-hover-blue:hover{background:#00aff0!important}.after-fg-teal:after,.before-fg-teal:before,.fg-active-teal:active,.fg-focus-teal:focus,.fg-hover-teal:hover,.fg-teal{color:#00aba9!important}.bg-teal{background-color:#00aba9!important}.bd-teal{border-color:#00aba9!important}.ol-teal{outline-color:#00aba9!important}.op-teal{background-color:rgba(0,171,169,.7)}.ribbed-teal{background: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)#00aba9!important;background-size:40px 40px!important}.after-bg-teal:after,.before-bg-teal:before,.bg-active-teal:active,.bg-focus-teal:focus,.bg-hover-teal:hover{background:#00aba9!important}.after-fg-cyan:after,.before-fg-cyan:before,.fg-active-cyan:active,.fg-cyan,.fg-focus-cyan:focus,.fg-hover-cyan:hover{color:#1ba1e2!important}.bg-cyan{background-color:#1ba1e2!important}.bd-cyan{border-color:#1ba1e2!important}.ol-cyan{outline-color:#1ba1e2!important}.op-cyan{background-color:rgba(27,161,226,.7)}.ribbed-cyan{background: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)#1ba1e2!important;background-size:40px 40px!important}.after-bg-cyan:after,.before-bg-cyan:before,.bg-active-cyan:active,.bg-focus-cyan:focus,.bg-hover-cyan:hover{background:#1ba1e2!important}.after-fg-cobalt:after,.before-fg-cobalt:before,.fg-active-cobalt:active,.fg-cobalt,.fg-focus-cobalt:focus,.fg-hover-cobalt:hover{color:#0050ef!important}.bg-cobalt{background-color:#0050ef!important}.bd-cobalt{border-color:#0050ef!important}.ol-cobalt{outline-color:#0050ef!important}.op-cobalt{background-color:rgba(0,80,239,.7)}.ribbed-cobalt{background: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)#0050ef!important;background-size:40px 40px!important}.after-bg-cobalt:after,.before-bg-cobalt:before,.bg-active-cobalt:active,.bg-focus-cobalt:focus,.bg-hover-cobalt:hover{background:#0050ef!important}.after-fg-indigo:after,.before-fg-indigo:before,.fg-active-indigo:active,.fg-focus-indigo:focus,.fg-hover-indigo:hover,.fg-indigo{color:#6a00ff!important}.bg-indigo{background-color:#6a00ff!important}.bd-indigo{border-color:#6a00ff!important}.ol-indigo{outline-color:#6a00ff!important}.op-indigo{background-color:rgba(106,0,255,.7)}.ribbed-indigo{background: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)#6a00ff!important;background-size:40px 40px!important}.after-bg-indigo:after,.before-bg-indigo:before,.bg-active-indigo:active,.bg-focus-indigo:focus,.bg-hover-indigo:hover{background:#6a00ff!important}.after-fg-violet:after,.before-fg-violet:before,.fg-active-violet:active,.fg-focus-violet:focus,.fg-hover-violet:hover,.fg-violet{color:#a0f!important}.bg-violet{background-color:#a0f!important}.bd-violet{border-color:#a0f!important}.ol-violet{outline-color:#a0f!important}.op-violet{background-color:rgba(170,0,255,.7)}.ribbed-violet{background: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)#a0f!important;background-size:40px 40px!important}.after-bg-violet:after,.before-bg-violet:before,.bg-active-violet:active,.bg-focus-violet:focus,.bg-hover-violet:hover{background:#a0f!important}.after-fg-pink:after,.before-fg-pink:before,.fg-active-pink:active,.fg-focus-pink:focus,.fg-hover-pink:hover,.fg-pink{color:#dc4fad!important}.bg-pink{background-color:#dc4fad!important}.bd-pink{border-color:#dc4fad!important}.ol-pink{outline-color:#dc4fad!important}.op-pink{background-color:rgba(220,79,173,.7)}.ribbed-pink{background: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)#dc4fad!important;background-size:40px 40px!important}.after-bg-pink:after,.before-bg-pink:before,.bg-active-pink:active,.bg-focus-pink:focus,.bg-hover-pink:hover{background:#dc4fad!important}.after-fg-magenta:after,.before-fg-magenta:before,.fg-active-magenta:active,.fg-focus-magenta:focus,.fg-hover-magenta:hover,.fg-magenta{color:#d80073!important}.bg-magenta{background-color:#d80073!important}.bd-magenta{border-color:#d80073!important}.ol-magenta{outline-color:#d80073!important}.op-magenta{background-color:rgba(216,0,115,.7)}.ribbed-magenta{background: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)#d80073!important;background-size:40px 40px!important}.after-bg-magenta:after,.before-bg-magenta:before,.bg-active-magenta:active,.bg-focus-magenta:focus,.bg-hover-magenta:hover{background:#d80073!important}.after-fg-crimson:after,.before-fg-crimson:before,.fg-active-crimson:active,.fg-crimson,.fg-focus-crimson:focus,.fg-hover-crimson:hover{color:#a20025!important}.bg-crimson{background-color:#a20025!important}.bd-crimson{border-color:#a20025!important}.ol-crimson{outline-color:#a20025!important}.op-crimson{background-color:rgba(162,0,37,.7)}.ribbed-crimson{background: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)#a20025!important;background-size:40px 40px!important}.after-bg-crimson:after,.before-bg-crimson:before,.bg-active-crimson:active,.bg-focus-crimson:focus,.bg-hover-crimson:hover{background:#a20025!important}.after-fg-red:after,.before-fg-red:before,.fg-active-red:active,.fg-focus-red:focus,.fg-hover-red:hover,.fg-red{color:#ce352c!important}.bg-red{background-color:#ce352c!important}.bd-red{border-color:#ce352c!important}.ol-red{outline-color:#ce352c!important}.op-red{background-color:rgba(206,53,44,.7)}.ribbed-red{background: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)#ce352c!important;background-size:40px 40px!important}.after-bg-red:after,.before-bg-red:before,.bg-active-red:active,.bg-focus-red:focus,.bg-hover-red:hover{background:#ce352c!important}.after-fg-orange:after,.before-fg-orange:before,.fg-active-orange:active,.fg-focus-orange:focus,.fg-hover-orange:hover,.fg-orange{color:#fa6800!important}.bg-orange{background-color:#fa6800!important}.bd-orange{border-color:#fa6800!important}.ol-orange{outline-color:#fa6800!important}.op-orange{background-color:rgba(250,104,0,.7)}.ribbed-orange{background: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)#fa6800!important;background-size:40px 40px!important}.after-bg-orange:after,.before-bg-orange:before,.bg-active-orange:active,.bg-focus-orange:focus,.bg-hover-orange:hover{background:#fa6800!important}.after-fg-amber:after,.before-fg-amber:before,.fg-active-amber:active,.fg-amber,.fg-focus-amber:focus,.fg-hover-amber:hover{color:#f0a30a!important}.bg-amber{background-color:#f0a30a!important}.bd-amber{border-color:#f0a30a!important}.ol-amber{outline-color:#f0a30a!important}.op-amber{background-color:rgba(240,163,10,.7)}.ribbed-amber{background: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)#f0a30a!important;background-size:40px 40px!important}.after-bg-amber:after,.before-bg-amber:before,.bg-active-amber:active,.bg-focus-amber:focus,.bg-hover-amber:hover{background:#f0a30a!important}.after-fg-yellow:after,.before-fg-yellow:before,.fg-active-yellow:active,.fg-focus-yellow:focus,.fg-hover-yellow:hover,.fg-yellow{color:#e3c800!important}.bg-yellow{background-color:#e3c800!important}.bd-yellow{border-color:#e3c800!important}.ol-yellow{outline-color:#e3c800!important}.op-yellow{background-color:rgba(227,200,0,.7)}.ribbed-yellow{background: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)#e3c800!important;background-size:40px 40px!important}.after-bg-yellow:after,.before-bg-yellow:before,.bg-active-yellow:active,.bg-focus-yellow:focus,.bg-hover-yellow:hover{background:#e3c800!important}.after-fg-brown:after,.before-fg-brown:before,.fg-active-brown:active,.fg-brown,.fg-focus-brown:focus,.fg-hover-brown:hover{color:#825a2c!important}.bg-brown{background-color:#825a2c!important}.bd-brown{border-color:#825a2c!important}.ol-brown{outline-color:#825a2c!important}.op-brown{background-color:rgba(130,90,44,.7)}.ribbed-brown{background: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)#825a2c!important;background-size:40px 40px!important}.after-bg-brown:after,.before-bg-brown:before,.bg-active-brown:active,.bg-focus-brown:focus,.bg-hover-brown:hover{background:#825a2c!important}.after-fg-olive:after,.before-fg-olive:before,.fg-active-olive:active,.fg-focus-olive:focus,.fg-hover-olive:hover,.fg-olive{color:#6d8764!important}.bg-olive{background-color:#6d8764!important}.bd-olive{border-color:#6d8764!important}.ol-olive{outline-color:#6d8764!important}.op-olive{background-color:rgba(109,135,100,.7)}.ribbed-olive{background: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)#6d8764!important;background-size:40px 40px!important}.after-bg-olive:after,.before-bg-olive:before,.bg-active-olive:active,.bg-focus-olive:focus,.bg-hover-olive:hover{background:#6d8764!important}.after-fg-steel:after,.before-fg-steel:before,.fg-active-steel:active,.fg-focus-steel:focus,.fg-hover-steel:hover,.fg-steel{color:#647687!important}.bg-steel{background-color:#647687!important}.bd-steel{border-color:#647687!important}.ol-steel{outline-color:#647687!important}.op-steel{background-color:rgba(100,118,135,.7)}.ribbed-steel{background: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)#647687!important;background-size:40px 40px!important}.after-bg-steel:after,.before-bg-steel:before,.bg-active-steel:active,.bg-focus-steel:focus,.bg-hover-steel:hover{background:#647687!important}.after-fg-mauve:after,.before-fg-mauve:before,.fg-active-mauve:active,.fg-focus-mauve:focus,.fg-hover-mauve:hover,.fg-mauve{color:#76608a!important}.bg-mauve{background-color:#76608a!important}.bd-mauve{border-color:#76608a!important}.ol-mauve{outline-color:#76608a!important}.op-mauve{background-color:rgba(118,96,138,.7)}.ribbed-mauve{background: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)#76608a!important;background-size:40px 40px!important}.after-bg-mauve:after,.before-bg-mauve:before,.bg-active-mauve:active,.bg-focus-mauve:focus,.bg-hover-mauve:hover{background:#76608a!important}.after-fg-taupe:after,.before-fg-taupe:before,.fg-active-taupe:active,.fg-focus-taupe:focus,.fg-hover-taupe:hover,.fg-taupe{color:#87794e!important}.bg-taupe{background-color:#87794e!important}.bd-taupe{border-color:#87794e!important}.ol-taupe{outline-color:#87794e!important}.op-taupe{background-color:rgba(135,121,78,.7)}.ribbed-taupe{background: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)#87794e!important;background-size:40px 40px!important}.after-bg-taupe:after,.before-bg-taupe:before,.bg-active-taupe:active,.bg-focus-taupe:focus,.bg-hover-taupe:hover{background:#87794e!important}.after-fg-dark:after,.before-fg-dark:before,.fg-active-dark:active,.fg-dark,.fg-focus-dark:focus,.fg-hover-dark:hover{color:#1d1d1d!important}.bg-dark{background-color:#1d1d1d!important}.bd-dark{border-color:#1d1d1d!important}.ol-dark{outline-color:#1d1d1d!important}.op-dark{background-color:rgba(29,29,29,.7)}.ribbed-dark{background: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)#1d1d1d!important;background-size:40px 40px!important}.after-bg-dark:after,.before-bg-dark:before,.bg-active-dark:active,.bg-focus-dark:focus,.bg-hover-dark:hover{background:#1d1d1d!important}.after-fg-darkBrown:after,.before-fg-darkBrown:before,.fg-active-darkBrown:active,.fg-darkBrown,.fg-focus-darkBrown:focus,.fg-hover-darkBrown:hover{color:#63362f!important}.bg-darkBrown{background-color:#63362f!important}.bd-darkBrown{border-color:#63362f!important}.ol-darkBrown{outline-color:#63362f!important}.op-darkBrown{background-color:rgba(99,54,47,.7)}.ribbed-darkBrown{background: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)#63362f!important;background-size:40px 40px!important}.after-bg-darkBrown:after,.before-bg-darkBrown:before,.bg-active-darkBrown:active,.bg-focus-darkBrown:focus,.bg-hover-darkBrown:hover{background:#63362f!important}.after-fg-darkCrimson:after,.before-fg-darkCrimson:before,.fg-active-darkCrimson:active,.fg-darkCrimson,.fg-focus-darkCrimson:focus,.fg-hover-darkCrimson:hover{color:#640024!important}.bg-darkCrimson{background-color:#640024!important}.bd-darkCrimson{border-color:#640024!important}.ol-darkCrimson{outline-color:#640024!important}.op-darkCrimson{background-color:rgba(100,0,36,.7)}.ribbed-darkCrimson{background: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)#640024!important;background-size:40px 40px!important}.after-bg-darkCrimson:after,.before-bg-darkCrimson:before,.bg-active-darkCrimson:active,.bg-focus-darkCrimson:focus,.bg-hover-darkCrimson:hover{background:#640024!important}.after-fg-darkMagenta:after,.before-fg-darkMagenta:before,.fg-active-darkMagenta:active,.fg-darkMagenta,.fg-focus-darkMagenta:focus,.fg-hover-darkMagenta:hover{color:#81003c!important}.bg-darkMagenta{background-color:#81003c!important}.bd-darkMagenta{border-color:#81003c!important}.ol-darkMagenta{outline-color:#81003c!important}.op-darkMagenta{background-color:rgba(129,0,60,.7)}.ribbed-darkMagenta{background: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)#81003c!important;background-size:40px 40px!important}.after-bg-darkMagenta:after,.before-bg-darkMagenta:before,.bg-active-darkMagenta:active,.bg-focus-darkMagenta:focus,.bg-hover-darkMagenta:hover{background:#81003c!important}.after-fg-darkIndigo:after,.before-fg-darkIndigo:before,.fg-active-darkIndigo:active,.fg-darkIndigo,.fg-focus-darkIndigo:focus,.fg-hover-darkIndigo:hover{color:#4b0096!important}.bg-darkIndigo{background-color:#4b0096!important}.bd-darkIndigo{border-color:#4b0096!important}.ol-darkIndigo{outline-color:#4b0096!important}.op-darkIndigo{background-color:rgba(75,0,150,.7)}.ribbed-darkIndigo{background: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)#4b0096!important;background-size:40px 40px!important}.after-bg-darkIndigo:after,.before-bg-darkIndigo:before,.bg-active-darkIndigo:active,.bg-focus-darkIndigo:focus,.bg-hover-darkIndigo:hover{background:#4b0096!important}.after-fg-darkCyan:after,.before-fg-darkCyan:before,.fg-active-darkCyan:active,.fg-darkCyan,.fg-focus-darkCyan:focus,.fg-hover-darkCyan:hover{color:#1b6eae!important}.bg-darkCyan{background-color:#1b6eae!important}.bd-darkCyan{border-color:#1b6eae!important}.ol-darkCyan{outline-color:#1b6eae!important}.op-darkCyan{background-color:rgba(27,110,174,.7)}.ribbed-darkCyan{background: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)#1b6eae!important;background-size:40px 40px!important}.after-bg-darkCyan:after,.before-bg-darkCyan:before,.bg-active-darkCyan:active,.bg-focus-darkCyan:focus,.bg-hover-darkCyan:hover{background:#1b6eae!important}.after-fg-darkCobalt:after,.before-fg-darkCobalt:before,.fg-active-darkCobalt:active,.fg-darkCobalt,.fg-focus-darkCobalt:focus,.fg-hover-darkCobalt:hover{color:#00356a!important}.bg-darkCobalt{background-color:#00356a!important}.bd-darkCobalt{border-color:#00356a!important}.ol-darkCobalt{outline-color:#00356a!important}.op-darkCobalt{background-color:rgba(0,53,106,.7)}.ribbed-darkCobalt{background: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)#00356a!important;background-size:40px 40px!important}.after-bg-darkCobalt:after,.before-bg-darkCobalt:before,.bg-active-darkCobalt:active,.bg-focus-darkCobalt:focus,.bg-hover-darkCobalt:hover{background:#00356a!important}.after-fg-darkTeal:after,.before-fg-darkTeal:before,.fg-active-darkTeal:active,.fg-darkTeal,.fg-focus-darkTeal:focus,.fg-hover-darkTeal:hover{color:#004050!important}.bg-darkTeal{background-color:#004050!important}.bd-darkTeal{border-color:#004050!important}.ol-darkTeal{outline-color:#004050!important}.op-darkTeal{background-color:rgba(0,64,80,.7)}.ribbed-darkTeal{background: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)#004050!important;background-size:40px 40px!important}.after-bg-darkTeal:after,.before-bg-darkTeal:before,.bg-active-darkTeal:active,.bg-focus-darkTeal:focus,.bg-hover-darkTeal:hover{background:#004050!important}.after-fg-darkEmerald:after,.before-fg-darkEmerald:before,.fg-active-darkEmerald:active,.fg-darkEmerald,.fg-focus-darkEmerald:focus,.fg-hover-darkEmerald:hover{color:#003e00!important}.bg-darkEmerald{background-color:#003e00!important}.bd-darkEmerald{border-color:#003e00!important}.ol-darkEmerald{outline-color:#003e00!important}.op-darkEmerald{background-color:rgba(0,62,0,.7)}.ribbed-darkEmerald{background: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)#003e00!important;background-size:40px 40px!important}.after-bg-darkEmerald:after,.before-bg-darkEmerald:before,.bg-active-darkEmerald:active,.bg-focus-darkEmerald:focus,.bg-hover-darkEmerald:hover{background:#003e00!important}.after-fg-darkGreen:after,.before-fg-darkGreen:before,.fg-active-darkGreen:active,.fg-darkGreen,.fg-focus-darkGreen:focus,.fg-hover-darkGreen:hover{color:#128023!important}.bg-darkGreen{background-color:#128023!important}.bd-darkGreen{border-color:#128023!important}.ol-darkGreen{outline-color:#128023!important}.op-darkGreen{background-color:rgba(18,128,35,.7)}.ribbed-darkGreen{background: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)#128023!important;background-size:40px 40px!important}.after-bg-darkGreen:after,.before-bg-darkGreen:before,.bg-active-darkGreen:active,.bg-focus-darkGreen:focus,.bg-hover-darkGreen:hover{background:#128023!important}.after-fg-darkOrange:after,.before-fg-darkOrange:before,.fg-active-darkOrange:active,.fg-darkOrange,.fg-focus-darkOrange:focus,.fg-hover-darkOrange:hover{color:#bf5a15!important}.bg-darkOrange{background-color:#bf5a15!important}.bd-darkOrange{border-color:#bf5a15!important}.ol-darkOrange{outline-color:#bf5a15!important}.op-darkOrange{background-color:rgba(191,90,21,.7)}.ribbed-darkOrange{background: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)#bf5a15!important;background-size:40px 40px!important}.after-bg-darkOrange:after,.before-bg-darkOrange:before,.bg-active-darkOrange:active,.bg-focus-darkOrange:focus,.bg-hover-darkOrange:hover{background:#bf5a15!important}.after-fg-darkRed:after,.before-fg-darkRed:before,.fg-active-darkRed:active,.fg-darkRed,.fg-focus-darkRed:focus,.fg-hover-darkRed:hover{color:#9a1616!important}.bg-darkRed{background-color:#9a1616!important}.bd-darkRed{border-color:#9a1616!important}.ol-darkRed{outline-color:#9a1616!important}.op-darkRed{background-color:rgba(154,22,22,.7)}.ribbed-darkRed{background: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)#9a1616!important;background-size:40px 40px!important}.after-bg-darkRed:after,.before-bg-darkRed:before,.bg-active-darkRed:active,.bg-focus-darkRed:focus,.bg-hover-darkRed:hover{background:#9a1616!important}.after-fg-darkPink:after,.before-fg-darkPink:before,.fg-active-darkPink:active,.fg-darkPink,.fg-focus-darkPink:focus,.fg-hover-darkPink:hover{color:#9a165a!important}.bg-darkPink{background-color:#9a165a!important}.bd-darkPink{border-color:#9a165a!important}.ol-darkPink{outline-color:#9a165a!important}.op-darkPink{background-color:rgba(154,22,90,.7)}.ribbed-darkPink{background: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)#9a165a!important;background-size:40px 40px!important}.after-bg-darkPink:after,.before-bg-darkPink:before,.bg-active-darkPink:active,.bg-focus-darkPink:focus,.bg-hover-darkPink:hover{background:#9a165a!important}.after-fg-darkViolet:after,.before-fg-darkViolet:before,.fg-active-darkViolet:active,.fg-darkViolet,.fg-focus-darkViolet:focus,.fg-hover-darkViolet:hover{color:#57169a!important}.bg-darkViolet{background-color:#57169a!important}.bd-darkViolet{border-color:#57169a!important}.ol-darkViolet{outline-color:#57169a!important}.op-darkViolet{background-color:rgba(87,22,154,.7)}.ribbed-darkViolet{background: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)#57169a!important;background-size:40px 40px!important}.after-bg-darkViolet:after,.before-bg-darkViolet:before,.bg-active-darkViolet:active,.bg-focus-darkViolet:focus,.bg-hover-darkViolet:hover{background:#57169a!important}.after-fg-darkBlue:after,.before-fg-darkBlue:before,.fg-active-darkBlue:active,.fg-darkBlue,.fg-focus-darkBlue:focus,.fg-hover-darkBlue:hover{color:#16499a!important}.bg-darkBlue{background-color:#16499a!important}.bd-darkBlue{border-color:#16499a!important}.ol-darkBlue{outline-color:#16499a!important}.op-darkBlue{background-color:rgba(22,73,154,.7)}.ribbed-darkBlue{background: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)#16499a!important;background-size:40px 40px!important}.after-bg-darkBlue:after,.before-bg-darkBlue:before,.bg-active-darkBlue:active,.bg-focus-darkBlue:focus,.bg-hover-darkBlue:hover{background:#16499a!important}.after-fg-lightBlue:after,.before-fg-lightBlue:before,.fg-active-lightBlue:active,.fg-focus-lightBlue:focus,.fg-hover-lightBlue:hover,.fg-lightBlue{color:#4390df!important}.bg-lightBlue{background-color:#4390df!important}.bd-lightBlue{border-color:#4390df!important}.ol-lightBlue{outline-color:#4390df!important}.op-lightBlue{background-color:rgba(67,144,223,.7)}.ribbed-lightBlue{background: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)#4390df!important;background-size:40px 40px!important}.after-bg-lightBlue:after,.before-bg-lightBlue:before,.bg-active-lightBlue:active,.bg-focus-lightBlue:focus,.bg-hover-lightBlue:hover{background:#4390df!important}.after-fg-lighterBlue:after,.before-fg-lighterBlue:before,.fg-active-lighterBlue:active,.fg-focus-lighterBlue:focus,.fg-hover-lighterBlue:hover,.fg-lighterBlue{color:#0cf!important}.bg-lighterBlue{background-color:#0cf!important}.bd-lighterBlue{border-color:#0cf!important}.ol-lighterBlue{outline-color:#0cf!important}.op-lighterBlue{background-color:rgba(0,204,255,.7)}.ribbed-lighterBlue{background: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)#0cf!important;background-size:40px 40px!important}.after-bg-lighterBlue:after,.before-bg-lighterBlue:before,.bg-active-lighterBlue:active,.bg-focus-lighterBlue:focus,.bg-hover-lighterBlue:hover{background:#0cf!important}.after-fg-lightTeal:after,.before-fg-lightTeal:before,.fg-active-lightTeal:active,.fg-focus-lightTeal:focus,.fg-hover-lightTeal:hover,.fg-lightTeal{color:#45fffd!important}.bg-lightTeal{background-color:#45fffd!important}.bd-lightTeal{border-color:#45fffd!important}.ol-lightTeal{outline-color:#45fffd!important}.op-lightTeal{background-color:rgba(69,255,253,.7)}.ribbed-lightTeal{background: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)#45fffd!important;background-size:40px 40px!important}.after-bg-lightTeal:after,.before-bg-lightTeal:before,.bg-active-lightTeal:active,.bg-focus-lightTeal:focus,.bg-hover-lightTeal:hover{background:#45fffd!important}.after-fg-lightOlive:after,.before-fg-lightOlive:before,.fg-active-lightOlive:active,.fg-focus-lightOlive:focus,.fg-hover-lightOlive:hover,.fg-lightOlive{color:#78aa1c!important}.bg-lightOlive{background-color:#78aa1c!important}.bd-lightOlive{border-color:#78aa1c!important}.ol-lightOlive{outline-color:#78aa1c!important}.op-lightOlive{background-color:rgba(120,170,28,.7)}.ribbed-lightOlive{background: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)#78aa1c!important;background-size:40px 40px!important}.after-bg-lightOlive:after,.before-bg-lightOlive:before,.bg-active-lightOlive:active,.bg-focus-lightOlive:focus,.bg-hover-lightOlive:hover{background:#78aa1c!important}.after-fg-lightOrange:after,.before-fg-lightOrange:before,.fg-active-lightOrange:active,.fg-focus-lightOrange:focus,.fg-hover-lightOrange:hover,.fg-lightOrange{color:#ffc194!important}.bg-lightOrange{background-color:#ffc194!important}.bd-lightOrange{border-color:#ffc194!important}.ol-lightOrange{outline-color:#ffc194!important}.op-lightOrange{background-color:rgba(255,193,148,.7)}.ribbed-lightOrange{background: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)#ffc194!important;background-size:40px 40px!important}.after-bg-lightOrange:after,.before-bg-lightOrange:before,.bg-active-lightOrange:active,.bg-focus-lightOrange:focus,.bg-hover-lightOrange:hover{background:#ffc194!important}.after-fg-lightPink:after,.before-fg-lightPink:before,.fg-active-lightPink:active,.fg-focus-lightPink:focus,.fg-hover-lightPink:hover,.fg-lightPink{color:#f472d0!important}.bg-lightPink{background-color:#f472d0!important}.bd-lightPink{border-color:#f472d0!important}.ol-lightPink{outline-color:#f472d0!important}.op-lightPink{background-color:rgba(244,114,208,.7)}.ribbed-lightPink{background: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)#f472d0!important;background-size:40px 40px!important}.after-bg-lightPink:after,.before-bg-lightPink:before,.bg-active-lightPink:active,.bg-focus-lightPink:focus,.bg-hover-lightPink:hover{background:#f472d0!important}.after-fg-lightRed:after,.before-fg-lightRed:before,.fg-active-lightRed:active,.fg-focus-lightRed:focus,.fg-hover-lightRed:hover,.fg-lightRed{color:#da5a53!important}.bg-lightRed{background-color:#da5a53!important}.bd-lightRed{border-color:#da5a53!important}.ol-lightRed{outline-color:#da5a53!important}.op-lightRed{background-color:rgba(218,90,83,.7)}.ribbed-lightRed{background: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)#da5a53!important;background-size:40px 40px!important}.after-bg-lightRed:after,.before-bg-lightRed:before,.bg-active-lightRed:active,.bg-focus-lightRed:focus,.bg-hover-lightRed:hover{background:#da5a53!important}.after-fg-lightGreen:after,.before-fg-lightGreen:before,.fg-active-lightGreen:active,.fg-focus-lightGreen:focus,.fg-hover-lightGreen:hover,.fg-lightGreen{color:#7ad61d!important}.bg-lightGreen{background-color:#7ad61d!important}.bd-lightGreen{border-color:#7ad61d!important}.ol-lightGreen{outline-color:#7ad61d!important}.op-lightGreen{background-color:rgba(122,214,29,.7)}.ribbed-lightGreen{background: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)#7ad61d!important;background-size:40px 40px!important}.after-bg-lightGreen:after,.before-bg-lightGreen:before,.bg-active-lightGreen:active,.bg-focus-lightGreen:focus,.bg-hover-lightGreen:hover{background:#7ad61d!important}.after-fg-lightCyan:after,.before-fg-lightCyan:before,.fg-active-lightCyan:active,.fg-focus-lightCyan:focus,.fg-hover-lightCyan:hover,.fg-lightCyan{color:#59cde2!important}.bg-lightCyan{background-color:#59cde2!important}.bd-lightCyan{border-color:#59cde2!important}.ol-lightCyan{outline-color:#59cde2!important}.op-lightCyan{background-color:rgba(89,205,226,.7)}.ribbed-lightCyan{background: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)#59cde2!important;background-size:40px 40px!important}.after-bg-lightCyan:after,.before-bg-lightCyan:before,.bg-active-lightCyan:active,.bg-focus-lightCyan:focus,.bg-hover-lightCyan:hover{background:#59cde2!important}.after-fg-grayed:after,.before-fg-grayed:before,.fg-active-grayed:active,.fg-focus-grayed:focus,.fg-grayed,.fg-hover-grayed:hover{color:#585858!important}.bg-grayed{background-color:#585858!important}.bd-grayed{border-color:#585858!important}.ol-grayed{outline-color:#585858!important}.op-grayed{background-color:rgba(88,88,88,.7)}.ribbed-grayed{background: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)#585858!important;background-size:40px 40px!important}.after-bg-grayed:after,.before-bg-grayed:before,.bg-active-grayed:active,.bg-focus-grayed:focus,.bg-hover-grayed:hover{background:#585858!important}.after-fg-grayDarker:after,.before-fg-grayDarker:before,.fg-active-grayDarker:active,.fg-focus-grayDarker:focus,.fg-grayDarker,.fg-hover-grayDarker:hover{color:#222!important}.bg-grayDarker{background-color:#222!important}.bd-grayDarker{border-color:#222!important}.ol-grayDarker{outline-color:#222!important}.op-grayDarker{background-color:rgba(34,34,34,.7)}.ribbed-grayDarker{background: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)#222!important;background-size:40px 40px!important}.after-bg-grayDarker:after,.before-bg-grayDarker:before,.bg-active-grayDarker:active,.bg-focus-grayDarker:focus,.bg-hover-grayDarker:hover{background:#222!important}.after-fg-grayDark:after,.before-fg-grayDark:before,.fg-active-grayDark:active,.fg-focus-grayDark:focus,.fg-grayDark,.fg-hover-grayDark:hover{color:#333!important}.bg-grayDark{background-color:#333!important}.bd-grayDark{border-color:#333!important}.ol-grayDark{outline-color:#333!important}.op-grayDark{background-color:rgba(51,51,51,.7)}.ribbed-grayDark{background: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)#333!important;background-size:40px 40px!important}.after-bg-grayDark:after,.before-bg-grayDark:before,.bg-active-grayDark:active,.bg-focus-grayDark:focus,.bg-hover-grayDark:hover{background:#333!important}.after-fg-gray:after,.before-fg-gray:before,.fg-active-gray:active,.fg-focus-gray:focus,.fg-gray,.fg-hover-gray:hover{color:#555!important}.bg-gray{background-color:#555!important}.bd-gray{border-color:#555!important}.ol-gray{outline-color:#555!important}.op-gray{background-color:rgba(85,85,85,.7)}.ribbed-gray{background: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)#555!important;background-size:40px 40px!important}.after-bg-gray:after,.before-bg-gray:before,.bg-active-gray:active,.bg-focus-gray:focus,.bg-hover-gray:hover{background:#555!important}.after-fg-grayLight:after,.before-fg-grayLight:before,.fg-active-grayLight:active,.fg-focus-grayLight:focus,.fg-grayLight,.fg-hover-grayLight:hover{color:#999!important}.bg-grayLight{background-color:#999!important}.bd-grayLight{border-color:#999!important}.ol-grayLight{outline-color:#999!important}.op-grayLight{background-color:rgba(153,153,153,.7)}.ribbed-grayLight{background: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)#999!important;background-size:40px 40px!important}.after-bg-grayLight:after,.before-bg-grayLight:before,.bg-active-grayLight:active,.bg-focus-grayLight:focus,.bg-hover-grayLight:hover{background:#999!important}.after-fg-grayLighter:after,.before-fg-grayLighter:before,.fg-active-grayLighter:active,.fg-focus-grayLighter:focus,.fg-grayLighter,.fg-hover-grayLighter:hover{color:#eee!important}.bg-grayLighter{background-color:#eee!important}.bd-grayLighter{border-color:#eee!important}.ol-grayLighter{outline-color:#eee!important}.op-grayLighter{background-color:rgba(238,238,238,.7)}.ribbed-grayLighter{background: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)#eee!important;background-size:40px 40px!important}.after-bg-grayLighter:after,.before-bg-grayLighter:before,.bg-active-grayLighter:active,.bg-focus-grayLighter:focus,.bg-hover-grayLighter:hover{background:#eee!important}.after-fg-lightGray:after,.before-fg-lightGray:before,.fg-active-lightGray:active,.fg-focus-lightGray:focus,.fg-hover-lightGray:hover,.fg-lightGray{color:#999!important}.bg-lightGray{background-color:#999!important}.bd-lightGray{border-color:#999!important}.ol-lightGray{outline-color:#999!important}.op-lightGray{background-color:rgba(153,153,153,.7)}.ribbed-lightGray{background: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)#999!important;background-size:40px 40px!important}.after-bg-lightGray:after,.before-bg-lightGray:before,.bg-active-lightGray:active,.bg-focus-lightGray:focus,.bg-hover-lightGray:hover{background:#999!important}.after-fg-lighterGray:after,.before-fg-lighterGray:before,.fg-active-lighterGray:active,.fg-focus-lighterGray:focus,.fg-hover-lighterGray:hover,.fg-lighterGray{color:#eee!important}.bg-lighterGray{background-color:#eee!important}.bd-lighterGray{border-color:#eee!important}.ol-lighterGray{outline-color:#eee!important}.op-lighterGray{background-color:rgba(238,238,238,.7)}.ribbed-lighterGray{background: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)#eee!important;background-size:40px 40px!important}.after-bg-lighterGray:after,.before-bg-lighterGray:before,.bg-active-lighterGray:active,.bg-focus-lighterGray:focus,.bg-hover-lighterGray:hover{background:#eee!important}.after-fg-darkGray:after,.before-fg-darkGray:before,.fg-active-darkGray:active,.fg-darkGray,.fg-focus-darkGray:focus,.fg-hover-darkGray:hover{color:#333!important}.bg-darkGray{background-color:#333!important}.bd-darkGray{border-color:#333!important}.bd-darker,.bd-darkerGray{border-color:#222!important}.ol-darkGray{outline-color:#333!important}.ol-darker,.ol-darkerGray{outline-color:#222!important}.op-darkGray{background-color:rgba(51,51,51,.7)}.ribbed-darkGray{background: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)#333!important;background-size:40px 40px!important}.after-bg-darkGray:after,.before-bg-darkGray:before,.bg-active-darkGray:active,.bg-focus-darkGray:focus,.bg-hover-darkGray:hover{background:#333!important}.after-fg-darker:after,.after-fg-darkerGray:after,.before-fg-darker:before,.before-fg-darkerGray:before,.fg-active-darker:active,.fg-active-darkerGray:active,.fg-darker,.fg-darkerGray,.fg-focus-darker:focus,.fg-focus-darkerGray:focus,.fg-hover-darker:hover,.fg-hover-darkerGray:hover{color:#222!important}.bg-darkerGray{background-color:#222!important}.op-darkerGray{background-color:rgba(34,34,34,.7)}.ribbed-darkerGray{background: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)#222!important;background-size:40px 40px!important}.after-bg-darkerGray:after,.before-bg-darkerGray:before,.bg-active-darkerGray:active,.bg-focus-darkerGray:focus,.bg-hover-darkerGray:hover{background:#222!important}.bg-darker{background-color:#222!important}.op-darker{background-color:rgba(34,34,34,.7)}.ribbed-darker{background: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)#222!important;background-size:40px 40px!important}.after-bg-darker:after,.before-bg-darker:before,.bg-active-darker:active,.bg-focus-darker:focus,.bg-hover-darker:hover{background:#222!important}.rotate45{-webkit-transform:rotate(45deg);transform:rotate(45deg)}.rotate90{-webkit-transform:rotate(90deg);transform:rotate(90deg)}.rotate135{-webkit-transform:rotate(135deg);transform:rotate(135deg)}.rotate180{-webkit-transform:rotate(180deg);transform:rotate(180deg)}.rotate225{-webkit-transform:rotate(225deg);transform:rotate(225deg)}.rotate270{-webkit-transform:rotate(270deg);transform:rotate(270deg)}.rotate360{-webkit-transform:rotate(360deg);transform:rotate(360deg)}.rotate-45{-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}.rotate-90{-webkit-transform:rotate(-90deg);transform:rotate(-90deg)}.rotate-135{-webkit-transform:rotate(-135deg);transform:rotate(-135deg)}.rotate-180{-webkit-transform:rotate(-180deg);transform:rotate(-180deg)}.rotate-225{-webkit-transform:rotate(-225deg);transform:rotate(-225deg)}.rotate-270{-webkit-transform:rotate(-270deg);transform:rotate(-270deg)}.rotate-360{-webkit-transform:rotate(-360deg);transform:rotate(-360deg)}.rotateX45{-webkit-transform:rotateX(45deg);transform:rotateX(45deg)}.rotateX90{-webkit-transform:rotateX(90deg);transform:rotateX(90deg)}.rotateX135{-webkit-transform:rotateX(135deg);transform:rotateX(135deg)}.rotateX180{-webkit-transform:rotateX(180deg);transform:rotateX(180deg)}.rotateX225{-webkit-transform:rotateX(225deg);transform:rotateX(225deg)}.rotateX270{-webkit-transform:rotateX(270deg);transform:rotateX(270deg)}.rotateX360{-webkit-transform:rotateX(360deg);transform:rotateX(360deg)}.rotateX-45{-webkit-transform:rotateX(-45deg);transform:rotateX(-45deg)}.rotateX-90{-webkit-transform:rotateX(-90deg);transform:rotateX(-90deg)}.rotateX-135{-webkit-transform:rotateX(-135deg);transform:rotateX(-135deg)}.rotateX-180{-webkit-transform:rotateX(-180deg);transform:rotateX(-180deg)}.rotateX-225{-webkit-transform:rotateX(-225deg);transform:rotateX(-225deg)}.rotateX-270{-webkit-transform:rotateX(-270deg);transform:rotateX(-270deg)}.rotateX-360{-webkit-transform:rotateX(-360deg);transform:rotateX(-360deg)}.rotateY45{-webkit-transform:rotateY(45deg);transform:rotateY(45deg)}.rotateY90{-webkit-transform:rotateY(90deg);transform:rotateY(90deg)}.rotateY135{-webkit-transform:rotateY(135deg);transform:rotateY(135deg)}.rotateY180{-webkit-transform:rotateY(180deg);transform:rotateY(180deg)}.rotateY225{-webkit-transform:rotateY(225deg);transform:rotateY(225deg)}.rotateY270{-webkit-transform:rotateY(270deg);transform:rotateY(270deg)}.rotateY360{-webkit-transform:rotateY(360deg);transform:rotateY(360deg)}.rotateY-45{-webkit-transform:rotateY(-45deg);transform:rotateY(-45deg)}.rotateY-90{-webkit-transform:rotateY(-90deg);transform:rotateY(-90deg)}.rotateY-135{-webkit-transform:rotateY(-135deg);transform:rotateY(-135deg)}.rotateY-180{-webkit-transform:rotateY(-180deg);transform:rotateY(-180deg)}.rotateY-225{-webkit-transform:rotateY(-225deg);transform:rotateY(-225deg)}.rotateY-270{-webkit-transform:rotateY(-270deg);transform:rotateY(-270deg)}.rotateY-360{-webkit-transform:rotateY(-360deg);transform:rotateY(-360deg)} \ No newline at end of file diff --git a/applications/assets/fonts/metro.eot b/applications/assets/fonts/metro.eot new file mode 100644 index 0000000..08b9d8a Binary files /dev/null and b/applications/assets/fonts/metro.eot differ diff --git a/applications/assets/fonts/metro.svg b/applications/assets/fonts/metro.svg new file mode 100644 index 0000000..5373587 --- /dev/null +++ b/applications/assets/fonts/metro.svg @@ -0,0 +1,542 @@ + + + + + + +{ + "fontFamily": "metro", + "majorVersion": 1, + "minorVersion": 0, + "fontURL": "http://metroui.org.ua/font.html", + "description": "Metro Icon Font\nFont generated by IcoMoon.", + "copyright": "2012-2015 Metro UI CSS", + "license": "MIT", + "licenseURL": "http://metroui.org.ua/license.html", + "version": "Version 1.0", + "fontId": "metro", + "psName": "metro", + "subFamily": "Regular", + "fullName": "metro" +} + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/applications/assets/fonts/metro.ttf b/applications/assets/fonts/metro.ttf new file mode 100644 index 0000000..7170b8a Binary files /dev/null and b/applications/assets/fonts/metro.ttf differ diff --git a/applications/assets/fonts/metro.woff b/applications/assets/fonts/metro.woff new file mode 100644 index 0000000..b5bd3ad Binary files /dev/null and b/applications/assets/fonts/metro.woff differ diff --git a/applications/assets/fonts/selection.json b/applications/assets/fonts/selection.json new file mode 100644 index 0000000..49cd138 --- /dev/null +++ b/applications/assets/fonts/selection.json @@ -0,0 +1,13870 @@ +{ + "IcoMoonType": "selection", + "icons": [ + { + "icon": { + "paths": [ + "M250.857 726.286l-146.286 146.286q-5.714 5.143-13.143 5.143-6.857 0-13.143-5.143-5.143-5.714-5.143-13.143t5.143-13.143l146.286-146.286q5.714-5.143 13.143-5.143t13.143 5.143q5.143 5.714 5.143 13.143t-5.143 13.143zM347.429 749.714v182.857q0 8-5.143 13.143t-13.143 5.143-13.143-5.143-5.143-13.143v-182.857q0-8 5.143-13.143t13.143-5.143 13.143 5.143 5.143 13.143zM219.429 621.714q0 8-5.143 13.143t-13.143 5.143h-182.857q-8 0-13.143-5.143t-5.143-13.143 5.143-13.143 13.143-5.143h182.857q8 0 13.143 5.143t5.143 13.143zM941.714 694.857q0 68.571-48.571 116l-84 83.429q-47.429 47.429-116 47.429-69.143 0-116.571-48.571l-190.857-191.429q-12-12-24-32l136.571-10.286 156 156.571q15.429 15.429 38.857 15.714t38.857-15.143l84-83.429q16-16 16-38.286 0-22.857-16-38.857l-156.571-157.143 10.286-136.571q20 12 32 24l192 192q48 49.143 48 116.571zM589.143 281.143l-136.571 10.286-156-156.571q-16-16-38.857-16-22.286 0-38.857 15.429l-84 83.429q-16 16-16 38.286 0 22.857 16 38.857l156.571 156.571-10.286 137.143q-20-12-32-24l-192-192q-48-49.143-48-116.571 0-68.571 48.571-116l84-83.429q47.429-47.429 116-47.429 69.143 0 116.571 48.571l190.857 191.429q12 12 24 32zM950.857 329.143q0 8-5.143 13.143t-13.143 5.143h-182.857q-8 0-13.143-5.143t-5.143-13.143 5.143-13.143 13.143-5.143h182.857q8 0 13.143 5.143t5.143 13.143zM640 18.286v182.857q0 8-5.143 13.143t-13.143 5.143-13.143-5.143-5.143-13.143v-182.857q0-8 5.143-13.143t13.143-5.143 13.143 5.143 5.143 13.143zM872.571 104.571l-146.286 146.286q-6.286 5.143-13.143 5.143t-13.143-5.143q-5.143-5.714-5.143-13.143t5.143-13.143l146.286-146.286q5.714-5.143 13.143-5.143t13.143 5.143q5.143 5.714 5.143 13.143t-5.143 13.143z" + ], + "width": 951, + "attrs": [], + "isMulticolor": false, + "tags": [ + "chain-broken", + "unlink" + ], + "defaultCode": 61735, + "grid": 14 + }, + "attrs": [], + "properties": { + "id": 263, + "order": 39, + "prevSize": 32, + "code": 61735, + "name": "unlink" + }, + "setIdx": 0, + "setId": 10, + "iconIdx": 263 + }, + { + "icon": { + "paths": [ + "M292.571 109.714q0-14.857-10.857-25.714t-25.714-10.857-25.714 10.857-10.857 25.714 10.857 25.714 25.714 10.857 25.714-10.857 10.857-25.714zM804.571 91.429v182.857q0 9.143-6.857 14.286-4.571 4-11.429 4-2.286 0-4-0.571l-256-54.857q-6.286-1.143-10.286-6.286t-4-11.429h-146.286v58.286q63.429 13.143 104.857 63.429t41.429 116v457.143q0 14.857-10.857 25.714t-25.714 10.857h-292.571q-14.857 0-25.714-10.857t-10.857-25.714v-457.143q0-60.571 35.714-108.857t92.286-65.429v-63.429h-18.286q-33.714 0-65.714 13.429t-52.286 30.286-37.714 38-23.143 30.571-8 14q-9.714 20-32.571 20-9.143 0-16.571-4-13.143-6.857-18-21.143t2-28q2.857-5.714 8.286-14.857t21.429-30.571 34.571-40 48.571-38.286 62-30q-14.286-24-14.286-49.143 0-37.714 26.857-64.571t64.571-26.857 64.571 26.857 26.857 64.571q0 18.857-8 36.571h172.571q0-6.286 4-11.429t10.286-6.286l256-54.857q1.714-0.571 4-0.571 6.857 0 11.429 4 6.857 5.143 6.857 14.286z" + ], + "width": 805, + "attrs": [], + "isMulticolor": false, + "tags": [ + "fire-extinguisher" + ], + "defaultCode": 61748, + "grid": 14 + }, + "attrs": [], + "properties": { + "id": 275, + "order": 68, + "prevSize": 32, + "code": 61748, + "name": "fire-extinguisher" + }, + "setIdx": 0, + "setId": 10, + "iconIdx": 275 + }, + { + "icon": { + "paths": [ + "M557.714 746.857l20 90.857q1.714 6.857-1.714 12.857t-9.714 8.286l-2.857 0.571q-2.286 1.143-6 2t-9.143 2.571-12.286 3.143-14.571 2.857-17.143 2.857-19.143 2.571-20.857 1.714-22 0.571q-133.714 0-233.714-74.571t-136-200.857h-54.286q-7.429 0-12.857-5.429t-5.429-12.857v-64.571q0-7.429 5.429-12.857t12.857-5.429h37.714q-1.143-32.571 0.571-60h-38.286q-8 0-13.143-5.143t-5.143-13.143v-65.143q0-8 5.143-13.143t13.143-5.143h56q38.286-120 139.143-193.143t228.857-73.143q58.286 0 110.857 13.143 6.286 1.714 11.429 8.571 3.429 6.286 1.714 13.714l-24.571 90.857q-1.714 7.429-8 11.143t-13.714 1.429l-2.286-0.571q-2.286-0.571-6.571-1.429l-10-2t-12.857-2-14.857-1.714-16.571-1.429-16.857-0.571q-72 0-129.143 36.571t-85.714 100.571h267.429q9.143 0 14.286 6.857 5.714 6.857 4 14.857l-13.714 65.143q-2.857 14.857-18.286 14.857h-278.857q-1.714 21.143 0 60h262.286q8.571 0 14.286 6.857 5.143 6.857 3.429 15.429l-13.714 64q-1.143 6.286-6.286 10.571t-11.429 4.286h-221.143q27.429 66.857 85.429 106t130.571 39.143q10.286 0 20.571-0.857t19.143-2 16.857-2.571 14-2.857 10.571-2.571l6.857-1.714 2.857-1.143q7.429-2.857 14.857 1.143 6.857 4 8.571 12z" + ], + "width": 585, + "attrs": [], + "isMulticolor": false, + "tags": [ + "eur", + "euro" + ], + "defaultCode": 61779, + "grid": 14 + }, + "attrs": [], + "properties": { + "id": 304, + "order": 31, + "prevSize": 32, + "code": 61779, + "name": "eur" + }, + "setIdx": 0, + "setId": 10, + "iconIdx": 304 + }, + { + "icon": { + "paths": [ + "M582.857 649.714v209.714q0 8-5.143 13.143t-13.143 5.143h-546.286q-8 0-13.143-5.143t-5.143-13.143v-85.714q0-7.429 5.429-12.857t12.857-5.429h55.429v-218.857h-54.286q-8 0-13.143-5.429t-5.143-12.857v-74.857q0-8 5.143-13.143t13.143-5.143h54.286v-127.429q0-97.714 70.571-161.143t179.714-63.429q105.714 0 191.429 71.429 5.143 4.571 5.714 11.714t-4 12.857l-58.857 72.571q-5.143 6.286-12.571 6.857-7.429 1.143-13.143-4-2.857-2.857-14.857-10.857t-39.429-18.286-53.143-10.286q-48.571 0-78.286 26.857t-29.714 70.286v122.857h174.286q7.429 0 12.857 5.143t5.429 13.143v74.857q0 7.429-5.429 12.857t-12.857 5.429h-174.286v216.571h236.571v-103.429q0-7.429 5.143-12.857t13.143-5.429h92.571q8 0 13.143 5.429t5.143 12.857z" + ], + "width": 585, + "attrs": [], + "isMulticolor": false, + "tags": [ + "gbp" + ], + "defaultCode": 61780, + "grid": 14 + }, + "attrs": [], + "properties": { + "id": 305, + "order": 32, + "prevSize": 32, + "code": 61780, + "name": "gbp" + }, + "setIdx": 0, + "setId": 10, + "iconIdx": 305 + }, + { + "icon": { + "paths": [ + "M558.857 677.143q0 87.429-56.857 150.571t-147.714 78v100q0 8-5.143 13.143t-13.143 5.143h-77.143q-7.429 0-12.857-5.429t-5.429-12.857v-100q-37.714-5.143-72.857-17.714t-58-25.429-42.286-27.429-26.571-21.429-10-10.286q-9.714-12-1.143-23.429l58.857-77.143q4-5.714 13.143-6.857 8.571-1.143 13.714 5.143l1.143 1.143q64.571 56.571 138.857 71.429 21.143 4.571 42.286 4.571 46.286 0 81.429-24.571t35.143-69.714q0-16-8.571-30.286t-19.143-24-33.429-21.429-37.714-18.286-45.714-18.571q-22.286-9.143-35.143-14.286t-35.143-15.143-35.714-17.714-32.286-20.286-30.571-24.286-24.857-28-20.286-33.143-12-38-4.857-44.571q0-78.857 56-138.286t145.714-76.571v-102.857q0-7.429 5.429-12.857t12.857-5.429h77.143q8 0 13.143 5.143t5.143 13.143v100.571q32.571 3.429 63.143 13.143t49.714 19.143 36.286 21.429 22.286 16.571 8.571 8q9.714 10.286 2.857 21.714l-46.286 83.429q-4.571 8.571-13.143 9.143-8 1.714-15.429-4-1.714-1.714-8.286-6.857t-22.286-15.143-33.429-18.286-42.571-14.857-48.857-6.571q-54.286 0-88.571 24.571t-34.286 63.429q0 14.857 4.857 27.429t16.857 23.714 22.571 18.857 32 17.714 34.571 15.429 40 15.714q30.286 11.429 46.286 18t43.429 20 43.143 24.286 35.429 28.571 30.286 36.286 18 43.714 7.429 53.714z" + ], + "width": 585, + "attrs": [], + "isMulticolor": false, + "tags": [ + "dollar", + "usd" + ], + "defaultCode": 61781, + "grid": 14 + }, + "attrs": [], + "properties": { + "id": 306, + "order": 33, + "prevSize": 32, + "code": 61781, + "name": "dollar2" + }, + "setIdx": 0, + "setId": 10, + "iconIdx": 306 + }, + { + "icon": { + "paths": [ + "M513.143 268.571v58.286q0 8-5.143 13.143t-13.143 5.143h-96q-13.143 82.286-73.714 133.714t-157.714 62.857q95.429 101.714 262.286 306.286 8 9.143 2.286 19.429-4.571 10.286-16.571 10.286h-111.429q-9.143 0-14.286-6.857-174.857-209.714-284.571-326.286-5.143-5.143-5.143-12.571v-72.571q0-7.429 5.429-12.857t12.857-5.429h64q75.429 0 121.429-24.571t58.571-71.429h-244q-8 0-13.143-5.143t-5.143-13.143v-58.286q0-8 5.143-13.143t13.143-5.143h236q-32.571-64.571-153.143-64.571h-82.857q-7.429 0-12.857-5.429t-5.429-12.857v-76q0-8 5.143-13.143t13.143-5.143h475.429q8 0 13.143 5.143t5.143 13.143v58.286q0 8-5.143 13.143t-13.143 5.143h-133.143q26.857 34.857 36.571 82.286h97.714q8 0 13.143 5.143t5.143 13.143z" + ], + "width": 513, + "attrs": [], + "isMulticolor": false, + "tags": [ + "inr", + "rupee" + ], + "defaultCode": 61782, + "grid": 14 + }, + "attrs": [], + "properties": { + "id": 307, + "order": 34, + "prevSize": 32, + "code": 61782, + "name": "inr" + }, + "setIdx": 0, + "setId": 10, + "iconIdx": 307 + }, + { + "icon": { + "paths": [ + "M344.571 877.714h-98.286q-7.429 0-12.857-5.143t-5.429-13.143v-188.571h-164.571q-7.429 0-12.857-5.143t-5.429-13.143v-58.857q0-7.429 5.429-12.857t12.857-5.429h164.571v-48.571h-164.571q-7.429 0-12.857-5.143t-5.429-13.143v-59.429q0-7.429 5.429-12.857t12.857-5.429h122.286l-183.429-330.286q-4.571-9.143 0-18.286 5.714-9.143 16-9.143h110.857q10.857 0 16.571 10.286l122.857 242.857q10.857 21.714 32 71.429 5.714-13.714 17.429-38.857t15.714-34.857l109.143-240q4.571-10.857 16.571-10.857h109.143q9.714 0 15.429 9.143 5.143 8 0.571 17.714l-178.857 330.857h122.857q7.429 0 12.857 5.429t5.429 12.857v59.429q0 8-5.429 13.143t-12.857 5.143h-165.714v48.571h165.714q7.429 0 12.857 5.429t5.429 12.857v58.857q0 8-5.429 13.143t-12.857 5.143h-165.714v188.571q0 7.429-5.429 12.857t-12.857 5.429z" + ], + "width": 587, + "attrs": [], + "isMulticolor": false, + "tags": [ + "cny", + "jpy", + "rmb", + "yen" + ], + "defaultCode": 61783, + "grid": 14 + }, + "attrs": [], + "properties": { + "id": 308, + "order": 35, + "prevSize": 32, + "code": 61783, + "name": "cny" + }, + "setIdx": 0, + "setId": 10, + "iconIdx": 308 + }, + { + "icon": { + "paths": [ + "M596 322.857q0-57.143-37.143-92.571t-97.714-35.429h-182.857v256h182.857q60.571 0 97.714-35.429t37.143-92.571zM731.429 322.857q0 110.286-72.286 180t-186.571 69.714h-194.286v67.429h288.571q8 0 13.143 5.143t5.143 13.143v73.143q0 8-5.143 13.143t-13.143 5.143h-288.571v109.714q0 8-5.429 13.143t-12.857 5.143h-95.429q-8 0-13.143-5.143t-5.143-13.143v-109.714h-128q-8 0-13.143-5.143t-5.143-13.143v-73.143q0-8 5.143-13.143t13.143-5.143h128v-67.429h-128q-8 0-13.143-5.143t-5.143-13.143v-85.143q0-7.429 5.143-12.857t13.143-5.429h128v-359.429q0-8 5.143-13.143t13.143-5.143h308q114.286 0 186.571 69.714t72.286 180z" + ], + "width": 731, + "attrs": [], + "isMulticolor": false, + "tags": [ + "rouble", + "rub", + "ruble" + ], + "defaultCode": 61784, + "grid": 14 + }, + "attrs": [], + "properties": { + "id": 309, + "order": 36, + "prevSize": 32, + "code": 61784, + "name": "rouble" + }, + "setIdx": 0, + "setId": 10, + "iconIdx": 309 + }, + { + "icon": { + "paths": [ + "M293.714 682.857l46.286-170.857h-90.857l42.857 171.429q0.571 0.571 0.571 1.714t0.571 1.714q0-0.571 0.286-2t0.286-2zM360 438.857l20-73.143h-166.857l18.286 73.143h128.571zM469.714 438.857h79.429l-20-73.143h-40zM726.286 683.429l44.571-171.429h-92.571l46.286 170.857q0 0.571 0.286 2t0.857 2q0-0.571 0.286-1.714t0.286-1.714zM789.714 438.857l18.857-73.143h-169.714l19.429 73.143h131.429zM1024 457.143v36.571q0 8-5.143 13.143t-13.143 5.143h-121.714l-93.714 352q-4 13.714-17.714 13.714h-90.857q-13.714 0-17.714-13.714l-94.857-352h-119.429l-95.429 352q-4 13.714-17.714 13.714h-90.857q-6.286 0-11.143-4t-6-9.714l-91.429-352h-118.857q-8 0-13.143-5.143t-5.143-13.143v-36.571q0-8 5.143-13.143t13.143-5.143h100l-18.857-73.143h-81.143q-8 0-13.143-5.143t-5.143-13.143v-36.571q0-8 5.143-13.143t13.143-5.143h62.286l-50.857-196.571q-2.857-8.571 2.857-16 5.714-6.857 14.857-6.857h78.286q14.857 0 17.714 13.714l51.429 205.714h205.143l55.429-205.714q4-13.714 17.714-13.714h72q13.714 0 17.714 13.714l56 205.714h208.571l53.143-205.714q2.857-13.714 17.714-13.714h78.286q9.143 0 14.857 6.857 5.714 7.429 2.857 16l-52 196.571h63.429q8 0 13.143 5.143t5.143 13.143v36.571q0 8-5.143 13.143t-13.143 5.143h-82.857l-19.429 73.143h102.286q8 0 13.143 5.143t5.143 13.143z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "krw", + "won" + ], + "defaultCode": 61785, + "grid": 14 + }, + "attrs": [], + "properties": { + "id": 310, + "order": 37, + "prevSize": 32, + "code": 61785, + "name": "krw" + }, + "setIdx": 0, + "setId": 10, + "iconIdx": 310 + }, + { + "icon": { + "paths": [ + "M666.857 365.714q10.286 104-74.857 147.429 66.857 16 100 58.857t25.714 122.286q-4 40.571-18.571 71.429t-36.857 50.857-55.429 33.429-69.429 19.714-83.143 8.571v145.714h-88v-143.429q-45.714 0-69.714-0.571v144h-88v-145.714q-10.286 0-30.857-0.286t-31.429-0.286h-114.286l17.714-104.571h63.429q28.571 0 33.143-29.143v-229.714h9.143q-3.429-0.571-9.143-0.571v-164q-7.429-38.857-50.857-38.857h-63.429v-93.714l121.143 0.571q36.571 0 55.429-0.571v-144h88v141.143q46.857-1.143 69.714-1.143v-140h88v144q45.143 4 80 12.857t64.571 25.714 47.143 44.571 20.857 65.429zM544 677.143q0-20.571-8.571-36.571t-21.143-26.286-32.857-17.429-37.429-10.571-42.286-5.143-39.429-1.714-36.857 0.571-27.143 0.571v193.143q4.571 0 21.143 0.286t27.429 0.286 30.286-0.857 33.429-2.286 32.571-4.857 31.714-8 27.143-12 22.571-17.143 14-22.857 5.429-29.143zM503.429 405.143q0-18.857-7.143-33.429t-17.429-24-27.429-16-31.429-9.429-35.143-4.571-33.143-1.429-30.857 0.571-22.571 0.286v175.429q2.857 0 19.714 0.286t26.571 0 28.571-1.143 31.429-3.143 29.429-6.286 27.714-10.571 21.143-15.429 15.429-22 5.143-29.143z" + ], + "width": 731, + "attrs": [], + "isMulticolor": false, + "tags": [ + "bitcoin", + "btc" + ], + "defaultCode": 61786, + "grid": 14 + }, + "attrs": [], + "properties": { + "id": 311, + "order": 38, + "prevSize": 32, + "code": 61786, + "name": "bitcoin" + }, + "setIdx": 0, + "setId": 10, + "iconIdx": 311 + }, + { + "icon": { + "paths": [ + "M554.857 710.857v120.571q0 38.286-22.286 38.286-13.143 0-25.714-12.571v-172q12.571-12.571 25.714-12.571 22.286 0 22.286 38.286zM748 711.429v26.286h-51.429v-26.286q0-38.857 25.714-38.857t25.714 38.857zM196 586.857h61.143v-53.714h-178.286v53.714h60v325.143h57.143v-325.143zM360.571 912h50.857v-282.286h-50.857v216q-17.143 24-32.571 24-10.286 0-12-12-0.571-1.714-0.571-20v-208h-50.857v223.429q0 28 4.571 41.714 6.857 21.143 33.143 21.143 27.429 0 58.286-34.857v30.857zM605.714 827.429v-112.571q0-41.714-5.143-56.571-9.714-32-40.571-32-28.571 0-53.143 30.857v-124h-50.857v378.857h50.857v-27.429q25.714 31.429 53.143 31.429 30.857 0 40.571-31.429 5.143-15.429 5.143-57.143zM798.857 821.714v-7.429h-52q0 29.143-1.143 34.857-4 20.571-22.857 20.571-26.286 0-26.286-39.429v-49.714h102.286v-58.857q0-45.143-15.429-66.286-22.286-29.143-60.571-29.143-38.857 0-61.143 29.143-16 21.143-16 66.286v98.857q0 45.143 16.571 66.286 22.286 29.143 61.714 29.143 41.143 0 61.714-30.286 10.286-15.429 12-30.857 1.143-5.143 1.143-33.143zM451.429 300v-120q0-39.429-24.571-39.429t-24.571 39.429v120q0 40 24.571 40t24.571-40zM862.286 729.143q0 133.714-14.857 200-8 33.714-33.143 56.571t-58.286 26.286q-105.143 12-317.143 12t-317.143-12q-33.143-3.429-58.571-26.286t-32.857-56.571q-14.857-64-14.857-200 0-133.714 14.857-200 8-33.714 33.143-56.571t58.857-26.857q104.571-11.429 316.571-11.429t317.143 11.429q33.143 4 58.571 26.857t32.857 56.571q14.857 64 14.857 200zM292 0h58.286l-69.143 228v154.857h-57.143v-154.857q-8-42.286-34.857-121.143-21.143-58.857-37.143-106.857h60.571l40.571 150.286zM503.429 190.286v100q0 46.286-16 67.429-21.143 29.143-60.571 29.143-38.286 0-60-29.143-16-21.714-16-67.429v-100q0-45.714 16-66.857 21.714-29.143 60-29.143 39.429 0 60.571 29.143 16 21.143 16 66.857zM694.857 97.714v285.143h-52v-31.429q-30.286 35.429-58.857 35.429-26.286 0-33.714-21.143-4.571-13.714-4.571-42.857v-225.143h52v209.714q0 18.857 0.571 20 1.714 12.571 12 12.571 15.429 0 32.571-24.571v-217.714h52z" + ], + "width": 877.7142857142858, + "attrs": [], + "isMulticolor": false, + "tags": [ + "youtube" + ], + "defaultCode": 61799, + "grid": 14 + }, + "attrs": [], + "properties": { + "id": 323, + "order": 54, + "prevSize": 32, + "code": 61799, + "name": "youtube2" + }, + "setIdx": 0, + "setId": 10, + "iconIdx": 323 + }, + { + "icon": { + "paths": [ + "M731.429 512q0-21.143-17.143-30.857l-292.571-182.857q-17.714-11.429-37.143-1.143-18.857 10.286-18.857 32v365.714q0 21.714 18.857 32 9.143 4.571 17.714 4.571 11.429 0 19.429-5.714l292.571-182.857q17.143-9.714 17.143-30.857zM1024 512q0 54.857-0.571 85.714t-4.857 78-12.857 84.286q-9.143 41.714-39.429 70.286t-70.857 33.143q-126.857 14.286-383.429 14.286t-383.429-14.286q-40.571-4.571-71.143-33.143t-39.714-70.286q-8-37.143-12.286-84.286t-4.857-78-0.571-85.714 0.571-85.714 4.857-78 12.857-84.286q9.143-41.714 39.429-70.286t70.857-33.143q126.857-14.286 383.429-14.286t383.429 14.286q40.571 4.571 71.143 33.143t39.714 70.286q8 37.143 12.286 84.286t4.857 78 0.571 85.714z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "youtube-play" + ], + "defaultCode": 61802, + "grid": 14 + }, + "attrs": [], + "properties": { + "id": 326, + "order": 55, + "prevSize": 32, + "code": 61802, + "name": "youtube-play" + }, + "setIdx": 0, + "setId": 10, + "iconIdx": 326 + }, + { + "icon": { + "paths": [ + "M378.857 234.857q-6.286 0.571-8.857 6t-4.857 5.429q-2.857 0.571-2.857-2.857 0-6.857 10.857-8.571h5.714zM428.571 242.857q-2.286 0.571-6.571-3.714t-10-2.571q13.714-6.286 18.286 1.143 1.714 3.429-1.714 5.143zM228 486.857q-2.286-0.571-3.429 1.714t-2.571 7.143-3.143 7.714-5.714 7.429q-4 5.714-0.571 6.857 2.286 0.571 7.143-4t7.143-10.286q0.571-1.714 1.143-4t1.143-3.429 0.857-2.571 0.286-2.286v-1.714t-0.571-1.429-1.714-1.143zM716.571 692q0-10.286-31.429-24 2.286-8.571 4.286-15.714t2.857-14.857 1.714-12.286 0.286-12.857-0.571-11.143-2-12.571-2.286-11.714-2.857-14.286-3.143-15.143q-5.714-27.429-26.857-58.857t-41.143-42.857q13.714 11.429 32.571 47.429 49.714 92.571 30.857 158.857-6.286 22.857-28.571 24-17.714 2.286-22-10.571t-4.571-47.714-6.571-61.143q-5.143-22.286-11.143-39.429t-11.143-26-8.857-14-7.429-8.571-4.286-4q-8-35.429-17.714-58.857t-16.857-32-13.429-18.857-8.571-22.857q-2.286-12 3.429-30.571t2.571-28.286-25.429-14.286q-8.571-1.714-25.429-10.286t-20.286-9.143q-4.571-0.571-6.286-14.857t4.571-29.143 20.571-15.429q21.143-1.714 29.143 17.143t2.286 33.143q-6.286 10.857-1.143 15.143t17.143 0.286q7.429-2.286 7.429-20.571v-21.143q-2.857-17.143-7.714-28.571t-12-17.429-13.429-8.571-15.429-4.286q-61.143 4.571-50.857 76.571 0 8.571-0.571 8.571-5.143-5.143-16.857-6t-18.857 0.286-8.857-2.857q0.571-32.571-9.143-51.429t-25.714-19.429q-15.429-0.571-23.714 15.714t-9.429 34q-0.571 8.571 2 21.143t7.429 21.429 8.857 7.714q5.714-1.714 9.143-8 2.286-5.143-4-4.571-4 0-8.857-8.286t-5.429-19.143q-0.571-12.571 5.143-21.143t19.429-8q9.714 0 15.429 12t5.429 22.286-0.857 12.571q-12.571 8.571-17.714 16.571-4.571 6.857-15.714 13.429t-11.714 7.143q-7.429 8-8.857 15.429t4.286 10.286q8 4.571 14.286 11.143t9.143 10.857 10.571 7.429 20.286 3.714q26.857 1.143 58.286-8.571 1.143-0.571 13.143-4t19.714-6 16.857-7.429 12-10q5.143-8 11.429-4.571 2.857 1.714 3.714 4.857t-1.714 6.857-9.429 5.429q-11.429 3.429-32.286 12.286t-26 11.143q-25.143 10.857-40 13.143-14.286 2.857-45.143-1.143-5.714-1.143-5.143 1.143t9.714 10.857q14.286 13.143 38.286 12.571 9.714-0.571 20.571-4t20.571-8 19.143-10 17.143-9.714 14-6.857 10-1.429 4.857 6.286q0 1.143-0.571 2.571t-2.286 2.857-3.429 2.571-4.857 2.857-5.143 2.571-5.714 2.857-5.429 2.571q-16 8-38.571 25.143t-38 24.571-28 0.571q-12-6.286-36-41.714-12.571-17.714-14.286-12.571-0.571 1.714-0.571 5.714 0 14.286-8.571 32.286t-16.857 31.714-12 33.143 6.571 36q-13.143 3.429-35.714 51.429t-27.143 80.571q-1.143 10.286-0.857 39.429t-3.143 33.714q-4.571 13.714-16.571 1.714-18.286-17.714-20.571-53.714-1.143-16 2.286-32 2.286-10.857-0.571-10.286l-2.286 2.857q-20.571 37.143 5.714 94.857 2.857 6.857 14.286 16t13.714 11.429q11.429 13.143 59.429 51.714t53.143 43.714q9.143 8.571 10 21.714t-8 24.571-26 13.143q4.571 8.571 16.571 25.429t16 30.857 4 40.286q26.286-13.714 4-52.571-2.286-4.571-6-9.143t-5.429-6.857-1.143-3.429q1.714-2.857 7.429-5.429t11.429 1.429q26.286 29.714 94.857 20.571 76-8.571 101.143-49.714 13.143-21.714 19.429-17.143 6.857 3.429 5.714 29.714-0.571 14.286-13.143 52.571-5.143 13.143-3.429 21.429t13.714 8.857q1.714-10.857 8.286-44t7.714-51.429q1.143-12-3.714-42t-4.286-55.429 13.143-40.286q8.571-10.286 29.143-10.286 0.571-21.143 19.714-30.286t41.429-6 34.286 12.857zM357.714 219.429q1.714-9.714-1.429-17.143t-6.571-8.571q-5.143-1.143-5.143 4 1.143 2.857 2.857 3.429 5.714 0 4 8.571-1.714 11.429 4.571 11.429 1.714 0 1.714-1.714zM597.143 332q-1.143-4.571-3.714-6.571t-7.429-2.857-8.286-3.143q-2.857-1.714-5.429-4.571t-4-4.571-3.143-3.714-2.286-2.286-2.286 0.857q-8 9.143 4 24.857t22.286 18q5.143 0.571 8.286-4.571t2-11.429zM495.429 210.286q0-6.286-2.857-11.143t-6.286-7.143-5.143-1.714q-8 0.571-4 4l2.286 1.143q8 2.286 10.286 17.714 0 1.714 4.571-1.143zM526.286 77.143q0-1.143-1.429-2.857t-5.143-4-5.429-3.429q-8.571-8.571-13.714-8.571-5.143 0.571-6.571 4.286t-0.571 7.429-0.286 7.143q-0.571 2.286-3.429 6t-3.429 5.143 1.714 4.857q2.286 1.714 4.571 0t6.286-5.143 8.571-5.143q0.571-0.571 5.143-0.571t8.571-1.143 5.143-4zM849.143 843.429q11.429 6.857 17.714 14t6.857 13.714-1.429 12.857-8.857 12.571-13.429 11.143-17.143 10.571-18 9.429-18.286 8.857-15.429 7.429q-21.714 10.857-48.857 32t-43.143 36.571q-9.714 9.143-38.857 11.143t-50.857-8.286q-10.286-5.143-16.857-13.429t-9.429-14.571-12.571-11.143-26.857-5.429q-25.143-0.571-74.286-0.571-10.857 0-32.571 0.857t-33.143 1.429q-25.143 0.571-45.429 8.571t-30.571 17.143-24.857 16.286-30.571 6.571q-16.571-0.571-63.429-17.714t-83.429-24.571q-10.857-2.286-29.143-5.429t-28.571-5.143-22.571-5.429-19.143-8.286-9.714-11.143q-5.714-13.143 4-38t10.286-31.143q0.571-9.143-2.286-22.857t-5.714-24.286-2.571-20.857 6-15.429q8-6.857 32.571-8t34.286-6.857q17.143-10.286 24-20t6.857-29.143q12 41.714-18.286 60.571-18.286 11.429-47.429 8.571-19.429-1.714-24.571 5.714-7.429 8.571 2.857 32.571 1.143 3.429 4.571 10.286t4.857 10.286 2.571 9.714 0.571 12.571q0 8.571-9.714 28t-8 27.429q1.714 9.714 21.143 14.857 11.429 3.429 48.286 10.571t56.857 11.714q13.714 3.429 42.286 12.571t47.143 13.143 31.714 2.286q24.571-3.429 36.857-16t13.143-27.429-4.286-33.429-10.857-29.714-11.429-20.857q-69.143-108.571-96.571-138.286-38.857-42.286-64.571-22.857-6.286 5.143-8.571-8.571-1.714-9.143-1.143-21.714 0.571-16.571 5.714-29.714t13.714-26.857 12.571-24q4.571-12 15.143-41.143t16.857-44.571 17.143-34.857 22.286-30.857q62.857-81.714 70.857-111.429-6.857-64-9.143-177.143-1.143-51.429 13.714-86.571t60.571-59.714q22.286-12 59.429-12 30.286-0.571 60.571 7.714t50.857 23.714q32.571 24 52.286 69.429t16.857 84.286q-2.857 54.286 17.143 122.286 19.429 64.571 76 124.571 31.429 33.714 56.857 93.143t34 109.143q4.571 28 2.857 48.286t-6.857 31.714-11.429 12.571q-5.714 1.143-13.429 10.857t-15.429 20.286-23.143 19.143-34.857 8q-10.286-0.571-18-2.857t-12.857-7.714-7.714-8.857-6.571-11.714-5.143-11.143q-12.571-21.143-23.429-17.143t-16 28 4 55.429q11.429 40 0.571 111.429-5.714 37.143 10.286 57.429t41.714 18.857 48.571-20.286q33.714-28 51.143-38t59.143-24.286q30.286-10.286 44-20.857t10.571-19.714-14.286-16.286-29.429-13.429q-18.857-6.286-28.286-27.429t-8.571-41.429 8.857-27.143q0.571 17.714 4.571 32.286t8.286 23.143 11.714 16.286 12 10.857 12.286 7.429 9.429 5.429z" + ], + "width": 877.7142857142858, + "attrs": [], + "isMulticolor": false, + "tags": [ + "linux" + ], + "defaultCode": 61820, + "grid": 14 + }, + "attrs": [], + "properties": { + "id": 343, + "order": 40, + "prevSize": 32, + "code": 61820, + "name": "linux" + }, + "setIdx": 0, + "setId": 10, + "iconIdx": 343 + }, + { + "icon": { + "paths": [ + "M658.286 475.429q0 109.143-54 201.714t-146.571 146.571-201.714 54h-91.429q-8 0-13.143-5.143t-5.143-13.143v-349.143l-122.857 37.714q-1.714 0.571-5.143 0.571-5.714 0-10.857-3.429-7.429-5.714-7.429-14.857v-73.143q0-13.143 13.143-17.714l133.143-40.571v-53.143l-122.857 37.714q-1.714 0.571-5.143 0.571-5.714 0-10.857-3.429-7.429-5.714-7.429-14.857v-73.143q0-13.143 13.143-17.714l133.143-40.571v-142.857q0-8 5.143-13.143t13.143-5.143h91.429q8 0 13.143 5.143t5.143 13.143v103.429l214.286-66.286q8.571-2.857 16 2.857t7.429 14.857v73.143q0 13.143-13.143 17.714l-224.571 69.143v53.143l214.286-66.286q8.571-2.857 16 2.857t7.429 14.857v73.143q0 13.143-13.143 17.714l-224.571 69.143v278.286q107.429-7.429 181.714-86.286t74.286-187.429q0-8 5.143-13.143t13.143-5.143h91.429q8 0 13.143 5.143t5.143 13.143z" + ], + "width": 658, + "attrs": [], + "isMulticolor": false, + "tags": [ + "try", + "turkish-lira" + ], + "defaultCode": 61845, + "grid": 14 + }, + "attrs": [], + "properties": { + "id": 366, + "order": 41, + "prevSize": 32, + "code": 61845, + "name": "try" + }, + "setIdx": 0, + "setId": 10, + "iconIdx": 366 + }, + { + "icon": { + "paths": [ + "M354.286 640q-62.857 36.571-153.143 36.571h-73.143v-36.571h-36.571q-7.429 0-12.857-13.429t-5.429-32.286q0-13.714 4-28-33.143-1.143-55.143-6t-22-11.714 22-11.714 55.143-6q-4-14.286-4-28 0-18.857 5.429-32.286t12.857-13.429h36.571v-36.571h73.143q90.286 0 153.143 36.571h636q24 4 60.857 10.286t46 8q50.857 8.571 85.714 23.143t47.714 27.143 12.857 22.857-12.857 22.857-47.714 27.143-85.714 23.143q-9.143 1.714-46 8t-60.857 10.286h-636zM993.714 496q30.286 20.571 30.286 52.571t-30.286 52.571l46.286 17.143q38.857-27.429 38.857-69.714t-38.857-69.714zM357.143 649.143h580q-124 21.714-260.571 45.714-32.571 0-64.571 13.714t-47.429 27.429l-16 13.714-164.571 164.571q-14.857 14.857-40.286 25.714t-51.143 10.857h-54.857l-53.143-265.143h16.571q89.714 0 156-36.571zM201.143 411.429h-16.571l53.143-265.143h54.857q26.286 0 51.429 10.857t40 25.714l164.571 164.571q2.286 2.286 6.286 6t17.429 13.143 27.714 16.571 35.143 13.143 41.429 6l260.571 45.714h-580q-66.286-36.571-156-36.571z" + ], + "width": 1243, + "attrs": [], + "isMulticolor": false, + "tags": [ + "space-shuttle" + ], + "defaultCode": 61847, + "grid": 14 + }, + "attrs": [], + "properties": { + "id": 368, + "order": 67, + "prevSize": 32, + "code": 61847, + "name": "space-shuttle" + }, + "setIdx": 0, + "setId": 10, + "iconIdx": 368 + }, + { + "icon": { + "paths": [ + "M620.571 0v877.714l-155.429 73.143q-130.286-11.429-236.571-58.286t-167.429-119.143-61.143-155.714q0-80 57.429-150.571t157.143-117.429 223.714-61.714v98.286q-124 21.714-203.714 85.714t-79.714 145.714q0 86.857 88.286 152.571t222 82.857v-777.143zM1002.857 332.571l21.143 222.857-300-65.143 84-47.429q-68-40-160-56.571v-98.286q158.286 18.857 274.857 89.714z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "openid" + ], + "defaultCode": 61851, + "grid": 14 + }, + "attrs": [], + "properties": { + "id": 372, + "order": 42, + "prevSize": 32, + "code": 61851, + "name": "openid" + }, + "setIdx": 0, + "setId": 10, + "iconIdx": 372 + }, + { + "icon": { + "paths": [ + "M187.429 161.143h116.571v561.714h-304v-398.286h187.429v-163.429zM187.429 629.143v-210.857h-70.286v210.857h70.286zM350.857 324.571v398.286h117.143v-398.286h-117.143zM350.857 161.143v116.571h117.143v-116.571h-117.143zM514.857 324.571h304.571v538.286h-304.571v-93.143h187.429v-46.857h-187.429v-398.286zM702.286 629.143v-210.857h-70.286v210.857h70.286zM866.286 324.571h304v538.286h-304v-93.143h186.857v-46.857h-186.857v-398.286zM1053.143 629.143v-210.857h-70.286v210.857h70.286z" + ], + "width": 1170, + "attrs": [], + "isMulticolor": false, + "tags": [ + "digg" + ], + "defaultCode": 61862, + "grid": 14 + }, + "attrs": [], + "properties": { + "id": 382, + "order": 43, + "prevSize": 32, + "code": 61862, + "name": "digg" + }, + "setIdx": 0, + "setId": 10, + "iconIdx": 382 + }, + { + "icon": { + "paths": [ + "M373.714 616q-0.571 1.714-7.143-0.286t-18-6.571l-11.429-5.143q-25.143-11.429-49.714-28-4-2.857-23.429-18t-21.714-16.286q-38.286 58.857-76.571 103.429-46.286 54.286-60 62.857-2.286 1.143-11.143 2.286t-10.571 0q3.429-2.286 46.857-52.571 12-13.714 48.857-65.714t44.857-67.429q9.714-17.143 29.143-56.286t20.571-44.286q-4.571-0.571-62.857 18.857-4.571 1.143-15.714 4.286t-19.714 5.429-9.714 2.857q-1.143 1.143-1.143 6t-0.571 5.429q-2.857 5.714-17.714 8.571-13.143 4-26.857 0-10.286-2.286-16-12-2.286-3.429-2.857-13.143 3.429-1.143 14-2.857t16.857-3.429q33.143-9.143 60-18.286 57.143-20 58.286-20 5.714-1.143 24.571-11.143t25.143-12.286q5.143-1.714 12.286-4.571t8.286-3.143 3.429 0.286q1.143 6.857-0.571 18.857 0 1.143-7.143 15.429t-15.143 30.571-9.714 19.143q-14.286 28.571-44 74.857l36.571 16q6.857 3.429 42.571 18.286t38.571 16q2.286 0.571 6 14.571t2.571 17.429zM256.571 338.286q1.714 8.571-2.286 16-6.857 13.143-28.571 21.714-17.143 6.857-34.286 6.857-14.857-1.714-28-14.857-8-8.571-10.286-23.429l0.571-1.714q1.714 1.714 11.143 2.857t15.143 0 33.143-9.143q20.571-6.857 31.429-8 9.714 0 12 9.714zM655.429 412l36 129.714-79.429-24zM22.286 869.143l396.571-132.571v-589.714l-396.571 133.143v589.143zM731.429 688l58.286 17.714-103.429-375.429-57.143-17.714-123.429 306.286 58.286 17.714 25.714-62.857 120.571 37.143zM444 138.286l327.429 105.143v-217.143zM621.714 894.286l90.286 7.429-30.857 91.429-22.857-37.714q-74.286 47.429-157.714 61.714-33.143 6.857-52 6.857h-48q-45.143 0-114-22.286t-104.857-48.571q-4.571-4-4.571-9.143 0-4.571 2.857-7.714t7.429-3.143q2.286 0 10.286 4.286t17.429 9.429 11.714 6.286q41.714 21.143 91.143 35.143t90 14q54.286 0 95.429-8.286t89.714-28.857q8.571-4 17.429-8.857t19.429-10.857 16.286-9.429zM877.714 277.714v616.571l-442.286-140.571q-8 3.429-214.286 72.857t-210.286 69.429q-7.429 0-10.286-7.429 0-0.571-0.571-1.714v-616q1.714-5.143 2.286-5.714 2.857-3.429 11.429-6.286 60.571-20 85.143-28.571v-219.429l318.857 113.143q1.143 0 91.714-31.429t180.571-62 92.286-30.571q11.429 0 11.429 12v238.857z" + ], + "width": 877.7142857142858, + "attrs": [], + "isMulticolor": false, + "tags": [ + "language" + ], + "defaultCode": 61867, + "grid": 14 + }, + "attrs": [], + "properties": { + "id": 387, + "order": 44, + "prevSize": 32, + "code": 61867, + "name": "language" + }, + "setIdx": 0, + "setId": 10, + "iconIdx": 387 + }, + { + "icon": { + "paths": [ + "M274.286 621.714q0-37.714-26.857-64.571t-64.571-26.857-64.571 26.857-26.857 64.571 26.857 64.571 64.571 26.857 64.571-26.857 26.857-64.571zM294.857 438.857h580.571l-50.857-204q-1.143-4.571-8-10t-12-5.429h-438.857q-5.143 0-12 5.429t-8 10zM1078.857 621.714q0-37.714-26.857-64.571t-64.571-26.857-64.571 26.857-26.857 64.571 26.857 64.571 64.571 26.857 64.571-26.857 26.857-64.571zM1170.286 566.857v219.429q0 8-5.143 13.143t-13.143 5.143h-54.857v73.143q0 45.714-32 77.714t-77.714 32-77.714-32-32-77.714v-73.143h-585.143v73.143q0 45.714-32 77.714t-77.714 32-77.714-32-32-77.714v-73.143h-54.857q-8 0-13.143-5.143t-5.143-13.143v-219.429q0-53.143 37.429-90.571t90.571-37.429h16l60-239.429q13.143-53.714 59.429-90t102.286-36.286h438.857q56 0 102.286 36.286t59.429 90l60 239.429h16q53.143 0 90.571 37.429t37.429 90.571z" + ], + "width": 1170, + "attrs": [], + "isMulticolor": false, + "tags": [ + "automobile", + "car" + ], + "defaultCode": 61881, + "grid": 14 + }, + "attrs": [], + "properties": { + "id": 400, + "order": 66, + "prevSize": 32, + "code": 61881, + "name": "automobile" + }, + "setIdx": 0, + "setId": 10, + "iconIdx": 400 + }, + { + "icon": { + "paths": [ + "M1042.286 512q53.143 0 90.571 37.429t37.429 90.571v219.429q0 8-5.143 13.143t-13.143 5.143h-54.857v36.571q0 45.714-32 77.714t-77.714 32-77.714-32-32-77.714v-36.571h-585.143v36.571q0 45.714-32 77.714t-77.714 32-77.714-32-32-77.714v-36.571h-54.857q-8 0-13.143-5.143t-5.143-13.143v-219.429q0-53.143 37.429-90.571t90.571-37.429h16l60-239.429q13.143-53.714 59.429-90t102.286-36.286h73.143v-128q0-8 5.143-13.143t13.143-5.143h256q8 0 13.143 5.143t5.143 13.143v128h73.143q56 0 102.286 36.286t59.429 90l60 239.429h16zM182.857 786.286q37.714 0 64.571-26.857t26.857-64.571-26.857-64.571-64.571-26.857-64.571 26.857-26.857 64.571 26.857 64.571 64.571 26.857zM294.857 512h580.571l-50.857-204q-1.143-4.571-8-10t-12-5.429h-438.857q-5.143 0-12 5.429t-8 10zM987.429 786.286q37.714 0 64.571-26.857t26.857-64.571-26.857-64.571-64.571-26.857-64.571 26.857-26.857 64.571 26.857 64.571 64.571 26.857z" + ], + "width": 1170, + "attrs": [], + "isMulticolor": false, + "tags": [ + "cab", + "taxi" + ], + "defaultCode": 61882, + "grid": 14 + }, + "attrs": [], + "properties": { + "id": 401, + "order": 65, + "prevSize": 32, + "code": 61882, + "name": "cab" + }, + "setIdx": 0, + "setId": 10, + "iconIdx": 401 + }, + { + "icon": { + "paths": [ + "M1028.571 441.143q63.429 26.286 102.571 83.143t39.143 126.571q0 93.714-67.429 160.286t-162.857 66.571q-2.286 0-6.571-0.286t-6-0.286h-695.429q-97.143-5.714-164.571-71.714t-67.429-160.286q0-62.857 31.429-116t84-84q-6.857-22.286-6.857-46.857 0-65.714 46.857-112t113.714-46.286q54.286 0 98.286 33.143 42.857-88 127.143-141.714t186.571-53.714q94.857 0 174.857 46t126.571 124.857 46.571 172q0 3.429-0.286 10.286t-0.286 10.286zM267.429 593.143q0 69.714 48 110.286t118.857 40.571q78.286 0 137.143-56.571-9.143-11.429-27.143-32.286t-24.857-28.857q-38.286 37.143-82.286 37.143-31.429 0-53.429-19.143t-22-50q0-30.286 22-49.714t52.286-19.429q25.143 0 48.286 12t41.714 31.429 37.143 42.857 39.429 46.857 44 42.857 55.429 31.429 69.429 12q69.143 0 116.857-40.857t47.714-108.857q0-69.143-48-109.714t-118.286-40.571q-81.714 0-137.714 55.429 8 9.143 16.857 19.429t19.714 22.857 16.571 19.429q37.714-36.571 81.143-36.571 29.714 0 52.571 18.857t22.857 48q0 32.571-21.143 52.286t-53.714 19.714q-24.571 0-47.143-12t-41.143-31.429-37.429-42.857-39.714-46.857-44.286-42.857-55.143-31.429-67.714-12q-69.714 0-118.286 40.286t-48.571 108.286z" + ], + "width": 1170, + "attrs": [], + "isMulticolor": false, + "tags": [ + "jsfiddle" + ], + "defaultCode": 61900, + "grid": 14 + }, + "attrs": [], + "properties": { + "id": 418, + "order": 56, + "prevSize": 32, + "code": 61900, + "name": "jsfiddle" + }, + "setIdx": 0, + "setId": 10, + "iconIdx": 418 + }, + { + "icon": { + "paths": [ + "M344 335.429q10.857 34.857 17.714 70.571t9.714 80.857-8 90.857-35.429 82.857q-12-46.286-38.286-89.714t-54.571-72.571-56.571-51.714-44.857-32.857-18.857-10.857q-35.429-19.429-46.571-57.143t8.286-73.143 57.714-46.571 73.714 8.286q78.857 47.429 136 101.143zM529.714 171.429q6.286 14.286 11.714 26.286t20.857 57.429 24.286 86 14.571 102.571 0 117.429-27.143 119.714-60.286 119.143q-29.143 41.143-78.857 41.143-30.857 0-56-17.714-32.571-22.857-39.429-62.286t16-72.571q34.286-48.571 46.286-111.429t7.429-114-18.286-103.143-22.286-73.143-12.571-29.714q-17.714-36-4.857-74t48.857-55.714q19.429-9.714 42.857-9.714 26.857 0 50.571 14.286t36.286 39.429zM713.143 553.714q-9.714 91.429-41.143 177.714-9.714-74.857-36-140.571 14.286-99.429-2.857-206.286-15.429-101.714-53.714-195.429 65.143 51.429 121.143 120.571 5.143 21.143 8.571 45.714 14.857 102.286 4 198.286zM868.571 54.857q5.143 9.714 13.429 28.286t24.857 67.143 28.857 101.714 19.429 130 2.857 153.714-26.857 171.429-64.286 184.857q-12.571 27.429-37.714 43.143t-54.286 15.714q-22.286 0-42.286-9.143-38.286-17.714-52.857-57.143t2.571-77.714q33.143-72 51.429-147.143t21.429-136.857-2-122-15.143-103.143-22-79.143-18.571-51.429-8.857-18.571q-19.429-37.143-6.571-77.429t50-59.714q21.143-11.429 46.286-11.429 28 0 52.286 14.571t38 40.286z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "google-wallet" + ], + "defaultCode": 61934, + "grid": 14 + }, + "attrs": [], + "properties": { + "id": 450, + "order": 45, + "prevSize": 32, + "code": 61934, + "name": "google-wallet" + }, + "setIdx": 0, + "setId": 10, + "iconIdx": 450 + }, + { + "icon": { + "paths": [ + "M657.143 613.714v62.286q0 28.571-20.857 50.857t-53.714 34.571-67.429 18.571-67.143 6.286q-117.143 0-195.714-79.429t-78.571-197.714q0-116 77.714-193.714t193.714-77.714q19.429 0 43.143 2.571t53.143 10.286 52.857 19.429 39.429 32.286 16 46.286v62.286q0 9.143-9.143 9.143h-67.429q-9.143 0-9.143-9.143v-40q0-24.571-37.429-38.571t-78.571-14q-80 0-130.571 52.286t-50.571 135.714q0 86.286 52.286 142.571t133.429 56.286q38.857 0 78.857-13.714t40-37.714v-40q0-4 2.571-6.571t6-2.571h68q3.429 0 6.286 2.571t2.857 6.571zM438.857 146.286q-74.286 0-142 29.143t-116.571 78-78 116.571-29.143 142 29.143 142 78 116.571 116.571 78 142 29.143 142-29.143 116.571-78 78-116.571 29.143-142-29.143-142-78-116.571-116.571-78-142-29.143zM877.714 512q0 119.429-58.857 220.286t-159.714 159.714-220.286 58.857-220.286-58.857-159.714-159.714-58.857-220.286 58.857-220.286 159.714-159.714 220.286-58.857 220.286 58.857 159.714 159.714 58.857 220.286z" + ], + "width": 877.7142857142858, + "attrs": [], + "isMulticolor": false, + "tags": [ + "copyright" + ], + "defaultCode": 61945, + "grid": 14 + }, + "attrs": [], + "properties": { + "id": 460, + "order": 50, + "prevSize": 32, + "code": 61945, + "name": "copyright" + }, + "setIdx": 0, + "setId": 10, + "iconIdx": 460 + }, + { + "icon": { + "paths": [ + "M435.429 658.286h-179.429q-22.857 0-32.857-20t3.714-38.286l107.429-143.429q-37.143-17.714-78.286-17.714-75.429 0-129.143 53.714t-53.714 129.143 53.714 129.143 129.143 53.714q65.714 0 116-41.429t63.429-104.857zM329.143 585.143h106.286q-10.286-48.571-42.857-84.571zM603.429 585.143l164.571-219.429h-274.286l-56.571 75.429q60 58.857 72 144h94.286zM1243.429 621.714q0-75.429-53.714-129.143t-129.143-53.714q-34.286 0-69.143 13.714l99.429 148.571q8.571 13.143 5.714 28t-15.429 22.857q-8.571 6.286-20.571 6.286-20 0-30.286-16.571l-99.429-148.571q-53.143 54.286-53.143 128.571 0 75.429 53.714 129.143t129.143 53.714 129.143-53.714 53.714-129.143zM1316.571 621.714q0 105.714-75.143 180.857t-180.857 75.143-180.857-75.143-75.143-180.857q0-55.429 22.571-104.857t62.571-85.429l-37.143-56-201.714 268q-10.286 14.857-29.143 14.857h-112.571q-13.143 93.714-85.143 156.571t-168 62.857q-105.714 0-180.857-75.143t-75.143-180.857 75.143-180.857 180.857-75.143q65.143 0 122.857 31.429l78.286-104.571h-128q-14.857 0-25.714-10.857t-10.857-25.714 10.857-25.714 25.714-10.857h219.429v73.143h248.571l-48.571-73.143h-126.857q-14.857 0-25.714-10.857t-10.857-25.714 10.857-25.714 25.714-10.857h146.286q18.857 0 30.286 16l152.571 228.571q52-25.143 109.714-25.143 105.714 0 180.857 75.143t75.143 180.857z" + ], + "width": 1317, + "attrs": [], + "isMulticolor": false, + "tags": [ + "bicycle" + ], + "defaultCode": 61958, + "grid": 14 + }, + "attrs": [], + "properties": { + "id": 472, + "order": 63, + "prevSize": 32, + "code": 61958, + "name": "bicycle" + }, + "setIdx": 0, + "setId": 10, + "iconIdx": 472 + }, + { + "icon": { + "paths": [ + "M219.429 694.857q0-30.286-21.429-51.714t-51.714-21.429-51.714 21.429-21.429 51.714 21.429 51.714 51.714 21.429 51.714-21.429 21.429-51.714zM804.571 694.857q0-30.286-21.429-51.714t-51.714-21.429-51.714 21.429-21.429 51.714 21.429 51.714 51.714 21.429 51.714-21.429 21.429-51.714zM778.286 468.571l-41.143-219.429q-2.857-13.143-12.857-21.429t-23.143-8.286h-524.571q-13.143 0-23.143 8.286t-12.857 21.429l-41.143 219.429q-2.857 17.143 8 30.286t28 13.143h606.857q17.143 0 28-13.143t8-30.286zM649.143 118.857q0-11.429-8-19.429t-19.429-8h-365.714q-11.429 0-19.429 8t-8 19.429 8 19.429 19.429 8h365.714q11.429 0 19.429-8t8-19.429zM877.714 533.143v344.571h-73.143v73.143q0 30.286-21.429 51.714t-51.714 21.429-51.714-21.429-21.429-51.714v-73.143h-438.857v73.143q0 30.286-21.429 51.714t-51.714 21.429-51.714-21.429-21.429-51.714v-73.143h-73.143v-344.571q0-64 14.286-127.429l58.857-259.429q5.143-44.571 55.714-78.286t131.429-50.857 178.571-17.143 178.571 17.143 131.429 50.857 55.714 78.286l60 259.429q13.143 58.286 13.143 127.429z" + ], + "width": 877.7142857142858, + "attrs": [], + "isMulticolor": false, + "tags": [ + "bus" + ], + "defaultCode": 61959, + "grid": 14 + }, + "attrs": [], + "properties": { + "id": 473, + "order": 62, + "prevSize": 32, + "code": 61959, + "name": "bus" + }, + "setIdx": 0, + "setId": 10, + "iconIdx": 473 + }, + { + "icon": { + "paths": [ + "M1034.857 888.571q10.857-10.857 25.714-10.857t25.714 10.857l73.143 73.143-51.429 51.429-47.429-47.429-47.429 47.429q-10.286 10.857-25.714 10.857t-25.714-10.857l-47.429-47.429-47.429 47.429q-10.857 10.857-25.714 10.857t-25.714-10.857l-47.429-47.429-47.429 47.429q-10.857 10.857-25.714 10.857t-25.714-10.857l-47.429-47.429-47.429 47.429q-10.857 10.857-25.714 10.857t-25.714-10.857l-47.429-47.429-47.429 47.429q-10.857 10.857-25.714 10.857t-25.714-10.857l-47.429-47.429-47.429 47.429q-10.857 10.857-25.714 10.857t-25.714-10.857l-47.429-47.429-47.429 47.429q-10.857 10.857-25.714 10.857t-25.714-10.857l-73.143-73.143 51.429-51.429 47.429 47.429 47.429-47.429q10.857-10.857 25.714-10.857t25.714 10.857l47.429 47.429 47.429-47.429q10.857-10.857 25.714-10.857t25.714 10.857l47.429 47.429 47.429-47.429q10.857-10.857 25.714-10.857t25.714 10.857l47.429 47.429 47.429-47.429q10.857-10.857 25.714-10.857t25.714 10.857l47.429 47.429 47.429-47.429q10.857-10.857 25.714-10.857t25.714 10.857l47.429 47.429 47.429-47.429q10.857-10.857 25.714-10.857t25.714 10.857l47.429 47.429zM135.429 866.857q-10.857 10.857-25.714 10.857t-25.714-10.857l-73.143-73.143 51.429-51.429 47.429 46.857 47.429-46.857q10.857-10.857 25.714-10.857t25.714 10.857l47.429 46.857 36.571-36.571v-167.429l-120-179.429q-9.714-14.857-4-32.286t22.857-23.143l101.143-33.143v-170.857h73.143v-73.143h146.286v-73.143h146.286v73.143h146.286v73.143h73.143v170.857l101.143 33.143q17.143 5.714 22.857 23.143t-4 32.286l-120 179.429v167.429l10.857-10.286q10.857-10.857 25.714-10.857t25.714 10.857l47.429 46.857 47.429-46.857q10.857-10.857 25.714-10.857t25.714 10.857l73.143 73.143-51.429 51.429-47.429-47.429-47.429 47.429q-10.286 10.857-25.714 10.857t-25.714-10.857l-47.429-47.429-47.429 47.429q-10.857 10.857-25.714 10.857t-25.714-10.857l-47.429-47.429-47.429 47.429q-10.857 10.857-25.714 10.857t-25.714-10.857l-47.429-47.429-47.429 47.429q-10.857 10.857-25.714 10.857t-25.714-10.857l-47.429-47.429-47.429 47.429q-10.857 10.857-25.714 10.857t-25.714-10.857l-47.429-47.429-47.429 47.429q-10.857 10.857-25.714 10.857t-25.714-10.857l-47.429-47.429zM365.714 219.429v73.143l219.429-73.143 219.429 73.143v-73.143h-73.143v-73.143h-292.571v73.143h-73.143z" + ], + "width": 1170, + "attrs": [], + "isMulticolor": false, + "tags": [ + "ship" + ], + "defaultCode": 61978, + "grid": 14 + }, + "attrs": [], + "properties": { + "id": 491, + "order": 64, + "prevSize": 32, + "code": 61978, + "name": "ship" + }, + "setIdx": 0, + "setId": 10, + "iconIdx": 491 + }, + { + "icon": { + "paths": [ + "M1314.857 592q6.857 58.857-12.571 113.429t-56.571 93.429-90.571 60.571-112.286 17.714q-92-6.286-159.714-71.429t-76.857-156.571q-6.857-63.429 15.714-120.286t67.714-97.429l-40.571-61.143q-54.857 45.714-86.286 110.857t-31.429 139.429q0 15.429-10.571 26.571t-26 11.143h-185.714q-13.143 93.714-85.143 156.571t-168 62.857q-105.714 0-180.857-75.143t-75.143-180.857 75.143-180.857 180.857-75.143q43.429 0 86.857 15.429l13.714-25.714q-70.286-62.857-173.714-62.857h-36.571q-14.857 0-25.714-10.857t-10.857-25.714 10.857-25.714 25.714-10.857h73.143q44.571 0 82.857 7.714t66.571 22 40.857 22.571 29.143 20.857h358.286l-48.571-73.143h-126.857q-17.143 0-28-12.857t-8-30q2.286-13.143 13.143-21.714t24.571-8.571h144.571q18.857 0 30.286 16l40 60 65.143-65.143q10.857-10.857 26.286-10.857h57.714q14.857 0 25.714 10.857t10.857 25.714v73.143q0 14.857-10.857 25.714t-25.714 10.857h-102.286l65.714 98.286q74.857-36 157.143-20.571 81.714 14.857 139.429 76.857t67.429 144.857zM256 804.571q65.714 0 116-41.429t63.429-104.857h-179.429q-20 0-31.429-17.714-10.286-18.286-0.571-36l84-158.286q-26.857-7.429-52-7.429-75.429 0-129.143 53.714t-53.714 129.143 53.714 129.143 129.143 53.714zM1060.571 804.571q75.429 0 129.143-53.714t53.714-129.143-53.714-129.143-129.143-53.714q-34.286 0-69.143 13.714l99.429 148.571q8.571 13.143 5.714 28t-15.429 22.857q-8.571 6.286-20.571 6.286-20 0-30.286-16.571l-99.429-148.571q-53.143 54.286-53.143 128.571 0 75.429 53.714 129.143t129.143 53.714z" + ], + "width": 1317, + "attrs": [], + "isMulticolor": false, + "tags": [ + "motorcycle" + ], + "defaultCode": 61980, + "grid": 14 + }, + "attrs": [], + "properties": { + "id": 493, + "order": 61, + "prevSize": 32, + "code": 61980, + "name": "motorcycle" + }, + "setIdx": 0, + "setId": 10, + "iconIdx": 493 + }, + { + "icon": { + "paths": [ + "M621.714 0q105.714 0 180.857 53.429t75.143 129.429v512q0 74.286-71.714 126.857t-174.571 55.429l121.714 115.429q9.143 8.571 4.571 20t-17.143 11.429h-603.429q-12.571 0-17.143-11.429t4.571-20l121.714-115.429q-102.857-2.857-174.571-55.429t-71.714-126.857v-512q0-76 75.143-129.429t180.857-53.429h365.714zM438.857 768q45.714 0 77.714-32t32-77.714-32-77.714-77.714-32-77.714 32-32 77.714 32 77.714 77.714 32zM768 438.857v-292.571h-658.286v292.571h658.286z" + ], + "width": 877.7142857142858, + "attrs": [], + "isMulticolor": false, + "tags": [ + "train" + ], + "defaultCode": 62008, + "grid": 14 + }, + "attrs": [], + "properties": { + "id": 517, + "order": 60, + "prevSize": 32, + "code": 62008, + "name": "train" + }, + "setIdx": 0, + "setId": 10, + "iconIdx": 517 + }, + { + "icon": { + "paths": [ + "M621.714 0q105.714 0 180.857 53.429t75.143 129.429v512q0 74.286-71.714 126.857t-174.571 55.429l121.714 115.429q9.143 8.571 4.571 20t-17.143 11.429h-603.429q-12.571 0-17.143-11.429t4.571-20l121.714-115.429q-102.857-2.857-174.571-55.429t-71.714-126.857v-512q0-76 75.143-129.429t180.857-53.429h365.714zM164.571 749.714q37.714 0 64.571-26.857t26.857-64.571-26.857-64.571-64.571-26.857-64.571 26.857-26.857 64.571 26.857 64.571 64.571 26.857zM402.286 438.857v-292.571h-310.857v292.571h310.857zM713.143 749.714q37.714 0 64.571-26.857t26.857-64.571-26.857-64.571-64.571-26.857-64.571 26.857-26.857 64.571 26.857 64.571 64.571 26.857zM804.571 438.857v-292.571h-329.143v292.571h329.143z" + ], + "width": 877.7142857142858, + "attrs": [], + "isMulticolor": false, + "tags": [ + "subway" + ], + "defaultCode": 62009, + "grid": 14 + }, + "attrs": [], + "properties": { + "id": 518, + "order": 59, + "prevSize": 32, + "code": 62009, + "name": "subway" + }, + "setIdx": 0, + "setId": 10, + "iconIdx": 518 + }, + { + "icon": { + "paths": [ + "M870.857 892q0 38.857-27.429 66.286t-66.286 27.429-66.571-27.429-27.714-66.286 27.714-66.571 66.571-27.714 66.286 27.714 27.429 66.571zM442.857 892q0 38.857-27.714 66.286t-66.571 27.429-66.286-27.429-27.429-66.286 27.429-66.571 66.286-27.714 66.571 27.714 27.714 66.571zM0 38.286q32.571 34.286 63.143 59.714t69.143 46.857 77.714 36 94.857 26 114.286 18 142.857 10.571 173.714 5.429 212.857 1.429q79.429 0 139.714 2.857t103.429 9.429 70.857 15.714 40.571 22.571 13.714 29.429-11.143 36.571-32.286 43.714-51.143 52-66.286 59.714-79.429 68q-105.714 89.714-163.429 141.143 16.571-29.143 43.714-62.286t53.714-60.286 54-56.286 47.429-52.286 30.857-46 7.429-40-26-31.714-66.571-23.429-116.571-13.429-173.714-2.857q-96 1.143-179.429-3.429t-146.286-13.143-116.857-23.429-91.143-29.429-70-35.714-52.286-38-38.857-40.857-28.857-39.714-22.857-38.857-20.857-34z" + ], + "width": 1317, + "attrs": [], + "isMulticolor": false, + "tags": [ + "opencart" + ], + "defaultCode": 62013, + "grid": 14 + }, + "attrs": [], + "properties": { + "id": 522, + "order": 46, + "prevSize": 32, + "code": 62013, + "name": "opencart" + }, + "setIdx": 0, + "setId": 10, + "iconIdx": 522 + }, + { + "icon": { + "paths": [ + "M489.714 310.857v66.857q0 7.429-5.429 12.571t-12.857 5.143h-170.286v464q0 7.429-5.143 12.857t-12.571 5.429h-77.143q-7.429 0-12.857-5.143t-5.429-13.143v-464h-169.714q-7.429 0-12.857-5.143t-5.429-12.571v-66.857q0-8 5.143-13.143t13.143-5.143h453.143q7.429 0 12.857 5.429t5.429 12.857zM1082.857 309.143l44 549.143q0.571 7.429-4.571 13.714-5.714 5.714-13.143 5.714h-76.571q-6.857 0-12-4.857t-5.714-11.714l-26.286-336-108 242.857q-4.571 10.857-16.571 10.857h-68.571q-11.429 0-16.571-10.857l-107.429-244-25.714 337.143q-0.571 6.857-5.714 11.714t-12 4.857h-77.143q-7.429 0-13.143-5.714-5.143-5.714-5.143-13.714l44.571-549.143q0.571-6.857 5.714-11.714t12-4.857h81.143q11.429 0 16.571 10.857l125.714 297.143q5.714 13.714 11.429 29.143 1.714-4 5.429-14t6-15.143l126.286-297.143q5.143-10.857 16.571-10.857h80.571q7.429 0 12.571 4.857t5.714 11.714z" + ], + "width": 1127, + "attrs": [], + "isMulticolor": false, + "tags": [ + "trademark" + ], + "defaultCode": 62044, + "grid": 14 + }, + "attrs": [], + "properties": { + "id": 551, + "order": 47, + "prevSize": 32, + "code": 62044, + "name": "trademark" + }, + "setIdx": 0, + "setId": 10, + "iconIdx": 551 + }, + { + "icon": { + "paths": [ + "M595.429 401.714q0-50.286-34.286-69.143-18.857-10.286-66.857-10.286h-70.286v160.571h92.571q37.714 0 58.286-21.143t20.571-60zM625.143 564.571l117.143 213.143q4.571 9.714-0.571 17.714-4.571 9.143-15.429 9.143h-86.857q-11.429 0-16-9.714l-110.857-208.571h-88.571v200q0 8-5.143 13.143t-13.143 5.143h-76.571q-8 0-13.143-5.143t-5.143-13.143v-548.571q0-8 5.143-13.143t13.143-5.143h168q73.143 0 108.571 13.714 48.571 17.714 76.571 62.286t28 102.857q0 52.571-24.286 94.571t-66 62.571q3.429 5.714 5.143 9.143zM512 91.429q-85.714 0-163.429 33.429t-134 89.714-89.714 134-33.429 163.429 33.429 163.429 89.714 134 134 89.714 163.429 33.429 163.429-33.429 134-89.714 89.714-134 33.429-163.429-33.429-163.429-89.714-134-134-89.714-163.429-33.429zM1024 512q0 104-40.571 198.857t-109.143 163.429-163.429 109.143-198.857 40.571-198.857-40.571-163.429-109.143-109.143-163.429-40.571-198.857 40.571-198.857 109.143-163.429 163.429-109.143 198.857-40.571 198.857 40.571 163.429 109.143 109.143 163.429 40.571 198.857z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "registered" + ], + "defaultCode": 62045, + "grid": 14 + }, + "attrs": [], + "properties": { + "id": 552, + "order": 48, + "prevSize": 32, + "code": 62045, + "name": "registered" + }, + "setIdx": 0, + "setId": 10, + "iconIdx": 552 + }, + { + "icon": { + "paths": [ + "M345.714 704.571q87.429 0 146.857-59.429 8-10.286 1.714-20.571l-25.714-46.857q-3.429-7.429-13.714-9.714-9.143-1.143-15.429 6.286l-2.286 1.714q-2.286 2.286-6.571 5.714t-10 7.429-13.429 8.286-16.286 7.714-19.143 5.429-21.429 2q-43.429 0-71.429-28.571t-28-72.571q0-43.429 27.429-71.714t69.714-28.286q21.143 0 40.857 8t28.857 16l9.143 8q6.286 6.286 14.857 5.714 9.143-1.143 13.714-8l30.286-44.571q7.429-11.429-1.143-22.286-1.714-2.286-6.286-6.857t-17.143-13.429-27.714-16-38.571-12.857-49.143-5.714q-84.571 0-140.571 55.143t-56 137.429q0 83.429 55.429 138t141.143 54.571zM705.714 704.571q87.429 0 146.857-59.429 8-10.286 2.286-20.571l-25.714-46.857q-4.571-8-14.286-9.714-9.143-1.143-15.429 6.286l-2.286 1.714q-2.286 2.286-6.571 5.714t-10 7.429-13.429 8.286-16.286 7.714-19.143 5.429-21.429 2q-43.429 0-71.429-28.571t-28-72.571q0-43.429 27.429-71.714t69.714-28.286q21.143 0 40.857 8t28.857 16l9.143 8q6.286 6.286 14.857 5.714 9.143-1.143 13.714-8l30.286-44.571q7.429-11.429-1.143-22.286-1.714-2.286-6.286-6.857t-17.143-13.429-27.714-16-38.571-12.857-49.143-5.714q-84 0-140.286 55.143t-56.286 137.429q0 83.429 55.429 138t141.143 54.571zM512 91.429q-85.714 0-163.429 33.429t-134 89.714-89.714 134-33.429 163.429 33.429 163.429 89.714 134 134 89.714 163.429 33.429 163.429-33.429 134-89.714 89.714-134 33.429-163.429-33.429-163.429-89.714-134-134-89.714-163.429-33.429zM512 0q104 0 198.857 40.571t163.429 109.143 109.143 163.429 40.571 198.857-40.571 198.857-109.143 163.429-163.429 109.143-198.857 40.571-198.857-40.571-163.429-109.143-109.143-163.429-40.571-198.857 40.571-198.857 109.143-163.429 163.429-109.143 198.857-40.571z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "creative-commons" + ], + "defaultCode": 62046, + "grid": 14 + }, + "attrs": [], + "properties": { + "id": 553, + "order": 49, + "prevSize": 32, + "code": 62046, + "name": "creative-commons" + }, + "setIdx": 0, + "setId": 10, + "iconIdx": 553 + }, + { + "icon": { + "paths": [ + "M853.714 936.571l-168.571-397.143q-14.286 28-90.571 174.571t-113.429 222.571q-0.571 0.571-15.714 0.286t-15.143-0.857q-46.857-110.286-146-335.429t-148.286-340.571q-12-28.571-38-61.429t-59.143-57.429-58.286-24.571q0-2.857-0.286-13.714t-0.286-15.429h333.143v28.571q-22.286 1.143-45.429 9.143t-38 24.571-5.714 36.571q14.857 33.714 123.714 285.143t134.571 308.571q17.714-34.857 80-152.286t74.857-141.429q-10.857-22.286-72-160.571t-77.714-168.571q-21.714-39.429-114.857-40.571v-28.571l293.143 0.571v26.857q-34.286 1.143-53.429 14.286t-7.143 39.429q18.857 40 49.714 108.286t49.143 107.143q62.857-122.286 98.857-207.429 13.714-31.429-5.714-45.429t-73.714-15.143q0.571-4 0.571-14.286v-13.714q36.571 0 97.429-0.286t102.857-0.571 52.857-0.286v28q-35.429 1.143-68 18.857t-51.429 46.286l-121.714 252.571q7.429 18.857 72.857 165.714t69.429 156.571l252-581.143q-8-21.714-28.286-35.714t-37.143-18-31.714-4.571v-28.571l262.857 2.286 0.571 1.143-0.571 25.143q-79.429 2.286-114.857 82.857-300.571 694.857-319.429 737.714h-28z" + ], + "width": 1317, + "attrs": [], + "isMulticolor": false, + "tags": [ + "wikipedia-w" + ], + "defaultCode": 62054, + "grid": 14 + }, + "attrs": [], + "properties": { + "id": 560, + "order": 51, + "prevSize": 32, + "code": 62054, + "name": "wikipedia" + }, + "setIdx": 0, + "setId": 10, + "iconIdx": 560 + }, + { + "icon": { + "paths": [ + "M886.286 843.429q8.571-3.429 14.857-1.714t6.286 10-8.571 19.143q-7.429 9.143-25.143 24.857t-54.571 38.857-80.571 42.286-107.429 33.143-131.143 14q-68 0-136-17.714t-119.429-43.714-98.571-59.429-75.714-60-48-50q-4.571-5.143-5.714-9.429t0.571-6.857 4.571-4 6.571-1.143 6.571 2.571q109.714 66.857 171.429 94.857 222.286 100.571 456.571 51.429 108.571-22.857 223.429-77.143zM1004.571 777.714q6.286 9.143 1.429 39.714t-16.286 58.571q-19.429 47.429-48.571 70.857-9.714 8-14.857 5.143t0-13.714q12-25.714 25.429-69.429t3.714-56.286q-2.857-4-8.857-6.571t-15.429-3.429-16.857-1.429-20 0-18 1.143-17.714 1.714-12.857 1.143q-3.429 0.571-7.429 0.857t-6.286 0.571-4.857 0.571-4 0.286h-5.714t-1.714-0.286-1.143-0.857l-0.857-1.714q-3.429-9.143 26.857-22.857t58.857-17.143q26.286-4 61.714-0.571t43.429 13.714zM779.429 524.571q0 17.714 7.714 36.571t18.286 33.143 21.429 26.286 18.857 18.286l7.429 6.286-129.714 128q-22.857-21.143-45.143-43.143t-33.143-33.429l-10.857-11.429q-6.286-6.286-14.286-18.857-21.714 33.714-55.714 58.571t-72.857 36.286-80 13.143-78.571-12-67.143-37.429-47.429-64.571-17.714-92.857q0-48 16-88t41.143-66.571 60.857-47.429 70-32.571 74.286-19.714 68.286-10.571 56.857-3.714v-72.571q0-37.143-12-55.429-19.429-30.286-69.143-30.286-3.429 0-9.429 0.571t-23.143 6.857-32 16.857-32 34-27.429 54.857l-168-15.429q0-34.286 12.571-68t38.286-64.571 61.714-54.286 86.571-37.429 108.857-14q57.143 0 103.429 14.286t74 35.143 46.286 47.429 25.714 49.143 7.143 42v336.571zM395.429 536.571q0 49.143 40 76 37.714 25.143 79.429 12.571 48-14.286 65.143-70.286 8-25.714 8-57.714v-92.571q-33.714 1.143-63.429 6.857t-60.857 19.143-49.714 40.571-18.571 65.429z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "amazon" + ], + "defaultCode": 62064, + "grid": 14 + }, + "attrs": [], + "properties": { + "id": 569, + "order": 52, + "prevSize": 32, + "code": 62064, + "name": "amazon" + }, + "setIdx": 0, + "setId": 10, + "iconIdx": 569 + }, + { + "icon": { + "paths": [ + "M0 73.143h877.714v877.714h-877.714v-877.714zM518.857 256l-6.857 18.857 42.857 47.429-17.714 65.143 14.286 14.286 61.143-32.571 61.143 32.571 14.286-14.286-17.714-65.143 42.857-47.429-6.857-18.857h-54.286l-30.286-54.857h-18.286l-30.286 54.857h-54.286zM366.286 349.143q18.286 0 25.429 9.143t6.571 36l99.429-12q0-31.429-10-52.857t-28.857-32-39.429-14.571-48.571-4q-76 0-113.714 32.857t-37.714 104.286v41.143h-54.857v73.143h43.429q11.429 0 11.429 4.571v218.286q0 8-2.857 11.429t-10.286 4l-41.714 4v50.286h256v-49.143l-85.143-8q-3.429-0.571-4.857-0.857t-2-1.429-0.286-2.286 0.571-4 0.286-5.714v-221.143h109.143l21.714-73.143h-132q-3.429 0-1.143-3.429t2.286-5.143v-45.714q0-15.429 0.857-23.143t4.286-16 11.143-11.429 20.857-3.143zM713.143 822.857v-49.143l-30.857-5.143q-4-0.571-5.429-1.429t-1.429-1.714 0.571-4.286 0.571-6.857v-297.143h-157.143l-13.143 57.714 47.429 12.571q13.143 4 13.143 15.429v211.429q0 8-3.429 10.571t-11.429 3.714l-40 5.143v49.143h201.143z" + ], + "width": 877.7142857142858, + "attrs": [], + "isMulticolor": false, + "tags": [ + "fonticons" + ], + "defaultCode": 62080, + "grid": 14 + }, + "attrs": [], + "properties": { + "id": 584, + "order": 53, + "prevSize": 32, + "code": 62080, + "name": "fonticons" + }, + "setIdx": 0, + "setId": 10, + "iconIdx": 584 + }, + { + "icon": { + "paths": [ + "M219.429 768q0 14.857-10.857 25.714t-25.714 10.857-25.714-10.857-10.857-25.714 10.857-25.714 25.714-10.857 25.714 10.857 10.857 25.714zM804.571 802.857q0 69.143-41.714 108.571t-110.857 39.429h-499.429q-69.143 0-110.857-39.429t-41.714-108.571q0-38.857 3.143-74.857t13.714-78.857 27.143-75.714 46.286-58.857 68.571-34.571q-12.571 29.714-12.571 68.571v116q-33.143 11.429-53.143 40t-20 63.429q0 45.714 32 77.714t77.714 32 77.714-32 32-77.714q0-34.857-20.286-63.429t-52.857-40v-116q0-35.429 14.286-53.143 75.429 59.429 168.571 59.429t168.571-59.429q14.286 17.714 14.286 53.143v36.571q-60.571 0-103.429 42.857t-42.857 103.429v50.857q-18.286 16.571-18.286 40.571 0 22.857 16 38.857t38.857 16 38.857-16 16-38.857q0-24-18.286-40.571v-50.857q0-29.714 21.714-51.429t51.429-21.714 51.429 21.714 21.714 51.429v50.857q-18.286 16.571-18.286 40.571 0 22.857 16 38.857t38.857 16 38.857-16 16-38.857q0-24-18.286-40.571v-50.857q0-38.857-19.714-72.857t-53.429-53.429q0-5.714 0.286-24.286t0-27.429-1.429-23.714-4-26.857-7.429-22.857q38.857 8.571 68.571 34.571t46.286 58.857 27.143 75.714 13.714 78.857 3.143 74.857zM621.714 292.571q0 90.857-64.286 155.143t-155.143 64.286-155.143-64.286-64.286-155.143 64.286-155.143 155.143-64.286 155.143 64.286 64.286 155.143z" + ], + "width": 805, + "attrs": [], + "isMulticolor": false, + "tags": [ + "user-md" + ], + "defaultCode": 61680, + "grid": 14 + }, + "attrs": [], + "properties": { + "name": "user-md", + "order": 481, + "id": 214, + "prevSize": 32, + "code": 61680 + }, + "setIdx": 7, + "setId": 2, + "iconIdx": 0 + }, + { + "icon": { + "paths": [ + "M731.429 402.286q0-14.857-10.857-25.714t-25.714-10.857-25.714 10.857-10.857 25.714 10.857 25.714 25.714 10.857 25.714-10.857 10.857-25.714zM804.571 402.286q0 35.429-20.286 63.429t-52.857 40v225.714q0 90.857-75.143 155.143t-180.857 64.286-180.857-64.286-75.143-155.143v-75.429q-93.714-11.429-156.571-73.143t-62.857-144v-292.571q0-14.857 10.857-25.714t25.714-10.857q3.429 0 9.143 1.143 9.714-17.143 26.857-27.429t37.143-10.286q30.286 0 51.714 21.429t21.429 51.714-21.429 51.714-51.714 21.429q-18.857 0-36.571-10.286v229.714q0 60.571 53.714 103.429t129.143 42.857 129.143-42.857 53.714-103.429v-229.714q-17.714 10.286-36.571 10.286-30.286 0-51.714-21.429t-21.429-51.714 21.429-51.714 51.714-21.429q20 0 37.143 10.286t26.857 27.429q5.714-1.143 9.143-1.143 14.857 0 25.714 10.857t10.857 25.714v292.571q0 82.286-62.857 144t-156.571 73.143v75.429q0 60.571 53.714 103.429t129.143 42.857 129.143-42.857 53.714-103.429v-225.714q-32.571-12-52.857-40t-20.286-63.429q0-45.714 32-77.714t77.714-32 77.714 32 32 77.714z" + ], + "width": 805, + "attrs": [], + "isMulticolor": false, + "tags": [ + "stethoscope" + ], + "defaultCode": 61681, + "grid": 14 + }, + "attrs": [], + "properties": { + "name": "stethoscope", + "order": 480, + "id": 215, + "prevSize": 32, + "code": 61681 + }, + "setIdx": 7, + "setId": 2, + "iconIdx": 1 + }, + { + "icon": { + "paths": [ + "M365.714 804.571q0-30.286-21.429-51.714t-51.714-21.429-51.714 21.429-21.429 51.714 21.429 51.714 51.714 21.429 51.714-21.429 21.429-51.714zM146.286 512h219.429v-146.286h-90.286q-8 1.143-12.571 5.143l-111.429 111.429q-4 6.857-5.143 12.571v17.143zM877.714 804.571q0-30.286-21.429-51.714t-51.714-21.429-51.714 21.429-21.429 51.714 21.429 51.714 51.714 21.429 51.714-21.429 21.429-51.714zM950.857 420.571v-109.714q0-8-5.143-13.143t-13.143-5.143h-128v-128q0-8-5.143-13.143t-13.143-5.143h-109.714q-8 0-13.143 5.143t-5.143 13.143v128h-128q-8 0-13.143 5.143t-5.143 13.143v109.714q0 8 5.143 13.143t13.143 5.143h128v128q0 8 5.143 13.143t13.143 5.143h109.714q8 0 13.143-5.143t5.143-13.143v-128h128q8 0 13.143-5.143t5.143-13.143zM1097.143 109.714v658.286q0 14.857-10.857 25.714t-25.714 10.857h-109.714q0 60.571-42.857 103.429t-103.429 42.857-103.429-42.857-42.857-103.429h-219.429q0 60.571-42.857 103.429t-103.429 42.857-103.429-42.857-42.857-103.429h-73.143q-14.857 0-25.714-10.857t-10.857-25.714 10.857-25.714 25.714-10.857v-237.714q0-14.857 7.429-33.143t18.286-29.143l113.143-113.143q10.857-10.857 29.143-18.286t33.143-7.429h91.429v-182.857q0-14.857 10.857-25.714t25.714-10.857h658.286q14.857 0 25.714 10.857t10.857 25.714z" + ], + "width": 1097, + "attrs": [], + "isMulticolor": false, + "tags": [ + "ambulance" + ], + "defaultCode": 61689, + "grid": 14 + }, + "attrs": [], + "properties": { + "name": "ambulance", + "order": 478, + "id": 223, + "prevSize": 32, + "code": 61689 + }, + "setIdx": 7, + "setId": 2, + "iconIdx": 2 + }, + { + "icon": { + "paths": [ + "M731.429 640v-109.714q0-8-5.143-13.143t-13.143-5.143h-128v-128q0-8-5.143-13.143t-13.143-5.143h-109.714q-8 0-13.143 5.143t-5.143 13.143v128h-128q-8 0-13.143 5.143t-5.143 13.143v109.714q0 8 5.143 13.143t13.143 5.143h128v128q0 8 5.143 13.143t13.143 5.143h109.714q8 0 13.143-5.143t5.143-13.143v-128h128q8 0 13.143-5.143t5.143-13.143zM365.714 219.429h292.571v-73.143h-292.571v73.143zM146.286 219.429v731.429h-18.286q-52.571 0-90.286-37.714t-37.714-90.286v-475.429q0-52.571 37.714-90.286t90.286-37.714h18.286zM822.857 219.429v731.429h-621.714v-731.429h91.429v-91.429q0-22.857 16-38.857t38.857-16h329.143q22.857 0 38.857 16t16 38.857v91.429h91.429zM1024 347.429v475.429q0 52.571-37.714 90.286t-90.286 37.714h-18.286v-731.429h18.286q52.571 0 90.286 37.714t37.714 90.286z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "medkit" + ], + "defaultCode": 61690, + "grid": 14 + }, + "attrs": [], + "properties": { + "name": "medkit", + "order": 479, + "id": 224, + "prevSize": 32, + "code": 61690 + }, + "setIdx": 7, + "setId": 2, + "iconIdx": 3 + }, + { + "icon": { + "paths": [ + "M445.714 269.714q0 34.286-10.857 64.857t-36 52.857-60 22.286q-43.429 0-78.857-32.857t-52.571-77.429-17.143-86.286q0-34.286 10.857-64.857t36-52.857 60-22.286q44 0 79.143 32.857t52.286 77.143 17.143 86.571zM250.286 545.714q0 45.714-24 79.429t-68 33.714q-43.429 0-80.857-31.714t-57.429-76.286-20-86.857q0-45.714 24-79.714t68-34q43.429 0 80.857 31.714t57.429 76.571 20 87.143zM475.429 530.286q67.429 0 145.714 55.714t130.857 135.429 52.571 145.429q0 26.286-9.714 43.714t-27.714 25.714-36.857 11.429-43.429 3.143q-38.857 0-107.143-25.714t-104.286-25.714q-37.714 0-110 25.429t-114.571 25.429q-104.571 0-104.571-83.429 0-49.143 32-109.429t79.714-110 107.143-83.429 110.286-33.714zM612 409.714q-34.857 0-60-22.286t-36-52.857-10.857-64.857q0-42.286 17.143-86.571t52.286-77.143 79.143-32.857q34.857 0 60 22.286t36 52.857 10.857 64.857q0 41.714-17.143 86.286t-52.571 77.429-78.857 32.857zM858.857 350.286q44 0 68 34t24 79.714q0 42.286-20 86.857t-57.429 76.286-80.857 31.714q-44 0-68-33.714t-24-79.429q0-42.286 20-87.143t57.429-76.571 80.857-31.714z" + ], + "width": 951, + "attrs": [], + "isMulticolor": false, + "tags": [ + "paw" + ], + "defaultCode": 61872, + "grid": 14 + }, + "attrs": [], + "properties": { + "name": "paw", + "order": 482, + "id": 392, + "prevSize": 32, + "code": 61872 + }, + "setIdx": 7, + "setId": 2, + "iconIdx": 4 + }, + { + "icon": { + "paths": [ + "M838.857 217.143q16 16 27.429 43.429t11.429 50.286v658.286q0 22.857-16 38.857t-38.857 16h-768q-22.857 0-38.857-16t-16-38.857v-914.286q0-22.857 16-38.857t38.857-16h512q22.857 0 50.286 11.429t43.429 27.429zM585.143 77.714v214.857h214.857q-5.714-16.571-12.571-23.429l-178.857-178.857q-6.857-6.857-23.429-12.571zM804.571 950.857v-585.143h-237.714q-22.857 0-38.857-16t-16-38.857v-237.714h-438.857v877.714h731.429zM510.857 612q18.857 14.857 48 32 33.714-4 66.857-4 84 0 101.143 28 9.143 12.571 1.143 29.714 0 0.571-0.571 1.143l-1.143 1.143v0.571q-3.429 21.714-40.571 21.714-27.429 0-65.714-11.429t-74.286-30.286q-126.286 13.714-224 47.429-87.429 149.714-138.286 149.714-8.571 0-16-4l-13.714-6.857q-0.571-0.571-3.429-2.857-5.714-5.714-3.429-20.571 5.143-22.857 32-52.286t75.429-55.143q8-5.143 13.143 3.429 1.143 1.143 1.143 2.286 29.714-48.571 61.143-112.571 38.857-77.714 59.429-149.714-13.714-46.857-17.429-91.143t3.714-72.857q6.286-22.857 24-22.857h12.571q13.143 0 20 8.571 10.286 12 5.143 38.857-1.143 3.429-2.286 4.571 0.571 1.714 0.571 4.571v17.143q-1.143 70.286-8 109.714 31.429 93.714 83.429 136zM181.714 846.857q29.714-13.714 78.286-90.286-29.143 22.857-50 48t-28.286 42.286zM409.143 321.143q-8.571 24-1.143 75.429 0.571-4 4-25.143 0-1.714 4-24.571 0.571-2.286 2.286-4.571-0.571-0.571-0.571-1.143t-0.286-0.857-0.286-0.857q-0.571-12.571-7.429-20.571 0 0.571-0.571 1.143v1.143zM338.286 698.857q77.143-30.857 162.286-46.286-1.143-0.571-7.429-5.429t-9.143-7.714q-43.429-38.286-72.571-100.571-15.429 49.143-47.429 112.571-17.143 32-25.714 47.429zM707.429 689.714q-13.714-13.714-80-13.714 43.429 16 70.857 16 8 0 10.286-0.571 0-0.571-1.143-1.714z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "file-pdf-o" + ], + "defaultCode": 61889, + "grid": 14 + }, + "attrs": [], + "properties": { + "name": "file-pdf", + "order": 483, + "id": 408, + "prevSize": 32, + "code": 61889 + }, + "setIdx": 7, + "setId": 2, + "iconIdx": 5 + }, + { + "icon": { + "paths": [ + "M838.857 217.143q16 16 27.429 43.429t11.429 50.286v658.286q0 22.857-16 38.857t-38.857 16h-768q-22.857 0-38.857-16t-16-38.857v-914.286q0-22.857 16-38.857t38.857-16h512q22.857 0 50.286 11.429t43.429 27.429zM585.143 77.714v214.857h214.857q-5.714-16.571-12.571-23.429l-178.857-178.857q-6.857-6.857-23.429-12.571zM804.571 950.857v-585.143h-237.714q-22.857 0-38.857-16t-16-38.857v-237.714h-438.857v877.714h731.429zM133.143 438.857v61.143h40l93.714 377.714h90.857l73.143-277.143q4-11.429 5.714-26.286 1.143-9.143 1.143-13.714h2.286l1.714 13.714q0.571 1.714 2 11.429t3.143 14.857l73.143 277.143h90.857l93.714-377.714h40v-61.143h-171.429v61.143h51.429l-56.571 250.286q-2.857 11.429-4 26.286l-1.143 12h-2.286l-1.714-12q-0.571-2.857-2.286-12t-2.857-14.286l-82.286-311.429h-65.143l-82.286 311.429q-1.143 5.143-2.571 14t-2 12.286l-2.286 12h-2.286l-1.143-12q-1.143-14.857-4-26.286l-56.571-250.286h51.429v-61.143h-171.429z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "file-word-o" + ], + "defaultCode": 61890, + "grid": 14 + }, + "attrs": [], + "properties": { + "name": "file-word", + "order": 484, + "id": 409, + "prevSize": 32, + "code": 61890 + }, + "setIdx": 7, + "setId": 2, + "iconIdx": 6 + }, + { + "icon": { + "paths": [ + "M838.857 217.143q16 16 27.429 43.429t11.429 50.286v658.286q0 22.857-16 38.857t-38.857 16h-768q-22.857 0-38.857-16t-16-38.857v-914.286q0-22.857 16-38.857t38.857-16h512q22.857 0 50.286 11.429t43.429 27.429zM585.143 77.714v214.857h214.857q-5.714-16.571-12.571-23.429l-178.857-178.857q-6.857-6.857-23.429-12.571zM804.571 950.857v-585.143h-237.714q-22.857 0-38.857-16t-16-38.857v-237.714h-438.857v877.714h731.429zM245.143 817.143v60.571h160.571v-60.571h-42.857l58.857-92q2.857-4 5.714-9.429t4.286-7.714 2-2.286h1.143q0.571 2.286 2.857 5.714 1.143 2.286 2.571 4.286t3.429 4.571 3.714 4.857l61.143 92h-43.429v60.571h166.286v-60.571h-38.857l-109.714-156 111.429-161.143h38.286v-61.143h-159.429v61.143h42.286l-58.857 90.857q-2.286 4-5.714 9.429t-5.143 7.714l-1.143 1.714h-1.143q-0.571-2.286-2.857-5.714-3.429-6.286-9.714-13.143l-60.571-90.857h43.429v-61.143h-165.714v61.143h38.857l108 155.429-110.857 161.714h-38.857z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "file-excel-o" + ], + "defaultCode": 61891, + "grid": 14 + }, + "attrs": [], + "properties": { + "name": "file-excel", + "order": 485, + "id": 410, + "prevSize": 32, + "code": 61891 + }, + "setIdx": 7, + "setId": 2, + "iconIdx": 7 + }, + { + "icon": { + "paths": [ + "M838.857 217.143q16 16 27.429 43.429t11.429 50.286v658.286q0 22.857-16 38.857t-38.857 16h-768q-22.857 0-38.857-16t-16-38.857v-914.286q0-22.857 16-38.857t38.857-16h512q22.857 0 50.286 11.429t43.429 27.429zM585.143 77.714v214.857h214.857q-5.714-16.571-12.571-23.429l-178.857-178.857q-6.857-6.857-23.429-12.571zM804.571 950.857v-585.143h-237.714q-22.857 0-38.857-16t-16-38.857v-237.714h-438.857v877.714h731.429zM237.714 817.143v60.571h186.857v-60.571h-53.143v-95.429h78.286q43.429 0 67.429-8.571 38.286-13.143 60.857-49.714t22.571-83.429q0-46.286-21.143-80.571t-57.143-49.714q-27.429-10.857-74.286-10.857h-210.286v61.143h52.571v317.143h-52.571zM439.429 657.143h-68v-153.143h68.571q29.714 0 47.429 10.286 32 18.857 32 65.714 0 50.857-35.429 68.571-17.714 8.571-44.571 8.571z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "file-powerpoint-o" + ], + "defaultCode": 61892, + "grid": 14 + }, + "attrs": [], + "properties": { + "name": "file-powerpoint", + "order": 486, + "id": 411, + "prevSize": 32, + "code": 61892 + }, + "setIdx": 7, + "setId": 2, + "iconIdx": 8 + }, + { + "icon": { + "paths": [ + "M838.857 217.143q16 16 27.429 43.429t11.429 50.286v658.286q0 22.857-16 38.857t-38.857 16h-768q-22.857 0-38.857-16t-16-38.857v-914.286q0-22.857 16-38.857t38.857-16h512q22.857 0 50.286 11.429t43.429 27.429zM585.143 77.714v214.857h214.857q-5.714-16.571-12.571-23.429l-178.857-178.857q-6.857-6.857-23.429-12.571zM804.571 950.857v-585.143h-237.714q-22.857 0-38.857-16t-16-38.857v-237.714h-438.857v877.714h731.429zM731.429 694.857v182.857h-585.143v-109.714l109.714-109.714 73.143 73.143 219.429-219.429zM256 585.143q-45.714 0-77.714-32t-32-77.714 32-77.714 77.714-32 77.714 32 32 77.714-32 77.714-77.714 32z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "file-image-o", + "file-photo-o", + "file-picture-o" + ], + "defaultCode": 61893, + "grid": 14 + }, + "attrs": [], + "properties": { + "name": "file-image", + "order": 487, + "id": 412, + "prevSize": 32, + "code": 61893 + }, + "setIdx": 7, + "setId": 2, + "iconIdx": 9 + }, + { + "icon": { + "paths": [ + "M365.714 219.429v-73.143h-73.143v73.143h73.143zM438.857 292.571v-73.143h-73.143v73.143h73.143zM365.714 365.714v-73.143h-73.143v73.143h73.143zM438.857 438.857v-73.143h-73.143v73.143h73.143zM838.857 217.143q16 16 27.429 43.429t11.429 50.286v658.286q0 22.857-16 38.857t-38.857 16h-768q-22.857 0-38.857-16t-16-38.857v-914.286q0-22.857 16-38.857t38.857-16h512q22.857 0 50.286 11.429t43.429 27.429zM585.143 77.714v214.857h214.857q-5.714-16.571-12.571-23.429l-178.857-178.857q-6.857-6.857-23.429-12.571zM804.571 950.857v-585.143h-237.714q-22.857 0-38.857-16t-16-38.857v-237.714h-73.143v73.143h-73.143v-73.143h-292.571v877.714h731.429zM446.286 538.857l61.143 199.429q4.571 15.429 4.571 29.714 0 47.429-41.429 78.571t-104.857 31.143-104.857-31.143-41.429-78.571q0-14.286 4.571-29.714 12-36 68.571-226.286v-73.143h73.143v73.143h45.143q12.571 0 22.286 7.429t13.143 19.429zM365.714 804.571q30.286 0 51.714-10.857t21.429-25.714-21.429-25.714-51.714-10.857-51.714 10.857-21.429 25.714 21.429 25.714 51.714 10.857z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "file-archive-o", + "file-zip-o" + ], + "defaultCode": 61894, + "grid": 14 + }, + "attrs": [], + "properties": { + "name": "file-archive", + "order": 488, + "id": 413, + "prevSize": 32, + "code": 61894 + }, + "setIdx": 7, + "setId": 2, + "iconIdx": 10 + }, + { + "icon": { + "paths": [ + "M838.857 217.143q16 16 27.429 43.429t11.429 50.286v658.286q0 22.857-16 38.857t-38.857 16h-768q-22.857 0-38.857-16t-16-38.857v-914.286q0-22.857 16-38.857t38.857-16h512q22.857 0 50.286 11.429t43.429 27.429zM585.143 77.714v214.857h214.857q-5.714-16.571-12.571-23.429l-178.857-178.857q-6.857-6.857-23.429-12.571zM804.571 950.857v-585.143h-237.714q-22.857 0-38.857-16t-16-38.857v-237.714h-438.857v877.714h731.429zM354.286 485.714q11.429 4.571 11.429 17.143v310.857q0 12.571-11.429 17.143-4.571 1.143-6.857 1.143-6.857 0-13.143-5.143l-94.857-95.429h-74.857q-8 0-13.143-5.143t-5.143-13.143v-109.714q0-8 5.143-13.143t13.143-5.143h74.857l94.857-95.429q9.143-8.571 20-4zM592.571 879.429q17.714 0 28.571-13.714 73.714-90.857 73.714-207.429t-73.714-207.429q-9.143-12-24.571-13.714t-26.857 8q-12 9.714-13.429 24.857t8.286 27.143q57.143 70.286 57.143 161.143t-57.143 161.143q-9.714 12-8.286 27.143t13.429 24.286q10.286 8.571 22.857 8.571zM472 794.857q15.429 0 26.857-11.429 49.714-53.143 49.714-125.143t-49.714-125.143q-10.286-10.857-25.714-11.429t-26.286 9.714-11.429 25.429 10.286 26.571q29.714 32.571 29.714 74.857t-29.714 74.857q-10.857 11.429-10.286 26.571t11.429 25.429q11.429 9.714 25.143 9.714z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "file-audio-o", + "file-sound-o" + ], + "defaultCode": 61895, + "grid": 14 + }, + "attrs": [], + "properties": { + "name": "file-audio", + "order": 489, + "id": 414, + "prevSize": 32, + "code": 61895 + }, + "setIdx": 7, + "setId": 2, + "iconIdx": 11 + }, + { + "icon": { + "paths": [ + "M838.857 217.143q16 16 27.429 43.429t11.429 50.286v658.286q0 22.857-16 38.857t-38.857 16h-768q-22.857 0-38.857-16t-16-38.857v-914.286q0-22.857 16-38.857t38.857-16h512q22.857 0 50.286 11.429t43.429 27.429zM585.143 77.714v214.857h214.857q-5.714-16.571-12.571-23.429l-178.857-178.857q-6.857-6.857-23.429-12.571zM804.571 950.857v-585.143h-237.714q-22.857 0-38.857-16t-16-38.857v-237.714h-438.857v877.714h731.429zM438.857 438.857q29.714 0 51.429 21.714t21.714 51.429v219.429q0 29.714-21.714 51.429t-51.429 21.714h-219.429q-29.714 0-51.429-21.714t-21.714-51.429v-219.429q0-29.714 21.714-51.429t51.429-21.714h219.429zM720 440q11.429 4.571 11.429 17.143v329.143q0 12.571-11.429 17.143-4.571 1.143-6.857 1.143-8 0-13.143-5.143l-151.429-152v-51.429l151.429-152q5.143-5.143 13.143-5.143 2.286 0 6.857 1.143z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "file-movie-o", + "file-video-o" + ], + "defaultCode": 61896, + "grid": 14 + }, + "attrs": [], + "properties": { + "name": "file-movie", + "order": 490, + "id": 415, + "prevSize": 32, + "code": 61896 + }, + "setIdx": 7, + "setId": 2, + "iconIdx": 12 + }, + { + "icon": { + "paths": [ + "M838.857 217.143q16 16 27.429 43.429t11.429 50.286v658.286q0 22.857-16 38.857t-38.857 16h-768q-22.857 0-38.857-16t-16-38.857v-914.286q0-22.857 16-38.857t38.857-16h512q22.857 0 50.286 11.429t43.429 27.429zM585.143 77.714v214.857h214.857q-5.714-16.571-12.571-23.429l-178.857-178.857q-6.857-6.857-23.429-12.571zM804.571 950.857v-585.143h-237.714q-22.857 0-38.857-16t-16-38.857v-237.714h-438.857v877.714h731.429zM274.286 438.857q4.571-6.286 12-7.143t13.714 3.714l29.143 21.714q6.286 4.571 7.143 12t-3.714 13.714l-104 138.857 104 138.857q4.571 6.286 3.714 13.714t-7.143 12l-29.143 21.714q-6.286 4.571-13.714 3.714t-12-7.143l-129.143-172q-8-10.857 0-21.714zM732.571 610.857q8 10.857 0 21.714l-129.143 172q-4.571 6.286-12 7.143t-13.714-3.714l-29.143-21.714q-6.286-4.571-7.143-12t3.714-13.714l104-138.857-104-138.857q-4.571-6.286-3.714-13.714t7.143-12l29.143-21.714q6.286-4.571 13.714-3.714t12 7.143zM378.286 874.286q-7.429-1.143-11.714-7.429t-3.143-13.714l78.857-474.857q1.143-7.429 7.429-11.714t13.714-3.143l36 5.714q7.429 1.143 11.714 7.429t3.143 13.714l-78.857 474.857q-1.143 7.429-7.429 11.714t-13.714 3.143z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "file-code-o" + ], + "defaultCode": 61897, + "grid": 14 + }, + "attrs": [], + "properties": { + "name": "file-code", + "order": 491, + "id": 416, + "prevSize": 32, + "code": 61897 + }, + "setIdx": 7, + "setId": 2, + "iconIdx": 13 + }, + { + "icon": { + "paths": [ + "M1128.571 565.714h-78.857q8-21.143 37.714-102.286l1.714-5.143q2.286-5.714 5.714-14.857t5.143-14.857l6.857 31.429zM303.429 528.571l-33.143-168.571q-6.286-30.857-42.857-30.857h-153.143l-1.143 7.429q177.714 45.143 230.286 192zM405.714 329.143l-92.571 250.286-9.714-50.857q-14.857-40-48.571-74t-74.857-50.571l77.143 291.429h100l149.143-366.286h-100.571zM485.143 696h94.857l59.429-366.857h-94.857zM924 338.286q-39.429-15.429-85.143-15.429-70.286 0-114.857 33.714t-45.143 87.429q-0.571 58.286 82.857 99.429 27.429 13.143 38.286 23.429t10.857 22.286q0 17.143-17.143 26.286t-39.429 9.143q-49.143 0-89.143-18.857l-12.571-6.286-13.143 82.286q42.286 19.429 105.714 19.429 74.286 0.571 119.143-33.714t46-91.429q0-60.571-80-99.429-28-14.286-40.571-24t-12.571-21.714q0-12.571 14-22t40.286-9.429q40-0.571 70.857 13.714l8.571 4.571zM1166.857 329.143h-73.143q-37.143 0-49.714 30.857l-140.571 336h99.429l20-54.857h121.143q2.857 12.571 11.429 54.857h88zM1316.571 146.286v731.429q0 29.714-21.714 51.429t-51.429 21.714h-1170.286q-29.714 0-51.429-21.714t-21.714-51.429v-731.429q0-29.714 21.714-51.429t51.429-21.714h1170.286q29.714 0 51.429 21.714t21.714 51.429z" + ], + "width": 1317, + "attrs": [], + "isMulticolor": false, + "tags": [ + "cc-visa" + ], + "defaultCode": 61936, + "grid": 14 + }, + "attrs": [], + "properties": { + "name": "visa", + "order": 492, + "id": 452, + "prevSize": 32, + "code": 61936 + }, + "setIdx": 7, + "setId": 2, + "iconIdx": 14 + }, + { + "icon": { + "paths": [ + "M383.429 533.143h-7.429q-26.857 0-26.857 18.286 0 12.571 11.429 12.571 9.714 0 16-8.571t6.857-22.286zM609.143 512.571h35.429v-1.714q0.571-2.286 0.286-3.714t-0.571-4-1.143-4.571-2.571-3.714-4.286-2.857-6.571-1.143q-16 0-20.571 21.714zM917.714 533.143h-6.857q-27.429 0-27.429 18.286 0 12.571 11.429 12.571 9.714 0 16-8.571t6.857-22.286zM1100 518.286q0-23.429-17.143-23.429-10.857 0-17.714 11.429t-6.857 29.143q0 24 16 24 11.429 0 18.571-11.429t7.143-29.714zM274.286 437.714h49.714l-25.143 149.714h-32l18.286-114.857-40.571 114.857h-22.286l-2.286-114.286-19.429 114.286h-30.286l25.143-149.714h46.286l1.143 93.143zM418.857 498.857q0 3.429-2.286 24-9.143 57.714-9.714 64.571h-26.857l0.571-12.571q-11.429 14.857-33.143 14.857-13.143 0-21.429-9.143t-8.286-24q0-22.286 14.857-34.571t41.714-12.286q8 0 13.143 0.571 0-1.714 0.286-3.143t0.571-2.571 0.286-1.714q0-11.429-20.571-11.429-16.571 0-33.714 5.714 0-2.286 4-27.429 21.714-6.286 38.286-6.286 42.286 0 42.286 35.429zM508 465.714l-4.571 28q-12.571-1.714-23.429-1.714-15.429 0-15.429 9.714 0 4.571 2.571 6.857t12.286 6.286q22.857 10.857 22.857 34.286 0 41.143-49.714 40.571-19.429 0-33.143-3.429 0-1.143 4-28 16.571 4.571 29.143 4.571 18.286 0 18.286-10.857 0-4-2.571-6.571t-12.286-7.143q-24.571-11.429-24.571-33.714 0-41.143 48-41.143 17.143 0 28.571 2.286zM558.286 465.714h16l-4 29.714h-16.571q-1.143 9.714-3.714 23.143t-4 22-1.429 10.286q0 9.143 10.857 9.143 4.571 0 9.143-1.143l-4.571 26.857q-12 4-22.857 4-24.571 0-25.714-26.857 0-6.857 4.571-32 1.714-11.429 14.286-83.429h31.429zM674.286 507.429q0 13.143-4 29.714h-63.429q-1.714 12.571 5.714 18.857t21.714 6.286q17.143 0 33.143-8l-5.143 30.857q-17.143 4.571-32.571 4.571-54.286 0-54.286-54.286 0-31.429 15.714-51.714t39.714-20.286q20 0 31.714 12t11.714 32zM753.714 465.143q-7.429 13.143-12.571 35.429-12.571-1.143-17.714 13.714t-14.286 73.143h-32l1.714-8q12.571-74.286 16.571-113.714h29.143l-1.714 18.857q8-12 14.571-16.857t16.286-2.571zM860.571 441.714l-5.143 32.571q-16-8-28.571-8-17.714 0-29.143 15.714t-11.429 40.286q0 17.143 7.714 26.857t22 9.714q12 0 27.429-7.429l-5.714 33.714q-16 4.571-28.571 4.571-25.714 0-40.857-17.429t-15.143-47.143q0-40 20.286-65.429t52.286-25.429q14.857 0 34.857 7.429zM953.143 498.857q0 10.286-2.286 24-7.429 45.143-9.714 64.571h-26.286l0.571-12.571q-11.429 14.857-33.714 14.857-13.143 0-21.143-9.143t-8-24q0-22.286 14.571-34.571t41.429-12.286q8.571 0 13.143 0.571 1.143-4 1.143-7.429 0-11.429-20.571-11.429-16.571 0-33.714 5.714 0-2.286 4.571-27.429 21.714-6.286 38.286-6.286 41.714 0 41.714 35.429zM1033.714 465.143q-8 13.714-12 35.429-13.143-1.143-18 13.143t-14.571 73.714h-32l1.714-8q10.857-59.429 16.571-113.714h29.714q0 6.286-2.286 18.857 8.571-12 15.143-16.857t15.714-2.571zM1114.286 437.714h32l-24.571 149.714h-30.286l1.714-10.857q-13.143 13.143-29.714 13.143-17.714 0-28.286-13.714t-10.571-36.571q0-30.286 15.714-52.571t36.857-22.286q17.714 0 30.286 16.571zM1177.714 512q0-84.571-41.429-156t-113.143-113.143-156.286-41.714q-103.429 0-187.429 62.857 72.571 66.286 97.714 162.286h-28.571q-25.143-85.714-90.286-144.571-65.143 58.857-90.286 144.571h-28.571q25.143-96 97.714-162.286-84-62.857-187.429-62.857-84.571 0-156.286 41.714t-113.143 113.143-41.429 156 41.429 156 113.143 113.143 156.286 41.714q103.429 0 187.429-62.857-68.571-63.429-94.286-150.857h28.571q26.286 78.857 86.857 133.143 60.571-54.286 86.857-133.143h28.571q-25.714 87.429-94.286 150.857 84 62.857 187.429 62.857 84.571 0 156.286-41.714t113.143-113.143 41.429-156zM1316.571 146.286v731.429q0 29.714-21.714 51.429t-51.429 21.714h-1170.286q-29.714 0-51.429-21.714t-21.714-51.429v-731.429q0-29.714 21.714-51.429t51.429-21.714h1170.286q29.714 0 51.429 21.714t21.714 51.429z" + ], + "width": 1317, + "attrs": [], + "isMulticolor": false, + "tags": [ + "cc-mastercard" + ], + "defaultCode": 61937, + "grid": 14 + }, + "attrs": [], + "properties": { + "name": "mastercard", + "order": 493, + "id": 453, + "prevSize": 32, + "code": 61937 + }, + "setIdx": 7, + "setId": 2, + "iconIdx": 15 + }, + { + "icon": { + "paths": [ + "M178.857 444q0 29.143-20.571 48-16.571 14.857-50.857 14.857h-9.714v-125.714h9.714q34.857 0 50.857 15.429 20.571 17.714 20.571 47.429zM1193.714 406.857q0 29.714-36.571 29.714h-10.857v-57.714h11.429q36 0 36 28zM217.143 444q0-42.286-28.571-68.857t-73.714-26.571h-54.286v190.286h54.286q42.286 0 68-21.714 34.286-29.143 34.286-73.143zM234.286 538.857h37.143v-190.286h-37.143v190.286zM417.143 481.143q0-22.857-11.714-35.429t-43.143-24q-16.571-5.714-22.571-10.857t-6-13.143q0-9.143 7.714-15.143t19.714-6q16.571 0 30.286 15.429l19.429-25.143q-23.429-21.143-56-21.143-25.143 0-42.286 15.714t-17.143 38.571q0 20 10.286 31.714t36.571 20.857q21.143 7.429 25.714 10.857 10.857 6.857 10.857 19.429 0 11.429-8 19.143t-20.571 7.714q-27.429 0-40.571-25.143l-24 22.857q25.143 36.571 65.714 36.571 29.143 0 47.429-17.429t18.286-45.429zM576 532.571v-44q-21.143 21.143-44.571 21.143-28 0-46-18.571t-18-47.143q0-27.429 18-46.571t44.286-19.143q24.571 0 46.286 21.714v-44q-22.857-11.429-45.714-11.429-42.286 0-71.714 28.857t-29.429 70.571 29.143 70.571 71.429 28.857q24 0 46.286-10.857zM1280 877.714v-301.143q-37.143 22.857-82.571 48t-135.714 66.857-188.286 78.571-238.571 76.857-288 67.429h896.571q14.857 0 25.714-10.857t10.857-25.714zM793.714 445.143q0-42.857-30.286-73.143t-73.143-30.286-73.143 30.286-30.286 73.143 30.286 73.143 73.143 30.286 73.143-30.286 30.286-73.143zM880.571 544l82.286-195.429h-40.571l-51.429 128-50.857-128h-40.571l81.143 195.429h20zM979.429 538.857h105.143v-32h-68v-51.429h65.714v-32h-65.714v-42.286h68v-32.571h-105.143v190.286zM1202.857 538.857h45.714l-60-80q43.429-9.143 43.429-53.714 0-26.857-17.714-41.714t-49.714-14.857h-55.429v190.286h37.143v-76h5.143zM1316.571 149.714v724.571q0 32-22 54.286t-53.429 22.286h-1165.714q-31.429 0-53.429-22.286t-22-54.286v-724.571q0-32 22-54.286t53.429-22.286h1165.714q31.429 0 53.429 22.286t22 54.286z" + ], + "width": 1317, + "attrs": [], + "isMulticolor": false, + "tags": [ + "cc-discover" + ], + "defaultCode": 61938, + "grid": 14 + }, + "attrs": [], + "properties": { + "name": "discover", + "order": 494, + "id": 454, + "prevSize": 32, + "code": 61938 + }, + "setIdx": 7, + "setId": 2, + "iconIdx": 16 + }, + { + "icon": { + "paths": [ + "M68 389.714h50.857l-25.714-61.714zM422.857 690.286l42.286-45.143-40-45.143h-93.143v28h81.143v31.429h-81.143v30.857h90.857zM513.143 645.714l56.571 62.857v-124zM677.714 618.857q0-18.857-22.857-18.857h-48v39.429h47.429q23.429 0 23.429-20.571zM842.857 616.571q0-16.571-24-16.571h-46.857v34.857h46.286q24.571 0 24.571-18.286zM684 350.286q0-16.571-24-16.571h-46.857v34.286h46.286q24.571 0 24.571-17.714zM946.286 389.714h50.857l-25.143-61.714zM399.429 301.143v154.857h-37.714v-121.143l-53.714 121.143h-32.571l-53.714-121.143v121.143h-75.429l-14.286-34.286h-77.143l-14.286 34.286h-40l66.286-154.857h54.857l62.857 146.857v-146.857h60.571l48.571 105.143 44-105.143h61.714zM717.143 618.857q0 11.429-3.143 20t-8 14.286-12.857 9.429-14.857 5.714-18 2.571-18 0.571-18.571-0.286-16.857-0.286v52h-72l-45.714-51.429-47.429 51.429h-146.286v-154.857h148.571l45.714 50.857 46.857-50.857h118.286q62.286 0 62.286 50.857zM550.857 424v32h-124v-154.857h124v32.571h-86.857v28h84.571v31.429h-84.571v30.857h86.857zM1316.571 743.429v130.857q0 31.429-22 54t-53.429 22.571h-1165.714q-31.429 0-53.429-22.571t-22-54v-387.429h63.429l14.286-34.857h31.429l14.286 34.857h124.571v-26.286l10.857 26.286h64.571l11.429-26.857v26.857h309.143v-56.571l5.714-0.571q5.714 0 5.714 8v49.143h159.429v-13.143q13.143 6.857 31.429 10.286t30 3.714 36-0.286 29.429-0.571l14.286-34.857h32l14.286 34.857h129.714v-33.143l19.429 33.143h104v-216h-102.857v25.143l-14.286-25.143h-105.714v25.143l-13.143-25.143h-142.286q-39.429 0-62.286 12.571v-12.571h-98.286v12.571q-13.714-12.571-41.714-12.571h-358.857l-24.571 55.429-24.571-55.429h-113.143v25.143l-12.571-25.143h-96.571l-44.571 102.286v-223.429q0-31.429 22-54t53.429-22.571h1165.714q31.429 0 53.429 22.571t22 54v387.429h-68.571q-29.143 0-46.286 12.571v-12.571h-101.143q-31.429 0-44.571 12.571v-12.571h-180.571v12.571q-17.714-12.571-49.714-12.571h-119.429v12.571q-13.143-12.571-52-12.571h-133.714l-30.857 33.143-28.571-33.143h-199.429v216h196l31.429-33.714 29.714 33.714h120.571v-50.857h12q33.714 0 51.429-7.429v58.286h99.429v-56.571h4.571q4.571 0 5.714 1.143t1.143 5.714v49.714h302.286q32.571 0 50.286-13.714v13.714h96q34.286 0 54.286-9.714zM883.429 609.714q0 13.143-6.857 24.571t-19.429 16.571q14.286 5.143 19.429 14.857t5.143 26.286v30.857h-37.143v-25.714q0-18.857-6.857-24.857t-26.286-6h-39.429v56.571h-37.143v-154.857h88q27.429 0 44 8.571t16.571 33.143zM725.143 342.857q0 13.714-7.143 25.143t-19.143 16.571q14.857 5.143 19.714 14.571t4.857 26.571v30.286h-37.143q0-5.143 0.286-15.143t0-14.286-1.714-10.571-4.857-9.143-10-4.857-16.857-2h-40v56h-36.571v-154.857l87.429 0.571q28 0 44.571 8.286t16.571 32.857zM1027.429 690.857v32h-123.429v-154.857h123.429v32h-86.286v28h84.571v31.429h-84.571v30.857zM784 301.143v154.857h-37.714v-154.857h37.714zM1180 673.714q0 49.143-58.286 49.143h-72v-33.143h72q19.429 0 19.429-14.286 0-9.143-9.714-12t-23.714-2.857-28.286-2-24-12.857-9.714-31.429q0-22.286 14.857-34.286t37.714-12h74.286v32.571h-68q-20.571 0-20.571 14.286 0 9.143 10 11.714t24 2.286 28 1.429 24 12.286 10 31.143zM1316.571 645.143v57.714q-13.714 20-50.286 20h-71.429v-33.143h71.429q18.857 0 18.857-14.286 0-7.429-7.143-10.857t-17.714-3.143-22.857-1.143-22.857-4.571-17.714-13.714-7.143-27.714q0-22.286 15.143-34.286t38-12h73.714v32.571h-67.429q-20.571 0-20.571 14.286 0 11.429 16.571 12.571t39.143 2.857 32.286 14.857zM1222.286 301.714v154.286h-52.571l-69.714-116v116h-75.429l-14.857-34.286h-76.571l-14.286 34.286h-42.857q-73.714 0-73.714-76 0-78.857 76-78.857h36v33.714q-4 0-16-0.571t-16.286-0.286-13.143 1.143-12.286 3.714-8.286 7.714-6.571 13.143-1.714 19.143q0 21.714 7.714 33.143t28.286 11.429h16.571l52.571-121.714h55.429l62.286 146.286v-146.286h56.571l65.143 107.429v-107.429h37.714z" + ], + "width": 1317, + "attrs": [], + "isMulticolor": false, + "tags": [ + "cc-amex" + ], + "defaultCode": 61939, + "grid": 14 + }, + "attrs": [], + "properties": { + "name": "amex", + "order": 495, + "id": 455, + "prevSize": 32, + "code": 61939 + }, + "setIdx": 7, + "setId": 2, + "iconIdx": 17 + }, + { + "icon": { + "paths": [ + "M184 484h-8.571q-10.857 0-10.857-10.286 0-16 10.857-48.571 2.857-8.571 8.571-11.143t16-2.571q44 0 44 28 0 23.429-17.429 34t-42.571 10.571zM379.429 576q-26.857 0-26.857-16.571 0-35.429 70.286-35.429l1.714 1.714q-2.857 50.286-45.143 50.286zM821.714 485.143h-8.571q-10.857 0-10.857-10.857 0-16 10.857-48.571 2.857-8.571 8.286-10.857t16.286-2.286q44 0 44 28 0 23.429-17.429 34t-42.571 10.571zM1017.143 576.571q-26.857 0-26.857-17.143 0-35.429 70.286-35.429l1.714 1.714q-2.857 50.857-45.143 50.857zM213.143 366.857h-73.143q-4.571 0-8.286 2.286t-4.857 4.286-4 7.143q-1.714 4-25.714 108.571t-24 109.714q0 4 3.143 7.143t7.714 3.143h35.429q14.286 0 18.571-19.714l8.571-39.429t18.571-19.714q26.857 0 50-4.286t46-14 36.286-30 13.429-48.286q0-20.571-8.286-34.857t-23.429-20.857-30.571-8.857-35.429-2.286zM410.857 421.714q-21.714 0-42.286 3.429-1.143 0-4.857 0.571t-5.143 0.857l-4.286 0.857t-4.286 1.143-3.714 1.714-3.714 2.286-2.857 2.857-2.571 4-2.286 5.143q-5.143 16.571-5.143 22.286t5.143 5.714q2.857 0 12.286-2.857t11.143-3.429q17.143-4.571 33.143-4.571 42.286 0 42.286 20.571 0 6.286-5.714 8-4.571 1.143-10.286 1.714t-12.286 0.857-10 0.857q-21.714 2.286-36.857 5.714t-32.286 11.143-26 22.286-8.857 35.714q0 21.714 14.857 34t36.571 12.286q13.714 0 26-3.714t18.857-7.429 22-13.429q-1.714 4-1.714 8.571t3.143 7.714 7.143 3.143h32q0.571-0.571 4-2t4.286-2 2.857-2 2.857-3.143 1.429-4.571l25.714-110.857q2.286-7.429 2.286-17.143 0-46.286-82.857-46.286zM712.571 424.571h-42.286q-12.571 0-22.286 13.143-2.857 4-16.857 29.143t-26.571 46.571-14.857 22l-2.857-2.286q0-44-15.429-94.857-0.571-2.857-2-4.857t-3.429-3.714-3.714-2.857-4.857-1.714-4.857-0.857-5.429-0.571-5.143-0.286h-10.571q-21.714 0-21.714 12l0.571 2.857q2.857 30.286 14.286 86.286t14.286 81.714q1.143 9.143 1.143 13.714 0 10.857-17.429 35.143t-17.429 33.429q0 7.429 22.857 7.429 34.857 0 43.429-14.286l140-237.143q5.714-11.429 5.714-14.857 0-5.143-4.571-5.143zM850.857 368h-73.714q-10.286 0-16.571 13.143-3.429 7.429-26.571 109.429t-23.143 108.857q0 11.429 24.571 11.429h14.571t5.429-0.571 4.857-1.143 4.857-1.714 3.714-2.571 3.143-3.429 1.714-4.857l12-52q1.143-5.714 6-9.714t11.143-4q26.857 0 50-4t46-14 36.286-30 13.429-48q0-20.571-8.286-34.857t-23.429-20.857-30.571-8.857-35.429-2.286zM1048.571 421.714q-14.857 0-42.286 3.429-21.714 3.429-27.429 9.143-4 4.571-6.286 10.857-4.571 13.714-4.571 22.286 0 5.714 4.571 5.714 0.571 0 23.429-6.857 17.143-4.571 33.143-4.571 42.286 0 42.286 20.571 0 6.857-5.714 8-2.286 0.571-32.571 4-21.714 2.286-36.857 5.714t-32.286 11.143-26 22.286-8.857 35.714 14.857 33.429 36.571 12.286q13.714 0 25.714-3.429t19.429-7.429 21.714-13.714q-1.714 8.571-1.714 9.143 0 2.857 1.143 4.857t3.714 3.143 4.571 2 6 1.143 5.429 0.286h10q24 0 27.429-14.286l25.714-110.857q1.714-8.571 1.714-17.714 0-46.286-82.857-46.286zM1232.571 369.714h-31.429q-14.286 0-18.857 22.857-5.714 25.143-20.857 95.429t-24.286 108.571v2.857q0 9.143 9.143 10.286h33.143q5.714 0 10.571-3.714t6-9.429l47.429-213.714h-0.571l0.571-2.857q0-4-3.143-7.143t-7.714-3.143zM1316.571 146.286v731.429q0 29.714-21.714 51.429t-51.429 21.714h-1170.286q-29.714 0-51.429-21.714t-21.714-51.429v-731.429q0-29.714 21.714-51.429t51.429-21.714h1170.286q29.714 0 51.429 21.714t21.714 51.429z" + ], + "width": 1317, + "attrs": [], + "isMulticolor": false, + "tags": [ + "cc-paypal" + ], + "defaultCode": 61940, + "grid": 14 + }, + "attrs": [], + "properties": { + "name": "cc-paypal", + "order": 496, + "id": 456, + "prevSize": 32, + "code": 61940 + }, + "setIdx": 7, + "setId": 2, + "iconIdx": 18 + }, + { + "icon": { + "paths": [ + "M731.429 585.143h174.286q-2.857 3.429-5.714 6t-5.143 4.286l-1.714 2.286-356 342.857q-10.286 10.286-25.143 10.286t-25.143-10.286l-356.571-344q-2.857-1.143-12-11.429h210.857q12.571 0 22.571-7.714t12.857-19.714l40-160.571 108.571 381.143q3.429 11.429 13.143 18.857t22.286 7.429q12 0 21.714-7.429t13.143-18.857l83.429-277.143 32 64q10.286 20 32.571 20zM1024 340.571q0 82.857-58.857 171.429h-210.857l-63.429-126.286q-4.571-9.714-14.571-15.429t-20.857-4.571q-25.714 2.857-32 26.286l-73.714 245.714-112-392q-3.429-11.429-13.429-18.857t-22.571-7.429-22.286 7.714-12.571 19.714l-66.286 265.143h-241.714q-58.857-88.571-58.857-171.429 0-125.714 72.571-196.571t200.571-70.857q35.429 0 72.286 12.286t68.571 33.143 54.571 39.143 43.429 38.857q20.571-20.571 43.429-38.857t54.571-39.143 68.571-33.143 72.286-12.286q128 0 200.571 70.857t72.571 196.571z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "heartbeat" + ], + "defaultCode": 61982, + "grid": 14 + }, + "attrs": [], + "properties": { + "name": "heartbeat", + "order": 500, + "id": 496, + "prevSize": 32, + "code": 61982 + }, + "setIdx": 7, + "setId": 2, + "iconIdx": 19 + }, + { + "icon": { + "paths": [ + "M658.286 329.143q0 126.286-84.286 219.714t-208.286 107.143v148.571h128q8 0 13.143 5.143t5.143 13.143v36.571q0 8-5.143 13.143t-13.143 5.143h-128v128q0 8-5.143 13.143t-13.143 5.143h-36.571q-8 0-13.143-5.143t-5.143-13.143v-128h-128q-8 0-13.143-5.143t-5.143-13.143v-36.571q0-8 5.143-13.143t13.143-5.143h128v-148.571q-85.714-9.143-155.143-58.857t-106.286-128-30-166.857q6.286-76.571 46-142.286t104-107.429 140.286-50.286q97.143-10.857 182.286 30.857t134.857 121.143 49.714 174.857zM73.143 329.143q0 105.714 75.143 180.857t180.857 75.143 180.857-75.143 75.143-180.857-75.143-180.857-180.857-75.143-180.857 75.143-75.143 180.857z" + ], + "width": 731, + "attrs": [], + "isMulticolor": false, + "tags": [ + "venus" + ], + "defaultCode": 61985, + "grid": 14 + }, + "attrs": [], + "properties": { + "name": "venus", + "order": 498, + "id": 497, + "prevSize": 32, + "code": 61985 + }, + "setIdx": 7, + "setId": 2, + "iconIdx": 20 + }, + { + "icon": { + "paths": [ + "M731.429 18.286q0-8 5.143-13.143t13.143-5.143h237.714q14.857 0 25.714 10.857t10.857 25.714v237.714q0 8-5.143 13.143t-13.143 5.143h-36.571q-8 0-13.143-5.143t-5.143-13.143v-149.714l-239.429 240q49.714 59.429 74 135.143t17.429 158q-12.571 142.857-114.571 246.286t-244.857 117.714q-93.143 9.714-179.429-22.571t-146.571-92.571-92.571-146.571-22.571-179.429q14.286-142.857 117.714-244.857t246.286-114.571q82.286-6.857 158 17.429t135.143 74l239.429-239.429h-149.143q-8 0-13.143-5.143t-5.143-13.143v-36.571zM402.286 950.857q66.857 0 127.714-26t105.143-70.286 70.286-105.143 26-127.714-26-127.714-70.286-105.143-105.143-70.286-127.714-26-127.714 26-105.143 70.286-70.286 105.143-26 127.714 26 127.714 70.286 105.143 105.143 70.286 127.714 26z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "mars" + ], + "defaultCode": 61986, + "grid": 14 + }, + "attrs": [], + "properties": { + "name": "mars", + "order": 499, + "id": 498, + "prevSize": 32, + "code": 61986 + }, + "setIdx": 7, + "setId": 2, + "iconIdx": 21 + }, + { + "icon": { + "paths": [ + "M1024 761.143v119.429h-366.857v-119.429h76.571v-529.143h-3.429l-179.429 648.571h-138.857l-177.143-648.571h-4.571v529.143h77.143v119.429h-307.429v-119.429h39.429q12 0 24.571-11.143t12.571-21.429v-503.429q0-10.286-12.571-22.857t-24.571-12.571h-39.429v-119.429h384l126.286 469.143h3.429l127.429-469.143h382.857v119.429h-40.571q-10.857 0-23.429 12.571t-12.571 22.857v503.429q0 10.286 12.286 21.429t23.714 11.143h40.571z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "medium" + ], + "defaultCode": 62010, + "grid": 14 + }, + "attrs": [], + "properties": { + "name": "medium", + "order": 497, + "id": 519, + "prevSize": 32, + "code": 62010 + }, + "setIdx": 7, + "setId": 2, + "iconIdx": 22 + }, + { + "icon": { + "paths": [ + "M512 1024c-282.752 0-512-229.248-512-512s229.248-512 512-512c282.752 0 512 229.248 512 512 0 282.752-229.248 512-512 512zM926.976 469.088c0.832-0.416 1.28-1.12 1.6-2.24 0.672 3.552 2.304 6.688 4.928 8.992 0.064 0.32-0.096 0.256 0.064 0.704 0.256 0 0.448-0.192 0.672-0.192 2.688 2.176 6.016 3.648 9.76 3.648 5.76 0 10.56-3.2 13.376-7.712 0.192 0.224 0.512 0.512 0.672 0.768-0.032-0.512-0.096-1.024-0.16-1.536 1.248-2.272 2.112-4.768 2.112-7.52 0-8.832-7.2-16-16-16-5.632 0-10.304 3.072-13.184 7.424-0.128-0.096 0-0.48-0.352-0.352 0.416-1.216-0.704-4.32-2.464-7.648v16.576c0 1.824-0.512 3.456-1.024 5.088zM191.744 464.288c0-4.832-11.008-13.056-13.856-13.056 0-0.864-4.48-10.72-6.176-10.72 0-3.328-11.68-18.272-13.536-11.744-1.216 4.224 8.928 9.92 8.928 14.816 1.888 0 9.824 15.040 11.392 17.664 17.344 29.312-12.96 9.28-12.96-3.136-3.872-1.92-9.984-16.672-9.984-20.704-2.272-1.824-8.992-16.064-8.448-16.064 0-9.344-5.152-13.824-15.392-13.824-0.48-0.928-9.088-13.024-9.248-13.024 0-3.84-6.912-15.744-10.752-17.632 0-7.968-4.096-17.792-2.272-26.048 0-8.672-0.448-18.496-3.392-27.392-26.72 57.376-42.048 121.12-42.048 188.576 0 193.312 122.688 357.568 294.272 420.384 0.192-15.872 1.376-34.88 4.992-34.88 0-2.368 2.016-12.288 3.84-12.288 0-6.080 0.736-13.408 0-20.704-2.272-4.576 3.008-10.432 4.608-17.632 8.864-4.448 2.592-49.056 9.28-49.056 0-22.304 4.992-35.296 1.504-55.968 1.696 0-10.080-12.512-9.984-12.288-11.296 0-19.2-18.112-19.2-26.048-1.088-3.488-3.872-8.704-3.872-13.024 2.592 0-16.16-27.392-16.16-26.848-9.92-5.504 0.544-13.184 1.536-22.208-8.608-2.848 0.096-26.080 3.84-26.080 0.384-2.944 1.92-4.96 4.64-6.112 1.92 7.648 10.848-3.808 3.84-3.808 0-5.056-0.576-15.872 0-18.4 0-7.808-6.912-23.104-12.288-6.912-5.76-2.848-20.288-2.336-21.536-11.488 0.896-4.512-8.288-13.728-11.52-15.328 3.008-7.872-15.584-18.4-22.304-18.4 0-1.696-3.552-0.928-4.608-3.072-6.848 0-8.416-9.216-16.16-9.216-8.928 0-17.92-6.112-26.144-6.112-2.752-5.472-15.52-3.328-18.464-9.216-6.688 0-9.312-12.672-9.504-17.344-0.288-5.76-4.864-25.664-12.864-25.664zM839.936 207.488c-0.064 0.192 0.064 0.064-0.256 0.704 0.48 0 1.056 0.544 1.6 0.768-0.48-0.48-0.896-0.96-1.344-1.472zM849.568 218.080c1.12 2.176 1.952 4.192 1.696 5.44 1.12 0.032 1.664-0.576 2.56-0.8-1.376-1.568-2.88-3.040-4.256-4.64zM877.376 363.872c0.512-13.824-11.52-11.52-15.328-19.2-3.968 0-5.408-3.072-10.784-3.072-3.488-1.184-6.24-0.352-8.256 2.496-8.224 3.136-3.264-4-9.44-4 0.288-7.904-2.848-10.080-11.552-9.216-4.992 11.264-12.672 18.016-11.52 30.688 3.68 0.832 3.040 1.664 2.304 5.344 4.896 0.256 34.592-1.536 34.592-4.608 1.024 0 6.176 10.592 6.176 1.536 4.128 0 6.304 9.696 16.16 6.88 0 1.984 16.448-6.848 7.648-6.848zM878.944 527.168c0.576-2.816-1.408-4.064-3.072-6.912 4.384 0-13.856-33.824-13.856-39.104-2.784-1.376-6.336-11.040-6.976-14.56-3.744-2.496-7.616-10.688-9.216-15.328-3.808-2.528-13.088-13.856-14.592-19.168 5.504 0.608 13.824 1.728 13.824-5.376-3.712 0-4.256-4.576-0.736-4.576-1.152-4.704 2.496-8.096 3.296-11.776 0.96-4.448 2.848-11.296 2.848-16.608-5.28 0-6.56 0.896-10.752 2.304 0 3.104-9.376-0.768-10.752-0.768-2.016-4.032-16.64 5.248-20.736-3.072-6.624-5.984-4.832-10.592-6.976-19.040-1.088-4.288-6.944-4.544-10.496-5.248-10.016-1.952-2.784 11.936-3.328 15.104 6.144 0-3.872 7.616-3.872 11.488-10.368-2.24-6.912-13.792-13.024-16.864-1.824-3.072-0.384-5.376-4.64-5.376 0-4.096 2.176-11.52-2.304-13.024 0-1.984-8.704-2.784-9.984-5.376-5.504 0-18.304-20.8-22.24-13.792-2.464 4.48 2.080 5.568 3.008 9.216 7.968-1.568 7.2 13.12 16.928 11.488 0 2.048 0.256 4.128 0.736 6.144 7.2-1.696 6.368 5.344 9.984 5.344-2.624 3.488-10.944-5.568-8.672 2.048 1.312 4.416 0.576 8.192-5.152 12.512 0-4.768-0.384-17.632-5.376-17.632-3.392-6.784-13.472-5.152-17.728-11.488-3.456 0-4.8-10.752-10.752-11.488-1.12 1.568-5.312 3.072-6.944 3.072-3.232 6.496-21.504 0.672-21.504 1.536-0.288 0.064-10.24 24.384-10.816 27.584-1.12 6.88-6.656 7.008-8.32 13.536-0.832 3.264-20.896 1.728-20.896 4.128-8.672-2.88-16.16-8.96-16.16-18.4-0.704 0 1.632-24.096 3.104-27.616 1.76 0.48 2.112 1.088 3.104 3.072 5.312-1.984 17.696 1.312 17.696-4.608 5.152 0.128 6.688 2.176 4.608 6.144 4.8 0.896 13.088 2.112 13.088-4.608-2.816 0-3.104-0.256-3.104-3.072 9.216-9.568-6.912-18.208-6.912-22.976-3.264-1.088-9.92-8.16-5.184-5.504 4 2.208 18.624 6.784 12.864-2.944 0.384-0.128 0.64-0.384 0.736-0.736 1.632 1.152 8.512 8.224 8.512 1.536 1.888 0 9.184-4.608 3.072-4.608 0.576-3.456 0.448-6.336 0.736-8.448 9.76 5.248 4.32-3.584 9.248-6.88 0 6.368 5.248-3.072 8.448-3.072 3.808-5.664 12.512-1.28 14.624-7.68-4.704-1.536-3.84-13.312-3.84-17.6 5.664 0.928 11.968-7.648 12.832-1.76 0.32 2.272 0.608 8.544 1.76 9.408 8.416 4.416 6.176-2.528 6.176-6.88-2.816 0-6.56-9.856-6.944-14.592-2.304 0.32-6.016 1.28-6.944 3.040-8.384 0-14.080-3.040-20.736-3.040-0.512-1.024-8.512-9.984-7.68-9.984-4.672-8.032 4.672-5.696 6.144-6.080 0-7.616 31.712-6.272 33.088-18.432-10.432 0 10.752-17.664 10.752-17.6 7.072-6.048 10.816-11.264 19.616-11.936 3.712-0.256 44.992-11.648 44.992-6.496 1.664 0.064 7.168 0.128 12.864 0.32-79.904-74.304-186.688-120.064-304.416-120.064-114.016 0-217.792 42.944-296.864 113.12 0.704 1.6 1.248 3.136 1.216 4.224 4.192-0.288 10.208-2.976 11.552 2.336-2.080-0.032-4.16-0.288-6.144-0.8 1.472 11.872-5.184 4.608-10.752 4.608 0-0.288-2.464-1.28-5.088-1.984-1.696 1.6-3.488 3.104-5.184 4.704 0.192 0.512-0.096 0.544 0.224 1.12 1.792 0 0.864 2.784 5.984 4.48 5.92 2.016 12.416 3.136 18.656 4.128 5.056 0.8 7.968-0.928 12.288-0.928 0-0.64 10.56-5.344 3.104-5.344 1.024-4.224-0.864-5.28-5.408-5.344 0.384-4.48 11.040-1.536 15.392-1.536 3.328-5.6 0.096-4.928 3.040-10.016 3.52-6.24 7.712-0.832 10.016-6.816 3.488 1.28 6.592 3.168 7.712 7.584 2.784 2.304 16.928 23.168 16.928 8.416 5.056 1.696 7.584 11.168 7.68 16.128 9.184-1.344 9.984-8.224 9.984-15.36 2.112 0-0.768-3.424-0.768-4.608 3.424-1.248 7.712 3.264 7.712-1.504 1.472 0 1.536 1.472 1.536 3.072 4.768 0.928 7.84-0.544 10.752 0.48 2.016 0.704 0.992 11.168 0.064 14.848-1.152 4.672-10.080 4.736-10.080 6.912-10.112 7.552 11.936 11.488 15.392 16.096-2.080 0-9.984-1.024-9.984-1.504-4.992 0-17.088 5.28-21.536 1.504 6.208 0 8.288-7.456 9.248-14.56-5.728-2.144-12.48 1.376-14.080 7.072-2.688 9.408-8.928-0.384-12.064 5.952-1.216 0.384-12.32 5.536-12.32 3.808-12.48 1.76-9.216 12.352-9.216 23.776 4.96 2.976 15.040 11.456 14.592 16.096 11.2 1.984 15.296 3.168 25.376 4.608 0.832 1.632 4.16 3.168 6.176 3.808 0 6.592 5.984 5.408 11.52 5.408 0-8.416 9.792 7.008 10.752 9.952-1.344 0 2.304 8.608 3.072 11.52-1.536-0.544-2.016 0-1.536 1.536 4.864 1.792 12.576 1.28 13.856-3.84-4.672 0-3.104-5.344-3.104-8.448-4.8-3.2-4.064-9.376 0.768-10.72 0 4.352 15.84-2.72 6.912-6.112 2.176-4.896 3.648-12.416 0.096-16.672-2.272-2.688-5.12 0-6.24-4.032 6.048-1.504 1.6-13.024 1.536-18.4 1.92-0.736 6.912 1.216 6.912 0 5.92 0 15.776 7.488 19.232-1.568 9.888 4.512 2.016 8.8 12.32 5.376 0 2.432 11.616 13.792 13.088 13.792 0 0.544-0.288 3.84 2.272 3.84 0 2.464-1.536-1.408-1.536 3.040 1.44 0.16 9.248 1.568 9.248-1.504 4.96 0 8.448-6.080 8.448-10.72 3.104-2.016 8.544 16.864 12.288 16.864 2.752 4.288 11.552 10.528 11.552 14.56 1.856 1.888 3.808 1.376 3.808 6.912 2.336 0 6.944-9.184 6.944-0.768 2.176 0 8.512 4.672 9.248 8.416-5.536 0-0.288 5.376-3.136 5.376 0 5.312-11.872 1.088-14.56 0.768-3.68 16.48-25.888 4.64-39.328 8.896-7.072 2.24-20.736 17.824-21.472 25.6 8.576 0.096 12.352-7.424 20-9.984 6.24 0 7.456-3.776 13.088-5.344 0 1.568 1.536 0.736 1.536 2.304-10.944 0-4.288 7.072-1.088 12.224 1.984 3.2 4.256 4.736 6.784 5.728-1.056 1.856-1.92 3.712-2.592 5.792 0 0.032-0.032 0-0.032 0.032-2.080 0.704-6.144 2.208-6.944 3.84-12.384 1.376-6.272 0.544-5.44-2.432 0.448 1.056 4.896 0.096 4.704 0.128-0.736-3.712-1.856-3.2-0.768-5.344-6.72 0-9.984 3.072-15.392 3.072-0.896 1.824-5.6 6.144-7.68 6.144-1.568 4.736-5.12 13.344-9.248 16.096 0-1.248-10.944 6.88-9.984 6.88-2.432 3.936-5.088 3.808-6.176 9.952-0.736 0.384-3.84 10.656-3.84 12.256-4.768 3.168-6.528 16.096-14.624 16.096-4.96 9.856-13.856 8.544-13.856 21.472 3.008 3.072 4.16 16.672 5.088 21.024 1.152 5.408 2.944 11.040-4.288 11.168-0.512-0.8-5.568-8.448-4.64-8.448 0-3.168-3.872-13.312-6.144-16.48-3.040-4.256-8.672 0.672-13.088-1.184-1.888-3.776-14.656-4.608-19.2-4.608 0.736 2.848 2.816 3.744 3.072 6.912-3.776 1.536-5.952 3.264-9.856 2.72-6.688-0.928-5.888-6.144-13.248-5.408-11.776 1.184-20 10.944-20 22.624-1.312 0-1.312 23.008 0 23.008 0 6.496 5.376 11.2 5.376 16.096 5.216 0 11.072 11.488 16.16 11.488 0.576 4.064-2.56 4.704 6.144 4.64 0-0.448 4.736-2.976 5.376-6.144-6.016-1.472-0.032-9.216 3.84-10.72 0 5.472 7.68-1.824 7.68-2.304 0.864-0.352 8.48-3.072 8.48-3.072 0-6.208 5.792 0.608 1.536 3.072-4.16 0-3.84 6.912-6.144 6.912-0.992 4.928-2.944 9.216-4.096 14.016-1.472 5.92 3.328 6.528 1.792 12.064 6.112 1.152 12.288 0.032 18.464 0 0.032-1.088-0.192-2.144-0.768-3.072 8.928 0 0.768 16.864 6.176 16.864 0 6.368 3.072 11.328 3.072 15.328 4.16 2.752 6.656 6.432 5.376 11.488 5.12 0.672 16.128 1.984 16.128-4.608 7.776 0 8.32 5.28 7.744 10.72 15.488 0 5.792-15.328 12.256-15.328 0.608-2.528 1.664-2.976 3.168-1.312 3.168 1.696 5.568-3.168 8.096-4.704 0.8-0.544 3.616-2.176 4.128-2.176 2.176 1.312 2.368 0.928 3.328 2.4 4.224-0.032 8.48-2.4 12.096-4.896 5.536 0.672 3.744 12.576 14.112 13.312 4.16 0.288 13.792 1.44 17.376-1.024 0.896-0.608 4.192 2.080 4.544 3.232 3.456 0 3.2 3.008 4.672 2.944 0.352 0.672 0.864 0.928 1.568 0.736 0.448 1.312 3.2 1.696 4.64 5.344 0 3.328 6.912 3.904 6.912 6.112 4.96 2.496-1.696 3.168 5.92 5.472 4.192 1.312 8.064 3.424 12.576 3.744 1.44-5.472 6.112 0.736 8.48 0.736 1.216 2.496 1.856 0.608 3.040 3.072 7.136 5.952 2.432 3.648 5.376 9.984 3.424 2.24 4.512 10.048 5.44 14.56-2.752 0-0.8 10.528-0.8 11.52-3.328 0 8.512 6.304 8.512-1.568 4.864 0.8 8.064 6.112 11.52 6.112-2.016 4.64 5.376 8.128 5.376 0.8 7.296 0.736 5.344 11.616 4.64 15.328 5.408 0 6.976-3.008 11.584-3.584 4.992-3.168 10.56-5.472 16.864-5.472 17.696 0 32 14.304 32 32 0 15.936-11.872 28.576-27.136 31.008-2.048 2.336-3.904 4.352-4.032 4.352 0 1.536-0.352 16.832-0.8 16.832 0 3.072-2.336 19.936-4.608 19.936 0 8.672-5.664 10.24-7.68 18.4-4.672 3.456-17.312 9.216-19.264 13.024-3.616 0-6.304 3.072-9.984 3.072-0.512 1.056-8.352 8.448-6.944 8.448-0.576 5.44 0.416 18.24-2.528 21.824-1.984 2.368-4.832 2.112-3.584 5.824-4.32 0 0.256 3.072-6.56 3.072-4.288 0-11.936 6.112-12.16 11.296-0.288 6.336-1.984 10.912-7.424 14.784 0 2.176-9.984 2.816-9.984 8.448 0.928 0 0 10.432 0 11.488-2.976-0.096-10.272 2.88-11.52 5.344-10.048 0-8.832 1.024-15.36 5.376 0 1.344-0.928 6.112-2.304 6.112 0 7.776-5.536 0.704-10.016 4.64 1.76 0 4 7.648 3.072 7.648 0 6.752-4.192 7.328-8.448 12.288-2.016 1.344-3.936 6.912-5.376 6.912 0 4.544-2.272 8.672-2.272 13.024 0.96 0 0.064 1.952 0.736 3.776 2.144-0.608 2.208-3.040 3.072-3.040 0-3.84 6.112 2.272 2.304 2.272-3.168 4.8-6.592 4.896-8.48 11.52-1.92 0-3.584 1.856-4.992 4.032 37.696 10.272 77.248 16.288 118.272 16.288 157.568 0 295.872-81.536 375.744-204.576 0.48-11.328 2.24-22.144 3.488-25.888 3.136 2.304 5.472 6.624 7.68 0-5.536-1.088-4.192-3.008-2.304-7.648 2.112 1.28 6.368 2.848 9.824 2.624 1.056-1.984 1.888-4.096 2.944-6.080-3.136-2.432 1.184-8.736 2.688-5.664 0.8-1.536 1.504-3.136 2.24-4.672-0.352-0.096-0.256 0.128-0.768-0.032 0-2.784 0.512-2.432 2.336-3.84 0.032 0.288 0 0.288 0.064 0.544 27.936-58.464 44.064-123.648 44.064-192.768 0-2.272-0.32-4.448-0.352-6.72-0.832 3.136-2.4 6.528-4.608 7.296 0 2.016-22.88 11.968-21.504 16.096-4.032 0-18.176 4.032-20.768 9.184-2.848 0-14.336 4.064-15.392 6.144-14.272 0.032-11.552-16.832-18.432-16.832zM944 352h-16.992c-0.128-0.16-0.256-0.192-0.384-0.416-0.864 0-4.48-8.128-3.072-9.984 1.376 0 2.016 0.128 2.752 0.192-1.44-3.52-3.008-6.976-4.576-10.464-3.456 2.368-6.496 5.376-11.264 5.664 0 1.312-6.816 14.56 0 14.56 0 0.256 0.128 0.448 0.192 0.672-8.16 0.768-14.656 7.424-14.656 15.776 0 8.832 7.168 16 16 16h6.304c0.384 2.912 1.952 5.44 7.552 6.688 1.76 7.392 14.944 10.016 16.928 2.272-5.568 0-3.744-5.344-3.264-8.96h4.48c8.8 0 16-7.168 16-16s-7.2-16-16-16zM897.376 560.064c1.12 0.064 8.512-0.128 8.512-1.44 6.688 0 15.744-0.928 22.304-3.104 0 9.92-8.352 15.456-6.944 25.312-5.536 0-3.104 5.696-3.104 7.648-3.584 2.208-4.128 6.24-8.448 8.448 0 4.448-9.984 11.808-12.928 15.616-3.328 4.256-13.344 11.648-14.656 17.056 0.352-1.28-18.304 19.424-13.952 19.424 0 3.872-5.248 34.496 1.536 34.496 0 2.688 5.792 28.384 2.272 28.384 0 8.256-5.376 13.312-5.376 19.904-2.624 1.792-6.368 2.784-7.68 5.408-4.704 0-6.976 9.984-9.216 9.984 0 10.656-3.104 18.56-3.104 30.656 0.864 0-6.144 17.248-6.144 18.368-5.664 3.808-20 17.472-20 24.576 0 0-9.984 14.016-11.52 16.096-3.008 0-26.176 4.352-26.176 6.144-4.928 0-17.664 3.872-20.736-0.768 0-4.864-2.656-11.040-3.072-17.664-2.368 0-2.752-9.952-5.376-9.952 0-2.112-14.688-31.456-12.32-31.456 0-3.040-2.624-13.024-3.072-13.024 0-10.56-7.712-19.36-7.712-29.12-2.272 0-6.976-21.44-4.608-21.44 0-11.264 3.936-18.624 5.568-31.136 1.824-13.728-0.864-22.080-3.264-31.776-1.312 0-5.728-7.328-6.176-9.184-6.176-4.096-8.448-12.224-8.448-19.904 4.032-4.608 5.632-21.92 4.64-27.616-7.776-3.68-10.88-2.304-19.264-2.304-4.96-9.952-38.272-3.808-47.712-3.808 0 5.44-23.2-1.056-25.376-5.376-5.664 0-16.896-12.032-16.896-17.632-6.208-4.128-16.128-24.672-16.128-31.424-5.376-2.688-3.744-13.056-0.8-13.056 0.736-2.88-1.888-11.968-3.136-16.288-0.928-3.232 3.136-6.72 3.136-10.56 0-10.688 0.256-15.616 6.24-27.040 1.888-3.584 4.288-6.944 6.048-11.424 3.2-8.032 4.16-0.384 8.48-7.552 4.128-2.048 6.528-8.896 10.784-12.256 1.856-2.464 1.92-3.488 0-5.376 0.832 0 5.376-11.808 5.376-14.528 6.016-8.352 1.76-4.544 7.68-3.84 2.176-2.368 5.792-8.448 9.216-8.448 1.504-2.976 5.28-4.608 8.48-4.608 0 4.608 12.544-1.504 13.856-1.504 2.144-4.32 15.968-9.216 19.232-9.216 0-5.248 27.264 1.472 31.552 0.768 0-0.768 0-1.536 0-2.304 5.824 1.376 16.448 24.736 15.36 29.92 4.48 0 8.64-0.736 11.552 0 0 4.96 9.344 6.176 13.6 6.4 5.92 0.288 23.296-0.608 23.296-8.704 4.576 0 8.64 3.2 7.744 8.416 5.184 0.576 36 1.184 33.824 7.648 4.512 0 5.664 7.712 9.984 7.712-0.864 5.312 5.376 19.168 9.984 19.168 0 4.608 2.88 13.088 6.944 16.064 2.176 6.592 9.376 20.48 16.128 24.544-2.88 5.44 4.384 9.92 6.176 15.328-0.416 0 1.568 8.032 3.808 9.216 0 5.44 11.456 27.616 17.728 27.616 0.416 2.688-5.888 3.904 2.304 4.512zM731.264 388.384c1.184-4.576 3.872-1.024 6.368-0.192 5.92 1.92 3.872-0.096 8.256-2.080 0 12.48-7.168 3.008-14.624 2.272zM715.072 365.376c3.136 0 4 14.080-4.608 11.488 0-3.488-2.208-9.952 2.336-9.952 1.312 5.44 2.272 3.232 2.272-1.536zM711.264 356.192c3.552 1.536 5.12 1.024 4.608-1.536 4.672 1.536-0.608 4.864-1.536 8.448-2.4-2.368-1.664-3.2-3.072-6.912zM628.928 287.936c-7.552-1.952 7.776-4.192 8.448-6.112-2.56 0-4.32-2.656-3.328-4.896 1.152-2.656 3.040 3.168 5.664 1.856 3.104-0.32 9.216-4.96 6.080 4-3.2 9.088-6.112 15.744-17.632 15.904-4.128-4.16-0.16-6.336 0.768-10.752zM657.408 256.512c6.208 0 0.768 4.608-0.608 4.608 1.056 0.416-0.192 4.128-0.192 5.344 5.76-0.064 5.856-3.584 9.984-4.608-0.864 5.152-6.624 6.144-0.992 10.56 2.976 2.336 6.016 5.088 4.832 8.64 7.328 0 8.416 7.040 6.912 15.328 4.064 0 3.872 0.192 3.872-3.872 3.936 1.088 3.648 4.64 0 4.64-3.648 7.2-13.216 6.88-20 6.88-0.064-5.568-1.12-5.92-6.272-4.352-7.040 2.144-1.536-5.6-1.408-9.44 0.768 0 15.968 0.704 6.912-2.304-0.48-8.256-2.336-10.72-9.984-10.72 0-5.632-1.984-5.216-2.912-11.392-1.312-9.12 7.136 0.64 9.856-9.312zM655.072 306.336c0 1.888-3.84 3.392-4.608 0.736 0.736 0.256 1.024 0 0.736-0.736 1.312 0 2.624 0 3.872 0zM592 224h-32c-8.832 0-16-7.168-16-16s7.168-16 16-16h32c8.832 0 16 7.168 16 16s-7.168 16-16 16zM405.568 507.2c1.792 0 3.872 0.704 3.872 2.304-2.336 0-5.344 2.208-3.872-2.304zM376.384 508.768c-1.28 2.432-11.648 2.016-13.088-0.8 3.84 0 6.816 1.568 10.752 0 0-2.112-1.76-3.808-3.072-6.112 4.192 0 8.896 3.2 14.624 3.072 0-3.552-1.568 0.768 0-3.84 2.4 0.608 8.192 6.112 8.448 8.416-8.416-0.896-8.8-0.736-17.664-0.736zM342.528 490.368c-3.936 0-11.52-3.424-13.856-6.912 3.808 0.16 7.584 1.728 9.984-2.304 9.76 0.992 10.624 7.712 18.464 7.712 1.472 2.592 9.856 8.544 1.76 9.312-6.112 0.576-13.792-2.752-16.352-7.808zM348.672 511.84c-2.848 0-7.552 1.248-5.376-4.64 3.776 0.512 5.568 2.080 5.376 4.64zM354.048 511.072c-1.536 0.256-3.072 0.512-4.608 0.768 0.448-3.552 3.808-7.52 4.608-0.768zM382.496 544.768c-0.608 2.144-0.512 2.272-3.040 2.272 0.256-0.992 0.48-1.984 0.736-3.040 0.8 0.256 1.536 0.512 2.304 0.768zM313.28 481.152c0.736 0.256 1.536 0.544 2.304 0.768 0.992 3.808 3.072 1.92 5.376 0.768 0 4.448-10.304 5.728-7.68-1.536z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "earth", + "globe" + ], + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 41, + "order": 23, + "prevSize": 32, + "code": 59073, + "name": "earth2" + }, + "setIdx": 1, + "setId": 8, + "iconIdx": 41 + }, + { + "icon": { + "paths": [ + "M618.144 224.16h32.992c63.968-88.064-43.904-128.096 0-224.16h-32.992c-38.368 94.464 51.872 131.296 0 224.16zM489.408 256.192h33.536c-44.608-96.064 64.992-168.128 0-256.192h-33.536c52.704 92.864-39.008 161.728 0 256.192zM974.944 813.344c-6.4-24.672-14.048-37.28-48.992-40.032-13.28-0.864-25.984-1.632-39.168-2.496 0.352-0.64 0.576-1.568 0.864-2.24h-102.080c-8.896 0-16.128-7.168-16.128-16 0-8.864 7.232-16.032 16.128-16.032h108.992c2.24-27.2-0.992-60.576-10.656-77.984-14.304-27.552-27.616-49.952-40.544-67.648-22.304-27.84-63.648-46.496-94.208-56.544-3.584-0.928-7.936-1.76-12.64-2.528-1.632 7.136-7.744 12.576-15.392 12.576h-96.672c-8.896 0-16.128-7.168-16.128-16.032 0-3.744 13.088-7.168 28.672-9.92-19.392-45.856 3.552-102.144 3.552-102.144 0-35.36-64.48-106.72-64.48-64.032s-153.376 0-153.376 0c-20.832-23.328-39.968-64.032-39.968-64.032s-56.192 31.744-63.104 72.192c-19.936 10.88-33.6 31.68-33.6 55.904v32c0 14.944 2.656 40 9.344 64.032h71.232c8.896 0 16.128 7.168 16.128 16 0 8.864-7.232 16.032-16.128 16.032h-96.608c-7.232 0-13.088-4.736-15.168-11.264-21.312-4.64-42.88-10.688-64.768-18.976-35.904 0.736-65.056 28.896-65.056 63.936v63.328c0.032 11.808 3.392 22.976 9.312 32.672 2.048-0.96 4.352-1.6 6.784-1.6h128.896c8.896 0 16.096 7.168 16.096 16s-7.2 16.032-16.096 16.032h-98.656c2.816 1.088 5.664 2.176 8.672 2.976-17.984-0.192-36-0.8-53.952-0.8-31.424 0.16-74.368 27.168-88.928 51.648-21.728 38.016-33.056 68.544-36.992 128.544-2.112 40.064 25.12 137.088 55.328 137.088s870.88-0.704 870.88-0.704 95.84-59.552 97.44-96.224c3.776-54.976-40.96-76.48-48.832-113.728zM371.456 192.128h33.536c-52.704-92.864 39.008-97.664 0-192.128h-33.536c44.576 96.064-64.96 104.064 0 192.128z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "shit", + "crap", + "poop" + ], + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 95, + "order": 25, + "prevSize": 32, + "code": 59074, + "name": "shit" + }, + "setIdx": 1, + "setId": 8, + "iconIdx": 95 + }, + { + "icon": { + "paths": [ + "M448 192c142 0 256 115 256 256 0 69-28 132-72 178l-16 93c91-56 152-156 152-271 0-177-143-320-320-320s-320 143-320 320c0 115 61 215 152 271l-16-93c-45-46-72-109-72-178 0-142 114-256 256-256zM384 512c-36 0-64 29-64 64v128c0 36 30 64 64 64v256h128v-256c34 0 64-28 64-64v-128c0-35-28-64-64-64s-64 0-64 0-28 0-64 0zM576 384c0-71-57-128-128-128s-128 57-128 128 57 128 128 128 128-57 128-128zM448 0c-247 0-448 201-448 448 0 197 128 363 305 423l-12-72c-135-60-229-194-229-351 0-212 172-384 384-384s384 172 384 384c0 157-94 291-229 351l-12 72c177-60 305-225 305-423 0-247-201-448-448-448z" + ], + "width": 896, + "attrs": [], + "isMulticolor": false, + "tags": [ + "broadcast" + ], + "defaultCode": 61512, + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 16, + "order": 24, + "prevSize": 32, + "code": 61512, + "name": "broadcast" + }, + "setIdx": 2, + "setId": 7, + "iconIdx": 16 + }, + { + "icon": { + "paths": [ + "M768 384h-640c-70.656 0-128 57.344-128 128v64c0 47.25 25.844 88.062 64 110.25v209.75h256v128h256v-128h256v-209.75c38.125-22.188 64-62.938 64-110.25v-64c0-70.656-57.375-128-128-128zM256 832h-128v-256h-64v-64c0-35.312 28.688-64 64-64h81.719c-11 18.875-17.719 40.562-17.719 64v128c0 47.25 25.844 88.062 64 110.25v81.75zM576 704v-128h-64v384h-128v-384h-64v128c-35.312 0-64-28.625-64-64v-128c0-35.312 28.688-64 64-64h256c35.375 0 64 28.688 64 64v128c0 35.375-28.625 64-64 64zM832 576h-64v256h-128v-81.75c38.125-22.188 64-62.938 64-110.25v-128c0-23.438-6.75-45.125-17.75-64h81.75c35.375 0 64 28.688 64 64v64zM303.688 317.375c35.187 40.5 86.468 66.625 144.312 66.625 57.875 0 109.125-26.125 144.312-66.625 21.813 39.563 63.376 66.625 111.688 66.625 70.625 0 128-57.344 128-128s-57.375-128-128-128c-25.625 0-49.375 7.688-69.375 20.688-19.75-85.126-95.563-148.688-186.625-148.688s-166.906 63.562-186.625 148.688c-20.031-13-43.781-20.688-69.375-20.688-70.656 0-128 57.344-128 128s57.344 128 128 128c48.312 0 89.844-27.062 111.688-66.625zM704 192c35.375 0 64 28.594 64 64s-28.625 64-64 64c-35.312 0-64-28.594-64-64s28.688-64 64-64zM448 64c70.625 0 128 57.344 128 128s-57.375 128-128 128c-70.656 0-128-57.344-128-128s57.344-128 128-128zM192 320c-35.312 0-64-28.594-64-64s28.688-64 64-64c35.406 0 64 28.594 64 64s-28.594 64-64 64z" + ], + "width": 896, + "attrs": [], + "isMulticolor": false, + "tags": [ + "organization" + ], + "defaultCode": 61495, + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 120, + "order": 19, + "prevSize": 32, + "code": 61495, + "name": "organization" + }, + "setIdx": 2, + "setId": 7, + "iconIdx": 120 + }, + { + "icon": { + "paths": [ + "M768 64c-141.385 0-256 83.75-256 186.875 0 123.875 32 194.125 0 389.125 0-288-177-405.783-256-405.783 3.266-32.17-30.955-42.217-30.955-42.217s-14 7.124-19.354 21.583c-17.231-20.053-36.154-17.54-36.154-17.54l-8.491 37.081c0 0-117.045 40.876-118.635 206.292 13.589 21.584 98.9 38.686 159.476 27.702 57.157 2.956 42.991 50.648 30.193 63.446-53.997 53.998-104.080-18.564-168.080-18.564s-64 64 0 64 64 64 192 64c-198 77 0 256 0 256h-64c-64 0-64 64-64 64s256 0 384 0c192 0 320-64 320-222.182 0-54.34-27.699-114.629-64-162.228-70.943-93.023 14.453-171.156 64-127.59s192 64 192-128c0-141.385-114.615-256-256-256zM160 384c-17.674 0-32-14.327-32-32s14.326-32 32-32c17.673 0 32 14.326 32 32s-14.327 32-32 32z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "squirrel" + ], + "defaultCode": 61618, + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 157, + "order": 20, + "prevSize": 32, + "code": 61618, + "name": "squirrel" + }, + "setIdx": 2, + "setId": 7, + "iconIdx": 157 + }, + { + "icon": { + "paths": [ + "M136 64c-75.11 0-136 100.29-136 224 0 68.83 17.020 141.84 34 254.54 13.3 88.29 45.67 161.46 102 161.46s94.080-48.79 94.080-137.97c0-30.37-24.97-78.75-26.080-120.030-2.020-74.46 49.93-104.17 49.93-173 0-123.71-42.83-209-117.93-209zM502.97 320c-75.1 0-117.93 85.29-117.93 209 0 68.83 51.95 98.54 49.93 173-1.109 41.28-26.080 89.66-26.080 120.030 0 89.18 37.75 137.97 94.080 137.97s88.7-73.17 102-161.46c16.98-112.7 34-185.71 34-254.54 0-123.71-60.89-224-136-224z" + ], + "width": 640, + "attrs": [], + "isMulticolor": false, + "tags": [ + "steps" + ], + "defaultCode": 61639, + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 159, + "order": 21, + "prevSize": 32, + "code": 61639, + "name": "steps" + }, + "setIdx": 2, + "setId": 7, + "iconIdx": 159 + }, + { + "icon": { + "paths": [ + "M0 704h128v-64h-64v-256h64v-64h-128v384zM384 192v640h512v-640h-512zM768 704h-256v-384h256v384zM192 768h128v-64h-64v-384h64v-64h-128v512z" + ], + "width": 896, + "attrs": [], + "isMulticolor": false, + "tags": [ + "versions" + ], + "defaultCode": 61540, + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 174, + "order": 22, + "prevSize": 32, + "code": 61540, + "name": "versions" + }, + "setIdx": 2, + "setId": 7, + "iconIdx": 174 + }, + { + "icon": { + "paths": [ + "M617 896c86.312-18.75 151-100 151-192 0-58.438-26.625-110.125-67.875-145.375 2.375-15.25 3.875-30.75 3.875-46.625 0-104.844-49.875-197.875-128-256l64-64v-64l64-64-64-64-64 64h-64l-256 256-128 64v128l64 64h128l64-128 96-96c55.5 33.406 96 90.438 96 160-106.062 0-192 85.938-192 192h-384v64h192c19.125 14.25 42.062 22.125 64 32v96h-128l-128 128h768l-128-128h-23zM512 704c0-35.375 28.625-64 64-64s64 28.625 64 64c0 35.312-28.625 64-64 64s-64-28.688-64-64z" + ], + "width": 768, + "attrs": [], + "isMulticolor": false, + "tags": [ + "microscope" + ], + "defaultCode": 61577, + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 109, + "order": 507, + "prevSize": 32, + "code": 61577, + "name": "microscope" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 0 + }, + { + "icon": { + "paths": [ + "M1024 960v-64h-64v-384h64v-64h-192v64h64v384h-192v-384h64v-64h-192v64h64v384h-192v-384h64v-64h-192v64h64v384h-192v-384h64v-64h-192v64h64v384h-64v64h-64v64h1088v-64h-64z", + "M512 0h64l512 320v64h-1088v-64l512-320z" + ], + "width": 1088, + "attrs": [], + "isMulticolor": false, + "tags": [ + "library", + "bank", + "building" + ], + "defaultCode": 57460, + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 174, + "order": 472, + "prevSize": 32, + "code": 59681, + "ligatures": "library2, bank", + "name": "library" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 1 + }, + { + "icon": { + "paths": [ + "M0 960v-896h576l192 192v704h-768zM704 320l-192-192h-448v768h640v-576zM320 512h-192v-256h192v256zM256 320h-64v128h64v-128zM256 768h64v64h-192v-64h64v-128h-64v-64h128v192zM512 448h64v64h-192v-64h64v-128h-64v-64h128v192zM576 832h-192v-256h192v256zM512 640h-64v128h64v-128z" + ], + "width": 768, + "attrs": [], + "isMulticolor": false, + "tags": [ + "file-binary" + ], + "defaultCode": 61588, + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 52, + "order": 462, + "prevSize": 32, + "code": 61588, + "name": "file-binary" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 2 + }, + { + "icon": { + "paths": [ + "M576 384h-320v64h320v-64zM384 256h-128v64h128v-64zM768 228.531v-100.531h-140.812l-179.188-128-179.188 128h-140.812v100.531l-128 91.469v640h896v-640l-128-91.469zM192 192h512v244.812l-256 211.188-256-211.188v-244.812zM64 448l252.031 191.625-252.031 192.375v-384zM128 896l254-206.25 66 50.25 65.875-50.125 254.125 206.125h-640zM832 832l-252.375-192.062 252.375-191.938v384z" + ], + "width": 896, + "attrs": [], + "isMulticolor": false, + "tags": [ + "mail-read" + ], + "defaultCode": 61500, + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 103, + "order": 463, + "prevSize": 32, + "code": 61500, + "name": "mail-read" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 3 + }, + { + "icon": { + "paths": [ + "M0 512v256h256v-256h-128c0 0 0-128 128-128v-128c0 0-256 0-256 256zM640 384v-128c0 0-256 0-256 256v256h256v-256h-128c0 0 0-128 128-128z" + ], + "width": 640, + "attrs": [], + "isMulticolor": false, + "tags": [ + "quote" + ], + "defaultCode": 61539, + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 138, + "order": 471, + "prevSize": 32, + "code": 61539, + "name": "quote" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 4 + }, + { + "icon": { + "paths": [ + "M355.23 576c14.876-73.042 79.376-128 156.792-128 77.418 0 141.916 54.958 156.752 128h64c-15.668-108.25-108.168-192-220.752-192-112.542 0-205.082 83.75-220.75 192h63.958zM512.022 320c17.666 0 32-14.334 32-32v-64c0-17.666-14.334-32-32-32-17.664 0-32 14.334-32 32v64c-0 17.666 14.336 32 32 32zM806.146 313.834c-12.498-12.5-32.748-12.5-45.25 0l-45.25 45.25c-12.498 12.5-12.498 32.75 0 45.25 12.502 12.5 32.752 12.5 45.25 0l45.25-45.25c12.5-12.5 12.5-32.75 0-45.25zM308.354 359.084l-45.25-45.25c-12.498-12.5-32.746-12.5-45.25 0-12.498 12.5-12.498 32.75 0 45.25l45.25 45.25c12.504 12.5 32.752 12.5 45.25 0 12.504-12.5 12.504-32.75 0-45.25zM704.022 640h-384c-17.664 0-32 14.334-32 32s14.336 32 32 32h384c17.666 0 32-14.334 32-32s-14.334-32-32-32zM640.022 768h-256c-17.664 0-32 14.334-32 32s14.336 32 32 32h256c17.666 0 32-14.334 32-32s-14.334-32-32-32z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "sunrise", + "dawn", + "weather" + ], + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 0, + "order": 225, + "prevSize": 32, + "code": 58988, + "name": "sunrise" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 5 + }, + { + "icon": { + "paths": [ + "M512 288c-123.5 0-224 100.5-224 224s100.5 224 224 224 224-100.5 224-224c0-123.5-100.5-224-224-224zM512 672c-88.376 0-160-71.624-160-160s71.624-160 160-160 160 71.624 160 160-71.624 160-160 160zM512 224c17.666 0 32-14.334 32-32v-64c0-17.666-14.334-32-32-32s-32 14.334-32 32v64c0 17.666 14.334 32 32 32zM512 800c-17.666 0-32 14.334-32 32v64c0 17.666 14.334 32 32 32s32-14.334 32-32v-64c0-17.666-14.334-32-32-32zM760.876 308.334l45.25-45.25c12.5-12.5 12.5-32.75 0-45.25s-32.75-12.5-45.25 0l-45.25 45.25c-12.5 12.5-12.5 32.75 0 45.25 12.498 12.5 32.75 12.5 45.25 0zM263.124 715.668l-45.25 45.25c-12.5 12.498-12.5 32.748 0 45.248s32.75 12.5 45.25 0l45.25-45.248c12.5-12.542 12.5-32.752 0-45.25-12.498-12.502-32.75-12.544-45.25 0zM224 512c0-17.666-14.334-32-32-32h-64c-17.666 0-32 14.334-32 32s14.334 32 32 32h64c17.666 0 32-14.334 32-32zM896 480h-64c-17.666 0-32 14.334-32 32s14.334 32 32 32h64c17.666 0 32-14.334 32-32s-14.334-32-32-32zM263.082 308.334c12.502 12.5 32.752 12.5 45.25 0 12.502-12.5 12.502-32.75 0-45.25l-45.25-45.25c-12.5-12.5-32.748-12.5-45.25 0-12.5 12.5-12.5 32.75 0 45.25l45.25 45.25zM760.918 715.624c-12.542-12.5-32.752-12.5-45.25 0-12.502 12.5-12.542 32.75 0 45.25l45.25 45.25c12.498 12.5 32.748 12.5 45.248 0s12.5-32.748 0-45.25l-45.248-45.25z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "sun", + "weather" + ], + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 1, + "order": 226, + "prevSize": 32, + "code": 58989, + "name": "sun" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 6 + }, + { + "icon": { + "paths": [ + "M699.704 686.3c-99.752 99.832-262.166 99.832-362 0-99.832-99.834-99.832-262.25 0-362.042 26.418-26.374 58.624-46.5 95.664-59.624 11.668-4.084 24.586-1.124 33.25 7.584 8.752 8.75 11.71 21.666 7.586 33.25-25.084 70.75-8 147.332 44.498 199.834 52.418 52.456 129.002 69.5 199.834 44.5 11.584-4.124 24.542-1.166 33.25 7.584 8.752 8.666 11.668 21.624 7.542 33.25-13.042 37.040-33.208 69.246-59.624 95.664zM382.954 369.508c-74.876 74.876-74.876 196.708 0 271.542 80 80.042 216.25 72.834 286-16.334-71.918 4.5-142.75-21.458-195.5-74.168-52.75-52.708-78.666-123.542-74.168-195.458-5.748 4.502-11.208 9.294-16.332 14.418z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "moon", + "night", + "weather" + ], + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 2, + "order": 227, + "prevSize": 32, + "code": 58990, + "name": "moon" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 7 + }, + { + "icon": { + "paths": [ + "M542 254c17.666 0 32-14.334 32-32v-64c0-17.666-14.334-32-32-32s-32 14.334-32 32v64c0 17.666 14.334 32 32 32zM542 830c-17.666 0-32 14.334-32 32v64c0 17.666 14.334 32 32 32s32-14.334 32-32v-64c0-17.666-14.334-32-32-32zM293.124 745.668l-45.25 45.25c-12.5 12.498-12.5 32.748 0 45.248s32.75 12.5 45.25 0l45.25-45.248c12.5-12.542 12.5-32.752 0-45.25-12.498-12.502-32.75-12.544-45.25 0zM254 542c0-17.666-14.334-32-32-32h-64c-17.666 0-32 14.334-32 32s14.334 32 32 32h64c17.666 0 32-14.334 32-32zM293.082 338.334c12.502 12.5 32.752 12.5 45.25 0 12.502-12.5 12.502-32.75 0-45.25l-45.25-45.25c-12.5-12.5-32.748-12.5-45.25 0-12.5 12.5-12.5 32.75 0 45.25l45.25 45.25zM670 318c-22.376 0-43.624 4.334-64 10.416-20.376-6.084-41.624-10.416-64-10.416-123.5 0-224 100.5-224 224s100.5 224 224 224c22.376 0 43.624-4.332 64-10.418 20.376 6.086 41.624 10.418 64 10.418 123.5 0 224-100.5 224-224s-100.5-224-224-224zM510.458 698.834c-73.292-14.666-128.458-79.252-128.458-156.834 0-77.584 55.166-142.166 128.458-156.834-39.79 40.458-64.458 95.75-64.458 156.834s24.668 116.376 64.458 156.834z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "sun", + "weather" + ], + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 3, + "order": 228, + "prevSize": 32, + "code": 58991, + "name": "sun3" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 8 + }, + { + "icon": { + "paths": [ + "M990 446h-163.25c-16.126-143.584-136.874-256-284.75-256-99.624 0-187.5 50.916-239.25 128h-208.75c-17.666 0-32 14.334-32 32s14.334 32 32 32h177.666c-7.248 20.416-11.958 41.792-14.416 64h-99.25c-17.666 0-32 14.334-32 32s14.334 32 32 32h99.25c2.458 22.168 7.168 43.624 14.416 64h-171.834c-20.914 0-37.832 14.334-37.832 32s16.918 32 37.832 32h202.918c51.75 77.124 139.624 128 239.25 128 99.624 0 187.5-50.876 239.248-128h74.92c20.914 0 37.832-14.334 37.832-32s-16.918-32-37.832-32h-43.834c7.248-20.376 11.916-41.832 14.416-64h163.25c17.666 0 32-14.334 32-32s-14.334-32-32-32zM340.458 382h201.542c17.666 0 32-14.334 32-32s-14.334-32-32-32h-156.292c40.418-39.458 95.458-64 156.292-64 112.582 0 205.084 83.75 220.75 192h-441.5c3.25-22.624 9.668-44.084 19.208-64zM542 702c-60.834 0-115.876-24.582-156.292-64h312.542c-40.374 39.418-95.416 64-156.25 64zM743.5 574h-403.042c-9.54-19.916-15.958-41.376-19.208-64h441.5c-3.25 22.624-9.668 44.084-19.25 64z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "windy", + "weather" + ], + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 4, + "order": 229, + "prevSize": 32, + "code": 58992, + "name": "windy" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 9 + }, + { + "icon": { + "paths": [ + "M862 384c-53 0-96 43-96 96 0 11.292 2.334 21.916 5.876 32h-613.876c-17.666 0-32 14.334-32 32s14.334 32 32 32h704c53 0 96-43 96-96s-43-96-96-96zM158 448h384c53 0 96-43 96-96s-43-96-96-96-96 43-96 96c0 11.292 2.334 21.916 5.876 32h-293.876c-17.666 0-32 14.334-32 32s14.334 32 32 32zM670 640c-1.876 0-3.668 0.416-5.582 0.582-1.25-0.082-2.292-0.582-3.542-0.582h-493.708c-22.75 0-41.168 14.334-41.168 32s18.418 32 41.168 32h412.708c-3.542 10.084-5.876 20.752-5.876 32 0 53 43 96 96 96s96-43 96-96-43-96-96-96z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "wind", + "weather" + ], + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 5, + "order": 230, + "prevSize": 32, + "code": 58993, + "name": "wind" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 10 + }, + { + "icon": { + "paths": [ + "M765.744 584.5l-65.25-37.668c2.084-11.332 3.5-22.916 3.5-34.832 0-11.958-1.416-23.584-3.584-34.916l65.25-37.708c30.666-17.75 41.084-56.876 23.458-87.376-17.708-30.624-56.75-41.124-87.376-23.5l-65.876 38.042c-17.624-15-37.708-26.834-59.876-34.708l-0-75.834c0-35.334-28.624-64-64-64-35.332 0-64 28.666-64 64v75.792c-22.166 7.876-42.25 19.71-59.874 34.708l-65.752-37.958c-30.624-17.666-69.792-7.208-87.498 23.416-17.626 30.584-7.124 69.708 23.498 87.376l65.126 37.626c-2.124 11.376-3.502 23.042-3.502 35.042 0 11.916 1.376 23.542 3.502 34.876l-65.168 37.624c-30.668 17.668-41.168 56.876-23.458 87.5 17.622 30.5 56.79 41 87.458 23.376l65.666-37.958c17.626 15 37.75 26.916 60 34.834v75.746c0 35.376 28.668 64 64 64 35.376 0 64-28.624 64-64v-75.834c22.25-7.916 42.376-19.75 59.916-34.79l65.834 37.998c30.624 17.624 69.752 7.124 87.376-23.376 17.714-30.622 7.256-69.748-23.37-87.498zM447.994 512c0-35.334 28.624-64 64-64 35.334 0 64 28.666 64 64 0 35.332-28.666 64-64 64-35.374 0-64-28.668-64-64z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "snowflake", + "gear", + "weather" + ], + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 6, + "order": 231, + "prevSize": 32, + "code": 58994, + "name": "snowflake" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 11 + }, + { + "icon": { + "paths": [ + "M416 128c17.666 0 32-14.334 32-32v-64c0-17.666-14.334-32-32-32s-32 14.334-32 32v64c0 17.666 14.334 32 32 32zM664.876 212.334l45.25-45.25c12.498-12.5 12.498-32.75 0-45.25-12.5-12.5-32.75-12.5-45.25 0l-45.25 45.25c-12.5 12.5-12.5 32.75 0 45.25 12.498 12.5 32.75 12.5 45.25 0zM32 448h64c17.666 0 32-14.334 32-32s-14.334-32-32-32h-64c-17.666 0-32 14.334-32 32s14.334 32 32 32zM704 416c0 17.666 14.334 32 32 32h64c17.666 0 32-14.334 32-32s-14.334-32-32-32h-64c-17.666 0-32 14.334-32 32zM167.082 212.334c12.502 12.5 32.752 12.5 45.25 0 12.502-12.5 12.502-32.75 0-45.25l-45.25-45.25c-12.5-12.5-32.748-12.5-45.25 0-12.5 12.5-12.5 32.75 0 45.25l45.25 45.25zM800 512c-10.624 0-21.124 0.75-31.584 2.25-33.542-45.75-78.248-80.666-128.916-103-2.582-121.25-101.624-219.25-223.5-219.25-123.5 0-224 100.5-224 224 0 34.876 8.668 67.5 23 96.876-119.25 4.874-215 102.748-215 223.124 0 123.5 100.5 224 224 224 27.376 0 54.168-5 79.418-14.666 57.914 50.5 131.582 78.666 208.582 78.666 77.084 0 150.666-28.166 208.582-78.666 25.25 9.666 52.042 14.666 79.418 14.666 123.5 0 224-100.5 224-224s-100.5-224-224-224zM416 256c79.624 0 145.124 58.334 157.416 134.5-20.042-4-40.498-6.5-61.416-6.5-91.876 0-177 39.624-236.75 106.5-11.874-22.334-19.25-47.416-19.25-74.5 0-88.376 71.624-160 160-160zM800 896c-34.25 0-65.832-11-91.876-29.334-46.956 56.584-116.876 93.334-196.124 93.334-79.25 0-149.168-36.75-196.124-93.334-26 18.334-57.626 29.334-91.876 29.334-88.376 0-160-71.624-160-160s71.624-160 160-160c15.5 0 30.124 2.916 44.25 7.082 5.624 1.584 11.334 2.834 16.624 5.042 8.75-17.124 19.75-32.792 31.958-47.5 46.752-56.248 116.292-92.624 195.168-92.624 20.25 0 39.668 2.916 58.5 7.418 21.124 4.998 41.084 12.582 59.668 22.582 46.582 24.75 84.832 63.084 108.914 110.126 18.794-7.75 39.336-12.126 60.918-12.126 88.376 0 160 71.624 160 160s-71.624 160-160 160z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "cloudy", + "weather" + ], + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 7, + "order": 232, + "prevSize": 32, + "code": 58995, + "name": "cloudy" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 12 + }, + { + "icon": { + "paths": [ + "M870.124 524.332c9.75-7.25 19.624-14.376 28.458-23.208 26.416-26.458 46.542-58.666 59.584-95.708 4.166-11.584 1.208-24.584-7.544-33.25-8.708-8.75-21.624-11.708-33.246-7.584-70.792 25-147.376 8-199.792-44.5-52.5-52.502-69.584-129.042-44.5-199.792 4.084-11.626 1.166-24.542-7.584-33.292-8.666-8.666-21.624-11.668-33.25-7.582-37.084 13.164-69.25 33.246-95.668 59.664-67.082 67-87.958 162-64.958 247.584-86.5 11.042-164.25 57-216.042 127.586-10.458-1.5-20.958-2.25-31.584-2.25-123.5 0-224 100.5-224 224.002 0 123.498 100.5 223.998 224 223.998 27.376 0 54.168-5 79.418-14.668 57.914 50.5 131.582 78.668 208.582 78.668 77.084 0 150.666-28.168 208.582-78.668 25.25 9.668 52.042 14.668 79.418 14.668 123.5 0 224-100.5 224-223.998 0.002-98.878-64.832-182.044-153.874-211.67zM581.832 184.332c5.084-5.166 10.542-9.958 16.292-14.458-4.5 71.958 21.458 142.75 74.208 195.458 52.752 52.75 123.542 78.666 195.502 74.208-27.584 35.168-65.584 57.042-106.252 66.376-54.75-69.5-135.208-113.25-223.916-120.374-24.542-67.918-10.166-146.876 44.166-201.21zM800 896c-34.25 0-65.832-11-91.876-29.334-46.958 56.584-116.876 93.334-196.124 93.334-79.25 0-149.168-36.75-196.124-93.334-26 18.334-57.624 29.334-91.876 29.334-88.376 0-160-71.624-160-159.998 0-88.376 71.624-160 160-160 21.624 0 42.124 4.376 60.876 12.124 40.376-78.71 119.5-133.792 212.624-139.086 4.876-0.29 9.624-1.042 14.5-1.042 25.832 0 50.624 4.042 74 11.166 31.582 9.668 60.376 25.416 85.376 45.708 23.876 19.376 43.876 43.124 59.624 69.792 2.666 4.5 5.668 8.75 8.082 13.458 18.792-7.75 39.336-12.124 60.918-12.124 88.376 0 160 71.624 160 160s-71.624 160.002-160 160.002z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "cloud", + "night", + "weather" + ], + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 8, + "order": 233, + "prevSize": 32, + "code": 58996, + "name": "cloud2" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 13 + }, + { + "icon": { + "paths": [ + "M512 190c17.666 0 32-14.334 32-32v-64c0-17.666-14.334-32-32-32s-32 14.334-32 32v64c0 17.666 14.334 32 32 32zM760.876 274.334l45.25-45.25c12.498-12.5 12.498-32.75 0-45.25-12.5-12.5-32.75-12.5-45.25 0l-45.25 45.25c-12.5 12.5-12.5 32.75 0 45.25s32.75 12.5 45.25 0zM128 510h64c17.666 0 32-14.334 32-32s-14.334-32-32-32h-64c-17.666 0-32 14.334-32 32s14.334 32 32 32zM800 478c0 17.666 14.334 32 32 32h64c17.666 0 32-14.334 32-32s-14.334-32-32-32h-64c-17.666 0-32 14.334-32 32zM263.082 274.334c12.502 12.5 32.752 12.5 45.25 0 12.502-12.5 12.502-32.75 0-45.25l-45.25-45.25c-12.5-12.5-32.748-12.5-45.25 0-12.5 12.5-12.5 32.75 0 45.25l45.25 45.25zM291.25 510h64c-2.124-10.334-3.25-21.042-3.25-32 0-88.376 71.624-160 160-160 88.376 0 160 71.624 160 160 0 10.958-1.124 21.666-3.25 32h64c1.584-10.542 3.25-21.042 3.25-32 0-123.5-100.5-224-224-224s-224 100.5-224 224c0 10.958 1.75 21.458 3.25 32zM896 574h-768c-17.666 0-32 14.334-32 32s14.334 32 32 32h768c17.666 0 32-14.334 32-32s-14.334-32-32-32zM896 702h-768c-17.666 0-32 14.334-32 32s14.334 32 32 32h768c17.666 0 32-14.334 32-32s-14.334-32-32-32zM896 830h-768c-17.666 0-32 14.334-32 32s14.334 32 32 32h768c17.666 0 32-14.334 32-32s-14.334-32-32-32z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "weather" + ], + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 9, + "order": 234, + "prevSize": 32, + "code": 58997, + "name": "weather" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 14 + }, + { + "icon": { + "paths": [ + "M128 638.002h768c17.666 0 32-14.334 32-32s-14.334-32-32-32h-768c-17.666 0-32 14.334-32 32s14.334 32 32 32zM896 702.002h-768c-17.666 0-32 14.334-32 32s14.334 32 32 32h768c17.666 0 32-14.334 32-32s-14.334-32-32-32zM896 830.002h-768c-17.666 0-32 14.334-32 32s14.334 32 32 32h768c17.666 0 32-14.334 32-32s-14.334-32-32-32zM410.084 510c-0.666-0.666-1.502-1.084-2.166-1.75-74.876-74.876-74.876-196.668 0-271.584 5.124-5.084 10.54-9.916 16.292-14.416-4.502 71.916 21.458 142.75 74.208 195.458 52.748 52.792 123.58 78.666 195.498 74.166-5.334 6.792-11.748 12.25-17.792 18.124h83.042c10.084-16.084 18.5-33.5 25.166-52.126 4.042-11.708 1.084-24.666-7.666-33.334-8.582-8.708-21.584-11.708-33.248-7.582-70.752 24.998-147.292 7.958-199.75-44.5-52.502-52.5-69.584-129.042-44.502-199.792 4.166-11.624 1.166-24.542-7.582-33.292-8.668-8.708-21.626-11.666-33.25-7.542-37.042 13.084-69.25 33.208-95.666 59.584-86.418 86.42-97.71 219.544-34.544 318.586h81.96z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "weather" + ], + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 10, + "order": 235, + "prevSize": 32, + "code": 58998, + "name": "weather2" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 15 + }, + { + "icon": { + "paths": [ + "M67.208 512c-2.084-10.334-3.208-21.042-3.208-32 0-88.376 71.624-160 160-160 21.624 0 42.124 4.416 60.876 12.166 42.458-82.832 127.706-140.166 227.124-140.166s184.668 57.334 227.082 140.166c18.794-7.75 39.336-12.166 60.918-12.166 88.376 0 160 71.624 160 160 0 10.958-1.124 21.666-3.25 32h64c1.584-10.542 3.25-21.042 3.25-32 0-123.5-100.5-224-224-224-10.624 0-21.124 0.75-31.584 2.25-59.748-81.416-154.040-130.25-256.416-130.25s-196.624 48.834-256.416 130.25c-10.46-1.5-20.96-2.25-31.584-2.25-123.5 0-224 100.5-224 224 0 10.958 1.708 21.458 3.25 32h63.958zM992 576h-960c-17.666 0-32 14.334-32 32s14.334 32 32 32h960c17.666 0 32-14.334 32-32s-14.334-32-32-32zM992 704h-960c-17.666 0-32 14.334-32 32s14.334 32 32 32h960c17.666 0 32-14.334 32-32s-14.334-32-32-32zM992 832h-960c-17.666 0-32 14.334-32 32s14.334 32 32 32h960c17.666 0 32-14.334 32-32s-14.334-32-32-32z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "weather", + "cloud" + ], + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 11, + "order": 236, + "prevSize": 32, + "code": 58999, + "name": "weather3" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 16 + }, + { + "icon": { + "paths": [ + "M224 320h576c17.666 0 32-14.334 32-32s-14.334-32-32-32h-576c-17.666 0-32 14.334-32 32s14.334 32 32 32zM800 384h-576c-17.666 0-32 14.334-32 32s14.334 32 32 32h576c17.666 0 32-14.334 32-32s-14.334-32-32-32zM800 512h-576c-17.666 0-32 14.334-32 32s14.334 32 32 32h576c17.666 0 32-14.334 32-32s-14.334-32-32-32zM800 640h-576c-17.666 0-32 14.334-32 32s14.334 32 32 32h576c17.666 0 32-14.334 32-32s-14.334-32-32-32z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "lines", + "list", + "weather" + ], + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 12, + "order": 237, + "prevSize": 32, + "code": 59000, + "name": "lines" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 17 + }, + { + "icon": { + "paths": [ + "M800 320c-10.624 0-21.124 0.75-31.584 2.25-59.748-81.416-154.040-130.25-256.416-130.25s-196.624 48.834-256.416 130.25c-10.46-1.5-20.96-2.25-31.584-2.25-123.5 0-224 100.5-224 224 0 123.5 100.5 224 224 224 27.376 0 54.168-5 79.418-14.666 57.914 50.5 131.582 78.666 208.582 78.666 77.084 0 150.666-28.166 208.582-78.666 25.25 9.666 52.042 14.666 79.418 14.666 123.5 0 224-100.5 224-224 0-123.5-100.5-224-224-224zM800 704c-34.25 0-65.832-11-91.876-29.334-46.956 56.582-116.876 93.334-196.124 93.334-79.25 0-149.168-36.752-196.124-93.334-26 18.334-57.626 29.334-91.876 29.334-88.376 0-160-71.624-160-160s71.624-160 160-160c21.624 0 42.124 4.416 60.876 12.166 42.458-82.832 127.706-140.166 227.124-140.166s184.668 57.334 227.082 140.166c18.794-7.75 39.336-12.166 60.918-12.166 88.376 0 160 71.624 160 160s-71.624 160-160 160z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "cloud", + "weather" + ], + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 13, + "order": 238, + "prevSize": 32, + "code": 59001, + "name": "cloud3" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 18 + }, + { + "icon": { + "paths": [ + "M800 128c-10.624 0-21.124 0.75-31.584 2.25-59.748-81.416-154.040-130.25-256.416-130.25-102.376 0-196.624 48.834-256.416 130.25-10.46-1.5-20.96-2.25-31.584-2.25-123.5 0-224 100.5-224 224s100.5 224 224 224c27.376 0 54.168-5 79.418-14.666 43.082 37.542 94.832 62.582 150.208 73.042l-69.626 69.624 64 64-64 192 192-192-64-64 22-65.998c68.916-4.876 134.25-31.086 186.582-76.668 25.25 9.666 52.042 14.666 79.418 14.666 123.5 0 224-100.5 224-224s-100.5-224-224-224zM800 512c-34.25 0-65.832-11-91.876-29.334-37.876 45.666-91.124 77.25-151.75 88.208l-44.374 5.126c-79.25 0-149.168-36.75-196.124-93.334-26 18.334-57.626 29.334-91.876 29.334-88.376 0-160-71.624-160-160s71.624-160 160-160c21.624 0 42.124 4.416 60.876 12.166 42.458-82.832 127.706-140.166 227.124-140.166s184.668 57.334 227.082 140.166c18.794-7.75 39.336-12.166 60.918-12.166 88.376 0 160 71.624 160 160s-71.624 160-160 160z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "lightning", + "weather", + "cloud" + ], + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 14, + "order": 239, + "prevSize": 32, + "code": 59002, + "name": "lightning" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 19 + }, + { + "icon": { + "paths": [ + "M800 128c-10.624 0-21.124 0.75-31.584 2.25-59.748-81.416-154.040-130.25-256.416-130.25-102.376 0-196.624 48.834-256.416 130.25-10.46-1.5-20.96-2.25-31.584-2.25-123.5 0-224 100.5-224 224s100.5 224 224 224c27.376 0 54.168-5 79.418-14.666 24.582 21.416 52.5 37.916 81.832 50.832l49.832-49.748c-46.916-15.252-88.332-42.542-119.208-79.752-25.998 18.334-57.624 29.334-91.874 29.334-88.376 0-160-71.624-160-160s71.624-160 160-160c21.624 0 42.124 4.416 60.876 12.166 42.458-82.832 127.706-140.166 227.124-140.166s184.668 57.334 227.082 140.166c18.794-7.75 39.336-12.166 60.918-12.166 88.376 0 160 71.624 160 160s-71.624 160-160 160c-34.25 0-65.832-11-91.876-29.334-20.75 25.042-46.624 45.334-75.25 61.168l-26.874 80.666c41.75-13.124 81-33.876 114.582-63.166 25.25 9.666 52.042 14.666 79.418 14.666 123.5 0 224-100.5 224-224s-100.5-224-224-224zM384 704l64 64-64 192 192-192-64-64 64-192-192 192z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "lightning", + "weather", + "cloud" + ], + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 15, + "order": 240, + "prevSize": 32, + "code": 59003, + "name": "lightning2" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 20 + }, + { + "icon": { + "paths": [ + "M800 192c-10.624 0-21.124 0.75-31.584 2.25-59.748-81.416-154.040-130.25-256.416-130.25s-196.624 48.834-256.416 130.25c-10.46-1.5-20.96-2.25-31.584-2.25-123.5 0-224 100.5-224 224 0 123.5 100.5 224 224 224 27.376 0 54.168-5 79.418-14.666 57.914 50.5 131.582 78.666 208.582 78.666 77.084 0 150.666-28.166 208.582-78.666 25.25 9.666 52.042 14.666 79.418 14.666 123.5 0 224-100.5 224-224 0-123.5-100.5-224-224-224zM800 576c-34.25 0-65.832-11-91.876-29.334-46.956 56.584-116.876 93.334-196.124 93.334-79.25 0-149.168-36.75-196.124-93.334-26 18.334-57.626 29.334-91.876 29.334-88.376 0-160-71.624-160-160s71.624-160 160-160c21.624 0 42.124 4.416 60.876 12.166 42.458-82.832 127.706-140.166 227.124-140.166s184.668 57.334 227.082 140.166c18.794-7.75 39.336-12.166 60.918-12.166 88.376 0 160 71.624 160 160s-71.624 160-160 160zM448 896c0 35.376 28.624 64 64 64s64-28.624 64-64-64-128-64-128-64 92.624-64 128z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "rainy", + "weather", + "cloud" + ], + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 16, + "order": 241, + "prevSize": 32, + "code": 59004, + "name": "rainy" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 21 + }, + { + "icon": { + "paths": [ + "M800 128c-10.624 0-21.124 0.75-31.584 2.25-59.748-81.416-154.040-130.25-256.416-130.25s-196.624 48.834-256.416 130.25c-10.46-1.5-20.96-2.25-31.584-2.25-123.5 0-224 100.5-224 224s100.5 224 224 224c27.376 0 54.168-5 79.418-14.666 57.914 50.5 131.582 78.666 208.582 78.666 77.084 0 150.666-28.166 208.582-78.666 25.25 9.666 52.042 14.666 79.418 14.666 123.5 0 224-100.5 224-224s-100.5-224-224-224zM800 512c-34.25 0-65.832-11-91.876-29.334-46.956 56.584-116.876 93.334-196.124 93.334-79.25 0-149.168-36.75-196.124-93.334-26 18.334-57.626 29.334-91.876 29.334-88.376 0-160-71.624-160-160s71.624-160 160-160c21.624 0 42.124 4.416 60.876 12.166 42.458-82.832 127.706-140.166 227.124-140.166s184.668 57.334 227.082 140.166c18.794-7.75 39.336-12.166 60.918-12.166 88.376 0 160 71.624 160 160s-71.624 160-160 160zM450 960c0 35.376 28.624 64 64 64s64-28.624 64-64-64-128-64-128-64 92.624-64 128zM704 896c0 35.376 28.624 64 64 64s64-28.624 64-64-64-128-64-128-64 92.624-64 128zM192 768c0 35.376 28.624 64 64 64s64-28.624 64-64-64-128-64-128-64 92.624-64 128z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "rainy", + "weather", + "cloud" + ], + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 17, + "order": 242, + "prevSize": 32, + "code": 59005, + "name": "rainy2" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 22 + }, + { + "icon": { + "paths": [ + "M834.084 332.166c-47.958-49.084-114.25-77.542-183.46-77.542-69.124 0-135.376 28.458-183.33 77.542-105.626 4.918-190.042 92.376-190.042 199.168 0 109.916 89.418 199.332 199.376 199.332 11.668 0 23.208-1 34.542-2.998 41.458 27.082 89.834 41.708 139.458 41.708 49.708 0 98.126-14.626 139.544-41.708 11.414 1.998 22.916 2.998 34.582 2.998 109.874 0 199.25-89.416 199.25-199.332-0.004-106.792-84.38-194.25-189.92-199.168zM824.75 666.666c-16.624 0-32.75-2.998-48-8.834-35 30.5-79.5 47.544-126.126 47.544-46.498 0-90.998-17.044-125.998-47.544-15.25 5.836-31.5 8.834-48 8.834-74.624 0-135.376-60.75-135.376-135.332 0-74.626 60.75-135.376 135.376-135.376 6.376 0 12.75 0.458 19.042 1.376 36.208-49.166 93.082-78.708 154.956-78.708 61.876 0 118.876 29.542 155.002 78.708 6.25-0.916 12.624-1.376 19.124-1.376 74.624 0 135.25 60.75 135.25 135.376 0 74.582-60.624 135.332-135.25 135.332zM288 704h-256c-17.666 0-32 14.334-32 32s14.334 32 32 32h256c17.666 0 32-14.334 32-32s-14.334-32-32-32zM32 640h128c17.666 0 32-14.334 32-32s-14.334-32-32-32h-128c-17.666 0-32 14.334-32 32s14.334 32 32 32zM96 512h128c17.666 0 32-14.334 32-32s-14.334-32-32-32h-128c-17.666 0-32 14.334-32 32s14.334 32 32 32z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "windy", + "weather", + "cloud" + ], + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 18, + "order": 243, + "prevSize": 32, + "code": 59006, + "name": "windy2" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 23 + }, + { + "icon": { + "paths": [ + "M834.084 141.584c-47.96-49.126-114.25-77.584-183.46-77.584-69.124 0-135.376 28.458-183.33 77.584-105.626 4.876-190.042 92.334-190.042 199.084 0 109.956 89.418 199.416 199.376 199.416 11.668 0 23.208-1.002 34.542-3 41.458 27.042 89.834 41.666 139.458 41.666 49.708 0 98.126-14.624 139.544-41.666 11.414 1.998 22.916 3 34.582 3 109.876 0 199.25-89.46 199.25-199.416-0.004-106.752-84.38-194.252-189.92-199.084zM824.75 476.084c-16.624 0-32.75-3-48-8.916-35 30.5-79.5 47.584-126.126 47.584-46.498 0-90.998-17.084-125.998-47.584-15.25 5.918-31.5 8.916-48 8.916-74.624 0-135.376-60.75-135.376-135.416 0-74.584 60.75-135.334 135.376-135.334 6.376 0 12.75 0.5 19.042 1.376 36.208-49.168 93.082-78.71 154.956-78.71 61.876 0 118.876 29.542 155.002 78.708 6.25-0.876 12.624-1.376 19.124-1.376 74.624 0 135.25 60.75 135.25 135.334 0 74.668-60.624 135.418-135.25 135.418zM288 513.376h-256c-17.666 0-32 14.292-32 32 0 17.706 14.334 32 32 32h256c17.666 0 32-14.294 32-32 0-17.708-14.334-32-32-32zM32 449.376h128c17.666 0 32-14.292 32-32s-14.334-32-32-32h-128c-17.666 0-32 14.292-32 32s14.334 32 32 32zM96 321.376h128c17.666 0 32-14.292 32-32s-14.334-32-32-32h-128c-17.666 0-32 14.292-32 32s14.334 32 32 32zM448 768c0 35.376 28.624 64 64 64s64-28.624 64-64-64-128-64-128-64 92.624-64 128zM704 896c0 35.376 28.624 64 64 64s64-28.624 64-64-64-128-64-128-64 92.624-64 128z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "windy", + "rainy", + "weather", + "cloud" + ], + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 19, + "order": 244, + "prevSize": 32, + "code": 59007, + "name": "windy3" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 24 + }, + { + "icon": { + "paths": [ + "M652.084 887.376l-36-20.752c1.084-6.248 1.916-12.622 1.916-19.248 0-6.624-0.832-13-2-19.25l36.084-20.792c16.834-9.834 22.582-31.458 12.916-48.208-9.752-16.958-31.334-22.75-48.25-13l-36.376 21c-9.752-8.292-20.75-14.792-33-19.208v-41.792c0-19.542-15.876-35.376-35.376-35.376s-35.332 15.834-35.332 35.376v41.75c-12.252 4.376-23.292 10.958-33.042 19.25l-36.292-21c-16.958-9.75-38.584-4-48.334 12.958-9.75 16.834-3.876 38.5 13 48.252l35.918 20.75c-1.168 6.292-1.918 12.668-1.918 19.292 0 6.626 0.75 13 1.918 19.248l-35.916 20.75c-16.918 9.75-22.75 31.5-13 48.376s31.376 22.624 48.25 12.876l36.334-20.876c9.748 8.25 20.792 14.75 33.084 19.124v41.876c0 19.498 15.832 35.248 35.332 35.248s35.376-15.75 35.376-35.248v-41.876c12.25-4.376 23.376-10.876 33.042-19.25l36.334 21c16.916 9.75 38.498 4 48.25-12.876 9.748-16.874 3.998-38.5-12.918-48.374zM512 882.75c-19.5 0-35.376-15.876-35.376-35.376s15.876-35.292 35.376-35.292 35.334 15.792 35.334 35.292-15.834 35.376-35.334 35.376zM800 128c-10.624 0-21.124 0.75-31.584 2.25-59.748-81.416-154.040-130.25-256.416-130.25s-196.624 48.834-256.416 130.25c-10.46-1.5-20.96-2.25-31.584-2.25-123.5 0-224 100.5-224 224s100.5 224 224 224c27.376 0 54.168-5 79.418-14.666 57.914 50.5 131.582 78.666 208.582 78.666 77.084 0 150.666-28.166 208.582-78.666 25.25 9.666 52.042 14.666 79.418 14.666 123.5 0 224-100.5 224-224s-100.5-224-224-224zM800 512c-34.25 0-65.832-11-91.876-29.334-46.956 56.584-116.876 93.334-196.124 93.334-79.25 0-149.168-36.75-196.124-93.334-26 18.334-57.626 29.334-91.876 29.334-88.376 0-160-71.624-160-160s71.624-160 160-160c21.624 0 42.124 4.416 60.876 12.166 42.458-82.832 127.706-140.166 227.124-140.166s184.668 57.334 227.082 140.166c18.794-7.75 39.336-12.166 60.918-12.166 88.376 0 160 71.624 160 160s-71.624 160-160 160z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "snowy", + "weather", + "cloud" + ], + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 20, + "order": 245, + "prevSize": 32, + "code": 59008, + "name": "snowy" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 25 + }, + { + "icon": { + "paths": [ + "M652.084 695.376l-36-20.75c1.084-6.25 1.916-12.624 1.916-19.25 0-6.624-0.832-13-2-19.25l36.084-20.792c16.834-9.834 22.582-31.458 12.916-48.208-9.752-16.958-31.334-22.75-48.25-13l-36.376 21c-9.754-8.292-20.75-14.792-33-19.208v-41.792c0-19.542-15.876-35.376-35.376-35.376s-35.332 15.834-35.332 35.376v41.75c-12.252 4.376-23.292 10.958-33.042 19.25l-36.292-21c-16.958-9.75-38.584-4-48.334 12.958-9.75 16.834-3.876 38.5 13 48.252l35.918 20.75c-1.168 6.292-1.918 12.668-1.918 19.292s0.75 13 1.918 19.246l-35.916 20.752c-16.918 9.75-22.75 31.5-13 48.376s31.376 22.624 48.25 12.876l36.334-20.876c9.748 8.25 20.792 14.75 33.084 19.124v41.876c0 19.498 15.832 35.248 35.332 35.248s35.376-15.75 35.376-35.248v-41.876c12.25-4.376 23.376-10.876 33.042-19.25l36.334 21c16.916 9.75 38.498 4 48.25-12.876 9.748-16.874 3.998-38.5-12.918-48.374zM512 690.75c-19.5 0-35.376-15.876-35.376-35.376s15.876-35.292 35.376-35.292 35.334 15.792 35.334 35.292-15.834 35.376-35.334 35.376zM800 128c-10.624 0-21.124 0.75-31.584 2.25-59.748-81.416-154.040-130.25-256.416-130.25-102.376 0-196.624 48.834-256.416 130.25-10.46-1.5-20.96-2.25-31.584-2.25-123.5 0-224 100.5-224 224s100.5 224 224 224c23.624 0 46.668-4.416 68.876-11.668 2.124-10.164 5.458-20.082 10.75-29.29 7.876-13.708 19.124-24.624 32-33.004-6.624-6.458-13.876-12.208-19.75-19.376-26 18.338-57.626 29.338-91.876 29.338-88.376 0-160-71.624-160-160 0-88.376 71.624-160 160-160 21.624 0 42.124 4.416 60.876 12.166 42.458-82.832 127.706-140.166 227.124-140.166s184.668 57.334 227.082 140.166c18.794-7.75 39.336-12.166 60.918-12.166 88.376 0 160 71.624 160 160 0 88.376-71.624 160-160 160-34.25 0-65.832-11-91.876-29.334-5.876 7.166-13.208 12.918-19.792 19.376 12.918 8.414 24.25 19.376 32.084 33.124 5.416 9.292 8.708 19.168 10.832 29.166 22.128 7.252 45.128 11.668 68.752 11.668 123.5 0 224-100.5 224-224s-100.5-224-224-224z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "snowy", + "weather", + "cloud" + ], + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 21, + "order": 246, + "prevSize": 32, + "code": 59009, + "name": "snowy2" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 26 + }, + { + "icon": { + "paths": [ + "M652.084 887.376l-36-20.752c1.084-6.248 1.916-12.622 1.916-19.248 0-6.624-0.832-13-2-19.25l36.084-20.792c16.834-9.834 22.582-31.458 12.916-48.208-9.752-16.958-31.334-22.75-48.25-13l-36.376 21c-9.752-8.292-20.75-14.792-33-19.208v-41.792c0-19.542-15.876-35.376-35.376-35.376s-35.332 15.834-35.332 35.376v41.75c-12.252 4.376-23.292 10.958-33.042 19.25l-36.292-21c-16.958-9.75-38.584-4-48.334 12.958-9.75 16.834-3.876 38.5 13 48.252l35.918 20.75c-1.168 6.292-1.918 12.668-1.918 19.292 0 6.626 0.75 13 1.918 19.248l-35.916 20.75c-16.918 9.75-22.75 31.5-13 48.376s31.376 22.624 48.25 12.876l36.334-20.876c9.748 8.25 20.792 14.75 33.084 19.124v41.876c0 19.498 15.832 35.248 35.332 35.248s35.376-15.75 35.376-35.248v-41.876c12.25-4.376 23.376-10.876 33.042-19.25l36.334 21c16.916 9.75 38.498 4 48.25-12.876 9.748-16.874 3.998-38.5-12.918-48.374zM512 882.75c-19.5 0-35.376-15.876-35.376-35.376s15.876-35.292 35.376-35.292 35.334 15.792 35.334 35.292-15.834 35.376-35.334 35.376zM948.332 792.5l-24.166-6.416c-0.582-7.666-2.416-14.958-5.792-21.958l17.542-17.542c8.25-8.25 8.208-21.584 0-29.708-8.166-8.208-21.416-8.25-29.666 0l-17.582 17.5c-6.918-3.25-14.292-5.124-21.918-5.75l-6.418-24.124c-2.998-11.166-14.5-17.876-25.748-14.876-11.208 3.042-17.75 14.542-14.834 25.75l6.418 23.792c-3.168 2.168-6.168 4.584-9 7.334-2.75 2.834-5.084 5.832-7.252 8.918l-23.792-6.418c-11.208-2.998-22.792 3.752-25.792 14.876-2.998 11.25 3.752 22.708 14.834 25.75l24 6.458c0.668 7.542 2.584 14.916 5.958 21.918l-17.624 17.624c-8.166 8.208-8.124 21.458 0.084 29.624 8.166 8.166 21.416 8.25 29.584 0.084l17.664-17.666c6.918 3.414 14.336 5.332 22.002 5.914l6.332 24.042c3.084 11.208 14.5 17.876 25.752 14.876 11.166-3 17.914-14.498 14.916-25.834l-6.418-23.792c3-2.124 6.084-4.5 8.918-7.25 2.75-2.792 5.084-5.876 7.248-8.958l23.834 6.418c11.208 3 22.75-3.708 25.708-14.834 3-11.17-3.624-22.668-14.792-25.752zM876.624 805.876c-8.25 8.25-21.542 8.208-29.75 0-8.124-8.124-8.208-21.458 0-29.708 8.208-8.166 21.542-8.166 29.75 0 8.126 8.208 8.126 21.582 0 29.708zM237.876 685l-23.75 6.376c-2.208-3-4.5-6.042-7.292-8.876-2.832-2.75-5.832-5.124-8.958-7.25l6.376-23.876c3-11.208-3.668-22.75-14.75-25.708-11.25-3-22.75 3.668-25.75 14.834l-6.5 24.124c-7.624 0.624-14.916 2.5-21.876 5.792l-17.624-17.542c-8.25-8.25-21.5-8.208-29.668 0-8.208 8.208-8.208 21.5 0 29.708l17.542 17.542c-3.292 7-5.208 14.376-5.792 21.958l-24.084 6.416c-11.25 3.084-17.918 14.5-14.916 25.75 3.042 11.166 14.542 17.75 25.792 14.834l23.75-6.46c2.124 3.208 4.5 6.21 7.376 9.002 2.75 2.75 5.75 5.208 8.876 7.25l-6.376 23.792c-3 11.25 3.668 22.834 14.832 25.834 11.252 3 22.668-3.666 25.668-14.876l6.5-24c7.624-0.624 15-2.542 22-5.876l17.582 17.584c8.168 8.248 21.418 8.082 29.668-0.084 8.124-8.124 8.25-21.416 0-29.624l-17.624-17.624c3.376-6.92 5.376-14.376 5.876-22.002l24.124-6.376c11.124-3.042 17.792-14.5 14.792-25.75-3.002-11.12-14.502-17.788-25.794-14.872zM177.124 741.916c-8.208 8.208-21.5 8.208-29.75 0-8.124-8.166-8.124-21.542 0-29.666 8.25-8.166 21.542-8.166 29.75 0s8.126 21.5 0 29.666zM1024 352c0-123.5-100.5-224-224-224-10.624 0-21.124 0.75-31.584 2.25-59.748-81.416-154.040-130.25-256.416-130.25s-196.624 48.834-256.416 130.25c-10.46-1.5-20.96-2.25-31.584-2.25-123.5 0-224 100.5-224 224s100.5 224 224 224c27.376 0 54.168-5 79.418-14.666 57.914 50.5 131.582 78.666 208.582 78.666 77.084 0 150.666-28.166 208.582-78.666 25.25 9.666 52.042 14.666 79.418 14.666 123.5 0 224-100.5 224-224zM708.124 482.666c-46.956 56.584-116.876 93.334-196.124 93.334-79.25 0-149.168-36.75-196.124-93.334-26 18.334-57.626 29.334-91.876 29.334-88.376 0-160-71.624-160-160s71.624-160 160-160c21.624 0 42.124 4.416 60.876 12.166 42.458-82.832 127.706-140.166 227.124-140.166s184.668 57.334 227.082 140.166c18.794-7.75 39.336-12.166 60.918-12.166 88.376 0 160 71.624 160 160s-71.624 160-160 160c-34.25 0-65.832-11-91.876-29.334z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "snowy", + "weather", + "cloud" + ], + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 22, + "order": 247, + "prevSize": 32, + "code": 59010, + "name": "snowy3" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 27 + }, + { + "icon": { + "paths": [ + "M800 128c-10.624 0-21.124 0.75-31.584 2.25-59.748-81.416-154.040-130.25-256.416-130.25s-196.624 48.834-256.416 130.25c-10.46-1.5-20.96-2.25-31.584-2.25-123.5 0-224 100.5-224 224s100.5 224 224 224c27.376 0 54.168-5 79.418-14.666 57.914 50.5 131.582 78.666 208.582 78.666 77.084 0 150.666-28.166 208.582-78.666 25.25 9.666 52.042 14.666 79.418 14.666 123.5 0 224-100.5 224-224s-100.5-224-224-224zM800 512c-19.418 0-38.418-3.5-56.5-10.416l-36-13.834-29 25.334c-46.5 40.582-105.624 62.916-166.5 62.916s-120-22.334-166.5-62.916l-29-25.334-36 13.834c-18 6.916-37.082 10.416-56.5 10.416-88.25 0-160-71.792-160-160s71.75-160 160-160c7.584 0 15 0.542 22.5 1.584l37.916 5.5 22.708-30.916c48.626-66.21 123.294-104.168 204.876-104.168 81.624 0 156.25 37.916 204.834 104.126l22.75 30.958 37.998-5.5c7.418-1.042 14.834-1.584 22.418-1.584 88.25 0 160 71.792 160 160s-71.75 160-160 160zM192 640c-35.376 0-64 28.624-64 64s28.624 64 64 64 64-28.624 64-64-28.624-64-64-64zM512 704c-35.376 0-64 28.624-64 64s28.624 64 64 64 64-28.624 64-64-28.624-64-64-64zM832 640c-35.376 0-64 28.624-64 64s28.624 64 64 64 64-28.624 64-64-28.624-64-64-64zM704 896c-35.376 0-64 28.624-64 64s28.624 64 64 64 64-28.624 64-64-28.624-64-64-64zM320 896c-35.376 0-64 28.624-64 64s28.624 64 64 64 64-28.624 64-64-28.624-64-64-64z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "weather", + "cloud" + ], + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 23, + "order": 248, + "prevSize": 32, + "code": 59011, + "name": "weather4" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 28 + }, + { + "icon": { + "paths": [ + "M1024 480.002c0-98.334-80-178.292-178.334-178.292-4.792 0-9.542 0.208-14.292 0.582-46.25-57.708-115.958-91.956-191.376-91.956-75.376 0-145.124 34.248-191.376 91.958-4.75-0.376-9.542-0.582-14.376-0.582-98.246-0.002-178.246 79.956-178.246 178.29 0 10.292 1.376 20.208 3 30.084-1.084 1.416-2.376 2.708-3.416 4.166-10.458-1.5-20.958-2.25-31.584-2.25-123.5 0-224 100.498-224 223.998 0 123.502 100.5 224 224 224 27.376 0 54.168-5 79.418-14.666 57.914 50.5 131.582 78.666 208.582 78.666 77.084 0 150.666-28.166 208.582-78.666 25.25 9.666 52.042 14.666 79.418 14.666 123.5 0 224-100.498 224-224 0-51.376-18.084-98.166-47.332-135.998 29.164-31.792 47.332-73.666 47.332-120zM800 896c-34.25 0-65.832-10.998-91.876-29.332-46.958 56.582-116.876 93.332-196.124 93.332-79.25 0-149.168-36.75-196.124-93.332-26 18.334-57.624 29.332-91.876 29.332-88.376 0-160-71.624-160-160s71.624-159.998 160-159.998c21.624 0 42.124 4.376 60.876 12.124 1.124-2.124 2.5-4 3.624-6.042 11.25-20.542 25.124-39.376 41.332-56.084 46.168-47.832 110.334-78 182.168-78 99.418 0 184.668 57.332 227.082 140.124 11.292-4.624 23.336-7.626 35.75-9.624l25.168-2.5c24.668 0 47.75 6.084 68.624 16 22.624 10.832 42.042 26.748 57.292 46.376 21 27.042 34.084 60.708 34.084 97.624 0 88.376-71.624 160-160 160zM931.124 555.25c-36.958-26.916-82-43.248-131.124-43.248-10.624 0-21.124 0.75-31.584 2.25-59.748-81.416-154.042-130.25-256.416-130.25-68.25 0-132.624 22.084-185.876 60.668 14.958-45.708 57.458-78.958 108.124-78.958 15.5 0 30.124 3.124 43.5 8.664 30.376-59.124 91.25-100.040 162.25-100.040s131.916 40.914 162.168 100.040c13.458-5.54 28.166-8.664 43.498-8.664 63.168 0 114.334 51.166 114.334 114.292 0.002 28.956-11.122 55.080-28.874 75.246z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "cloudy", + "weather", + "clouds" + ], + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 24, + "order": 249, + "prevSize": 32, + "code": 59012, + "name": "cloudy2" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 29 + }, + { + "icon": { + "paths": [ + "M1024 269.666c0-98.292-80-178.248-178.334-178.248-4.792 0-9.542 0.166-14.292 0.54-46.25-57.666-115.956-91.958-191.374-91.958-75.376 0-145.124 34.292-191.376 91.958-4.75-0.374-9.542-0.54-14.376-0.54-98.248 0-178.248 79.958-178.248 178.248 0 10.292 1.376 20.25 3 30.084-1.084 1.416-2.376 2.708-3.416 4.166-10.458-1.5-20.958-2.25-31.584-2.25-123.5 0-224 100.5-224 224 0 123.502 100.5 224 224 224 27.376 0 54.168-4.998 79.418-14.666 36.708 32 80.208 53.876 126.414 66.416l-45.832 30.584 64 64-64 128 192-128-64-64 9.624-19.166c73.5-2.25 143.5-29.458 198.958-77.834 25.25 9.668 52.042 14.666 79.418 14.666 123.5 0 224-100.498 224-224 0-51.332-18.084-98.166-47.332-136 29.164-31.75 47.332-73.624 47.332-120zM800 685.666c-34.25 0-65.832-11-91.876-29.292-38 45.792-91.5 77.458-152.458 88.25l-47.542 4.624c-77.624-1.248-146.124-37.248-192.248-92.872-26 18.292-57.624 29.292-91.876 29.292-88.376 0-160-71.582-160-160 0-88.334 71.624-160 160-160 21.624 0 42.124 4.418 60.876 12.166 1.124-2.166 2.5-4 3.624-6.084 11.25-20.542 25.124-39.334 41.332-56.084 46.168-47.792 110.334-78 182.168-78 99.418 0 184.668 57.334 227.082 140.166 11.292-4.666 23.336-7.666 35.75-9.666l25.168-2.5c24.668 0 47.75 6.084 68.624 16 22.624 10.834 42.042 26.75 57.292 46.416 21 27.042 34.084 60.668 34.084 97.584 0 88.418-71.624 160-160 160zM931.124 344.916c-36.958-26.876-82-43.25-131.124-43.25-10.624 0-21.124 0.75-31.584 2.25-59.748-81.374-154.040-130.25-256.416-130.25-68.25 0-132.624 22.124-185.876 60.708 14.958-45.706 57.458-78.956 108.124-78.956 15.5 0 30.124 3.124 43.5 8.666 30.376-59.168 91.252-100.084 162.252-100.084s131.916 40.916 162.168 100.084c13.458-5.542 28.166-8.666 43.498-8.666 63.168 0 114.334 51.166 114.334 114.248 0 29-11.124 55.126-28.876 75.25z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "cloud", + "lightning", + "weather" + ], + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 25, + "order": 250, + "prevSize": 32, + "code": 59013, + "name": "cloud4" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 30 + }, + { + "icon": { + "paths": [ + "M384 768l64 64-64 192 192-192-64-64 64-128-192 128zM1024 269.666c0-98.292-80-178.248-178.334-178.248-4.792 0-9.542 0.166-14.292 0.54-46.25-57.666-115.956-91.958-191.374-91.958-75.376 0-145.124 34.292-191.376 91.958-4.75-0.374-9.542-0.54-14.376-0.54-98.248 0-178.248 79.958-178.248 178.248 0 10.292 1.376 20.25 3 30.084-1.084 1.416-2.376 2.708-3.416 4.166-10.458-1.5-20.958-2.25-31.584-2.25-123.5 0-224 100.5-224 224 0 123.502 100.5 224 224 224 27.376 0 54.168-4.998 79.418-14.666 2.208 1.918 4.832 3.25 7.082 5.124l56.624-37.75c-18.876-13.376-36.5-28.25-51.25-46-26 18.292-57.624 29.292-91.876 29.292-88.376 0-160-71.582-160-160 0-88.334 71.624-160 160-160 21.624 0 42.124 4.418 60.876 12.166 1.124-2.166 2.5-4 3.624-6.084 11.25-20.542 25.124-39.334 41.332-56.084 46.168-47.792 110.334-78 182.168-78 99.418 0 184.668 57.334 227.082 140.166 11.292-4.666 23.336-7.666 35.75-9.666l25.168-2.5c24.668 0 47.75 6.084 68.624 16 22.624 10.834 42.042 26.75 57.292 46.416 21 27.042 34.084 60.668 34.084 97.584 0 88.418-71.624 160-160 160-34.25 0-65.832-11-91.876-29.292-28 33.75-64.876 59.124-106.292 75.124l-11.958 23.876 36.5 36.5c34.124-13.292 66.042-32.376 94.208-56.876 25.25 9.668 52.042 14.666 79.418 14.666 123.5 0 224-100.498 224-224 0-51.332-18.084-98.166-47.332-136 29.166-31.746 47.334-73.62 47.334-119.996zM931.124 344.916c-36.958-26.876-82-43.25-131.124-43.25-10.624 0-21.124 0.75-31.584 2.25-59.748-81.374-154.040-130.25-256.416-130.25-68.25 0-132.624 22.124-185.876 60.708 14.958-45.706 57.458-78.956 108.124-78.956 15.5 0 30.124 3.124 43.5 8.666 30.376-59.168 91.252-100.084 162.252-100.084s131.916 40.916 162.168 100.084c13.458-5.542 28.166-8.666 43.498-8.666 63.168 0 114.334 51.166 114.334 114.248 0 29-11.124 55.126-28.876 75.25z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "lightning", + "clouds", + "weather" + ], + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 26, + "order": 251, + "prevSize": 32, + "code": 59014, + "name": "lightning3" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 31 + }, + { + "icon": { + "paths": [ + "M512 288c-123.5 0-224 100.5-224 224 0 123.498 100.5 224 224 224s224-100.502 224-224c0-123.5-100.5-224-224-224zM512 224c17.666 0 32-14.292 32-32v-64c0-17.666-14.334-32-32-32-17.708 0-32 14.334-32 32v64c0 17.708 14.292 32 32 32zM512 800c-17.708 0-32 14.334-32 32v64c0 17.708 14.292 32 32 32 17.666 0 32-14.292 32-32v-64c0-17.666-14.334-32-32-32zM760.834 308.334l45.25-45.25c12.5-12.5 12.5-32.75 0-45.25-12.502-12.5-32.75-12.5-45.25 0l-45.25 45.25c-12.502 12.5-12.502 32.75 0 45.25 12.5 12.498 32.748 12.498 45.25 0zM263.082 715.708l-45.246 45.25c-12.504 12.5-12.504 32.752 0 45.25 12.498 12.5 32.746 12.5 45.246 0l45.25-45.25c12.502-12.582 12.502-32.75 0-45.25-12.498-12.5-32.748-12.584-45.25 0zM224 512c0-17.666-14.334-32-32-32h-64c-17.708 0-32 14.334-32 32 0 17.708 14.292 32 32 32h64c17.666 0 32-14.292 32-32zM896 480h-64c-17.708 0-32 14.334-32 32 0 17.708 14.292 32 32 32h64c17.666 0 32-14.292 32-32 0-17.666-14.334-32-32-32zM263.042 308.334c12.498 12.5 32.75 12.5 45.25 0 12.498-12.5 12.498-32.75 0-45.25l-45.25-45.25c-12.5-12.5-32.752-12.5-45.25 0-12.5 12.5-12.5 32.75 0 45.25l45.25 45.25zM760.918 715.624c-12.586-12.5-32.752-12.5-45.25 0-12.5 12.498-12.586 32.75 0 45.25l45.25 45.25c12.498 12.498 32.748 12.498 45.25 0 12.498-12.5 12.498-32.752 0-45.25l-45.25-45.25z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "sun", + "weather" + ], + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 27, + "order": 252, + "prevSize": 32, + "code": 59015, + "name": "sun4" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 32 + }, + { + "icon": { + "paths": [ + "M496.164 527.864c-63.040-63.084-79.958-154.21-52.040-233.084-30.5 10.79-59.336 27.666-83.708 52.040-87.502 87.5-87.502 229.334 0 316.79 87.458 87.46 229.25 87.504 316.748 0 24.458-24.372 41.292-53.208 52.042-83.708-78.83 27.918-169.998 11-233.042-52.038z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "moon", + "night", + "weather" + ], + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 28, + "order": 253, + "prevSize": 32, + "code": 59016, + "name": "moon2" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 33 + }, + { + "icon": { + "paths": [ + "M416 128c17.666 0 32-14.334 32-32v-64c0-17.666-14.334-32-32-32s-32 14.334-32 32v64c0 17.666 14.334 32 32 32zM664.876 212.334l45.25-45.25c12.498-12.5 12.498-32.75 0-45.25-12.5-12.5-32.75-12.5-45.25 0l-45.25 45.25c-12.5 12.5-12.5 32.75 0 45.25 12.498 12.5 32.75 12.5 45.25 0zM32 448h64c17.666 0 32-14.334 32-32s-14.334-32-32-32h-64c-17.666 0-32 14.334-32 32s14.334 32 32 32zM704 416c0 17.666 14.334 32 32 32h64c17.666 0 32-14.334 32-32s-14.334-32-32-32h-64c-17.666 0-32 14.334-32 32zM167.082 212.334c12.502 12.5 32.752 12.5 45.25 0 12.502-12.5 12.502-32.75 0-45.25l-45.25-45.25c-12.5-12.5-32.748-12.5-45.25 0-12.5 12.5-12.5 32.75 0 45.25l45.25 45.25zM800 512c-10.624 0-21.124 0.75-31.584 2.25-33.542-45.75-78.248-80.666-128.916-103-2.582-121.25-101.624-219.25-223.5-219.25-123.5 0-224 100.5-224 224 0 34.876 8.668 67.5 23 96.876-119.25 4.874-215 102.748-215 223.124 0 123.5 100.5 224 224 224 27.376 0 54.168-5 79.418-14.666 57.914 50.5 131.582 78.666 208.582 78.666 77.084 0 150.666-28.166 208.582-78.666 25.25 9.666 52.042 14.666 79.418 14.666 123.5 0 224-100.5 224-224s-100.5-224-224-224zM512 384c-91.876 0-177 39.624-236.75 106.5-11.874-22.334-19.25-47.416-19.25-74.5 0-88.376 71.624-160 160-160 79.624 0 145.124 58.334 157.416 134.5-20.040-4-40.498-6.5-61.416-6.5z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "cloudy", + "weather" + ], + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 29, + "order": 254, + "prevSize": 32, + "code": 59017, + "name": "cloudy3" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 34 + }, + { + "icon": { + "paths": [ + "M870.124 524.332c9.75-7.25 19.624-14.374 28.458-23.208 26.416-26.458 46.542-58.666 59.584-95.708 4.166-11.584 1.208-24.584-7.544-33.25-8.708-8.75-21.624-11.708-33.246-7.584-70.792 25-147.376 8-199.792-44.5-52.498-52.5-69.582-129.042-44.498-199.792 4.084-11.624 1.166-24.542-7.584-33.292-8.666-8.666-21.624-11.666-33.25-7.582-37.084 13.166-69.25 33.25-95.668 59.666-67.082 67-87.958 162-64.958 247.584-86.5 11.042-164.25 57-216.042 127.584-10.458-1.5-20.958-2.25-31.584-2.25-123.5 0-224 100.498-224 224 0 123.5 100.5 224 224 224 27.376 0 54.168-5.002 79.418-14.668 57.912 50.5 131.58 78.668 208.58 78.668 77.084 0 150.666-28.168 208.582-78.668 25.25 9.666 52.042 14.668 79.418 14.668 123.5 0 224-100.5 224-224 0.002-98.876-64.832-182.042-153.874-211.668zM581.832 184.334c5.084-5.166 10.542-9.958 16.292-14.458-4.5 71.958 21.458 142.75 74.208 195.458 52.752 52.75 123.542 78.666 195.502 74.208-27.584 35.168-65.584 57.042-106.252 66.376-54.75-69.5-135.208-113.248-223.916-120.374-24.542-67.918-10.166-146.878 44.166-201.21z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "cloud", + "night", + "weather" + ], + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 30, + "order": 255, + "prevSize": 32, + "code": 59018, + "name": "cloud5" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 35 + }, + { + "icon": { + "paths": [ + "M800 320c-10.624 0-21.124 0.75-31.584 2.25-59.748-81.416-154.040-130.25-256.416-130.25s-196.624 48.834-256.416 130.25c-10.46-1.5-20.96-2.25-31.584-2.25-123.5 0-224 100.5-224 224 0 123.5 100.5 224 224 224 27.376 0 54.168-5 79.418-14.666 57.914 50.5 131.582 78.666 208.582 78.666 77.084 0 150.666-28.166 208.582-78.666 25.25 9.666 52.042 14.666 79.418 14.666 123.5 0 224-100.5 224-224 0-123.5-100.5-224-224-224z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "cloud", + "weather" + ], + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 31, + "order": 256, + "prevSize": 32, + "code": 59019, + "name": "cloud6" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 36 + }, + { + "icon": { + "paths": [ + "M800 128c-10.624 0-21.124 0.75-31.584 2.25-59.748-81.416-154.040-130.25-256.416-130.25-102.376 0-196.624 48.834-256.416 130.25-10.46-1.5-20.96-2.25-31.584-2.25-123.5 0-224 100.5-224 224s100.5 224 224 224c27.376 0 54.168-5 79.418-14.666 43.082 37.542 94.832 62.582 150.208 73.042l-69.626 69.624 64 64-64 192 192-192-64-64 22-65.998c68.916-4.876 134.25-31.086 186.582-76.668 25.25 9.666 52.042 14.666 79.418 14.666 123.5 0 224-100.5 224-224s-100.5-224-224-224z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "lightning", + "weather" + ], + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 32, + "order": 257, + "prevSize": 32, + "code": 59020, + "name": "lightning4" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 37 + }, + { + "icon": { + "paths": [ + "M800 192c-10.624 0-21.124 0.75-31.584 2.25-59.748-81.416-154.040-130.25-256.416-130.25s-196.624 48.834-256.416 130.25c-10.46-1.5-20.96-2.25-31.584-2.25-123.5 0-224 100.5-224 224 0 123.5 100.5 224 224 224 27.376 0 54.168-5 79.418-14.666 57.914 50.5 131.582 78.666 208.582 78.666 77.084 0 150.666-28.166 208.582-78.666 25.25 9.666 52.042 14.666 79.418 14.666 123.5 0 224-100.5 224-224 0-123.5-100.5-224-224-224zM448 896c0 35.376 28.624 64 64 64s64-28.624 64-64-64-128-64-128-64 92.624-64 128z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "rainy", + "cloud", + "weather" + ], + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 33, + "order": 258, + "prevSize": 32, + "code": 59021, + "name": "rainy3" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 38 + }, + { + "icon": { + "paths": [ + "M800 128c-10.624 0-21.124 0.75-31.584 2.25-59.748-81.416-154.040-130.25-256.416-130.25s-196.624 48.834-256.416 130.25c-10.46-1.5-20.96-2.25-31.584-2.25-123.5 0-224 100.5-224 224s100.5 224 224 224c27.376 0 54.168-5 79.418-14.666 57.914 50.5 131.582 78.666 208.582 78.666 77.084 0 150.666-28.166 208.582-78.666 25.25 9.666 52.042 14.666 79.418 14.666 123.5 0 224-100.5 224-224s-100.5-224-224-224zM450 960c0 35.376 28.624 64 64 64s64-28.624 64-64-64-128-64-128-64 92.624-64 128zM704 896c0 35.376 28.624 64 64 64s64-28.624 64-64-64-128-64-128-64 92.624-64 128zM192 768c0 35.376 28.624 64 64 64s64-28.624 64-64-64-128-64-128-64 92.624-64 128z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "rainy", + "cloud", + "weather" + ], + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 34, + "order": 259, + "prevSize": 32, + "code": 59022, + "name": "rainy4" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 39 + }, + { + "icon": { + "paths": [ + "M834.084 332.166c-47.958-49.084-114.25-77.542-183.46-77.542-69.124 0-135.376 28.458-183.374 77.542-105.624 4.918-190 92.376-190 199.168 0 109.916 89.418 199.332 199.376 199.332 11.624 0 23.208-1 34.5-2.998 41.5 27.082 89.876 41.708 139.498 41.708 49.708 0 98.126-14.626 139.544-41.708 11.414 1.998 22.916 2.998 34.582 2.998 109.874 0 199.25-89.416 199.25-199.332 0-106.792-84.376-194.25-189.916-199.168zM288 704h-256c-17.666 0-32 14.334-32 32s14.334 32 32 32h256c17.666 0 32-14.334 32-32s-14.334-32-32-32zM32 640h128c17.666 0 32-14.334 32-32s-14.334-32-32-32h-128c-17.666 0-32 14.334-32 32s14.334 32 32 32zM96 512h128c17.666 0 32-14.334 32-32s-14.334-32-32-32h-128c-17.666 0-32 14.334-32 32s14.334 32 32 32z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "windy", + "cloud", + "weather" + ], + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 35, + "order": 260, + "prevSize": 32, + "code": 59023, + "name": "windy4" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 40 + }, + { + "icon": { + "paths": [ + "M834.084 141.584c-47.96-49.126-114.25-77.584-183.46-77.584-69.124 0-135.376 28.458-183.33 77.584-105.626 4.876-190.042 92.334-190.042 199.084 0 109.956 89.418 199.416 199.376 199.416 11.668 0 23.208-1.002 34.542-3 41.458 27.042 89.834 41.666 139.458 41.666 49.708 0 98.126-14.624 139.544-41.666 11.414 1.998 22.916 3 34.582 3 109.874 0 199.25-89.46 199.25-199.416-0.004-106.752-84.38-194.252-189.92-199.084zM288 513.376h-256c-17.666 0-32 14.292-32 32 0 17.706 14.334 32 32 32h256c17.666 0 32-14.294 32-32 0-17.708-14.334-32-32-32zM32 449.376h128c17.666 0 32-14.292 32-32s-14.334-32-32-32h-128c-17.666 0-32 14.292-32 32s14.334 32 32 32zM96 321.376h128c17.666 0 32-14.292 32-32s-14.334-32-32-32h-128c-17.666 0-32 14.292-32 32s14.334 32 32 32zM448 768c0 35.376 28.624 64 64 64s64-28.624 64-64-64-128-64-128-64 92.624-64 128zM704 896c0 35.376 28.624 64 64 64s64-28.624 64-64-64-128-64-128-64 92.624-64 128z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "windy", + "rainy", + "weather", + "cloud" + ], + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 36, + "order": 261, + "prevSize": 32, + "code": 59024, + "name": "windy5" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 41 + }, + { + "icon": { + "paths": [ + "M652.084 887.376l-36-20.752c1.084-6.248 1.914-12.622 1.914-19.248 0-6.624-0.83-13-1.998-19.25l36.084-20.792c16.834-9.834 22.582-31.458 12.916-48.208-9.752-16.958-31.334-22.75-48.25-13l-36.376 21c-9.752-8.292-20.75-14.792-33-19.208v-41.792c0-19.542-15.876-35.376-35.376-35.376s-35.334 15.834-35.334 35.376v41.75c-12.25 4.376-23.292 10.958-33.042 19.25l-36.292-21c-16.958-9.75-38.582-4-48.332 12.958-9.75 16.834-3.876 38.5 13 48.252l35.918 20.75c-1.168 6.292-1.918 12.668-1.918 19.292 0 6.626 0.75 13 1.918 19.248l-35.916 20.75c-16.918 9.75-22.75 31.5-13 48.376s31.376 22.624 48.25 12.876l36.334-20.876c9.748 8.25 20.792 14.75 33.082 19.124v41.876c0 19.498 15.834 35.248 35.334 35.248s35.376-15.75 35.376-35.248v-41.876c12.25-4.376 23.376-10.876 33.042-19.25l36.334 21c16.916 9.75 38.498 4 48.25-12.876 9.748-16.874 3.998-38.5-12.918-48.374zM512 882.75c-19.5 0-35.376-15.876-35.376-35.376s15.876-35.292 35.376-35.292 35.332 15.792 35.332 35.292-15.832 35.376-35.332 35.376zM800 128c-10.624 0-21.124 0.75-31.584 2.25-59.75-81.416-154.040-130.25-256.416-130.25s-196.624 48.834-256.416 130.25c-10.46-1.5-20.96-2.25-31.584-2.25-123.5 0-224 100.5-224 224s100.5 224 224 224c27.376 0 54.168-5 79.418-14.666 57.914 50.5 131.582 78.666 208.582 78.666 77.084 0 150.666-28.166 208.582-78.666 25.25 9.666 52.042 14.666 79.418 14.666 123.5 0 224-100.5 224-224s-100.5-224-224-224z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "snowy", + "cloud", + "weather" + ], + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 37, + "order": 262, + "prevSize": 32, + "code": 59025, + "name": "snowy4" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 42 + }, + { + "icon": { + "paths": [ + "M652.084 887.376l-36-20.752c1.084-6.248 1.916-12.622 1.916-19.248 0-6.624-0.832-13-2-19.25l36.084-20.792c16.834-9.834 22.582-31.458 12.916-48.208-9.752-16.958-31.334-22.75-48.25-13l-36.376 21c-9.752-8.292-20.75-14.792-33-19.208v-41.792c0-19.542-15.876-35.376-35.376-35.376s-35.332 15.834-35.332 35.376v41.75c-12.252 4.376-23.292 10.958-33.042 19.25l-36.292-21c-16.958-9.75-38.584-4-48.334 12.958-9.75 16.834-3.876 38.5 13 48.252l35.918 20.75c-1.168 6.292-1.918 12.668-1.918 19.292 0 6.626 0.75 13 1.918 19.248l-35.916 20.75c-16.918 9.75-22.75 31.5-13 48.376s31.376 22.624 48.25 12.876l36.334-20.876c9.748 8.25 20.792 14.75 33.084 19.124v41.876c0 19.498 15.832 35.248 35.332 35.248s35.376-15.75 35.376-35.248v-41.876c12.25-4.376 23.376-10.876 33.042-19.25l36.334 21c16.916 9.75 38.498 4 48.25-12.876 9.748-16.874 3.998-38.5-12.918-48.374zM512 882.75c-19.5 0-35.376-15.876-35.376-35.376s15.876-35.292 35.376-35.292 35.334 15.792 35.334 35.292-15.834 35.376-35.334 35.376zM948.332 792.5l-24.166-6.416c-0.582-7.666-2.416-14.958-5.792-21.958l17.542-17.542c8.25-8.25 8.208-21.584 0-29.708-8.166-8.208-21.416-8.25-29.666 0l-17.582 17.5c-6.918-3.25-14.292-5.124-21.918-5.75l-6.418-24.124c-2.998-11.166-14.5-17.876-25.748-14.876-11.208 3.042-17.75 14.542-14.834 25.75l6.418 23.792c-3.168 2.168-6.168 4.584-9 7.334-2.75 2.834-5.084 5.832-7.252 8.918l-23.792-6.418c-11.208-2.998-22.792 3.752-25.792 14.876-2.998 11.25 3.752 22.708 14.834 25.75l24 6.458c0.668 7.542 2.584 14.916 5.958 21.918l-17.624 17.624c-8.166 8.208-8.124 21.458 0.084 29.624 8.166 8.166 21.416 8.25 29.584 0.084l17.664-17.666c6.918 3.414 14.336 5.332 22.002 5.914l6.332 24.042c3.084 11.208 14.5 17.876 25.752 14.876 11.166-3 17.914-14.498 14.916-25.834l-6.418-23.792c3-2.124 6.084-4.5 8.918-7.25 2.75-2.792 5.084-5.876 7.248-8.958l23.834 6.418c11.208 3 22.75-3.708 25.708-14.834 3-11.17-3.624-22.668-14.792-25.752zM876.624 805.876c-8.25 8.25-21.542 8.208-29.75 0-8.124-8.124-8.208-21.458 0-29.708 8.208-8.166 21.542-8.166 29.75 0 8.126 8.208 8.126 21.582 0 29.708zM237.876 685l-23.75 6.376c-2.208-3-4.5-6.042-7.292-8.876-2.832-2.75-5.832-5.124-8.958-7.25l6.376-23.876c3-11.208-3.668-22.75-14.75-25.708-11.25-3-22.75 3.668-25.75 14.834l-6.5 24.124c-7.624 0.624-14.916 2.5-21.876 5.792l-17.624-17.542c-8.25-8.25-21.5-8.208-29.668 0-8.208 8.208-8.208 21.5 0 29.708l17.542 17.542c-3.292 7-5.208 14.376-5.792 21.958l-24.084 6.416c-11.25 3.084-17.918 14.5-14.916 25.75 3.042 11.166 14.542 17.75 25.792 14.834l23.75-6.46c2.124 3.208 4.5 6.21 7.376 9.002 2.75 2.75 5.75 5.208 8.876 7.25l-6.376 23.792c-3 11.25 3.668 22.834 14.832 25.834 11.252 3 22.668-3.666 25.668-14.876l6.5-24c7.624-0.624 15-2.542 22-5.876l17.582 17.584c8.168 8.248 21.418 8.082 29.668-0.084 8.124-8.124 8.25-21.416 0-29.624l-17.624-17.624c3.376-6.92 5.376-14.376 5.876-22.002l24.124-6.376c11.124-3.042 17.792-14.5 14.792-25.75-3.002-11.12-14.502-17.788-25.794-14.872zM177.124 741.916c-8.208 8.208-21.5 8.208-29.75 0-8.124-8.166-8.124-21.542 0-29.666 8.25-8.166 21.542-8.166 29.75 0s8.126 21.5 0 29.666zM1024 352c0-123.5-100.5-224-224-224-10.624 0-21.124 0.75-31.584 2.25-59.748-81.416-154.040-130.25-256.416-130.25s-196.624 48.834-256.416 130.25c-10.46-1.5-20.96-2.25-31.584-2.25-123.5 0-224 100.5-224 224s100.5 224 224 224c27.376 0 54.168-5 79.418-14.666 57.914 50.5 131.582 78.666 208.582 78.666 77.084 0 150.666-28.166 208.582-78.666 25.25 9.666 52.042 14.666 79.418 14.666 123.5 0 224-100.5 224-224z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "snowy", + "cloud", + "weather" + ], + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 38, + "order": 263, + "prevSize": 32, + "code": 59026, + "name": "snowy5" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 43 + }, + { + "icon": { + "paths": [ + "M800 128c-10.624 0-21.124 0.75-31.584 2.25-59.748-81.416-154.040-130.25-256.416-130.25s-196.624 48.834-256.416 130.25c-10.46-1.5-20.96-2.25-31.584-2.25-123.5 0-224 100.5-224 224s100.5 224 224 224c27.376 0 54.168-5 79.418-14.666 57.914 50.5 131.582 78.666 208.582 78.666 77.084 0 150.666-28.166 208.582-78.666 25.25 9.666 52.042 14.666 79.418 14.666 123.5 0 224-100.5 224-224s-100.5-224-224-224zM192 640c-35.376 0-64 28.624-64 64s28.624 64 64 64 64-28.624 64-64-28.624-64-64-64zM512 704c-35.376 0-64 28.624-64 64s28.624 64 64 64 64-28.624 64-64-28.624-64-64-64zM832 640c-35.376 0-64 28.624-64 64s28.624 64 64 64 64-28.624 64-64-28.624-64-64-64zM704 896c-35.376 0-64 28.624-64 64s28.624 64 64 64 64-28.624 64-64-28.624-64-64-64zM320 896c-35.376 0-64 28.624-64 64s28.624 64 64 64 64-28.624 64-64-28.624-64-64-64z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "weather", + "cloud" + ], + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 39, + "order": 264, + "prevSize": 32, + "code": 59027, + "name": "weather5" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 44 + }, + { + "icon": { + "paths": [ + "M976.668 494.834c29.248 37.832 47.332 84.624 47.332 136 0 123.498-100.5 224-224 224-27.376 0-54.168-5-79.418-14.666-57.916 50.498-131.498 78.666-208.582 78.666-77 0-150.668-28.168-208.582-78.666-25.25 9.666-52.042 14.666-79.418 14.666-123.5 0-224-100.502-224-224 0-123.5 100.5-224 224-224 10.624 0 21.124 0.75 31.584 2.25 1.042-1.458 2.332-2.75 3.416-4.166-1.624-9.876-3-19.792-3-30.082 0-98.334 80-178.292 178.25-178.292 4.832 0 9.624 0.208 14.376 0.584 46.25-57.708 116-91.958 191.376-91.958 75.418 0 145.124 34.25 191.376 91.958 4.75-0.376 9.5-0.584 14.292-0.584 98.33-0.002 178.33 79.956 178.33 178.29 0 46.332-18.168 88.208-47.332 120z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "cloudy", + "weather", + "clouds" + ], + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 40, + "order": 265, + "prevSize": 32, + "code": 59028, + "name": "cloudy4" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 45 + }, + { + "icon": { + "paths": [ + "M1024 269.666c0-98.292-80-178.248-178.334-178.248-4.792 0-9.542 0.166-14.292 0.54-46.25-57.666-115.956-91.958-191.374-91.958-75.376 0-145.124 34.292-191.376 91.958-4.75-0.374-9.542-0.54-14.376-0.54-98.248 0-178.248 79.958-178.248 178.248 0 10.292 1.376 20.25 3 30.084-1.084 1.416-2.376 2.708-3.416 4.166-10.458-1.5-20.958-2.25-31.584-2.25-123.5 0-224 100.5-224 224 0 123.502 100.5 224 224 224 27.376 0 54.168-4.998 79.418-14.666 36.708 32 80.208 53.876 126.414 66.416l-45.832 30.584 64 64-64 128 192-128-64-64 9.624-19.166c73.5-2.25 143.5-29.458 198.958-77.834 25.25 9.668 52.042 14.666 79.418 14.666 123.5 0 224-100.498 224-224 0-51.332-18.084-98.166-47.332-136 29.164-31.75 47.332-73.624 47.332-120z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "lightning", + "clouds", + "weather" + ], + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 41, + "order": 266, + "prevSize": 32, + "code": 59029, + "name": "lightning5" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 46 + }, + { + "icon": { + "paths": [ + "M576 721.75v-587.916c0-38.584-28.668-69.834-64-69.834-35.334 0-64 31.25-64 69.834v587.916c-38.084 22.166-64 63.002-64 110.25 0 70.666 57.332 128 128 128 70.666 0 128-57.334 128-128 0-47.248-25.876-88.084-64-110.25z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "thermometer", + "temperature" + ], + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 42, + "order": 267, + "prevSize": 32, + "code": 59030, + "name": "thermometer" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 47 + }, + { + "icon": { + "paths": [ + "M318.188 557.292h-2.084l-67.042-102.376-81.876-120.874h-63.5v352.79h70.124l0-222.208h3.042l58.208 89.084 89.376 133.124h63.876v-352.79h-70.124v223.25zM412.938 708.332h51.668l129.582-392.664h-52.25l-129 392.664zM797.438 334.042h-71.666l-123.958 352.79h74.75l23.042-72.75h122.918l21.498 72.75h76.292l-122.876-352.79zM718.562 555.25l14.292-46.584 27.208-91.664h2l27.708 93.208 13.792 45.042h-85z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "none", + "nothing" + ], + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 44, + "order": 269, + "prevSize": 32, + "code": 59032, + "name": "none" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 48 + }, + { + "icon": { + "paths": [ + "M418.334 352.75c-7.208-6.792-15.584-12.166-25.084-16.124-9.624-3.876-19.876-5.876-30.75-5.876-10.916 0-21.168 2-30.75 5.876-9.5 3.958-17.876 9.334-25.082 16.124-7.168 6.834-12.792 14.834-16.918 24.084-4.084 9.21-6.124 18.958-6.124 29.166 0 10.25 2.042 20 6.124 29.21 4.124 9.208 9.75 17.25 16.918 24.040 7.208 6.834 15.582 12.25 25.082 16.126 9.582 3.958 19.834 5.916 30.75 5.916 10.876 0 21.124-1.958 30.75-5.916 9.5-3.876 17.876-9.292 25.084-16.126 7.166-6.79 12.792-14.834 16.832-24.040 4.084-9.21 6.208-18.958 6.208-29.21 0-10.208-2.124-19.958-6.208-29.166-4.042-9.252-9.666-17.252-16.832-24.084zM387.624 430.082c-6.876 6.834-15.25 10.25-25.124 10.25s-18.25-3.418-25.124-10.25c-6.792-6.834-10.25-14.834-10.25-24.084 0-9.5 3.458-17.666 10.25-24.29 6.876-6.666 15.25-9.958 25.124-9.958s18.25 3.292 25.124 9.958c6.75 6.624 10.208 14.79 10.208 24.29-0 9.252-3.456 17.252-10.208 24.084zM670.5 623.582c-12.124 3.46-24.166 5.166-36.124 5.166-7.876 0-15.624-1.208-23.292-3.58-7.708-2.418-14.708-6.168-20.998-11.292-6.334-5.126-11.46-11.668-15.334-19.708-3.918-8-5.916-17.834-5.916-29.418v-102.916c0-11.584 1.998-21.5 5.916-29.708 3.874-8.166 8.918-14.834 15.082-19.958 6.168-5.124 13.084-8.792 21-11 7.834-2.21 15.668-3.334 23.542-3.334 11.958 0 24.248 1.75 36.874 5.376 12.626 3.582 24.376 9.998 35.336 19.208l33.792-54.292c-13.708-11.916-29.958-20.624-48.958-26.124-18.918-5.416-38.584-8.166-59.086-8.166-16.708 0-33.166 2.416-49.166 7.168-16.042 4.792-30.292 11.958-42.75 21.5-12.416 9.584-22.542 21.416-30.166 35.582-7.75 14.168-11.582 30.666-11.582 49.416v132.084c0 19.124 3.958 35.75 11.832 49.918 7.834 14.168 18.082 25.958 30.668 35.332 12.664 9.416 26.958 16.458 42.998 21.25 16.084 4.75 32.458 7.168 49.208 7.168 20.792 0 40.542-3.084 59.376-9.208 18.75-6.166 34.624-14.708 47.624-25.584l-33.292-54.292c-12.252 9.58-24.5 16.038-36.584 19.412z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "Celsius", + "temperature" + ], + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 45, + "order": 270, + "prevSize": 32, + "code": 59033, + "name": "celsius" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 49 + }, + { + "icon": { + "paths": [ + "M417.062 354.542c-7.208-6.792-15.582-12.168-25.082-16.124-9.624-3.876-19.876-5.876-30.75-5.876-10.918 0-21.168 2-30.75 5.876-9.5 3.958-17.876 9.334-25.084 16.124-7.166 6.832-12.792 14.832-16.918 24.082-4.084 9.21-6.124 18.958-6.124 29.168 0 10.25 2.040 20 6.124 29.208 4.126 9.208 9.752 17.25 16.918 24.042 7.208 6.832 15.584 12.25 25.084 16.124 9.582 3.958 19.832 5.916 30.75 5.916 10.876 0 21.124-1.958 30.75-5.916 9.5-3.876 17.876-9.292 25.082-16.124 7.168-6.792 12.792-14.834 16.832-24.042 4.084-9.208 6.21-18.958 6.21-29.208 0-10.208-2.126-19.958-6.21-29.168-4.040-9.25-9.664-17.25-16.832-24.082zM386.354 431.874c-6.876 6.834-15.25 10.252-25.124 10.252s-18.25-3.418-25.124-10.252c-6.792-6.832-10.25-14.832-10.25-24.082 0-9.5 3.458-17.666 10.25-24.292 6.876-6.666 15.25-9.958 25.124-9.958s18.25 3.292 25.124 9.958c6.748 6.624 10.208 14.792 10.208 24.292 0 9.25-3.46 17.25-10.208 24.082zM741.644 401.666v-63h-243.164v352.792h70.126v-143.876h147.958v-62.958h-147.958v-82.958h173.038z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "Fahrenheit", + "temperature" + ], + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 46, + "order": 271, + "prevSize": 32, + "code": 59034, + "name": "fahrenheit" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 50 + }, + { + "icon": { + "paths": [ + "M1024 590.444l-512-397.426-512 397.428v-162.038l512-397.426 512 397.428zM896 576v384h-256v-256h-256v256h-256v-384l384-288z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "home", + "house" + ], + "defaultCode": 57345, + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 51, + "order": 2, + "prevSize": 32, + "code": 59648, + "ligatures": "home, house", + "name": "home" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 51 + }, + { + "icon": { + "paths": [ + "M864 0c88.364 0 160 71.634 160 160 0 36.020-11.91 69.258-32 96l-64 64-224-224 64-64c26.742-20.090 59.978-32 96-32zM64 736l-64 288 288-64 592-592-224-224-592 592zM715.578 363.578l-448 448-55.156-55.156 448-448 55.156 55.156z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "pencil", + "write", + "edit" + ], + "defaultCode": 57357, + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 64, + "order": 3, + "prevSize": 32, + "code": 59653, + "ligatures": "pencil, write", + "name": "pencil" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 52 + }, + { + "icon": { + "paths": [ + "M986.51 37.49c-49.988-49.986-131.032-49.986-181.020 0l-172.118 172.118-121.372-121.372-135.764 135.764 106.426 106.426-472.118 472.118c-8.048 8.048-11.468 18.958-10.3 29.456h-0.244v160c0 17.674 14.328 32 32 32h160c0 0 2.664 0 4 0 9.212 0 18.426-3.516 25.456-10.544l472.118-472.118 106.426 106.426 135.764-135.764-121.372-121.372 172.118-172.118c49.986-49.988 49.986-131.032 0-181.020zM173.090 960h-109.090v-109.090l469.574-469.572 109.088 109.088-469.572 469.574z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "eyedropper", + "color", + "color-picker", + "sample" + ], + "defaultCode": 57379, + "grid": 16 + }, + "attrs": [], + "properties": { + "order": 277, + "id": 1621, + "prevSize": 32, + "code": 59658, + "ligatures": "eyedropper, color", + "name": "eyedropper" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 53 + }, + { + "icon": { + "paths": [ + "M1024 576v-384h-192v-64c0-35.2-28.8-64-64-64h-704c-35.2 0-64 28.8-64 64v192c0 35.2 28.8 64 64 64h704c35.2 0 64-28.8 64-64v-64h128v256h-576v128h-32c-17.674 0-32 14.326-32 32v320c0 17.674 14.326 32 32 32h128c17.674 0 32-14.326 32-32v-320c0-17.674-14.326-32-32-32h-32v-64h576zM768 192h-704v-64h704v64z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "paint-format", + "format", + "color" + ], + "defaultCode": 57386, + "grid": 16 + }, + "attrs": [], + "properties": { + "order": 276, + "id": 1720, + "prevSize": 32, + "code": 59660, + "ligatures": "paint-format, format", + "name": "paint" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 54 + }, + { + "icon": { + "paths": [ + "M959.884 128c0.040 0.034 0.082 0.076 0.116 0.116v767.77c-0.034 0.040-0.076 0.082-0.116 0.116h-895.77c-0.040-0.034-0.082-0.076-0.114-0.116v-767.772c0.034-0.040 0.076-0.082 0.114-0.114h895.77zM960 64h-896c-35.2 0-64 28.8-64 64v768c0 35.2 28.8 64 64 64h896c35.2 0 64-28.8 64-64v-768c0-35.2-28.8-64-64-64v0z", + "M832 288c0 53.020-42.98 96-96 96s-96-42.98-96-96 42.98-96 96-96 96 42.98 96 96z", + "M896 832h-768v-128l224-384 256 320h64l224-192z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "image", + "picture", + "photo", + "graphic" + ], + "defaultCode": 57388, + "grid": 16 + }, + "attrs": [], + "properties": { + "order": 4, + "id": 1589, + "prevSize": 32, + "code": 59661, + "ligatures": "image, picture", + "name": "image" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 55 + }, + { + "icon": { + "paths": [ + "M1088 128h-64v-64c0-35.2-28.8-64-64-64h-896c-35.2 0-64 28.8-64 64v768c0 35.2 28.8 64 64 64h64v64c0 35.2 28.8 64 64 64h896c35.2 0 64-28.8 64-64v-768c0-35.2-28.8-64-64-64zM128 192v640h-63.886c-0.040-0.034-0.082-0.076-0.114-0.116v-767.77c0.034-0.040 0.076-0.082 0.114-0.114h895.77c0.040 0.034 0.082 0.076 0.116 0.116v63.884h-768c-35.2 0-64 28.8-64 64v0zM1088 959.884c-0.034 0.040-0.076 0.082-0.116 0.116h-895.77c-0.040-0.034-0.082-0.076-0.114-0.116v-767.77c0.034-0.040 0.076-0.082 0.114-0.114h895.77c0.040 0.034 0.082 0.076 0.116 0.116v767.768z", + "M960 352c0 53.020-42.98 96-96 96s-96-42.98-96-96 42.98-96 96-96 96 42.98 96 96z", + "M1024 896h-768v-128l224-384 256 320h64l224-192z" + ], + "width": 1152, + "attrs": [], + "isMulticolor": false, + "tags": [ + "images", + "pictures", + "photos", + "graphics" + ], + "defaultCode": 57390, + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 96, + "order": 5, + "prevSize": 32, + "code": 59662, + "ligatures": "images, pictures", + "name": "images" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 56 + }, + { + "icon": { + "paths": [ + "M304 608c0 114.876 93.124 208 208 208s208-93.124 208-208-93.124-208-208-208-208 93.124-208 208zM960 256h-224c-16-64-32-128-96-128h-256c-64 0-80 64-96 128h-224c-35.2 0-64 28.8-64 64v576c0 35.2 28.8 64 64 64h896c35.2 0 64-28.8 64-64v-576c0-35.2-28.8-64-64-64zM512 892c-156.85 0-284-127.148-284-284 0-156.85 127.15-284 284-284 156.852 0 284 127.15 284 284 0 156.852-127.146 284-284 284zM960 448h-128v-64h128v64z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "camera", + "photo", + "picture", + "image" + ], + "defaultCode": 57398, + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 108, + "order": 6, + "prevSize": 32, + "code": 59663, + "ligatures": "camera, photo", + "name": "camera" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 57 + }, + { + "icon": { + "paths": [ + "M288 576h-64v448h64c17.6 0 32-14.4 32-32v-384c0-17.6-14.4-32-32-32z", + "M736 576c-17.602 0-32 14.4-32 32v384c0 17.6 14.398 32 32 32h64v-448h-64z", + "M1024 512c0-282.77-229.23-512-512-512s-512 229.23-512 512c0 61.412 10.83 120.29 30.656 174.848-19.478 33.206-30.656 71.87-30.656 113.152 0 112.846 83.448 206.188 192 221.716v-443.418c-31.914 4.566-61.664 15.842-87.754 32.378-5.392-26.718-8.246-54.364-8.246-82.676 0-229.75 186.25-416 416-416s416 186.25 416 416c0 28.314-2.83 55.968-8.22 82.696-26.1-16.546-55.854-27.848-87.78-32.418v443.44c108.548-15.532 192-108.874 192-221.714 0-41.274-11.178-79.934-30.648-113.138 19.828-54.566 30.648-113.452 30.648-174.866z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "headphones", + "headset", + "music", + "audio" + ], + "defaultCode": 59720, + "grid": 16 + }, + "attrs": [], + "properties": { + "order": 7, + "id": 1661, + "prevSize": 32, + "code": 59664, + "ligatures": "headphones, headset", + "name": "headphones" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 58 + }, + { + "icon": { + "paths": [ + "M960 0h64v736c0 88.366-100.29 160-224 160s-224-71.634-224-160c0-88.368 100.29-160 224-160 62.684 0 119.342 18.4 160 48.040v-368.040l-512 113.778v494.222c0 88.366-100.288 160-224 160s-224-71.634-224-160c0-88.368 100.288-160 224-160 62.684 0 119.342 18.4 160 48.040v-624.040l576-128z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "music", + "song", + "audio", + "sound", + "note" + ], + "defaultCode": 57404, + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 114, + "order": 206, + "prevSize": 32, + "code": 59665, + "ligatures": "music, song", + "name": "music" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 59 + }, + { + "icon": { + "paths": [ + "M0 128v768h1024v-768h-1024zM192 832h-128v-128h128v128zM192 576h-128v-128h128v128zM192 320h-128v-128h128v128zM768 832h-512v-640h512v640zM960 832h-128v-128h128v128zM960 576h-128v-128h128v128zM960 320h-128v-128h128v128zM384 320v384l256-192z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "film", + "video", + "movie", + "tape", + "play" + ], + "defaultCode": 57418, + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 128, + "order": 8, + "prevSize": 32, + "code": 59667, + "ligatures": "film, video2", + "name": "film" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 60 + }, + { + "icon": { + "paths": [ + "M384 288c0-88.366 71.634-160 160-160s160 71.634 160 160c0 88.366-71.634 160-160 160s-160-71.634-160-160zM0 288c0-88.366 71.634-160 160-160s160 71.634 160 160c0 88.366-71.634 160-160 160s-160-71.634-160-160zM768 608v-96c0-35.2-28.8-64-64-64h-640c-35.2 0-64 28.8-64 64v320c0 35.2 28.8 64 64 64h640c35.2 0 64-28.8 64-64v-96l256 160v-448l-256 160zM640 768h-512v-192h512v192z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "video-camera", + "video", + "media", + "film", + "movie" + ], + "defaultCode": 57419, + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 129, + "order": 197, + "prevSize": 32, + "code": 59668, + "ligatures": "video-camera, video3", + "name": "video-camera" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 61 + }, + { + "icon": { + "paths": [ + "M864 192h-512c-88 0-160 72-160 160v512c0 88 72 160 160 160h512c88 0 160-72 160-160v-512c0-88-72-160-160-160zM416 896c-53.020 0-96-42.98-96-96s42.98-96 96-96 96 42.98 96 96-42.98 96-96 96zM416 512c-53.020 0-96-42.98-96-96s42.98-96 96-96 96 42.98 96 96-42.98 96-96 96zM608 704c-53.020 0-96-42.98-96-96s42.98-96 96-96 96 42.98 96 96-42.98 96-96 96zM800 896c-53.020 0-96-42.98-96-96s42.98-96 96-96 96 42.98 96 96-42.98 96-96 96zM800 512c-53.020 0-96-42.98-96-96s42.98-96 96-96 96 42.98 96 96-42.98 96-96 96zM828.76 128c-14.93-72.804-79.71-128-156.76-128h-512c-88 0-160 72-160 160v512c0 77.046 55.196 141.83 128 156.76v-636.76c0-35.2 28.8-64 64-64h636.76z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "dice", + "game", + "chance", + "luck", + "random", + "gample" + ], + "defaultCode": 57424, + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 134, + "order": 198, + "prevSize": 32, + "code": 59669, + "ligatures": "dice, game", + "name": "dice" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 62 + }, + { + "icon": { + "paths": [ + "M640 576c105.87 0 201.87 43.066 271.402 112.598l-90.468 90.468c-46.354-46.356-110.356-75.066-180.934-75.066s-134.578 28.71-180.934 75.066l-90.468-90.468c69.532-69.532 165.532-112.598 271.402-112.598zM187.452 507.452c120.88-120.88 281.598-187.452 452.548-187.452s331.668 66.572 452.55 187.452l-90.51 90.508c-96.706-96.704-225.28-149.96-362.040-149.96-136.762 0-265.334 53.256-362.038 149.962l-90.51-90.51zM988.784 134.438c106.702 45.132 202.516 109.728 284.782 191.996v0l-90.508 90.508c-145.056-145.056-337.92-224.942-543.058-224.942-205.14 0-398 79.886-543.058 224.942l-90.51-90.51c82.268-82.266 178.082-146.862 284.784-191.994 110.504-46.738 227.852-70.438 348.784-70.438s238.278 23.7 348.784 70.438zM576 896c0-35.346 28.654-64 64-64s64 28.654 64 64c0 35.346-28.654 64-64 64s-64-28.654-64-64z" + ], + "width": 1280, + "attrs": [], + "isMulticolor": false, + "tags": [ + "connection", + "wifi", + "wave" + ], + "defaultCode": 57442, + "grid": 16 + }, + "attrs": [], + "properties": { + "order": 9, + "id": 1504, + "prevSize": 32, + "code": 59675, + "ligatures": "connection, wifi", + "name": "wifi-connect" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 63 + }, + { + "icon": { + "paths": [ + "M384 512c0-70.692 57.308-128 128-128s128 57.308 128 128c0 70.692-57.308 128-128 128s-128-57.308-128-128zM664.348 230.526c99.852 54.158 167.652 159.898 167.652 281.474s-67.8 227.316-167.652 281.474c44.066-70.126 71.652-170.27 71.652-281.474s-27.586-211.348-71.652-281.474zM288 512c0 111.204 27.584 211.348 71.652 281.474-99.852-54.16-167.652-159.898-167.652-281.474s67.8-227.314 167.652-281.474c-44.068 70.126-71.652 170.27-71.652 281.474zM96 512c0 171.9 54.404 326.184 140.652 431.722-142.302-90.948-236.652-250.314-236.652-431.722s94.35-340.774 236.652-431.722c-86.248 105.538-140.652 259.822-140.652 431.722zM787.352 80.28c142.298 90.946 236.648 250.312 236.648 431.72s-94.35 340.774-236.648 431.72c86.244-105.536 140.648-259.82 140.648-431.72s-54.404-326.184-140.648-431.72z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "feed", + "wave", + "radio", + "live", + "broadcast" + ], + "defaultCode": 57446, + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 160, + "order": 10, + "prevSize": 32, + "code": 59677, + "ligatures": "feed, wave", + "name": "feed" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 64 + }, + { + "icon": { + "paths": [ + "M480 704c88.366 0 160-71.634 160-160v-384c0-88.366-71.634-160-160-160s-160 71.634-160 160v384c0 88.366 71.636 160 160 160zM704 448v96c0 123.71-100.29 224-224 224-123.712 0-224-100.29-224-224v-96h-64v96c0 148.238 112.004 270.3 256 286.22v129.78h-128v64h320v-64h-128v-129.78c143.994-15.92 256-137.982 256-286.22v-96h-64z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "mic", + "microphone", + "voice", + "audio" + ], + "defaultCode": 57453, + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 167, + "order": 11, + "prevSize": 32, + "code": 59678, + "ligatures": "mic, microphone", + "name": "mic" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 65 + }, + { + "icon": { + "paths": [ + "M224 128h-192c-17.6 0-32 14.4-32 32v704c0 17.6 14.4 32 32 32h192c17.6 0 32-14.4 32-32v-704c0-17.6-14.4-32-32-32zM192 320h-128v-64h128v64z", + "M544 128h-192c-17.6 0-32 14.4-32 32v704c0 17.6 14.4 32 32 32h192c17.6 0 32-14.4 32-32v-704c0-17.6-14.4-32-32-32zM512 320h-128v-64h128v64z", + "M765.088 177.48l-171.464 86.394c-15.716 7.918-22.096 27.258-14.178 42.976l287.978 571.548c7.918 15.718 27.258 22.098 42.976 14.178l171.464-86.392c15.716-7.92 22.096-27.26 14.178-42.974l-287.978-571.55c-7.92-15.718-27.26-22.1-42.976-14.18z", + "M928 864c0 17.673-14.327 32-32 32s-32-14.327-32-32c0-17.673 14.327-32 32-32s32 14.327 32 32z" + ], + "width": 1152, + "attrs": [], + "isMulticolor": false, + "tags": [ + "books", + "library", + "archive" + ], + "defaultCode": 57458, + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 172, + "order": 12, + "prevSize": 32, + "code": 59680, + "ligatures": "books, library", + "name": "books" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 66 + }, + { + "icon": { + "paths": [ + "M917.806 229.076c-22.212-30.292-53.174-65.7-87.178-99.704s-69.412-64.964-99.704-87.178c-51.574-37.82-76.592-42.194-90.924-42.194h-496c-44.112 0-80 35.888-80 80v864c0 44.112 35.888 80 80 80h736c44.112 0 80-35.888 80-80v-624c0-14.332-4.372-39.35-42.194-90.924zM785.374 174.626c30.7 30.7 54.8 58.398 72.58 81.374h-153.954v-153.946c22.984 17.78 50.678 41.878 81.374 72.572zM896 944c0 8.672-7.328 16-16 16h-736c-8.672 0-16-7.328-16-16v-864c0-8.672 7.328-16 16-16 0 0 495.956-0.002 496 0v224c0 17.672 14.326 32 32 32h224v624z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "file-empty", + "file", + "document", + "paper", + "page", + "new", + "empty", + "blank" + ], + "defaultCode": 57485, + "grid": 16 + }, + "attrs": [], + "properties": { + "order": 13, + "id": 1598, + "prevSize": 32, + "code": 59684, + "ligatures": "file-empty, file3", + "name": "file-empty" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 67 + }, + { + "icon": { + "paths": [ + "M917.806 357.076c-22.21-30.292-53.174-65.7-87.178-99.704s-69.412-64.964-99.704-87.178c-51.574-37.82-76.592-42.194-90.924-42.194h-368c-44.114 0-80 35.888-80 80v736c0 44.112 35.886 80 80 80h608c44.112 0 80-35.888 80-80v-496c0-14.332-4.372-39.35-42.194-90.924zM785.374 302.626c30.7 30.7 54.8 58.398 72.58 81.374h-153.954v-153.946c22.982 17.78 50.678 41.878 81.374 72.572v0zM896 944c0 8.672-7.328 16-16 16h-608c-8.672 0-16-7.328-16-16v-736c0-8.672 7.328-16 16-16 0 0 367.956-0.002 368 0v224c0 17.672 14.324 32 32 32h224v496z", + "M602.924 42.196c-51.574-37.822-76.592-42.196-90.924-42.196h-368c-44.112 0-80 35.888-80 80v736c0 38.632 27.528 70.958 64 78.39v-814.39c0-8.672 7.328-16 16-16h486.876c-9.646-7.92-19.028-15.26-27.952-21.804z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "files-empty", + "files", + "documents", + "papers", + "pages" + ], + "defaultCode": 57485, + "grid": 16 + }, + "attrs": [], + "properties": { + "order": 14, + "id": 1601, + "prevSize": 32, + "code": 59685, + "ligatures": "files-empty, files", + "name": "files-empty" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 68 + }, + { + "icon": { + "paths": [ + "M917.806 229.076c-22.212-30.292-53.174-65.7-87.178-99.704s-69.412-64.964-99.704-87.178c-51.574-37.82-76.592-42.194-90.924-42.194h-496c-44.112 0-80 35.888-80 80v864c0 44.112 35.888 80 80 80h736c44.112 0 80-35.888 80-80v-624c0-14.332-4.372-39.35-42.194-90.924zM785.374 174.626c30.7 30.7 54.8 58.398 72.58 81.374h-153.954v-153.946c22.984 17.78 50.678 41.878 81.374 72.572zM896 944c0 8.672-7.328 16-16 16h-736c-8.672 0-16-7.328-16-16v-864c0-8.672 7.328-16 16-16 0 0 495.956-0.002 496 0v224c0 17.672 14.326 32 32 32h224v624z", + "M736 832h-448c-17.672 0-32-14.326-32-32s14.328-32 32-32h448c17.674 0 32 14.326 32 32s-14.326 32-32 32z", + "M736 704h-448c-17.672 0-32-14.326-32-32s14.328-32 32-32h448c17.674 0 32 14.326 32 32s-14.326 32-32 32z", + "M736 576h-448c-17.672 0-32-14.326-32-32s14.328-32 32-32h448c17.674 0 32 14.326 32 32s-14.326 32-32 32z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "file-text", + "file", + "document", + "list", + "paper", + "page" + ], + "defaultCode": 57478, + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 193, + "order": 15, + "prevSize": 32, + "code": 59686, + "ligatures": "file-text2, file4", + "name": "file-text" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 69 + }, + { + "icon": { + "paths": [ + "M832 896h-640v-128l192-320 263 320 185-128v256z", + "M832 480c0 53.020-42.98 96-96 96-53.022 0-96-42.98-96-96s42.978-96 96-96c53.020 0 96 42.98 96 96z", + "M917.806 229.076c-22.212-30.292-53.174-65.7-87.178-99.704s-69.412-64.964-99.704-87.178c-51.574-37.82-76.592-42.194-90.924-42.194h-496c-44.112 0-80 35.888-80 80v864c0 44.112 35.888 80 80 80h736c44.112 0 80-35.888 80-80v-624c0-14.332-4.372-39.35-42.194-90.924zM785.374 174.626c30.7 30.7 54.8 58.398 72.58 81.374h-153.954v-153.946c22.984 17.78 50.678 41.878 81.374 72.572zM896 944c0 8.672-7.328 16-16 16h-736c-8.672 0-16-7.328-16-16v-864c0-8.672 7.328-16 16-16 0 0 495.956-0.002 496 0v224c0 17.672 14.326 32 32 32h224v624z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "file-picture", + "file", + "document", + "file-image" + ], + "defaultCode": 59823, + "grid": 16 + }, + "attrs": [], + "properties": { + "order": 16, + "id": 1603, + "prevSize": 32, + "code": 59687, + "ligatures": "file-picture, file5", + "name": "file-picture" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 70 + }, + { + "icon": { + "paths": [ + "M917.806 229.076c-22.21-30.292-53.174-65.7-87.178-99.704s-69.412-64.964-99.704-87.178c-51.574-37.82-76.592-42.194-90.924-42.194h-496c-44.112 0-80 35.888-80 80v864c0 44.112 35.886 80 80 80h736c44.112 0 80-35.888 80-80v-624c0-14.332-4.372-39.35-42.194-90.924v0zM785.374 174.626c30.7 30.7 54.8 58.398 72.58 81.374h-153.954v-153.946c22.982 17.78 50.678 41.878 81.374 72.572v0zM896 944c0 8.672-7.328 16-16 16h-736c-8.672 0-16-7.328-16-16v-864c0-8.672 7.328-16 16-16 0 0 495.956-0.002 496 0v224c0 17.672 14.324 32 32 32h224v624z", + "M756.288 391.252c-7.414-6.080-17.164-8.514-26.562-6.632l-320 64c-14.958 2.994-25.726 16.126-25.726 31.38v236.876c-18.832-8.174-40.678-12.876-64-12.876-70.692 0-128 42.98-128 96s57.308 96 128 96 128-42.98 128-96v-229.766l256-51.202v133.842c-18.832-8.174-40.678-12.876-64-12.876-70.692 0-128 42.98-128 96s57.308 96 128 96 128-42.98 128-96v-319.998c0-9.586-4.298-18.668-11.712-24.748z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "file-music", + "file", + "document", + "file-song", + "file-audio" + ], + "defaultCode": 59825, + "grid": 16 + }, + "attrs": [], + "properties": { + "order": 17, + "id": 1604, + "prevSize": 32, + "code": 59688, + "ligatures": "file-music, file6", + "name": "file-music" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 71 + }, + { + "icon": { + "paths": [ + "M384 384l320 224-320 224v-448z", + "M917.806 229.076c-22.212-30.292-53.174-65.7-87.178-99.704s-69.412-64.964-99.704-87.178c-51.574-37.82-76.592-42.194-90.924-42.194h-496c-44.112 0-80 35.888-80 80v864c0 44.112 35.888 80 80 80h736c44.112 0 80-35.888 80-80v-624c0-14.332-4.372-39.35-42.194-90.924zM785.374 174.626c30.7 30.7 54.8 58.398 72.58 81.374h-153.954v-153.946c22.984 17.78 50.678 41.878 81.374 72.572zM896 944c0 8.672-7.328 16-16 16h-736c-8.672 0-16-7.328-16-16v-864c0-8.672 7.328-16 16-16 0 0 495.956-0.002 496 0v224c0 17.672 14.326 32 32 32h224v624z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "file-play", + "file", + "document", + "file-media", + "file-video" + ], + "defaultCode": 59827, + "grid": 16 + }, + "attrs": [], + "properties": { + "order": 18, + "id": 1605, + "prevSize": 32, + "code": 59689, + "ligatures": "file-play, file7", + "name": "file-play" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 72 + }, + { + "icon": { + "paths": [ + "M917.806 229.076c-22.208-30.292-53.174-65.7-87.178-99.704s-69.412-64.964-99.704-87.178c-51.574-37.82-76.594-42.194-90.924-42.194h-496c-44.112 0-80 35.888-80 80v864c0 44.112 35.882 80 80 80h736c44.112 0 80-35.888 80-80v-624c0-14.332-4.372-39.35-42.194-90.924v0 0zM785.374 174.626c30.7 30.7 54.8 58.398 72.58 81.374h-153.954v-153.946c22.98 17.78 50.678 41.878 81.374 72.572v0 0zM896 944c0 8.672-7.328 16-16 16h-736c-8.672 0-16-7.328-16-16v-864c0-8.672 7.328-16 16-16 0 0 495.956-0.002 496 0v224c0 17.672 14.32 32 32 32h224v624z", + "M256 512h320v320h-320v-320z", + "M576 640l192-128v320l-192-128z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "file-video", + "file", + "document", + "file-camera" + ], + "defaultCode": 59829, + "grid": 16 + }, + "attrs": [], + "properties": { + "order": 19, + "id": 1611, + "prevSize": 32, + "code": 59690, + "ligatures": "file-video, file8", + "name": "file-video" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 73 + }, + { + "icon": { + "paths": [ + "M917.806 229.076c-22.208-30.292-53.174-65.7-87.178-99.704s-69.412-64.964-99.704-87.178c-51.574-37.82-76.592-42.194-90.924-42.194h-496c-44.112 0-80 35.888-80 80v864c0 44.112 35.884 80 80 80h736c44.112 0 80-35.888 80-80v-624c0-14.332-4.372-39.35-42.194-90.924v0 0zM785.374 174.626c30.7 30.7 54.8 58.398 72.58 81.374h-153.954v-153.946c22.98 17.78 50.678 41.878 81.374 72.572v0 0zM896 944c0 8.672-7.328 16-16 16h-736c-8.672 0-16-7.328-16-16v-864c0-8.672 7.328-16 16-16 0 0 495.956-0.002 496 0v224c0 17.672 14.322 32 32 32h224v624z", + "M256 64h128v64h-128v-64z", + "M384 128h128v64h-128v-64z", + "M256 192h128v64h-128v-64z", + "M384 256h128v64h-128v-64z", + "M256 320h128v64h-128v-64z", + "M384 384h128v64h-128v-64z", + "M256 448h128v64h-128v-64z", + "M384 512h128v64h-128v-64z", + "M256 848c0 26.4 21.6 48 48 48h160c26.4 0 48-21.6 48-48v-160c0-26.4-21.6-48-48-48h-80v-64h-128v272zM448 768v64h-128v-64h128z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "file-zip", + "file", + "document", + "file-compressed", + "file-type", + "file-format" + ], + "defaultCode": 58598, + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 1380, + "order": 20, + "prevSize": 32, + "code": 59691, + "ligatures": "file-zip, file9", + "name": "file-zip" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 74 + }, + { + "icon": { + "paths": [ + "M1024 320l-512-256-512 256 512 256 512-256zM512 148.97l342.058 171.030-342.058 171.030-342.058-171.030 342.058-171.030zM921.444 460.722l102.556 51.278-512 256-512-256 102.556-51.278 409.444 204.722zM921.444 652.722l102.556 51.278-512 256-512-256 102.556-51.278 409.444 204.722z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "stack", + "layers" + ], + "defaultCode": 57494, + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 214, + "order": 21, + "prevSize": 32, + "code": 59694, + "ligatures": "stack, layers", + "name": "stack" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 75 + }, + { + "icon": { + "paths": [ + "M448 128l128 128h448v704h-1024v-832z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "folder", + "directory", + "category", + "browse" + ], + "defaultCode": 57505, + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 226, + "order": 22, + "prevSize": 32, + "code": 59695, + "ligatures": "folder, directory", + "name": "folder" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 76 + }, + { + "icon": { + "paths": [ + "M832 960l192-512h-832l-192 512zM128 384l-128 576v-832h288l128 128h416v128z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "folder-open", + "directory", + "category", + "browse" + ], + "defaultCode": 57506, + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 227, + "order": 23, + "prevSize": 32, + "code": 59696, + "ligatures": "folder-open, directory2", + "name": "folder-open" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 77 + }, + { + "icon": { + "paths": [ + "M576 256l-128-128h-448v832h1024v-704h-448zM704 704h-128v128h-128v-128h-128v-128h128v-128h128v128h128v128z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "folder-plus", + "directory", + "folder-add" + ], + "defaultCode": 57509, + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 230, + "order": 24, + "prevSize": 32, + "code": 59697, + "ligatures": "folder-plus, directory3", + "name": "folder-plus" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 78 + }, + { + "icon": { + "paths": [ + "M576 256l-128-128h-448v832h1024v-704h-448zM704 704h-384v-128h384v128z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "folder-minus", + "directory", + "folder-remove" + ], + "defaultCode": 57510, + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 231, + "order": 25, + "prevSize": 32, + "code": 59698, + "ligatures": "folder-minus, directory4", + "name": "folder-minus" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 79 + }, + { + "icon": { + "paths": [ + "M576 256l-128-128h-448v832h1024v-704h-448zM512 864l-224-224h160v-256h128v256h160l-224 224z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "folder-download", + "directory", + "folder-save" + ], + "defaultCode": 57513, + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 234, + "order": 26, + "prevSize": 32, + "code": 59699, + "ligatures": "folder-download, directory5", + "name": "folder-download" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 80 + }, + { + "icon": { + "paths": [ + "M576 256l-128-128h-448v832h1024v-704h-448zM512 480l224 224h-160v256h-128v-256h-160l224-224z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "folder-upload", + "directory", + "folder-load" + ], + "defaultCode": 57514, + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 235, + "order": 27, + "prevSize": 32, + "code": 59700, + "ligatures": "folder-upload, directory6", + "name": "folder-upload" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 81 + }, + { + "icon": { + "paths": [ + "M976 0h-384c-26.4 0-63.274 15.274-81.942 33.942l-476.116 476.116c-18.668 18.668-18.668 49.214 0 67.882l412.118 412.118c18.668 18.668 49.214 18.668 67.882 0l476.118-476.118c18.666-18.666 33.94-55.54 33.94-81.94v-384c0-26.4-21.6-48-48-48zM736 384c-53.020 0-96-42.98-96-96s42.98-96 96-96 96 42.98 96 96-42.98 96-96 96z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "price-tag" + ], + "defaultCode": 59886, + "grid": 16 + }, + "attrs": [], + "properties": { + "order": 28, + "id": 1471, + "prevSize": 32, + "code": 59701, + "ligatures": "price-tag", + "name": "tag" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 82 + }, + { + "icon": { + "paths": [ + "M1232 0h-384c-26.4 0-63.274 15.274-81.942 33.942l-476.116 476.116c-18.668 18.668-18.668 49.214 0 67.882l412.118 412.118c18.668 18.668 49.214 18.668 67.882 0l476.118-476.118c18.666-18.666 33.94-55.54 33.94-81.94v-384c0-26.4-21.6-48-48-48zM992 384c-53.020 0-96-42.98-96-96s42.98-96 96-96 96 42.98 96 96-42.98 96-96 96z", + "M128 544l544-544h-80c-26.4 0-63.274 15.274-81.942 33.942l-476.116 476.116c-18.668 18.668-18.668 49.214 0 67.882l412.118 412.118c18.668 18.668 49.214 18.668 67.882 0l30.058-30.058-416-416z" + ], + "width": 1280, + "attrs": [], + "isMulticolor": false, + "tags": [ + "price-tags" + ], + "defaultCode": 59887, + "grid": 16 + }, + "attrs": [], + "properties": { + "order": 29, + "id": 1470, + "prevSize": 32, + "code": 59702, + "ligatures": "price-tags", + "name": "tags" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 83 + }, + { + "icon": { + "paths": [ + "M0 128h128v640h-128zM192 128h64v640h-64zM320 128h64v640h-64zM512 128h64v640h-64zM768 128h64v640h-64zM960 128h64v640h-64zM640 128h32v640h-32zM448 128h32v640h-32zM864 128h32v640h-32zM0 832h64v64h-64zM192 832h64v64h-64zM320 832h64v64h-64zM640 832h64v64h-64zM960 832h64v64h-64zM768 832h128v64h-128zM448 832h128v64h-128z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "barcode" + ], + "defaultCode": 57534, + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 255, + "order": 30, + "prevSize": 32, + "code": 59703, + "ligatures": "barcode", + "name": "barcode" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 84 + }, + { + "icon": { + "paths": [ + "M320 64h-256v256h256v-256zM384 0v0 384h-384v-384h384zM128 128h128v128h-128zM960 64h-256v256h256v-256zM1024 0v0 384h-384v-384h384zM768 128h128v128h-128zM320 704h-256v256h256v-256zM384 640v0 384h-384v-384h384zM128 768h128v128h-128zM448 0h64v64h-64zM512 64h64v64h-64zM448 128h64v64h-64zM512 192h64v64h-64zM448 256h64v64h-64zM512 320h64v64h-64zM448 384h64v64h-64zM448 512h64v64h-64zM512 576h64v64h-64zM448 640h64v64h-64zM512 704h64v64h-64zM448 768h64v64h-64zM512 832h64v64h-64zM448 896h64v64h-64zM512 960h64v64h-64zM960 512h64v64h-64zM64 512h64v64h-64zM128 448h64v64h-64zM0 448h64v64h-64zM256 448h64v64h-64zM320 512h64v64h-64zM384 448h64v64h-64zM576 512h64v64h-64zM640 448h64v64h-64zM704 512h64v64h-64zM768 448h64v64h-64zM832 512h64v64h-64zM896 448h64v64h-64zM960 640h64v64h-64zM576 640h64v64h-64zM640 576h64v64h-64zM704 640h64v64h-64zM832 640h64v64h-64zM896 576h64v64h-64zM960 768h64v64h-64zM576 768h64v64h-64zM640 704h64v64h-64zM768 704h64v64h-64zM832 768h64v64h-64zM896 704h64v64h-64zM960 896h64v64h-64zM640 832h64v64h-64zM704 896h64v64h-64zM768 832h64v64h-64zM832 896h64v64h-64zM640 960h64v64h-64zM768 960h64v64h-64zM896 960h64v64h-64z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "qrcode" + ], + "defaultCode": 57535, + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 256, + "order": 31, + "prevSize": 32, + "code": 59704, + "ligatures": "qrcode", + "name": "qrcode" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 85 + }, + { + "icon": { + "paths": [ + "M384 928c0 53.019-42.981 96-96 96s-96-42.981-96-96c0-53.019 42.981-96 96-96s96 42.981 96 96z", + "M1024 928c0 53.019-42.981 96-96 96s-96-42.981-96-96c0-53.019 42.981-96 96-96s96 42.981 96 96z", + "M1024 512v-384h-768c0-35.346-28.654-64-64-64h-192v64h128l48.074 412.054c-29.294 23.458-48.074 59.5-48.074 99.946 0 70.696 57.308 128 128 128h768v-64h-768c-35.346 0-64-28.654-64-64 0-0.218 0.014-0.436 0.016-0.656l831.984-127.344z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "cart", + "purchase", + "ecommerce", + "shopping" + ], + "defaultCode": 57537, + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 259, + "order": 32, + "prevSize": 32, + "code": 59706, + "ligatures": "cart, purchase", + "name": "cart" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 86 + }, + { + "icon": { + "paths": [ + "M928 128h-832c-52.8 0-96 43.2-96 96v576c0 52.8 43.2 96 96 96h832c52.8 0 96-43.2 96-96v-576c0-52.8-43.2-96-96-96zM96 192h832c17.346 0 32 14.654 32 32v96h-896v-96c0-17.346 14.654-32 32-32zM928 832h-832c-17.346 0-32-14.654-32-32v-288h896v288c0 17.346-14.654 32-32 32zM128 640h64v128h-64zM256 640h64v128h-64zM384 640h64v128h-64z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "credit-card", + "money", + "payment", + "ecommerce" + ], + "defaultCode": 57557, + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 279, + "order": 33, + "prevSize": 32, + "code": 59711, + "ligatures": "credit-card, money5", + "name": "credit-card" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 87 + }, + { + "icon": { + "paths": [ + "M384 64h-320c-35.2 0-64 28.8-64 64v320c0 35.2 28.796 64 64 64h320c35.2 0 64-28.8 64-64v-320c0-35.2-28.8-64-64-64zM384 320h-320v-64h320v64zM896 64h-320c-35.204 0-64 28.8-64 64v832c0 35.2 28.796 64 64 64h320c35.2 0 64-28.8 64-64v-832c0-35.2-28.8-64-64-64zM896 640h-320v-64h320v64zM896 448h-320v-64h320v64zM384 576h-320c-35.2 0-64 28.8-64 64v320c0 35.2 28.796 64 64 64h320c35.2 0 64-28.8 64-64v-320c0-35.2-28.8-64-64-64zM384 832h-128v128h-64v-128h-128v-64h128v-128h64v128h128v64z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "calculator", + "compute", + "math", + "arithmetic", + "sum" + ], + "defaultCode": 57560, + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 282, + "order": 34, + "prevSize": 32, + "code": 59712, + "ligatures": "calculator, compute", + "name": "calculator" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 88 + }, + { + "icon": { + "paths": [ + "M512 0c-282.77 0-512 229.23-512 512s229.23 512 512 512 512-229.23 512-512-229.23-512-512-512zM320 512c0-106.040 85.96-192 192-192s192 85.96 192 192-85.96 192-192 192-192-85.96-192-192zM925.98 683.476v0l-177.42-73.49c12.518-30.184 19.44-63.276 19.44-97.986s-6.922-67.802-19.44-97.986l177.42-73.49c21.908 52.822 34.020 110.73 34.020 171.476s-12.114 118.654-34.020 171.476v0zM683.478 98.020v0 0l-73.49 177.42c-30.184-12.518-63.276-19.44-97.988-19.44s-67.802 6.922-97.986 19.44l-73.49-177.422c52.822-21.904 110.732-34.018 171.476-34.018 60.746 0 118.654 12.114 171.478 34.020zM98.020 340.524l177.422 73.49c-12.518 30.184-19.442 63.276-19.442 97.986s6.922 67.802 19.44 97.986l-177.42 73.49c-21.906-52.822-34.020-110.73-34.020-171.476s12.114-118.654 34.020-171.476zM340.524 925.98l73.49-177.42c30.184 12.518 63.276 19.44 97.986 19.44s67.802-6.922 97.986-19.44l73.49 177.42c-52.822 21.904-110.73 34.020-171.476 34.020-60.744 0-118.654-12.114-171.476-34.020z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "lifebuoy", + "support", + "help" + ], + "defaultCode": 57561, + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 283, + "order": 35, + "prevSize": 32, + "code": 59713, + "ligatures": "lifebuoy, support", + "name": "help" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 89 + }, + { + "icon": { + "paths": [ + "M704 640c-64 64-64 128-128 128s-128-64-192-128-128-128-128-192 64-64 128-128-128-256-192-256-192 192-192 192c0 128 131.5 387.5 256 512s384 256 512 256c0 0 192-128 192-192s-192-256-256-192z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "phone", + "telephone", + "contact", + "support", + "call" + ], + "defaultCode": 57564, + "grid": 16 + }, + "attrs": [], + "properties": { + "order": 36, + "id": 1783, + "prevSize": 32, + "code": 59714, + "ligatures": "phone, telephone", + "name": "phone" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 90 + }, + { + "icon": { + "paths": [ + "M928 128h-832c-52.8 0-96 43.2-96 96v640c0 52.8 43.2 96 96 96h832c52.8 0 96-43.2 96-96v-640c0-52.8-43.2-96-96-96zM398.74 550.372l-270.74 210.892v-501.642l270.74 290.75zM176.38 256h671.24l-335.62 252-335.62-252zM409.288 561.698l102.712 110.302 102.71-110.302 210.554 270.302h-626.528l210.552-270.302zM625.26 550.372l270.74-290.75v501.642l-270.74-210.892z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "envelop", + "mail", + "email", + "contact", + "letter" + ], + "defaultCode": 57583, + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 305, + "order": 37, + "prevSize": 32, + "code": 59717, + "ligatures": "envelop, mail", + "name": "envelop" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 91 + }, + { + "icon": { + "paths": [ + "M512 0c-176.732 0-320 143.268-320 320 0 320 320 704 320 704s320-384 320-704c0-176.732-143.27-320-320-320zM512 516c-108.248 0-196-87.752-196-196s87.752-196 196-196 196 87.752 196 196-87.752 196-196 196zM388 320c0-68.483 55.517-124 124-124s124 55.517 124 124c0 68.483-55.517 124-124 124s-124-55.517-124-124z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "location", + "map-marker", + "pin" + ], + "defaultCode": 57587, + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 310, + "order": 38, + "prevSize": 32, + "code": 59720, + "ligatures": "location2, map-marker2", + "name": "location" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 92 + }, + { + "icon": { + "paths": [ + "M544.010 1024.004c-2.296 0-4.622-0.25-6.94-0.764-14.648-3.25-25.070-16.238-25.070-31.24v-480h-480c-15.002 0-27.992-10.422-31.24-25.070-3.25-14.646 4.114-29.584 17.708-35.928l960-448c12.196-5.688 26.644-3.144 36.16 6.372 9.516 9.514 12.060 23.966 6.372 36.16l-448 960c-5.342 11.44-16.772 18.47-28.99 18.47zM176.242 448h367.758c17.674 0 32 14.328 32 32v367.758l349.79-749.546-749.548 349.788z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "compass", + "direction", + "location" + ], + "defaultCode": 57593, + "grid": 16 + }, + "attrs": [], + "properties": { + "order": 39, + "id": 1524, + "prevSize": 32, + "code": 59721, + "ligatures": "compass, direction", + "name": "compass" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 93 + }, + { + "icon": { + "paths": [ + "M512 0c-282.77 0-512 229.23-512 512s229.23 512 512 512 512-229.23 512-512-229.23-512-512-512zM96 512c0-229.75 186.25-416 416-416 109.574 0 209.232 42.386 283.534 111.628l-411.534 176.372-176.372 411.534c-69.242-74.302-111.628-173.96-111.628-283.534zM585.166 585.166l-256.082 109.75 109.75-256.082 146.332 146.332zM512 928c-109.574 0-209.234-42.386-283.532-111.628l411.532-176.372 176.372-411.532c69.242 74.298 111.628 173.958 111.628 283.532 0 229.75-186.25 416-416 416z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "compass", + "direction", + "location" + ], + "defaultCode": 57592, + "grid": 16 + }, + "attrs": [], + "properties": { + "order": 40, + "id": 1455, + "prevSize": 32, + "code": 59722, + "ligatures": "compass2, direction2", + "name": "compass2" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 94 + }, + { + "icon": { + "paths": [ + "M0 192l320-128v768l-320 128z", + "M384 32l320 192v736l-320-160z", + "M768 224l256-192v768l-256 192z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "map", + "guide" + ], + "defaultCode": 57596, + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 319, + "order": 41, + "prevSize": 32, + "code": 59723, + "ligatures": "map, guide", + "name": "map" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 95 + }, + { + "icon": { + "paths": [ + "M640 64c247.424 0 448 200.576 448 448s-200.576 448-448 448v-96c94.024 0 182.418-36.614 248.902-103.098s103.098-154.878 103.098-248.902c0-94.022-36.614-182.418-103.098-248.902s-154.878-103.098-248.902-103.098c-94.022 0-182.418 36.614-248.902 103.098-51.14 51.138-84.582 115.246-97.306 184.902h186.208l-224 256-224-256h164.57c31.060-217.102 217.738-384 443.43-384zM832 448v128h-256v-320h128v192z" + ], + "width": 1088, + "attrs": [], + "isMulticolor": false, + "tags": [ + "history", + "time", + "archive", + "past" + ], + "defaultCode": 57599, + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 323, + "order": 42, + "prevSize": 32, + "code": 59725, + "ligatures": "history, time", + "name": "history" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 96 + }, + { + "icon": { + "paths": [ + "M1025.5 800c0-288-256-224-256-448 0-18.56-1.788-34.42-5.048-47.928-16.83-113.018-92.156-203.72-189.772-231.36 0.866-3.948 1.32-8.032 1.32-12.21 0-33.278-28.8-60.502-64-60.502s-64 27.224-64 60.5c0 4.18 0.456 8.264 1.32 12.21-109.47 30.998-190.914 141.298-193.254 273.442-0.040 1.92-0.066 3.864-0.066 5.846 0 224.002-256 160.002-256 448.002 0 76.226 170.59 139.996 398.97 156.080 21.524 40.404 64.056 67.92 113.030 67.92s91.508-27.516 113.030-67.92c228.38-16.084 398.97-79.854 398.97-156.080 0-0.228-0.026-0.456-0.028-0.682l1.528 0.682zM826.246 854.096c-54.23 14.47-118.158 24.876-186.768 30.648-5.704-65.418-60.582-116.744-127.478-116.744s-121.774 51.326-127.478 116.744c-68.608-5.772-132.538-16.178-186.768-30.648-74.63-19.914-110.31-42.19-123.368-54.096 13.058-11.906 48.738-34.182 123.368-54.096 86.772-23.152 198.372-35.904 314.246-35.904s227.474 12.752 314.246 35.904c74.63 19.914 110.31 42.19 123.368 54.096-13.058 11.906-48.738 34.182-123.368 54.096z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "bell", + "alarm", + "notification" + ], + "defaultCode": 57611, + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 332, + "order": 52, + "prevSize": 32, + "code": 59729, + "ligatures": "bell, alarm2", + "name": "bell" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 97 + }, + { + "icon": { + "paths": [ + "M320 384h128v128h-128zM512 384h128v128h-128zM704 384h128v128h-128zM128 768h128v128h-128zM320 768h128v128h-128zM512 768h128v128h-128zM320 576h128v128h-128zM512 576h128v128h-128zM704 576h128v128h-128zM128 576h128v128h-128zM832 0v64h-128v-64h-448v64h-128v-64h-128v1024h960v-1024h-128zM896 960h-832v-704h832v704z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "calendar", + "date", + "schedule", + "time", + "day" + ], + "defaultCode": 57619, + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 340, + "order": 44, + "prevSize": 32, + "code": 59731, + "ligatures": "calendar, date", + "name": "calendar" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 98 + }, + { + "icon": { + "paths": [ + "M256 64h512v128h-512v-128z", + "M960 256h-896c-35.2 0-64 28.8-64 64v320c0 35.2 28.794 64 64 64h192v256h512v-256h192c35.2 0 64-28.8 64-64v-320c0-35.2-28.8-64-64-64zM128 448c-35.346 0-64-28.654-64-64s28.654-64 64-64 64 28.654 64 64-28.652 64-64 64zM704 896h-384v-320h384v320z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "printer", + "print" + ], + "defaultCode": 57624, + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 345, + "order": 45, + "prevSize": 32, + "code": 59732, + "ligatures": "printer, print", + "name": "printer" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 99 + }, + { + "icon": { + "paths": [ + "M1088 128h-1024c-35.2 0-64 28.8-64 64v640c0 35.2 28.8 64 64 64h1024c35.2 0 64-28.8 64-64v-640c0-35.2-28.8-64-64-64zM640 256h128v128h-128v-128zM832 448v128h-128v-128h128zM448 256h128v128h-128v-128zM640 448v128h-128v-128h128zM256 256h128v128h-128v-128zM448 448v128h-128v-128h128zM128 256h64v128h-64v-128zM128 448h128v128h-128v-128zM192 768h-64v-128h64v128zM768 768h-512v-128h512v128zM1024 768h-192v-128h192v128zM1024 576h-128v-128h128v128zM1024 384h-192v-128h192v128z" + ], + "width": 1152, + "attrs": [], + "isMulticolor": false, + "tags": [ + "keyboard", + "typing", + "type" + ], + "defaultCode": 57630, + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 351, + "order": 205, + "prevSize": 32, + "code": 59733, + "ligatures": "keyboard, typing", + "name": "keyboard" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 100 + }, + { + "icon": { + "paths": [ + "M0 64v640h1024v-640h-1024zM960 640h-896v-512h896v512zM672 768h-320l-32 128-64 64h512l-64-64z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "display", + "screen", + "monitor", + "computer", + "desktop", + "pc" + ], + "defaultCode": 57632, + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 353, + "order": 46, + "prevSize": 32, + "code": 59734, + "ligatures": "display, screen", + "name": "display" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 101 + }, + { + "icon": { + "paths": [ + "M896 704v-512c0-35.2-28.8-64-64-64h-640c-35.2 0-64 28.8-64 64v512h-128v192h1024v-192h-128zM640 832h-256v-64h256v64zM832 704h-640v-511.886c0.034-0.040 0.076-0.082 0.114-0.114h639.77c0.040 0.034 0.082 0.076 0.116 0.116v511.884z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "laptop", + "computer", + "pc" + ], + "defaultCode": 57636, + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 357, + "order": 47, + "prevSize": 32, + "code": 59735, + "ligatures": "laptop, computer", + "name": "laptop" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 102 + }, + { + "icon": { + "paths": [ + "M768 0h-576c-35.2 0-64 28.798-64 64v896c0 35.2 28.798 64 64 64h576c35.2 0 64-28.8 64-64v-896c0-35.202-28.8-64-64-64zM480 977.782c-27.492 0-49.782-22.29-49.782-49.782s22.29-49.782 49.782-49.782 49.782 22.29 49.782 49.782-22.29 49.782-49.782 49.782zM768 832h-576v-704h576v704z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "mobile", + "cell-phone", + "handheld", + "tablet", + "phablet" + ], + "defaultCode": 57638, + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 359, + "order": 48, + "prevSize": 32, + "code": 59737, + "ligatures": "mobile2, cell-phone2", + "name": "mobile" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 103 + }, + { + "icon": { + "paths": [ + "M800 0h-640c-52.8 0-96 43.2-96 96v832c0 52.8 43.2 96 96 96h640c52.8 0 96-43.2 96-96v-832c0-52.8-43.2-96-96-96zM480 992c-17.672 0-32-14.326-32-32s14.328-32 32-32 32 14.326 32 32-14.328 32-32 32zM768 896h-576v-768h576v768z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "tablet", + "mobile" + ], + "defaultCode": 57639, + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 360, + "order": 49, + "prevSize": 32, + "code": 59738, + "ligatures": "tablet, mobile3", + "name": "tablet" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 104 + }, + { + "icon": { + "paths": [ + "M512 576l256-256h-192v-256h-128v256h-192zM744.726 471.272l-71.74 71.742 260.080 96.986-421.066 157.018-421.066-157.018 260.080-96.986-71.742-71.742-279.272 104.728v256l512 192 512-192v-256z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "download", + "save", + "store", + "arrow" + ], + "defaultCode": 57650, + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 371, + "order": 50, + "prevSize": 32, + "code": 59744, + "ligatures": "download, save", + "name": "download" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 105 + }, + { + "icon": { + "paths": [ + "M448 576h128v-256h192l-256-256-256 256h192zM640 432v98.712l293.066 109.288-421.066 157.018-421.066-157.018 293.066-109.288v-98.712l-384 144v256l512 192 512-192v-256z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "upload", + "load", + "arrow" + ], + "defaultCode": 57651, + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 372, + "order": 51, + "prevSize": 32, + "code": 59745, + "ligatures": "upload, load", + "name": "upload" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 106 + }, + { + "icon": { + "paths": [ + "M896 0h-896v1024h1024v-896l-128-128zM512 128h128v256h-128v-256zM896 896h-768v-768h64v320h576v-320h74.978l53.022 53.018v714.982z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "floppy-disk", + "save" + ], + "defaultCode": 57652, + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 376, + "order": 53, + "prevSize": 32, + "code": 59746, + "ligatures": "floppy-disk, save2", + "name": "floppy-disk" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 107 + }, + { + "icon": { + "paths": [ + "M192 896h640c106.038 0 192-85.96 192-192h-1024c0 106.040 85.962 192 192 192zM832 768h64v64h-64v-64zM960 128h-896l-64 512h1024z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "drive", + "save", + "hdd", + "hard-disk" + ], + "defaultCode": 57654, + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 379, + "order": 54, + "prevSize": 32, + "code": 59747, + "ligatures": "drive, save3", + "name": "drive" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 108 + }, + { + "icon": { + "paths": [ + "M512 0c-282.77 0-512 71.634-512 160v128c0 88.366 229.23 160 512 160s512-71.634 512-160v-128c0-88.366-229.23-160-512-160z", + "M512 544c-282.77 0-512-71.634-512-160v192c0 88.366 229.23 160 512 160s512-71.634 512-160v-192c0 88.366-229.23 160-512 160z", + "M512 832c-282.77 0-512-71.634-512-160v192c0 88.366 229.23 160 512 160s512-71.634 512-160v-192c0 88.366-229.23 160-512 160z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "database", + "db", + "server", + "host", + "storage", + "save", + "datecenter" + ], + "defaultCode": 60048, + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 381, + "order": 55, + "prevSize": 32, + "code": 59748, + "ligatures": "database, db", + "name": "database" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 109 + }, + { + "icon": { + "paths": [ + "M512 64c-141.384 0-269.376 57.32-362.032 149.978l-149.968-149.978v384h384l-143.532-143.522c69.496-69.492 165.492-112.478 271.532-112.478 212.068 0 384 171.924 384 384 0 114.696-50.292 217.636-130.018 288l84.666 96c106.302-93.816 173.352-231.076 173.352-384 0-282.77-229.23-512-512-512z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "undo", + "ccw", + "arrow" + ], + "defaultCode": 57659, + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 399, + "order": 56, + "prevSize": 32, + "code": 59749, + "ligatures": "undo, ccw", + "name": "undo" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 110 + }, + { + "icon": { + "paths": [ + "M0 576c0 152.924 67.048 290.184 173.35 384l84.666-96c-79.726-70.364-130.016-173.304-130.016-288 0-212.076 171.93-384 384-384 106.042 0 202.038 42.986 271.53 112.478l-143.53 143.522h384v-384l-149.97 149.978c-92.654-92.658-220.644-149.978-362.030-149.978-282.77 0-512 229.23-512 512z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "redo", + "cw", + "arrow" + ], + "defaultCode": 57660, + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 400, + "order": 57, + "prevSize": 32, + "code": 59750, + "ligatures": "redo, cw", + "name": "redo" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 111 + }, + { + "icon": { + "paths": [ + "M512 64c282.77 0 512 186.25 512 416 0 229.752-229.23 416-512 416-27.156 0-53.81-1.734-79.824-5.044-109.978 109.978-241.25 129.7-368.176 132.596v-26.916c68.536-33.578 128-94.74 128-164.636 0-9.754-0.758-19.33-2.164-28.696-115.796-76.264-189.836-192.754-189.836-323.304 0-229.75 229.23-416 512-416z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "bubble", + "comment", + "chat", + "talk" + ], + "defaultCode": 57680, + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 422, + "order": 58, + "prevSize": 32, + "code": 59755, + "ligatures": "bubble, comment", + "name": "bubble" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 112 + }, + { + "icon": { + "paths": [ + "M1088 901.166c0 45.5 26.028 84.908 64 104.184v15.938c-10.626 1.454-21.472 2.224-32.5 2.224-68.008 0-129.348-28.528-172.722-74.264-26.222 6.982-54.002 10.752-82.778 10.752-159.058 0-288-114.616-288-256s128.942-256 288-256c159.058 0 288 114.616 288 256 0 55.348-19.764 106.592-53.356 148.466-6.824 14.824-10.644 31.312-10.644 48.7zM512 0c278.458 0 504.992 180.614 511.836 405.52-49.182-21.92-103.586-33.52-159.836-33.52-95.56 0-185.816 33.446-254.138 94.178-70.846 62.972-109.862 147.434-109.862 237.822 0 44.672 9.544 87.888 27.736 127.788-5.228 0.126-10.468 0.212-15.736 0.212-27.156 0-53.81-1.734-79.824-5.044-109.978 109.978-241.25 129.7-368.176 132.596v-26.916c68.536-33.578 128-94.74 128-164.636 0-9.754-0.758-19.33-2.164-28.696-115.796-76.264-189.836-192.754-189.836-323.304 0-229.75 229.23-416 512-416z" + ], + "width": 1152, + "attrs": [], + "isMulticolor": false, + "tags": [ + "bubbles", + "comments", + "chat", + "talk" + ], + "defaultCode": 57681, + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 423, + "order": 59, + "prevSize": 32, + "code": 59756, + "ligatures": "bubbles, comments", + "name": "bubbles" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 113 + }, + { + "icon": { + "paths": [ + "M576 706.612v-52.78c70.498-39.728 128-138.772 128-237.832 0-159.058 0-288-192-288s-192 128.942-192 288c0 99.060 57.502 198.104 128 237.832v52.78c-217.102 17.748-384 124.42-384 253.388h896c0-128.968-166.898-235.64-384-253.388z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "user", + "profile", + "avatar", + "person", + "member" + ], + "defaultCode": 57733, + "grid": 16 + }, + "attrs": [], + "properties": { + "order": 60, + "id": 1628, + "prevSize": 32, + "code": 59761, + "ligatures": "user, profile2", + "name": "user" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 114 + }, + { + "icon": { + "paths": [ + "M768 770.612v-52.78c70.498-39.728 128-138.772 128-237.832 0-159.058 0-288-192-288s-192 128.942-192 288c0 99.060 57.502 198.104 128 237.832v52.78c-217.102 17.748-384 124.42-384 253.388h896c0-128.968-166.898-235.64-384-253.388z", + "M327.196 795.328c55.31-36.15 124.080-63.636 199.788-80.414-15.054-17.784-28.708-37.622-40.492-59.020-30.414-55.234-46.492-116.058-46.492-175.894 0-86.042 0-167.31 30.6-233.762 29.706-64.504 83.128-104.496 159.222-119.488-16.914-76.48-61.94-126.75-181.822-126.75-192 0-192 128.942-192 288 0 99.060 57.502 198.104 128 237.832v52.78c-217.102 17.748-384 124.42-384 253.388h279.006c14.518-12.91 30.596-25.172 48.19-36.672z" + ], + "width": 1152, + "attrs": [], + "isMulticolor": false, + "tags": [ + "users", + "group", + "team", + "members", + "community", + "collaborate" + ], + "defaultCode": 58908, + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 476, + "order": 61, + "prevSize": 32, + "code": 59762, + "ligatures": "users, group", + "name": "users" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 115 + }, + { + "icon": { + "paths": [ + "M384 736c0-151.234 95.874-280.486 230.032-330.2 16.28-36.538 25.968-77.164 25.968-117.8 0-159.058 0-288-192-288s-192 128.942-192 288c0 99.060 57.502 198.104 128 237.832v52.78c-217.102 17.748-384 124.42-384 253.388h397.306c-8.664-30.53-13.306-62.732-13.306-96z", + "M736 448c-159.058 0-288 128.942-288 288s128.942 288 288 288c159.056 0 288-128.942 288-288s-128.942-288-288-288zM896 768h-128v128h-64v-128h-128v-64h128v-128h64v128h128v64z" + ], + "width": 1024, + "attrs": [], + "isMulticolor": false, + "tags": [ + "user-plus", + "user", + "user-add", + "profile", + "avatar", + "person", + "member" + ], + "defaultCode": 57735, + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 478, + "order": 62, + "prevSize": 32, + "code": 59763, + "ligatures": "user-plus, user2", + "name": "user-plus" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 116 + }, + { + "icon": { + "paths": [ + "M384 736c0-151.234 95.874-280.486 230.032-330.2 16.28-36.538 25.968-77.164 25.968-117.8 0-159.058 0-288-192-288s-192 128.942-192 288c0 99.060 57.502 198.104 128 237.832v52.78c-217.102 17.748-384 124.42-384 253.388h397.306c-8.664-30.53-13.306-62.732-13.306-96z", + "M736 448c-159.058 0-288 128.942-288 288s128.942 288 288 288c159.056 0 288-128.942 288-288s-128.942-288-288-288zM896 768h-320v-64h320v64z" + ], + "width": 1024, + "attrs": [], + "isMulticolor": false, + "tags": [ + "user-minus", + "user", + "user-remove", + "profile", + "avatar", + "person", + "member" + ], + "defaultCode": 57737, + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 480, + "order": 63, + "prevSize": 32, + "code": 59764, + "ligatures": "user-minus, user3", + "name": "user-minus" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 117 + }, + { + "icon": { + "paths": [ + "M960 608l-288 288-96-96-64 64 160 160 352-352z", + "M448 768h320v-115.128c-67.22-39.2-156.308-66.11-256-74.26v-52.78c70.498-39.728 128-138.772 128-237.832 0-159.058 0-288-192-288s-192 128.942-192 288c0 99.060 57.502 198.104 128 237.832v52.78c-217.102 17.748-384 124.42-384 253.388h448v-64z" + ], + "width": 1024, + "attrs": [], + "isMulticolor": false, + "tags": [ + "user-check", + "user", + "user-tick", + "profile", + "avatar", + "person", + "member" + ], + "defaultCode": 57738, + "grid": 16 + }, + "attrs": [], + "properties": { + "order": 64, + "id": 1494, + "prevSize": 32, + "code": 59765, + "ligatures": "user-check, user4", + "name": "user-check" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 118 + }, + { + "icon": { + "paths": [ + "M728.992 512c137.754-87.334 231.008-255.208 231.008-448 0-21.676-1.192-43.034-3.478-64h-889.042c-2.29 20.968-3.48 42.326-3.48 64 0 192.792 93.254 360.666 231.006 448-137.752 87.334-231.006 255.208-231.006 448 0 21.676 1.19 43.034 3.478 64h889.042c2.288-20.966 3.478-42.324 3.478-64 0.002-192.792-93.252-360.666-231.006-448zM160 960c0-186.912 80.162-345.414 224-397.708v-100.586c-143.838-52.29-224-210.792-224-397.706v0h704c0 186.914-80.162 345.416-224 397.706v100.586c143.838 52.294 224 210.796 224 397.708h-704zM619.626 669.594c-71.654-40.644-75.608-93.368-75.626-125.366v-64.228c0-31.994 3.804-84.914 75.744-125.664 38.504-22.364 71.808-56.348 97.048-98.336h-409.582c25.266 42.032 58.612 76.042 97.166 98.406 71.654 40.644 75.606 93.366 75.626 125.366v64.228c0 31.992-3.804 84.914-75.744 125.664-72.622 42.18-126.738 125.684-143.090 226.336h501.67c-16.364-100.708-70.53-184.248-143.212-226.406z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "hour-glass", + "loading", + "busy", + "wait" + ], + "defaultCode": 57763, + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 506, + "order": 65, + "prevSize": 32, + "code": 59769, + "ligatures": "hour-glass, loading", + "name": "hour-glass" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 119 + }, + { + "icon": { + "paths": [ + "M384 128c0-70.692 57.308-128 128-128s128 57.308 128 128c0 70.692-57.308 128-128 128s-128-57.308-128-128zM655.53 240.47c0-70.692 57.308-128 128-128s128 57.308 128 128c0 70.692-57.308 128-128 128s-128-57.308-128-128zM832 512c0-35.346 28.654-64 64-64s64 28.654 64 64c0 35.346-28.654 64-64 64s-64-28.654-64-64zM719.53 783.53c0-35.346 28.654-64 64-64s64 28.654 64 64c0 35.346-28.654 64-64 64s-64-28.654-64-64zM448.002 896c0 0 0 0 0 0 0-35.346 28.654-64 64-64s64 28.654 64 64c0 0 0 0 0 0 0 35.346-28.654 64-64 64s-64-28.654-64-64zM176.472 783.53c0 0 0 0 0 0 0-35.346 28.654-64 64-64s64 28.654 64 64c0 0 0 0 0 0 0 35.346-28.654 64-64 64s-64-28.654-64-64zM144.472 240.47c0 0 0 0 0 0 0-53.019 42.981-96 96-96s96 42.981 96 96c0 0 0 0 0 0 0 53.019-42.981 96-96 96s-96-42.981-96-96zM56 512c0-39.765 32.235-72 72-72s72 32.235 72 72c0 39.765-32.235 72-72 72s-72-32.235-72-72z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "spinner", + "loading", + "loading-wheel", + "busy", + "wait" + ], + "defaultCode": 57767, + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 510, + "order": 66, + "prevSize": 32, + "code": 59770, + "ligatures": "spinner, loading2", + "name": "spinner" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 120 + }, + { + "icon": { + "paths": [ + "M1024 512c-1.278-66.862-15.784-133.516-42.576-194.462-26.704-61-65.462-116.258-113.042-161.92-47.552-45.696-103.944-81.82-164.984-105.652-61.004-23.924-126.596-35.352-191.398-33.966-64.81 1.282-129.332 15.374-188.334 41.356-59.048 25.896-112.542 63.47-156.734 109.576-44.224 46.082-79.16 100.708-102.186 159.798-23.114 59.062-34.128 122.52-32.746 185.27 1.286 62.76 14.964 125.148 40.134 182.206 25.088 57.1 61.476 108.828 106.11 151.548 44.61 42.754 97.472 76.504 154.614 98.72 57.118 22.304 118.446 32.902 179.142 31.526 60.708-1.29 120.962-14.554 176.076-38.914 55.15-24.282 105.116-59.48 146.366-102.644 41.282-43.14 73.844-94.236 95.254-149.43 13.034-33.458 21.88-68.4 26.542-103.798 1.246 0.072 2.498 0.12 3.762 0.12 35.346 0 64-28.652 64-64 0-1.796-0.094-3.572-0.238-5.332h0.238zM922.306 681.948c-23.472 53.202-57.484 101.4-99.178 141.18-41.67 39.81-91 71.186-144.244 91.79-53.228 20.678-110.29 30.452-166.884 29.082-56.604-1.298-112.596-13.736-163.82-36.474-51.25-22.666-97.684-55.49-135.994-95.712-38.338-40.198-68.528-87.764-88.322-139.058-19.87-51.284-29.228-106.214-27.864-160.756 1.302-54.552 13.328-108.412 35.254-157.69 21.858-49.3 53.498-93.97 92.246-130.81 38.73-36.868 84.53-65.87 133.874-84.856 49.338-19.060 102.136-28.006 154.626-26.644 52.5 1.306 104.228 12.918 151.562 34.034 47.352 21.050 90.256 51.502 125.624 88.782 35.396 37.258 63.21 81.294 81.39 128.688 18.248 47.392 26.782 98.058 25.424 148.496h0.238c-0.144 1.76-0.238 3.536-0.238 5.332 0 33.012 24.992 60.174 57.086 63.624-6.224 34.822-16.53 68.818-30.78 100.992z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "spinner", + "loading", + "loading-wheel", + "busy", + "wait" + ], + "defaultCode": 57768, + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 511, + "order": 67, + "prevSize": 32, + "code": 59771, + "ligatures": "spinner2, loading3", + "name": "spinner1" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 121 + }, + { + "icon": { + "paths": [ + "M192 512c0-12.18 0.704-24.196 2.030-36.022l-184.98-60.104c-5.916 31.14-9.050 63.264-9.050 96.126 0 147.23 62.166 279.922 161.654 373.324l114.284-157.296c-52.124-56.926-83.938-132.758-83.938-216.028zM832 512c0 83.268-31.812 159.102-83.938 216.028l114.284 157.296c99.488-93.402 161.654-226.094 161.654-373.324 0-32.862-3.132-64.986-9.048-96.126l-184.98 60.104c1.324 11.828 2.028 23.842 2.028 36.022zM576 198.408c91.934 18.662 169.544 76.742 214.45 155.826l184.978-60.102c-73.196-155.42-222.24-268.060-399.428-290.156v194.432zM233.55 354.232c44.906-79.084 122.516-137.164 214.45-155.826v-194.43c-177.188 22.096-326.23 134.736-399.426 290.154l184.976 60.102zM644.556 803.328c-40.39 18.408-85.272 28.672-132.556 28.672s-92.166-10.264-132.554-28.67l-114.292 157.31c73.206 40.366 157.336 63.36 246.846 63.36s173.64-22.994 246.848-63.36l-114.292-157.312z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "spinner", + "loading", + "loading-wheel", + "busy", + "wait" + ], + "defaultCode": 57769, + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 513, + "order": 145, + "prevSize": 32, + "code": 59773, + "ligatures": "spinner4, loading5", + "name": "spinner2" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 122 + }, + { + "icon": { + "paths": [ + "M512 1024c-136.76 0-265.334-53.258-362.040-149.96-96.702-96.706-149.96-225.28-149.96-362.040 0-96.838 27.182-191.134 78.606-272.692 50-79.296 120.664-143.372 204.356-185.3l43 85.832c-68.038 34.084-125.492 86.186-166.15 150.67-41.746 66.208-63.812 142.798-63.812 221.49 0 229.382 186.618 416 416 416s416-186.618 416-416c0-78.692-22.066-155.282-63.81-221.49-40.66-64.484-98.114-116.584-166.15-150.67l43-85.832c83.692 41.928 154.358 106.004 204.356 185.3 51.422 81.558 78.604 175.854 78.604 272.692 0 136.76-53.258 265.334-149.96 362.040-96.706 96.702-225.28 149.96-362.040 149.96z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "spinner", + "loading", + "loading-wheel", + "busy", + "wait" + ], + "defaultCode": 60198, + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 520, + "order": 376, + "prevSize": 32, + "code": 59777, + "ligatures": "spinner8, loading9", + "name": "spinner3" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 123 + }, + { + "icon": { + "paths": [ + "M512 0c-278.748 0-505.458 222.762-511.848 499.974 5.92-241.864 189.832-435.974 415.848-435.974 229.75 0 416 200.576 416 448 0 53.020 42.98 96 96 96s96-42.98 96-96c0-282.77-229.23-512-512-512zM512 1024c278.748 0 505.458-222.762 511.848-499.974-5.92 241.864-189.832 435.974-415.848 435.974-229.75 0-416-200.576-416-448 0-53.020-42.98-96-96-96s-96 42.98-96 96c0 282.77 229.23 512 512 512z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "spinner", + "loading", + "loading-wheel", + "busy", + "wait" + ], + "defaultCode": 57776, + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 521, + "order": 68, + "prevSize": 32, + "code": 59778, + "ligatures": "spinner9, loading10", + "name": "spinner4" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 124 + }, + { + "icon": { + "paths": [ + "M0.042 513.618l-0.022 0.004c0 0 0.012 0.090 0.028 0.222 0.11 3.878 0.55 7.676 1.322 11.352 0.204 1.746 0.428 3.66 0.674 5.774 0.222 1.886 0.46 3.914 0.718 6.078 0.374 2.566 0.77 5.292 1.19 8.176 0.856 5.746 1.8 12.124 2.908 18.958 1.348 6.446 2.804 13.414 4.364 20.864 0.71 3.718 1.776 7.504 2.786 11.406 1.024 3.89 2.078 7.894 3.16 12.004 0.566 2.042 1.040 4.132 1.708 6.208 0.656 2.074 1.32 4.176 1.988 6.3 1.348 4.234 2.726 8.566 4.136 12.988 0.352 1.106 0.708 2.21 1.064 3.324 0.408 1.102 0.814 2.208 1.226 3.316 0.826 2.218 1.658 4.458 2.502 6.714 1.696 4.496 3.422 9.078 5.18 13.742 1.968 4.566 3.97 9.214 6.004 13.934 1.018 2.348 2.044 4.714 3.078 7.098 1.048 2.376 2.27 4.704 3.408 7.074 2.322 4.714 4.678 9.496 7.062 14.332 2.47 4.786 5.208 9.512 7.846 14.328 1.336 2.398 2.68 4.808 4.028 7.23 1.368 2.41 2.902 4.75 4.356 7.14 2.95 4.738 5.93 9.524 8.934 14.348 12.64 18.894 26.676 37.566 42.21 55.278 15.712 17.578 32.726 34.25 50.692 49.602 18.18 15.136 37.264 28.902 56.726 41.114 19.604 12.036 39.644 22.312 59.376 31.144 5.004 2.040 9.964 4.062 14.878 6.066 2.462 0.972 4.868 2.032 7.336 2.918 2.47 0.868 4.93 1.734 7.376 2.594 4.898 1.684 9.678 3.468 14.484 4.992 4.832 1.43 9.604 2.844 14.312 4.242 2.356 0.672 4.66 1.426 7.004 2.012 2.346 0.574 4.676 1.14 6.986 1.704 4.606 1.118 9.142 2.214 13.604 3.296 4.5 0.868 8.926 1.722 13.27 2.558 2.166 0.41 4.31 0.82 6.434 1.222 1.062 0.2 2.118 0.398 3.166 0.598 1.060 0.148 2.118 0.292 3.166 0.442 4.192 0.582 8.292 1.152 12.3 1.71 1.998 0.274 3.972 0.546 5.922 0.816 1.946 0.286 3.904 0.378 5.814 0.57 3.822 0.336 7.544 0.664 11.164 0.98 3.616 0.304 7.104 0.688 10.526 0.738 0.23 0.008 0.452 0.016 0.682 0.026 0.614 34.812 29.008 62.846 63.968 62.846 0.542 0 1.080-0.028 1.62-0.042v0.022c0 0 0.090-0.012 0.224-0.028 3.878-0.11 7.674-0.55 11.35-1.322 1.748-0.204 3.662-0.426 5.776-0.672 1.884-0.222 3.912-0.462 6.076-0.718 2.566-0.376 5.292-0.772 8.176-1.192 5.746-0.856 12.124-1.8 18.958-2.908 6.446-1.348 13.414-2.804 20.864-4.362 3.718-0.712 7.504-1.778 11.406-2.786 3.892-1.026 7.894-2.080 12.004-3.162 2.044-0.566 4.132-1.040 6.208-1.708 2.074-0.656 4.174-1.318 6.3-1.988 4.232-1.348 8.564-2.726 12.988-4.134 1.104-0.354 2.21-0.708 3.324-1.066 1.1-0.406 2.206-0.814 3.316-1.226 2.216-0.824 4.456-1.658 6.714-2.5 4.496-1.698 9.078-3.424 13.74-5.182 4.568-1.968 9.216-3.97 13.936-6.004 2.348-1.018 4.714-2.044 7.098-3.078 2.376-1.048 4.702-2.27 7.074-3.408 4.714-2.322 9.494-4.678 14.33-7.062 4.786-2.47 9.512-5.208 14.328-7.846 2.398-1.336 4.808-2.678 7.23-4.028 2.41-1.366 4.75-2.9 7.14-4.354 4.738-2.952 9.524-5.93 14.35-8.936 18.89-12.64 37.564-26.674 55.278-42.21 17.574-15.712 34.248-32.726 49.602-50.69 15.136-18.182 28.902-37.264 41.112-56.728 12.036-19.602 22.314-39.644 31.142-59.376 2.042-5.002 4.062-9.964 6.068-14.878 0.974-2.462 2.032-4.868 2.918-7.334 0.87-2.472 1.732-4.932 2.592-7.376 1.686-4.898 3.468-9.678 4.994-14.484 1.432-4.832 2.846-9.604 4.24-14.31 0.674-2.358 1.43-4.66 2.016-7.004 0.57-2.348 1.138-4.676 1.702-6.988 1.118-4.606 2.216-9.14 3.296-13.602 0.868-4.502 1.72-8.928 2.558-13.272 0.41-2.164 0.818-4.308 1.222-6.434 0.2-1.060 0.398-2.116 0.596-3.164 0.148-1.062 0.296-2.118 0.444-3.168 0.582-4.19 1.152-8.292 1.708-12.3 0.278-1.996 0.55-3.97 0.82-5.922 0.284-1.946 0.376-3.902 0.568-5.812 0.336-3.822 0.664-7.546 0.98-11.164 0.304-3.616 0.686-7.106 0.738-10.528 0.020-0.534 0.040-1.044 0.058-1.574 35.224-0.146 63.732-28.738 63.732-63.992 0-0.542-0.028-1.080-0.042-1.62h0.022c0 0-0.012-0.090-0.028-0.224-0.11-3.878-0.55-7.674-1.322-11.35-0.204-1.748-0.428-3.662-0.674-5.776-0.222-1.886-0.46-3.914-0.718-6.076-0.374-2.566-0.77-5.294-1.19-8.176-0.856-5.746-1.8-12.124-2.908-18.958-1.348-6.444-2.804-13.414-4.364-20.862-0.71-3.72-1.776-7.506-2.786-11.408-1.024-3.892-2.078-7.894-3.16-12.002-0.566-2.044-1.040-4.134-1.708-6.208-0.656-2.076-1.32-4.174-1.988-6.3-1.348-4.234-2.726-8.566-4.136-12.99-0.352-1.102-0.708-2.21-1.064-3.324-0.408-1.1-0.814-2.206-1.226-3.316-0.826-2.216-1.658-4.454-2.502-6.714-1.696-4.498-3.422-9.080-5.18-13.74-1.968-4.57-3.97-9.216-6.004-13.936-1.020-2.348-2.044-4.714-3.078-7.098-1.048-2.376-2.27-4.702-3.408-7.076-2.322-4.714-4.678-9.494-7.062-14.33-2.47-4.786-5.208-9.512-7.846-14.328-1.336-2.398-2.68-4.808-4.028-7.23-1.368-2.41-2.902-4.75-4.356-7.14-2.95-4.74-5.93-9.524-8.934-14.35-12.64-18.892-26.676-37.564-42.21-55.278-15.712-17.576-32.726-34.25-50.692-49.602-18.18-15.136-37.264-28.902-56.726-41.112-19.604-12.036-39.644-22.314-59.376-31.142-5.004-2.040-9.964-4.062-14.878-6.068-2.462-0.974-4.868-2.032-7.336-2.918-2.47-0.87-4.93-1.734-7.376-2.592-4.898-1.684-9.678-3.468-14.484-4.994-4.832-1.432-9.604-2.846-14.312-4.242-2.356-0.672-4.66-1.428-7.004-2.014-2.346-0.572-4.676-1.138-6.986-1.702-4.606-1.118-9.142-2.216-13.604-3.298-4.5-0.868-8.926-1.72-13.27-2.558-2.166-0.412-4.31-0.82-6.434-1.222-1.062-0.2-2.118-0.398-3.166-0.596-1.060-0.148-2.118-0.296-3.166-0.442-4.192-0.584-8.292-1.154-12.3-1.71-1.998-0.276-3.972-0.55-5.922-0.82-1.946-0.284-3.904-0.376-5.814-0.57-3.822-0.336-7.544-0.664-11.164-0.98-3.616-0.304-7.104-0.686-10.526-0.738-0.852-0.032-1.674-0.062-2.512-0.092-0.65-34.78-29.028-62.778-63.966-62.778-0.542 0-1.080 0.028-1.62 0.042l-0.002-0.022c0 0-0.090 0.012-0.222 0.028-3.878 0.11-7.676 0.55-11.352 1.322-1.748 0.204-3.662 0.426-5.776 0.672-1.884 0.222-3.912 0.462-6.076 0.718-2.566 0.376-5.292 0.772-8.176 1.192-5.746 0.856-12.124 1.8-18.958 2.908-6.446 1.348-13.414 2.804-20.864 4.362-3.718 0.712-7.504 1.778-11.406 2.786-3.892 1.026-7.894 2.080-12.004 3.162-2.044 0.566-4.132 1.040-6.208 1.708-2.074 0.656-4.174 1.318-6.3 1.988-4.232 1.348-8.564 2.726-12.988 4.134-1.104 0.354-2.21 0.708-3.324 1.066-1.1 0.406-2.206 0.814-3.316 1.226-2.216 0.824-4.456 1.658-6.714 2.5-4.496 1.698-9.078 3.424-13.74 5.182-4.568 1.968-9.216 3.97-13.936 6.004-2.348 1.018-4.714 2.044-7.098 3.078-2.376 1.048-4.702 2.27-7.074 3.408-4.714 2.322-9.494 4.678-14.33 7.062-4.786 2.47-9.512 5.208-14.328 7.846-2.398 1.336-4.808 2.678-7.23 4.028-2.41 1.366-4.75 2.9-7.14 4.354-4.738 2.952-9.524 5.93-14.35 8.936-18.89 12.64-37.564 26.674-55.278 42.21-17.574 15.712-34.248 32.726-49.602 50.69-15.136 18.182-28.902 37.264-41.112 56.728-12.036 19.602-22.314 39.644-31.142 59.376-2.042 5.002-4.062 9.964-6.068 14.878-0.974 2.462-2.032 4.868-2.918 7.334-0.87 2.472-1.732 4.932-2.592 7.376-1.686 4.898-3.468 9.678-4.994 14.484-1.432 4.832-2.846 9.604-4.24 14.31-0.674 2.358-1.43 4.66-2.016 7.004-0.57 2.348-1.138 4.676-1.702 6.988-1.118 4.606-2.216 9.14-3.296 13.602-0.868 4.502-1.72 8.928-2.558 13.272-0.41 2.164-0.818 4.308-1.222 6.434-0.2 1.060-0.398 2.116-0.596 3.164-0.148 1.062-0.296 2.118-0.444 3.168-0.582 4.19-1.152 8.292-1.708 12.3-0.278 1.996-0.55 3.97-0.82 5.922-0.284 1.946-0.376 3.902-0.568 5.812-0.336 3.822-0.664 7.546-0.98 11.164-0.304 3.616-0.686 7.106-0.738 10.528-0.020 0.548-0.040 1.076-0.058 1.62-34.376 1.112-61.902 29.304-61.902 63.946 0 0.542 0.028 1.078 0.042 1.618zM73.518 448.706c0.042-0.196 0.086-0.384 0.128-0.58 0.644-3.248 1.632-6.542 2.556-9.942 0.934-3.388 1.894-6.876 2.88-10.454 0.516-1.78 0.934-3.602 1.546-5.406 0.596-1.802 1.202-3.628 1.81-5.476 1.218-3.682 2.464-7.45 3.736-11.294 0.316-0.958 0.634-1.924 0.956-2.892 0.37-0.954 0.74-1.914 1.114-2.876 0.746-1.924 1.5-3.868 2.26-5.83 1.52-3.904 3.070-7.882 4.646-11.93 1.768-3.96 3.566-7.99 5.392-12.080 0.908-2.038 1.824-4.090 2.746-6.156 0.932-2.060 2.036-4.072 3.052-6.126 2.070-4.084 4.17-8.222 6.294-12.412 2.202-4.142 4.654-8.224 6.998-12.392 1.184-2.074 2.374-4.16 3.57-6.256 1.21-2.086 2.586-4.102 3.876-6.166 2.616-4.098 5.256-8.232 7.918-12.402 11.234-16.298 23.632-32.398 37.33-47.638 13.874-15.104 28.842-29.404 44.598-42.548 15.974-12.928 32.686-24.65 49.676-35.022 17.13-10.194 34.6-18.838 51.734-26.258 4.35-1.7 8.662-3.382 12.934-5.050 2.136-0.812 4.216-1.71 6.36-2.444 2.146-0.714 4.28-1.428 6.404-2.136 4.25-1.386 8.382-2.888 12.548-4.142 4.184-1.174 8.314-2.332 12.392-3.474 2.038-0.55 4.026-1.19 6.054-1.662 2.030-0.458 4.044-0.914 6.044-1.368 3.978-0.91 7.896-1.806 11.748-2.688 3.888-0.686 7.71-1.36 11.462-2.022 1.868-0.33 3.716-0.658 5.546-0.98 0.914-0.162 1.824-0.324 2.728-0.484 0.916-0.112 1.828-0.222 2.734-0.332 3.612-0.448 7.148-0.882 10.604-1.31 1.72-0.216 3.422-0.432 5.102-0.644 1.674-0.226 3.364-0.266 5.010-0.408 3.292-0.238 6.498-0.472 9.616-0.7 3.11-0.218 6.11-0.524 9.058-0.508 5.848-0.132 11.32-0.256 16.38-0.372 4.664 0.168 8.948 0.324 12.818 0.462 1.914 0.054 3.726 0.108 5.432 0.156 2.122 0.134 4.108 0.26 5.958 0.378 2.13 0.138 4.060 0.266 5.82 0.38 3.256 0.51 6.592 0.782 9.99 0.782 0.466 0 0.93-0.026 1.396-0.036 0.132 0.008 0.224 0.014 0.224 0.014v-0.020c31.14-0.778 56.75-23.784 61.556-53.754 0.542 0.12 1.064 0.236 1.612 0.356 3.246 0.644 6.542 1.632 9.942 2.556 3.386 0.934 6.876 1.894 10.454 2.88 1.778 0.516 3.602 0.934 5.404 1.546 1.802 0.596 3.63 1.202 5.478 1.812 3.68 1.218 7.448 2.464 11.292 3.736 0.96 0.316 1.924 0.634 2.892 0.956 0.956 0.37 1.914 0.74 2.876 1.112 1.926 0.746 3.868 1.5 5.83 2.26 3.904 1.52 7.884 3.070 11.932 4.646 3.96 1.768 7.988 3.566 12.080 5.392 2.038 0.908 4.088 1.824 6.156 2.746 2.060 0.932 4.072 2.036 6.126 3.054 4.082 2.070 8.222 4.17 12.41 6.294 4.144 2.202 8.226 4.654 12.394 6.998 2.074 1.184 4.16 2.374 6.256 3.572 2.086 1.21 4.102 2.586 6.166 3.876 4.098 2.616 8.23 5.256 12.402 7.918 16.296 11.234 32.398 23.632 47.636 37.33 15.104 13.874 29.406 28.842 42.55 44.598 12.928 15.974 24.648 32.686 35.020 49.676 10.196 17.13 18.84 34.6 26.26 51.736 1.698 4.348 3.382 8.662 5.050 12.932 0.812 2.136 1.71 4.216 2.444 6.36 0.714 2.146 1.428 4.28 2.136 6.404 1.386 4.25 2.888 8.384 4.142 12.548 1.174 4.184 2.33 8.316 3.474 12.392 0.55 2.038 1.19 4.026 1.66 6.054 0.46 2.030 0.916 4.046 1.368 6.046 0.91 3.978 1.808 7.896 2.688 11.748 0.688 3.888 1.362 7.71 2.024 11.462 0.33 1.868 0.656 3.716 0.98 5.548 0.162 0.914 0.324 1.824 0.484 2.728 0.11 0.916 0.222 1.828 0.332 2.734 0.446 3.612 0.882 7.148 1.31 10.604 0.216 1.72 0.432 3.42 0.642 5.1 0.226 1.674 0.268 3.364 0.41 5.010 0.238 3.292 0.472 6.498 0.7 9.616 0.218 3.11 0.524 6.11 0.508 9.058 0.132 5.848 0.256 11.32 0.372 16.38-0.168 4.664-0.324 8.948-0.462 12.818-0.054 1.914-0.108 3.726-0.156 5.432-0.134 2.122-0.26 4.108-0.378 5.958-0.138 2.13-0.266 4.060-0.38 5.82-0.498 3.256-0.768 6.592-0.768 9.99 0 0.468 0.026 0.93 0.036 1.396-0.008 0.132-0.016 0.224-0.016 0.224h0.022c0.768 30.766 23.236 56.128 52.682 61.37-0.066 0.296-0.13 0.584-0.198 0.884-0.644 3.248-1.632 6.542-2.556 9.942-0.934 3.388-1.894 6.876-2.88 10.454-0.516 1.78-0.934 3.602-1.546 5.406-0.596 1.802-1.202 3.628-1.81 5.476-1.218 3.682-2.464 7.45-3.736 11.294-0.316 0.958-0.634 1.924-0.956 2.892-0.37 0.954-0.74 1.914-1.114 2.876-0.746 1.924-1.5 3.868-2.26 5.83-1.52 3.904-3.070 7.882-4.646 11.93-1.768 3.96-3.566 7.99-5.392 12.080-0.908 2.038-1.824 4.090-2.746 6.156-0.932 2.060-2.036 4.072-3.052 6.126-2.070 4.084-4.17 8.222-6.294 12.412-2.202 4.142-4.654 8.224-6.998 12.392-1.184 2.074-2.374 4.16-3.57 6.256-1.21 2.086-2.586 4.102-3.876 6.166-2.616 4.098-5.256 8.232-7.918 12.402-11.234 16.298-23.632 32.398-37.33 47.638-13.874 15.104-28.842 29.404-44.598 42.548-15.974 12.928-32.686 24.65-49.676 35.022-17.13 10.194-34.6 18.838-51.734 26.258-4.35 1.7-8.662 3.382-12.934 5.050-2.136 0.812-4.216 1.71-6.36 2.444-2.146 0.714-4.28 1.428-6.404 2.136-4.25 1.386-8.382 2.888-12.548 4.142-4.184 1.174-8.314 2.332-12.392 3.474-2.038 0.55-4.026 1.19-6.054 1.662-2.030 0.458-4.044 0.914-6.044 1.368-3.978 0.91-7.896 1.806-11.748 2.688-3.888 0.686-7.71 1.36-11.462 2.022-1.868 0.33-3.716 0.658-5.546 0.98-0.914 0.162-1.824 0.324-2.728 0.484-0.916 0.112-1.828 0.222-2.734 0.332-3.612 0.448-7.148 0.882-10.604 1.31-1.72 0.216-3.422 0.432-5.102 0.644-1.674 0.226-3.364 0.266-5.010 0.408-3.292 0.238-6.498 0.472-9.616 0.7-3.11 0.218-6.11 0.524-9.058 0.508-5.848 0.132-11.32 0.256-16.38 0.372-4.664-0.168-8.948-0.324-12.818-0.462-1.914-0.054-3.726-0.108-5.432-0.156-2.122-0.134-4.108-0.26-5.958-0.378-2.13-0.138-4.060-0.266-5.82-0.38-3.256-0.51-6.592-0.782-9.99-0.782-0.466 0-0.93 0.026-1.396 0.036-0.132-0.008-0.224-0.014-0.224-0.014v0.020c-31.004 0.774-56.524 23.586-61.488 53.364-3.2-0.64-6.446-1.61-9.792-2.522-3.386-0.934-6.876-1.894-10.454-2.878-1.778-0.516-3.602-0.938-5.404-1.546-1.802-0.598-3.63-1.204-5.478-1.812-3.68-1.218-7.448-2.464-11.292-3.738-0.96-0.316-1.924-0.632-2.892-0.954-0.956-0.372-1.914-0.742-2.876-1.114-1.926-0.746-3.868-1.5-5.83-2.258-3.904-1.524-7.884-3.070-11.932-4.648-3.96-1.77-7.988-3.566-12.080-5.39-2.038-0.91-4.088-1.824-6.156-2.746-2.060-0.934-4.072-2.036-6.126-3.054-4.082-2.070-8.222-4.172-12.41-6.296-4.144-2.2-8.226-4.652-12.394-6.996-2.074-1.184-4.16-2.376-6.256-3.57-2.086-1.21-4.102-2.586-6.166-3.878-4.098-2.614-8.23-5.254-12.402-7.918-16.296-11.23-32.398-23.632-47.636-37.328-15.104-13.876-29.406-28.84-42.55-44.598-12.928-15.972-24.648-32.684-35.020-49.676-10.196-17.128-18.84-34.602-26.26-51.734-1.698-4.352-3.382-8.664-5.050-12.934-0.812-2.136-1.71-4.218-2.444-6.36-0.714-2.148-1.428-4.282-2.136-6.406-1.386-4.25-2.888-8.382-4.142-12.546-1.174-4.184-2.33-8.316-3.474-12.394-0.55-2.036-1.19-4.024-1.66-6.054-0.46-2.028-0.916-4.042-1.368-6.042-0.91-3.98-1.808-7.898-2.688-11.75-0.688-3.886-1.362-7.71-2.024-11.46-0.33-1.868-0.656-3.718-0.98-5.546-0.162-0.914-0.324-1.824-0.484-2.73-0.11-0.914-0.222-1.828-0.332-2.734-0.446-3.61-0.882-7.148-1.31-10.602-0.216-1.722-0.432-3.422-0.642-5.102-0.226-1.676-0.268-3.364-0.41-5.012-0.238-3.29-0.472-6.496-0.7-9.614-0.218-3.11-0.524-6.11-0.508-9.058-0.132-5.848-0.256-11.32-0.372-16.382 0.168-4.664 0.324-8.946 0.462-12.816 0.054-1.914 0.108-3.726 0.156-5.434 0.134-2.122 0.26-4.106 0.378-5.958 0.138-2.128 0.266-4.058 0.38-5.82 0.496-3.26 0.766-6.596 0.766-9.994 0-0.466-0.026-0.93-0.036-1.396 0.008-0.132 0.016-0.224 0.016-0.224h-0.022c-0.78-31.38-24.134-57.154-54.44-61.674z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "spinner", + "loading", + "loading-wheel", + "busy", + "wait" + ], + "defaultCode": 57777, + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 522, + "order": 69, + "prevSize": 32, + "code": 59779, + "ligatures": "spinner10, loading11", + "name": "spinner5" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 125 + }, + { + "icon": { + "paths": [ + "M992.262 871.396l-242.552-206.294c-25.074-22.566-51.89-32.926-73.552-31.926 57.256-67.068 91.842-154.078 91.842-249.176 0-212.078-171.922-384-384-384-212.076 0-384 171.922-384 384s171.922 384 384 384c95.098 0 182.108-34.586 249.176-91.844-1 21.662 9.36 48.478 31.926 73.552l206.294 242.552c35.322 39.246 93.022 42.554 128.22 7.356s31.892-92.898-7.354-128.22zM384 640c-141.384 0-256-114.616-256-256s114.616-256 256-256 256 114.616 256 256-114.614 256-256 256z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "search", + "magnifier", + "magnifying-glass", + "inspect", + "find" + ], + "defaultCode": 57786, + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 532, + "order": 70, + "prevSize": 32, + "code": 59782, + "ligatures": "search, magnifier", + "name": "search" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 126 + }, + { + "icon": { + "paths": [ + "M992.262 871.396l-242.552-206.294c-25.074-22.566-51.89-32.926-73.552-31.926 57.256-67.068 91.842-154.078 91.842-249.176 0-212.078-171.922-384-384-384-212.076 0-384 171.922-384 384s171.922 384 384 384c95.098 0 182.108-34.586 249.176-91.844-1 21.662 9.36 48.478 31.926 73.552l206.294 242.552c35.322 39.246 93.022 42.554 128.22 7.356s31.892-92.898-7.354-128.22zM384 640c-141.384 0-256-114.616-256-256s114.616-256 256-256 256 114.616 256 256-114.614 256-256 256zM448 192h-128v128h-128v128h128v128h128v-128h128v-128h-128z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "zoom-in", + "magnifier", + "magnifier-plus", + "enlarge" + ], + "defaultCode": 57788, + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 534, + "order": 71, + "prevSize": 32, + "code": 59783, + "ligatures": "zoom-in, magnifier2", + "name": "zoom-in" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 127 + }, + { + "icon": { + "paths": [ + "M992.262 871.396l-242.552-206.294c-25.074-22.566-51.89-32.926-73.552-31.926 57.256-67.068 91.842-154.078 91.842-249.176 0-212.078-171.922-384-384-384-212.076 0-384 171.922-384 384s171.922 384 384 384c95.098 0 182.108-34.586 249.176-91.844-1 21.662 9.36 48.478 31.926 73.552l206.294 242.552c35.322 39.246 93.022 42.554 128.22 7.356s31.892-92.898-7.354-128.22zM384 640c-141.384 0-256-114.616-256-256s114.616-256 256-256 256 114.616 256 256-114.614 256-256 256zM192 320h384v128h-384z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "zoom-out", + "magnifier", + "magnifier-minus", + "reduce" + ], + "defaultCode": 57789, + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 535, + "order": 72, + "prevSize": 32, + "code": 59784, + "ligatures": "zoom-out, magnifier3", + "name": "zoom-out" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 128 + }, + { + "icon": { + "paths": [ + "M1024 0h-416l160 160-192 192 96 96 192-192 160 160z", + "M1024 1024v-416l-160 160-192-192-96 96 192 192-160 160z", + "M0 1024h416l-160-160 192-192-96-96-192 192-160-160z", + "M0 0v416l160-160 192 192 96-96-192-192 160-160z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "enlarge", + "expand", + "maximize", + "fullscreen" + ], + "defaultCode": 57791, + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 537, + "order": 74, + "prevSize": 32, + "code": 59785, + "ligatures": "enlarge, expand", + "name": "enlarge" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 129 + }, + { + "icon": { + "paths": [ + "M576 448h416l-160-160 192-192-96-96-192 192-160-160z", + "M576 576v416l160-160 192 192 96-96-192-192 160-160z", + "M448 575.996h-416l160 160-192 192 96 96 192-192 160 160z", + "M448 448v-416l-160 160-192-192-96 96 192 192-160 160z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "shrink", + "collapse", + "minimize", + "contract" + ], + "defaultCode": 57792, + "grid": 16 + }, + "attrs": [], + "properties": { + "order": 73, + "id": 1644, + "prevSize": 32, + "code": 59786, + "ligatures": "shrink, collapse", + "name": "shrink" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 130 + }, + { + "icon": { + "paths": [ + "M1024 0v416l-160-160-192 192-96-96 192-192-160-160zM448 672l-192 192 160 160h-416v-416l160 160 192-192z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "enlarge", + "expand", + "maximize", + "fullscreen" + ], + "defaultCode": 57800, + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 546, + "order": 75, + "prevSize": 32, + "code": 59787, + "ligatures": "enlarge2, expand2", + "name": "enlarge2" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 131 + }, + { + "icon": { + "paths": [ + "M448 576v416l-160-160-192 192-96-96 192-192-160-160zM1024 96l-192 192 160 160h-416v-416l160 160 192-192z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "shrink", + "collapse", + "minimize", + "contract" + ], + "defaultCode": 57801, + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 547, + "order": 76, + "prevSize": 32, + "code": 59788, + "ligatures": "shrink2, collapse2", + "name": "shrink2" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 132 + }, + { + "icon": { + "paths": [ + "M704 0c-176.73 0-320 143.268-320 320 0 20.026 1.858 39.616 5.376 58.624l-389.376 389.376v192c0 35.346 28.654 64 64 64h64v-64h128v-128h128v-128h128l83.042-83.042c34.010 12.316 70.696 19.042 108.958 19.042 176.73 0 320-143.268 320-320s-143.27-320-320-320zM799.874 320.126c-53.020 0-96-42.98-96-96s42.98-96 96-96 96 42.98 96 96-42.98 96-96 96z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "key", + "password", + "login", + "signin" + ], + "defaultCode": 57802, + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 548, + "order": 77, + "prevSize": 32, + "code": 59789, + "ligatures": "key, password", + "name": "key" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 133 + }, + { + "icon": { + "paths": [ + "M1002.934 817.876l-460.552-394.76c21.448-40.298 33.618-86.282 33.618-135.116 0-159.058-128.942-288-288-288-29.094 0-57.172 4.332-83.646 12.354l166.39 166.39c24.89 24.89 24.89 65.62 0 90.51l-101.49 101.49c-24.89 24.89-65.62 24.89-90.51 0l-166.39-166.39c-8.022 26.474-12.354 54.552-12.354 83.646 0 159.058 128.942 288 288 288 48.834 0 94.818-12.17 135.116-33.62l394.76 460.552c22.908 26.724 62.016 28.226 86.904 3.338l101.492-101.492c24.888-24.888 23.386-63.994-3.338-86.902z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "wrench", + "tool", + "fix", + "settings", + "control", + "options", + "preferences" + ], + "defaultCode": 57815, + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 561, + "order": 80, + "prevSize": 32, + "code": 59793, + "ligatures": "wrench, tool", + "name": "wrench" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 134 + }, + { + "icon": { + "paths": [ + "M448 128v-16c0-26.4-21.6-48-48-48h-160c-26.4 0-48 21.6-48 48v16h-192v128h192v16c0 26.4 21.6 48 48 48h160c26.4 0 48-21.6 48-48v-16h576v-128h-576zM256 256v-128h128v128h-128zM832 432c0-26.4-21.6-48-48-48h-160c-26.4 0-48 21.6-48 48v16h-576v128h576v16c0 26.4 21.6 48 48 48h160c26.4 0 48-21.6 48-48v-16h192v-128h-192v-16zM640 576v-128h128v128h-128zM448 752c0-26.4-21.6-48-48-48h-160c-26.4 0-48 21.6-48 48v16h-192v128h192v16c0 26.4 21.6 48 48 48h160c26.4 0 48-21.6 48-48v-16h576v-128h-576v-16zM256 896v-128h128v128h-128z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "equalizer", + "sliders", + "settings", + "preferences", + "dashboard", + "control" + ], + "defaultCode": 57819, + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 565, + "order": 81, + "prevSize": 32, + "code": 59794, + "ligatures": "equalizer, sliders", + "name": "equalizer" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 135 + }, + { + "icon": { + "paths": [ + "M896 448h16c26.4 0 48-21.6 48-48v-160c0-26.4-21.6-48-48-48h-16v-192h-128v192h-16c-26.4 0-48 21.6-48 48v160c0 26.4 21.6 48 48 48h16v576h128v-576zM768 256h128v128h-128v-128zM592 832c26.4 0 48-21.6 48-48v-160c0-26.4-21.6-48-48-48h-16v-576h-128v576h-16c-26.4 0-48 21.6-48 48v160c0 26.4 21.6 48 48 48h16v192h128v-192h16zM448 640h128v128h-128v-128zM272 448c26.4 0 48-21.6 48-48v-160c0-26.4-21.6-48-48-48h-16v-192h-128v192h-16c-26.4 0-48 21.6-48 48v160c0 26.4 21.6 48 48 48h16v576h128v-576h16zM128 256h128v128h-128v-128z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "equalizer", + "sliders", + "settings", + "preferences", + "dashboard", + "control" + ], + "defaultCode": 57820, + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 566, + "order": 82, + "prevSize": 32, + "code": 59795, + "ligatures": "equalizer2, sliders2", + "name": "equalizer-v" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 136 + }, + { + "icon": { + "paths": [ + "M933.79 610.25c-53.726-93.054-21.416-212.304 72.152-266.488l-100.626-174.292c-28.75 16.854-62.176 26.518-97.846 26.518-107.536 0-194.708-87.746-194.708-195.99h-201.258c0.266 33.41-8.074 67.282-25.958 98.252-53.724 93.056-173.156 124.702-266.862 70.758l-100.624 174.292c28.97 16.472 54.050 40.588 71.886 71.478 53.638 92.908 21.512 211.92-71.708 266.224l100.626 174.292c28.65-16.696 61.916-26.254 97.4-26.254 107.196 0 194.144 87.192 194.7 194.958h201.254c-0.086-33.074 8.272-66.57 25.966-97.218 53.636-92.906 172.776-124.594 266.414-71.012l100.626-174.29c-28.78-16.466-53.692-40.498-71.434-71.228zM512 719.332c-114.508 0-207.336-92.824-207.336-207.334 0-114.508 92.826-207.334 207.336-207.334 114.508 0 207.332 92.826 207.332 207.334-0.002 114.51-92.824 207.334-207.332 207.334z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "cog", + "gear", + "preferences", + "settings", + "generate", + "control", + "options" + ], + "defaultCode": 57823, + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 569, + "order": 83, + "prevSize": 32, + "code": 59796, + "ligatures": "cog, gear", + "name": "cog" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 137 + }, + { + "icon": { + "paths": [ + "M363.722 722.052l41.298-57.816-45.254-45.256-57.818 41.296c-10.722-5.994-22.204-10.774-34.266-14.192l-11.682-70.084h-64l-11.68 70.086c-12.062 3.418-23.544 8.198-34.266 14.192l-57.818-41.298-45.256 45.256 41.298 57.816c-5.994 10.72-10.774 22.206-14.192 34.266l-70.086 11.682v64l70.086 11.682c3.418 12.060 8.198 23.544 14.192 34.266l-41.298 57.816 45.254 45.256 57.818-41.296c10.722 5.994 22.204 10.774 34.266 14.192l11.682 70.084h64l11.68-70.086c12.062-3.418 23.544-8.198 34.266-14.192l57.818 41.296 45.254-45.256-41.298-57.816c5.994-10.72 10.774-22.206 14.192-34.266l70.088-11.68v-64l-70.086-11.682c-3.418-12.060-8.198-23.544-14.192-34.266zM224 864c-35.348 0-64-28.654-64-64s28.652-64 64-64 64 28.654 64 64-28.652 64-64 64zM1024 384v-64l-67.382-12.25c-1.242-8.046-2.832-15.978-4.724-23.79l57.558-37.1-24.492-59.128-66.944 14.468c-4.214-6.91-8.726-13.62-13.492-20.13l39.006-56.342-45.256-45.254-56.342 39.006c-6.512-4.766-13.22-9.276-20.13-13.494l14.468-66.944-59.128-24.494-37.1 57.558c-7.812-1.892-15.744-3.482-23.79-4.724l-12.252-67.382h-64l-12.252 67.382c-8.046 1.242-15.976 2.832-23.79 4.724l-37.098-57.558-59.128 24.492 14.468 66.944c-6.91 4.216-13.62 8.728-20.13 13.494l-56.342-39.006-45.254 45.254 39.006 56.342c-4.766 6.51-9.278 13.22-13.494 20.13l-66.944-14.468-24.492 59.128 57.558 37.1c-1.892 7.812-3.482 15.742-4.724 23.79l-67.384 12.252v64l67.382 12.25c1.242 8.046 2.832 15.978 4.724 23.79l-57.558 37.1 24.492 59.128 66.944-14.468c4.216 6.91 8.728 13.618 13.494 20.13l-39.006 56.342 45.254 45.256 56.342-39.006c6.51 4.766 13.22 9.276 20.13 13.492l-14.468 66.944 59.128 24.492 37.102-57.558c7.81 1.892 15.742 3.482 23.788 4.724l12.252 67.384h64l12.252-67.382c8.044-1.242 15.976-2.832 23.79-4.724l37.1 57.558 59.128-24.492-14.468-66.944c6.91-4.216 13.62-8.726 20.13-13.492l56.342 39.006 45.256-45.256-39.006-56.342c4.766-6.512 9.276-13.22 13.492-20.13l66.944 14.468 24.492-59.13-57.558-37.1c1.892-7.812 3.482-15.742 4.724-23.79l67.382-12.25zM672 491.2c-76.878 0-139.2-62.322-139.2-139.2s62.32-139.2 139.2-139.2 139.2 62.322 139.2 139.2c0 76.878-62.32 139.2-139.2 139.2z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "cogs", + "gears", + "preferences", + "settings", + "generate", + "control", + "options" + ], + "defaultCode": 57824, + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 570, + "order": 84, + "prevSize": 32, + "code": 59797, + "ligatures": "cogs, gears", + "name": "cogs" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 138 + }, + { + "icon": { + "paths": [ + "M256 192l-128-128h-64v64l128 128zM320 0h64v128h-64zM576 320h128v64h-128zM640 128v-64h-64l-128 128 64 64zM0 320h128v64h-128zM320 576h64v128h-64zM64 576v64h64l128-128-64-64zM1010 882l-636.118-636.118c-18.668-18.668-49.214-18.668-67.882 0l-60.118 60.118c-18.668 18.668-18.668 49.214 0 67.882l636.118 636.118c18.668 18.668 49.214 18.668 67.882 0l60.118-60.118c18.668-18.668 18.668-49.214 0-67.882zM480 544l-192-192 64-64 192 192-64 64z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "magic-wand", + "wizard" + ], + "defaultCode": 57836, + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 582, + "order": 86, + "prevSize": 32, + "code": 59799, + "ligatures": "magic-wand, wizard", + "name": "magic-wand" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 139 + }, + { + "icon": { + "paths": [ + "M1024 576v-64h-193.29c-5.862-72.686-31.786-139.026-71.67-192.25h161.944l70.060-280.24-62.090-15.522-57.94 231.76h-174.68c-0.892-0.694-1.796-1.374-2.698-2.056 6.71-19.502 10.362-40.422 10.362-62.194 0.002-105.76-85.958-191.498-191.998-191.498s-192 85.738-192 191.5c0 21.772 3.65 42.692 10.362 62.194-0.9 0.684-1.804 1.362-2.698 2.056h-174.68l-57.94-231.76-62.090 15.522 70.060 280.24h161.944c-39.884 53.222-65.806 119.562-71.668 192.248h-193.29v64h193.37c3.802 45.664 15.508 88.812 33.638 127.75h-123.992l-70.060 280.238 62.090 15.524 57.94-231.762h112.354c58.692 78.032 147.396 127.75 246.66 127.75s187.966-49.718 246.662-127.75h112.354l57.94 231.762 62.090-15.524-70.060-280.238h-123.992c18.13-38.938 29.836-82.086 33.636-127.75h193.37z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "bug", + "virus", + "error" + ], + "defaultCode": 57842, + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 588, + "order": 87, + "prevSize": 32, + "code": 59801, + "ligatures": "bug, virus", + "name": "bug" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 140 + }, + { + "icon": { + "paths": [ + "M448 576v-448c-247.424 0-448 200.576-448 448s200.576 448 448 448 448-200.576 448-448c0-72.034-17.028-140.084-47.236-200.382l-400.764 200.382zM912.764 247.618c-73.552-146.816-225.374-247.618-400.764-247.618v448l400.764-200.382z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "pie-chart", + "stats", + "statistics", + "graph" + ], + "defaultCode": 57847, + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 593, + "order": 88, + "prevSize": 32, + "code": 59802, + "ligatures": "pie-chart, stats", + "name": "chart-pie" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 141 + }, + { + "icon": { + "paths": [ + "M128 896h896v128h-1024v-1024h128zM288 832c-53.020 0-96-42.98-96-96s42.98-96 96-96c2.828 0 5.622 0.148 8.388 0.386l103.192-171.986c-9.84-15.070-15.58-33.062-15.58-52.402 0-53.020 42.98-96 96-96s96 42.98 96 96c0 19.342-5.74 37.332-15.58 52.402l103.192 171.986c2.766-0.238 5.56-0.386 8.388-0.386 2.136 0 4.248 0.094 6.35 0.23l170.356-298.122c-10.536-15.408-16.706-34.036-16.706-54.11 0-53.020 42.98-96 96-96s96 42.98 96 96c0 53.020-42.98 96-96 96-2.14 0-4.248-0.094-6.35-0.232l-170.356 298.124c10.536 15.406 16.706 34.036 16.706 54.11 0 53.020-42.98 96-96 96s-96-42.98-96-96c0-19.34 5.74-37.332 15.578-52.402l-103.19-171.984c-2.766 0.238-5.56 0.386-8.388 0.386s-5.622-0.146-8.388-0.386l-103.192 171.986c9.84 15.068 15.58 33.060 15.58 52.4 0 53.020-42.98 96-96 96z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "stats-dots", + "stats", + "plot", + "statistics", + "chart" + ], + "defaultCode": 57854, + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 600, + "order": 89, + "prevSize": 32, + "code": 59803, + "ligatures": "stats-dots, stats2", + "name": "chart-dots" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 142 + }, + { + "icon": { + "paths": [ + "M0 832h1024v128h-1024zM128 576h128v192h-128zM320 320h128v448h-128zM512 512h128v256h-128zM704 128h128v640h-128z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "stats-bars", + "stats", + "statistics", + "chart" + ], + "defaultCode": 57857, + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 603, + "order": 90, + "prevSize": 32, + "code": 59804, + "ligatures": "stats-bars, stats3", + "name": "chart-bars" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 143 + }, + { + "icon": { + "paths": [ + "M288 384h-192c-17.6 0-32 14.4-32 32v576c0 17.6 14.4 32 32 32h192c17.6 0 32-14.4 32-32v-576c0-17.6-14.4-32-32-32zM288 960h-192v-256h192v256zM608 256h-192c-17.6 0-32 14.4-32 32v704c0 17.6 14.4 32 32 32h192c17.6 0 32-14.4 32-32v-704c0-17.6-14.4-32-32-32zM608 960h-192v-320h192v320zM928 128h-192c-17.6 0-32 14.4-32 32v832c0 17.6 14.4 32 32 32h192c17.6 0 32-14.4 32-32v-832c0-17.6-14.4-32-32-32zM928 960h-192v-384h192v384z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "stats-bars", + "stats", + "statistics", + "chart" + ], + "defaultCode": 57860, + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 606, + "order": 91, + "prevSize": 32, + "code": 59805, + "ligatures": "stats-bars2, stats4", + "name": "chart-bars2" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 144 + }, + { + "icon": { + "paths": [ + "M832 192v-128h-640v128h-192v128c0 106.038 85.958 192 192 192 20.076 0 39.43-3.086 57.62-8.802 46.174 66.008 116.608 113.796 198.38 130.396v198.406h-64c-70.694 0-128 57.306-128 128h512c0-70.694-57.306-128-128-128h-64v-198.406c81.772-16.6 152.206-64.386 198.38-130.396 18.19 5.716 37.544 8.802 57.62 8.802 106.042 0 192-85.962 192-192v-128h-192zM192 436c-63.962 0-116-52.038-116-116v-64h116v64c0 40.186 7.43 78.632 20.954 114.068-6.802 1.246-13.798 1.932-20.954 1.932zM948 320c0 63.962-52.038 116-116 116-7.156 0-14.152-0.686-20.954-1.932 13.524-35.436 20.954-73.882 20.954-114.068v-64h116v64z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "trophy", + "cup", + "prize", + "award", + "winner", + "tournament" + ], + "defaultCode": 57886, + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 632, + "order": 92, + "prevSize": 32, + "code": 59806, + "ligatures": "trophy, cup", + "name": "trophy" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 145 + }, + { + "icon": { + "paths": [ + "M771.516 320c18.126-12.88 35.512-27.216 51.444-43.148 33.402-33.402 55.746-74.5 62.912-115.722 7.858-45.186-3.672-87.14-31.63-115.1-22.3-22.298-52.51-34.086-87.364-34.086-49.632 0-101.922 23.824-143.46 65.362-66.476 66.476-105.226 158.238-126.076 223.722-15.44-65.802-46.206-154.644-106.018-214.458-32.094-32.092-73.114-48.57-111.846-48.57-31.654 0-61.78 11.004-84.26 33.486-49.986 49.988-43.232 137.786 15.086 196.104 20.792 20.792 45.098 38.062 70.72 52.412h-217.024v256h64v448h768v-448.002h64v-256h-188.484zM674.326 128.218c27.724-27.724 62.322-44.274 92.55-44.274 10.7 0 25.708 2.254 36.45 12.998 26.030 26.028 11.412 86.308-31.28 128.998-43.946 43.946-103.060 74.168-154.432 94.060h-50.672c18.568-57.548 52.058-136.456 107.384-191.782zM233.934 160.89c-0.702-9.12-0.050-26.248 12.196-38.494 10.244-10.244 23.788-12.396 33.348-12.396v0c21.258 0 43.468 10.016 60.932 27.48 33.872 33.872 61.766 87.772 80.668 155.876 0.51 1.84 1.008 3.67 1.496 5.486-1.816-0.486-3.646-0.984-5.486-1.496-68.104-18.904-122.002-46.798-155.874-80.67-15.828-15.826-25.77-36.16-27.28-55.786zM448 960h-256v-416h256v416zM448 512h-320v-128h320v128zM832 960h-256v-416h256v416zM896 512h-320v-128h320v128z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "gift", + "present", + "box" + ], + "defaultCode": 57872, + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 618, + "order": 93, + "prevSize": 32, + "code": 59807, + "ligatures": "gift, present", + "name": "gift" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 146 + }, + { + "icon": { + "paths": [ + "M224 0c-106.040 0-192 100.288-192 224 0 105.924 63.022 194.666 147.706 217.998l-31.788 518.124c-2.154 35.132 24.882 63.878 60.082 63.878h32c35.2 0 62.236-28.746 60.082-63.878l-31.788-518.124c84.684-23.332 147.706-112.074 147.706-217.998 0-123.712-85.96-224-192-224zM869.334 0l-53.334 320h-40l-26.666-320h-26.668l-26.666 320h-40l-53.334-320h-26.666v416c0 17.672 14.326 32 32 32h83.338l-31.42 512.122c-2.154 35.132 24.882 63.878 60.082 63.878h32c35.2 0 62.236-28.746 60.082-63.878l-31.42-512.122h83.338c17.674 0 32-14.328 32-32v-416h-26.666z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "spoon-knife", + "food", + "restaurant" + ], + "defaultCode": 57896, + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 642, + "order": 204, + "prevSize": 32, + "code": 59811, + "ligatures": "spoon-knife, food", + "name": "spoon-fork" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 147 + }, + { + "icon": { + "paths": [ + "M704 64l-320 320h-192l-192 256c0 0 203.416-56.652 322.066-30.084l-322.066 414.084 421.902-328.144c58.838 134.654-37.902 328.144-37.902 328.144l256-192v-192l320-320 64-320-320 64z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "rocket", + "jet", + "speed", + "spaceship", + "fast" + ], + "defaultCode": 57908, + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 654, + "order": 94, + "prevSize": 32, + "code": 59813, + "ligatures": "rocket, jet", + "name": "rocket" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 148 + }, + { + "icon": { + "paths": [ + "M512 64c282.77 0 512 229.23 512 512 0 192.792-106.576 360.666-264.008 448h-495.984c-157.432-87.334-264.008-255.208-264.008-448 0-282.77 229.23-512 512-512zM801.914 865.914c77.438-77.44 120.086-180.398 120.086-289.914h-90v-64h85.038c-7.014-44.998-21.39-88.146-42.564-128h-106.474v-64h64.284c-9.438-11.762-19.552-23.096-30.37-33.914-46.222-46.22-101.54-80.038-161.914-99.798v69.712h-64v-85.040c-20.982-3.268-42.36-4.96-64-4.96s-43.018 1.69-64 4.96v85.040h-64v-69.712c-60.372 19.76-115.692 53.576-161.914 99.798-10.818 10.818-20.932 22.152-30.37 33.914h64.284v64h-106.476c-21.174 39.854-35.552 83.002-42.564 128h85.040v64h-90c0 109.516 42.648 212.474 120.086 289.914 10.71 10.71 21.924 20.728 33.56 30.086h192.354l36.572-512h54.856l36.572 512h192.354c11.636-9.358 22.852-19.378 33.56-30.086z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "meter", + "gauge", + "dashboard", + "speedometer", + "performance" + ], + "defaultCode": 57909, + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 655, + "order": 95, + "prevSize": 32, + "code": 59814, + "ligatures": "meter, gauge", + "name": "meter" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 149 + }, + { + "icon": { + "paths": [ + "M1010.174 915.75l-548.634-499.458 25.534-25.598c20.894-20.954 32.188-48.030 33.918-75.61 1.002-0.45 2.002-0.912 2.958-1.442l102.99-64.402c13.934-16.392 12.916-42.268-2.284-57.502l-179.12-179.608c-15.19-15.234-40.998-16.262-57.344-2.284l-64.236 103.268c-0.526 0.966-0.99 1.966-1.44 2.974-27.502 1.736-54.5 13.056-75.398 34.006l-97.428 97.702c-20.898 20.956-32.184 48.026-33.918 75.604-1.004 0.45-2.004 0.916-2.964 1.446l-102.986 64.406c-13.942 16.39-12.916 42.264 2.276 57.496l179.12 179.604c15.194 15.238 40.996 16.262 57.35 2.286l64.228-103.27c0.528-0.958 0.988-1.96 1.442-2.966 27.502-1.738 54.504-13.050 75.398-34.004l28.292-28.372 498.122 550.114c14.436 15.944 36.7 18.518 49.474 5.712l50.356-50.488c12.764-12.808 10.196-35.132-5.706-49.614z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "hammer", + "gavel", + "rules", + "justice", + "legal" + ], + "defaultCode": 57915, + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 661, + "order": 96, + "prevSize": 32, + "code": 59816, + "ligatures": "hammer2, gavel", + "name": "hammer" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 150 + }, + { + "icon": { + "paths": [ + "M321.008 1024c-68.246-142.008-31.902-223.378 20.55-300.044 57.44-83.956 72.244-167.066 72.244-167.066s45.154 58.7 27.092 150.508c79.772-88.8 94.824-230.28 82.782-284.464 180.314 126.012 257.376 398.856 153.522 601.066 552.372-312.532 137.398-780.172 65.154-832.85 24.082 52.676 28.648 141.85-20 185.126-82.352-312.276-285.972-376.276-285.972-376.276 24.082 161.044-87.296 337.144-194.696 468.73-3.774-64.216-7.782-108.528-41.55-169.98-7.58 116.656-96.732 211.748-120.874 328.628-32.702 158.286 24.496 274.18 241.748 396.622z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "fire", + "flame", + "hot", + "popular" + ], + "defaultCode": 57919, + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 665, + "order": 97, + "prevSize": 32, + "code": 59817, + "ligatures": "fire, flame", + "name": "fire" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 151 + }, + { + "icon": { + "paths": [ + "M956.29 804.482l-316.29-527.024v-213.458h32c17.6 0 32-14.4 32-32s-14.4-32-32-32h-320c-17.6 0-32 14.4-32 32s14.4 32 32 32h32v213.458l-316.288 527.024c-72.442 120.734-16.512 219.518 124.288 219.518h640c140.8 0 196.73-98.784 124.29-219.518zM241.038 640l206.962-344.938v-231.062h128v231.062l206.964 344.938h-541.926z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "lab", + "beta", + "beaker", + "test", + "experiment" + ], + "defaultCode": 57920, + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 666, + "order": 98, + "prevSize": 32, + "code": 59818, + "ligatures": "lab, beta", + "name": "lab" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 152 + }, + { + "icon": { + "paths": [ + "M128 320v640c0 35.2 28.8 64 64 64h576c35.2 0 64-28.8 64-64v-640h-704zM320 896h-64v-448h64v448zM448 896h-64v-448h64v448zM576 896h-64v-448h64v448zM704 896h-64v-448h64v448z", + "M848 128h-208v-80c0-26.4-21.6-48-48-48h-224c-26.4 0-48 21.6-48 48v80h-208c-26.4 0-48 21.6-48 48v80h832v-80c0-26.4-21.6-48-48-48zM576 128h-192v-63.198h192v63.198z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "bin", + "trashcan", + "remove", + "delete", + "recycle", + "dispose" + ], + "defaultCode": 57938, + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 684, + "order": 99, + "prevSize": 32, + "code": 59820, + "ligatures": "bin, trashcan", + "name": "bin" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 153 + }, + { + "icon": { + "paths": [ + "M1024 576l-128-256h-192v-128c0-35.2-28.8-64-64-64h-576c-35.2 0-64 28.8-64 64v512l64 64h81.166c-10.898 18.832-17.166 40.678-17.166 64 0 70.692 57.308 128 128 128s128-57.308 128-128c0-23.322-6.268-45.168-17.166-64h354.334c-10.898 18.832-17.168 40.678-17.168 64 0 70.692 57.308 128 128 128s128-57.308 128-128c0-23.322-6.27-45.168-17.168-64h81.168v-192zM704 576v-192h132.668l96 192h-228.668z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "truck", + "transit", + "transport", + "delivery", + "vehicle" + ], + "defaultCode": 57952, + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 698, + "order": 202, + "prevSize": 32, + "code": 59824, + "ligatures": "truck, transit", + "name": "truck" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 154 + }, + { + "icon": { + "paths": [ + "M1024 448h-100.924c-27.64-178.24-168.836-319.436-347.076-347.076v-100.924h-128v100.924c-178.24 27.64-319.436 168.836-347.076 347.076h-100.924v128h100.924c27.64 178.24 168.836 319.436 347.076 347.076v100.924h128v-100.924c178.24-27.64 319.436-168.836 347.076-347.076h100.924v-128zM792.822 448h-99.762c-19.284-54.55-62.51-97.778-117.060-117.060v-99.762c107.514 24.49 192.332 109.31 216.822 216.822zM512 576c-35.346 0-64-28.654-64-64s28.654-64 64-64c35.346 0 64 28.654 64 64s-28.654 64-64 64zM448 231.178v99.762c-54.55 19.282-97.778 62.51-117.060 117.060h-99.762c24.49-107.512 109.31-192.332 216.822-216.822zM231.178 576h99.762c19.282 54.55 62.51 97.778 117.060 117.060v99.762c-107.512-24.49-192.332-109.308-216.822-216.822zM576 792.822v-99.762c54.55-19.284 97.778-62.51 117.060-117.060h99.762c-24.49 107.514-109.308 192.332-216.822 216.822z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "target", + "goal", + "location", + "spot" + ], + "defaultCode": 57978, + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 724, + "order": 203, + "prevSize": 32, + "code": 59827, + "ligatures": "target, goal", + "name": "target" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 155 + }, + { + "icon": { + "paths": [ + "M384 0l-384 512h384l-256 512 896-640h-512l384-384z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "power", + "lightning", + "bolt", + "electricity" + ], + "defaultCode": 57997, + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 743, + "order": 100, + "prevSize": 32, + "code": 59829, + "ligatures": "power, lightning", + "name": "power" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 156 + }, + { + "icon": { + "paths": [ + "M640 146.588v135.958c36.206 15.804 69.5 38.408 98.274 67.18 60.442 60.44 93.726 140.8 93.726 226.274s-33.286 165.834-93.726 226.274c-60.44 60.44-140.798 93.726-226.274 93.726s-165.834-33.286-226.274-93.726c-60.44-60.44-93.726-140.8-93.726-226.274s33.286-165.834 93.726-226.274c28.774-28.774 62.068-51.378 98.274-67.182v-135.956c-185.048 55.080-320 226.472-320 429.412 0 247.424 200.578 448 448 448 247.424 0 448-200.576 448-448 0-202.94-134.95-374.332-320-429.412zM448 0h128v512h-128z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "switch" + ], + "defaultCode": 58000, + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 746, + "order": 101, + "prevSize": 32, + "code": 59830, + "ligatures": "switch", + "name": "switch" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 157 + }, + { + "icon": { + "paths": [ + "M1024 282.5l-90.506-90.5-178.746 178.752-101.5-101.502 178.75-178.75-90.5-90.5-178.75 178.75-114.748-114.75-86.626 86.624 512.002 512 86.624-86.622-114.752-114.752 178.752-178.75z", + "M794.040 673.79l-443.824-443.824c-95.818 114.904-204.52 292.454-129.396 445.216l-132.248 132.248c-31.112 31.114-31.112 82.024 0 113.136l14.858 14.858c31.114 31.114 82.026 31.114 113.138 0l132.246-132.244c152.764 75.132 330.318-33.566 445.226-129.39z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "power-cord", + "plugin", + "extension" + ], + "defaultCode": 58001, + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 747, + "order": 102, + "prevSize": 32, + "code": 59831, + "ligatures": "power-cord, plugin", + "name": "power-cord" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 158 + }, + { + "icon": { + "paths": [ + "M928 128h-288c0-70.692-57.306-128-128-128-70.692 0-128 57.308-128 128h-288c-17.672 0-32 14.328-32 32v832c0 17.674 14.328 32 32 32h832c17.674 0 32-14.326 32-32v-832c0-17.672-14.326-32-32-32zM512 64c35.346 0 64 28.654 64 64s-28.654 64-64 64c-35.346 0-64-28.654-64-64s28.654-64 64-64zM896 960h-768v-768h128v96c0 17.672 14.328 32 32 32h448c17.674 0 32-14.328 32-32v-96h128v768z", + "M448 858.51l-205.254-237.254 58.508-58.51 146.746 114.744 274.742-242.744 58.514 58.508z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "clipboard", + "board", + "signup", + "register", + "agreement" + ], + "defaultCode": 58006, + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 752, + "order": 375, + "prevSize": 32, + "code": 59832, + "ligatures": "clipboard, board", + "name": "clipboard" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 159 + }, + { + "icon": { + "paths": [ + "M384 832h640v128h-640zM384 448h640v128h-640zM384 64h640v128h-640zM192 0v256h-64v-192h-64v-64zM128 526v50h128v64h-192v-146l128-60v-50h-128v-64h192v146zM256 704v320h-192v-64h128v-64h-128v-64h128v-64h-128v-64z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "list-numbered", + "options" + ], + "defaultCode": 58012, + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 758, + "order": 199, + "prevSize": 32, + "code": 59833, + "ligatures": "list-numbered, options", + "name": "list-numbered" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 160 + }, + { + "icon": { + "paths": [ + "M0 0h256v256h-256zM384 64h640v128h-640zM0 384h256v256h-256zM384 448h640v128h-640zM0 768h256v256h-256zM384 832h640v128h-640z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "list", + "todo", + "bullet", + "menu", + "options" + ], + "defaultCode": 58009, + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 755, + "order": 200, + "prevSize": 32, + "code": 59834, + "ligatures": "list, todo", + "name": "list" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 161 + }, + { + "icon": { + "paths": [ + "M384 64h640v128h-640v-128zM384 448h640v128h-640v-128zM384 832h640v128h-640v-128zM0 128c0-70.692 57.308-128 128-128s128 57.308 128 128c0 70.692-57.308 128-128 128s-128-57.308-128-128zM0 512c0-70.692 57.308-128 128-128s128 57.308 128 128c0 70.692-57.308 128-128 128s-128-57.308-128-128zM0 896c0-70.692 57.308-128 128-128s128 57.308 128 128c0 70.692-57.308 128-128 128s-128-57.308-128-128z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "list", + "todo", + "bullet", + "menu", + "options" + ], + "defaultCode": 58010, + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 756, + "order": 201, + "prevSize": 32, + "code": 59835, + "ligatures": "list2, todo2", + "name": "list2" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 162 + }, + { + "icon": { + "paths": [ + "M976 768h-16v-208c0-61.756-50.242-112-112-112h-272v-128h16c26.4 0 48-21.6 48-48v-160c0-26.4-21.6-48-48-48h-160c-26.4 0-48 21.6-48 48v160c0 26.4 21.6 48 48 48h16v128h-272c-61.756 0-112 50.244-112 112v208h-16c-26.4 0-48 21.6-48 48v160c0 26.4 21.6 48 48 48h160c26.4 0 48-21.6 48-48v-160c0-26.4-21.6-48-48-48h-16v-192h256v192h-16c-26.4 0-48 21.6-48 48v160c0 26.4 21.6 48 48 48h160c26.4 0 48-21.6 48-48v-160c0-26.4-21.6-48-48-48h-16v-192h256v192h-16c-26.4 0-48 21.6-48 48v160c0 26.4 21.6 48 48 48h160c26.4 0 48-21.6 48-48v-160c0-26.4-21.6-48-48-48zM192 960h-128v-128h128v128zM576 960h-128v-128h128v128zM448 256v-128h128v128h-128zM960 960h-128v-128h128v128z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "tree", + "branches", + "inheritance" + ], + "defaultCode": 58024, + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 769, + "order": 105, + "prevSize": 32, + "code": 59836, + "ligatures": "tree, branches", + "name": "tree" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 163 + }, + { + "icon": { + "paths": [ + "M1024 657.542c0-82.090-56.678-150.9-132.996-169.48-3.242-128.7-108.458-232.062-237.862-232.062-75.792 0-143.266 35.494-186.854 90.732-24.442-31.598-62.69-51.96-105.708-51.96-73.81 0-133.642 59.874-133.642 133.722 0 6.436 0.48 12.76 1.364 18.954-11.222-2.024-22.766-3.138-34.57-3.138-106.998-0.002-193.732 86.786-193.732 193.842 0 107.062 86.734 193.848 193.73 193.848l656.262-0.012c96.138-0.184 174.008-78.212 174.008-174.446z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "cloud", + "weather" + ], + "defaultCode": 58037, + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 787, + "order": 106, + "prevSize": 32, + "code": 59841, + "ligatures": "cloud, weather", + "name": "cloud" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 164 + }, + { + "icon": { + "paths": [ + "M891.004 360.060c-3.242-128.698-108.458-232.060-237.862-232.060-75.792 0-143.266 35.494-186.854 90.732-24.442-31.598-62.69-51.96-105.708-51.96-73.81 0-133.642 59.876-133.642 133.722 0 6.436 0.48 12.76 1.364 18.954-11.222-2.024-22.766-3.138-34.57-3.138-106.998-0.002-193.732 86.786-193.732 193.842 0 107.062 86.734 193.848 193.73 193.848h91.76l226.51 234.51 226.51-234.51 111.482-0.012c96.138-0.184 174.008-78.21 174.008-174.446 0-82.090-56.678-150.9-132.996-169.482zM512 832l-192-192h128v-192h128v192h128l-192 192z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "cloud-download", + "cloud", + "save", + "download" + ], + "defaultCode": 58038, + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 788, + "order": 107, + "prevSize": 32, + "code": 59842, + "ligatures": "cloud-download, cloud2", + "name": "cloud-download" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 165 + }, + { + "icon": { + "paths": [ + "M892.268 386.49c2.444-11.11 3.732-22.648 3.732-34.49 0-88.366-71.634-160-160-160-14.222 0-28.014 1.868-41.132 5.352-24.798-77.352-97.29-133.352-182.868-133.352-87.348 0-161.054 58.336-184.326 138.17-22.742-6.622-46.792-10.17-71.674-10.17-141.384 0-256 114.616-256 256 0 141.388 114.616 256 256 256h128v192h256v-192h224c88.366 0 160-71.632 160-160 0-78.72-56.854-144.162-131.732-157.51zM576 640v192h-128v-192h-160l224-224 224 224h-160z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "cloud-upload", + "cloud", + "load", + "upload" + ], + "defaultCode": 58039, + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 789, + "order": 108, + "prevSize": 32, + "code": 59843, + "ligatures": "cloud-upload, cloud3", + "name": "cloud-upload" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 166 + }, + { + "icon": { + "paths": [ + "M736 448l-256 256-256-256h160v-384h192v384zM480 704h-480v256h960v-256h-480zM896 832h-128v-64h128v64z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "download", + "save", + "store" + ], + "defaultCode": 58048, + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 798, + "order": 109, + "prevSize": 32, + "code": 59847, + "ligatures": "download3, save5", + "name": "download2" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 167 + }, + { + "icon": { + "paths": [ + "M480 704h-480v256h960v-256h-480zM896 832h-128v-64h128v64zM224 320l256-256 256 256h-160v320h-192v-320z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "upload", + "load", + "open" + ], + "defaultCode": 58049, + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 799, + "order": 110, + "prevSize": 32, + "code": 59848, + "ligatures": "upload3, load3", + "name": "upload2" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 168 + }, + { + "icon": { + "paths": [ + "M512 0c-282.77 0-512 229.23-512 512s229.23 512 512 512 512-229.23 512-512-229.23-512-512-512zM512 960.002c-62.958 0-122.872-13.012-177.23-36.452l233.148-262.29c5.206-5.858 8.082-13.422 8.082-21.26v-96c0-17.674-14.326-32-32-32-112.99 0-232.204-117.462-233.374-118.626-6-6.002-14.14-9.374-22.626-9.374h-128c-17.672 0-32 14.328-32 32v192c0 12.122 6.848 23.202 17.69 28.622l110.31 55.156v187.886c-116.052-80.956-192-215.432-192-367.664 0-68.714 15.49-133.806 43.138-192h116.862c8.488 0 16.626-3.372 22.628-9.372l128-128c6-6.002 9.372-14.14 9.372-22.628v-77.412c40.562-12.074 83.518-18.588 128-18.588 70.406 0 137.004 16.26 196.282 45.2-4.144 3.502-8.176 7.164-12.046 11.036-36.266 36.264-56.236 84.478-56.236 135.764s19.97 99.5 56.236 135.764c36.434 36.432 85.218 56.264 135.634 56.26 3.166 0 6.342-0.080 9.518-0.236 13.814 51.802 38.752 186.656-8.404 372.334-0.444 1.744-0.696 3.488-0.842 5.224-81.324 83.080-194.7 134.656-320.142 134.656z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "earth", + "globe", + "language", + "web", + "internet", + "sphere", + "planet" + ], + "defaultCode": 58055, + "grid": 16 + }, + "attrs": [], + "properties": { + "order": 111, + "id": 1423, + "prevSize": 32, + "code": 59850, + "ligatures": "earth, globe2", + "name": "earth" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 169 + }, + { + "icon": { + "paths": [ + "M440.236 635.766c-13.31 0-26.616-5.076-36.77-15.23-95.134-95.136-95.134-249.934 0-345.070l192-192c46.088-46.086 107.36-71.466 172.534-71.466s126.448 25.38 172.536 71.464c95.132 95.136 95.132 249.934 0 345.070l-87.766 87.766c-20.308 20.308-53.23 20.308-73.54 0-20.306-20.306-20.306-53.232 0-73.54l87.766-87.766c54.584-54.586 54.584-143.404 0-197.99-26.442-26.442-61.6-41.004-98.996-41.004s-72.552 14.562-98.996 41.006l-192 191.998c-54.586 54.586-54.586 143.406 0 197.992 20.308 20.306 20.306 53.232 0 73.54-10.15 10.152-23.462 15.23-36.768 15.23z", + "M256 1012c-65.176 0-126.45-25.38-172.534-71.464-95.134-95.136-95.134-249.934 0-345.070l87.764-87.764c20.308-20.306 53.234-20.306 73.54 0 20.308 20.306 20.308 53.232 0 73.54l-87.764 87.764c-54.586 54.586-54.586 143.406 0 197.992 26.44 26.44 61.598 41.002 98.994 41.002s72.552-14.562 98.998-41.006l192-191.998c54.584-54.586 54.584-143.406 0-197.992-20.308-20.308-20.306-53.232 0-73.54 20.306-20.306 53.232-20.306 73.54 0.002 95.132 95.134 95.132 249.932 0.002 345.068l-192.002 192c-46.090 46.088-107.364 71.466-172.538 71.466z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "link", + "chain", + "url", + "uri", + "anchor" + ], + "defaultCode": 58061, + "grid": 16 + }, + "attrs": [], + "properties": { + "order": 112, + "id": 1557, + "prevSize": 32, + "code": 59851, + "ligatures": "link, chain", + "name": "link" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 170 + }, + { + "icon": { + "paths": [ + "M0 0h128v1024h-128v-1024z", + "M832 643.002c82.624 0 154.57-19.984 192-49.5v-512c-37.43 29.518-109.376 49.502-192 49.502s-154.57-19.984-192-49.502v512c37.43 29.516 109.376 49.5 192 49.5z", + "M608 32.528c-46.906-19.94-115.52-32.528-192-32.528-96.396 0-180.334 19.984-224 49.502v512c43.666-29.518 127.604-49.502 224-49.502 76.48 0 145.094 12.588 192 32.528v-512z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "flag", + "report", + "mark" + ], + "defaultCode": 58066, + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 816, + "order": 115, + "prevSize": 32, + "code": 59852, + "ligatures": "flag, report", + "name": "flag" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 171 + }, + { + "icon": { + "paths": [ + "M665.832 327.048l-64.952-64.922-324.81 324.742c-53.814 53.792-53.814 141.048 0 194.844 53.804 53.792 141.060 53.792 194.874 0l389.772-389.708c89.714-89.662 89.714-235.062 0-324.726-89.666-89.704-235.112-89.704-324.782 0l-409.23 409.178c-0.29 0.304-0.612 0.576-0.876 0.846-125.102 125.096-125.102 327.856 0 452.906 125.054 125.056 327.868 125.056 452.988 0 0.274-0.274 0.516-0.568 0.82-0.876l0.032 0.034 279.332-279.292-64.986-64.92-279.33 279.262c-0.296 0.268-0.564 0.57-0.846 0.844-89.074 89.058-233.98 89.058-323.076 0-89.062-89.042-89.062-233.922 0-322.978 0.304-0.304 0.604-0.582 0.888-0.846l-0.046-0.060 409.28-409.166c53.712-53.738 141.144-53.738 194.886 0 53.712 53.734 53.712 141.148 0 194.84l-389.772 389.7c-17.936 17.922-47.054 17.922-64.972 0-17.894-17.886-17.894-47.032 0-64.92l324.806-324.782z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "attachment", + "paperclip" + ], + "defaultCode": 58071, + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 821, + "order": 113, + "prevSize": 32, + "code": 59853, + "ligatures": "attachment, paperclip", + "name": "attachment" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 172 + }, + { + "icon": { + "paths": [ + "M512 192c-223.318 0-416.882 130.042-512 320 95.118 189.958 288.682 320 512 320 223.312 0 416.876-130.042 512-320-95.116-189.958-288.688-320-512-320zM764.45 361.704c60.162 38.374 111.142 89.774 149.434 150.296-38.292 60.522-89.274 111.922-149.436 150.296-75.594 48.218-162.89 73.704-252.448 73.704-89.56 0-176.858-25.486-252.452-73.704-60.158-38.372-111.138-89.772-149.432-150.296 38.292-60.524 89.274-111.924 149.434-150.296 3.918-2.5 7.876-4.922 11.86-7.3-9.96 27.328-15.41 56.822-15.41 87.596 0 141.382 114.616 256 256 256 141.382 0 256-114.618 256-256 0-30.774-5.452-60.268-15.408-87.598 3.978 2.378 7.938 4.802 11.858 7.302v0zM512 416c0 53.020-42.98 96-96 96s-96-42.98-96-96 42.98-96 96-96 96 42.982 96 96z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "eye", + "views", + "vision", + "visit" + ], + "defaultCode": 58073, + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 823, + "order": 114, + "prevSize": 32, + "code": 59854, + "ligatures": "eye, views", + "name": "eye" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 173 + }, + { + "icon": { + "paths": [ + "M192 0v1024l320-320 320 320v-1024z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "bookmark", + "ribbon" + ], + "defaultCode": 58083, + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 833, + "order": 116, + "prevSize": 32, + "code": 59858, + "ligatures": "bookmark, ribbon", + "name": "bookmark" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 174 + }, + { + "icon": { + "paths": [ + "M256 128v896l320-320 320 320v-896zM768 0h-640v896l64-64v-768h576z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "bookmarks", + "ribbons" + ], + "defaultCode": 58085, + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 835, + "order": 117, + "prevSize": 32, + "code": 59859, + "ligatures": "bookmarks, ribbons", + "name": "bookmarks" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 175 + }, + { + "icon": { + "paths": [ + "M512 0c-282.77 0-512 229.23-512 512s229.23 512 512 512 512-229.23 512-512-229.23-512-512-512zM128 512c0-212.078 171.922-384 384-384v768c-212.078 0-384-171.922-384-384z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "contrast" + ], + "defaultCode": 58104, + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 854, + "order": 119, + "prevSize": 32, + "code": 59861, + "ligatures": "contrast", + "name": "contrast" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 176 + }, + { + "icon": { + "paths": [ + "M512 256c-141.384 0-256 114.616-256 256s114.616 256 256 256 256-114.616 256-256-114.616-256-256-256zM512 672v-320c88.224 0 160 71.776 160 160s-71.776 160-160 160zM512 832c35.346 0 64 28.654 64 64v64c0 35.346-28.654 64-64 64s-64-28.654-64-64v-64c0-35.346 28.654-64 64-64zM512 192c-35.346 0-64-28.654-64-64v-64c0-35.346 28.654-64 64-64s64 28.654 64 64v64c0 35.346-28.654 64-64 64zM960 448c35.346 0 64 28.654 64 64s-28.654 64-64 64h-64c-35.346 0-64-28.654-64-64s28.654-64 64-64h64zM192 512c0 35.346-28.654 64-64 64h-64c-35.346 0-64-28.654-64-64s28.654-64 64-64h64c35.346 0 64 28.654 64 64zM828.784 738.274l45.256 45.256c24.992 24.992 24.992 65.516 0 90.51-24.994 24.992-65.518 24.992-90.51 0l-45.256-45.256c-24.992-24.992-24.992-65.516 0-90.51 24.994-24.992 65.518-24.992 90.51 0zM195.216 285.726l-45.256-45.256c-24.994-24.994-24.994-65.516 0-90.51s65.516-24.994 90.51 0l45.256 45.256c24.994 24.994 24.994 65.516 0 90.51s-65.516 24.994-90.51 0zM828.784 285.726c-24.992 24.992-65.516 24.992-90.51 0-24.992-24.994-24.992-65.516 0-90.51l45.256-45.254c24.992-24.994 65.516-24.994 90.51 0 24.992 24.994 24.992 65.516 0 90.51l-45.256 45.254zM195.216 738.274c24.992-24.992 65.516-24.992 90.508 0 24.994 24.994 24.994 65.518 0 90.51l-45.254 45.256c-24.994 24.992-65.516 24.992-90.51 0-24.994-24.994-24.994-65.518 0-90.51l45.256-45.256z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "brightness-contrast" + ], + "defaultCode": 58103, + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 853, + "order": 120, + "prevSize": 32, + "code": 59862, + "ligatures": "brightness-contrast", + "name": "brightness" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 177 + }, + { + "icon": { + "paths": [ + "M1024 397.050l-353.78-51.408-158.22-320.582-158.216 320.582-353.784 51.408 256 249.538-60.432 352.352 316.432-166.358 316.432 166.358-60.434-352.352 256.002-249.538zM512 753.498l-223.462 117.48 42.676-248.83-180.786-176.222 249.84-36.304 111.732-226.396 111.736 226.396 249.836 36.304-180.788 176.222 42.678 248.83-223.462-117.48z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "star-empty", + "rate", + "star", + "favorite", + "bookmark" + ], + "defaultCode": 58111, + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 863, + "order": 121, + "prevSize": 32, + "code": 59863, + "ligatures": "star-empty, rate", + "name": "star-empty" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 178 + }, + { + "icon": { + "paths": [ + "M1024 397.050l-353.78-51.408-158.22-320.582-158.216 320.582-353.784 51.408 256 249.538-60.432 352.352 316.432-166.358 316.432 166.358-60.434-352.352 256.002-249.538zM512 753.498l-0.942 0.496 0.942-570.768 111.736 226.396 249.836 36.304-180.788 176.222 42.678 248.83-223.462-117.48z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "star-half", + "rate", + "star" + ], + "defaultCode": 58112, + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 864, + "order": 122, + "prevSize": 32, + "code": 59864, + "ligatures": "star-half, rate2", + "name": "star-half" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 179 + }, + { + "icon": { + "paths": [ + "M1024 397.050l-353.78-51.408-158.22-320.582-158.216 320.582-353.784 51.408 256 249.538-60.432 352.352 316.432-166.358 316.432 166.358-60.434-352.352 256.002-249.538z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "star-full", + "rate", + "star", + "favorite", + "bookmark" + ], + "defaultCode": 58113, + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 865, + "order": 123, + "prevSize": 32, + "code": 59865, + "ligatures": "star-full, rate3", + "name": "star-full" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 180 + }, + { + "icon": { + "paths": [ + "M755.188 64c-107.63 0-200.258 87.554-243.164 179-42.938-91.444-135.578-179-243.216-179-148.382 0-268.808 120.44-268.808 268.832 0 301.846 304.5 380.994 512.022 679.418 196.154-296.576 511.978-387.206 511.978-679.418 0-148.392-120.43-268.832-268.812-268.832z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "heart", + "like", + "love", + "favorite" + ], + "defaultCode": 58119, + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 871, + "order": 124, + "prevSize": 32, + "code": 59866, + "ligatures": "heart, like", + "name": "heart" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 181 + }, + { + "icon": { + "paths": [ + "M755.188 64c148.382 0 268.812 120.44 268.812 268.832 0 292.21-315.824 382.842-511.978 679.418-207.522-298.424-512.022-377.572-512.022-679.418 0-148.392 120.426-268.832 268.808-268.832 60.354 0 115.99 27.53 160.796 67.834l-77.604 124.166 224 128-128 320 352-384-224-128 61.896-92.846c35.42-21.768 75.21-35.154 117.292-35.154z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "heart-broken", + "heart", + "like", + "love" + ], + "defaultCode": 58121, + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 873, + "order": 125, + "prevSize": 32, + "code": 59867, + "ligatures": "heart-broken, heart2", + "name": "heart-broken" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 182 + }, + { + "icon": { + "paths": [ + "M512 92.774l429.102 855.226h-858.206l429.104-855.226zM512 0c-22.070 0-44.14 14.882-60.884 44.648l-437.074 871.112c-33.486 59.532-5 108.24 63.304 108.24h869.308c68.3 0 96.792-48.708 63.3-108.24h0.002l-437.074-871.112c-16.742-29.766-38.812-44.648-60.882-44.648v0z", + "M576 832c0 35.346-28.654 64-64 64s-64-28.654-64-64c0-35.346 28.654-64 64-64s64 28.654 64 64z", + "M512 704c-35.346 0-64-28.654-64-64v-192c0-35.346 28.654-64 64-64s64 28.654 64 64v192c0 35.346-28.654 64-64 64z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "warning", + "sign" + ], + "defaultCode": 58197, + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 949, + "order": 126, + "prevSize": 32, + "code": 59911, + "ligatures": "warning, sign", + "name": "warning" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 183 + }, + { + "icon": { + "paths": [ + "M512 96c-111.118 0-215.584 43.272-294.156 121.844s-121.844 183.038-121.844 294.156c0 111.118 43.272 215.584 121.844 294.156s183.038 121.844 294.156 121.844c111.118 0 215.584-43.272 294.156-121.844s121.844-183.038 121.844-294.156c0-111.118-43.272-215.584-121.844-294.156s-183.038-121.844-294.156-121.844zM512 0v0c282.77 0 512 229.23 512 512s-229.23 512-512 512c-282.77 0-512-229.23-512-512s229.23-512 512-512zM448 704h128v128h-128zM448 192h128v384h-128z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "notification", + "warning", + "notice", + "note", + "exclamation" + ], + "defaultCode": 58199, + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 951, + "order": 127, + "prevSize": 32, + "code": 59912, + "ligatures": "notification, warning2", + "name": "notification" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 184 + }, + { + "icon": { + "paths": [ + "M448 704h128v128h-128zM704 256c35.346 0 64 28.654 64 64v192l-192 128h-128v-64l192-128v-64h-320v-128h384zM512 96c-111.118 0-215.584 43.272-294.156 121.844s-121.844 183.038-121.844 294.156c0 111.118 43.272 215.584 121.844 294.156s183.038 121.844 294.156 121.844c111.118 0 215.584-43.272 294.156-121.844s121.844-183.038 121.844-294.156c0-111.118-43.272-215.584-121.844-294.156s-183.038-121.844-294.156-121.844zM512 0v0c282.77 0 512 229.23 512 512s-229.23 512-512 512c-282.77 0-512-229.23-512-512s229.23-512 512-512z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "question", + "help", + "support" + ], + "defaultCode": 58201, + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 953, + "order": 128, + "prevSize": 32, + "code": 59913, + "ligatures": "question, help", + "name": "question" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 185 + }, + { + "icon": { + "paths": [ + "M992 384h-352v-352c0-17.672-14.328-32-32-32h-192c-17.672 0-32 14.328-32 32v352h-352c-17.672 0-32 14.328-32 32v192c0 17.672 14.328 32 32 32h352v352c0 17.672 14.328 32 32 32h192c17.672 0 32-14.328 32-32v-352h352c17.672 0 32-14.328 32-32v-192c0-17.672-14.328-32-32-32z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "plus", + "add", + "sum" + ], + "defaultCode": 58230, + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 986, + "order": 208, + "prevSize": 32, + "code": 59914, + "ligatures": "plus, add", + "name": "plus" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 186 + }, + { + "icon": { + "paths": [ + "M0 416v192c0 17.672 14.328 32 32 32h960c17.672 0 32-14.328 32-32v-192c0-17.672-14.328-32-32-32h-960c-17.672 0-32 14.328-32 32z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "minus", + "subtract", + "minimize", + "line" + ], + "defaultCode": 58229, + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 985, + "order": 209, + "prevSize": 32, + "code": 59915, + "ligatures": "minus, subtract", + "name": "minus" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 187 + }, + { + "icon": { + "paths": [ + "M448 304c0-26.4 21.6-48 48-48h32c26.4 0 48 21.6 48 48v32c0 26.4-21.6 48-48 48h-32c-26.4 0-48-21.6-48-48v-32z", + "M640 768h-256v-64h64v-192h-64v-64h192v256h64z", + "M512 0c-282.77 0-512 229.23-512 512s229.23 512 512 512 512-229.23 512-512-229.23-512-512-512zM512 928c-229.75 0-416-186.25-416-416s186.25-416 416-416 416 186.25 416 416-186.25 416-416 416z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "info", + "information" + ], + "defaultCode": 60768, + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 965, + "order": 129, + "prevSize": 32, + "code": 59916, + "ligatures": "info, information", + "name": "info" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 188 + }, + { + "icon": { + "paths": [ + "M512 0c-282.77 0-512 229.23-512 512s229.23 512 512 512 512-229.23 512-512-229.23-512-512-512zM512 928c-229.75 0-416-186.25-416-416s186.25-416 416-416 416 186.25 416 416-186.25 416-416 416z", + "M672 256l-160 160-160-160-96 96 160 160-160 160 96 96 160-160 160 160 96-96-160-160 160-160z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "cancel-circle", + "close", + "remove", + "delete" + ], + "defaultCode": 60770, + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 23, + "order": 130, + "prevSize": 32, + "code": 59917, + "ligatures": "cancel-circle, close", + "name": "cancel" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 189 + }, + { + "icon": { + "paths": [ + "M874.040 149.96c-96.706-96.702-225.28-149.96-362.040-149.96s-265.334 53.258-362.040 149.96c-96.702 96.706-149.96 225.28-149.96 362.040s53.258 265.334 149.96 362.040c96.706 96.702 225.28 149.96 362.040 149.96s265.334-53.258 362.040-149.96c96.702-96.706 149.96-225.28 149.96-362.040s-53.258-265.334-149.96-362.040zM896 512c0 82.814-26.354 159.588-71.112 222.38l-535.266-535.268c62.792-44.758 139.564-71.112 222.378-71.112 211.738 0 384 172.262 384 384zM128 512c0-82.814 26.354-159.586 71.112-222.378l535.27 535.268c-62.794 44.756-139.568 71.11-222.382 71.11-211.738 0-384-172.262-384-384z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "blocked", + "forbidden", + "denied", + "banned" + ], + "defaultCode": 58212, + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 967, + "order": 131, + "prevSize": 32, + "code": 59918, + "ligatures": "blocked, forbidden", + "name": "blocked" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 190 + }, + { + "icon": { + "paths": [ + "M1014.662 822.66c-0.004-0.004-0.008-0.008-0.012-0.010l-310.644-310.65 310.644-310.65c0.004-0.004 0.008-0.006 0.012-0.010 3.344-3.346 5.762-7.254 7.312-11.416 4.246-11.376 1.824-24.682-7.324-33.83l-146.746-146.746c-9.148-9.146-22.45-11.566-33.828-7.32-4.16 1.55-8.070 3.968-11.418 7.31 0 0.004-0.004 0.006-0.008 0.010l-310.648 310.652-310.648-310.65c-0.004-0.004-0.006-0.006-0.010-0.010-3.346-3.342-7.254-5.76-11.414-7.31-11.38-4.248-24.682-1.826-33.83 7.32l-146.748 146.748c-9.148 9.148-11.568 22.452-7.322 33.828 1.552 4.16 3.97 8.072 7.312 11.416 0.004 0.002 0.006 0.006 0.010 0.010l310.65 310.648-310.65 310.652c-0.002 0.004-0.006 0.006-0.008 0.010-3.342 3.346-5.76 7.254-7.314 11.414-4.248 11.376-1.826 24.682 7.322 33.83l146.748 146.746c9.15 9.148 22.452 11.568 33.83 7.322 4.16-1.552 8.070-3.97 11.416-7.312 0.002-0.004 0.006-0.006 0.010-0.010l310.648-310.65 310.648 310.65c0.004 0.002 0.008 0.006 0.012 0.008 3.348 3.344 7.254 5.762 11.414 7.314 11.378 4.246 24.684 1.826 33.828-7.322l146.746-146.748c9.148-9.148 11.57-22.454 7.324-33.83-1.552-4.16-3.97-8.068-7.314-11.414z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "cross", + "cancel", + "close", + "quit", + "remove" + ], + "defaultCode": 58219, + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 975, + "order": 210, + "prevSize": 32, + "code": 59919, + "ligatures": "cross, cancel", + "name": "cross" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 191 + }, + { + "icon": { + "paths": [ + "M864 128l-480 480-224-224-160 160 384 384 640-640z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "checkmark", + "tick", + "correct", + "accept", + "ok" + ], + "defaultCode": 58224, + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 980, + "order": 132, + "prevSize": 32, + "code": 59920, + "ligatures": "checkmark, tick", + "name": "checkmark" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 192 + }, + { + "icon": { + "paths": [ + "M128 256h128v192h64v-384c0-35.2-28.8-64-64-64h-128c-35.2 0-64 28.8-64 64v384h64v-192zM128 64h128v128h-128v-128zM960 64v-64h-192c-35.202 0-64 28.8-64 64v320c0 35.2 28.798 64 64 64h192v-64h-192v-320h192zM640 160v-96c0-35.2-28.8-64-64-64h-192v448h192c35.2 0 64-28.8 64-64v-96c0-35.2-8.8-64-44-64 35.2 0 44-28.8 44-64zM576 384h-128v-128h128v128zM576 192h-128v-128h128v128zM832 576l-416 448-224-288 82-70 142 148 352-302z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "spell-check", + "spelling", + "correct" + ], + "defaultCode": 58228, + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 984, + "order": 207, + "prevSize": 32, + "code": 59922, + "ligatures": "spell-check, spelling", + "name": "spell-check" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 193 + }, + { + "icon": { + "paths": [ + "M384 512h-320v-128h320v-128l192 192-192 192zM1024 0v832l-384 192v-192h-384v-256h64v192h320v-576l256-128h-576v256h-64v-320z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "enter", + "signin", + "login" + ], + "defaultCode": 58237, + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 993, + "order": 133, + "prevSize": 32, + "code": 59923, + "ligatures": "enter, signin", + "name": "enter" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 194 + }, + { + "icon": { + "paths": [ + "M768 640v-128h-320v-128h320v-128l192 192zM704 576v256h-320v192l-384-192v-832h704v320h-64v-256h-512l256 128v576h256v-192z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "exit", + "signout", + "logout", + "quit", + "close" + ], + "defaultCode": 58238, + "grid": 16 + }, + "attrs": [], + "properties": { + "order": 134, + "id": 1568, + "prevSize": 32, + "code": 59924, + "ligatures": "exit, signout", + "name": "exit" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 195 + }, + { + "icon": { + "paths": [ + "M192 128l640 384-640 384z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "play", + "player" + ], + "defaultCode": 58245, + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 1001, + "order": 153, + "prevSize": 32, + "code": 59932, + "ligatures": "play3, player8", + "name": "play" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 196 + }, + { + "icon": { + "paths": [ + "M128 128h320v768h-320zM576 128h320v768h-320z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "pause", + "player" + ], + "defaultCode": 58246, + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 1002, + "order": 154, + "prevSize": 32, + "code": 59933, + "ligatures": "pause2, player9", + "name": "pause" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 197 + }, + { + "icon": { + "paths": [ + "M128 128h768v768h-768z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "stop", + "player", + "square" + ], + "defaultCode": 58247, + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 1003, + "order": 155, + "prevSize": 32, + "code": 59934, + "ligatures": "stop2, player10", + "name": "stop" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 198 + }, + { + "icon": { + "paths": [ + "M576 160v320l320-320v704l-320-320v320l-352-352z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "backward", + "player" + ], + "defaultCode": 58248, + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 1004, + "order": 156, + "prevSize": 32, + "code": 59935, + "ligatures": "backward2, player11", + "name": "backward" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 199 + }, + { + "icon": { + "paths": [ + "M512 864v-320l-320 320v-704l320 320v-320l352 352z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "forward", + "player" + ], + "defaultCode": 58249, + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 1005, + "order": 157, + "prevSize": 32, + "code": 59936, + "ligatures": "forward3, player12", + "name": "forward" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 200 + }, + { + "icon": { + "paths": [ + "M128 896v-768h128v352l320-320v320l320-320v704l-320-320v320l-320-320v352z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "first", + "player" + ], + "defaultCode": 58250, + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 1006, + "order": 158, + "prevSize": 32, + "code": 59937, + "ligatures": "first, player13", + "name": "first" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 201 + }, + { + "icon": { + "paths": [ + "M896 128v768h-128v-352l-320 320v-320l-320 320v-704l320 320v-320l320 320v-352z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "last", + "player" + ], + "defaultCode": 58251, + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 1007, + "order": 159, + "prevSize": 32, + "code": 59938, + "ligatures": "last, player14", + "name": "last" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 202 + }, + { + "icon": { + "paths": [ + "M256 896v-768h128v352l320-320v704l-320-320v352z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "previous", + "player" + ], + "defaultCode": 58252, + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 1008, + "order": 160, + "prevSize": 32, + "code": 59939, + "ligatures": "previous2, player15", + "name": "previous" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 203 + }, + { + "icon": { + "paths": [ + "M768 128v768h-128v-352l-320 320v-704l320 320v-352z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "next", + "player" + ], + "defaultCode": 58253, + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 1009, + "order": 161, + "prevSize": 32, + "code": 59940, + "ligatures": "next2, player16", + "name": "next" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 204 + }, + { + "icon": { + "paths": [ + "M0 768h1024v128h-1024zM512 128l512 512h-1024z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "eject", + "player" + ], + "defaultCode": 58254, + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 1010, + "order": 162, + "prevSize": 32, + "code": 59941, + "ligatures": "eject, player17", + "name": "eject" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 205 + }, + { + "icon": { + "paths": [ + "M890.040 922.040c-12.286 0-24.566-4.686-33.942-14.056-18.744-18.746-18.744-49.136 0-67.882 87.638-87.642 135.904-204.16 135.904-328.1 0-123.938-48.266-240.458-135.904-328.098-18.744-18.746-18.744-49.138 0-67.882s49.138-18.744 67.882 0c105.77 105.772 164.022 246.4 164.022 395.98s-58.252 290.208-164.022 395.98c-9.372 9.372-21.656 14.058-33.94 14.058zM719.53 831.53c-12.286 0-24.566-4.686-33.942-14.056-18.744-18.744-18.744-49.136 0-67.882 131.006-131.006 131.006-344.17 0-475.176-18.744-18.746-18.744-49.138 0-67.882 18.744-18.742 49.138-18.744 67.882 0 81.594 81.59 126.53 190.074 126.53 305.466 0 115.39-44.936 223.876-126.53 305.47-9.372 9.374-21.656 14.060-33.94 14.060v0zM549.020 741.020c-12.286 0-24.568-4.686-33.942-14.058-18.746-18.746-18.746-49.134 0-67.88 81.1-81.1 81.1-213.058 0-294.156-18.746-18.746-18.746-49.138 0-67.882s49.136-18.744 67.882 0c118.53 118.53 118.53 311.392 0 429.922-9.372 9.368-21.656 14.054-33.94 14.054z", + "M416.006 960c-8.328 0-16.512-3.25-22.634-9.374l-246.626-246.626h-114.746c-17.672 0-32-14.326-32-32v-320c0-17.672 14.328-32 32-32h114.746l246.626-246.628c9.154-9.154 22.916-11.89 34.874-6.936 11.958 4.952 19.754 16.622 19.754 29.564v832c0 12.944-7.796 24.612-19.754 29.564-3.958 1.64-8.118 2.436-12.24 2.436z" + ], + "width": 1088, + "attrs": [], + "isMulticolor": false, + "tags": [ + "volume-high", + "volume", + "audio", + "speaker", + "player" + ], + "defaultCode": 58255, + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 1011, + "order": 146, + "prevSize": 32, + "code": 59942, + "ligatures": "volume-high, volume", + "name": "volume-high" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 206 + }, + { + "icon": { + "paths": [ + "M719.53 831.53c-12.286 0-24.566-4.686-33.942-14.056-18.744-18.744-18.744-49.136 0-67.882 131.006-131.006 131.006-344.17 0-475.176-18.744-18.746-18.744-49.138 0-67.882 18.744-18.742 49.138-18.744 67.882 0 81.594 81.59 126.53 190.074 126.53 305.466 0 115.39-44.936 223.876-126.53 305.47-9.372 9.374-21.656 14.060-33.94 14.060v0zM549.020 741.020c-12.286 0-24.566-4.686-33.942-14.058-18.746-18.746-18.746-49.134 0-67.88 81.1-81.1 81.1-213.058 0-294.156-18.746-18.746-18.746-49.138 0-67.882s49.136-18.744 67.882 0c118.53 118.53 118.53 311.392 0 429.922-9.372 9.368-21.656 14.054-33.94 14.054z", + "M416.006 960c-8.328 0-16.512-3.25-22.634-9.374l-246.626-246.626h-114.746c-17.672 0-32-14.326-32-32v-320c0-17.672 14.328-32 32-32h114.746l246.626-246.628c9.154-9.154 22.916-11.89 34.874-6.936 11.958 4.952 19.754 16.622 19.754 29.564v832c0 12.944-7.796 24.612-19.754 29.564-3.958 1.64-8.118 2.436-12.24 2.436z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "volume-medium", + "volume", + "audio", + "speaker", + "player" + ], + "defaultCode": 58256, + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 1012, + "order": 147, + "prevSize": 32, + "code": 59943, + "ligatures": "volume-medium, volume2", + "name": "volume-medium" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 207 + }, + { + "icon": { + "paths": [ + "M549.020 741.020c-12.286 0-24.566-4.686-33.942-14.058-18.746-18.746-18.746-49.134 0-67.88 81.1-81.1 81.1-213.058 0-294.156-18.746-18.746-18.746-49.138 0-67.882s49.136-18.744 67.882 0c118.53 118.53 118.53 311.392 0 429.922-9.372 9.368-21.656 14.054-33.94 14.054z", + "M416.006 960c-8.328 0-16.512-3.25-22.634-9.374l-246.626-246.626h-114.746c-17.672 0-32-14.326-32-32v-320c0-17.672 14.328-32 32-32h114.746l246.626-246.628c9.154-9.154 22.916-11.89 34.874-6.936 11.958 4.952 19.754 16.622 19.754 29.564v832c0 12.944-7.796 24.612-19.754 29.564-3.958 1.64-8.118 2.436-12.24 2.436z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "volume-low", + "volume", + "audio", + "speaker", + "player" + ], + "defaultCode": 58257, + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 1013, + "order": 148, + "prevSize": 32, + "code": 59944, + "ligatures": "volume-low, volume3", + "name": "volume-low" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 208 + }, + { + "icon": { + "paths": [ + "M416.006 960c-8.328 0-16.512-3.25-22.634-9.374l-246.626-246.626h-114.746c-17.672 0-32-14.326-32-32v-320c0-17.672 14.328-32 32-32h114.746l246.626-246.628c9.154-9.154 22.916-11.89 34.874-6.936 11.958 4.952 19.754 16.622 19.754 29.564v832c0 12.944-7.796 24.612-19.754 29.564-3.958 1.64-8.118 2.436-12.24 2.436z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "volume-mute", + "volume", + "audio", + "speaker", + "player" + ], + "defaultCode": 58258, + "grid": 16 + }, + "attrs": [], + "properties": { + "order": 149, + "id": 1712, + "prevSize": 32, + "code": 59945, + "ligatures": "volume-mute, volume4", + "name": "volume-mute" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 209 + }, + { + "icon": { + "paths": [ + "M960 619.148v84.852h-84.852l-107.148-107.148-107.148 107.148h-84.852v-84.852l107.148-107.148-107.148-107.148v-84.852h84.852l107.148 107.148 107.148-107.148h84.852v84.852l-107.148 107.148 107.148 107.148z", + "M416.006 960c-8.328 0-16.512-3.25-22.634-9.374l-246.626-246.626h-114.746c-17.672 0-32-14.326-32-32v-320c0-17.672 14.328-32 32-32h114.746l246.626-246.628c9.154-9.154 22.916-11.89 34.874-6.936 11.958 4.952 19.754 16.622 19.754 29.564v832c0 12.944-7.796 24.612-19.754 29.564-3.958 1.64-8.118 2.436-12.24 2.436z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "volume-mute", + "volume", + "audio", + "player" + ], + "defaultCode": 58259, + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 1015, + "order": 150, + "prevSize": 32, + "code": 59946, + "ligatures": "volume-mute2, volume5", + "name": "volume-mute2" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 210 + }, + { + "icon": { + "paths": [ + "M1024 576h-192v192h-128v-192h-192v-128h192v-192h128v192h192v128z", + "M416.006 960c-8.328 0-16.512-3.25-22.634-9.374l-246.626-246.626h-114.746c-17.672 0-32-14.326-32-32v-320c0-17.672 14.328-32 32-32h114.746l246.626-246.628c9.154-9.154 22.916-11.89 34.874-6.936 11.958 4.952 19.754 16.622 19.754 29.564v832c0 12.944-7.796 24.612-19.754 29.564-3.958 1.64-8.118 2.436-12.24 2.436z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "volume-increase", + "volume", + "audio", + "speaker", + "player" + ], + "defaultCode": 58260, + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 1016, + "order": 151, + "prevSize": 32, + "code": 59947, + "ligatures": "volume-increase, volume6", + "name": "volume-plus" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 211 + }, + { + "icon": { + "paths": [ + "M512 448h512v128h-512v-128z", + "M416.006 960c-8.328 0-16.512-3.25-22.634-9.374l-246.626-246.626h-114.746c-17.672 0-32-14.326-32-32v-320c0-17.672 14.328-32 32-32h114.746l246.626-246.628c9.154-9.154 22.916-11.89 34.874-6.936 11.958 4.952 19.754 16.622 19.754 29.564v832c0 12.944-7.796 24.612-19.754 29.564-3.958 1.64-8.118 2.436-12.24 2.436z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "volume-decrease", + "volume", + "audio", + "speaker", + "player" + ], + "defaultCode": 58261, + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 1017, + "order": 152, + "prevSize": 32, + "code": 59948, + "ligatures": "volume-decrease, volume7", + "name": "volume-minus" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 212 + }, + { + "icon": { + "paths": [ + "M128 320h640v192l256-256-256-256v192h-768v384h128zM896 704h-640v-192l-256 256 256 256v-192h768v-384h-128z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "loop", + "repeat", + "player" + ], + "defaultCode": 58277, + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 1033, + "order": 163, + "prevSize": 32, + "code": 59949, + "ligatures": "loop, repeat", + "name": "loop" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 213 + }, + { + "icon": { + "paths": [ + "M889.68 166.32c-93.608-102.216-228.154-166.32-377.68-166.32-282.77 0-512 229.23-512 512h96c0-229.75 186.25-416 416-416 123.020 0 233.542 53.418 309.696 138.306l-149.696 149.694h352v-352l-134.32 134.32z", + "M928 512c0 229.75-186.25 416-416 416-123.020 0-233.542-53.418-309.694-138.306l149.694-149.694h-352v352l134.32-134.32c93.608 102.216 228.154 166.32 377.68 166.32 282.77 0 512-229.23 512-512h-96z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "loop", + "repeat", + "player", + "reload", + "refresh", + "update", + "synchronize", + "arrows" + ], + "defaultCode": 60839, + "grid": 16 + }, + "attrs": [], + "properties": { + "order": 135, + "id": 1550, + "prevSize": 32, + "code": 59950, + "ligatures": "loop2, repeat2", + "name": "loop2" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 214 + }, + { + "icon": { + "paths": [ + "M783.988 752.012c-64.104 0-124.372-24.96-169.7-70.288l-102.288-102.282-102.276 102.27c-45.332 45.336-105.6 70.3-169.706 70.3-64.118 0-124.39-24.964-169.722-70.3-45.332-45.334-70.296-105.604-70.296-169.712s24.964-124.38 70.296-169.714c45.334-45.332 105.608-70.296 169.714-70.296 64.108 0 124.38 24.964 169.712 70.296l102.278 102.276 102.276-102.276c45.332-45.332 105.604-70.298 169.712-70.298 64.112 0 124.384 24.966 169.71 70.298 45.338 45.334 70.302 105.606 70.302 169.714 0 64.112-24.964 124.382-70.3 169.71-45.326 45.336-105.598 70.302-169.712 70.302zM681.72 614.288c27.322 27.31 63.64 42.354 102.268 42.352 38.634 0 74.958-15.044 102.276-42.362 27.316-27.322 42.364-63.644 42.364-102.278s-15.046-74.956-42.364-102.274c-27.32-27.318-63.64-42.364-102.276-42.364-38.632 0-74.956 15.044-102.278 42.364l-102.268 102.274 102.278 102.288zM240.012 367.362c-38.634 0-74.956 15.044-102.274 42.364-27.32 27.318-42.364 63.64-42.364 102.274 0 38.632 15.044 74.954 42.364 102.276 27.32 27.316 63.642 42.364 102.274 42.364 38.634 0 74.956-15.044 102.272-42.362l102.276-102.278-102.276-102.274c-27.318-27.32-63.64-42.366-102.272-42.364v0z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "infinite" + ], + "defaultCode": 58889, + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 14, + "order": 136, + "prevSize": 32, + "code": 59951, + "ligatures": "infinite", + "name": "infinite" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 215 + }, + { + "icon": { + "paths": [ + "M768 704h-101.49l-160-160 160-160h101.49v160l224-224-224-224v160h-128c-16.974 0-33.252 6.744-45.254 18.746l-178.746 178.744-178.746-178.746c-12-12-28.28-18.744-45.254-18.744h-192v128h165.49l160 160-160 160h-165.49v128h192c16.974 0 33.252-6.742 45.254-18.746l178.746-178.744 178.746 178.744c12.002 12.004 28.28 18.746 45.254 18.746h128v160l224-224-224-224v160z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "shuffle", + "random", + "player" + ], + "defaultCode": 58282, + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 1038, + "order": 137, + "prevSize": 32, + "code": 59952, + "ligatures": "shuffle, random", + "name": "shuffle" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 216 + }, + { + "icon": { + "paths": [ + "M877.254 786.746l-530.744-530.746h229.49c35.346 0 64-28.654 64-64s-28.654-64-64-64h-384c-25.886 0-49.222 15.592-59.128 39.508-3.282 7.924-4.84 16.242-4.838 24.492h-0.034v384c0 35.346 28.654 64 64 64s64-28.654 64-64v-229.49l530.746 530.744c12.496 12.498 28.876 18.746 45.254 18.746s32.758-6.248 45.254-18.746c24.994-24.992 24.994-65.516 0-90.508z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "arrow-up-left", + "up-left", + "arrow-top-left" + ], + "defaultCode": 58304, + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 1072, + "order": 278, + "prevSize": 32, + "code": 59961, + "ligatures": "arrow-up-left2, up-left2", + "name": "arrow-up-left" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 217 + }, + { + "icon": { + "paths": [ + "M877.254 402.746l-320-320c-24.992-24.994-65.514-24.994-90.508 0l-320 320c-24.994 24.994-24.994 65.516 0 90.51 24.994 24.996 65.516 24.996 90.51 0l210.744-210.746v613.49c0 35.346 28.654 64 64 64s64-28.654 64-64v-613.49l210.746 210.746c12.496 12.496 28.876 18.744 45.254 18.744s32.758-6.248 45.254-18.746c24.994-24.994 24.994-65.514 0-90.508z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "arrow-up", + "up", + "upload", + "top" + ], + "defaultCode": 58305, + "grid": 16 + }, + "attrs": [], + "properties": { + "order": 279, + "id": 1803, + "prevSize": 32, + "code": 59962, + "ligatures": "arrow-up2, up2", + "name": "arrow-up" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 218 + }, + { + "icon": { + "paths": [ + "M237.254 877.254l530.746-530.744v229.49c0 35.346 28.654 64 64 64s64-28.654 64-64v-384c0-25.884-15.594-49.222-39.508-59.126-7.924-3.284-16.242-4.84-24.492-4.838v-0.036h-384c-35.346 0-64 28.654-64 64 0 35.348 28.654 64 64 64h229.49l-530.744 530.746c-12.498 12.496-18.746 28.876-18.746 45.254s6.248 32.758 18.746 45.254c24.992 24.994 65.516 24.994 90.508 0z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "arrow-up-right", + "up-right", + "arrow-top-right" + ], + "defaultCode": 58306, + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 1074, + "order": 280, + "prevSize": 32, + "code": 59963, + "ligatures": "arrow-up-right2, up-right2", + "name": "arrow-up-right" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 219 + }, + { + "icon": { + "paths": [ + "M621.254 877.254l320-320c24.994-24.992 24.994-65.516 0-90.51l-320-320c-24.994-24.992-65.516-24.992-90.51 0-24.994 24.994-24.994 65.516 0 90.51l210.746 210.746h-613.49c-35.346 0-64 28.654-64 64s28.654 64 64 64h613.49l-210.746 210.746c-12.496 12.496-18.744 28.876-18.744 45.254s6.248 32.758 18.744 45.254c24.994 24.994 65.516 24.994 90.51 0z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "arrow-right", + "right", + "next" + ], + "defaultCode": 58307, + "grid": 16 + }, + "attrs": [], + "properties": { + "order": 281, + "id": 1802, + "prevSize": 32, + "code": 59964, + "ligatures": "arrow-right2, right4", + "name": "arrow-right" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 220 + }, + { + "icon": { + "paths": [ + "M146.746 237.254l530.742 530.746h-229.488c-35.346 0-64 28.654-64 64s28.654 64 64 64h384c25.884 0 49.222-15.594 59.126-39.508 3.284-7.924 4.84-16.242 4.838-24.492h0.036v-384c0-35.346-28.654-64-64-64-35.348 0-64 28.654-64 64v229.49l-530.746-530.744c-12.496-12.498-28.874-18.746-45.254-18.746s-32.758 6.248-45.254 18.746c-24.994 24.992-24.994 65.516 0 90.508z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "arrow-down-right", + "down-right", + "arrow-bottom-right" + ], + "defaultCode": 58308, + "grid": 16 + }, + "attrs": [], + "properties": { + "order": 282, + "id": 1594, + "prevSize": 32, + "code": 59965, + "ligatures": "arrow-down-right2, down-right2", + "name": "arrow-down-right" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 221 + }, + { + "icon": { + "paths": [ + "M877.254 621.254l-320 320c-24.992 24.994-65.514 24.994-90.508 0l-320-320c-24.994-24.994-24.994-65.516 0-90.51 24.994-24.996 65.516-24.996 90.51 0l210.744 210.746v-613.49c0-35.346 28.654-64 64-64s64 28.654 64 64v613.49l210.746-210.746c12.496-12.496 28.876-18.744 45.254-18.744s32.758 6.248 45.254 18.746c24.994 24.994 24.994 65.514 0 90.508z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "arrow-down", + "down", + "download", + "bottom" + ], + "defaultCode": 58305, + "grid": 16 + }, + "attrs": [], + "properties": { + "order": 283, + "id": 1595, + "prevSize": 32, + "code": 59966, + "ligatures": "arrow-down2, down2", + "name": "arrow-down" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 222 + }, + { + "icon": { + "paths": [ + "M786.744 146.744l-530.744 530.744v-229.49c0-35.346-28.654-64-64-64s-64 28.654-64 64v384.002c0 25.886 15.592 49.222 39.508 59.128 7.924 3.282 16.242 4.84 24.492 4.836v0.036l384-0.002c35.344 0 64-28.654 64-63.998 0-35.348-28.656-64-64-64h-229.49l530.744-530.746c12.496-12.496 18.746-28.876 18.746-45.256 0-16.376-6.25-32.758-18.746-45.254-24.992-24.992-65.518-24.992-90.51 0v0z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "arrow-down-left", + "down-left", + "arrow-bottom-left" + ], + "defaultCode": 58310, + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 1078, + "order": 284, + "prevSize": 32, + "code": 59967, + "ligatures": "arrow-down-left2, down-left2", + "name": "arrow-down-left" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 223 + }, + { + "icon": { + "paths": [ + "M402.746 877.254l-320-320c-24.994-24.992-24.994-65.516 0-90.51l320-320c24.994-24.992 65.516-24.992 90.51 0 24.994 24.994 24.994 65.516 0 90.51l-210.746 210.746h613.49c35.346 0 64 28.654 64 64s-28.654 64-64 64h-613.49l210.746 210.746c12.496 12.496 18.744 28.876 18.744 45.254s-6.248 32.758-18.744 45.254c-24.994 24.994-65.516 24.994-90.51 0z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "arrow-left", + "left", + "previous" + ], + "defaultCode": 58307, + "grid": 16 + }, + "attrs": [], + "properties": { + "order": 285, + "id": 1596, + "prevSize": 32, + "code": 59968, + "ligatures": "arrow-left2, left4", + "name": "arrow-left" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 224 + }, + { + "icon": { + "paths": [ + "M960 0h64v512h-64v-512z", + "M0 512h64v512h-64v-512z", + "M320 704h704v128h-704v160l-224-224 224-224v160z", + "M704 320h-704v-128h704v-160l224 224-224 224z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "tab", + "arrows" + ], + "defaultCode": 58402, + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 1170, + "order": 222, + "prevSize": 32, + "code": 59973, + "ligatures": "tab, arrows", + "name": "tab" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 225 + }, + { + "icon": { + "paths": [ + "M704 512v384h64v-384h160l-192-192-192 192z", + "M64 192h96v64h-96v-64z", + "M192 192h96v64h-96v-64z", + "M320 192h64v96h-64v-96z", + "M64 416h64v96h-64v-96z", + "M160 448h96v64h-96v-64z", + "M288 448h96v64h-96v-64z", + "M64 288h64v96h-64v-96z", + "M320 320h64v96h-64v-96z", + "M320 704v192h-192v-192h192zM384 640h-320v320h320v-320z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "move-up", + "sort", + "arrange" + ], + "defaultCode": 60997, + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 1175, + "order": 211, + "prevSize": 32, + "code": 59974, + "ligatures": "move-up, sort", + "name": "move-up" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 226 + }, + { + "icon": { + "paths": [ + "M768 704v-384h-64v384h-160l192 192 192-192z", + "M320 256v192h-192v-192h192zM384 192h-320v320h320v-320z", + "M64 640h96v64h-96v-64z", + "M192 640h96v64h-96v-64z", + "M320 640h64v96h-64v-96z", + "M64 864h64v96h-64v-96z", + "M160 896h96v64h-96v-64z", + "M288 896h96v64h-96v-64z", + "M64 736h64v96h-64v-96z", + "M320 768h64v96h-64v-96z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "move-down", + "sort", + "arrange" + ], + "defaultCode": 60998, + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 1176, + "order": 212, + "prevSize": 32, + "code": 59975, + "ligatures": "move-down, sort2", + "name": "move-down" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 227 + }, + { + "icon": { + "paths": [ + "M320 768v-768h-128v768h-160l224 224 224-224h-160z", + "M448 576h576v128h-576v-128z", + "M448 384h448v128h-448v-128z", + "M448 192h320v128h-320v-128z", + "M448 0h192v128h-192v-128z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "sort-amount-asc", + "arrange" + ], + "defaultCode": 61003, + "grid": 16 + }, + "attrs": [], + "properties": { + "order": 426, + "id": 1732, + "prevSize": 32, + "code": 59980, + "ligatures": "sort-amount-asc, arrange5", + "name": "sort-asc" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 228 + }, + { + "icon": { + "paths": [ + "M320 768v-768h-128v768h-160l224 224 224-224h-160z", + "M448 0h576v128h-576v-128z", + "M448 192h448v128h-448v-128z", + "M448 384h320v128h-320v-128z", + "M448 576h192v128h-192v-128z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "sort-amount-desc", + "arrange" + ], + "defaultCode": 61004, + "grid": 16 + }, + "attrs": [], + "properties": { + "order": 427, + "id": 1777, + "prevSize": 32, + "code": 59981, + "ligatures": "sort-amount-desc, arrange6", + "name": "sort-desc" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 229 + }, + { + "icon": { + "paths": [ + "M736 896c-88.224 0-160-71.776-160-160v-96h-128v96c0 88.224-71.776 160-160 160s-160-71.776-160-160 71.776-160 160-160h96v-128h-96c-88.224 0-160-71.776-160-160s71.776-160 160-160 160 71.776 160 160v96h128v-96c0-88.224 71.776-160 160-160s160 71.776 160 160-71.776 160-160 160h-96v128h96c88.224 0 160 71.776 160 160s-71.774 160-160 160zM640 640v96c0 52.934 43.066 96 96 96s96-43.066 96-96-43.066-96-96-96h-96zM288 640c-52.934 0-96 43.066-96 96s43.066 96 96 96 96-43.066 96-96v-96h-96zM448 576h128v-128h-128v128zM640 384h96c52.934 0 96-43.066 96-96s-43.066-96-96-96-96 43.066-96 96v96zM288 192c-52.934 0-96 43.066-96 96s43.066 96 96 96h96v-96c0-52.934-43.064-96-96-96z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "command", + "cmd" + ], + "defaultCode": 58413, + "grid": 16 + }, + "attrs": [], + "properties": { + "order": 138, + "id": 1725, + "prevSize": 32, + "code": 59982, + "ligatures": "command, cmd", + "name": "command" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 230 + }, + { + "icon": { + "paths": [ + "M672 896h-320c-17.672 0-32-14.326-32-32v-352h-128c-12.942 0-24.612-7.796-29.564-19.754-4.954-11.958-2.214-25.722 6.936-34.874l320-320c12.498-12.496 32.758-12.496 45.254 0l320 320c9.152 9.152 11.89 22.916 6.938 34.874s-16.62 19.754-29.564 19.754h-128v352c0 17.674-14.326 32-32 32zM384 832h256v-352c0-17.672 14.326-32 32-32h82.744l-242.744-242.746-242.744 242.746h82.744c17.672 0 32 14.328 32 32v352z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "shift" + ], + "defaultCode": 58413, + "grid": 16 + }, + "attrs": [], + "properties": { + "order": 213, + "id": 1727, + "prevSize": 32, + "code": 59983, + "ligatures": "shift", + "name": "shift" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 231 + }, + { + "icon": { + "paths": [ + "M832 256l192-192-64-64-192 192h-448v-192h-128v192h-192v128h192v512h512v192h128v-192h192v-128h-192v-448zM320 320h320l-320 320v-320zM384 704l320-320v320h-320z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "crop", + "resize", + "cut" + ], + "defaultCode": 58428, + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 1201, + "order": 221, + "prevSize": 32, + "code": 59991, + "ligatures": "crop, resize", + "name": "crop" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 232 + }, + { + "icon": { + "paths": [ + "M512 0c-282.77 0-512 71.634-512 160v96l384 384v320c0 35.346 57.306 64 128 64 70.692 0 128-28.654 128-64v-320l384-384v-96c0-88.366-229.23-160-512-160zM94.384 138.824c23.944-13.658 57.582-26.62 97.278-37.488 87.944-24.076 201.708-37.336 320.338-37.336 118.628 0 232.394 13.26 320.338 37.336 39.696 10.868 73.334 23.83 97.28 37.488 15.792 9.006 24.324 16.624 28.296 21.176-3.972 4.552-12.506 12.168-28.296 21.176-23.946 13.658-57.584 26.62-97.28 37.488-87.942 24.076-201.708 37.336-320.338 37.336s-232.394-13.26-320.338-37.336c-39.696-10.868-73.334-23.83-97.278-37.488-15.792-9.008-24.324-16.624-28.298-21.176 3.974-4.552 12.506-12.168 28.298-21.176z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "filter", + "funnel" + ], + "defaultCode": 58435, + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 1208, + "order": 214, + "prevSize": 32, + "code": 59995, + "ligatures": "filter, funnel", + "name": "filter" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 233 + }, + { + "icon": { + "paths": [ + "M707.88 484.652c37.498-44.542 60.12-102.008 60.12-164.652 0-141.16-114.842-256-256-256h-320v896h384c141.158 0 256-114.842 256-256 0-92.956-49.798-174.496-124.12-219.348zM384 192h101.5c55.968 0 101.5 57.42 101.5 128s-45.532 128-101.5 128h-101.5v-256zM543 832h-159v-256h159c58.45 0 106 57.42 106 128s-47.55 128-106 128z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "bold", + "wysiwyg" + ], + "defaultCode": 58452, + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 1227, + "order": 215, + "prevSize": 32, + "code": 60002, + "ligatures": "bold, wysiwyg4", + "name": "bold" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 234 + }, + { + "icon": { + "paths": [ + "M704 64h128v416c0 159.058-143.268 288-320 288-176.73 0-320-128.942-320-288v-416h128v416c0 40.166 18.238 78.704 51.354 108.506 36.896 33.204 86.846 51.494 140.646 51.494s103.75-18.29 140.646-51.494c33.116-29.802 51.354-68.34 51.354-108.506v-416zM192 832h640v128h-640z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "underline", + "wysiwyg" + ], + "defaultCode": 58453, + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 1228, + "order": 216, + "prevSize": 32, + "code": 60003, + "ligatures": "underline, wysiwyg5", + "name": "underline" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 235 + }, + { + "icon": { + "paths": [ + "M896 64v64h-128l-320 768h128v64h-448v-64h128l320-768h-128v-64z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "italic", + "wysiwyg" + ], + "defaultCode": 58454, + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 1229, + "order": 217, + "prevSize": 32, + "code": 60004, + "ligatures": "italic, wysiwyg6", + "name": "italic" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 236 + }, + { + "icon": { + "paths": [ + "M1024 512v64h-234.506c27.504 38.51 42.506 82.692 42.506 128 0 70.878-36.66 139.026-100.58 186.964-59.358 44.518-137.284 69.036-219.42 69.036-82.138 0-160.062-24.518-219.42-69.036-63.92-47.938-100.58-116.086-100.58-186.964h128c0 69.382 87.926 128 192 128s192-58.618 192-128c0-69.382-87.926-128-192-128h-512v-64h299.518c-2.338-1.654-4.656-3.324-6.938-5.036-63.92-47.94-100.58-116.086-100.58-186.964s36.66-139.024 100.58-186.964c59.358-44.518 137.282-69.036 219.42-69.036 82.136 0 160.062 24.518 219.42 69.036 63.92 47.94 100.58 116.086 100.58 186.964h-128c0-69.382-87.926-128-192-128s-192 58.618-192 128c0 69.382 87.926 128 192 128 78.978 0 154.054 22.678 212.482 64h299.518z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "strikethrough", + "wysiwyg" + ], + "defaultCode": 58455, + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 1230, + "order": 218, + "prevSize": 32, + "code": 60005, + "ligatures": "strikethrough, wysiwyg7", + "name": "strikethrough" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 237 + }, + { + "icon": { + "paths": [ + "M0 512h128v64h-128zM192 512h192v64h-192zM448 512h128v64h-128zM640 512h192v64h-192zM896 512h128v64h-128zM880 0l16 448h-768l16-448h32l16 384h640l16-384zM144 1024l-16-384h768l-16 384h-32l-16-320h-640l-16 320z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "page-break", + "wysiwyg" + ], + "defaultCode": 58460, + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 1235, + "order": 428, + "prevSize": 32, + "code": 60008, + "ligatures": "page-break, wysiwyg10", + "name": "page-break" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 238 + }, + { + "icon": { + "paths": [ + "M768 206v50h128v64h-192v-146l128-60v-50h-128v-64h192v146zM676 256h-136l-188 188-188-188h-136l256 256-256 256h136l188-188 188 188h136l-256-256z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "superscript", + "wysiwyg" + ], + "defaultCode": 58461, + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 1236, + "order": 219, + "prevSize": 32, + "code": 60009, + "ligatures": "superscript, wysiwyg11", + "name": "superscript" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 239 + }, + { + "icon": { + "paths": [ + "M768 910v50h128v64h-192v-146l128-60v-50h-128v-64h192v146zM676 256h-136l-188 188-188-188h-136l256 256-256 256h136l188-188 188 188h136l-256-256z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "subscript", + "wysiwyg" + ], + "defaultCode": 58462, + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 1237, + "order": 220, + "prevSize": 32, + "code": 60010, + "ligatures": "subscript, wysiwyg12", + "name": "subscript" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 240 + }, + { + "icon": { + "paths": [ + "M0 64v896h1024v-896h-1024zM384 640v-192h256v192h-256zM640 704v192h-256v-192h256zM640 192v192h-256v-192h256zM320 192v192h-256v-192h256zM64 448h256v192h-256v-192zM704 448h256v192h-256v-192zM704 384v-192h256v192h-256zM64 704h256v192h-256v-192zM704 896v-192h256v192h-256z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "table", + "wysiwyg" + ], + "defaultCode": 58470, + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 1245, + "order": 195, + "prevSize": 32, + "code": 60017, + "ligatures": "table2, wysiwyg19", + "name": "table" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 241 + }, + { + "icon": { + "paths": [ + "M384 192h128v64h-128zM576 192h128v64h-128zM896 192v256h-192v-64h128v-128h-64v-64zM320 384h128v64h-128zM512 384h128v64h-128zM192 256v128h64v64h-128v-256h192v64zM384 576h128v64h-128zM576 576h128v64h-128zM896 576v256h-192v-64h128v-128h-64v-64zM320 768h128v64h-128zM512 768h128v64h-128zM192 640v128h64v64h-128v-256h192v64zM960 64h-896v896h896v-896zM1024 0v0 1024h-1024v-1024h1024z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "insert-template", + "wysiwyg" + ], + "defaultCode": 58471, + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 1246, + "order": 196, + "prevSize": 32, + "code": 60018, + "ligatures": "insert-template, wysiwyg20", + "name": "insert-template" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 242 + }, + { + "icon": { + "paths": [ + "M384 0h512v128h-128v896h-128v-896h-128v896h-128v-512c-141.384 0-256-114.616-256-256s114.616-256 256-256z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "pilcrow", + "wysiwyg" + ], + "defaultCode": 58472, + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 1247, + "order": 192, + "prevSize": 32, + "code": 60019, + "ligatures": "pilcrow, wysiwyg21", + "name": "pilcrow" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 243 + }, + { + "icon": { + "paths": [ + "M512 0c-141.384 0-256 114.616-256 256s114.616 256 256 256v512h128v-896h128v896h128v-896h128v-128h-512zM0 704l256-256-256-256z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "ltr", + "wysiwyg", + "left-to-right", + "direction" + ], + "defaultCode": 58473, + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 1248, + "order": 193, + "prevSize": 32, + "code": 60020, + "ligatures": "ltr, wysiwyg22", + "name": "ltr" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 244 + }, + { + "icon": { + "paths": [ + "M256 0c-141.384 0-256 114.616-256 256s114.616 256 256 256v512h128v-896h128v896h128v-896h128v-128h-512zM1024 192l-256 256 256 256z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "rtl", + "wysiwyg", + "right-to-left", + "direction" + ], + "defaultCode": 58474, + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 1249, + "order": 194, + "prevSize": 32, + "code": 60021, + "ligatures": "rtl, wysiwyg23", + "name": "rtl" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 245 + }, + { + "icon": { + "paths": [ + "M495.964 1024c-49.36 0-91.116-14.406-124.104-42.82-33.224-28.614-50.068-62.038-50.068-99.344 0-18.128 6.6-33.756 19.622-46.458 13.232-12.914 29.782-19.744 47.85-19.744 18.002 0 34.194 6.41 46.826 18.542 12.472 11.972 18.796 27.824 18.796 47.104 0 11.318-1.85 23.818-5.494 37.146-3.616 13.178-4.376 19.938-4.376 23.292 0 3.682 0.924 8.076 7.774 12.756 12.76 8.824 28.066 13.084 46.876 13.084 22.576 0 42.718-7.858 61.574-24.022 18.578-15.942 27.612-32.318 27.612-50.056 0-19.736-5.27-36.826-16.12-52.242-18.336-25.758-52.878-55.954-102.612-89.668-79.858-53.454-133.070-99.766-162.58-141.52-22.89-32.684-34.476-67.89-34.476-104.704 0-37.062 12.142-73.948 36.092-109.63 20.508-30.554 50.8-58.12 90.228-82.138-21.096-22.7-36.896-44.064-47.094-63.688-12.872-24.76-19.398-50.372-19.398-76.122 0-47.814 18.91-89.16 56.206-122.89 37.32-33.76 83.86-50.878 138.322-50.878 50.086 0 92.206 14.082 125.182 41.852 33.328 28.082 50.222 60.898 50.222 97.54 0 18.656-6.986 35.364-20.766 49.66l-0.276 0.282c-7.976 7.924-22.618 17.37-47.046 17.37-19.148 0-35.934-6.272-48.54-18.136-12.558-11.794-18.93-25.918-18.93-41.966 0-6.934 1.702-17.416 5.352-32.98 1.778-7.364 2.668-14.142 2.668-20.25 0-10.338-3.726-18.272-11.724-24.966-8.282-6.93-20.108-10.302-36.142-10.302-24.868 0-45.282 7.562-62.41 23.118-17.19 15.606-25.544 34.088-25.544 56.508 0 20.156 4.568 36.762 13.58 49.362 17.112 23.938 46.796 49.79 88.22 76.836 84.17 54.588 142.902 104.672 174.518 148.826 23.35 33.12 35.152 68.34 35.152 104.792 0 36.598-11.882 73.496-35.318 109.676-20.208 31.18-50.722 59.276-90.884 83.71 22.178 23.466 37.812 44.042 47.554 62.538 12.082 22.97 18.208 48.048 18.208 74.542 0 49.664-18.926 91.862-56.244 125.422-37.34 33.554-83.866 50.566-138.288 50.566zM446.416 356.346c-48.222 28.952-71.712 62.19-71.712 101.314 0 22.756 6.498 43.13 19.86 62.278 19.936 27.926 59.27 62.054 116.804 101.288 24.358 16.586 46.36 32.712 65.592 48.060 49.060-29.504 72.956-62.366 72.956-100.178 0-20.598-8.142-42.774-24.204-65.916-16.808-24.196-52.85-55.796-107.128-93.914-28.328-19.562-52.558-37.334-72.168-52.932z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "section", + "wysiwyg" + ], + "defaultCode": 61105, + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 1250, + "order": 189, + "prevSize": 32, + "code": 60022, + "ligatures": "section, wysiwyg24", + "name": "section" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 246 + }, + { + "icon": { + "paths": [ + "M0 64h1024v128h-1024zM0 256h640v128h-640zM0 640h640v128h-640zM0 448h1024v128h-1024zM0 832h1024v128h-1024z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "paragraph-left", + "wysiwyg", + "align-left", + "left" + ], + "defaultCode": 58479, + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 1255, + "order": 186, + "prevSize": 32, + "code": 60023, + "ligatures": "paragraph-left, wysiwyg25", + "name": "paragraph-left" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 247 + }, + { + "icon": { + "paths": [ + "M0 64h1024v128h-1024zM192 256h640v128h-640zM192 640h640v128h-640zM0 448h1024v128h-1024zM0 832h1024v128h-1024z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "paragraph-center", + "wysiwyg", + "align-center", + "center" + ], + "defaultCode": 58480, + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 1256, + "order": 185, + "prevSize": 32, + "code": 60024, + "ligatures": "paragraph-center, wysiwyg26", + "name": "paragraph-center" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 248 + }, + { + "icon": { + "paths": [ + "M0 64h1024v128h-1024zM384 256h640v128h-640zM384 640h640v128h-640zM0 448h1024v128h-1024zM0 832h1024v128h-1024z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "paragraph-right", + "wysiwyg", + "align-right", + "right" + ], + "defaultCode": 58481, + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 1257, + "order": 184, + "prevSize": 32, + "code": 60025, + "ligatures": "paragraph-right, wysiwyg27", + "name": "paragraph-right" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 249 + }, + { + "icon": { + "paths": [ + "M0 64h1024v128h-1024zM0 256h1024v128h-1024zM0 448h1024v128h-1024zM0 640h1024v128h-1024zM0 832h1024v128h-1024z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "paragraph-justify", + "wysiwyg", + "justify" + ], + "defaultCode": 58482, + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 1258, + "order": 183, + "prevSize": 32, + "code": 60026, + "ligatures": "paragraph-justify, wysiwyg28", + "name": "paragraph-justify" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 250 + }, + { + "icon": { + "paths": [ + "M0 64h1024v128h-1024zM384 256h640v128h-640zM384 448h640v128h-640zM384 640h640v128h-640zM0 832h1024v128h-1024zM0 704v-384l256 192z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "indent-increase", + "wysiwyg" + ], + "defaultCode": 58483, + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 1259, + "order": 187, + "prevSize": 32, + "code": 60027, + "ligatures": "indent-increase, wysiwyg29", + "name": "indent-increase" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 251 + }, + { + "icon": { + "paths": [ + "M0 64h1024v128h-1024zM384 256h640v128h-640zM384 448h640v128h-640zM384 640h640v128h-640zM0 832h1024v128h-1024zM256 320v384l-256-192z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "indent-decrease", + "wysiwyg" + ], + "defaultCode": 58484, + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 1260, + "order": 188, + "prevSize": 32, + "code": 60028, + "ligatures": "indent-decrease, wysiwyg30", + "name": "indent-decrease" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 252 + }, + { + "icon": { + "paths": [ + "M576 736l96 96 320-320-320-320-96 96 224 224z", + "M448 288l-96-96-320 320 320 320 96-96-224-224z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "embed", + "code", + "html", + "xml" + ], + "defaultCode": 58495, + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 1271, + "order": 190, + "prevSize": 32, + "code": 60031, + "ligatures": "embed, code", + "name": "embed" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 253 + }, + { + "icon": { + "paths": [ + "M832 736l96 96 320-320-320-320-96 96 224 224z", + "M448 288l-96-96-320 320 320 320 96-96-224-224z", + "M701.298 150.519l69.468 18.944-191.987 704.026-69.468-18.944 191.987-704.026z" + ], + "width": 1280, + "attrs": [], + "isMulticolor": false, + "tags": [ + "embed", + "code", + "html", + "xml" + ], + "defaultCode": 58496, + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 1272, + "order": 191, + "prevSize": 32, + "code": 60032, + "ligatures": "embed2, code2", + "name": "embed2" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 254 + }, + { + "icon": { + "paths": [ + "M864 704c-45.16 0-85.92 18.738-115.012 48.83l-431.004-215.502c1.314-8.252 2.016-16.706 2.016-25.328s-0.702-17.076-2.016-25.326l431.004-215.502c29.092 30.090 69.852 48.828 115.012 48.828 88.366 0 160-71.634 160-160s-71.634-160-160-160-160 71.634-160 160c0 8.622 0.704 17.076 2.016 25.326l-431.004 215.504c-29.092-30.090-69.852-48.83-115.012-48.83-88.366 0-160 71.636-160 160 0 88.368 71.634 160 160 160 45.16 0 85.92-18.738 115.012-48.828l431.004 215.502c-1.312 8.25-2.016 16.704-2.016 25.326 0 88.368 71.634 160 160 160s160-71.632 160-160c0-88.364-71.634-160-160-160z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "share", + "social" + ], + "defaultCode": 58508, + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 1285, + "order": 140, + "prevSize": 32, + "code": 60034, + "ligatures": "share2, social", + "name": "share" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 255 + }, + { + "icon": { + "paths": [ + "M789.534 64c0 0-200.956 0-267.94 0-120.122 0-233.17 91.006-233.17 196.422 0 107.726 81.882 194.666 204.088 194.666 8.498 0 16.756-0.17 24.84-0.752-7.928 15.186-13.6 32.288-13.6 50.042 0 29.938 16.104 54.21 36.468 74.024-15.386 0-30.242 0.448-46.452 0.448-148.782-0.002-263.3 94.76-263.3 193.022 0 96.778 125.542 157.312 274.334 157.312 169.624 0 263.306-96.244 263.306-193.028 0-77.602-22.896-124.072-93.686-174.134-24.216-17.142-70.532-58.836-70.532-83.344 0-28.72 8.196-42.868 51.428-76.646 44.312-34.624 75.674-83.302 75.674-139.916 0-67.406-30.022-133.098-86.374-154.772h84.956l59.96-43.344zM695.948 719.458c2.126 8.972 3.284 18.208 3.284 27.628 0 78.2-50.39 139.31-194.974 139.31-102.842 0-177.116-65.104-177.116-143.3 0-76.642 92.126-140.444 194.964-139.332 24 0.254 46.368 4.116 66.668 10.69 55.828 38.828 95.876 60.76 107.174 105.004zM531.286 427.776c-69.038-2.064-134.636-77.226-146.552-167.86-11.916-90.666 34.37-160.042 103.388-157.99 69.008 2.074 134.636 74.814 146.558 165.458 11.906 90.66-34.39 162.458-103.394 160.392z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "google", + "brand" + ], + "defaultCode": 58514, + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 1291, + "order": 424, + "prevSize": 32, + "code": 60039, + "ligatures": "google, brand", + "name": "google" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 256 + }, + { + "icon": { + "paths": [ + "M559.066 64c0 0-200.956 0-267.94 0-120.12 0-233.17 91.006-233.17 196.422 0 107.726 81.882 194.666 204.088 194.666 8.498 0 16.756-0.17 24.842-0.752-7.93 15.186-13.602 32.288-13.602 50.042 0 29.938 16.104 54.21 36.468 74.024-15.386 0-30.242 0.448-46.452 0.448-148.782-0.002-263.3 94.758-263.3 193.020 0 96.778 125.542 157.314 274.334 157.314 169.624 0 263.306-96.244 263.306-193.028 0-77.6-22.896-124.072-93.686-174.134-24.216-17.144-70.53-58.836-70.53-83.344 0-28.72 8.196-42.868 51.428-76.646 44.312-34.624 75.672-83.302 75.672-139.916 0-67.406-30.020-133.098-86.372-154.772h84.954l59.96-43.344zM465.48 719.458c2.126 8.972 3.284 18.206 3.284 27.628 0 78.2-50.392 139.31-194.974 139.31-102.842 0-177.116-65.104-177.116-143.3 0-76.642 92.126-140.444 194.964-139.332 24 0.254 46.368 4.116 66.67 10.69 55.826 38.826 95.876 60.762 107.172 105.004zM300.818 427.776c-69.038-2.064-134.636-77.226-146.552-167.86-11.916-90.666 34.37-160.042 103.388-157.99 69.010 2.074 134.638 74.814 146.558 165.458 11.906 90.66-34.39 162.458-103.394 160.392zM832 256v-192h-64v192h-192v64h192v192h64v-192h192v-64z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "google-plus", + "brand", + "social" + ], + "defaultCode": 58515, + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 1292, + "order": 423, + "prevSize": 32, + "code": 60040, + "ligatures": "google-plus, brand2", + "name": "google-plus" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 257 + }, + { + "icon": { + "paths": [ + "M853.35 0h-682.702c-94.25 0-170.648 76.42-170.648 170.686v682.63c0 94.266 76.398 170.684 170.648 170.684h341.352v-448h-128v-128h128v-96c0-88.366 71.634-160 160-160h160v128h-160c-17.674 0-32 14.328-32 32v96h176l-32 128h-144v448h213.35c94.25 0 170.65-76.418 170.65-170.684v-682.63c0-94.266-76.4-170.686-170.65-170.686z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "facebook", + "brand", + "social" + ], + "defaultCode": 58521, + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 1298, + "order": 172, + "prevSize": 32, + "code": 60045, + "ligatures": "facebook2, brand7", + "name": "facebook" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 258 + }, + { + "icon": { + "paths": [ + "M1024 194.418c-37.676 16.708-78.164 28.002-120.66 33.080 43.372-26 76.686-67.17 92.372-116.23-40.596 24.078-85.556 41.56-133.41 50.98-38.32-40.83-92.922-66.34-153.346-66.34-116.022 0-210.088 94.058-210.088 210.078 0 16.466 1.858 32.5 5.44 47.878-174.6-8.764-329.402-92.4-433.018-219.506-18.084 31.028-28.446 67.116-28.446 105.618 0 72.888 37.088 137.192 93.46 174.866-34.438-1.092-66.832-10.542-95.154-26.278-0.020 0.876-0.020 1.756-0.020 2.642 0 101.788 72.418 186.696 168.522 206-17.626 4.8-36.188 7.372-55.348 7.372-13.538 0-26.698-1.32-39.528-3.772 26.736 83.46 104.32 144.206 196.252 145.896-71.9 56.35-162.486 89.934-260.916 89.934-16.958 0-33.68-0.994-50.116-2.94 92.972 59.61 203.402 94.394 322.042 94.394 386.422 0 597.736-320.124 597.736-597.744 0-9.108-0.206-18.168-0.61-27.18 41.056-29.62 76.672-66.62 104.836-108.748z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "twitter", + "brand", + "tweet", + "social" + ], + "defaultCode": 58525, + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 1302, + "order": 173, + "prevSize": 32, + "code": 60049, + "ligatures": "twitter, brand11", + "name": "twitter" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 259 + }, + { + "icon": { + "paths": [ + "M853.34 0h-682.654c-93.876 0-170.686 76.812-170.686 170.688v682.628c0 93.934 76.812 170.684 170.688 170.684h682.652c93.876 0 170.66-76.748 170.66-170.684v-682.628c0-93.876-76.784-170.688-170.66-170.688zM278.944 831.248c-47.97 0-86.944-38.692-86.944-86.628 0-47.684 38.972-86.812 86.944-86.812 48.158 0 87.060 39.128 87.060 86.812-0.002 47.936-38.904 86.628-87.060 86.628zM497.468 831.996c0-81.81-31.808-158.818-89.46-216.444-57.714-57.75-134.376-89.626-215.904-89.626v-125.186c237.652 0 431.126 193.442 431.126 431.254l-125.762 0.002zM719.628 831.996c0-291.062-236.658-527.94-527.376-527.94v-125.248c360.002 0 652.946 293.124 652.946 653.192l-125.57-0.004z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "feed", + "rss", + "social" + ], + "defaultCode": 58529, + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 1306, + "order": 223, + "prevSize": 32, + "code": 60053, + "ligatures": "feed3, rss2", + "name": "feed3" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 260 + }, + { + "icon": { + "paths": [ + "M293.188 0l-69.188 137.234-69.188-137.234h-88.248l124.71 217.314 0.726-0.43v167.116h64v-167.116l0.726 0.43 124.71-217.314z", + "M480 128c17.346 0 32 14.654 32 32v128c0 17.346-14.654 32-32 32s-32-14.654-32-32v-128c0-17.346 14.654-32 32-32zM480 64c-52.8 0-96 43.2-96 96v128c0 52.8 43.2 96 96 96s96-43.2 96-96v-128c0-52.8-43.2-96-96-96v0z", + "M768 64v251.968c-27.922 23.288-64 37.332-64-45.634v-206.334h-64v219.324h0.096c0.986 52.91 12.142 148.168 127.904 70.712v29.964h64v-320h-64z", + "M864 704c-17.644 0-32 14.356-32 32v32h64v-32c0-17.644-14.356-32-32-32z", + "M576 736v168c21.666 21.666 64 24 64-8s0-118 0-150-32-42-64-10z", + "M1018.766 581.54c-2.792-36.862-16.046-66.942-39.778-90.244-23.726-23.298-54.080-35.994-91.068-38.080-69.784-3.478-229.452-5.216-369.716-5.216-140.266 0-311.294 1.738-381.078 5.216-36.986 2.086-67.342 14.782-91.068 38.080-23.728 23.302-36.988 53.382-39.778 90.244-4.188 75.116-6.28 102.352-6.28 139.91 0 37.56 2.092 93.894 6.28 169.012 2.792 36.862 16.050 66.944 39.778 90.244 23.726 23.298 54.082 35.992 91.068 38.080 69.782 3.476 240.81 5.214 381.078 5.214 140.266 0 299.934-1.738 369.716-5.214 36.988-2.088 67.342-14.782 91.068-38.080 23.73-23.3 36.986-53.382 39.778-90.244 3.49-62.598 5.234-118.934 5.234-169.012 0-50.076-1.744-77.314-5.234-139.91zM192 960h-64v-320h-64v-64h192v64h-64v320zM448 960h-64v-29.962c-121.666 68.294-126.918 2.198-127.904-50.712h-0.096v-175.326h64v176.334c0 38.666 36.078 34.924 64 11.634v-187.968h64v256zM704 895.086c0 66.892-68.504 86.402-128 34.39v30.524h-64v-384h64v104c64-64 128-40 128 24s0 121.172 0 191.086zM960 768v32h-128v64c0 17.644 14.356 32 32 32s32-14.356 32-32v-32h64v32c0 52.934-43.066 96-96 96s-96-43.066-96-96v-128c0-52.934 43.066-96 96-96s96 43.066 96 96v32z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "youtube", + "brand", + "social" + ], + "defaultCode": 61171, + "grid": 16 + }, + "attrs": [], + "properties": { + "order": 174, + "id": 1541, + "prevSize": 32, + "code": 60057, + "ligatures": "youtube3, brand16", + "name": "youtube" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 261 + }, + { + "icon": { + "paths": [ + "M303.922 836.010c27.144 0 53.786-13.136 69.972-37.416 25.734-38.602 15.302-90.754-23.298-116.488l-66.074-44.048c11.308-3.080 23.194-4.756 35.478-4.756 74.392 0 134.696 60.304 134.696 134.698s-60.306 134.698-134.698 134.698c-72.404 0-131.444-57.132-134.548-128.774l71.954 47.968c14.322 9.548 30.506 14.118 46.518 14.118zM853.34 0c93.876 0 170.66 76.812 170.66 170.688v682.628c0 93.936-76.784 170.684-170.66 170.684h-682.652c-93.876 0-170.688-76.75-170.688-170.682v-203.028l121.334 80.888c-11.652 63.174 6.938 130.83 55.798 179.69 78.904 78.904 206.83 78.904 285.736 0 48.468-48.466 67.15-115.43 56.076-178.166l249.056-222.988c46.248-6.638 90.816-27.744 126.394-63.322 87.476-87.476 87.476-229.306 0-316.784-87.48-87.478-229.308-87.478-316.786 0-35.578 35.578-56.684 80.146-63.322 126.392v0l-204.694 310.23c-31.848 1.632-63.378 10.764-91.726 27.392l-217.866-145.244v-277.69c0-93.876 76.81-170.688 170.686-170.688h682.654zM896 288c0-88.366-71.634-160-160-160s-160 71.634-160 160 71.634 160 160 160 160-71.634 160-160zM640 288c0-53.020 42.98-96 96-96s96 42.98 96 96-42.98 96-96 96-96-42.98-96-96z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "steam", + "brand", + "social" + ], + "defaultCode": 58551, + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 1330, + "order": 176, + "prevSize": 32, + "code": 60078, + "ligatures": "steam2, brand37", + "name": "steam" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 262 + }, + { + "icon": { + "paths": [ + "M350.868 828.388c-60.274-15.060-93.856-62.97-93.962-134.064-0.032-22.726 1.612-33.62 7.286-48.236 13.908-35.834 50.728-62.872 99.176-72.822 24.11-4.95 31.536-10.266 31.536-22.572 0-3.862 2.872-15.36 6.378-25.552 15.932-46.306 45.43-84.91 76.948-100.702 32.99-16.526 49.642-20.254 89.548-20.040 56.674 0.304 84.952 12.598 124.496 54.128l21.75 22.842 19.484-6.742c94.3-32.636 188.306 22.916 195.888 115.756l2.072 25.398 18.57 6.65c53.032 19.004 77.96 58.904 73.442 117.556-2.958 38.358-20.89 68.98-49.3 84.184l-13.356 7.146-296.822 0.57c-228.094 0.44-300.6-0.368-313.134-3.5v0zM103.218 785.966c-36.176-9.086-74.506-42.854-92.48-81.47-10.196-21.906-10.738-25.128-10.738-63.88 0-36.864 0.87-42.778 8.988-61.080 17.11-38.582 49.894-66.46 91.030-77.408 8.684-2.312 16.842-6 18.128-8.196 1.29-2.198 2.722-14.164 3.182-26.592 2.866-77.196 50.79-145.214 117.708-167.056 36.154-11.8 83.572-12.898 122.896 3.726 12.47 5.274 11.068 6.404 37.438-30.14 15.594-21.612 45.108-44.49 70.9-58.18 27.838-14.776 56.792-21.584 91.412-21.494 96.768 0.252 180.166 64.22 211.004 161.848 9.854 31.192 9.362 39.926-2.26 40.184-5.072 0.112-19.604 3.064-32.292 6.558l-23.072 6.358-21.052-22.25c-59.362-62.734-156.238-76.294-238.592-33.396-32.9 17.138-59.34 41.746-79.31 73.81-14.236 22.858-32.39 65.504-32.39 76.094 0 7.51-5.754 11.264-30.332 19.782-76.094 26.376-120.508 87.282-120.476 165.218 0.010 28.368 6.922 63.074 16.52 82.956 3.618 7.494 5.634 14.622 4.484 15.836-2.946 3.106-97.608 2.060-110.696-1.228v0z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "onedrive", + "brand", + "skydrive" + ], + "defaultCode": 61194, + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 1332, + "order": 177, + "prevSize": 32, + "code": 60080, + "ligatures": "onedrive, brand39", + "name": "onedrive" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 263 + }, + { + "icon": { + "paths": [ + "M512 831.892c-19.154 0-38.308-9.916-58.142-29.75-7.81-7.81-7.81-20.474 0-28.286 7.81-7.808 20.474-7.808 28.286 0 12.206 12.21 21.972 18.144 29.856 18.144 7.882 0 17.65-5.934 29.858-18.142 7.812-7.808 20.472-7.808 28.286 0 7.81 7.81 7.81 20.474 0 28.286-19.836 19.832-38.99 29.748-58.144 29.748zM0 525.492c0 49.892 4.266 95.122 12.8 135.682s20.534 75.74 36 105.532c15.466 29.792 35.022 55.904 58.666 78.34s49.332 40.92 77.066 55.458c27.734 14.536 59.466 26.296 95.2 35.266 35.732 8.974 72.088 15.256 109.066 18.846s77.69 5.384 122.134 5.384c44.444 0 85.242-1.79 122.398-5.38s73.602-9.872 109.332-18.846c35.734-8.974 67.558-20.73 95.468-35.266 27.91-14.538 53.778-33.026 77.598-55.458 23.824-22.436 43.47-48.548 58.934-78.34 15.47-29.794 27.56-64.974 36.27-105.532 8.71-40.56 13.066-85.788 13.066-135.68 0-89.38-27.736-166.372-83.2-230.982 3.2-8.616 5.954-18.486 8.266-29.614 2.308-11.128 4.532-26.832 6.664-47.112 2.138-20.282 1.336-43.704-2.398-70.264-3.734-26.564-10.754-53.664-21.066-81.302l-8-1.618c-5.332-1.076-14.042-0.718-26.132 1.080-12.086 1.794-26.222 5.022-42.398 9.69-16.176 4.664-37.066 13.908-62.668 27.728-25.598 13.818-52.62 31.318-81.066 52.496-48.356-14.718-115.020-30.116-200-30.116-84.976 0-151.822 15.396-200.53 30.114-28.446-21.18-55.556-38.588-81.334-52.228-25.78-13.642-46.402-22.974-61.868-27.998-15.468-5.024-29.778-8.256-42.934-9.69-13.156-1.436-21.602-1.886-25.334-1.346-3.732 0.538-6.488 1.166-8.266 1.884-10.314 27.64-17.424 54.74-21.336 81.304-3.91 26.56-4.8 49.892-2.666 69.992 2.134 20.102 4.444 35.898 6.934 47.382 2.49 11.486 5.334 21.358 8.534 29.614-55.466 64.25-83.2 141.242-83.2 230.98zM136.536 639.404c0-58.022 21.332-110.638 64-157.856 12.8-14.406 27.646-25.312 44.534-32.712 16.89-7.402 36.088-11.606 57.6-12.606s42.044-0.8 61.6 0.6c19.556 1.402 43.734 3.302 72.534 5.702 28.798 2.404 53.688 3.602 74.666 3.602 20.976 0 45.868-1.2 74.664-3.602 28.806-2.4 52.982-4.3 72.536-5.702 19.56-1.4 40.090-1.6 61.602-0.6 21.512 1.002 40.802 5.204 57.868 12.606 17.066 7.4 32 18.306 44.8 32.712 42.664 47.218 64 99.834 64 157.856 0 34.012-3.554 64.324-10.668 90.934-7.11 26.612-16.090 48.916-26.934 66.922-10.844 18.008-26.048 33.218-45.598 45.62-19.558 12.406-38.492 22.010-56.8 28.81-18.312 6.8-41.958 12.104-70.934 15.906-28.982 3.796-54.934 6.102-77.872 6.9-22.934 0.8-51.82 1.2-86.664 1.2s-63.644-0.402-86.4-1.2c-22.756-0.798-48.622-3.104-77.6-6.9-28.978-3.802-52.622-9.104-70.934-15.906-18.31-6.802-37.244-16.404-56.8-28.81-19.556-12.404-34.756-27.612-45.6-45.62-10.846-18.006-19.824-40.31-26.934-66.922-7.11-26.61-10.666-56.922-10.666-90.934zM256 608.004c0-53.019 28.654-96 64-96s64 42.981 64 96c0 53.019-28.654 96-64 96s-64-42.981-64-96zM640 608.004c0-53.019 28.654-96 64-96s64 42.981 64 96c0 53.019-28.654 96-64 96s-64-42.981-64-96z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "github", + "brand", + "octacat", + "social" + ], + "defaultCode": 58553, + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 1334, + "order": 224, + "prevSize": 32, + "code": 60083, + "ligatures": "github3, brand42", + "name": "github" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 264 + }, + { + "icon": { + "paths": [ + "M235.278 248.72c-50.792 0-94.484 16.806-131.084 50.416-38.086 35.852-57.14 80.66-57.14 134.436 0 35.852 10.376 69.462 31.294 100.832 18.674 29.126 38.18 47.806 63.778 56.024v2.242c-25.598 10.448-36.966 36.59-36.966 78.418 0 32.124 11.372 56.022 36.966 71.708v2.242c-70.654 23.146-102.992 66.094-102.992 128.83 0 54.534 23.748 94.488 70.066 119.878 36.59 20.172 83.578 30.254 140.346 30.254 138.17 0 207.406-57.882 207.406-173.664 0-72.446-53.322-116.882-160.128-133.316-24.646-3.726-43.286-12.696-55.982-26.89-9.708-9.708-14.542-19.418-14.542-29.126 0-27.632 14.958-43.696 44.82-48.176 45.558-6.714 82.728-27.824 111.486-63.296 28.75-35.48 43.13-77.118 43.13-124.916 0-14.938-4.518-30.996-10.488-48.172 19.418-4.488 33.050-8.594 43.292-12.332v-115.392c-45.054 17.928-86.99 26.884-122.842 26.884-31.374-17.922-63.824-26.884-100.42-26.884zM247.602 807.77c62.744 0 94.104 19.042 94.104 57.14 0 40.336-28.754 60.492-86.264 60.492-65.724 0-98.586-19.422-98.586-58.254-0.002-39.59 30.244-59.378 90.746-59.378zM239.76 512c-47.054 0-70.586-25.764-70.586-77.308 0-55.262 23.532-82.906 70.586-82.906 22.402 0 39.958 8.596 52.652 25.768 10.458 15.69 15.69 34.36 15.69 56.022 0 52.278-22.786 78.424-68.342 78.424zM580.384 0c-21.656 0-40.14 8.214-55.454 24.648-15.314 16.436-22.97 36.216-22.97 59.376 0 22.41 7.658 41.82 22.97 58.258 15.308 16.434 33.792 24.64 55.454 24.64 20.91 0 39.028-8.208 54.34-24.64 15.312-16.438 22.96-35.848 22.96-58.258 0-23.16-7.648-42.944-22.96-59.376-15.318-16.434-33.43-24.648-54.34-24.648zM643.13 255.998h-126.606c1.496 14.336-0.64 36.042-0.64 71.14v348.432c0 35.856 2.136 64.774 0.64 76.036h126.606c-1.5-16.376-5.394-44.668-5.394-82.758v-343.946c-0.006-32.864 3.894-54.568 5.394-68.904zM922.336 644.2c-32.872 0-49.082-25.028-49.082-75.066v-206.64h49.864c8.96 0 17.032-0.492 27.118 0.246 10.086 0.748 14.152 0.25 19.278 0.25v-106.99h-96.258v-47.616c0-17.922 2.816-34.302 5.054-44.542h-129.958c2.242 10.24 2.028 25.876 2.028 46.79v45.368h-56.32v106.988c15.364-2.24 29.090-3.356 38.796-3.356l17.524 1.118v202.786c0 62.742 7.958 108.672 23.636 137.8 20.922 38.84 57.622 58.258 112.136 58.258 38.848 0 73.118-7.464 98.714-22.41v-112.032c-20.474 12.7-39.382 19.048-62.53 19.048z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "github", + "brand", + "octacat", + "social" + ], + "defaultCode": 58555, + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 1336, + "order": 178, + "prevSize": 32, + "code": 60085, + "ligatures": "github5, brand44", + "name": "git" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 265 + }, + { + "icon": { + "paths": [ + "M791.498 544.092c-1.294-129.682 105.758-191.876 110.542-194.966-60.152-88.020-153.85-100.078-187.242-101.472-79.742-8.074-155.596 46.948-196.066 46.948-40.368 0-102.818-45.754-168.952-44.552-86.916 1.292-167.058 50.538-211.812 128.38-90.304 156.698-23.126 388.84 64.89 515.926 43.008 62.204 94.292 132.076 161.626 129.58 64.842-2.588 89.362-41.958 167.756-41.958s100.428 41.958 169.050 40.67c69.774-1.296 113.982-63.398 156.692-125.796 49.39-72.168 69.726-142.038 70.924-145.626-1.548-0.706-136.060-52.236-137.408-207.134zM662.562 163.522c35.738-43.358 59.86-103.512 53.28-163.522-51.478 2.096-113.878 34.29-150.81 77.55-33.142 38.376-62.148 99.626-54.374 158.436 57.466 4.484 116.128-29.204 151.904-72.464z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "apple", + "brand" + ], + "defaultCode": 58566, + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 1348, + "order": 180, + "prevSize": 32, + "code": 60095, + "ligatures": "apple, brand54", + "name": "apple" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 266 + }, + { + "icon": { + "paths": [ + "M896 384c-35.2 0-64 28.8-64 64v256c0 35.2 28.8 64 64 64s64-28.8 64-64v-256c0-35.2-28.8-64-64-64zM128 384c-35.2 0-64 28.8-64 64v256c0 35.2 28.8 64 64 64s64-28.8 64-64v-256c0-35.2-28.802-64-64-64zM224 736c0 53.020 42.98 96 96 96v0 128c0 35.2 28.8 64 64 64s64-28.8 64-64v-128h128v128c0 35.2 28.8 64 64 64s64-28.8 64-64v-128c53.020 0 96-42.98 96-96v-352h-576v352z", + "M798.216 320.002c-9.716-87.884-59.004-163.792-129.62-209.646l32.024-64.046c7.904-15.806 1.496-35.028-14.31-42.932s-35.030-1.496-42.932 14.312l-32.142 64.286-8.35-3.316c-28.568-9.502-59.122-14.66-90.886-14.66-31.762 0-62.316 5.158-90.888 14.656l-8.348 3.316-32.142-64.282c-7.904-15.808-27.128-22.212-42.932-14.312-15.808 7.904-22.214 27.126-14.312 42.932l32.022 64.046c-70.616 45.852-119.904 121.762-129.622 209.644v32h574.222v-31.998h-1.784zM416 256c-17.674 0-32-14.328-32-32 0-17.648 14.288-31.958 31.93-31.996 0.032 0 0.062 0.002 0.094 0.002 0.018 0 0.036-0.002 0.052-0.002 17.638 0.042 31.924 14.35 31.924 31.996 0 17.672-14.326 32-32 32zM608 256c-17.674 0-32-14.328-32-32 0-17.646 14.286-31.954 31.924-31.996 0.016 0 0.034 0.002 0.050 0.002 0.032 0 0.064-0.002 0.096-0.002 17.64 0.038 31.93 14.348 31.93 31.996 0 17.672-14.326 32-32 32z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "android", + "brand", + "os", + "mobile" + ], + "defaultCode": 58568, + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 1350, + "order": 179, + "prevSize": 32, + "code": 60097, + "ligatures": "android, brand56", + "name": "android" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 267 + }, + { + "icon": { + "paths": [ + "M0.35 512l-0.35-312.074 384-52.144v364.218zM448 138.482l511.872-74.482v448h-511.872zM959.998 576l-0.126 448-511.872-72.016v-375.984zM384 943.836l-383.688-52.594-0.020-315.242h383.708z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "windows8", + "brand", + "os" + ], + "defaultCode": 58570, + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 1352, + "order": 169, + "prevSize": 32, + "code": 60099, + "ligatures": "windows8, brand58", + "name": "windows" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 268 + }, + { + "icon": { + "paths": [ + "M975.31 577.938c2.812-20.8 4.43-41.946 4.43-63.472 0-258.31-210.542-467.744-470.206-467.744-25.808 0-51.11 2.12-75.732 6.16-44.144-28.768-96.684-45.534-153.224-45.534-155.046 0-280.578 125.616-280.578 280.612 0 56.396 16.598 108.788 45.18 152.778-3.85 24.034-5.818 48.646-5.818 73.718 0 258.352 210.434 467.764 470.17 467.764 29.314 0 57.854-2.854 85.592-7.866 43.1 26.738 93.868 42.296 148.292 42.296 155.004 0.002 280.584-125.646 280.584-280.626-0.006-58.586-17.92-113.056-48.69-158.086zM553.48 859.192c-149.41 7.784-219.328-25.274-283.378-85.382-71.53-67.134-42.796-143.708 15.48-147.602 58.244-3.888 93.214 66.026 124.3 85.472 31.048 19.376 149.188 63.52 211.588-7.816 67.952-77.656-45.188-117.84-128.118-130.004-118.406-17.532-267.9-81.584-256.27-207.814 11.632-126.148 107.164-190.828 207.7-199.952 128.154-11.634 211.582 19.414 277.57 75.72 76.3 65.058 35.016 137.788-13.598 143.64-48.424 5.818-102.808-107.008-209.582-108.704-110.054-1.728-184.434 114.522-48.572 147.568 135.932 33.010 281.5 46.572 333.922 170.834 52.458 124.274-81.508 256.25-231.042 264.040z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "skype", + "brand", + "social" + ], + "defaultCode": 58573, + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 1355, + "order": 170, + "prevSize": 32, + "code": 60102, + "ligatures": "skype, brand61", + "name": "skype" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 269 + }, + { + "icon": { + "paths": [ + "M852 0h-680c-94.6 0-172 77.4-172 172v680c0 94.6 77.4 172 172 172h680c94.6 0 172-77.4 172-172v-680c0-94.6-77.4-172-172-172zM384 832h-128v-448h128v448zM320 320c-35.346 0-64-28.654-64-64s28.654-64 64-64 64 28.654 64 64-28.654 64-64 64zM832 832h-128v-256c0-35.346-28.654-64-64-64s-64 28.654-64 64v256h-128v-448h128v79.472c26.398-36.264 66.752-79.472 112-79.472 79.53 0 144 71.634 144 160v288z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "linkedin", + "brand", + "social" + ], + "defaultCode": 58575, + "grid": 16 + }, + "attrs": [], + "properties": { + "order": 171, + "id": 1581, + "prevSize": 32, + "code": 60104, + "ligatures": "linkedin, brand63", + "name": "linkedin" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 270 + }, + { + "icon": { + "paths": [ + "M60.538 0l82.144 921.63 368.756 102.37 369.724-102.524 82.3-921.476h-902.924zM784.63 301.428h-432.54l10.302 115.75h411.968l-31.042 347.010-231.844 64.254-231.572-64.254-15.83-177.512h113.494l8.048 90.232 125.862 33.916 0.278-0.078 125.934-33.992 13.070-146.55h-391.74l-30.494-341.8h566.214l-10.108 113.024z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "html5", + "w3c" + ], + "defaultCode": 58602, + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 1384, + "order": 181, + "prevSize": 32, + "code": 60127, + "ligatures": "html5, w3c", + "name": "html5" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 271 + }, + { + "icon": { + "paths": [ + "M152.388 48.522l-34.36 171.926h699.748l-21.884 111.054h-700.188l-33.892 171.898h699.684l-39.018 196.064-282.012 93.422-244.4-93.422 16.728-85.042h-171.898l-40.896 206.352 404.226 154.704 466.006-154.704 153.768-772.252z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "css3", + "w3c" + ], + "defaultCode": 58604, + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 1386, + "order": 182, + "prevSize": 32, + "code": 60129, + "ligatures": "css3, w3c3", + "name": "css3" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 272 + }, + { + "icon": { + "paths": [ + "M258.278 446.542l-146.532-253.802c93.818-117.464 238.234-192.74 400.254-192.74 187.432 0 351.31 100.736 440.532 251h-417.77c-7.504-0.65-15.092-1-22.762-1-121.874 0-224.578 83.644-253.722 196.542zM695.306 325h293.46c22.74 57.93 35.234 121.004 35.234 187 0 280.826-226.1 508.804-506.186 511.926l209.394-362.678c29.48-42.378 46.792-93.826 46.792-149.248 0-73.17-30.164-139.42-78.694-187zM326 512c0-102.56 83.44-186 186-186s186 83.44 186 186c0 102.56-83.44 186-186 186s-186-83.44-186-186zM582.182 764.442l-146.578 253.878c-246.532-36.884-435.604-249.516-435.604-506.32 0-91.218 23.884-176.846 65.696-251.024l209.030 362.054c41.868 89.112 132.476 150.97 237.274 150.97 24.3 0 47.836-3.34 70.182-9.558z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "chrome", + "browser", + "internet", + "brand" + ], + "defaultCode": 58605, + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 1387, + "order": 168, + "prevSize": 32, + "code": 60133, + "ligatures": "chrome, browser", + "name": "chrome" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 273 + }, + { + "icon": { + "paths": [ + "M1022.526 334.14l-11.86 76.080c0 0-16.954-140.856-37.732-193.514-31.846-80.688-46.014-80.040-46.108-79.922 21.33 54.204 17.462 83.324 17.462 83.324s-37.792-102.998-137.712-135.768c-110.686-36.282-170.57-26.364-177.488-24.486-1.050-0.008-2.064-0.010-3.030-0.010 0.818 0.062 1.612 0.146 2.426 0.212-0.034 0.020-0.090 0.042-0.082 0.052 0.45 0.548 122.306 21.302 143.916 50.996 0 0-51.76 0-103.272 14.842-2.328 0.666 189.524 23.964 228.746 215.674 0 0-21.030-43.876-47.040-51.328 17.106 52.036 12.714 150.776-3.576 199.85-2.096 6.312-4.24-27.282-36.328-41.75 10.28 73.646-0.616 190.456-51.708 222.632-3.982 2.504 32.030-115.31 7.242-69.762-142.708 218.802-311.404 100.972-387.248 49.11 38.866 8.462 112.654-1.318 145.314-25.612 0.042-0.030 0.078-0.056 0.118-0.086 35.468-24.252 56.472-41.964 75.334-37.772 18.874 4.214 31.438-14.726 16.78-31.53-14.676-16.838-50.314-39.978-98.524-27.366-34 8.904-76.134 46.522-140.448 8.432-49.364-29.25-54.012-53.546-54.45-70.376 1.218-5.966 2.754-11.536 4.576-16.624 5.682-15.87 22.912-20.658 32.494-24.438 16.256 2.792 30.262 7.862 44.968 15.406 0.19-4.894 0.252-11.39-0.018-18.76 1.41-2.802 0.538-11.252-1.722-21.58-1.302-10.308-3.42-20.974-6.752-30.692 0.012-0.002 0.020-0.010 0.030-0.014 0.056-0.018 0.108-0.040 0.156-0.070 0.078-0.044 0.146-0.112 0.208-0.19 0.012-0.020 0.030-0.034 0.044-0.052 0.082-0.124 0.154-0.272 0.198-0.466 1.020-4.618 12.022-13.524 25.718-23.1 12.272-8.58 26.702-17.696 38.068-24.752 10.060-6.248 17.72-10.882 19.346-12.098 0.618-0.466 1.358-1.012 2.164-1.636 0.15-0.116 0.3-0.232 0.454-0.354 0.094-0.074 0.19-0.148 0.286-0.226 5.41-4.308 13.484-12.448 15.178-29.578 0.004-0.042 0.010-0.080 0.012-0.122 0.050-0.504 0.092-1.014 0.13-1.534 0.028-0.362 0.050-0.726 0.072-1.096 0.014-0.284 0.032-0.566 0.044-0.856 0.030-0.674 0.050-1.364 0.060-2.064 0-0.040 0.002-0.076 0.004-0.116 0.022-1.658-0.006-3.386-0.104-5.202-0.054-1.014-0.126-1.93-0.298-2.762-0.008-0.044-0.018-0.092-0.028-0.136-0.018-0.082-0.036-0.164-0.058-0.244-0.036-0.146-0.076-0.292-0.122-0.43-0.006-0.018-0.010-0.032-0.016-0.046-0.052-0.16-0.112-0.314-0.174-0.464-0.004-0.006-0.004-0.010-0.006-0.016-1.754-4.108-8.32-5.658-35.442-6.118-0.026-0.002-0.050-0.002-0.076-0.002v0c-11.066-0.188-25.538-0.194-44.502-0.118-33.25 0.134-51.628-32.504-57.494-45.132 8.040-44.46 31.276-76.142 69.45-97.626 0.722-0.406 0.58-0.742-0.274-0.978 7.464-4.514-90.246-0.124-135.186 57.036-39.888-9.914-74.654-9.246-104.616-2.214-5.754-0.162-12.924-0.88-21.434-2.652-19.924-18.056-48.448-51.402-49.976-91.208 0 0-0.092 0.072-0.252 0.204-0.020-0.382-0.056-0.76-0.072-1.142 0 0-60.716 46.664-51.628 173.882-0.022 2.036-0.064 3.986-0.12 5.874-16.432 22.288-24.586 41.020-25.192 45.156-14.56 29.644-29.334 74.254-41.356 141.98 0 0 8.408-26.666 25.284-56.866-12.412 38.022-22.164 97.156-16.436 185.856 0 0 1.514-19.666 6.874-47.994 4.186 55.010 22.518 122.924 68.858 202.788 88.948 153.32 225.67 230.74 376.792 242.616 26.836 2.212 54.050 2.264 81.424 0.186 2.516-0.178 5.032-0.364 7.55-0.574 30.964-2.174 62.134-6.852 93.238-14.366 425.172-102.798 378.942-616.198 378.942-616.198z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "firefox", + "browser", + "internet", + "brand" + ], + "defaultCode": 58606, + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 1388, + "order": 167, + "prevSize": 32, + "code": 60134, + "ligatures": "firefox, browser2", + "name": "firefox" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 274 + }, + { + "icon": { + "paths": [ + "M734.202 628.83h236.050c1.82-16.37 2.548-33.098 2.548-50.196 0-80.224-21.534-155.468-59.124-220.266 38.88-103.308 37.492-190.988-14.556-243.39-49.496-49.28-182.29-41.28-332.412 25.198-11.104-0.84-22.318-1.272-33.638-1.272-206.048 0-378.926 141.794-426.708 332.85 64.638-82.754 132.638-142.754 223.478-186.448-8.26 7.74-56.454 55.652-64.56 63.764-239.548 239.478-315.090 552.306-233.806 633.604 61.786 61.774 173.758 51.342 302.376-11.648 59.806 30.458 127.5 47.63 199.218 47.63 193.134 0 356.804-124.316 416.090-297.448h-237.868c-32.734 60.382-96.748 101.48-170.218 101.48-73.468 0-137.484-41.098-170.216-101.48-14.55-27.274-22.914-58.554-22.914-91.656v-0.722h386.26zM348.302 512.804c5.456-97.11 86.2-174.584 184.766-174.584s179.312 77.472 184.766 174.584h-369.532zM896.966 163.808c33.526 33.88 32.688 96.214 4.012 174.022-49.136-74.908-120.518-133.936-204.792-167.64 90.106-38.638 163.406-43.756 200.78-6.382zM93.482 967.256c-42.782-42.796-29.884-132.618 25.23-240.832 34.308 96.27 101.156 177.090 187.336 229.154-95.43 43.318-173.536 50.674-212.566 11.678z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "IE", + "browser", + "internet-explorer", + "brand" + ], + "defaultCode": 58607, + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 1389, + "order": 166, + "prevSize": 32, + "code": 60135, + "ligatures": "IE, browser3", + "name": "ie" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 275 + }, + { + "icon": { + "paths": [ + "M510.046 0c-279.724 0-480.748 202.896-480.748 507.224 0 270.818 195.502 516.776 480.784 516.776 288.078 0 484.62-245.886 484.62-516.776 0-306.76-207.446-507.224-484.656-507.224zM688.358 498.542c-0.068 169.352-9.098 410.482-178.276 410.482v0.034c-166.784 0-173.432-241.266-173.432-410.308 0-198.38 18.56-388.568 173.432-388.568 154.874 0 178.276 192.584 178.276 388.36z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "opera", + "browser", + "internet", + "brand" + ], + "defaultCode": 58608, + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 1390, + "order": 165, + "prevSize": 32, + "code": 60136, + "ligatures": "opera, browser4", + "name": "opera" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 276 + }, + { + "icon": { + "paths": [ + "M512 64c-24.064 0-47.708 1.792-70.824 5.212-0.3-0.782-0.624-1.548-0.982-2.296 12.826-10.002 19.55-23.83 16.634-37.552-3.734-17.564-22.394-29.364-46.434-29.364-5.18 0-10.458 0.562-15.68 1.672-30.168 6.414-50.146 28.622-45.482 50.562 2.834 13.338 14.292 23.338 30.164 27.384-0.032 0.972-0.016 1.95 0.042 2.934-200.622 57.53-347.438 242.338-347.438 461.448 0 265.098 214.904 480 480 480 265.098 0 480-214.902 480-480 0-265.096-214.902-480-480-480zM364.882 48.908c-2.706-12.726 12.48-27.19 33.158-31.584 4.132-0.878 8.29-1.324 12.354-1.324 16.036 0 28.694 6.864 30.784 16.69 1.596 7.51-3.070 15.61-11.386 21.904-7.034-4.966-16.016-7.126-25.1-5.196-9.044 1.922-16.348 7.508-20.758 14.856-10.184-2.45-17.508-8.084-19.052-15.346zM769.386 801.386c-43.968 43.968-97.21 75.278-155.31 92.154l-42.396-68.768-10.746 79.958c-16.090 2.152-32.426 3.27-48.934 3.27-97.228 0-188.636-37.864-257.386-106.614-43.968-43.966-75.278-97.21-92.154-155.308l68.768-42.398-79.96-10.746c-2.15-16.090-3.268-32.426-3.268-48.934 0-97.228 37.862-188.636 106.614-257.386 43.968-43.968 97.212-75.278 155.31-92.156l42.396 68.77 10.748-79.96c16.088-2.15 32.424-3.268 48.932-3.268 97.228 0 188.636 37.862 257.386 106.614 43.968 43.968 75.278 97.212 92.154 155.31l-68.77 42.398 79.96 10.746c2.152 16.088 3.27 32.424 3.27 48.932 0 97.228-37.864 188.636-106.614 257.386zM760.902 295.098l-196.978 149.704c-14.644-7.658-30.876-12.062-47.416-12.726l-51.080-107.18-3.068 118.664c-13.284 6.536-25.104 15.664-34.876 26.95l-63.088-22.364 46.092 48.538c-6.334 13.518-9.866 28.030-10.434 42.824l-107.158 51.066 118.738 3.068c0.38 0.768 0.774 1.526 1.17 2.282l-149.704 196.98 196.978-149.704c14.644 7.656 30.874 12.060 47.416 12.724l51.080 107.182 3.066-118.664c13.286-6.538 25.106-15.664 34.878-26.952l63.090 22.368-46.094-48.54c6.336-13.52 9.868-28.030 10.436-42.824l107.156-51.066-118.736-3.070c-0.378-0.766-0.774-1.524-1.17-2.28l149.702-196.98zM512.102 444.534v0zM492.042 450.098c6.726-1.43 13.444-2.118 20.056-2.118 4.144 0 8.25 0.27 12.294 0.796l0.092 0.032-0.010-0.022c8.732 1.144 17.176 3.5 25.132 6.896l-71.546 54.376-54.38 71.552c-2.376-5.594-4.27-11.484-5.58-17.652-11.026-51.86 22.080-102.836 73.942-113.86zM562.12 625.884v0 0c-9.056 5.544-19.182 9.684-30.16 12.018-6.726 1.43-13.444 2.118-20.054 2.118-4.15 0-8.258-0.272-12.308-0.798l-0.068-0.010c-8.734-1.142-17.174-3.5-25.132-6.894l71.544-54.376 54.38-71.554c2.376 5.594 4.27 11.486 5.58 17.654 8.69 40.882-10.056 81.2-43.782 101.842z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "safari", + "browser", + "internet", + "brand" + ], + "defaultCode": 58609, + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 1391, + "order": 164, + "prevSize": 32, + "code": 60137, + "ligatures": "safari, browser5", + "name": "safari" + }, + "setIdx": 6, + "setId": 3, + "iconIdx": 277 + }, + { + "icon": { + "paths": [ + "M768 639.968l-182.82-182.822 438.82-329.15-128.010-127.996-548.52 219.442-172.7-172.706c-49.78-49.778-119.302-61.706-154.502-26.508-35.198 35.198-23.268 104.726 26.51 154.5l172.686 172.684-219.464 548.582 127.99 128.006 329.19-438.868 182.826 182.828v255.98h127.994l63.992-191.988 191.988-63.996v-127.992l-255.98 0.004z" + ], + "attrs": [], + "tags": [ + "airplane", + "travel", + "flight", + "plane", + "transport", + "fly", + "vacation" + ], + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 692, + "order": 57, + "prevSize": 32, + "ligatures": "airplane, travel", + "name": "airplane", + "code": 59075 + }, + "setIdx": 8, + "setId": 0, + "iconIdx": 175 + }, + { + "icon": { + "paths": [ + "M1024 576l-128-256h-192v-128c0-35.2-28.8-64-64-64h-576c-35.2 0-64 28.8-64 64v512l64 64h81.166c-10.898 18.832-17.166 40.678-17.166 64 0 70.692 57.308 128 128 128s128-57.308 128-128c0-23.322-6.268-45.168-17.166-64h354.334c-10.898 18.832-17.168 40.678-17.168 64 0 70.692 57.308 128 128 128s128-57.308 128-128c0-23.322-6.27-45.168-17.168-64h81.168v-192zM704 576v-192h132.668l96 192h-228.668z" + ], + "attrs": [], + "tags": [ + "truck", + "transit", + "transport", + "delivery", + "vehicle" + ], + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 698, + "order": 58, + "prevSize": 32, + "ligatures": "truck, transit", + "name": "truck2", + "code": 59076 + }, + "setIdx": 8, + "setId": 0, + "iconIdx": 176 + }, + { + "icon": { + "paths": [ + "M854 0h-684c-93.5 0-170 76.5-170 170v684c0 93.5 76.5 170 170 170h684c93.5 0 170-76.5 170-170v-684c0-93.5-76.5-170-170-170zM327.8 448h368.4c6.988 20.058 10.8 41.59 10.8 64 0 107.524-87.476 195-195 195s-195-87.476-195-195c0-22.41 3.812-43.942 10.8-64zM896 448.050v383.95c0 35.2-28.8 64-64 64h-640c-35.2 0-64-28.8-64-64v-384h100.108c-4.642 20.602-7.108 42.016-7.108 64 0 160.458 130.542 291 291 291s291-130.542 291-291c0-21.984-2.464-43.398-7.108-64l100.108 0.050zM896 224c0 17.6-14.4 32-32 32h-64c-17.6 0-32-14.4-32-32v-64c0-17.6 14.4-32 32-32h64c17.6 0 32 14.4 32 32v64z" + ], + "attrs": [], + "tags": [ + "instagram", + "brand", + "social" + ], + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 1301, + "order": 18, + "prevSize": 32, + "ligatures": "instagram, brand10", + "name": "instagram", + "code": 59077 + }, + "setIdx": 8, + "setId": 0, + "iconIdx": 400 + }, + { + "icon": { + "paths": [ + "M96 0l-96 160v736h256v128h128l128-128h160l288-288v-608h-864zM832 544l-160 160h-160l-128 128v-128h-192v-576h640v416z", + "M608 256h96v256h-96v-256z", + "M416 256h96v256h-96v-256z" + ], + "attrs": [], + "tags": [ + "twitch", + "brand", + "social" + ], + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 1310, + "order": 3, + "prevSize": 32, + "ligatures": "twitch, brand18", + "name": "twitch", + "code": 59078 + }, + "setIdx": 8, + "setId": 0, + "iconIdx": 411 + }, + { + "icon": { + "paths": [ + "M704 394.26l-364.456-364.456c53.89-19.276 111.94-29.804 172.456-29.804 67.904 0 132.704 13.25 192 37.256v357.004zM768 704v-635.486c153.034 88.528 256 253.978 256 443.486 0 67.904-13.25 132.704-37.256 192h-218.744zM320 768h635.486c-88.528 153.034-253.978 256-443.486 256-67.904 0-132.704-13.25-192-37.256v-218.744zM426.26 224l-411.282 411.282c-9.764-39.49-14.978-80.774-14.978-123.282 0-193.382 107.226-361.702 265.452-448.808l160.808 160.808zM256 501.74v453.746c-94.596-54.722-170.036-138.848-213.874-239.872l213.874-213.874z" + ], + "attrs": [], + "tags": [ + "picassa", + "brand", + "social" + ], + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 1320, + "order": 17, + "prevSize": 32, + "ligatures": "picassa, brand27", + "name": "picassa", + "code": 59079 + }, + "setIdx": 8, + "setId": 0, + "iconIdx": 420 + }, + { + "icon": { + "paths": [ + "M852 0h-680c-94.6 0-172 77.4-172 172v680c0 94.6 77.4 172 172 172h680c94.6 0 172-77.4 172-172v-680c0-94.6-77.4-172-172-172zM960 768h-384v-236c0 0 70.334 1 108 40v68h154.41c-11.82-37.882-37.068-75.112-73.128-106.664-61.98-54.23-163.194-81.336-253.282-81.336v316h-448v-96c0-43.396 14.65-86.538 42.364-124.76 24.594-33.918 58.864-63.832 101.86-88.914 50.432-29.418 110.562-50.708 175.776-62.778v-139.548h128v128c147 0 221.612 26.396 303.778 74.326 42.996 25.082 77.266 54.996 101.86 88.914 27.714 38.222 42.362 81.364 42.362 124.76v96zM199.59 640c11.82-37.882 37.070-75.112 73.128-106.664 31.54-27.596 69.62-49.188 111.282-63.756v170.42h-184.41z" + ], + "attrs": [], + "tags": [ + "deviantart", + "brand", + "social" + ], + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 1328, + "order": 8, + "prevSize": 32, + "ligatures": "deviantart2, brand35", + "name": "deviantart2", + "code": 59080 + }, + "setIdx": 8, + "setId": 0, + "iconIdx": 428 + }, + { + "icon": { + "paths": [ + "M518.742 544.704l118.030 314.942c0.778 1.85 1.732 3.55 2.75 5.154-39.912 13.682-82.804 21.2-127.518 21.2-37.694 0-74.072-5.38-108.488-15.238l115.226-326.058zM896 511.994c0 137.97-76.776 258.43-190.94 323.258l117.286-330.272c21.912-53.354 29.204-96.020 29.204-133.95 0-13.772-0.938-26.548-2.588-38.458 29.978 53.262 47.038 114.392 47.038 179.422zM128 511.992c0-54.224 11.944-105.698 33.252-152.206l183.178 488.784c-128.108-60.61-216.43-188.552-216.43-336.578zM191.164 306.568c68.658-101.522 186.684-168.568 320.844-168.568 99.968 0 190.992 37.226 259.308 98.196-1.656-0.098-3.27-0.302-4.976-0.302-37.72 0-64.486 32.002-64.486 66.376 0 30.822 18.262 56.896 37.72 87.716 14.6 24.906 31.654 56.908 31.654 103.142 0 32.002-12.636 69.15-29.216 120.9l-38.312 124.632-138.78-402.018c23.116-1.178 43.948-3.55 43.948-3.55 20.694-2.388 18.258-32.004-2.446-30.822 0 0-62.204 4.752-102.35 4.752-37.734 0-101.134-4.752-101.134-4.752-20.71-1.18-23.14 29.63-2.438 30.822 0 0 19.59 2.366 40.278 3.55l59.822 159.65-84.044 245.456-139.834-405.106c23.142-1.182 43.952-3.55 43.952-3.55 20.674-2.388 18.232-32.004-2.458-30.822 0 0-62.186 4.752-102.34 4.752-7.206 0-15.702-0.172-24.712-0.454zM852 0h-680c-94.6 0-172 77.4-172 172v680c0 94.6 77.4 172 172 172h680c94.6 0 172-77.4 172-172v-680c0-94.6-77.4-172-172-172zM960 512c0 247.424-200.576 448-448 448s-448-200.576-448-448 200.576-448 448-448 448 200.576 448 448z" + ], + "attrs": [], + "tags": [ + "wordpress", + "brand", + "social", + "cms" + ], + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 1340, + "order": 5, + "prevSize": 32, + "ligatures": "wordpress2, brand46", + "name": "wordpress2", + "code": 59081 + }, + "setIdx": 8, + "setId": 0, + "iconIdx": 439 + }, + { + "icon": { + "paths": [ + "M266.004 276.678c32.832-32.844 86.002-32.844 118.804-0.032l7.826 7.868 101.104-101.156-7.874-7.88c-57.624-57.7-138.514-77.878-212.42-60.522-10.594-65.182-67.088-114.924-135.174-114.956-75.65 0-136.954 61.442-136.97 137.158 0 65.336 45.59 120 106.662 133.83-23.138 77.45-4.242 164.834 56.846 225.984l227.826 227.9 100.996-101.214-227.81-227.886c-32.682-32.722-32.742-86.126 0.184-119.094zM1022.712 137.158c0.016-75.762-61.318-137.158-136.984-137.158-69.234 0-126.478 51.444-135.682 118.238-77.074-22.664-163.784-3.496-224.64 57.408l-227.84 227.9 101.102 101.172 227.766-227.856c32.94-32.966 85.988-32.906 118.684-0.184 32.8 32.83 32.8 86.114-0.032 118.956l-7.794 7.836 101.010 101.248 7.858-7.928c60.458-60.566 79.678-146.756 57.612-223.638 67.15-8.834 118.94-66.364 118.94-135.994zM906.266 751.064c18.102-74.458-1.976-156.324-60.108-214.5l-227.49-227.992-101.102 101.122 227.52 228.012c32.94 32.996 32.864 86.096 0.184 118.848-32.802 32.814-86.004 32.814-118.836-0.030l-7.766-7.79-100.994 101.246 7.732 7.728c61.516 61.594 149.618 80.438 227.368 56.488 12.632 62.682 67.934 109.804 134.258 109.804 75.604 0 136.968-61.35 136.968-137.126 0-69.2-51.18-126.456-117.734-135.81zM612.344 528.684l-227.536 227.992c-32.71 32.768-86.034 32.828-118.944-0.124-32.818-32.904-32.832-86.098-0.044-118.97l7.808-7.774-101.086-101.124-7.734 7.712c-58.76 58.802-78.56 141.834-59.45 216.982-60.398 14.26-105.358 68.634-105.358 133.496-0.016 75.746 61.332 137.126 136.982 137.126 65.1-0.032 119.588-45.418 133.54-106.382 74.702 18.552 156.998-1.304 215.344-59.756l227.49-227.96-101.012-101.218z" + ], + "attrs": [], + "tags": [ + "joomla", + "brand", + "cms" + ], + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 1341, + "order": 6, + "prevSize": 32, + "ligatures": "joomla, brand47", + "name": "joomla", + "code": 59082 + }, + "setIdx": 8, + "setId": 0, + "iconIdx": 440 + }, + { + "icon": { + "paths": [ + "M957.796 384h-57.406c-35.166 0-65.988-29.742-68.39-64v0c0.004-182.668-147.258-320-331.19-320h-167.824c-183.812 0-332.856 148-332.986 330.666v362.798c0 182.654 149.174 330.536 332.984 330.536h358.42c183.948 0 332.596-147.882 332.596-330.536v-234.382c0-36.502-29.44-75.082-66.204-75.082zM320 256h192c35.2 0 64 28.8 64 64s-28.8 64-64 64h-192c-35.2 0-64-28.8-64-64s28.8-64 64-64zM704 768h-384c-35.2 0-64-28.8-64-64s28.8-64 64-64h384c35.2 0 64 28.8 64 64s-28.8 64-64 64z" + ], + "attrs": [], + "tags": [ + "blogger", + "brand", + "social" + ], + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 1342, + "order": 29, + "prevSize": 32, + "ligatures": "blogger, brand48", + "name": "blogger", + "code": 59083 + }, + "setIdx": 8, + "setId": 0, + "iconIdx": 441 + }, + { + "icon": { + "paths": [ + "M567.656 736.916c-81.944 38.118-158.158 37.716-209.34 34.020-61.052-4.41-110.158-21.124-131.742-35.732-13.3-9.006-31.384-5.522-40.39 7.782-9.004 13.302-5.52 31.386 7.782 40.39 34.698 23.486 96.068 40.954 160.162 45.58 10.866 0.784 22.798 1.278 35.646 1.278 55.782 0 126.626-5.316 202.42-40.57 14.564-6.778 20.878-24.074 14.104-38.64-6.776-14.566-24.076-20.872-38.642-14.108zM890.948 693.816c2.786-252.688 28.762-730.206-454.97-691.612-477.6 38.442-350.964 542.968-358.082 711.95-6.308 89.386-35.978 198.648-77.896 309.846h129.1c13.266-47.122 23.024-93.72 27.232-138.15 7.782 5.428 16.108 10.674 24.994 15.7 14.458 8.518 26.884 19.844 40.040 31.834 30.744 28.018 65.59 59.774 133.712 63.752 4.572 0.262 9.174 0.394 13.676 0.394 68.896 0 116.014-30.154 153.878-54.382 18.14-11.612 33.818-21.64 48.564-26.452 41.91-13.12 78.532-34.296 105.904-61.252 4.276-4.208 8.242-8.538 11.962-12.948 15.246 55.878 36.118 118.758 59.288 181.504h275.65c-66.174-102.224-134.436-202.374-133.052-330.184zM124.11 556.352c0-0.016 0-0.030-0.002-0.046-4.746-82.462 34.71-151.832 88.126-154.936 53.412-3.106 100.56 61.228 105.304 143.692 0 0.014 0.004 0.030 0.004 0.044 0.256 4.446 0.368 8.846 0.37 13.206-16.924 4.256-32.192 10.436-45.872 17.63-0.052-0.612-0.092-1.216-0.152-1.83 0-0.008 0-0.018 0-0.026-4.57-46.81-29.572-82.16-55.852-78.958-26.28 3.204-43.88 43.75-39.312 90.558 0 0.010 0.004 0.018 0.004 0.026 1.992 20.408 7.868 38.636 16.042 52.444-2.034 1.604-7.784 5.812-14.406 10.656-4.97 3.634-11.020 8.058-18.314 13.43-19.882-26.094-33.506-63.58-35.94-105.89zM665.26 760.178c-1.9 43.586-58.908 84.592-111.582 101.044l-0.296 0.096c-21.9 7.102-41.428 19.6-62.104 32.83-34.732 22.224-70.646 45.208-122.522 45.208-3.404 0-6.894-0.104-10.326-0.296-47.516-2.778-69.742-23.032-97.88-48.676-14.842-13.526-30.19-27.514-49.976-39.124l-0.424-0.244c-42.706-24.104-69.212-54.082-70.908-80.194-0.842-12.98 4.938-24.218 17.182-33.4 26.636-19.972 44.478-33.022 56.284-41.658 13.11-9.588 17.068-12.48 20-15.264 2.096-1.986 4.364-4.188 6.804-6.562 24.446-23.774 65.36-63.562 128.15-63.562 38.404 0 80.898 14.8 126.17 43.902 21.324 13.878 39.882 20.286 63.38 28.4 16.156 5.578 34.468 11.902 58.992 22.404l0.396 0.164c22.88 9.404 49.896 26.564 48.66 54.932zM652.646 657.806c-4.4-2.214-8.974-4.32-13.744-6.286-22.106-9.456-39.832-15.874-54.534-20.998 8.116-15.894 13.16-35.72 13.624-57.242 0-0.010 0-0.022 0-0.030 1.126-52.374-25.288-94.896-58.996-94.976-33.71-0.078-61.95 42.314-63.076 94.686 0 0.010 0 0.018 0 0.028-0.038 1.714-0.042 3.416-0.020 5.11-20.762-9.552-41.18-16.49-61.166-20.76-0.092-1.968-0.204-3.932-0.244-5.92 0-0.016 0-0.036 0-0.050-1.938-95.412 56.602-174.39 130.754-176.402 74.15-2.014 135.828 73.7 137.772 169.11 0 0.018 0 0.038 0 0.052 0.874 43.146-10.66 82.866-30.37 113.678z" + ], + "attrs": [], + "tags": [ + "tux", + "brand", + "linux" + ], + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 1347, + "order": 1, + "prevSize": 32, + "ligatures": "tux, brand53", + "name": "tux", + "code": 59084 + }, + "setIdx": 8, + "setId": 0, + "iconIdx": 446 + }, + { + "icon": { + "paths": [ + "M569.226 778.256c-0.002-0.044-0.002-0.088-0.004-0.132 0.002 0.044 0.002 0.088 0.004 0.132z", + "M570.596 814.538c-0.012-0.234-0.022-0.466-0.032-0.702 0.010 0.234 0.020 0.466 0.032 0.702z", + "M569.814 796.312c-0.006-0.178-0.012-0.356-0.020-0.536 0.010 0.182 0.016 0.358 0.020 0.536z", + "M960 0h-896c-35.2 0-64 28.8-64 64v896c0 35.2 28.8 64 64 64h493.832c0.044 0 0.088 0.006 0.132 0.006 0.042 0 0.084-0.006 0.126-0.006h401.91c35.2 0 64-28.8 64-64v-896c0-35.2-28.8-64-64-64zM192 224c0-17.672 14.328-32 32-32s32 14.328 32 32v64c0 17.672-14.328 32-32 32s-32-14.328-32-32v-64zM960 960h-375.058c-6.7-42.082-10.906-85.476-13.388-127.604 0.006 0.116 0.010 0.228 0.018 0.344-19.696 2.146-39.578 3.26-59.572 3.26-133.65 0-262.382-48.656-362.484-137.006-14.906-13.156-16.326-35.906-3.168-50.812 13.158-14.904 35.906-16.326 50.814-3.168 86.936 76.728 198.748 118.986 314.838 118.986 19.086 0 38.052-1.166 56.816-3.416-2.192-118.194 6.876-211.914 7.026-213.404 0.898-8.996-2.050-17.952-8.118-24.654-6.066-6.702-14.682-10.526-23.724-10.526h-95.174c1.384-34.614 5.082-93.814 14.958-160.188 18.864-126.76 51.994-225.77 96.152-287.812h400.064v896z", + "M800 320c-17.674 0-32-14.328-32-32v-64c0-17.672 14.326-32 32-32s32 14.328 32 32v64c0 17.672-14.326 32-32 32z", + "M540.496 835.232c-3.646 0.192-7.298 0.336-10.956 0.454 3.658-0.116 7.31-0.264 10.956-0.454z", + "M512 836c4.692 0 9.374-0.074 14.050-0.196-4.676 0.122-9.358 0.196-14.050 0.196z", + "M539.074 763.202c0.784-0.044 1.568-0.084 2.352-0.132-0.782 0.048-1.568 0.088-2.352 0.132z", + "M525.084 763.8c1.074-0.030 2.146-0.072 3.218-0.11-1.072 0.038-2.144 0.082-3.218 0.11z", + "M877.65 648.182c-13.156-14.91-35.908-16.322-50.812-3.168-72.642 64.114-162.658 104.136-258.022 115.57 0.43 23.278 1.294 47.496 2.754 72.156 111.954-12.21 217.786-58.614 302.912-133.746 14.908-13.156 16.326-35.906 3.168-50.812z", + "M571.498 832.748c-4.606 0.5-9.222 0.936-13.848 1.322 4.626-0.384 9.244-0.822 13.848-1.322z", + "M555.488 834.242c-3.906 0.312-7.822 0.576-11.742 0.806 3.92-0.226 7.834-0.496 11.742-0.806z" + ], + "attrs": [], + "tags": [ + "finder", + "brand", + "mac", + "os" + ], + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 1349, + "order": 4, + "prevSize": 32, + "ligatures": "finder, brand55", + "name": "finder", + "code": 59085 + }, + "setIdx": 8, + "setId": 0, + "iconIdx": 448 + }, + { + "icon": { + "paths": [ + "M891.96 514.204c-18.086 0-35.348 3.52-51.064 9.856-10.506-114.358-110.29-204.060-232-204.060-29.786 0-58.682 5.63-84.318 15.164-9.96 3.702-12.578 7.52-12.578 14.916v402.714c0 7.766 6.24 14.234 14.124 14.996 0.336 0.034 363.536 0.21 365.89 0.21 72.904 0 131.986-56.816 131.986-126.894s-59.134-126.902-132.040-126.902zM400 768h32l16-224.22-16-223.78h-32l-16 223.78zM304 768h-32l-16-162.75 16-157.25h32l16 160zM144 768h32l16-128-16-128h-32l-16 128zM16 704h32l16-64-16-64h-32l-16 64z" + ], + "attrs": [], + "tags": [ + "soundcloud", + "brand", + "social" + ], + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 1353, + "order": 30, + "prevSize": 32, + "ligatures": "soundcloud, brand59", + "name": "soundcloud", + "code": 59086 + }, + "setIdx": 8, + "setId": 0, + "iconIdx": 452 + }, + { + "icon": { + "paths": [ + "M256 640c0-35.346 28.654-64 64-64s64 28.654 64 64c0 35.346-28.654 64-64 64s-64-28.654-64-64zM640 640c0-35.346 28.654-64 64-64s64 28.654 64 64c0 35.346-28.654 64-64 64s-64-28.654-64-64zM643.112 776.778c16.482-12.986 40.376-10.154 53.364 6.332s10.152 40.378-6.334 53.366c-45.896 36.158-115.822 59.524-178.142 59.524-62.322 0-132.248-23.366-178.144-59.522-16.486-12.99-19.32-36.882-6.332-53.368 12.99-16.482 36.882-19.318 53.366-6.332 26.422 20.818 78.722 43.222 131.11 43.222s104.688-22.404 131.112-43.222zM1024 512c0-70.692-57.308-128-128-128-48.116 0-89.992 26.57-111.852 65.82-65.792-35.994-145.952-59.246-233.28-64.608l76.382-171.526 146.194 42.2c13.152 37.342 48.718 64.114 90.556 64.114 53.020 0 96-42.98 96-96s-42.98-96-96-96c-36.56 0-68.342 20.442-84.554 50.514l-162.906-47.024c-18.224-5.258-37.538 3.722-45.252 21.052l-103.77 233.026c-85.138 5.996-163.262 29.022-227.636 64.236-21.864-39.25-63.766-65.804-111.882-65.804-70.692 0-128 57.308-128 128 0 52.312 31.402 97.254 76.372 117.102-8.070 24.028-12.372 49.104-12.372 74.898 0 176.73 200.576 320 448 320 247.422 0 448-143.27 448-320 0-25.792-4.3-50.862-12.368-74.886 44.97-19.85 76.368-64.802 76.368-117.114zM864 188c19.882 0 36 16.118 36 36s-16.118 36-36 36-36-16.118-36-36 16.118-36 36-36zM64 512c0-35.29 28.71-64 64-64 25.508 0 47.572 15.004 57.846 36.646-33.448 25.366-61.166 54.626-81.666 86.738-23.524-9.47-40.18-32.512-40.18-59.384zM512 948c-205.45 0-372-109.242-372-244s166.55-244 372-244c205.45 0 372 109.242 372 244s-166.55 244-372 244zM919.82 571.384c-20.5-32.112-48.218-61.372-81.666-86.738 10.276-21.642 32.338-36.646 57.846-36.646 35.29 0 64 28.71 64 64 0 26.872-16.656 49.914-40.18 59.384z" + ], + "attrs": [], + "tags": [ + "reddit", + "brand", + "social" + ], + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 1356, + "order": 7, + "prevSize": 32, + "ligatures": "reddit, brand62", + "name": "reddit", + "code": 59087 + }, + "setIdx": 8, + "setId": 0, + "iconIdx": 455 + }, + { + "icon": { + "paths": [ + "M853.376 0h-682.69c-93.876 0-170.686 76.816-170.686 170.692v682.624c0 93.93 76.81 170.684 170.686 170.684h682.69c93.874 0 170.624-76.752 170.624-170.684v-682.624c0-93.876-76.75-170.692-170.624-170.692zM960 853.316c0 28.334-11.14 55.082-31.37 75.316-20.222 20.228-46.948 31.368-75.254 31.368h-341.376v-448h-448v-341.308c0-28.308 11.15-55.050 31.396-75.296 20.244-20.246 46.984-31.396 75.29-31.396h341.314v448h448v341.316z" + ], + "attrs": [], + "tags": [ + "delicious", + "brand", + "social" + ], + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 1360, + "order": 14, + "prevSize": 32, + "ligatures": "delicious, brand67", + "name": "delicious", + "code": 59088 + }, + "setIdx": 8, + "setId": 0, + "iconIdx": 460 + }, + { + "icon": { + "paths": [ + "M1024 640v384h-1024v-384h128v256h768v-256zM192 704h640v128h-640zM207.152 565.466l27.698-124.964 624.832 138.496-27.698 124.964zM279.658 308.558l54.092-116.006 580.032 270.464-54.092 116.006zM991.722 361.476l-77.922 101.55-507.746-389.608 56.336-73.418h58.244z" + ], + "attrs": [], + "tags": [ + "stackoverflow", + "brand", + "social" + ], + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 1363, + "order": 15, + "prevSize": 32, + "ligatures": "stackoverflow, brand70", + "name": "stackoverflow", + "code": 59089 + }, + "setIdx": 8, + "setId": 0, + "iconIdx": 463 + }, + { + "icon": { + "paths": [ + "M367.562 0c-243.358 0-367.562 140.162-367.562 401.856v0 549.034l238.39-238.628v-278.896c0-108.416 28.73-177.406 125.118-192.894v0c33.672-6.584 103.75-4.278 148.306-4.278v0 165.596c0 1.51 0.208 4.206 0.594 5.586v0c1.87 6.704 7.93 11.616 15.116 11.63v0c4.062 0.008 7.868-2.104 11.79-5.97v0l413.122-412.974-584.874-0.062zM785.61 311.746v278.89c0 108.414-28.736 177.414-125.116 192.894v0c-33.672 6.582-103.756 4.278-148.312 4.278v0-165.594c0-1.5-0.206-4.204-0.594-5.582v0c-1.864-6.712-7.922-11.622-15.112-11.63v0c-4.064-0.008-7.866 2.112-11.79 5.966v0l-413.124 412.966 584.874 0.066c243.354 0 367.564-140.168 367.564-401.852v0-549.028l-238.39 238.626z" + ], + "attrs": [], + "tags": [ + "flattr", + "brand", + "donate", + "social" + ], + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 1368, + "order": 12, + "prevSize": 32, + "ligatures": "flattr, brand75", + "name": "flattr", + "code": 59090 + }, + "setIdx": 8, + "setId": 0, + "iconIdx": 468 + }, + { + "icon": { + "paths": [ + "M851.564 90.090c-12.060-16.404-31.204-26.090-51.564-26.090h-608c-35.346 0-64 28.654-64 64v768c0 25.884 15.592 49.222 39.508 59.128 7.918 3.28 16.234 4.874 24.478 4.874 16.656 0 33.026-6.504 45.268-18.748l237.256-237.254h165.49c27.992 0 52.736-18.192 61.086-44.91l160-512c6.074-19.432 2.538-40.596-9.522-57zM672.948 320h-224.948c-35.346 0-64 28.654-64 64s28.654 64 64 64h184.948l-40 128h-144.948c-16.974 0-33.252 6.742-45.254 18.746l-146.746 146.744v-549.49h456.948l-40 128z" + ], + "attrs": [], + "tags": [ + "foursquare", + "brand", + "social" + ], + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 1369, + "order": 2, + "prevSize": 32, + "ligatures": "foursquare, brand76", + "name": "foursquare", + "code": 59091 + }, + "setIdx": 8, + "setId": 0, + "iconIdx": 469 + }, + { + "icon": { + "paths": [ + "M690.22 471.682c-60.668-28.652-137.97-34.42-194.834 6.048 69.14-6.604 144.958 4.838 195.106 57.124 48-55.080 124.116-65.406 192.958-59.732-57.488-38.144-133.22-33.024-193.23-3.44v0zM665.646 605.75c-68.376-1.578-134.434 23.172-191.1 60.104-107.176-45.588-242.736-37.124-334.002 38.982 26.33-0.934 52.006-7.446 78.056-10.792 95.182-9.488 196.588 14.142 268.512 79.824 29.772-43.542 71.644-78.242 119.652-99.922 63.074-30.52 134.16-33.684 202.82-34.52-41.688-28.648-94.614-33.954-143.938-33.676z", + "M917.806 229.076c-22.21-30.292-53.174-65.7-87.178-99.704s-69.412-64.964-99.704-87.178c-51.574-37.82-76.592-42.194-90.924-42.194h-496c-44.112 0-80 35.888-80 80v864c0 44.112 35.886 80 80 80h736c44.112 0 80-35.888 80-80v-624c0-14.332-4.372-39.35-42.194-90.924v0zM785.374 174.626c30.7 30.7 54.8 58.398 72.58 81.374h-153.954v-153.946c22.982 17.78 50.678 41.878 81.374 72.572v0zM896 944c0 8.672-7.328 16-16 16h-736c-8.672 0-16-7.328-16-16v-864c0-8.672 7.328-16 16-16 0 0 495.956-0.002 496 0v224c0 17.672 14.324 32 32 32h224v624z" + ], + "attrs": [], + "tags": [ + "file-openoffice", + "file", + "file-format" + ], + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 1377, + "order": 10, + "prevSize": 32, + "ligatures": "file-openoffice, file11", + "name": "file-openoffice", + "code": 59092 + }, + "setIdx": 8, + "setId": 0, + "iconIdx": 475 + }, + { + "icon": { + "paths": [ + "M534.626 22.628c-12.444-12.444-37.026-22.628-54.626-22.628h-384c-17.6 0-32 14.4-32 32v960c0 17.6 14.4 32 32 32h768c17.6 0 32-14.4 32-32v-576c0-17.6-10.182-42.182-22.626-54.626l-338.748-338.746zM832 960h-704v-896h351.158c2.916 0.48 8.408 2.754 10.81 4.478l337.556 337.554c1.722 2.402 3.996 7.894 4.476 10.81v543.158zM864 0h-192c-17.6 0-21.818 10.182-9.374 22.626l210.746 210.746c12.446 12.446 22.628 8.228 22.628-9.372v-192c0-17.6-14.4-32-32-32z" + ], + "attrs": [], + "tags": [ + "libreoffice", + "file", + "file-format" + ], + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 1375, + "order": 11, + "prevSize": 32, + "ligatures": "libreoffice, file14", + "name": "libreoffice", + "code": 59093 + }, + "setIdx": 8, + "setId": 0, + "iconIdx": 478 + }, + { + "icon": { + "paths": [ + "M945.75 368.042l-448-298.666c-10.748-7.166-24.752-7.166-35.5 0l-448 298.666c-8.902 5.934-14.25 15.926-14.25 26.624v298.666c0 10.7 5.348 20.692 14.25 26.624l448 298.666c5.374 3.584 11.562 5.376 17.75 5.376s12.376-1.792 17.75-5.376l448-298.666c8.902-5.934 14.25-15.926 14.25-26.624v-298.666c0-10.698-5.348-20.69-14.25-26.624zM480 654.876l-166.312-110.876 166.312-110.874 166.312 110.874-166.312 110.876zM512 377.542v-221.75l358.31 238.876-166.31 110.874-192-128zM448 377.542l-192 128-166.312-110.874 358.312-238.876v221.75zM198.312 544l-134.312 89.542v-179.082l134.312 89.54zM256 582.458l192 128v221.748l-358.312-238.872 166.312-110.876zM512 710.458l192-128 166.312 110.876-358.312 238.874v-221.75zM761.688 544l134.312-89.54v179.084l-134.312-89.544z" + ], + "attrs": [], + "tags": [ + "codepen", + "brand" + ], + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 1338, + "order": 13, + "prevSize": 32, + "ligatures": "codepen, brand81", + "name": "codepen", + "code": 59094 + }, + "setIdx": 8, + "setId": 0, + "iconIdx": 484 + }, + { + "icon": { + "paths": [ + "M259.544 511.998c0-65.416 53.030-118.446 118.446-118.446s118.446 53.030 118.446 118.446c0 65.416-53.030 118.446-118.446 118.446s-118.446-53.030-118.446-118.446zM512.004 0c-282.774 0-512.004 229.232-512.004 512s229.226 512 512.004 512c282.764 0 511.996-229.23 511.996-512 0-282.768-229.23-512-511.996-512zM379.396 959.282c-153.956-89.574-257.468-256.324-257.468-447.282s103.512-357.708 257.462-447.282c154.010 89.562 257.59 256.288 257.59 447.282 0 190.988-103.58 357.718-257.584 447.282z" + ], + "attrs": [], + "tags": [ + "IcoMoon", + "icomoon", + "brand" + ], + "grid": 16 + }, + "attrs": [], + "properties": { + "id": 1392, + "order": 9, + "prevSize": 32, + "ligatures": "IcoMoon, icomoon", + "name": "IcoMoon", + "code": 59095 + }, + "setIdx": 8, + "setId": 0, + "iconIdx": 490 + }, + { + "icon": { + "paths": [ + "M287.488 289.504v-96.512h608v446.496h-96.512l1.984 96.992h-98.496v94.496l-605.952 0v-446.976h95.008l0-96.512 95.968 2.016zM862.496 224h-544v65.504l482.496-1.984-1.984 320.992h63.488l0-384.512zM768 320.512h-545.504v63.488h480v319.488h65.504v-382.976zM127.488 415.008v384.992h544v-384.992h-544z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "stack", + "papers" + ], + "grid": 32 + }, + "attrs": [], + "properties": { + "id": 158, + "order": 501, + "prevSize": 32, + "code": 59065, + "name": "stack2" + }, + "setIdx": 3, + "setId": 6, + "iconIdx": 0 + }, + { + "icon": { + "paths": [ + "M96 832h608v-448h-608v448zM190.016 352h545.984v384h64v-448h-608l-1.984 64zM288 192l-1.984 64h545.984v384h64v-448h-608z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "stack", + "papers" + ], + "grid": 32 + }, + "attrs": [], + "properties": { + "id": 159, + "order": 502, + "prevSize": 32, + "code": 59066, + "name": "stack3" + }, + "setIdx": 3, + "setId": 6, + "iconIdx": 1 + }, + { + "icon": { + "paths": [ + "M562.24 579.776c-51.136-41.792-83.776-105.344-83.776-176.544 0-35.776 8.96-69.184 23.648-99.328l-35.136-35.104-213.44 213.472c39.68 31.232 35.68 61.76-10.752 91.52l285.152 285.12h139.744c17.984 0 32.576 14.592 32.576 32.576v32.576h-152.576l-0.352 0.352-0.352-0.352h-237.376v-32.544c0-17.984 14.592-32.576 32.576-32.576h139.744l-268.992-268.96c-53.152 22.784-79.392 0.768-78.272-66.88 1.216-71.968 31.712-91.168 90.848-58.784l218.528-218.528-21.632-21.6c-12.704-12.672-12.704-33.312 0-46.016l69.056-69.056c12.704-12.704 33.344-12.704 46.048 0l83.2 83.264c26.496-10.784 55.328-16.96 85.696-16.96 74.944 0 141.504 32.16 183.008 88.064 1.408 0.352-325.984 316.8-327.168 316.288zM814.176 376.128c0 0 54.944 69.152 0 124.096s-123.424-0.672-123.424-0.672l123.424-123.424z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "lamp", + "light" + ], + "grid": 32 + }, + "attrs": [], + "properties": { + "id": 169, + "order": 503, + "prevSize": 32, + "code": 59067, + "name": "lamp" + }, + "setIdx": 3, + "setId": 6, + "iconIdx": 2 + }, + { + "icon": { + "paths": [ + "M773.12 294.624c12.096 12.064 12.096 31.648 0 43.744-12.096 12.064-21.92 21.888-21.92 21.888l21.92 21.888c24.16 24.16 24.16 63.328 0 87.52l-328.16 328.096c-24.192 24.192-63.36 24.192-87.52 0l-21.888-21.888-87.488 87.552 43.744 43.744c12.096 12.064 12.096 31.616 0 43.744-12.096 12.064-31.68 12.064-43.744 0l-175.040-175.072c-12.064-12.064-12.064-31.616 0-43.744 12.096-12.064 31.68-12.064 43.744 0l43.744 43.744 87.52-87.488-21.888-21.888c-24.192-24.128-24.192-63.328 0-87.488l328.192-328.128c24.192-24.192 63.328-24.192 87.488 0l21.888 21.888c0 0 9.824-9.824 21.888-21.888 12.096-12.096 31.68-12.096 43.744 0l10.944 10.944 175.040-175.040v43.744l-153.152 153.152 10.944 10.976zM619.968 272.736c-12.064-12.096-31.648-12.096-43.744 0l-65.632 65.632 43.744 43.744-21.888 21.888-43.744-43.744-65.632 65.632 43.744 43.776-21.888 21.888-43.776-43.776-21.888 21.888 87.52 87.488-21.888 21.888-87.52-87.488-65.568 65.568 87.488 87.488-21.888 21.888-87.488-87.488-21.888 21.888c-12.096 12.064-12.096 31.68 0 43.744l131.264 131.264c12.096 12.128 31.68 12.128 43.776 0l328.128-328.128c12.128-12.064 12.128-31.648 0-43.744l-131.232-131.296zM532.48 316.48l21.888-21.888 87.488 87.488-21.888 21.888-87.488-87.488zM532.48 491.488l-87.488-87.52 21.888-21.888 87.488 87.52-21.888 21.888zM313.696 535.264l21.888-21.888 43.744 43.744-21.888 21.888-43.744-43.744zM958.144 300.352c0 23.2-18.816 41.984-41.984 41.984-23.232 0-42.016-18.816-42.016-41.984 0-23.232 42.016-86.656 42.016-86.656s41.984 63.456 41.984 86.656z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "injection", + "medicine" + ], + "grid": 32 + }, + "attrs": [], + "properties": { + "id": 183, + "order": 504, + "prevSize": 32, + "code": 59068, + "name": "injection" + }, + "setIdx": 3, + "setId": 6, + "iconIdx": 3 + }, + { + "icon": { + "paths": [ + "M606.688 573.216v-29.344h98.016v29.344h-98.016zM606.688 479.2h98.016v31.328h-98.016v-31.328zM606.688 416.48h98.016v31.36h-98.016v-31.36zM606.688 351.776h98.016v31.328l-98.016-1.984v-29.344zM606.688 285.088h98.016v33.344h-98.016v-33.344zM606.688 222.4h98.016v31.36h-98.016v-31.36zM663.456 772.896c0 103.872-84.224 188.096-188.096 188.096s-188.096-84.224-188.096-188.096c0-71.232 37.6-133.152 95.968-165.088v-418.784c0-51.936 44.096-94.016 96.032-94.016s94.048 42.080 94.048 94.016v423.52c54.016 33.088 90.144 92.416 90.144 160.352zM541.984 631.52v-442.496c0-34.624-28.064-62.688-62.688-62.688s-62.688 28.064-62.688 62.688v438.752c-57.408 23.296-97.984 79.36-97.984 145.12 0 86.56 70.176 156.736 156.736 156.736 86.56 0 156.704-70.176 156.704-156.736 0.032-62.656-36.96-116.256-90.080-141.376zM475.36 898.304c-69.28 0-125.408-56.16-125.408-125.408 0-59.808 41.952-109.632 97.984-122.176v-298.944h62.72v301.376c51.936 15.328 90.112 62.848 90.112 119.744 0 69.248-56.128 125.408-125.408 125.408z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "thermometer", + "temprature" + ], + "grid": 32 + }, + "attrs": [], + "properties": { + "id": 184, + "order": 505, + "prevSize": 32, + "code": 59069, + "name": "thermometer2" + }, + "setIdx": 3, + "setId": 6, + "iconIdx": 4 + }, + { + "icon": { + "paths": [ + "M770.048 210.656l-120.736 268h-35.136l128.768-285.312h-198.816v664.672c40.96 1.504 250.016 69.344 250.016 69.344v32.64h-561.92v-34.848c0 0 213.696-67.168 245.888-67.168l0-664.64h-192.48l128.8 285.312h-35.136l-120.736-268-120.736 268-35.136 0 129.536-286.912v-33.088h216.128c0-43.296 29.024-78.656 62.88-78.656 35.808 0 62.88 37.376 62.88 78.656h220.096v28.384l131.712 291.616h-35.136l-120.736-268zM416.64 511.328c0 86.176-59.776 169.024-158.048 169.024-96.064 0-158.048-82.848-158.048-169.024-0.032 0.128 316.096 0.128 316.096 0zM616.384 511.328c0 0.16 316.128 0.16 316.128 0 0 86.176-59.776 169.024-158.048 169.024-96.096 0-158.080-82.848-158.080-169.024z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "justice", + "balance", + "equality", + "court" + ], + "grid": 32 + }, + "attrs": [], + "properties": { + "id": 237, + "order": 506, + "prevSize": 32, + "code": 59070, + "name": "justice" + }, + "setIdx": 3, + "setId": 6, + "iconIdx": 5 + }, + { + "icon": { + "paths": [ + "M160 960v-768l133.344-128h405.344l133.312 128v768h-672zM800 704v-32-192-32-224h-608v224 32 192 32 224h608v-224zM768 448h-544v-192h544v192zM576 320h-160v32h160v-32zM768 672h-544v-192h544v192zM576 544h-160v32h160v-32zM768 896h-544v-192h544v192zM576 768h-160v32h160v-32z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "cabinet", + "drawer", + "storage" + ], + "grid": 32 + }, + "attrs": [], + "properties": { + "id": 26, + "order": 410, + "prevSize": 32, + "code": 58923, + "name": "cabinet" + }, + "setIdx": 3, + "setId": 6, + "iconIdx": 6 + }, + { + "icon": { + "paths": [ + "M864 928h-736c-35.36 0-64-28.672-64-64v-384c0 0 167.072 85.92 320 121.088v38.912c0 17.696 14.304 32 32 32h160c17.664 0 32-14.304 32-32v-38.912c152.896-35.168 320-121.088 320-121.088v384c0 35.328-28.672 64-64 64zM544 544c17.664 0 32 14.304 32 32v32c0 17.696-14.336 32-32 32h-96c-17.696 0-32-14.304-32-32v-32c0-17.696 14.304-32 32-32h96zM608 544c0-17.696-14.336-32-32-32h-160c-17.696 0-32 14.304-32 32v28.672c-152.928-36.224-320-124.672-320-124.672v-128c0-35.328 28.64-64 64-64h192v-64c0-35.328 28.672-64 64-64h224c35.328 0 64 28.672 64 64v64h192c35.328 0 64 28.672 64 64v128c0 0-167.104 88.448-320 124.672v-28.672zM608 224c0-17.696-14.336-32-32-32h-160c-17.696 0-32 14.304-32 32 0 17.664 0 32 0 32h224c0 0 0-14.336 0-32z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "suitcase", + "briefcase" + ], + "grid": 32 + }, + "attrs": [], + "properties": { + "id": 78, + "order": 411, + "prevSize": 32, + "code": 58924, + "name": "suitcase" + }, + "setIdx": 3, + "setId": 6, + "iconIdx": 7 + }, + { + "icon": { + "paths": [ + "M736.448 142.688c-45.312 0-133.312 64-208 64-74.656 0-168-64-208-64-274.656 0-432 738.624-226.656 738.624 173.344 0 196.672-216 433.984-216 192 0 304.672 213.376 432.672 213.376 205.312 0 50.688-736-224-736zM304.416 558.688c-79.52 0-144-64.512-144-144 0-79.52 64.48-144 144-144s144 64.48 144 144c0 79.488-64.448 144-144 144zM686.432 478.688c-17.696 0-32-14.304-32-32s14.304-32 32-32 32 14.304 32 32-14.304 32-32 32zM784.448 574.688c-17.696 0-32-14.304-32-32s14.304-32 32-32 32 14.304 32 32-14.336 32-32 32zM784.448 382.688c-17.696 0-32-14.304-32-32s14.304-32 32-32 32 14.304 32 32-14.336 32-32 32zM880.448 478.688c-17.696 0-32-14.304-32-32s14.304-32 32-32 32 14.304 32 32-14.336 32-32 32zM304.416 334.688c-44.16 0-80 35.808-80 80s35.84 80 80 80c44.192 0 80-35.808 80-80s-35.808-80-80-80z" + ], + "width": 1054, + "attrs": [], + "isMulticolor": false, + "tags": [ + "gamepad", + "joystick" + ], + "grid": 32 + }, + "attrs": [], + "properties": { + "id": 113, + "order": 286, + "prevSize": 32, + "code": 58974, + "name": "gamepad" + }, + "setIdx": 3, + "setId": 6, + "iconIdx": 8 + }, + { + "icon": { + "paths": [ + "M0 667.616l356.384 356.384c0 0 85.088-201.952-34.656-321.696-118.432-118.432-321.728-34.688-321.728-34.688zM956 695.936l-180.992 180.992 22.624 22.624 180.992-180.992-22.624-22.624zM1046.496 741.184l-203.616-203.68c-24.992-24.928-65.568-24.928-90.496 0l-17.856 17.856-49.92-49.92 89.504-89.504c24.992-24.992 22.176-68.352-2.816-93.344l-110.304-110.304c-24.992-24.992-65.504-24.992-90.496 0l-81.376 78.528-42.88-42.88 2.912-2.88c24.992-24.992 24.992-65.536 0-90.528l-203.648-203.68c-24.992-24.992-65.504-24.992-90.528 0l-135.744 135.776c-24.992 24.992-24.992 65.536 0 90.528l203.648 203.648c24.992 24.992 65.504 24.992 90.528 0l44.512-44.512 44.096 44.48-81.888 81.888c-24.992 24.992-15.552 164.096-15.552 164.096l55.136 55.136c0 0 139.072 9.44 164.064-15.552l70.848-70.816 49.92 49.92-27.968 27.968c-24.992 24.992-24.992 65.504 0 90.496l203.68 203.616c24.992 24.992 65.504 24.992 90.496 0l135.744-135.744c24.992-25.088 24.992-65.6 0-90.592zM41.856 109.248l135.776-135.776c12.48-12.512 32.736-12.512 45.248 0l-181.024 181.024c-12.512-12.48-12.512-32.768 0-45.248zM64.48 177.12l181.024-181.024 22.624 22.624-181.024 181.024-22.624-22.624zM109.728 222.368l181.024-181.024 22.624 22.656-180.992 180.992-22.656-22.624zM155.008 267.648l180.992-181.024 22.656 22.624-181.024 181.024-22.624-22.624zM200.256 312.896l181.024-181.024 22.624 22.624-181.024 181.024-22.624-22.624zM290.752 358.144c-12.48 12.512-32.736 12.512-45.248 0l181.024-181.024c12.512 12.512 12.512 32.768 0 45.248l-135.776 135.776zM381.056 527.936l-16.96-16.992 233.92-233.92 16.992 16.96-233.952 233.952zM639.2 695.936l135.808-135.808c12.512-12.448 32.736-12.448 45.248 0l-181.056 181.056c-12.512-12.512-12.512-32.736 0-45.248zM1023.872 809.056l-135.744 135.744c-12.512 12.512-32.736 12.512-45.248 0l-155.2-155.168 19.424 19.392 180.992-180.992-22.624-22.624-181.056 180.992-22.624-22.624 181.056-181.056 180.992 181.056c12.544 12.544 12.544 32.8 0.032 45.28zM1001.248 741.184l-180.992 180.992 22.624 22.624 180.992-180.992-22.624-22.624zM910.752 650.688l-180.992 180.992 22.624 22.624 180.992-180.992-22.624-22.624z" + ], + "width": 1064, + "attrs": [], + "isMulticolor": false, + "tags": [ + "satellite", + "broadcast" + ], + "grid": 32 + }, + "attrs": [], + "properties": { + "id": 145, + "order": 287, + "prevSize": 32, + "code": 58975, + "name": "satellite" + }, + "setIdx": 3, + "setId": 6, + "iconIdx": 9 + }, + { + "icon": { + "paths": [ + "M128 992v-512h96v-160c0-141.376 114.592-256 256-256h32c141.376 0 256 114.624 256 256v160h96v512h-736zM471.808 729.184l-23.808 166.816h96l-23.84-166.816c23.328-9.536 39.84-32.416 39.84-59.2 0-35.328-28.672-64-64-64-35.36 0-64 28.672-64 64 0 26.784 16.48 49.664 39.808 59.2zM672 336c0-97.216-78.816-176-176-176-97.216 0-176 78.784-176 176v144h352v-144z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "locked", + "secure" + ], + "grid": 32 + }, + "attrs": [], + "properties": { + "id": 151, + "order": 373, + "prevSize": 32, + "code": 58976, + "name": "lock" + }, + "setIdx": 3, + "setId": 6, + "iconIdx": 10 + }, + { + "icon": { + "paths": [ + "M928 480v-144c0-97.216-78.816-176-176-176-97.216 0-176 78.784-176 176v146.272h160v509.728h-736v-512h480v-160c0-141.376 114.592-256 256-256h32c141.376 0 256 114.624 256 256v160h-96zM368 606.016c-35.36 0-64 28.672-64 64 0 26.784 16.48 49.664 39.808 59.2l-23.808 166.784h96l-23.84-166.816c23.328-9.536 39.84-32.416 39.84-59.2 0-35.328-28.672-63.968-64-63.968z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "unlocked" + ], + "grid": 32 + }, + "attrs": [], + "properties": { + "id": 152, + "order": 374, + "prevSize": 32, + "code": 58977, + "name": "unlock" + }, + "setIdx": 3, + "setId": 6, + "iconIdx": 11 + }, + { + "icon": { + "paths": [ + "M896 448c-17.696 0-32 0-32 0v-32c0-35.328-28.672-64-64-64h-640c-35.328 0-64 28.672-64 64v224c0 35.328 28.672 64 64 64h640c35.328 0 64-28.672 64-64v-32c0 0 14.304 0 32 0 17.664 0 32-14.336 32-32v-96c0-17.696-14.336-32-32-32zM832 640c0 17.664-14.336 32-32 32h-640c-17.696 0-32-14.336-32-32v-224c0-17.696 14.304-32 32-32h640c17.664 0 32 14.304 32 32v224zM160 640h192v-224h-192v224zM384 640h192v-224h-192v224zM608 640h192v-224h-192v224z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "battery", + "full" + ], + "grid": 32 + }, + "attrs": [], + "properties": { + "id": 174, + "order": 412, + "prevSize": 32, + "code": 58925, + "name": "battery-full" + }, + "setIdx": 3, + "setId": 6, + "iconIdx": 12 + }, + { + "icon": { + "paths": [ + "M896 448c-17.696 0-32 0-32 0v-32c0-35.328-28.672-64-64-64h-640c-35.36 0-64 28.672-64 64v224c0 35.328 28.64 64 64 64h640c35.328 0 64-28.672 64-64v-32c0 0 14.304 0 32 0 17.664 0 32-14.336 32-32v-96c0-17.696-14.336-32-32-32zM832 640c0 17.664-14.336 32-32 32h-640c-17.696 0-32-14.336-32-32v-224c0-17.696 14.304-32 32-32h640c17.664 0 32 14.304 32 32v224zM160 640h192v-224h-192v224zM384 640h192v-224h-192v224z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "battery" + ], + "grid": 32 + }, + "attrs": [], + "properties": { + "id": 175, + "order": 413, + "prevSize": 32, + "code": 58926, + "name": "battery-two" + }, + "setIdx": 3, + "setId": 6, + "iconIdx": 13 + }, + { + "icon": { + "paths": [ + "M896 448c-17.696 0-32 0-32 0v-32c0-35.328-28.672-64-64-64h-640c-35.36 0-64 28.672-64 64v224c0 35.328 28.64 64 64 64h640c35.328 0 64-28.672 64-64v-32c0 0 14.304 0 32 0 17.664 0 32-14.336 32-32v-96c0-17.696-14.336-32-32-32zM832 640c0 17.664-14.336 32-32 32h-640c-17.696 0-32-14.336-32-32v-224c0-17.696 14.304-32 32-32h640c17.664 0 32 14.304 32 32v224zM160 640h192v-224h-192v224z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "battery", + "low" + ], + "grid": 32 + }, + "attrs": [], + "properties": { + "id": 176, + "order": 414, + "prevSize": 32, + "code": 58927, + "name": "battery-one" + }, + "setIdx": 3, + "setId": 6, + "iconIdx": 14 + }, + { + "icon": { + "paths": [ + "M896 608c-17.696 0-32 0-32 0v32c0 35.328-28.64 64-64 64h-640c-35.36 0-64-28.672-64-64v-224c0-35.328 28.64-64 64-64h640c35.36 0 64 28.672 64 64v32c0 0 14.304 0 32 0s32 14.304 32 32v96c0 17.664-14.304 32-32 32zM832 416c0-17.696-14.304-32-32-32h-640c-17.696 0-32 14.304-32 32v224c0 17.664 14.304 32 32 32h640c17.696 0 32-14.336 32-32v-224z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "battery", + "empty" + ], + "grid": 32 + }, + "attrs": [], + "properties": { + "id": 177, + "order": 415, + "prevSize": 32, + "code": 58928, + "name": "battery-empty" + }, + "setIdx": 3, + "setId": 6, + "iconIdx": 15 + }, + { + "icon": { + "paths": [ + "M608.352 927.648h-224.672c-35.168 0-63.616-28.48-63.616-63.616l0-608.448c0-35.136 28.48-63.616 63.616-63.616h33.824c0 0 0 1.664 0-15.904s12.256-47.712 29.824-47.712h95.424c17.568 0 31.808 30.144 31.808 47.712s0 15.904 0 15.904h33.824c35.168 0 63.616 28.512 63.616 63.616v608.448c-0.032 35.168-28.512 63.616-63.648 63.616zM542.72 289.408h-31.808l-0-31.808h-29.824v31.808h-31.808v31.808h31.808v31.808h29.824v-31.808h31.808v-31.808zM640.16 414.656h-288.32v449.376c0 17.6 14.24 31.808 31.808 31.808h224.672c17.568 0 31.808-14.208 31.808-31.808l0-449.376zM447.296 798.4h97.44v33.824h-97.44v-33.824z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "battery" + ], + "grid": 32 + }, + "attrs": [], + "properties": { + "id": 178, + "order": 416, + "prevSize": 32, + "code": 58929, + "name": "battery-charge" + }, + "setIdx": 3, + "setId": 6, + "iconIdx": 16 + }, + { + "icon": { + "paths": [ + "M889.056 253.952c30.688 74.016 16.064 162.368-44.128 222.56-66.272 66.272-166.432 76.64-244.288 32.704l-56.288 61.472 40.16 40.32 24-24c12.256-12.288 32.16-12.288 44.416 0l194.624 196.608c12.288 12.256 12.288 32.16 0 44.416l-88.832 88.832c-12.256 12.288-32.16 12.288-44.416 0l-194.624-196.608c-12.288-12.256-12.288-32.16 0-44.416l21.92-21.92-38.272-38.368-269.152 294.048c-24.544 24.544-64.32 24.544-88.832 0l-22.208-22.208c-24.544-24.544-24.544-64.32 0-88.832l306.624-256.8-203.648-204.192-64.32-0.032-74.432-119.68 59.904-60 122.4 74.912 0.8 62.976 206.016 206.816 59.936-50.176c-58.592-79.872-52.48-192.384 19.712-264.576 59.904-59.904 147.776-74.784 221.6-44.672l-131.968 130.144 111.072 111.072 132.224-130.4zM196.8 829.888c-12.256-12.256-32.128-12.256-44.416 0-12.288 12.288-12.288 32.16 0 44.448 12.288 12.256 32.16 12.256 44.416 0 12.288-12.32 12.288-32.192 0-44.448z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "tools", + "options", + "repair" + ], + "grid": 32 + }, + "attrs": [], + "properties": { + "id": 214, + "order": 417, + "prevSize": 32, + "code": 58930, + "name": "tools" + }, + "setIdx": 3, + "setId": 6, + "iconIdx": 17 + }, + { + "icon": { + "paths": [ + "M607.136 569.664l-249.408-144c-30.592-17.696-69.76-7.2-87.424 23.392-17.664 30.624-7.168 69.76 23.424 87.424l249.376 144c30.624 17.696 69.76 7.2 87.424-23.424 17.728-30.592 7.232-69.728-23.392-87.392zM401.44 413.952l193.984 112 65.984-183.616-133.952-77.312-126.016 148.928zM258.432 885.632l185.568-225.408-83.136-48-102.432 273.408zM741.568 240.8l-166.24-96c-22.976-13.248-52.32-5.408-65.568 17.568-13.28 22.976-5.376 52.32 17.568 65.568l166.272 96c22.976 13.248 52.32 5.408 65.568-17.568 13.248-22.976 5.376-52.32-17.6-65.568z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "pin", + "location", + "map marker", + "marker" + ], + "grid": 32 + }, + "attrs": [], + "properties": { + "id": 246, + "order": 370, + "prevSize": 32, + "code": 58978, + "name": "pin" + }, + "setIdx": 3, + "setId": 6, + "iconIdx": 18 + }, + { + "icon": { + "paths": [ + "M993.984 512c0 68-39.264 125.664-97.6 148.544v74.56c0 17.6-14.272 31.872-31.84 31.872h-737.056c-17.632 0-31.872-14.272-31.872-31.872v-74.56c-58.368-22.88-97.6-80.544-97.6-148.544s39.264-125.664 97.632-148.544v-74.56c0-17.632 14.24-31.872 31.872-31.872h737.056c17.568 0 31.84 14.24 31.84 31.872v74.56c58.336 22.88 97.568 80.544 97.568 148.544zM382.464 512h-127.488v31.872h127.488v-31.872zM533.824 403.328c-8.992-9.888-21.344-14.816-37.024-14.816-15.584 0-27.872 4.928-36.832 14.816-8.992 9.856-13.504 25.024-13.504 45.504 0 20.576 4.512 35.776 13.504 45.664 8.96 9.856 15.392 14.784 31.328 14.784 15.36 0 33.568-4.928 42.56-14.784 8.96-9.888 13.472-25.088 13.472-45.664-0.032-20.48-4.544-35.68-13.504-45.504zM642.24 383.52l-163.52 256.704h32.384l162.72-256.704h-31.584zM693.152 530.784c-8.96-9.856-21.344-14.784-37.024-14.784-15.552 0-27.872 4.928-36.864 14.784-8.96 9.888-13.44 25.024-13.44 45.504 0 20.576 4.48 35.808 13.44 45.664 8.992 9.888 21.44 14.816 37.376 14.816 15.36 0 27.552-4.928 36.544-14.816 8.96-9.856 13.472-25.088 13.472-45.664-0.032-20.48-4.544-35.616-13.504-45.504zM655.84 612.096c-4.608 0-8.192-1.952-10.784-5.792-3.424-5.024-5.152-15.008-5.152-29.952s1.728-24.96 5.152-30.080c2.496-3.744 6.080-5.664 10.784-5.664s8.352 1.92 10.944 5.664c3.328 5.12 4.992 15.168 4.992 30.080s-1.728 24.96-5.152 30.080c-2.496 3.776-6.080 5.664-10.784 5.664zM496.512 484.64c-4.608 0-8.192-1.952-10.784-5.824-3.424-5.024-5.152-15.008-5.152-29.952s1.728-24.96 5.152-30.080c2.496-3.744 6.080-5.632 10.784-5.632s8.32 1.888 10.944 5.632c3.328 5.12 4.992 15.168 4.992 30.080s-1.728 24.96-5.152 30.080c-2.528 3.776-6.112 5.696-10.784 5.696z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "discout", + "price", + "sale", + "tag" + ], + "grid": 32 + }, + "attrs": [], + "properties": { + "id": 247, + "order": 371, + "prevSize": 32, + "code": 58979, + "name": "discout" + }, + "setIdx": 3, + "setId": 6, + "iconIdx": 19 + }, + { + "icon": { + "paths": [ + "M896 288h-62.656v-94.016l-129.344-1.984 0.672 96h-388.672l2.656-96-126.656 1.984v96l-64-1.984c-35.328 0-64 28.672-64 64v448c0 35.328 28.672 64 64 64h768c35.328 0 64-28.672 64-64v-448c0-35.328-28.672-64-64-64zM736 224h64v128h-64v-128zM320 441.984c38.656 0 70.016 41.184 70.016 92s-31.36 92-70.016 92-70.016-41.184-70.016-92 31.36-92 70.016-92zM224 224h64v128h-64v-128zM181.344 734.336c0 0 7.584-60.864 24.832-72.352 17.216-11.488 66.88-19.136 66.88-19.136s32.192 34.4 45.888 34.4c13.664 0 45.856-34.4 45.856-34.4s49.664 7.616 66.912 19.136c20.256 13.504 25.312 72.352 25.312 72.352h-275.68zM832 704h-288v-32h288v32zM832 640h-288v-32h288v32zM832 576h-288v-32h288v32zM832 512h-288v-32h288v32z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "profile", + "card", + "id", + "vcard" + ], + "grid": 32 + }, + "attrs": [], + "properties": { + "id": 250, + "order": 372, + "prevSize": 32, + "code": 58980, + "name": "profile" + }, + "setIdx": 3, + "setId": 6, + "iconIdx": 20 + }, + { + "icon": { + "paths": [ + "M0 800v-576h1024v576h-1024zM64 286.016v449.984h896v-449.984h-896zM672 512c0-106.016-71.616-192-160-192h416v384h-416c88.384 0 160-85.984 160-192zM800 576c26.496 0 48-28.672 48-64s-21.504-64-48-64-48 28.672-48 64 21.504 64 48 64zM579.776 431.296c-0.48 1.76-1.152 3.008-1.984 3.808-0.864 0.8-2.016 1.184-3.488 1.184s-3.776-0.896-7.008-2.752c-3.2-1.888-7.136-3.872-11.776-6.048-4.672-2.176-10.048-4.16-16.192-5.984-6.144-1.792-12.864-2.656-20.192-2.656-5.76 0-10.752 0.672-15.008 2.080-4.256 1.376-7.84 3.328-10.688 5.76-2.88 2.464-4.992 5.44-6.4 8.864-1.376 3.424-2.080 7.104-2.080 10.944 0 5.76 1.568 10.72 4.704 14.912 3.136 4.192 7.328 7.936 12.608 11.2 5.28 3.296 11.232 6.336 17.92 9.184 6.624 2.88 13.44 5.92 20.384 9.088 6.944 3.232 13.728 6.848 20.384 10.912 6.688 4.064 12.64 8.928 17.824 14.592s9.376 12.32 12.608 19.968c3.2 7.68 4.768 16.672 4.768 27.104 0 13.6-2.496 25.504-7.552 35.776-5.088 10.24-11.936 18.816-20.64 25.664-8.672 6.88-18.784 12.032-30.368 15.488-1.472 0.448-3.072 0.64-4.576 0.992v34.944h-31.456v-30.816c-0.416 0-0.768 0.064-1.152 0.064-8.928 0-17.248-0.704-24.896-2.144-7.68-1.472-14.432-3.232-20.288-5.248-5.888-2.048-10.752-4.192-14.688-6.432-3.936-2.24-6.752-4.224-8.48-5.952-1.728-1.728-2.976-4.224-3.712-7.488-0.736-3.296-1.12-7.968-1.12-14.112 0-4.128 0.128-7.584 0.416-10.4s0.704-5.056 1.312-6.816 1.376-2.976 2.4-3.712c0.992-0.704 2.144-1.088 3.488-1.088 1.856 0 4.48 1.088 7.904 3.296 3.392 2.208 7.776 4.64 13.088 7.296 5.344 2.688 11.68 5.088 19.104 7.328 7.392 2.176 15.968 3.296 25.696 3.296 6.4 0 12.128-0.768 17.184-2.304s9.376-3.68 12.896-6.496 6.208-6.272 8.096-10.4c1.888-4.16 2.816-8.736 2.816-13.856 0-5.856-1.632-10.88-4.8-15.104-3.2-4.192-7.36-7.904-12.512-11.2-5.12-3.264-10.944-6.304-17.472-9.184-6.528-2.88-13.248-5.92-20.192-9.088-6.912-3.2-13.664-6.816-20.192-10.912-6.528-4.064-12.352-8.896-17.472-14.56-5.12-5.664-9.312-12.384-12.48-20.096-3.2-7.712-4.8-16.992-4.8-27.776 0-12.416 2.304-23.296 6.88-32.672 4.608-9.376 10.784-17.184 18.592-23.36s16.992-10.816 27.584-13.888c5.44-1.6 11.072-2.72 16.832-3.488v-33.088h31.456v33.088c1.248 0.16 2.496 0.096 3.744 0.288 6.112 0.928 11.872 2.176 17.184 3.776 5.344 1.568 10.048 3.328 14.208 5.344 4.128 1.984 6.848 3.616 8.192 4.96 1.344 1.312 2.208 2.432 2.72 3.36 0.448 0.928 0.832 2.176 1.184 3.712 0.32 1.536 0.576 3.456 0.672 5.824 0.128 2.304 0.192 5.216 0.192 8.672 0 3.872-0.096 7.168-0.288 9.856-0.288 2.528-0.608 4.768-1.088 6.496zM352 512c0 106.016 71.616 192 160 192h-416v-384h416c-88.384 0-160 85.984-160 192zM224 448c-26.528 0-48 28.672-48 64s21.472 64 48 64c26.496 0 48-28.672 48-64s-21.504-64-48-64z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "dollar", + "bill", + "money" + ], + "grid": 32 + }, + "attrs": [], + "properties": { + "id": 264, + "order": 368, + "prevSize": 32, + "code": 58981, + "name": "dollar" + }, + "setIdx": 3, + "setId": 6, + "iconIdx": 21 + }, + { + "icon": { + "paths": [ + "M1152.064 736.32l1.824-546.848-993.6 0.608-0.032-62.72h1055.744v608.992l-63.936-0.032zM1119.84 832.544l-63.904-0.064 1.824-546.848-993.6 0.64-0.032-62.72h1055.744l0 608.992zM1025.696 896.64h-1025.696v-576.96h1025.696v576.96zM961.568 381.792h-897.472v450.752h897.44l-0-450.752zM865.44 784.48c0 5.664 1.408 10.944 3.232 16h-355.84c88.512 0 160.288-86.080 160.288-192.32s-71.776-192.32-160.288-192.32h355.808c-1.824 5.056-3.232 10.336-3.232 16.032 0 26.56 21.504 48.064 48.064 48.064 5.696 0 10.976-1.408 16.032-3.232v262.88c-5.056-1.792-10.336-3.232-16.032-3.232-26.528 0.032-48.032 21.568-48.032 48.128zM801.312 541.408c-26.56 0-48.064 28.672-48.064 64.096s21.504 64.096 48.064 64.096 48.064-28.672 48.064-64.096-21.504-64.096-48.064-64.096zM579.936 492.608c0.48 0.928 0.864 2.176 1.184 3.712 0.352 1.536 0.576 3.488 0.672 5.824 0.16 2.336 0.224 5.248 0.224 8.736 0 3.872-0.096 7.168-0.288 9.824-0.224 2.688-0.576 4.896-0.992 6.624-0.512 1.76-1.152 3.040-1.984 3.808-0.864 0.8-2.048 1.216-3.52 1.216s-3.776-0.928-7.008-2.784c-3.232-1.888-7.168-3.872-11.808-6.048s-10.080-4.192-16.224-5.984-12.864-2.688-20.224-2.688c-5.76 0-10.752 0.672-15.008 2.080-4.288 1.408-7.872 3.328-10.72 5.792-2.88 2.464-5.024 5.44-6.4 8.864-1.408 3.456-2.112 7.136-2.112 10.976 0 5.76 1.568 10.72 4.704 14.944 3.136 4.192 7.328 7.936 12.64 11.2 5.28 3.296 11.264 6.336 17.92 9.216s13.472 5.92 20.416 9.088c6.944 3.232 13.76 6.848 20.448 10.944 6.688 4.064 12.64 8.928 17.824 14.592 5.216 5.696 9.44 12.352 12.64 20.032s4.8 16.704 4.8 27.136c0 13.6-2.56 25.568-7.616 35.808-5.056 10.272-11.936 18.88-20.64 25.76s-18.816 12.032-30.432 15.488c-1.472 0.448-3.072 0.64-4.576 0.992v35.008h-31.52v-30.88c-0.416 0-0.768 0.096-1.184 0.096-8.928 0-17.248-0.736-24.928-2.176-7.68-1.472-14.464-3.232-20.32-5.248-5.888-2.048-10.784-4.224-14.72-6.464-3.968-2.24-6.784-4.224-8.512-5.952s-2.976-4.224-3.712-7.488-1.12-8-1.12-14.144c0-4.128 0.128-7.616 0.416-10.4 0.256-2.816 0.704-5.088 1.312-6.848 0.608-1.728 1.408-2.976 2.4-3.712 0.992-0.704 2.176-1.088 3.488-1.088 1.888 0 4.512 1.088 7.936 3.328 3.392 2.176 7.776 4.64 13.12 7.296s11.712 5.088 19.136 7.296c7.392 2.208 16 3.328 25.728 3.328 6.4 0 12.16-0.768 17.216-2.304 5.088-1.536 9.376-3.712 12.928-6.496 3.52-2.816 6.208-6.304 8.096-10.432 1.888-4.16 2.816-8.768 2.816-13.856 0-5.888-1.632-10.944-4.8-15.136-3.2-4.224-7.36-7.936-12.512-11.232-5.152-3.264-10.976-6.336-17.504-9.184-6.56-2.88-13.28-5.92-20.224-9.12-6.944-3.2-13.696-6.848-20.224-10.912-6.528-4.064-12.384-8.928-17.504-14.624-5.12-5.664-9.312-12.384-12.512-20.096-3.2-7.744-4.8-17.024-4.8-27.84 0-12.416 2.304-23.328 6.912-32.704 4.608-9.408 10.816-17.216 18.624-23.424 7.808-6.176 17.024-10.848 27.616-13.92 5.44-1.568 11.072-2.72 16.864-3.488v-33.12h31.52v33.12c1.248 0.16 2.496 0.096 3.744 0.288 6.144 0.928 11.904 2.176 17.248 3.776 5.312 1.6 10.048 3.36 14.176 5.376 4.16 1.984 6.88 3.616 8.256 4.96 1.248 1.184 2.144 2.304 2.624 3.264zM352.576 608.16c0 106.208 71.744 192.32 160.256 192.32h-355.808c1.792-5.056 3.232-10.336 3.232-16 0-26.56-21.536-48.096-48.064-48.096-5.696 0-10.976 1.44-16.032 3.232v-262.88c5.056 1.824 10.336 3.232 16.032 3.232 26.56 0 48.064-21.504 48.064-48.064 0-5.696-1.44-10.976-3.232-16.032h355.808c-88.512-0.032-160.256 86.080-160.256 192.288zM224.352 541.408c-26.56 0-48.064 28.672-48.064 64.096s21.536 64.096 48.064 64.096c26.56 0 48.064-28.672 48.064-64.096s-21.504-64.096-48.064-64.096z" + ], + "width": 1216, + "attrs": [], + "isMulticolor": false, + "tags": [ + "dollar", + "bill", + "money", + "stack" + ], + "grid": 32 + }, + "attrs": [], + "properties": { + "id": 265, + "order": 369, + "prevSize": 32, + "code": 58982, + "name": "dollars" + }, + "setIdx": 3, + "setId": 6, + "iconIdx": 22 + }, + { + "icon": { + "paths": [ + "M912 736h-391.872c11.488-19.808 20.288-41.28 26.112-64h365.76c17.696 0 32 14.304 32 32 0 17.664-14.304 32-32 32zM912 640h-359.552c1.312-10.496 2.208-21.152 2.208-32 0-10.88-0.896-21.504-2.208-32h359.552c17.696 0 32 14.304 32 32 0 17.664-14.304 32-32 32zM912 544h-365.76c-5.856-22.72-14.624-44.192-26.112-64h391.872c17.696 0 32 14.304 32 32 0 17.664-14.304 32-32 32zM912 448h-413.696c-20.8-25.952-46.496-47.776-75.808-64h489.504c17.696 0 32 14.304 32 32 0 17.664-14.304 32-32 32zM912 352h-512c-17.696 0-32-14.336-32-32 0-17.696 14.304-32 32-32h512c17.696 0 32 14.304 32 32 0 17.664-14.304 32-32 32zM912 256h-512c-17.696 0-32-14.336-32-32 0-17.696 14.304-32 32-32h512c17.696 0 32 14.304 32 32 0 17.664-14.304 32-32 32zM528 608c0 123.712-100.32 224-224 224-123.712 0-224-100.288-224-224s100.288-224 224-224c123.68 0 224 100.288 224 224zM383.296 632.352c-3.232-7.648-7.392-14.304-12.608-19.968s-11.136-10.528-17.792-14.592c-6.656-4.064-13.44-7.68-20.384-10.912-6.944-3.2-13.728-6.208-20.384-9.088-6.656-2.848-12.64-5.92-17.888-9.184-5.28-3.264-9.472-7.008-12.608-11.2-3.136-4.192-4.704-9.152-4.704-14.912 0-3.84 0.704-7.488 2.080-10.944 1.408-3.424 3.52-6.4 6.4-8.864 2.848-2.432 6.432-4.384 10.688-5.76 4.256-1.408 9.28-2.080 15.008-2.080 7.328 0 14.048 0.864 20.192 2.656 6.112 1.824 11.52 3.776 16.192 5.984 4.672 2.176 8.608 4.192 11.808 6.048 3.2 1.856 5.536 2.752 7.008 2.752s2.624-0.384 3.488-1.184c0.832-0.8 1.536-2.048 1.984-3.808 0.48-1.728 0.768-3.936 0.992-6.592 0.192-2.688 0.288-5.984 0.288-9.856 0-3.456-0.064-6.368-0.192-8.672-0.128-2.336-0.384-4.288-0.672-5.824-0.352-1.536-0.736-2.784-1.184-3.712-0.512-0.928-1.376-2.048-2.72-3.36-1.344-1.344-4.064-3.008-8.192-4.96-4.128-1.984-8.864-3.776-14.176-5.344-5.344-1.6-11.072-2.848-17.184-3.776-1.248-0.192-2.528-0.128-3.776-0.288v-33.088h-31.488v33.088 0c-5.792 0.768-11.392 1.92-16.832 3.488-10.592 3.072-19.776 7.68-27.584 13.888s-14.016 14.016-18.592 23.36c-4.608 9.408-6.88 20.288-6.88 32.672 0 10.784 1.6 20.064 4.768 27.776 3.2 7.712 7.36 14.432 12.512 20.096 5.152 5.664 10.944 10.496 17.472 14.56 6.528 4.096 13.28 7.712 20.192 10.912 6.944 3.2 13.664 6.208 20.192 9.088s12.352 5.952 17.472 9.184c5.152 3.296 9.312 7.008 12.512 11.2 3.2 4.224 4.8 9.248 4.8 15.104 0 5.088-0.928 9.696-2.784 13.856-1.888 4.128-4.576 7.584-8.096 10.4-3.52 2.816-7.808 4.96-12.864 6.496-5.088 1.536-10.784 2.304-17.216 2.304-9.728 0-18.304-1.088-25.696-3.296-7.392-2.208-13.76-4.64-19.104-7.328-5.344-2.656-9.696-5.056-13.088-7.296-3.392-2.176-6.016-3.296-7.904-3.296-1.344 0-2.528 0.384-3.488 1.088-1.024 0.736-1.824 1.984-2.4 3.712-0.608 1.76-1.024 4-1.312 6.816s-0.416 6.272-0.416 10.4c0 6.144 0.384 10.848 1.088 14.112 0.736 3.296 1.984 5.792 3.712 7.488 1.728 1.728 4.544 3.68 8.48 5.952s8.832 4.384 14.688 6.432c5.856 2.016 12.64 3.776 20.288 5.248 7.648 1.44 15.968 2.144 24.896 2.144 0.384 0 0.736-0.064 1.152-0.064v30.816h31.456v-34.944c1.504-0.384 3.104-0.576 4.576-0.992 11.584-3.456 21.728-8.64 30.4-15.488 8.672-6.848 15.52-15.392 20.608-25.664 5.056-10.272 7.552-22.176 7.552-35.776 0.032-10.336-1.568-19.328-4.736-27.008zM498.304 768h413.696c17.696 0 32 14.304 32 32 0 17.664-14.304 32-32 32h-489.504c29.312-16.224 55.008-38.048 75.808-64z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "coins", + "money" + ], + "grid": 32 + }, + "attrs": [], + "properties": { + "id": 266, + "order": 461, + "prevSize": 32, + "code": 59064, + "name": "coins" + }, + "setIdx": 3, + "setId": 6, + "iconIdx": 23 + }, + { + "icon": { + "paths": [ + "M540.864 192.128h292l-0.64 295.328-100.128-100.096-94.368 94.368c21.184 37.248 33.376 80.224 33.376 126.112 0 141.376-114.56 256-256 256-141.376 0-256-114.624-256-256 0-141.376 114.624-256 256-256 48.8 0 94.272 13.92 133.12 37.632l93.376-94.592-100.736-102.752zM287.136 607.872c0 70.688 57.312 128 128 128s128-57.312 128-128-57.312-128-128-128-128 57.312-128 128z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "male", + "gender", + "man", + "sex" + ], + "grid": 32 + }, + "attrs": [], + "properties": { + "id": 278, + "order": 275, + "prevSize": 32, + "code": 58983, + "name": "male" + }, + "setIdx": 3, + "setId": 6, + "iconIdx": 24 + }, + { + "icon": { + "paths": [ + "M577.248 599.072v105.376h127.872v127.872h-127.872v127.872h-129.824l-0-127.872h-127.84v-127.872h127.84v-105.76c-109.92-28.64-191.136-128.288-191.136-247.136 0-141.216 114.496-255.712 255.712-255.712 141.248 0 255.68 114.496 255.68 255.712-0 119.328-79.872 219.264-190.432 247.52zM512 223.712c-70.624 0-127.872 57.216-127.872 127.84 0 70.592 57.248 127.84 127.872 127.84 70.624 0 127.872-57.248 127.872-127.84 0-70.624-57.248-127.84-127.872-127.84z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "female", + "gender", + "sex", + "woman" + ], + "grid": 32 + }, + "attrs": [], + "properties": { + "id": 279, + "order": 274, + "prevSize": 32, + "code": 58984, + "name": "female" + }, + "setIdx": 3, + "setId": 6, + "iconIdx": 25 + }, + { + "icon": { + "paths": [ + "M0 896v-736h992v736h-992zM192 576h-32v-384h-128v672h160v-288zM384 576h-32v-384h-96v384h-32v288h160v-288zM576 576h-32v-384h-96v384h-32v288h160v-288zM640 192v384h-32v288h160v-288h-32v-384h-96zM960 192h-128v384h-32v288h160v-672z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "piano", + "music" + ], + "grid": 32 + }, + "attrs": [], + "properties": { + "id": 284, + "order": 367, + "prevSize": 32, + "code": 58985, + "name": "piano" + }, + "setIdx": 3, + "setId": 6, + "iconIdx": 26 + }, + { + "icon": { + "paths": [ + "M927.968 611.040l-36.352 247.328-73.568-71.36c-58.272 49.248-166.336 116.256-323.328 116.256-157.92 0-267.136-65.376-325.248-112.224l-67.136 65.12-38.336-245.088 252.576 37.184-69.6 67.552c48.832 36.256 125.44 79.968 201.728 79.968l-0.224-403.488c-55.712-19.392-95.808-70.624-95.808-131.36 0-77.376 64.608-140.096 144.32-140.096 79.68 0 144.32 62.72 144.32 140.096 0 61.664-41.344 113.44-98.368 132.128 0.352 78.72 1.632 404.224-0.128 404.224 72.96 0 148.288-47.488 197.344-85.888l-65.024-63.136 252.832-37.216zM571.392 258.656c0-39.872-33.312-72.224-74.4-72.224s-74.432 32.352-74.432 72.224c0 39.904 33.344 72.256 74.432 72.256s74.4-32.352 74.4-72.256z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "anchor", + "link", + "reference" + ], + "grid": 32 + }, + "attrs": [], + "properties": { + "id": 337, + "order": 273, + "prevSize": 32, + "code": 58986, + "name": "anchor" + }, + "setIdx": 3, + "setId": 6, + "iconIdx": 27 + }, + { + "icon": { + "paths": [ + "M682.667 204.8c42.24 0 76.8-34.347 76.8-76.8s-34.56-76.8-76.8-76.8c-42.453 0-76.8 34.347-76.8 76.8s34.347 76.8 76.8 76.8zM810.667 512c-117.76 0-213.333 95.573-213.333 213.333s95.573 213.333 213.333 213.333 213.333-95.573 213.333-213.333-95.573-213.333-213.333-213.333zM810.667 874.667c-82.56 0-149.333-66.773-149.333-149.333s66.773-149.333 149.333-149.333 149.333 66.773 149.333 149.333-66.773 149.333-149.333 149.333zM631.467 426.667h179.2v-76.8h-136.533l-82.56-139.307c-12.587-21.333-35.84-35.627-62.507-35.627-20.053 0-38.187 8.107-51.2 21.333l-157.867 157.653c-13.227 13.227-21.333 31.36-21.333 51.413 0 26.88 14.293 49.493 36.267 62.72l142.933 86.613v213.333h76.8v-276.48l-96-71.253 98.987-99.413 73.813 105.813zM213.333 512c-117.76 0-213.333 95.573-213.333 213.333s95.573 213.333 213.333 213.333 213.333-95.573 213.333-213.333-95.573-213.333-213.333-213.333zM213.333 874.667c-82.56 0-149.333-66.773-149.333-149.333s66.773-149.333 149.333-149.333 149.333 66.773 149.333 149.333-66.773 149.333-149.333 149.333z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "directions-bike" + ], + "grid": 24 + }, + "attrs": [], + "properties": { + "id": 618, + "order": 477, + "prevSize": 24, + "code": 59071, + "name": "directions-bike" + }, + "setIdx": 4, + "setId": 5, + "iconIdx": 0 + }, + { + "icon": { + "paths": [ + "M640 469.333v-256l-128-128-128 128v85.333h-256v597.333h768v-426.667h-256zM298.667 810.667h-85.333v-85.333h85.333v85.333zM298.667 640h-85.333v-85.333h85.333v85.333zM298.667 469.333h-85.333v-85.333h85.333v85.333zM554.667 810.667h-85.333v-85.333h85.333v85.333zM554.667 640h-85.333v-85.333h85.333v85.333zM554.667 469.333h-85.333v-85.333h85.333v85.333zM554.667 298.667h-85.333v-85.333h85.333v85.333zM810.667 810.667h-85.333v-85.333h85.333v85.333zM810.667 640h-85.333v-85.333h85.333v85.333z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "location-city" + ], + "grid": 24 + }, + "attrs": [], + "properties": { + "id": 730, + "order": 476, + "prevSize": 24, + "code": 59072, + "name": "location-city" + }, + "setIdx": 4, + "setId": 5, + "iconIdx": 1 + }, + { + "icon": { + "paths": [ + "M512 380.587c-83.584 0-159.232 33.877-214.016 88.661l60.416 60.416c39.339-39.381 93.653-63.744 153.6-63.744s114.261 24.363 153.6 63.744l60.416-60.416c-54.784-54.784-130.432-88.661-214.016-88.661zM512 558.037c-35.328 0-64 28.715-64 64.043s28.672 64 64 64 64-28.672 64-64-28.672-64.043-64-64.043z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "wifi-low", + "connection" + ], + "grid": 24 + }, + "attrs": [], + "properties": { + "id": 22, + "order": 464, + "prevSize": 24, + "code": 58892, + "name": "wifi-low" + }, + "setIdx": 4, + "setId": 5, + "iconIdx": 2 + }, + { + "icon": { + "paths": [ + "M297.984 551.168l60.416 60.416c39.339-39.339 93.653-63.744 153.6-63.744s114.261 24.405 153.6 63.744l60.416-60.416c-54.784-54.784-130.432-88.661-214.016-88.661s-159.232 33.877-214.016 88.661zM512 267.819c-137.344 0-261.675 55.68-351.659 145.664l60.501 60.501c74.581-74.624 177.579-120.832 291.157-120.832s216.576 46.208 291.157 120.832l60.501-60.501c-89.984-89.984-214.315-145.664-351.659-145.664zM512 640c-35.328 0-64 28.672-64 64s28.672 64 64 64 64-28.672 64-64-28.672-64-64-64z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "wifi-mid", + "connection" + ], + "grid": 24 + }, + "attrs": [], + "properties": { + "id": 23, + "order": 465, + "prevSize": 24, + "code": 58893, + "name": "wifi-mid" + }, + "setIdx": 4, + "setId": 5, + "iconIdx": 3 + }, + { + "icon": { + "paths": [ + "M297.984 679.168l60.416 60.416c39.339-39.339 93.653-63.744 153.6-63.744s114.261 24.405 153.6 63.744l60.416-60.416c-54.784-54.741-130.432-88.661-214.016-88.661s-159.232 33.92-214.016 88.661zM160.341 541.483l60.501 60.501c74.581-74.624 177.579-120.832 291.157-120.832s216.576 46.208 291.157 120.832l60.501-60.501c-89.984-89.984-214.315-145.664-351.659-145.664s-261.675 55.68-351.659 145.664zM512 201.173c-191.104 0-364.075 77.44-489.344 202.709l60.544 60.544c109.867-109.867 261.547-177.92 428.8-177.92s318.933 68.053 428.8 177.92l60.544-60.544c-125.269-125.269-298.24-202.709-489.344-202.709zM512 768c-35.328 0-64 28.672-64 64s28.672 64 64 64 64-28.672 64-64-28.672-64-64-64z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "wifi-full", + "connection" + ], + "grid": 24 + }, + "attrs": [], + "properties": { + "id": 24, + "order": 466, + "prevSize": 24, + "code": 58932, + "name": "wifi-full" + }, + "setIdx": 4, + "setId": 5, + "iconIdx": 4 + }, + { + "icon": { + "paths": [ + "M981.333 810.667v-597.333c0-46.933-38.4-85.333-85.333-85.333h-768c-46.933 0-85.333 38.4-85.333 85.333v597.333c0 46.933 38.4 85.333 85.333 85.333h768c46.933 0 85.333-38.4 85.333-85.333zM85.333 554.667v-85.333h85.333v85.333h-85.333zM213.333 810.667v-597.333h682.667v597.333h-682.667z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "tablet-landscape", + "landscape", + "mobile" + ], + "grid": 24 + }, + "attrs": [], + "properties": { + "id": 97, + "order": 467, + "prevSize": 24, + "code": 58933, + "name": "tablet-landscape" + }, + "setIdx": 4, + "setId": 5, + "iconIdx": 5 + }, + { + "icon": { + "paths": [ + "M170.667 682.667h128v-128h-128v128zM213.333 597.333h42.667v42.667h-42.667v-42.667zM341.333 682.667h128v-128h-128v128zM384 597.333h42.667v42.667h-42.667v-42.667zM341.333 853.333h128v-128h-128v128zM384 768h42.667v42.667h-42.667v-42.667zM170.667 853.333h128v-128h-128v128zM213.333 768h42.667v42.667h-42.667v-42.667zM512 682.667h128v-128h-128v128zM554.667 597.333h42.667v42.667h-42.667v-42.667zM426.667 426.667h42.667v-42.667h-42.667v42.667zM341.333 426.667h42.667v-42.667h-42.667v42.667zM170.667 512h682.667v-384h-682.667v384zM213.333 170.667h597.333v298.667h-597.333v-298.667zM853.333 0h-682.667c-70.699 0-128 57.301-128 128v768c0 70.699 57.301 128 128 128h682.667c70.699 0 128-57.301 128-128v-768c0-70.699-57.301-128-128-128zM896 896c0 23.595-19.072 42.667-42.667 42.667h-682.667c-23.595 0-42.667-19.072-42.667-42.667v-768c0-23.595 19.072-42.667 42.667-42.667h682.667c23.595 0 42.667 19.072 42.667 42.667v768zM512 853.333h128v-128h-128v128zM554.667 768h42.667v42.667h-42.667v-42.667zM682.667 853.333h170.667v-298.667h-170.667v298.667zM725.333 597.333h85.333v213.333h-85.333v-213.333zM256 426.667h42.667v-42.667h-42.667v42.667z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "calculator", + "arithmetic", + "math", + "checkout" + ], + "grid": 24 + }, + "attrs": [], + "properties": { + "id": 102, + "order": 468, + "prevSize": 24, + "code": 58934, + "name": "calculator2" + }, + "setIdx": 4, + "setId": 5, + "iconIdx": 6 + }, + { + "icon": { + "paths": [ + "M928.725 384c-23.467 0-32.725 38.4-32.725 85.333v85.333c0 46.933 9.259 85.333 32.725 85.333s32.725-38.4 32.725-85.333h62.549v-85.333h-62.592c0-46.933-9.259-85.333-32.683-85.333zM768 256c-42.667 0-42.667 38.4-42.667 85.333v128h-426.667v-128c0-46.933 0-85.333-42.667-85.333-46.933 0-85.333 38.4-85.333 85.333v341.333c0 46.933 38.4 85.333 85.333 85.333 42.667 0 42.667-38.4 42.667-85.333v-128h426.667v128c0 46.933 0 85.333 42.667 85.333 46.933 0 85.333-38.4 85.333-85.333v-341.333c0-46.933-38.4-85.333-85.333-85.333zM95.275 384c23.467 0 32.725 38.4 32.725 85.333v85.333c0 46.933-9.259 85.333-32.725 85.333s-32.725-38.4-32.725-85.333h-62.549v-85.333h62.592c0-46.933 9.259-85.333 32.683-85.333z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "barbell", + "dumbbell", + "dumbell", + "fitness", + "gym", + "physical", + "weight", + "weightlifting", + "weights" + ], + "grid": 24 + }, + "attrs": [], + "properties": { + "id": 118, + "order": 470, + "prevSize": 24, + "code": 58935, + "name": "barbell" + }, + "setIdx": 4, + "setId": 5, + "iconIdx": 7 + }, + { + "icon": { + "paths": [ + "M981.248 938.752h-85.248v-42.752h-42.752v42.752h-85.12v-42.752h-42.752v42.752h-85.248v-42.752h-42.752v42.752h-85.248v-42.752h-42.752v42.752h-85.248v-42.752h-42.752v42.752h-187.776l224.853-135.125 111.275-325.205 165.291 290.517 320.299-533.675-73.131-43.947-245.205 408.576-186.709-328.149-162.517 474.795-222.507 133.717v-880.256h-85.248v1024h1024v-85.248-42.752h-42.752zM981.248 0h42.752v42.752h-42.752zM853.248 0h42.752v42.752h-42.752zM725.376 0h42.752v42.752h-42.752zM597.376 0h42.752v42.752h-42.752zM469.376 0h42.752v42.752h-42.752zM341.376 0h42.752v42.752h-42.752zM213.376 0h42.752v42.752h-42.752zM85.376 0h42.752v42.752h-42.752zM981.248 128h42.752v42.752h-42.752zM853.248 128h42.752v42.752h-42.752zM725.376 128h42.752v42.752h-42.752zM597.376 128h42.752v42.752h-42.752zM469.376 128h42.752v42.752h-42.752zM341.376 128h42.752v42.752h-42.752zM213.376 128h42.752v42.752h-42.752zM85.376 128h42.752v42.752h-42.752zM981.248 255.872h42.752v42.752h-42.752zM725.376 255.872h42.752v42.752h-42.752zM597.376 255.872h42.752v42.752h-42.752zM341.376 255.872h42.752v42.752h-42.752zM213.376 255.872h42.752v42.752h-42.752zM85.376 255.872h42.752v42.752h-42.752zM981.248 383.872h42.752v42.752h-42.752zM597.376 383.872h42.752v42.752h-42.752zM341.376 383.872h42.752v42.752h-42.752zM213.376 383.872h42.752v42.752h-42.752zM85.376 383.872h42.752v42.752h-42.752zM981.248 511.957h42.752v42.752h-42.752zM853.248 511.957h42.752v42.752h-42.752zM213.376 511.957h42.752v42.752h-42.752zM85.376 511.957h42.752v42.752h-42.752zM981.248 639.957h42.752v42.752h-42.752zM853.248 639.957h42.752v42.752h-42.752zM469.376 639.957h42.752v42.752h-42.752zM213.376 639.957h42.752v42.752h-42.752zM85.376 639.957h42.752v42.752h-42.752zM981.248 767.829h42.752v42.752h-42.752zM853.248 767.829h42.752v42.752h-42.752zM725.376 767.829h42.752v42.752h-42.752zM469.376 767.829h42.752v42.752h-42.752zM85.376 767.829h42.752v42.752h-42.752z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "graph", + "stats", + "chart" + ], + "grid": 24 + }, + "attrs": [], + "properties": { + "id": 131, + "order": 469, + "prevSize": 24, + "code": 58966, + "name": "chart-line" + }, + "setIdx": 4, + "setId": 5, + "iconIdx": 8 + }, + { + "icon": { + "paths": [ + "M320.64 916.693c-139.307-66.133-239.36-201.6-254.507-362.027h-64c21.76 262.827 241.493 469.333 509.867 469.333 9.6 0 18.773-0.853 28.16-1.493l-162.56-162.773-56.96 56.96zM358.613 638.293c-8.107 0-15.573-1.067-22.4-3.627-6.613-2.347-12.373-5.76-17.067-10.027s-8.32-9.6-10.88-15.573c-2.56-6.187-3.84-12.8-3.84-20.053h-55.467c0 15.36 2.987 28.8 8.96 40.533s13.867 21.547 23.893 29.227c10.027 7.893 21.547 13.653 34.773 17.707 13.227 4.267 26.88 6.187 41.387 6.187 15.787 0 30.507-2.133 44.16-6.4s25.387-10.667 35.413-18.987 17.707-18.56 23.467-30.72c5.547-12.16 8.533-26.027 8.533-41.6 0-8.32-1.067-16.213-2.987-23.893-2.133-7.68-5.333-14.933-9.6-21.76-4.48-6.827-10.24-12.8-17.28-18.347-7.040-5.333-15.787-9.813-25.813-13.44 8.533-3.84 16-8.533 22.4-14.080s11.733-11.52 16-17.707c4.267-6.4 7.467-12.8 9.6-19.627s3.2-13.653 3.2-20.267c0-15.573-2.56-29.227-7.68-40.96s-12.373-21.547-21.76-29.44c-9.387-7.893-20.48-13.867-33.707-17.92-13.653-4.267-28.16-6.187-43.947-6.187-15.36 0-29.653 2.347-42.667 6.827s-24.107 10.88-33.493 18.987c-9.387 8.107-16.64 17.707-21.973 28.8s-7.893 23.253-7.893 36.267h55.467c0-7.253 1.28-13.653 3.84-19.2 2.56-5.76 6.187-10.667 10.667-14.507 4.48-4.053 10.027-7.253 16.213-9.387s13.013-3.413 20.267-3.413c17.067 0 29.653 4.48 37.973 13.227s12.373 21.12 12.373 36.907c0 7.68-1.067 14.507-3.413 20.693s-5.76 11.52-10.453 16c-4.693 4.48-10.667 7.893-17.493 10.453-7.040 2.56-15.36 3.84-24.747 3.84h-32.853v43.733h32.853c9.387 0 17.92 1.067 25.387 3.2s13.867 5.333 19.2 10.027c5.333 4.48 9.387 10.24 12.373 17.067 2.773 6.827 4.267 14.933 4.267 24.32 0 17.28-4.907 30.507-14.933 39.68-9.6 8.96-23.040 13.44-40.32 13.44zM723.84 385.493c-13.44-14.080-29.653-24.96-48.427-32.64-18.987-7.68-39.68-11.52-62.507-11.52h-100.907v341.333h97.92c23.68 0 45.013-3.84 64.427-11.52s35.84-18.56 49.493-32.64c13.653-14.080 24.32-31.147 31.573-50.987 7.467-19.84 11.093-42.24 11.093-66.987v-16.853c0-24.747-3.84-46.933-11.307-66.987s-17.92-37.12-31.36-51.2zM706.987 520.747c0 17.707-1.92 33.92-6.187 48-4.053 14.293-10.027 26.24-18.133 36.053s-18.133 17.28-30.293 22.613c-12.16 5.12-26.24 7.893-42.453 7.893h-38.613v-246.187h41.6c30.72 0 53.973 9.813 70.187 29.227 16 19.627 24.107 47.787 24.107 84.907v17.493zM512 0c-9.6 0-18.773 0.853-28.16 1.493l162.56 162.773 56.747-56.747c139.52 65.92 239.573 201.387 254.72 361.813h64c-21.76-262.827-241.493-469.333-509.867-469.333z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "3d-rotation" + ], + "grid": 24 + }, + "attrs": [], + "properties": { + "id": 0, + "order": 354, + "prevSize": 24, + "code": 58880, + "name": "3d-rotation" + }, + "setIdx": 4, + "setId": 5, + "iconIdx": 9 + }, + { + "icon": { + "paths": [ + "M938.667 244.053l-196.053-164.48-54.827 65.28 196.053 164.48 54.827-65.28zM336.213 144.64l-54.827-65.28-196.053 164.48 54.827 65.28 196.053-164.48zM533.333 341.333h-64v256l202.453 121.813 32.213-52.693-170.667-101.12v-224zM511.787 170.667c-212.267 0-383.787 171.947-383.787 384s171.52 384 383.787 384 384.213-171.947 384.213-384-171.947-384-384.213-384zM512 853.333c-164.907 0-298.667-133.76-298.667-298.667s133.76-298.667 298.667-298.667 298.667 133.76 298.667 298.667-133.547 298.667-298.667 298.667z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "alarm" + ], + "grid": 24 + }, + "attrs": [], + "properties": { + "id": 8, + "order": 356, + "prevSize": 24, + "code": 58881, + "name": "alarm" + }, + "setIdx": 4, + "setId": 5, + "iconIdx": 10 + }, + { + "icon": { + "paths": [ + "M938.667 244.053l-196.053-164.48-54.827 65.28 196.053 164.48 54.827-65.28zM336.213 144.64l-54.827-65.28-196.053 164.48 54.827 65.28 196.053-164.48zM511.787 170.667c-212.267 0-383.787 171.947-383.787 384s171.52 384 383.787 384 384.213-171.947 384.213-384-171.947-384-384.213-384zM512 853.333c-164.907 0-298.667-133.76-298.667-298.667s133.76-298.667 298.667-298.667 298.667 133.76 298.667 298.667-133.547 298.667-298.667 298.667zM449.493 619.733l-90.453-90.453-45.227 45.227 135.68 135.68 256.213-256.213-45.227-45.227-210.987 210.987z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "alarm-on" + ], + "grid": 24 + }, + "attrs": [], + "properties": { + "id": 11, + "order": 357, + "prevSize": 24, + "code": 58882, + "name": "alarm-on" + }, + "setIdx": 4, + "setId": 5, + "iconIdx": 11 + }, + { + "icon": { + "paths": [ + "M512 910.933l-61.867-56.107c-219.733-199.467-364.8-331.093-364.8-492.16 0-131.627 103.040-234.667 234.667-234.667 74.24 0 145.493 34.56 192 88.96 46.507-54.4 117.76-88.96 192-88.96 131.627 0 234.667 103.040 234.667 234.667 0 161.067-145.067 292.693-364.8 492.16l-61.867 56.107z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "favorite" + ], + "grid": 24 + }, + "attrs": [], + "properties": { + "id": 42, + "order": 359, + "prevSize": 24, + "code": 58883, + "name": "favorite" + }, + "setIdx": 4, + "setId": 5, + "iconIdx": 12 + }, + { + "icon": { + "paths": [ + "M853.333 661.333c-53.12 0-104.533-8.533-152.32-24.32-14.72-4.693-31.573-1.28-43.307 10.453l-93.867 94.080c-120.96-61.44-219.52-160.213-281.173-280.96l93.867-94.293c11.733-11.733 15.147-28.587 10.453-43.307-15.787-47.787-24.32-99.2-24.32-152.32 0-23.68-18.987-42.667-42.667-42.667h-149.333c-23.467 0-42.667 18.987-42.667 42.667 0 400.64 324.693 725.333 725.333 725.333 23.68 0 42.667-18.987 42.667-42.667v-149.333c0-23.68-18.987-42.667-42.667-42.667zM512 128v426.667l128-128h256v-298.667h-384z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "perm-phone-msg" + ], + "grid": 24 + }, + "attrs": [], + "properties": { + "id": 82, + "order": 353, + "prevSize": 24, + "code": 58884, + "name": "perm-phone-msg" + }, + "setIdx": 4, + "setId": 5, + "iconIdx": 13 + }, + { + "icon": { + "paths": [ + "M810.667 341.333h-597.333c-70.613 0-128 57.387-128 128v256h170.667v170.667h512v-170.667h170.667v-256c0-70.613-57.387-128-128-128zM682.667 810.667h-341.333v-213.333h341.333v213.333zM810.667 512c-23.68 0-42.667-18.987-42.667-42.667s18.987-42.667 42.667-42.667c23.68 0 42.667 18.987 42.667 42.667s-18.987 42.667-42.667 42.667zM768 128h-512v170.667h512v-170.667z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "print" + ], + "grid": 24 + }, + "attrs": [], + "properties": { + "id": 86, + "order": 358, + "prevSize": 24, + "code": 58885, + "name": "print" + }, + "setIdx": 4, + "setId": 5, + "iconIdx": 14 + }, + { + "icon": { + "paths": [ + "M469.333 1024h85.333v-85.333h-85.333v85.333zM298.667 1024h85.333v-85.333h-85.333v85.333zM640 1024h85.333v-85.333h-85.333v85.333zM755.413 243.413l-243.413-243.413h-42.667v323.627l-195.627-195.627-60.373 60.373 238.293 238.293-238.293 238.293 60.373 60.373 195.627-195.627v323.627h42.667l243.413-243.413-183.040-183.253 183.040-183.253zM554.667 163.413l80.213 80.213-80.213 80v-160.213zM634.88 609.92l-80.213 80v-160.213l80.213 80.213z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "settings-bluetooth" + ], + "grid": 24 + }, + "attrs": [], + "properties": { + "id": 100, + "order": 363, + "prevSize": 24, + "code": 58886, + "name": "bt-settings" + }, + "setIdx": 4, + "setId": 5, + "iconIdx": 15 + }, + { + "icon": { + "paths": [ + "M331.52 288.427l-65.707-54.4-230.827 277.973 230.827 278.187 65.707-54.4-185.6-223.787 185.6-223.573zM298.667 554.667h85.333v-85.333h-85.333v85.333zM725.333 469.333h-85.333v85.333h85.333v-85.333zM469.333 554.667h85.333v-85.333h-85.333v85.333zM758.187 233.813l-65.707 54.4 185.6 223.787-185.6 223.573 65.707 54.4 230.827-277.973-230.827-278.187z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "settings-ethernet" + ], + "grid": 24 + }, + "attrs": [], + "properties": { + "id": 103, + "order": 352, + "prevSize": 24, + "code": 58887, + "name": "settings-ethernet" + }, + "setIdx": 4, + "setId": 5, + "iconIdx": 16 + }, + { + "icon": { + "paths": [ + "M554.667 384h-85.333v85.333h85.333v-85.333zM725.333 384h-85.333v85.333h85.333v-85.333zM853.333 661.333c-53.12 0-104.32-8.533-152.32-24.32-14.72-4.693-31.573-1.28-43.307 10.453l-93.867 94.080c-120.96-61.44-219.52-160.213-281.173-280.96l93.867-94.080c11.733-11.733 15.147-28.587 10.453-43.307-15.787-48-24.32-99.413-24.32-152.533 0-23.68-18.987-42.667-42.667-42.667h-149.333c-23.68 0-42.667 18.987-42.667 42.667 0 400.64 324.693 725.333 725.333 725.333 23.68 0 42.667-18.987 42.667-42.667v-149.333c0-23.68-18.987-42.667-42.667-42.667zM810.667 384v85.333h85.333v-85.333h-85.333z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "settings-phone" + ], + "grid": 24 + }, + "attrs": [], + "properties": { + "id": 110, + "order": 361, + "prevSize": 24, + "code": 58888, + "name": "settings-phone" + }, + "setIdx": 4, + "setId": 5, + "iconIdx": 17 + }, + { + "icon": { + "paths": [ + "M298.667 1024h85.333v-85.333h-85.333v85.333zM469.333 1024h85.333v-85.333h-85.333v85.333zM554.667 85.333h-85.333v426.667h85.333v-426.667zM706.773 189.227l-61.653 61.653c73.6 45.013 122.88 125.867 122.88 218.453 0 141.44-114.56 256-256 256s-256-114.56-256-256c0-92.587 49.28-173.44 122.88-218.453l-61.653-61.653c-88.533 61.653-146.56 164.053-146.56 280.107 0 188.587 152.747 341.333 341.333 341.333s341.333-152.747 341.333-341.333c0-116.053-58.027-218.453-146.56-280.107zM640 1024h85.333v-85.333h-85.333v85.333z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "settings-power" + ], + "grid": 24 + }, + "attrs": [], + "properties": { + "id": 111, + "order": 360, + "prevSize": 24, + "code": 58889, + "name": "settings-power" + }, + "setIdx": 4, + "setId": 5, + "iconIdx": 18 + }, + { + "icon": { + "paths": [ + "M298.667 1024h85.333v-85.333h-85.333v85.333zM512 554.667c70.613 0 127.573-57.387 127.573-128l0.427-256c0-70.827-57.173-128-128-128-70.613 0-128 57.173-128 128v256c0 70.613 57.387 128 128 128zM469.333 1024h85.333v-85.333h-85.333v85.333zM640 1024h85.333v-85.333h-85.333v85.333zM810.667 426.667h-72.533c0 128-108.16 217.6-226.133 217.6-117.76 0-226.133-89.6-226.133-217.6h-72.533c0 145.707 116.053 266.027 256 286.72v139.947h85.333v-139.947c139.947-20.693 256-141.013 256-286.72z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "settings-voice" + ], + "grid": 24 + }, + "attrs": [], + "properties": { + "id": 113, + "order": 362, + "prevSize": 24, + "code": 58890, + "name": "settings-voice" + }, + "setIdx": 4, + "setId": 5, + "iconIdx": 19 + }, + { + "icon": { + "paths": [ + "M734.293 384l-186.88-279.68c-8.107-12.373-21.76-18.133-35.413-18.133s-27.307 5.973-35.413 18.133l-186.88 279.68h-204.373c-23.467 0-42.667 19.2-42.667 42.667 0 4.053 0.64 7.893 1.493 11.52l108.16 395.52c10.027 35.84 43.093 62.293 82.347 62.293h554.667c39.253 0 72.32-26.453 82.133-62.507l108.16-395.52c1.067-3.413 1.707-7.253 1.707-11.307 0-23.467-19.2-42.667-42.667-42.667h-204.373zM384 384l128-187.733 128 187.733h-256zM512 725.333c-47.147 0-85.333-38.187-85.333-85.333s38.187-85.333 85.333-85.333 85.333 38.187 85.333 85.333-38.187 85.333-85.333 85.333z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "shopping-basket" + ], + "grid": 24 + }, + "attrs": [], + "properties": { + "id": 116, + "order": 351, + "prevSize": 24, + "code": 58891, + "name": "shopping-basket" + }, + "setIdx": 4, + "setId": 5, + "iconIdx": 20 + }, + { + "icon": { + "paths": [ + "M725.333 128h-42.667v213.333h42.667v-213.333zM640 213.333h-85.333v-42.667h85.333v-42.667h-128v128h85.333v42.667h-85.333v42.667h128v-128zM768 128v213.333h42.667v-85.333h85.333v-128h-128zM853.333 213.333h-42.667v-42.667h42.667v42.667zM853.333 661.333c-53.12 0-104.32-8.533-152.32-24.32-14.72-4.693-31.573-1.28-43.307 10.453l-93.867 94.080c-120.747-61.44-219.52-160.213-281.173-280.96l93.867-94.080c11.733-11.733 15.147-28.587 10.453-43.307-15.787-48-24.32-99.413-24.32-152.533 0-23.68-18.987-42.667-42.667-42.667h-149.333c-23.68 0-42.667 18.987-42.667 42.667 0 400.64 324.693 725.333 725.333 725.333 23.68 0 42.667-18.987 42.667-42.667v-149.333c0-23.68-18.987-42.667-42.667-42.667z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "dialer-sip" + ], + "grid": 24 + }, + "attrs": [], + "properties": { + "id": 226, + "order": 348, + "prevSize": 24, + "code": 58894, + "name": "dialer-sip" + }, + "setIdx": 4, + "setId": 5, + "iconIdx": 21 + }, + { + "icon": { + "paths": [ + "M512 810.667c-47.147 0-85.333 38.187-85.333 85.333s38.187 85.333 85.333 85.333 85.333-38.187 85.333-85.333-38.187-85.333-85.333-85.333zM256 42.667c-47.147 0-85.333 38.187-85.333 85.333s38.187 85.333 85.333 85.333 85.333-38.187 85.333-85.333-38.187-85.333-85.333-85.333zM256 298.667c-47.147 0-85.333 38.187-85.333 85.333s38.187 85.333 85.333 85.333 85.333-38.187 85.333-85.333-38.187-85.333-85.333-85.333zM256 554.667c-47.147 0-85.333 38.187-85.333 85.333s38.187 85.333 85.333 85.333 85.333-38.187 85.333-85.333-38.187-85.333-85.333-85.333zM768 213.333c47.147 0 85.333-38.187 85.333-85.333s-38.187-85.333-85.333-85.333-85.333 38.187-85.333 85.333 38.187 85.333 85.333 85.333zM512 554.667c-47.147 0-85.333 38.187-85.333 85.333s38.187 85.333 85.333 85.333 85.333-38.187 85.333-85.333-38.187-85.333-85.333-85.333zM768 554.667c-47.147 0-85.333 38.187-85.333 85.333s38.187 85.333 85.333 85.333 85.333-38.187 85.333-85.333-38.187-85.333-85.333-85.333zM768 298.667c-47.147 0-85.333 38.187-85.333 85.333s38.187 85.333 85.333 85.333 85.333-38.187 85.333-85.333-38.187-85.333-85.333-85.333zM512 298.667c-47.147 0-85.333 38.187-85.333 85.333s38.187 85.333 85.333 85.333 85.333-38.187 85.333-85.333-38.187-85.333-85.333-85.333zM512 42.667c-47.147 0-85.333 38.187-85.333 85.333s38.187 85.333 85.333 85.333 85.333-38.187 85.333-85.333-38.187-85.333-85.333-85.333z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "dialpad" + ], + "grid": 24 + }, + "attrs": [], + "properties": { + "id": 227, + "order": 347, + "prevSize": 24, + "code": 58895, + "name": "dialpad" + }, + "setIdx": 4, + "setId": 5, + "iconIdx": 22 + }, + { + "icon": { + "paths": [ + "M938.667 128h-853.333c-47.147 0-85.333 38.187-85.333 85.333v597.333c0 47.147 38.187 85.333 85.333 85.333h853.333c47.147 0 84.907-38.187 84.907-85.333l0.427-597.333c0-47.147-38.187-85.333-85.333-85.333zM341.333 256c70.613 0 128 57.387 128 128 0 70.827-57.387 128-128 128s-128-57.173-128-128c0-70.613 57.387-128 128-128zM597.333 768h-512v-42.667c0-85.333 170.667-132.267 256-132.267s256 46.933 256 132.267v42.667zM761.6 597.333h69.973l64.427 85.333-85.12 85.12c-55.68-41.813-97.28-101.333-116.48-170.453-7.467-27.307-11.733-55.68-11.733-85.333s4.267-58.027 11.947-85.333c18.987-69.12 60.587-128.64 116.48-170.453l84.907 85.12-64.427 85.333h-69.973c-9.387 26.667-14.933 55.467-14.933 85.333s5.333 58.667 14.933 85.333z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "quick-contacts-dialer" + ], + "grid": 24 + }, + "attrs": [], + "properties": { + "id": 242, + "order": 345, + "prevSize": 24, + "code": 58896, + "name": "contacts-dialer" + }, + "setIdx": 4, + "setId": 5, + "iconIdx": 23 + }, + { + "icon": { + "paths": [ + "M896 341.333v-42.667l-128 85.333-128-85.333v42.667l128 85.333 128-85.333zM938.667 128h-853.333c-47.147 0-85.333 38.187-85.333 85.333v597.333c0 47.147 38.187 85.333 85.333 85.333h853.333c47.147 0 84.907-38.187 84.907-85.333l0.427-597.333c0-47.147-38.187-85.333-85.333-85.333zM341.333 256c70.613 0 128 57.387 128 128 0 70.827-57.387 128-128 128s-128-57.173-128-128c0-70.613 57.387-128 128-128zM597.333 768h-512v-42.667c0-85.333 170.667-132.267 256-132.267s256 46.933 256 132.267v42.667zM938.667 512h-341.333v-256h341.333v256z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "quick-contacts-mail" + ], + "grid": 24 + }, + "attrs": [], + "properties": { + "id": 243, + "order": 346, + "prevSize": 24, + "code": 58897, + "name": "contacts-mail" + }, + "setIdx": 4, + "setId": 5, + "iconIdx": 24 + }, + { + "icon": { + "paths": [ + "M1011.413 711.253c-129.92-123.52-305.92-199.253-499.413-199.253s-369.493 75.733-499.413 199.253c-7.893 7.68-12.587 18.56-12.587 30.293s4.693 22.4 12.587 30.080l105.6 105.6c7.68 7.68 18.347 12.587 30.080 12.587 11.52 0 22.187-4.693 29.867-12.16 33.92-31.36 72.107-58.027 113.707-78.933 14.080-7.040 23.893-21.547 23.893-38.4v-132.48c61.867-19.84 127.787-30.507 196.267-30.507s134.4 10.667 196.267 30.72v132.48c0 16.853 9.813 31.36 23.893 38.4 41.6 20.907 80 47.573 113.707 78.933 7.68 7.467 18.133 12.16 29.867 12.16s22.4-4.693 30.293-12.587l105.6-105.6c7.68-7.68 12.587-18.347 12.587-30.080-0.213-11.947-4.907-22.827-12.8-30.507zM902.827 266.88l-60.373-60.373-151.893 151.893 60.373 60.373s147.2-150.187 151.893-151.893zM554.667 85.333h-85.333v213.333h85.333v-213.333zM273.067 418.773l60.373-60.373-151.893-151.893-60.373 60.373c4.693 1.707 151.893 151.893 151.893 151.893z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "ring-volume" + ], + "grid": 24 + }, + "attrs": [], + "properties": { + "id": 244, + "order": 364, + "prevSize": 24, + "code": 58898, + "name": "ring-volume" + }, + "setIdx": 4, + "setId": 5, + "iconIdx": 25 + }, + { + "icon": { + "paths": [ + "M789.333 256c-129.707 0-234.667 104.96-234.667 234.667 0 56.747 20.053 108.8 53.547 149.333h-192.64c33.493-40.533 53.547-92.587 53.547-149.333 0-129.707-104.96-234.667-234.667-234.667s-234.453 104.96-234.453 234.667 104.96 234.667 234.667 234.667h554.667c129.707 0 234.667-104.96 234.667-234.667s-104.96-234.667-234.667-234.667zM234.667 640c-82.56 0-149.333-66.773-149.333-149.333s66.773-149.333 149.333-149.333 149.333 66.773 149.333 149.333-66.773 149.333-149.333 149.333zM789.333 640c-82.56 0-149.333-66.773-149.333-149.333s66.773-149.333 149.333-149.333 149.333 66.773 149.333 149.333-66.773 149.333-149.333 149.333z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "voicemail" + ], + "grid": 24 + }, + "attrs": [], + "properties": { + "id": 251, + "order": 344, + "prevSize": 24, + "code": 58899, + "name": "voicemail" + }, + "setIdx": 4, + "setId": 5, + "iconIdx": 26 + }, + { + "icon": { + "paths": [ + "M938.24 341.333c0-30.72-16-57.387-40.107-72.533l-386.133-226.133-386.133 226.133c-24.107 15.147-40.533 41.813-40.533 72.533v426.667c0 47.147 38.187 85.333 85.333 85.333h682.667c47.147 0 85.333-38.187 85.333-85.333l-0.427-426.667zM512 554.667l-352.427-220.373 352.427-206.293 352.427 206.293-352.427 220.373z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "drafts" + ], + "grid": 24 + }, + "attrs": [], + "properties": { + "id": 265, + "order": 365, + "prevSize": 24, + "code": 58900, + "name": "drafts" + }, + "setIdx": 4, + "setId": 5, + "iconIdx": 27 + }, + { + "icon": { + "paths": [ + "M853.333 170.667h-682.667c-47.147 0-84.907 38.187-84.907 85.333l-0.427 512c0 47.147 38.187 85.333 85.333 85.333h682.667c47.147 0 85.333-38.187 85.333-85.333v-512c0-47.147-38.187-85.333-85.333-85.333zM853.333 341.333l-341.333 213.333-341.333-213.333v-85.333l341.333 213.333 341.333-213.333v85.333z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "mail" + ], + "grid": 24 + }, + "attrs": [], + "properties": { + "id": 272, + "order": 366, + "prevSize": 24, + "code": 58901, + "name": "mail" + }, + "setIdx": 4, + "setId": 5, + "iconIdx": 28 + }, + { + "icon": { + "paths": [ + "M755.413 328.747l-243.413-243.413h-42.667v323.627l-195.627-195.627-60.373 60.373 238.293 238.293-238.293 238.293 60.373 60.373 195.627-195.627v323.627h42.667l243.413-243.413-183.040-183.253 183.040-183.253zM554.667 248.747l80.213 80.213-80.213 80v-160.213zM634.88 695.253l-80.213 80v-160.427l80.213 80.427z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "bluetooth" + ], + "grid": 24 + }, + "attrs": [], + "properties": { + "id": 310, + "order": 390, + "prevSize": 24, + "code": 58918, + "name": "bluetooth" + }, + "setIdx": 4, + "setId": 5, + "iconIdx": 29 + }, + { + "icon": { + "paths": [ + "M298.667 512l-85.333-85.333-85.333 85.333 85.333 85.333 85.333-85.333zM755.413 328.747l-243.413-243.413h-42.667v323.627l-195.627-195.627-60.373 60.373 238.293 238.293-238.293 238.293 60.373 60.373 195.627-195.627v323.627h42.667l243.413-243.413-183.040-183.253 183.040-183.253zM554.667 248.747l80.213 80.213-80.213 80v-160.213zM634.88 695.253l-80.213 80v-160.427l80.213 80.427zM810.667 426.667l-85.333 85.333 85.333 85.333 85.333-85.333-85.333-85.333z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "bluetooth-connected" + ], + "grid": 24 + }, + "attrs": [], + "properties": { + "id": 311, + "order": 391, + "prevSize": 24, + "code": 58919, + "name": "bt-connected" + }, + "setIdx": 4, + "setId": 5, + "iconIdx": 30 + }, + { + "icon": { + "paths": [ + "M554.667 252.373l80.213 80.213-68.267 68.267 60.373 60.373 128.64-128.64-243.627-243.627h-42.667v214.613l85.333 85.333v-136.533zM231.040 174.293l-60.373 60.373 280.96 280.96-238.293 238.293 60.373 60.373 195.627-195.627v323.627h42.667l183.253-183.253 97.92 97.92 60.16-60.373-622.293-622.293zM554.667 778.88v-160.213l80.213 80.213-80.213 80z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "bluetooth-disabled" + ], + "grid": 24 + }, + "attrs": [], + "properties": { + "id": 312, + "order": 392, + "prevSize": 24, + "code": 58920, + "name": "bt-disabled" + }, + "setIdx": 4, + "setId": 5, + "iconIdx": 31 + }, + { + "icon": { + "paths": [ + "M607.573 512.427l98.987 98.987c11.947-30.933 18.773-64.427 18.773-99.413 0-34.773-6.613-68.053-18.347-98.773l-99.413 99.2zM833.28 286.507l-53.973 53.973c26.667 51.413 42.027 109.653 42.027 171.733s-15.36 120.107-42.027 171.733l51.2 51.2c41.173-66.133 65.493-143.573 65.493-226.773 0-81.493-23.253-157.227-62.72-221.867zM670.080 328.747l-243.413-243.413h-42.667v323.627l-195.627-195.627-60.373 60.373 238.293 238.293-238.293 238.293 60.373 60.373 195.627-195.627v323.627h42.667l243.413-243.413-183.040-183.253 183.040-183.253zM469.333 248.747l80.213 80.213-80.213 80v-160.213zM549.547 695.253l-80.213 80v-160.427l80.213 80.427z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "bluetooth-searching" + ], + "grid": 24 + }, + "attrs": [], + "properties": { + "id": 313, + "order": 393, + "prevSize": 24, + "code": 58921, + "name": "bt-searching" + }, + "setIdx": 4, + "setId": 5, + "iconIdx": 32 + }, + { + "icon": { + "paths": [ + "M462.933 539.733h98.133l-49.067-155.733-49.067 155.733zM853.333 370.56v-199.893h-199.893l-141.44-141.44-141.44 141.44h-199.893v199.893l-141.44 141.44 141.44 141.44v199.893h199.893l141.44 141.44 141.44-141.44h199.893v-199.893l141.44-141.44-141.44-141.44zM610.133 682.667l-29.867-85.333h-136.533l-29.867 85.333h-81.067l136.533-384h85.333l136.533 384h-81.067z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "brightness-auto" + ], + "grid": 24 + }, + "attrs": [], + "properties": { + "id": 314, + "order": 394, + "prevSize": 24, + "code": 58922, + "name": "brightness-auto" + }, + "setIdx": 4, + "setId": 5, + "iconIdx": 33 + }, + { + "icon": { + "paths": [ + "M298.667 768h85.333v-512h-85.333v512zM469.333 938.667h85.333v-853.333h-85.333v853.333zM128 597.333h85.333v-170.667h-85.333v170.667zM640 768h85.333v-512h-85.333v512zM810.667 426.667v170.667h85.333v-170.667h-85.333z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "multitrack-audio" + ], + "grid": 24 + }, + "attrs": [], + "properties": { + "id": 327, + "order": 408, + "prevSize": 24, + "code": 58902, + "name": "multitrack-audio" + }, + "setIdx": 4, + "setId": 5, + "iconIdx": 34 + }, + { + "icon": { + "paths": [ + "M554.667 554.667v341.333h341.333v-341.333h-341.333zM128 896h341.333v-341.333h-341.333v341.333zM128 128v341.333h341.333v-341.333h-341.333zM710.613 71.893l-241.28 241.493 241.28 241.28 241.28-241.28-241.28-241.493z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "now-widgets" + ], + "grid": 24 + }, + "attrs": [], + "properties": { + "id": 332, + "order": 407, + "prevSize": 24, + "code": 58903, + "name": "widgets" + }, + "setIdx": 4, + "setId": 5, + "iconIdx": 35 + }, + { + "icon": { + "paths": [ + "M640 298.667v170.667h42.667v85.333h-128v-341.333h85.333l-128-170.667-128 170.667h85.333v341.333h-128v-88.32c30.080-15.573 51.2-46.080 51.2-82.347 0-51.84-42.027-93.867-93.867-93.867s-93.867 42.027-93.867 93.867c0 36.267 21.12 66.773 51.2 82.347v88.32c0 47.147 38.187 85.333 85.333 85.333h128v130.133c-30.293 15.573-51.2 46.72-51.2 83.2 0 51.84 42.027 93.867 93.867 93.867s93.867-42.027 93.867-93.867c0-36.48-20.907-67.627-51.2-83.2v-130.133h128c47.147 0 85.333-38.187 85.333-85.333v-85.333h42.667v-170.667h-170.667z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "usb" + ], + "grid": 24 + }, + "attrs": [], + "properties": { + "id": 370, + "order": 327, + "prevSize": 24, + "code": 58936, + "name": "usb" + }, + "setIdx": 4, + "setId": 5, + "iconIdx": 36 + }, + { + "icon": { + "paths": [ + "M503.467 465.067c-96.853-25.173-128-50.987-128-91.52 0-46.507 42.88-79.147 115.2-79.147 75.947 0 104.107 36.267 106.667 89.6h94.293c-2.773-73.6-47.787-140.587-136.96-162.56v-93.44h-128v92.16c-82.773 18.133-149.333 71.467-149.333 154.027 0 98.56 81.707 147.627 200.533 176.213 106.88 25.6 128 62.933 128 103.040 0 29.227-20.693 76.16-115.2 76.16-87.893 0-122.667-39.467-127.147-89.6h-94.080c5.333 93.44 75.093 145.707 157.227 163.413v92.587h128v-91.733c82.987-16 149.333-64 149.333-151.68 0-120.747-103.68-162.133-200.533-187.52z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "attach-money" + ], + "grid": 24 + }, + "attrs": [], + "properties": { + "id": 374, + "order": 389, + "prevSize": 24, + "code": 58937, + "name": "money" + }, + "setIdx": 4, + "setId": 5, + "iconIdx": 37 + }, + { + "icon": { + "paths": [ + "M682.667 554.667h-128v-426.667h-85.333v426.667h-128l170.667 170.667 170.667-170.667zM170.667 810.667v85.333h682.667v-85.333h-682.667z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "vertical-align-bottom" + ], + "grid": 24 + }, + "attrs": [], + "properties": { + "id": 421, + "order": 310, + "prevSize": 24, + "code": 58938, + "name": "vertical-align-bottom" + }, + "setIdx": 4, + "setId": 5, + "iconIdx": 38 + }, + { + "icon": { + "paths": [ + "M341.333 810.667h128v170.667h85.333v-170.667h128l-170.667-170.667-170.667 170.667zM682.667 213.333h-128v-170.667h-85.333v170.667h-128l170.667 170.667 170.667-170.667zM170.667 469.333v85.333h682.667v-85.333h-682.667z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "vertical-align-center" + ], + "grid": 24 + }, + "attrs": [], + "properties": { + "id": 422, + "order": 312, + "prevSize": 24, + "code": 58939, + "name": "vertical-align-center" + }, + "setIdx": 4, + "setId": 5, + "iconIdx": 39 + }, + { + "icon": { + "paths": [ + "M341.333 469.333h128v426.667h85.333v-426.667h128l-170.667-170.667-170.667 170.667zM170.667 128v85.333h682.667v-85.333h-682.667z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "vertical-align-top" + ], + "grid": 24 + }, + "attrs": [], + "properties": { + "id": 423, + "order": 311, + "prevSize": 24, + "code": 58940, + "name": "vertical-align-top" + }, + "setIdx": 4, + "setId": 5, + "iconIdx": 40 + }, + { + "icon": { + "paths": [ + "M810.667 384h-170.667v-256h-256v256h-170.667l298.667 298.667 298.667-298.667zM213.333 768v85.333h597.333v-85.333h-597.333z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "file-download" + ], + "grid": 24 + }, + "attrs": [], + "properties": { + "id": 433, + "order": 308, + "prevSize": 24, + "code": 58941, + "name": "file-download" + }, + "setIdx": 4, + "setId": 5, + "iconIdx": 41 + }, + { + "icon": { + "paths": [ + "M384 682.667h256v-256h170.667l-298.667-298.667-298.667 298.667h170.667zM213.333 768h597.333v85.333h-597.333z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "file-upload" + ], + "grid": 24 + }, + "attrs": [], + "properties": { + "id": 434, + "order": 309, + "prevSize": 24, + "code": 58942, + "name": "file-upload" + }, + "setIdx": 4, + "setId": 5, + "iconIdx": 42 + }, + { + "icon": { + "paths": [ + "M810.667 298.667v170.667h-561.92l152.96-152.96-60.373-60.373-256 256 256 256 60.373-60.373-152.96-152.96h647.253v-256z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "keyboard-return" + ], + "grid": 24 + }, + "attrs": [], + "properties": { + "id": 457, + "order": 387, + "prevSize": 24, + "code": 58943, + "name": "keyboard-return" + }, + "setIdx": 4, + "setId": 5, + "iconIdx": 43 + }, + { + "icon": { + "paths": [ + "M512 640c70.613 0 127.573-57.387 127.573-128l0.427-256c0-70.827-57.173-128-128-128-70.613 0-128 57.173-128 128v256c0 70.613 57.387 128 128 128zM738.133 512c0 128-108.16 217.6-226.133 217.6-117.76 0-226.133-89.6-226.133-217.6h-72.533c0 145.707 116.053 266.027 256 286.72v139.947h85.333v-139.947c139.947-20.693 256-141.013 256-286.72h-72.533z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "keyboard-voice" + ], + "grid": 24 + }, + "attrs": [], + "properties": { + "id": 459, + "order": 388, + "prevSize": 24, + "code": 58944, + "name": "keyboard-voice" + }, + "setIdx": 4, + "setId": 5, + "iconIdx": 44 + }, + { + "icon": { + "paths": [ + "M170.667 256h768v-85.333h-768c-47.147 0-85.333 38.187-85.333 85.333v469.333h-85.333v128h597.333v-128h-426.667v-469.333zM981.333 341.333h-256c-23.467 0-42.667 19.2-42.667 42.667v426.667c0 23.467 19.2 42.667 42.667 42.667h256c23.467 0 42.667-19.2 42.667-42.667v-426.667c0-23.467-19.2-42.667-42.667-42.667zM938.667 725.333h-170.667v-298.667h170.667v298.667z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "phonelink" + ], + "grid": 24 + }, + "attrs": [], + "properties": { + "id": 468, + "order": 386, + "prevSize": 24, + "code": 58945, + "name": "phonelink" + }, + "setIdx": 4, + "setId": 5, + "iconIdx": 45 + }, + { + "icon": { + "paths": [ + "M938.667 256v-85.333h-647.68l85.333 85.333h562.347zM81.92 70.187l-54.4 54.4 77.44 77.44c-11.947 14.72-19.627 33.493-19.627 53.973v469.333h-85.333v128h756.48l100.48 100.48 54.187-54.4-829.227-829.227zM170.667 267.733l457.813 457.6h-457.813v-457.6zM981.333 341.333h-256c-23.467 0-42.667 19.2-42.667 42.667v178.347l85.333 85.333v-221.013h170.667v298.667h-93.013l128 128h7.68c23.467 0 42.667-19.2 42.667-42.667v-426.667c0-23.467-19.2-42.667-42.667-42.667z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "phonelink-off" + ], + "grid": 24 + }, + "attrs": [], + "properties": { + "id": 469, + "order": 385, + "prevSize": 24, + "code": 58946, + "name": "phonelink-off" + }, + "setIdx": 4, + "setId": 5, + "iconIdx": 46 + }, + { + "icon": { + "paths": [ + "M512 42.667l-384 170.667v256c0 237.013 163.627 458.027 384 512 220.373-53.973 384-274.987 384-512v-256l-384-170.667zM512 511.573h298.667c-22.613 175.787-139.733 332.373-298.667 381.227v-380.8h-298.667v-243.2l298.667-132.693v375.467z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "security" + ], + "grid": 24 + }, + "attrs": [], + "properties": { + "id": 470, + "order": 406, + "prevSize": 24, + "code": 58904, + "name": "security" + }, + "setIdx": 4, + "setId": 5, + "iconIdx": 47 + }, + { + "icon": { + "paths": [ + "M512 426.667c-164.693 0-298.667 133.973-298.667 298.667h85.333c0-117.547 95.787-213.333 213.333-213.333s213.333 95.787 213.333 213.333h85.333c0-164.693-133.973-298.667-298.667-298.667zM512 256c-258.773 0-469.333 210.56-469.333 469.333h85.333c0-211.627 172.373-384 384-384s384 172.373 384 384h85.333c0-258.773-210.56-469.333-469.333-469.333z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "looks" + ], + "grid": 24 + }, + "attrs": [], + "properties": { + "id": 572, + "order": 306, + "prevSize": 24, + "code": 58947, + "name": "looks" + }, + "setIdx": 4, + "setId": 5, + "iconIdx": 48 + }, + { + "icon": { + "paths": [ + "M512 128c-212.053 0-384 171.947-384 384s171.947 384 384 384c35.413 0 64-28.587 64-64 0-16.64-6.187-31.573-16.64-42.88-10.027-11.307-16-26.027-16-42.453 0-35.413 28.587-64 64-64h75.307c117.76 0 213.333-95.573 213.333-213.333 0-188.587-171.947-341.333-384-341.333zM277.333 512c-35.413 0-64-28.587-64-64s28.587-64 64-64 64 28.587 64 64-28.587 64-64 64zM405.333 341.333c-35.413 0-64-28.587-64-64s28.587-64 64-64 64 28.587 64 64-28.587 64-64 64zM618.667 341.333c-35.413 0-64-28.587-64-64s28.587-64 64-64 64 28.587 64 64-28.587 64-64 64zM746.667 512c-35.413 0-64-28.587-64-64s28.587-64 64-64 64 28.587 64 64-28.587 64-64 64z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "palette" + ], + "grid": 24 + }, + "attrs": [], + "properties": { + "id": 581, + "order": 405, + "prevSize": 24, + "code": 58905, + "name": "palette" + }, + "setIdx": 4, + "setId": 5, + "iconIdx": 49 + }, + { + "icon": { + "paths": [ + "M511.787 791.040l-314.667-244.693-69.12 53.76 384 298.667 384-298.667-69.547-53.973-314.667 244.907zM512 682.667l384-298.667-384-298.667-384 298.667 69.547 53.973 314.453 244.693z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "layers" + ], + "grid": 24 + }, + "attrs": [], + "properties": { + "id": 628, + "order": 305, + "prevSize": 24, + "code": 58948, + "name": "layers" + }, + "setIdx": 4, + "setId": 5, + "iconIdx": 50 + }, + { + "icon": { + "paths": [ + "M845.227 639.573l50.773-39.467-60.8-60.8-50.773 39.467 60.8 60.8zM826.24 438.4l69.76-54.4-384-298.667-124.373 96.64 336 336 102.613-79.573zM139.733 42.667l-54.4 54.4 180.053 180.053-137.387 106.88 69.547 53.973 314.453 244.693 89.387-69.547 60.8 60.8-150.613 117.12-314.453-244.693-69.12 53.76 384 298.667 210.987-164.267 161.493 161.493 54.187-54.4-798.933-798.933z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "layers-clear" + ], + "grid": 24 + }, + "attrs": [], + "properties": { + "id": 629, + "order": 399, + "prevSize": 24, + "code": 58906, + "name": "layers-clear" + }, + "setIdx": 4, + "setId": 5, + "iconIdx": 51 + }, + { + "icon": { + "paths": [ + "M896 682.667v-85.333l-341.333-213.333v-234.667c0-35.413-28.587-64-64-64s-64 28.587-64 64v234.667l-341.333 213.333v85.333l341.333-106.667v234.667l-85.333 64v64l149.333-42.667 149.333 42.667v-64l-85.333-64v-234.667l341.333 106.667z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "local-airport" + ], + "grid": 24 + }, + "attrs": [], + "properties": { + "id": 630, + "order": 384, + "prevSize": 24, + "code": 58949, + "name": "local-airport" + }, + "setIdx": 4, + "setId": 5, + "iconIdx": 52 + }, + { + "icon": { + "paths": [ + "M512 938.667c212.053 0 384-171.947 384-384-212.053 0-384 171.947-384 384zM239.147 437.333c0 58.88 47.787 106.667 106.667 106.667 22.4 0 43.307-7.040 60.373-18.773l-0.853 8.107c0 58.88 47.787 106.667 106.667 106.667s106.667-47.787 106.667-106.667l-0.853-8.107c17.28 11.947 37.973 18.773 60.373 18.773 58.88 0 106.667-47.787 106.667-106.667 0-42.453-24.96-78.933-61.013-96 35.84-17.067 61.013-53.547 61.013-96 0-58.88-47.787-106.667-106.667-106.667-22.4 0-43.307 7.040-60.373 18.773l0.853-8.107c0-58.88-47.787-106.667-106.667-106.667s-106.667 47.787-106.667 106.667l0.853 8.107c-17.28-11.947-37.973-18.773-60.373-18.773-58.88 0-106.667 47.787-106.667 106.667 0 42.453 24.96 78.933 61.013 96-36.053 17.067-61.013 53.547-61.013 96zM512 234.667c58.88 0 106.667 47.787 106.667 106.667s-47.787 106.667-106.667 106.667-106.667-47.787-106.667-106.667 47.787-106.667 106.667-106.667zM128 554.667c0 212.053 171.947 384 384 384 0-212.053-171.947-384-384-384z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "local-florist" + ], + "grid": 24 + }, + "attrs": [], + "properties": { + "id": 638, + "order": 403, + "prevSize": 24, + "code": 58907, + "name": "florist" + }, + "setIdx": 4, + "setId": 5, + "iconIdx": 53 + }, + { + "icon": { + "paths": [ + "M843.52 308.48l0.64-0.64-158.933-158.507-45.227 45.227 90.027 90.027c-40.107 15.36-68.693 53.973-68.693 99.413 0 58.88 47.787 106.667 106.667 106.667 15.147 0 29.653-3.2 42.667-8.96v307.627c0 23.467-19.2 42.667-42.667 42.667s-42.667-19.2-42.667-42.667v-192c0-47.147-38.187-85.333-85.333-85.333h-42.667v-298.667c0-47.147-38.187-85.333-85.333-85.333h-256c-47.147 0-85.333 38.187-85.333 85.333v682.667h426.667v-320h64v213.333c0 58.88 47.787 106.667 106.667 106.667s106.667-47.787 106.667-106.667v-405.333c0-29.44-11.947-56.107-31.147-75.52zM512 426.667h-256v-213.333h256v213.333zM768 426.667c-23.467 0-42.667-19.2-42.667-42.667s19.2-42.667 42.667-42.667 42.667 19.2 42.667 42.667-19.2 42.667-42.667 42.667z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "local-gas-station" + ], + "grid": 24 + }, + "attrs": [], + "properties": { + "id": 639, + "order": 404, + "prevSize": 24, + "code": 58908, + "name": "gas-station" + }, + "setIdx": 4, + "setId": 5, + "iconIdx": 54 + }, + { + "icon": { + "paths": [ + "M298.667 554.667c70.613 0 128-57.387 128-128s-57.387-128-128-128-128 57.387-128 128 57.387 128 128 128zM810.667 298.667h-341.333v298.667h-341.333v-384h-85.333v640h85.333v-128h768v128h85.333v-384c0-94.293-76.373-170.667-170.667-170.667z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "local-hotel" + ], + "grid": 24 + }, + "attrs": [], + "properties": { + "id": 642, + "order": 383, + "prevSize": 24, + "code": 58950, + "name": "hotel" + }, + "setIdx": 4, + "setId": 5, + "iconIdx": 55 + }, + { + "icon": { + "paths": [ + "M391.253 718.080c66.56 66.56 174.72 66.56 241.28 0s66.56-174.72 0-241.28l-241.28 241.28zM768 85.76l-512-0.427c-47.147 0-85.333 38.187-85.333 85.333v682.667c0 47.147 38.187 85.333 85.333 85.333h512c47.147 0 85.333-38.187 85.333-85.333v-682.667c0-47.147-38.187-84.907-85.333-84.907zM426.667 170.667c23.467 0 42.667 19.2 42.667 42.667s-19.2 42.667-42.667 42.667-42.667-19.2-42.667-42.667 19.2-42.667 42.667-42.667zM298.667 170.667c23.467 0 42.667 19.2 42.667 42.667s-19.2 42.667-42.667 42.667-42.667-19.2-42.667-42.667 19.2-42.667 42.667-42.667zM512 853.333c-141.44 0-256-114.56-256-256s114.56-256 256-256 256 114.56 256 256-114.56 256-256 256z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "local-laundry-service" + ], + "grid": 24 + }, + "attrs": [], + "properties": { + "id": 643, + "order": 400, + "prevSize": 24, + "code": 58909, + "name": "local-service" + }, + "setIdx": 4, + "setId": 5, + "iconIdx": 56 + }, + { + "icon": { + "paths": [ + "M874.667 128c-2.347 0-4.48 0.213-6.613 1.067l-228.053 88.533-256-89.6-240.427 81.067c-8.96 2.987-15.573 10.667-15.573 20.48v645.12c0 11.733 9.6 21.333 21.333 21.333 2.347 0 4.48-0.213 6.613-1.067l228.053-88.533 256 89.6 240.64-80.853c8.96-3.2 15.36-10.88 15.36-20.693v-645.12c0-11.733-9.6-21.333-21.333-21.333zM640 810.667l-256-89.813v-507.52l256 89.813v507.52z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "map" + ], + "grid": 24 + }, + "attrs": [], + "properties": { + "id": 660, + "order": 420, + "prevSize": 24, + "code": 58912, + "name": "map2" + }, + "setIdx": 4, + "setId": 5, + "iconIdx": 57 + }, + { + "icon": { + "paths": [ + "M512 341.333c-94.293 0-170.667 76.373-170.667 170.667s76.373 170.667 170.667 170.667 170.667-76.373 170.667-170.667-76.373-170.667-170.667-170.667zM893.44 469.333c-19.627-177.92-160.853-319.147-338.773-338.773v-87.893h-85.333v87.893c-177.92 19.627-319.147 160.853-338.773 338.773h-87.893v85.333h87.893c19.627 177.92 160.853 319.147 338.773 338.773v87.893h85.333v-87.893c177.92-19.627 319.147-160.853 338.773-338.773h87.893v-85.333h-87.893zM512 810.667c-164.907 0-298.667-133.76-298.667-298.667s133.76-298.667 298.667-298.667 298.667 133.76 298.667 298.667-133.76 298.667-298.667 298.667z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "my-location" + ], + "grid": 24 + }, + "attrs": [], + "properties": { + "id": 661, + "order": 402, + "prevSize": 24, + "code": 58910, + "name": "my-location" + }, + "setIdx": 4, + "setId": 5, + "iconIdx": 58 + }, + { + "icon": { + "paths": [ + "M853.333 426.667h-128v-48.64c73.6-18.987 128-85.12 128-164.693h-128v-42.667c0-23.467-18.987-42.667-42.667-42.667h-341.333c-23.467 0-42.667 19.2-42.667 42.667v42.667h-128c0 79.36 54.613 145.707 128 164.693v48.64h-128c0 79.36 54.613 145.707 128 164.693v48.64h-128c0 79.36 54.613 145.707 128 164.693v48.64c0 23.467 19.2 42.667 42.667 42.667h341.333c23.68 0 42.667-19.2 42.667-42.667v-48.64c73.6-18.987 128-85.12 128-164.693h-128v-48.64c73.6-18.987 128-85.333 128-164.693zM512 810.667c-47.147 0-85.333-38.187-85.333-85.333s38.187-85.333 85.333-85.333 85.333 38.187 85.333 85.333-38.187 85.333-85.333 85.333zM512 597.333c-47.147 0-85.333-38.187-85.333-85.333s38.187-85.333 85.333-85.333 85.333 38.187 85.333 85.333-38.187 85.333-85.333 85.333zM512 384c-47.147 0-85.333-38.187-85.333-85.333s38.187-85.333 85.333-85.333 85.333 38.187 85.333 85.333-38.187 85.333-85.333 85.333z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "traff" + ], + "grid": 24 + }, + "attrs": [], + "properties": { + "id": 670, + "order": 409, + "prevSize": 24, + "code": 58913, + "name": "traff" + }, + "setIdx": 4, + "setId": 5, + "iconIdx": 59 + }, + { + "icon": { + "paths": [ + "M170.667 341.333h170.667v-170.667h-170.667v170.667zM426.667 853.333h170.667v-170.667h-170.667v170.667zM170.667 853.333h170.667v-170.667h-170.667v170.667zM170.667 597.333h170.667v-170.667h-170.667v170.667zM426.667 597.333h170.667v-170.667h-170.667v170.667zM682.667 170.667v170.667h170.667v-170.667h-170.667zM426.667 341.333h170.667v-170.667h-170.667v170.667zM682.667 597.333h170.667v-170.667h-170.667v170.667zM682.667 853.333h170.667v-170.667h-170.667v170.667z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "apps" + ], + "grid": 24 + }, + "attrs": [], + "properties": { + "id": 671, + "order": 304, + "prevSize": 24, + "code": 58951, + "name": "apps" + }, + "setIdx": 4, + "setId": 5, + "iconIdx": 60 + }, + { + "icon": { + "paths": [ + "M657.707 316.373l-60.373-60.373-256 256 256 256 60.373-60.373-195.627-195.627z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "chevron-left" + ], + "grid": 24 + }, + "attrs": [], + "properties": { + "id": 679, + "order": 302, + "prevSize": 24, + "code": 58952, + "name": "chevron-left" + }, + "setIdx": 4, + "setId": 5, + "iconIdx": 61 + }, + { + "icon": { + "paths": [ + "M426.667 256l-60.373 60.373 195.627 195.627-195.627 195.627 60.373 60.373 256-256z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "chevron-right" + ], + "grid": 24 + }, + "attrs": [], + "properties": { + "id": 680, + "order": 301, + "prevSize": 24, + "code": 58953, + "name": "chevron-right" + }, + "setIdx": 4, + "setId": 5, + "iconIdx": 62 + }, + { + "icon": { + "paths": [ + "M512 341.333l-256 256 60.373 60.373 195.627-195.627 195.627 195.627 60.373-60.373z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "expand-less" + ], + "grid": 24 + }, + "attrs": [], + "properties": { + "id": 682, + "order": 300, + "prevSize": 24, + "code": 58954, + "name": "expand-less" + }, + "setIdx": 4, + "setId": 5, + "iconIdx": 63 + }, + { + "icon": { + "paths": [ + "M707.627 366.293l-195.627 195.627-195.627-195.627-60.373 60.373 256 256 256-256z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "expand-more" + ], + "grid": 24 + }, + "attrs": [], + "properties": { + "id": 683, + "order": 299, + "prevSize": 24, + "code": 58955, + "name": "expand-more" + }, + "setIdx": 4, + "setId": 5, + "iconIdx": 64 + }, + { + "icon": { + "paths": [ + "M128 768h768v-85.333h-768v85.333zM128 554.667h768v-85.333h-768v85.333zM128 256v85.333h768v-85.333h-768z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "menu" + ], + "grid": 24 + }, + "attrs": [], + "properties": { + "id": 686, + "order": 298, + "prevSize": 24, + "code": 58956, + "name": "menu" + }, + "setIdx": 4, + "setId": 5, + "iconIdx": 65 + }, + { + "icon": { + "paths": [ + "M256 426.667c-47.147 0-85.333 38.187-85.333 85.333s38.187 85.333 85.333 85.333 85.333-38.187 85.333-85.333-38.187-85.333-85.333-85.333zM768 426.667c-47.147 0-85.333 38.187-85.333 85.333s38.187 85.333 85.333 85.333 85.333-38.187 85.333-85.333-38.187-85.333-85.333-85.333zM512 426.667c-47.147 0-85.333 38.187-85.333 85.333s38.187 85.333 85.333 85.333 85.333-38.187 85.333-85.333-38.187-85.333-85.333-85.333z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "more-horiz" + ], + "grid": 24 + }, + "attrs": [], + "properties": { + "id": 687, + "order": 297, + "prevSize": 24, + "code": 58957, + "name": "more-horiz" + }, + "setIdx": 4, + "setId": 5, + "iconIdx": 66 + }, + { + "icon": { + "paths": [ + "M512 341.333c47.147 0 85.333-38.187 85.333-85.333s-38.187-85.333-85.333-85.333-85.333 38.187-85.333 85.333 38.187 85.333 85.333 85.333zM512 426.667c-47.147 0-85.333 38.187-85.333 85.333s38.187 85.333 85.333 85.333 85.333-38.187 85.333-85.333-38.187-85.333-85.333-85.333zM512 682.667c-47.147 0-85.333 38.187-85.333 85.333s38.187 85.333 85.333 85.333 85.333-38.187 85.333-85.333-38.187-85.333-85.333-85.333z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "more-vert" + ], + "grid": 24 + }, + "attrs": [], + "properties": { + "id": 688, + "order": 296, + "prevSize": 24, + "code": 58958, + "name": "more-vert" + }, + "setIdx": 4, + "setId": 5, + "iconIdx": 67 + }, + { + "icon": { + "paths": [ + "M316.373 792.96l60.373 60.373 135.253-135.253 135.253 135.253 60.373-60.373-195.627-195.627-195.627 195.627zM707.627 231.040l-60.373-60.373-135.253 135.253-135.253-135.253-60.373 60.373 195.627 195.627 195.627-195.627z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "unfold-less" + ], + "grid": 24 + }, + "attrs": [], + "properties": { + "id": 690, + "order": 295, + "prevSize": 24, + "code": 58959, + "name": "unfold-less" + }, + "setIdx": 4, + "setId": 5, + "iconIdx": 68 + }, + { + "icon": { + "paths": [ + "M512 248.747l135.253 135.253 60.373-60.373-195.627-195.627-195.627 195.627 60.373 60.373 135.253-135.253zM512 775.253l-135.253-135.253-60.373 60.373 195.627 195.627 195.627-195.627-60.373-60.373-135.253 135.253z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "unfold-more" + ], + "grid": 24 + }, + "attrs": [], + "properties": { + "id": 691, + "order": 294, + "prevSize": 24, + "code": 58960, + "name": "unfold-more" + }, + "setIdx": 4, + "setId": 5, + "iconIdx": 69 + }, + { + "icon": { + "paths": [ + "M607.573 512.427l98.987 98.987c11.947-30.933 18.773-64.427 18.773-99.413 0-34.773-6.613-68.053-18.347-98.773l-99.413 99.2zM833.28 286.507l-53.973 53.973c26.667 51.413 42.027 109.653 42.027 171.733s-15.36 120.107-42.027 171.733l51.2 51.2c41.173-66.133 65.493-143.573 65.493-226.773 0-81.493-23.253-157.227-62.72-221.867zM670.080 328.747l-243.413-243.413h-42.667v323.627l-195.627-195.627-60.373 60.373 238.293 238.293-238.293 238.293 60.373 60.373 195.627-195.627v323.627h42.667l243.413-243.413-183.040-183.253 183.040-183.253zM469.333 248.747l80.213 80.213-80.213 80v-160.213zM549.547 695.253l-80.213 80v-160.427l80.213 80.427z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "bluetooth-audio" + ], + "grid": 24 + }, + "attrs": [], + "properties": { + "id": 693, + "order": 303, + "prevSize": 24, + "code": 58961, + "name": "bt-audio" + }, + "setIdx": 4, + "setId": 5, + "iconIdx": 70 + }, + { + "icon": { + "paths": [ + "M512 85.333c-234.667 0-426.667 192-426.667 426.667s192 426.667 426.667 426.667 426.667-192 426.667-426.667-192-426.667-426.667-426.667zM170.667 512c0-187.733 153.6-341.333 341.333-341.333 78.933 0 151.467 27.733 209.067 72.533l-477.867 477.867c-44.8-57.6-72.533-130.133-72.533-209.067zM512 853.333c-78.933 0-151.467-27.733-209.067-72.533l477.867-477.867c44.8 57.6 72.533 130.133 72.533 209.067 0 187.733-153.6 341.333-341.333 341.333z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "not" + ], + "grid": 24 + }, + "attrs": [], + "properties": { + "id": 695, + "order": 429, + "name": "not", + "prevSize": 24, + "code": 58931 + }, + "setIdx": 4, + "setId": 5, + "iconIdx": 71 + }, + { + "icon": { + "paths": [ + "M807.253 213.76c-8.747-25.173-32.64-43.093-60.587-43.093h-469.333c-27.947 0-51.84 17.92-60.587 43.093l-88.747 255.573v341.333c0 23.467 19.2 42.667 42.667 42.667h42.667c23.68 0 42.667-19.2 42.667-42.667v-42.667h512v42.667c0 23.467 19.2 42.667 42.667 42.667h42.667c23.68 0 42.667-19.2 42.667-42.667v-341.333l-88.747-255.573zM277.333 640c-35.413 0-64-28.587-64-64s28.587-64 64-64 64 28.587 64 64-28.587 64-64 64zM746.667 640c-35.413 0-64-28.587-64-64s28.587-64 64-64 64 28.587 64 64-28.587 64-64 64zM213.333 426.667l64-192h469.333l64 192h-597.333z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "drive-eta" + ], + "grid": 24 + }, + "attrs": [], + "properties": { + "id": 697, + "order": 382, + "prevSize": 24, + "code": 58962, + "name": "drive-eta" + }, + "setIdx": 4, + "setId": 5, + "iconIdx": 72 + }, + { + "icon": { + "paths": [ + "M705.28 471.893l-45.227-45.227-208.213 208.213-90.453-90.453-45.227 45.227 135.68 135.68 253.44-253.44zM810.667 128h-42.667v-85.333h-85.333v85.333h-341.333v-85.333h-85.333v85.333h-42.667c-47.147 0-84.907 38.187-84.907 85.333l-0.427 597.333c0 47.147 38.187 85.333 85.333 85.333h597.333c47.147 0 85.333-38.187 85.333-85.333v-597.333c0-47.147-38.187-85.333-85.333-85.333zM810.667 810.667h-597.333v-469.333h597.333v469.333z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "event-available" + ], + "grid": 24 + }, + "attrs": [], + "properties": { + "id": 698, + "order": 380, + "prevSize": 24, + "code": 58963, + "name": "event-available" + }, + "setIdx": 4, + "setId": 5, + "iconIdx": 73 + }, + { + "icon": { + "paths": [ + "M397.227 725.333l104.107-104.107 104.107 104.107 45.227-45.227-104.107-104.107 104.107-104.107-45.227-45.227-104.107 104.107-104.107-104.107-45.227 45.227 104.107 104.107-104.107 104.107 45.227 45.227zM810.667 128h-42.667v-85.333h-85.333v85.333h-341.333v-85.333h-85.333v85.333h-42.667c-47.147 0-84.907 38.187-84.907 85.333l-0.427 597.333c0 47.147 38.187 85.333 85.333 85.333h597.333c47.147 0 85.333-38.187 85.333-85.333v-597.333c0-47.147-38.187-85.333-85.333-85.333zM810.667 810.667h-597.333v-469.333h597.333v469.333z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "event-busy" + ], + "grid": 24 + }, + "attrs": [], + "properties": { + "id": 699, + "order": 379, + "prevSize": 24, + "code": 58964, + "name": "event-busy" + }, + "setIdx": 4, + "setId": 5, + "iconIdx": 74 + }, + { + "icon": { + "paths": [ + "M853.333 256h-341.333l-85.333-85.333h-256c-47.147 0-85.333 38.187-85.333 85.333v512c0 47.147 38.187 85.333 85.333 85.333h682.667c47.147 0 85.333-38.187 85.333-85.333v-426.667c0-47.147-38.187-85.333-85.333-85.333zM579.413 768l-152.747-89.387-152.747 89.387 40.32-173.653-134.827-116.693 177.707-15.36 69.547-163.627 69.333 163.627 177.707 15.36-134.827 116.693 40.533 173.653z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "folder-special" + ], + "grid": 24 + }, + "attrs": [], + "properties": { + "id": 701, + "order": 381, + "prevSize": 24, + "code": 58965, + "name": "folder-special" + }, + "setIdx": 4, + "setId": 5, + "iconIdx": 75 + }, + { + "icon": { + "paths": [ + "M627.413 405.333l97.92-97.92v161.92h21.333l121.813-121.813-91.733-91.52 91.52-91.52-121.6-121.813h-21.333v161.92l-97.92-97.92-30.080 30.080 119.253 119.253-119.253 119.253 30.080 30.080zM768 124.373l40.107 40.107-40.107 40.107v-80.213zM768 307.413l40.107 40.107-40.107 40.107v-80.213zM853.333 661.333c-53.12 0-104.32-8.533-152.32-24.32-14.72-4.693-31.573-1.28-43.307 10.453l-93.867 94.080c-120.96-61.44-219.52-160.213-281.173-280.96l93.867-94.080c11.733-11.733 15.147-28.587 10.453-43.307-15.787-48-24.32-99.413-24.32-152.533 0-23.68-18.987-42.667-42.667-42.667h-149.333c-23.68 0-42.667 18.987-42.667 42.667 0 400.64 324.693 725.333 725.333 725.333 23.68 0 42.667-18.987 42.667-42.667v-149.333c0-23.68-18.987-42.667-42.667-42.667z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "phone-bluetooth-speaker" + ], + "grid": 24 + }, + "attrs": [], + "properties": { + "id": 705, + "order": 288, + "prevSize": 24, + "code": 58967, + "name": "phone-bt" + }, + "setIdx": 4, + "setId": 5, + "iconIdx": 76 + }, + { + "icon": { + "paths": [ + "M768 469.333l213.333-213.333-213.333-213.333v128h-170.667v170.667h170.667v128zM853.333 661.333c-53.12 0-104.32-8.533-152.32-24.32-14.72-4.693-31.573-1.28-43.307 10.453l-93.867 94.080c-120.96-61.44-219.52-160.213-281.173-280.96l93.867-94.080c11.733-11.733 15.147-28.587 10.453-43.307-15.787-48.213-24.32-99.413-24.32-152.533 0-23.68-18.987-42.667-42.667-42.667h-149.333c-23.68 0-42.667 18.987-42.667 42.667 0 400.64 324.693 725.333 725.333 725.333 23.68 0 42.667-18.987 42.667-42.667v-149.333c0-23.68-18.987-42.667-42.667-42.667z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "phone-forwarded" + ], + "grid": 24 + }, + "attrs": [], + "properties": { + "id": 706, + "order": 289, + "prevSize": 24, + "code": 58968, + "name": "phone-forwarded" + }, + "setIdx": 4, + "setId": 5, + "iconIdx": 77 + }, + { + "icon": { + "paths": [ + "M853.333 661.333c-53.12 0-104.32-8.533-152.32-24.32-14.72-4.693-31.573-1.28-43.307 10.453l-93.867 94.080c-120.96-61.44-219.52-160.213-281.173-280.96l93.867-94.080c11.733-11.733 15.147-28.587 10.453-43.307-15.787-48-24.32-99.413-24.32-152.533 0-23.68-18.987-42.667-42.667-42.667h-149.333c-23.68 0-42.667 18.987-42.667 42.667 0 400.64 324.693 725.333 725.333 725.333 23.68 0 42.667-18.987 42.667-42.667v-149.333c0-23.68-18.987-42.667-42.667-42.667zM810.667 512h85.333c0-212.053-171.947-384-384-384v85.333c164.907 0 298.667 133.76 298.667 298.667zM640 512h85.333c0-117.76-95.573-213.333-213.333-213.333v85.333c70.613 0 128 57.387 128 128z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "phone-in-talk" + ], + "grid": 24 + }, + "attrs": [], + "properties": { + "id": 707, + "order": 290, + "prevSize": 24, + "code": 58969, + "name": "phone-in-talk" + }, + "setIdx": 4, + "setId": 5, + "iconIdx": 78 + }, + { + "icon": { + "paths": [ + "M853.333 661.333c-53.12 0-104.533-8.533-152.32-24.32-14.72-4.693-31.573-1.28-43.307 10.453l-93.867 94.080c-120.96-61.44-219.52-160.213-281.173-280.96l93.867-94.080c11.733-11.733 15.147-28.587 10.453-43.307-15.787-48-24.32-99.413-24.32-152.533 0-23.68-18.987-42.667-42.667-42.667h-149.333c-23.467 0-42.667 18.987-42.667 42.667 0 400.64 324.693 725.333 725.333 725.333 23.68 0 42.667-18.987 42.667-42.667v-149.333c0-23.68-18.987-42.667-42.667-42.667zM853.333 170.667v-21.333c0-58.88-47.787-106.667-106.667-106.667s-106.667 47.787-106.667 106.667v21.333c-23.68 0-42.667 19.2-42.667 42.667v170.667c0 23.467 18.987 42.667 42.667 42.667h213.333c23.68 0 42.667-19.2 42.667-42.667v-170.667c0-23.467-18.987-42.667-42.667-42.667zM819.2 170.667h-145.067v-21.333c0-40.107 32.427-72.533 72.533-72.533s72.533 32.427 72.533 72.533v21.333z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "phone-locked" + ], + "grid": 24 + }, + "attrs": [], + "properties": { + "id": 708, + "order": 291, + "prevSize": 24, + "code": 58970, + "name": "phone-locked" + }, + "setIdx": 4, + "setId": 5, + "iconIdx": 79 + }, + { + "icon": { + "paths": [ + "M277.333 234.667l234.667 234.667 298.667-298.667-42.667-42.667-256 256-192-192h149.333v-64h-256v256h64v-149.333zM1011.413 711.253c-129.92-123.52-305.92-199.253-499.413-199.253s-369.493 75.733-499.413 199.253c-7.893 7.893-12.587 18.56-12.587 30.293s4.693 22.4 12.587 30.080l105.6 105.813c7.68 7.68 18.347 12.587 30.293 12.587 11.52 0 22.187-4.693 29.867-12.16 33.707-31.36 72.107-58.027 113.707-79.147 14.080-7.040 23.893-21.547 23.893-38.4v-132.48c61.653-19.84 127.573-30.507 196.053-30.507s134.4 10.667 196.267 30.72v132.48c0 16.853 9.813 31.36 23.893 38.4 41.6 20.907 80 47.573 113.707 79.147 7.68 7.467 18.133 12.16 29.867 12.16s22.4-4.693 30.293-12.587l105.6-105.813c7.68-7.68 12.587-18.347 12.587-30.080s-4.907-22.613-12.8-30.507z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "phone-missed" + ], + "grid": 24 + }, + "attrs": [], + "properties": { + "id": 709, + "order": 292, + "prevSize": 24, + "code": 58971, + "name": "phone-missed" + }, + "setIdx": 4, + "setId": 5, + "iconIdx": 80 + }, + { + "icon": { + "paths": [ + "M725.333 128h-85.333v298.667h85.333v-298.667zM853.333 661.333c-53.12 0-104.32-8.533-152.32-24.32-14.72-4.693-31.573-1.28-43.307 10.453l-93.867 94.080c-120.96-61.44-219.52-160.213-281.173-280.96l93.867-94.080c11.733-11.733 15.147-28.587 10.453-43.307-15.787-48-24.32-99.413-24.32-152.533 0-23.68-18.987-42.667-42.667-42.667h-149.333c-23.68 0-42.667 18.987-42.667 42.667 0 400.64 324.693 725.333 725.333 725.333 23.68 0 42.667-18.987 42.667-42.667v-149.333c0-23.68-18.987-42.667-42.667-42.667zM810.667 128v298.667h85.333v-298.667h-85.333z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "phone-paused" + ], + "grid": 24 + }, + "attrs": [], + "properties": { + "id": 710, + "order": 293, + "prevSize": 24, + "code": 58972, + "name": "phone-paused" + }, + "setIdx": 4, + "setId": 5, + "iconIdx": 81 + }, + { + "icon": { + "paths": [ + "M768 85.333h-341.333l-255.147 256-0.853 512c0 46.933 38.4 85.333 85.333 85.333h512c46.933 0 85.333-38.4 85.333-85.333v-682.667c0-46.933-38.4-85.333-85.333-85.333zM512 341.333h-85.333v-170.667h85.333v170.667zM640 341.333h-85.333v-170.667h85.333v170.667zM768 341.333h-85.333v-170.667h85.333v170.667z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "sd-card" + ], + "grid": 24 + }, + "attrs": [], + "properties": { + "id": 713, + "order": 378, + "prevSize": 24, + "code": 58973, + "name": "sd-card" + }, + "setIdx": 4, + "setId": 5, + "iconIdx": 82 + }, + { + "icon": { + "paths": [ + "M426.667 270.933v-89.173c-34.133 8.747-65.92 22.827-95.147 40.96l62.507 62.507c10.453-5.333 21.333-10.453 32.64-14.293zM122.24 230.827l100.48 100.48c-32.853 52.48-52.053 114.133-52.053 180.693 0 94.293 38.613 179.2 100.48 240.853l-100.48 100.48h256v-256l-95.36 95.36c-46.507-46.293-75.307-110.080-75.307-180.693 0-42.667 10.667-82.773 29.227-118.187l344.96 344.96c-10.453 5.547-21.333 10.453-32.64 14.507v88.96c34.133-8.747 65.92-22.827 95.147-40.96l100.693 100.693 54.4-54.4-671.36-671.147-54.187 54.4zM853.333 170.667h-256v256l95.36-95.36c46.507 46.293 75.307 110.080 75.307 180.693 0 42.667-10.667 82.773-29.227 118.187l62.507 62.507c32.853-52.48 52.053-114.133 52.053-180.693 0-94.293-38.613-179.2-100.48-240.853l100.48-100.48z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "sync-disabled" + ], + "grid": 24 + }, + "attrs": [], + "properties": { + "id": 718, + "order": 421, + "prevSize": 24, + "code": 58914, + "name": "sync-disabled" + }, + "setIdx": 4, + "setId": 5, + "iconIdx": 83 + }, + { + "icon": { + "paths": [ + "M128 512c0 94.293 38.827 179.2 100.48 240.853l-100.48 100.48h256v-256l-95.36 95.36c-46.507-46.293-75.307-110.080-75.307-180.693 0-111.36 71.253-205.867 170.667-241.067v-89.173c-147.2 37.973-256 171.307-256 330.24zM469.333 725.333h85.333v-85.333h-85.333v85.333zM896 170.667h-256v256l95.36-95.36c46.507 46.293 75.307 110.080 75.307 180.693 0 111.36-71.253 205.867-170.667 241.067v88.96c147.2-37.76 256-171.093 256-330.027 0-94.293-38.827-179.2-100.48-240.853l100.48-100.48zM469.333 554.667h85.333v-256h-85.333v256z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "sync-problem" + ], + "grid": 24 + }, + "attrs": [], + "properties": { + "id": 719, + "order": 422, + "prevSize": 24, + "code": 58915, + "name": "sync-problem" + }, + "setIdx": 4, + "setId": 5, + "iconIdx": 84 + }, + { + "icon": { + "paths": [ + "M938.667 170.667v-21.333c0-58.88-47.787-106.667-106.667-106.667s-106.667 47.787-106.667 106.667v21.333c-23.68 0-42.667 19.2-42.667 42.667v170.667c0 23.467 18.987 42.667 42.667 42.667h213.333c23.68 0 42.667-19.2 42.667-42.667v-170.667c0-23.467-18.987-42.667-42.667-42.667zM904.533 170.667h-145.067v-21.333c0-40.107 32.427-72.533 72.533-72.533s72.533 32.427 72.533 72.533v21.333zM807.467 512c1.707 14.080 3.2 28.16 3.2 42.667 0 88.747-34.133 169.387-89.813 230.187-10.88-34.56-42.88-59.52-80.853-59.52h-42.667v-128c0-23.467-19.2-42.667-42.667-42.667h-256v-85.333h85.333c23.467 0 42.667-19.2 42.667-42.667v-85.333h85.333c47.147 0 85.333-38.187 85.333-85.333v-108.373c-40.32-12.8-83.413-19.627-128-19.627-235.733 0-426.667 190.933-426.667 426.667s190.933 426.667 426.667 426.667 426.667-190.933 426.667-426.667c0-14.507-0.853-28.587-2.133-42.667h-86.4zM426.667 893.013c-168.32-20.907-298.667-164.267-298.667-338.347 0-26.24 3.2-51.84 8.96-76.373l204.373 204.373v42.667c0 47.147 38.187 85.333 85.333 85.333v82.347z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "vpn-lock" + ], + "grid": 24 + }, + "attrs": [], + "properties": { + "id": 725, + "order": 419, + "prevSize": 24, + "code": 58916, + "name": "vpn-lock" + }, + "setIdx": 4, + "setId": 5, + "iconIdx": 85 + }, + { + "icon": { + "paths": [ + "M512 85.333c-235.733 0-426.667 190.933-426.667 426.667s190.933 426.667 426.667 426.667 426.667-190.933 426.667-426.667-190.933-426.667-426.667-426.667zM469.333 850.347c-168.32-20.907-298.667-164.267-298.667-338.347 0-26.24 3.2-51.84 8.96-76.373l204.373 204.373v42.667c0 47.147 38.187 85.333 85.333 85.333v82.347zM763.52 742.187c-10.88-34.56-42.88-59.52-80.853-59.52h-42.667v-128c0-23.467-19.2-42.667-42.667-42.667h-256v-85.333h85.333c23.467 0 42.667-19.2 42.667-42.667v-85.333h85.333c47.147 0 85.333-38.187 85.333-85.333v-17.707c125.013 50.56 213.333 173.013 213.333 316.373 0 88.747-34.133 169.387-89.813 230.187z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "publ" + ], + "grid": 24 + }, + "attrs": [], + "properties": { + "id": 746, + "order": 418, + "prevSize": 24, + "code": 58917, + "name": "vpn-publ" + }, + "setIdx": 4, + "setId": 5, + "iconIdx": 86 + }, + { + "icon": { + "paths": [ + "M213.333 562.347v170.667l298.667 162.987 298.667-162.987v-170.667l-298.667 162.987-298.667-162.987zM512 128l-469.333 256 469.333 256 384-209.493v294.827h85.333v-341.333l-469.333-256z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "school" + ], + "grid": 24 + }, + "attrs": [], + "properties": { + "id": 747, + "order": 401, + "prevSize": 24, + "code": 58911, + "name": "school" + }, + "setIdx": 4, + "setId": 5, + "iconIdx": 87 + }, + { + "icon": { + "paths": [ + "M891.802 312.781c13.926-13.722 36.301-13.722 50.125 0s13.875 35.891 0 49.613l-404.89 400.896c-13.824 13.722-36.198 13.722-50.125 0l-404.89-400.896c-13.824-13.722-13.824-35.891 0-49.613 13.875-13.722 36.301-13.722 50.125 0l379.853 365.619 379.802-365.619z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "chevron-thin-down" + ], + "grid": 20 + }, + "attrs": [], + "properties": { + "id": 40, + "order": 430, + "prevSize": 24, + "code": 58987, + "name": "chevron-thin-down" + }, + "setIdx": 5, + "setId": 4, + "iconIdx": 0 + }, + { + "icon": { + "paths": [ + "M711.219 891.802c13.722 13.926 13.722 36.301 0 50.125s-35.891 13.875-49.613 0l-400.896-404.89c-13.722-13.824-13.722-36.198 0-50.125l400.896-404.89c13.722-13.824 35.891-13.824 49.613 0 13.722 13.875 13.722 36.301 0 50.125l-365.619 379.853 365.619 379.802z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "chevron-thin-left" + ], + "grid": 20 + }, + "attrs": [], + "properties": { + "id": 41, + "order": 431, + "prevSize": 24, + "code": 59031, + "name": "chevron-thin-left" + }, + "setIdx": 5, + "setId": 4, + "iconIdx": 1 + }, + { + "icon": { + "paths": [ + "M678.4 512l-365.619-379.904c-13.722-13.824-13.722-36.198 0-50.125 13.722-13.824 35.891-13.824 49.613 0l400.896 404.89c13.722 13.875 13.722 36.301 0 50.125l-400.896 404.89c-13.722 13.875-35.891 13.824-49.613 0-13.722-13.773-13.722-36.198 0-50.125l365.619-379.75z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "chevron-thin-right" + ], + "grid": 20 + }, + "attrs": [], + "properties": { + "id": 42, + "order": 432, + "prevSize": 24, + "code": 59035, + "name": "chevron-thin-right" + }, + "setIdx": 5, + "setId": 4, + "iconIdx": 2 + }, + { + "icon": { + "paths": [ + "M132.198 711.219c-13.926 13.722-36.301 13.722-50.125 0s-13.875-35.891 0-49.613l404.89-400.896c13.824-13.722 36.198-13.722 50.125 0l404.89 400.896c13.824 13.722 13.824 35.891 0 49.613-13.875 13.722-36.301 13.722-50.074 0l-379.904-365.619-379.802 365.619z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "chevron-thin-up" + ], + "grid": 20 + }, + "attrs": [], + "properties": { + "id": 43, + "order": 433, + "prevSize": 24, + "code": 59036, + "name": "chevron-thin-up" + }, + "setIdx": 5, + "setId": 4, + "iconIdx": 3 + }, + { + "icon": { + "paths": [ + "M839.68 204.8c0-67.891-54.989-122.88-122.88-122.88s-122.88 54.989-122.88 122.88c0 49.203 29.082 91.341 70.861 110.95-4.198 81.101-65.024 108.646-170.752 148.275-44.544 16.742-93.645 35.277-135.629 63.181v-210.995c42.24-19.456 71.68-61.901 71.68-111.411 0-67.891-54.989-122.88-122.88-122.88s-122.88 54.989-122.88 122.88c0 49.51 29.491 91.955 71.68 111.411v391.629c-42.24 19.405-71.68 61.85-71.68 111.36 0 67.891 54.989 122.88 122.88 122.88s122.88-55.040 122.88-122.88c0-49.203-29.082-91.341-70.861-110.95 4.198-81.050 65.075-108.646 170.752-148.275 103.936-39.014 232.499-87.603 237.568-243.507 42.445-19.354 72.141-61.952 72.141-111.667zM307.2 133.888c39.117 0 70.861 31.693 70.861 70.912 0 39.117-31.744 70.912-70.861 70.912-39.168 0-70.861-31.795-70.861-70.912 0-39.219 31.693-70.912 70.861-70.912zM307.2 890.112c-39.219 0-70.912-31.795-70.912-70.912 0-39.219 31.693-70.912 70.912-70.912 39.117 0 70.861 31.693 70.861 70.912 0 39.117-31.744 70.912-70.861 70.912zM716.8 275.712c-39.219 0-70.912-31.795-70.912-70.912 0-39.219 31.693-70.912 70.912-70.912 39.117 0 70.861 31.693 70.861 70.912 0 39.117-31.744 70.912-70.861 70.912z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "flow-branch" + ], + "grid": 20 + }, + "attrs": [], + "properties": { + "id": 65, + "order": 435, + "prevSize": 24, + "code": 59037, + "name": "flow-branch" + }, + "setIdx": 5, + "setId": 4, + "iconIdx": 4 + }, + { + "icon": { + "paths": [ + "M716.8 747.52c-49.51 0-91.955 29.491-111.411 71.68h-170.189c-42.394 0-76.8-34.406-76.8-76.8v-197.12c23.347 11.162 49.203 17.92 76.8 17.92h170.189c19.456 42.189 61.85 71.68 111.411 71.68 67.891 0 122.88-55.040 122.88-122.88s-54.989-122.88-122.88-122.88c-49.51 0-91.955 29.491-111.411 71.68h-170.189c-42.394 0-76.8-34.406-76.8-76.8v-118.989c42.24-19.456 71.68-61.901 71.68-111.411 0-67.891-54.989-122.88-122.88-122.88s-122.88 54.989-122.88 122.88c0 49.51 29.491 91.955 71.68 111.411v477.389c0 98.97 80.23 179.2 179.2 179.2h170.189c19.456 42.189 61.85 71.68 111.411 71.68 67.891 0 122.88-55.040 122.88-122.88s-54.989-122.88-122.88-122.88zM716.8 441.088c39.117 0 70.861 31.693 70.861 70.912 0 39.117-31.744 70.912-70.861 70.912-39.219 0-70.912-31.795-70.912-70.912 0.051-39.219 31.744-70.912 70.912-70.912zM307.2 82.688c39.117 0 70.861 31.693 70.861 70.912 0 39.117-31.744 70.912-70.861 70.912-39.168 0-70.861-31.795-70.861-70.912 0-39.219 31.693-70.912 70.861-70.912zM716.8 941.312c-39.219 0-70.912-31.795-70.912-70.912 0-39.219 31.693-70.912 70.912-70.912 39.117 0 70.861 31.693 70.861 70.912 0 39.117-31.744 70.912-70.861 70.912z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "flow-cascade" + ], + "grid": 20 + }, + "attrs": [], + "properties": { + "id": 66, + "order": 436, + "prevSize": 24, + "code": 59038, + "name": "flow-cascade" + }, + "setIdx": 5, + "setId": 4, + "iconIdx": 5 + }, + { + "icon": { + "paths": [ + "M563.2 707.789v-391.578c42.24-19.456 71.68-61.85 71.68-111.411 0-67.891-54.989-122.88-122.88-122.88s-122.88 54.989-122.88 122.88c0 49.51 29.491 91.955 71.68 111.411v391.629c-42.24 19.405-71.68 61.85-71.68 111.36 0 67.891 54.989 122.88 122.88 122.88s122.88-55.040 122.88-122.88c0-49.51-29.44-91.955-71.68-111.411zM512 133.888c39.117 0 70.861 31.693 70.861 70.912 0 39.117-31.744 70.912-70.861 70.912-39.168 0-70.861-31.795-70.861-70.912 0-39.219 31.693-70.912 70.861-70.912zM512 890.112c-39.219 0-70.912-31.795-70.912-70.912 0-39.219 31.693-70.912 70.912-70.912 39.117 0 70.861 31.693 70.861 70.912 0 39.117-31.744 70.912-70.861 70.912z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "flow-line" + ], + "grid": 20 + }, + "attrs": [], + "properties": { + "id": 67, + "order": 437, + "prevSize": 24, + "code": 59039, + "name": "flow-line" + }, + "setIdx": 5, + "setId": 4, + "iconIdx": 6 + }, + { + "icon": { + "paths": [ + "M430.080 204.8c0-67.891-54.989-122.88-122.88-122.88s-122.88 54.989-122.88 122.88c0 49.51 29.491 91.955 71.68 111.411v391.629c-42.24 19.405-71.68 61.85-71.68 111.36 0 67.891 54.989 122.88 122.88 122.88s122.88-55.040 122.88-122.88c0-49.51-29.491-91.955-71.68-111.411v-391.578c42.24-19.456 71.68-61.901 71.68-111.411zM378.061 819.2c0 39.117-31.744 70.912-70.861 70.912-39.219 0-70.912-31.795-70.912-70.912 0-39.219 31.693-70.912 70.912-70.912 39.117 0 70.861 31.693 70.861 70.912zM307.2 275.712c-39.168 0-70.861-31.795-70.861-70.912 0-39.219 31.693-70.912 70.912-70.912 39.117 0 70.861 31.693 70.861 70.912-0.051 39.117-31.795 70.912-70.912 70.912zM768 707.789v-391.578c42.24-19.456 71.68-61.85 71.68-111.411 0-67.891-54.989-122.88-122.88-122.88s-122.88 54.989-122.88 122.88c0 49.51 29.491 91.955 71.68 111.411v391.629c-42.24 19.456-71.68 61.85-71.68 111.411 0 67.891 54.989 122.88 122.88 122.88s122.88-55.040 122.88-122.88c0-49.562-29.44-92.006-71.68-111.462zM645.939 204.8c0-39.219 31.693-70.912 70.912-70.912 39.117 0 70.861 31.693 70.861 70.912 0 39.117-31.744 70.912-70.861 70.912-39.219 0-70.912-31.795-70.912-70.912zM716.8 890.112c-39.219 0-70.912-31.795-70.912-70.912 0-39.219 31.693-70.912 70.912-70.912 39.117 0 70.861 31.693 70.861 70.912 0 39.117-31.744 70.912-70.861 70.912z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "flow-parallel" + ], + "grid": 20 + }, + "attrs": [], + "properties": { + "id": 68, + "order": 438, + "prevSize": 24, + "code": 59040, + "name": "flow-parallel" + }, + "setIdx": 5, + "setId": 4, + "iconIdx": 7 + }, + { + "icon": { + "paths": [ + "M921.6 758.989v-118.989c0-98.97-80.23-179.2-179.2-179.2h-102.4c-42.394 0-76.8-34.406-76.8-76.8v-118.989c42.24-19.456 71.68-61.85 71.68-111.411 0-67.891-54.989-122.88-122.88-122.88s-122.88 54.989-122.88 122.88c0 49.51 29.491 91.955 71.68 111.411v118.989c0 42.394-34.406 76.8-76.8 76.8h-102.4c-98.97 0-179.2 80.23-179.2 179.2v118.989c-42.24 19.456-71.68 61.901-71.68 111.411 0 67.891 54.989 122.88 122.88 122.88s122.88-55.040 122.88-122.88c0-49.51-29.491-91.955-71.68-111.411v-118.989c0-42.394 34.406-76.8 76.8-76.8h102.4c27.597 0 53.453-6.758 76.8-17.92v213.709c-42.24 19.456-71.68 61.901-71.68 111.411 0 67.891 54.989 122.88 122.88 122.88s122.88-55.040 122.88-122.88c0-49.51-29.491-91.955-71.68-111.411v-213.709c23.347 11.162 49.203 17.92 76.8 17.92h102.4c42.394 0 76.8 34.406 76.8 76.8v118.989c-42.24 19.456-71.68 61.85-71.68 111.411 0 67.891 54.989 122.88 122.88 122.88s122.88-55.040 122.88-122.88c0-49.51-29.44-91.955-71.68-111.411zM512 82.688c39.117 0 70.861 31.693 70.861 70.912 0 39.117-31.744 70.912-70.861 70.912-39.168 0-70.861-31.795-70.861-70.912 0-39.219 31.693-70.912 70.861-70.912zM153.6 941.312c-39.219 0-70.912-31.795-70.912-70.912 0-39.219 31.693-70.912 70.912-70.912 39.117 0 70.861 31.693 70.861 70.912 0 39.117-31.744 70.912-70.861 70.912zM512 941.312c-39.219 0-70.912-31.795-70.912-70.912 0-39.219 31.693-70.912 70.912-70.912 39.117 0 70.861 31.693 70.861 70.912 0 39.117-31.744 70.912-70.861 70.912zM870.4 941.312c-39.219 0-70.912-31.795-70.912-70.912 0-39.219 31.693-70.912 70.912-70.912 39.117 0 70.861 31.693 70.861 70.912 0 39.117-31.744 70.912-70.861 70.912z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "flow-tree" + ], + "grid": 20 + }, + "attrs": [], + "properties": { + "id": 69, + "order": 439, + "prevSize": 24, + "code": 59041, + "name": "flow-tree" + }, + "setIdx": 5, + "setId": 4, + "iconIdx": 8 + }, + { + "icon": { + "paths": [ + "M135.322 325.478c89.446-76.8 160.102-137.523 351.846-29.184 92.109 52.019 166.4 71.68 228.198 71.578 108.288 0 178.483-60.211 239.155-112.282 21.658-18.586 24.422-51.61 6.246-73.677-18.278-22.118-50.534-24.986-72.192-6.4-89.395 76.902-160.102 137.626-351.846 29.184-253.338-143.002-372.019-41.114-467.354 40.806-21.606 18.586-24.371 51.507-6.195 73.677 18.227 22.016 50.483 24.934 72.141 6.298zM888.576 436.992c-89.395 76.8-160.102 137.626-351.846 29.184-253.338-143.104-372.019-41.165-467.354 40.704-21.606 18.586-24.422 51.61-6.195 73.677 18.176 22.118 50.483 24.986 72.141 6.4 89.446-76.851 160.102-137.574 351.846-29.286 92.109 52.122 166.4 71.68 228.198 71.68 108.288 0 178.483-60.211 239.155-112.384 21.658-18.586 24.422-51.61 6.246-73.626-18.227-22.17-50.534-24.934-72.192-6.349zM888.576 698.419c-89.395 76.902-160.102 137.626-351.846 29.286-253.338-143.104-372.019-41.216-467.354 40.704-21.606 18.586-24.422 51.61-6.195 73.677 18.176 22.118 50.483 24.883 72.141 6.298 89.446-76.8 160.102-137.472 351.846-29.184 92.109 52.019 166.4 71.68 228.198 71.68 108.288 0 178.483-60.314 239.155-112.384 21.658-18.586 24.422-51.61 6.246-73.677-18.227-22.118-50.534-24.934-72.192-6.4z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "air" + ], + "grid": 20 + }, + "attrs": [], + "properties": { + "id": 90, + "order": 434, + "prevSize": 24, + "code": 59042, + "name": "air" + }, + "setIdx": 5, + "setId": 4, + "iconIdx": 9 + }, + { + "icon": { + "paths": [ + "M512 512c27.034 0 52.531 5.325 77.005 13.107l-311.142-466.688c-3.021-4.506-8.038-7.219-13.466-7.219h-182.067c-5.99 0-9.626 6.707-6.246 11.725l319.027 478.566c35.174-18.227 74.547-29.491 116.89-29.491zM941.67 51.2h-182.067c-5.427 0-10.445 2.714-13.466 7.219l-195.738 293.581 102.4 153.6 295.117-442.675c3.328-5.018-0.256-11.725-6.246-11.725zM512 563.2c-113.101 0-204.8 91.699-204.8 204.8s91.699 204.8 204.8 204.8 204.8-91.699 204.8-204.8c0-113.101-91.699-204.8-204.8-204.8zM620.134 773.99c3.174 3.277 2.662 8.090-1.126 10.65s-4.864 7.834-2.509 11.725c2.406 3.891 0.922 8.448-3.328 10.189s-6.4 6.656-4.864 10.957-0.87 8.448-5.325 9.267-7.629 5.171-7.014 9.677-2.611 8.090-7.168 7.936c-4.557-0.154-8.55 3.482-8.909 7.987s-4.25 7.373-8.653 6.298-9.114 1.587-10.394 5.99-5.683 6.349-9.779 4.352c-4.096-1.997-9.216-0.307-11.366 3.686s-6.861 5.018-10.496 2.202-8.96-2.253-11.878 1.229-7.731 3.482-10.701 0-8.294-4.045-11.878-1.229-8.294 1.792-10.496-2.202-7.27-5.683-11.366-3.686c-4.096 1.997-8.499 0-9.779-4.352s-5.939-7.066-10.394-5.99-8.346-1.741-8.653-6.298-4.301-8.141-8.858-8.038c-4.557 0.154-7.782-3.43-7.168-7.936s-2.56-8.858-7.014-9.677-6.912-4.966-5.325-9.267-0.666-9.216-4.864-10.957-5.683-6.298-3.328-10.189c2.406-3.891 1.28-9.165-2.509-11.725s-4.25-7.373-1.126-10.65c3.174-3.277 3.174-8.653 0-11.981s-2.662-8.090 1.126-10.65 4.864-7.834 2.509-11.725c-2.406-3.891-0.922-8.448 3.328-10.189s6.4-6.656 4.864-10.957 0.87-8.448 5.325-9.267 7.629-5.171 7.014-9.677 2.611-8.090 7.168-7.936c4.557 0.154 8.55-3.482 8.909-7.987s4.25-7.373 8.653-6.298 9.114-1.587 10.394-5.99 5.683-6.349 9.779-4.352c4.096 1.997 9.216 0.307 11.366-3.686s6.861-5.018 10.496-2.202 8.96 2.253 11.878-1.229 7.731-3.482 10.701 0 8.294 4.045 11.878 1.229 8.294-1.792 10.496 2.202 7.27 5.683 11.366 3.686c4.096-1.997 8.499 0 9.779 4.352s5.939 7.066 10.394 5.99 8.346 1.741 8.653 6.298 4.352 8.141 8.909 7.987c4.557-0.154 7.782 3.43 7.168 7.936s2.56 8.858 7.014 9.677 6.912 4.966 5.325 9.267 0.666 9.216 4.864 10.957 5.683 6.298 3.328 10.189c-2.406 3.891-1.28 9.165 2.509 11.725s4.25 7.373 1.126 10.65-3.226 8.755-0.051 12.032z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "medal" + ], + "grid": 20 + }, + "attrs": [], + "properties": { + "id": 222, + "order": 441, + "prevSize": 24, + "code": 59043, + "name": "medal" + }, + "setIdx": 5, + "setId": 4, + "iconIdx": 10 + }, + { + "icon": { + "paths": [ + "M954.368 134.861c-17.613 6.195-886.835 312.525-903.987 318.566-14.541 5.12-17.766 17.664-0.512 24.525 20.531 8.243 194.355 77.875 194.355 77.875v0l115.2 46.131c0 0 554.906-407.45 562.381-412.979 7.578-5.53 16.282 4.864 10.803 10.803-5.478 5.99-402.995 435.866-402.995 435.866v0.102l-23.142 25.754 30.669 16.486c0 0 238.080 128.205 255.078 137.318 14.899 7.987 34.202 1.382 38.502-17.101 5.069-21.811 145.664-627.763 148.787-641.28 4.045-17.562-7.578-28.262-25.139-22.067zM358.4 878.694c0 12.595 7.117 16.128 16.947 7.219 12.851-11.725 145.92-131.123 145.92-131.123l-162.867-84.173v208.077z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "paper-plane" + ], + "grid": 20 + }, + "attrs": [], + "properties": { + "id": 242, + "order": 440, + "prevSize": 24, + "code": 59044, + "name": "paper-plane" + }, + "setIdx": 5, + "setId": 4, + "iconIdx": 11 + }, + { + "icon": { + "paths": [ + "M348.16 512c0 90.522 73.37 163.891 163.84 163.891 90.522 0 163.789-73.37 163.789-163.891 0-90.47-73.267-163.84-163.789-163.84s-163.84 73.37-163.84 163.84zM231.885 450.56c28.109-128.819 142.797-225.28 280.115-225.28 79.155 0 150.784 32.102 202.701 83.968 24.013 24.013 62.925 24.013 86.886 0 24.013-24.013 24.013-62.925 0-86.886-74.086-74.086-176.486-119.962-289.587-119.962-183.398 0-338.637 120.525-390.81 286.771h-121.19v122.829h163.789c51.149 0 63.744-41.626 68.096-61.44zM860.16 512c-51.149 0-63.744 41.677-68.045 61.389-28.109 128.819-142.797 225.28-280.115 225.28-79.206 0-150.835-32.102-202.701-84.019-24.013-24.013-62.925-24.013-86.938 0-23.962 24.013-23.962 62.925 0 86.886 74.138 74.189 176.538 120.064 289.638 120.064 183.398 0 338.586-120.627 390.81-286.72h121.19v-122.88h-163.84z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "shareable" + ], + "grid": 20 + }, + "attrs": [], + "properties": { + "id": 270, + "order": 442, + "prevSize": 24, + "code": 59045, + "name": "shareable" + }, + "setIdx": 5, + "setId": 4, + "iconIdx": 12 + }, + { + "icon": { + "paths": [ + "M313.498 371.2l40.499-268.8h-210.637l-88.013 230.4c-2.714 8.192-4.147 16.691-4.147 25.6 0 56.525 58.88 102.4 131.635 102.4 67.072 0 122.522-39.117 130.662-89.6zM512 460.8c72.704 0 131.635-45.875 131.635-102.4 0-2.099-0.154-4.198-0.256-6.195l-26.061-249.805h-210.637l-26.112 249.6c-0.102 2.099-0.205 4.198-0.205 6.4 0 56.525 58.931 102.4 131.635 102.4zM768 514.355v202.445h-512v-202.138c-22.426 8.090-47.104 12.698-73.165 12.698-9.984 0-19.661-1.178-29.235-2.509v325.069c0 39.424 32.205 71.68 71.578 71.68h573.542c39.424 0 71.68-32.307 71.68-71.68v-325.018c-9.626 1.28-19.251 2.509-29.235 2.509-25.907-0.051-50.688-4.762-73.165-13.056zM968.704 332.8l-88.115-230.4h-210.586l40.448 268.39c7.885 50.688 63.334 90.010 130.714 90.010 72.704 0 131.635-45.875 131.635-102.4 0-8.909-1.434-17.408-4.096-25.6z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "shop" + ], + "grid": 20 + }, + "attrs": [], + "properties": { + "id": 272, + "order": 443, + "prevSize": 24, + "code": 59046, + "name": "shop" + }, + "setIdx": 5, + "setId": 4, + "iconIdx": 13 + }, + { + "icon": { + "paths": [ + "M942.029 358.4h-256.358l-92.774 92.774c-23.194 23.194-54.067 35.942-86.835 35.942-32.87 0-63.693-12.8-86.938-35.994-23.142-23.142-35.942-53.965-35.994-86.784 0-1.997 0.512-3.942 0.563-5.939h-301.773c-16.998 0-30.72 13.722-30.72 30.72v122.88h921.6v-122.88c0-16.998-13.824-30.72-30.771-30.72zM551.322 409.549l258.816-258.816c12.032-11.981 12.134-31.386 0.102-43.469l-47.104-47.104c-11.981-11.981-31.437-11.93-43.52 0l-258.816 258.867c-24.986 24.986-24.986 65.536 0 90.522 24.986 24.934 65.485 24.986 90.522 0zM195.738 884.275c4.966 20.531 26.368 37.325 47.462 37.325h537.6c21.094 0 42.496-16.794 47.462-37.325l77.978-321.075h-788.48l77.978 321.075z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "shopping-basket" + ], + "grid": 20 + }, + "attrs": [], + "properties": { + "id": 274, + "order": 444, + "prevSize": 24, + "code": 59047, + "name": "shopping-basket2" + }, + "setIdx": 5, + "setId": 4, + "iconIdx": 14 + }, + { + "icon": { + "paths": [ + "M325.222 647.066c6.81 18.227-181.197 186.061-71.526 322.099 25.651 31.795 112.691-152.32 236.288-235.622 68.147-46.029 226.816-143.923 226.816-198.042v-350.31c0-65.075-251.597-133.99-442.778-133.99-70.093 0-171.622 439.091-171.622 508.877 0 69.99 216.115 68.762 222.822 86.989zM768 642.202c33.69 0 153.6-20.48 153.6-159.898v-248.218c0-139.315-119.91-154.675-153.6-154.675-33.638 0 51.2 29.286 51.2 115.712v326.298c0 90.522-84.838 120.781-51.2 120.781z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "thumbs-down" + ], + "grid": 20 + }, + "attrs": [], + "properties": { + "id": 297, + "order": 445, + "prevSize": 24, + "code": 59048, + "name": "thumbs-down" + }, + "setIdx": 5, + "setId": 4, + "iconIdx": 15 + }, + { + "icon": { + "paths": [ + "M698.778 376.934c-6.81-18.176 181.197-186.061 71.578-322.099-25.651-31.795-112.691 152.32-236.288 235.674-68.198 45.978-226.867 143.872-226.867 197.99v350.31c0 65.075 251.597 133.99 442.778 133.99 70.093 0 171.622-439.091 171.622-508.826 0-70.042-216.115-68.813-222.822-87.040zM256 381.798c-33.69 0-153.6 20.48-153.6 159.898v248.218c0 139.315 119.91 154.675 153.6 154.675 33.638 0-51.2-29.286-51.2-115.712v-326.298c0-90.522 84.838-120.781 51.2-120.781z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "thumbs-up" + ], + "grid": 20 + }, + "attrs": [], + "properties": { + "id": 298, + "order": 446, + "prevSize": 24, + "code": 59049, + "name": "thumbs-up" + }, + "setIdx": 5, + "setId": 4, + "iconIdx": 16 + }, + { + "icon": { + "paths": [ + "M512 618.394c122.368 0 224.87-41.574 231.066-95.898-18.227-50.995-38.093-106.701-57.6-161.382-13.517 38.963-88.32 66.611-173.466 66.611s-159.949-27.648-173.466-66.611c-19.507 54.682-39.373 110.387-57.549 161.382 6.195 54.323 108.646 95.898 231.014 95.898zM512 275.098c57.549 0 110.95-17.818 126.618-45.517-21.555-60.518-40.038-112.486-51.763-145.203-7.782-21.862-43.059-33.178-74.854-33.178s-67.072 11.315-74.854 33.178c-11.674 32.717-30.208 84.685-51.763 145.203 15.667 27.699 69.12 45.517 126.618 45.517zM961.536 668.979l-192.256-77.517 22.17 61.798c-1.126 65.485-128.205 117.709-279.45 117.709-151.194 0-278.374-52.173-279.45-117.709l22.17-61.798-192.256 77.517c-53.914 21.709-56.218 61.901-5.018 89.293l361.574 193.894c51.098 27.392 134.81 27.392 185.958 0l361.626-193.894c51.149-27.392 48.845-67.584-5.069-89.293z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "traffic-cone" + ], + "grid": 20 + }, + "attrs": [], + "properties": { + "id": 303, + "order": 447, + "prevSize": 24, + "code": 59050, + "name": "traffic-cone" + }, + "setIdx": 5, + "setId": 4, + "iconIdx": 17 + }, + { + "icon": { + "paths": [ + "M505.958 465.562c-26.163 210.688-159.795 248.166-159.795 394.65 0 90.419 75.93 163.789 165.837 163.789s165.786-73.421 165.786-163.789c0-146.483-133.632-183.962-159.795-394.65-0.819-6.298-11.213-6.298-12.032-0zM198.81 4.762c-26.163 210.688-159.795 248.115-159.795 394.65 0 90.368 75.878 163.789 165.786 163.789s165.786-73.421 165.786-163.789c0-146.483-133.632-183.962-159.795-394.65-0.768-6.298-11.213-6.298-11.981 0zM813.21 4.762c-26.163 210.688-159.795 248.166-159.795 394.65 0 90.368 75.878 163.789 165.786 163.789s165.786-73.421 165.786-163.789c0-146.483-133.632-183.962-159.795-394.65-0.819-6.298-11.213-6.298-11.981 0z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "water" + ], + "grid": 20 + }, + "attrs": [], + "properties": { + "id": 317, + "order": 460, + "prevSize": 24, + "code": 59051, + "name": "water" + }, + "setIdx": 5, + "setId": 4, + "iconIdx": 18 + }, + { + "icon": { + "paths": [ + "M645.12 153.6c-100.659 0-191.488 41.626-256.614 108.493-19.661-3.994-39.987-6.093-60.826-6.093-169.677 0-307.2 137.523-307.2 307.2s137.523 307.2 307.2 307.2h317.44c197.939 0 358.4-160.461 358.4-358.4s-160.461-358.4-358.4-358.4zM327.68 805.274c-64.666 0-125.44-25.19-171.213-70.912-45.67-45.722-70.861-106.547-70.861-171.162s25.19-125.44 70.912-171.162c45.722-45.722 106.496-70.912 171.162-70.912s125.44 25.19 171.213 70.912l95.949 96c13.978 13.978 13.978 36.659 0 50.688-14.029 14.029-36.762 13.978-50.688 0l-95.949-96.051c-64.41-64.307-176.589-64.307-240.998 0-32.205 32.256-49.92 75.008-49.92 120.525s17.715 88.269 49.92 120.525c40.192 40.141 98.97 55.194 153.139 45.261 16.589 21.709 35.277 41.728 56.32 59.136-28.006 11.059-58.010 17.152-88.986 17.152zM854.477 721.357c-55.962 55.91-130.304 86.733-209.357 86.733-79.104 0-153.446-30.822-209.408-86.733l-138.701-138.701c-13.978-13.978-13.978-36.71 0-50.688s36.71-13.978 50.688 0l138.701 138.701c42.394 42.394 98.765 65.741 158.72 65.741s116.275-23.347 158.669-65.741 65.741-98.765 65.741-158.669-23.347-116.275-65.741-158.669-98.714-65.741-158.669-65.741c-44.698 0-87.398 13.056-123.802 37.222-19.507-15.821-41.062-29.133-64.051-39.885 52.992-43.93 118.221-69.069 187.904-69.069 79.053 0 153.395 30.822 209.357 86.733 55.962 55.962 86.733 130.304 86.733 209.357s-30.822 153.498-86.784 209.408z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "creative-cloud" + ], + "grid": 20 + }, + "attrs": [], + "properties": { + "id": 322, + "order": 448, + "prevSize": 24, + "code": 59052, + "name": "creative-cloud" + }, + "setIdx": 5, + "setId": 4, + "iconIdx": 19 + }, + { + "icon": { + "paths": [ + "M312.781 46.182l-292.301 182.016 200.243 167.885 291.277-189.082-199.219-160.819zM688.742 818.79c-5.222 0-10.394-1.69-14.592-5.222l-162.15-134.554-162.15 134.605c-4.198 3.482-9.421 5.222-14.592 5.222-4.352 0-8.704-1.178-12.493-3.686l-120.115-78.49v46.285l309.35 194.867 309.35-194.918v-46.285l-120.115 78.49c-3.789 2.509-8.141 3.686-12.493 3.686zM1003.52 228.198l-292.352-182.016-199.168 160.819 291.226 189.082 200.294-167.885zM512 578.099l180.634 149.914 288.819-188.826-178.227-143.104-291.226 182.016zM331.366 728.013l180.634-149.914-291.277-182.016-178.176 143.104 288.819 188.826z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "dropbox" + ], + "grid": 20 + }, + "attrs": [], + "properties": { + "id": 323, + "order": 449, + "prevSize": 24, + "code": 59053, + "name": "dropbox" + }, + "setIdx": 5, + "setId": 4, + "iconIdx": 20 + }, + { + "icon": { + "paths": [ + "M887.757 220.518c0-58.88-88.678-65.382-88.678-65.382l-208.333-13.107c0 0-4.454-56.678-46.541-76.39-42.086-19.61-88.371-13.619-121.651-13.312-33.28 0.358-41.114 42.752-41.114 82.79 0 39.987 0.717 86.221 0.717 115.2 0 52.122-22.886 74.189-80.179 74.189h-118.118c-33.024-2.099-58.726 3.277-58.726 30.003 0 26.778 38.861 254.618 92.211 307.2 30.976 30.515 220.416 51.917 260.301 51.917s26.573-117.811 37.683-117.811c11.11 0 23.245 66.509 86.118 82.074 62.771 15.718 146.637 12.8 151.091 57.498 5.786 58.982 11.11 135.27-27.699 140.698l-87.859 3.482c-60.211-4.301-44.032-70.093-17.459-70.093s39.885-0.973 39.885-0.973l3.328-71.987c0 0-137.882-16.282-143.718 76.698-5.376 84.992 9.216 125.082 19.917 133.786 10.701 8.806 29.235 25.805 198.093 25.805 237.926 0 150.733-693.402 150.733-752.282zM790.528 528.384c-9.318 10.035-43.11-16.384-75.366-16.384-32.307 0-67.123 17.101-75.315 5.786-8.192-11.213 7.475-101.888 68.301-101.888s91.802 102.605 82.381 112.486z", + "M297.165 213.299c0-11.725 2.97-152.781 2.97-152.781l-179.456 176.128c0 0 124.006 0 148.378 0 24.371-0.051 28.109-11.725 28.109-23.347z" + ], + "attrs": [ + {}, + {} + ], + "isMulticolor": false, + "tags": [ + "evernote" + ], + "grid": 20 + }, + "attrs": [ + {}, + {} + ], + "properties": { + "id": 324, + "order": 450, + "prevSize": 24, + "code": 59054, + "name": "evernote" + }, + "setIdx": 5, + "setId": 4, + "iconIdx": 21 + }, + { + "icon": { + "paths": [ + "M405.197 546.662h84.941c184.525 0 289.229-83.098 322.56-253.952 1.075-5.632 2.048-11.059 2.867-16.486 1.843-11.571 2.765-21.965 3.174-31.949 0.307-6.861 0.512-10.906 0.461-14.694-0.41-20.019-3.942-36.966-11.059-53.197-6.605-15.155-16.589-30.054-31.386-47.002-43.674-49.664-119.757-78.182-210.637-78.182h-289.434c-20.378 0-37.734 14.848-40.909 34.97l-52.224 336.435-64.973 419.072c-2.355 15.104 9.318 28.723 24.576 28.723h141.926l43.469-258.202c5.99-37.888 38.246-65.536 76.646-65.536zM871.27 311.808c-40.55 193.075-171.878 295.526-381.184 295.526h-84.89c-8.397 0-15.462 6.042-16.794 14.438l-56.576 351.027h148.838c17.818 0 33.024-12.954 35.789-30.566l1.485-7.68 28.416-179.917 1.843-9.933c2.765-17.613 17.971-30.566 35.789-30.566h22.528c145.92 0 260.147-59.29 293.53-230.707 13.722-70.656 6.758-129.741-28.774-171.622z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "paypal" + ], + "grid": 20 + }, + "attrs": [], + "properties": { + "id": 333, + "order": 451, + "prevSize": 24, + "code": 59055, + "name": "paypal" + }, + "setIdx": 5, + "setId": 4, + "iconIdx": 22 + }, + { + "icon": { + "paths": [ + "M526.643 963.635c-73.165-11.878-139.93-31.078-188.262-47.258-2.355-0.768-39.987-14.438-51.558-18.944-14.234-5.478-21.658-22.067-16.23-36.352 4.403-11.52 19.405-48.589 20.429-50.893 20.48-47.104 51.2-110.234 91.904-173.005 1.485 61.594 15.206 122.829 40.499 179.507 24.576 55.142 59.853 105.267 103.219 146.944zM520.858 359.782c-142.899-291.277-460.288-280.883-510.362-150.682-38.451 99.942 129.792 338.022 516.966 166.093 0.102-0.051 0.102-0.051 0.205-0.102-1.331-2.406-5.837-12.646-6.81-15.309zM591.872 348.416c0.051 0 0.102-0.051 0.102-0.051 218.675-97.126 188.109-265.779 131.533-287.437-76.134-29.133-214.528 83.149-135.526 278.886 0.768 1.382 3.379 7.168 3.891 8.602zM993.946 561.664c-33.075-74.24-93.85-127.437-164.506-152.781-7.117-2.56-14.387-3.738-21.658-3.738-36.71 0-72.038 30.464-75.366 68.506-5.581 63.437 7.014 128.051 34.816 190.362 27.392 61.389 66.253 113.306 116.224 151.398 13.005 9.933 28.928 14.592 44.8 14.592 28.621 0 57.19-15.155 68.557-42.291 29.235-69.734 30.566-151.194-2.867-226.048zM828.006 887.757c-61.184-46.694-109.67-109.517-144.128-186.675-34.918-78.285-49.203-157.44-42.342-235.315 1.894-21.658 8.243-42.547 18.432-61.645-1.792 0.461-5.683 1.382-5.837 1.434-32.154 8.038-63.334 21.965-91.034 40.141-40.141 26.317-75.52 65.382-90.726 111.462-4.096 12.442-7.219 26.112-8.243 39.168-4.864 62.362 5.274 126.771 32.563 187.904 26.419 59.136 65.792 108.442 113.306 146.074 28.979 22.886 81.203 37.376 123.904 37.376 40.090 0 79.667-11.93 115.2-29.952 11.11-5.632 35.584-20.89 37.171-21.965-21.248-5.427-41.165-14.95-58.266-28.006z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "swarm" + ], + "grid": 20 + }, + "attrs": [], + "properties": { + "id": 347, + "order": 452, + "prevSize": 24, + "code": 59056, + "name": "swarm" + }, + "setIdx": 5, + "setId": 4, + "iconIdx": 23 + }, + { + "icon": { + "paths": [ + "M911.462 629.658c0 0 82.79 81.766 103.27 119.603 0.563 0.819 0.819 1.434 0.922 1.792 8.346 13.978 10.394 24.934 6.298 33.024-6.912 13.363-30.31 20.070-38.246 20.634 0 0-142.234 0-146.33 0-10.189 0-31.386-2.662-57.19-20.48-19.712-13.773-39.322-36.454-58.317-58.624-28.365-32.922-52.89-61.491-77.722-61.491-3.174 0-6.246 0.512-9.216 1.536-18.79 5.939-42.65 32.717-42.65 104.038 0 22.323-17.613 35.021-29.952 35.021 0 0-63.898 0-67.021 0-22.835 0-141.722-7.987-247.142-119.142-129.178-136.090-245.197-409.088-246.323-411.494-7.219-17.664 7.936-27.29 24.32-27.29h147.763c19.814 0 26.266 11.981 30.771 22.733 5.222 12.339 24.576 61.696 56.32 117.146 51.405 90.214 82.995 126.925 108.237 126.925 4.762 0 9.267-1.178 13.517-3.584 32.973-18.125 26.829-135.885 25.293-160.154 0-4.71-0.051-52.582-16.947-75.725-12.083-16.589-32.666-23.040-45.107-25.395 3.328-4.813 10.394-12.186 19.456-16.538 22.579-11.264 63.386-12.902 103.885-12.902h22.477c43.93 0.614 55.296 3.43 71.27 7.475 32.154 7.68 32.768 28.518 29.952 99.482-0.819 20.275-1.69 43.11-1.69 69.99 0 5.734-0.256 12.134-0.256 18.637-0.973 36.403-2.253 77.414 23.45 94.259 3.277 2.048 7.117 3.174 11.11 3.174 8.909 0 35.584 0 107.93-124.16 31.744-54.835 56.32-119.501 58.010-124.365 1.434-2.714 5.734-10.342 10.957-13.414 3.994-2.458 9.318-2.867 12.083-2.867h173.824c18.944 0 31.795 2.867 34.304 10.035 4.198 11.622-0.819 47.104-80.179 154.419-13.363 17.869-25.088 33.331-35.379 46.848-71.936 94.413-71.936 99.174 4.25 170.854z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "vk" + ], + "grid": 20 + }, + "attrs": [], + "properties": { + "id": 352, + "order": 453, + "prevSize": 24, + "code": 59057, + "name": "vk" + }, + "setIdx": 5, + "setId": 4, + "iconIdx": 24 + }, + { + "icon": { + "paths": [ + "M641.946 638.515l231.578 75.059c0 0 33.126 6.093 32.768 28.262-0.205 15.616-10.086 33.382-10.086 33.382l-97.792 141.107c0 0-17.459 14.643-35.123 14.643-17.613 0-37.939-27.494-37.939-27.494l-123.75-208.538c0 0-13.926-30.413 2.56-47.155 15.104-15.36 37.786-9.267 37.786-9.267zM592.384 542.72c11.827 20.275 44.544 14.387 44.544 14.387l231.066-68.147c0 0 31.488-12.954 35.994-30.157 4.403-17.254-5.222-38.042-5.222-38.042l-110.438-131.277c0 0-9.574-16.589-29.44-18.278-21.914-1.894-35.379 24.883-35.379 24.883l-130.56 207.36c0.051-0.051-11.469 20.582-0.563 39.27zM483.226 461.875c27.187-6.758 31.539-46.643 31.539-46.643l-1.843-332.032c0 0-4.096-40.96-22.323-52.070-28.621-17.51-37.069-8.397-45.261-7.168l-191.846 71.936c0 0-18.79 6.298-28.57 22.118-13.978 22.374 14.182 55.245 14.182 55.245l199.373 274.33c0 0 19.712 20.531 44.749 14.285zM435.866 596.224c0.666-25.6-30.464-41.011-30.464-41.011l-206.234-105.114c0 0-30.566-12.698-45.414-3.84-11.315 6.758-21.402 19.046-22.374 29.85l-13.414 166.861c0 0-1.997 28.928 5.427 42.086 10.496 18.637 45.107 5.683 45.107 5.683l240.742-53.709c9.318-6.349 25.702-6.963 26.624-40.806zM495.718 686.285c-20.685-10.701-45.414 11.469-45.414 11.469l-161.178 179.098c0 0-20.122 27.392-15.002 44.186 4.813 15.77 12.8 23.603 24.064 29.133l161.894 51.558c0 0 19.61 4.096 34.509-0.256 21.094-6.195 17.203-39.526 17.203-39.526l3.635-242.483c0 0.051-0.819-23.296-19.712-33.178z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "yelp" + ], + "grid": 20 + }, + "attrs": [], + "properties": { + "id": 355, + "order": 454, + "prevSize": 24, + "code": 59058, + "name": "yelp" + }, + "setIdx": 5, + "setId": 4, + "iconIdx": 25 + }, + { + "icon": { + "paths": [ + "M489.728 379.955c-69.53-123.597-143.923-224.41-149.35-231.834-112.179 53.043-195.891 156.416-222.054 280.934 10.547 0.205 178.278 2.202 371.405-49.101zM539.802 515.123c5.222-1.69 10.547-3.277 15.821-4.813-10.086-22.886-21.094-45.824-32.614-68.403-207.155 62.054-405.914 57.549-412.928 57.344-0.154 4.301-0.358 8.499-0.358 12.8 0 103.373 39.066 197.683 103.219 268.902l-0.256-0.307c0 0 110.080-195.277 327.117-265.523zM264.755 829.133v-0.205c-2.97-2.304-6.144-4.403-9.114-6.912 5.427 4.352 9.114 7.117 9.114 7.117zM415.642 121.446c-0.358 0.102-0.768 0.205-0.768 0.205 0.307-0.102 0.717-0.102 0.717-0.102l0.051-0.102zM777.677 210.125c-70.861-62.362-163.789-100.403-265.677-100.403-32.717 0-64.41 3.994-94.822 11.315 6.144 8.192 81.664 108.493 150.426 234.701 151.654-56.781 208.947-143.974 210.074-145.613zM512 983.040c-260.096 0-470.989-210.893-470.989-470.989-0.051-260.198 210.842-471.091 470.989-471.091 260.198 0 471.040 210.893 471.040 471.091 0 260.096-210.842 470.989-471.040 470.989zM580.403 577.843c-236.083 82.278-314.061 247.706-315.648 251.085 68.301 53.299 153.907 85.299 247.194 85.299 55.706 0 108.8-11.315 157.030-31.795-5.939-35.277-29.338-158.515-85.965-305.51-0.819 0.307-1.69 0.614-2.611 0.922zM598.528 415.744c9.421 19.098 18.33 38.605 26.778 58.317 3.021 6.912 5.837 13.926 8.704 20.787 138.906-17.51 275.712 12.186 280.218 13.107-0.973-95.386-35.123-182.886-91.494-251.494-0.922 1.178-65.485 94.362-224.205 159.283zM658.483 558.336c52.787 145.203 74.189 263.27 78.285 287.283 90.317-60.979 154.522-157.696 172.39-269.824-7.987-2.56-120.627-38.246-250.675-17.459z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "dribbble" + ], + "grid": 20 + }, + "attrs": [], + "properties": { + "id": 357, + "order": 455, + "prevSize": 24, + "code": 59059, + "name": "dribbble" + }, + "setIdx": 5, + "setId": 4, + "iconIdx": 26 + }, + { + "icon": { + "paths": [ + "M438.989 746.291c-24.422 17.818-74.496 52.429-173.107 52.429-136.243 0-265.882-96.922-265.882-276.736 0-186.778 135.014-296.704 274.125-296.704 156.006 0 214.17 56.73 263.373 210.381l38.707 118.221c28.211 86.426 87.706 148.992 206.131 148.992 79.77 0 121.958-17.715 121.958-61.389 0-34.304-19.917-59.187-79.718-73.421l-79.821-18.893c-97.28-23.603-135.987-74.496-135.987-154.88 0-128.819 103.219-169.011 208.742-169.011 119.654 0 192.358 43.725 201.728 150.118l-117.299 14.182c-4.71-50.79-35.226-72.090-91.494-72.090-51.61 0-83.302 23.603-83.302 63.795 0 35.482 15.309 56.781 66.918 68.608l75.059 16.589c100.864 23.603 154.88 73.318 154.88 169.114 0 118.221-98.509 163.123-244.019 163.123-202.906 0-273.306-92.211-310.784-206.899l-37.581-118.221c-28.109-86.374-50.688-148.582-153.907-148.582-71.578 0-164.813 46.899-164.813 192.307 0 113.51 77.978 184.525 158.925 184.525 68.608 0 109.875-38.605 131.277-57.907l35.891 102.349z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "lastfm" + ], + "grid": 20 + }, + "attrs": [], + "properties": { + "id": 369, + "order": 456, + "prevSize": 24, + "code": 59060, + "name": "lastfm" + }, + "setIdx": 5, + "setId": 4, + "iconIdx": 27 + }, + { + "icon": { + "paths": [ + "M441.19 677.222c-26.931 141.005-59.75 276.173-157.082 346.778-30.003-213.094 44.083-373.094 78.541-542.976-58.726-98.816 7.066-297.574 130.816-248.576 152.32 60.211-131.891 367.206 58.88 405.606 199.219 39.987 280.525-345.6 156.979-470.989-178.432-181.146-519.475-4.25-477.491 255.078 10.189 63.386 75.674 82.586 26.163 170.086-114.227-25.293-148.326-115.405-143.923-235.52 7.066-196.608 176.589-334.182 346.675-353.28 215.091-24.115 416.973 79.002 444.877 281.293 31.386 228.403-97.075 475.802-327.117 457.984-62.362-4.864-88.474-35.789-137.318-65.485z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "pinterest" + ], + "grid": 20 + }, + "attrs": [], + "properties": { + "id": 373, + "order": 457, + "prevSize": 24, + "code": 59061, + "name": "pinterest" + }, + "setIdx": 5, + "setId": 4, + "iconIdx": 28 + }, + { + "icon": { + "paths": [ + "M565.811 412.621l69.888 33.792 105.421-33.792v-61.133c-0-126.106-102.81-228.608-229.12-228.608s-229.12 102.502-229.12 228.608v321.024c0 29.594-24.166 53.709-53.811 53.709-29.696 0-53.811-24.115-53.811-53.709v-134.4h-175.258v134.4c0 126.003 102.758 228.608 229.12 228.608 126.31 0 229.069-102.605 229.069-228.608v-321.024c0-29.594 24.166-53.709 53.862-53.709 29.645 0 53.811 24.115 53.811 53.709v61.133zM848.691 538.112v134.4c0 29.594-24.115 53.709-53.811 53.709s-53.811-24.115-53.811-53.709v-137.114l-105.421 33.69-69.888-33.69v137.114c0 126.003 102.81 228.608 229.12 228.608s229.12-102.605 229.12-228.608v-134.4h-175.309z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "stumbleupon" + ], + "grid": 20 + }, + "attrs": [], + "properties": { + "id": 376, + "order": 458, + "prevSize": 24, + "code": 59062, + "name": "stumbleupon" + }, + "setIdx": 5, + "setId": 4, + "iconIdx": 29 + }, + { + "icon": { + "paths": [ + "M968.192 299.008c-51.507 295.578-339.2 545.792-425.728 602.982-86.528 57.088-165.53-22.886-194.15-83.507-32.819-68.966-131.021-443.187-156.774-474.163-25.754-31.027-102.912 30.976-102.912 30.976l-37.427-49.971c0 0 156.723-190.72 276.019-214.579 126.464-25.242 126.259 197.837 156.672 321.638 29.389 119.91 49.203 188.416 74.906 188.416s74.854-66.816 128.614-169.216c53.914-102.605-2.304-193.126-107.571-128.717 42.138-257.382 439.859-319.283 388.352-23.859z" + ], + "attrs": [], + "isMulticolor": false, + "tags": [ + "vimeo" + ], + "grid": 20 + }, + "attrs": [], + "properties": { + "id": 382, + "order": 459, + "prevSize": 24, + "code": 59063, + "name": "vimeo" + }, + "setIdx": 5, + "setId": 4, + "iconIdx": 30 + } + ], + "height": 1024, + "metadata": { + "name": "metro", + "url": "http://metroui.org.ua/font.html", + "license": "MIT", + "licenseURL": "http://metroui.org.ua/license.html" + }, + "preferences": { + "showGlyphs": true, + "showQuickUse": true, + "showQuickUse2": true, + "showSVGs": true, + "fontPref": { + "prefix": "mif-", + "metadata": { + "fontFamily": "metro", + "majorVersion": 1, + "minorVersion": 0, + "fontURL": "http://metroui.org.ua/font.html", + "description": "Metro Icon Font", + "copyright": "2012-2015 Metro UI CSS", + "license": "MIT", + "licenseURL": "http://metroui.org.ua/license.html" + }, + "metrics": { + "emSize": 1024, + "baseline": 6.25, + "whitespace": 50 + }, + "resetPoint": 58880, + "embed": false, + "showSelector": true, + "selector": "", + "classSelector": ".icon", + "showMetrics": false, + "showMetadata": false, + "showVersion": true, + "includeMetadata": true + }, + "imagePref": { + "prefix": "mif-", + "png": false, + "useClassSelector": true, + "color": 4473924, + "bgColor": 16777215, + "classSelector": ".icon", + "columns": 16, + "margin": 16, + "height": 32, + "sprite": false, + "overrideSize": false + }, + "historySize": 100, + "showCodes": true, + "gridSize": 16 + } +} \ No newline at end of file diff --git a/applications/assets/js/application.js b/applications/assets/js/application.js new file mode 100644 index 0000000..05f7c95 --- /dev/null +++ b/applications/assets/js/application.js @@ -0,0 +1,178 @@ ++function ($) { "use strict"; + var appName = 'MasterApplicationControl'; + + /** + * Needs to be here, do not edit + */ + var appID = appName.replace(/[^a-z]+/gi, '').replace(/(.)([A-Z])/g, "$1-$2").toLowerCase();var appDataHandler = '[data-apprequest]'; var oc = 'oc.'+appName; var Base = $.oc.foundation.base, BaseProto = Base.prototype; var Application = function (element, options) { this.$el = $(element); this.options = options || {}; this.appID = appID; this.appName = appName; this.oc = oc; $.oc.foundation.controlUtils.markDisposable(element); Base.call(this); this.sysInit(); }; Application.prototype = Object.create(BaseProto); Application.prototype.constructor = Application; + + Application.prototype.handlers = function(type) { + this.$el[type]('click',this.proxy(this.onClick)); + }; + + + Application.prototype.onClick = function(e) { + /** + * Find the closest originating event caster(in case event originated from child element + */ + var $this = $(e.target).closest('[data-apprequest]'); + + /** + * Prepare data object + */ + var data = {}; + + /** + * Pass application ID so right application can handle the call + */ + var appid = $this.closest('[data-appid]').data('appid'); + /** + * The request function within the application + */ + var request = $this.data('apprequest'); + + /** + * Test for existance of raw data + */ + var rawdata = $this.data('apprequest-data'); + var data = {}; + if(rawdata) { + eval('data={'+rawdata+'}'); + } + + var success = $this.data('apprequest-success'); + if(success) { + eval('data.success = function(data,status,xhr){'+success+'}'); + } + + var update = $this.data('apprequest-update'); + if(update) { + eval('data.update = {'+update+'}'); + } + + var confirm = $this.data('apprequest-confirm'); + if(confirm) { + data.confirm = confirm; + } + + var redirect = $this.data('apprequest-redirect'); + if(redirect) { + data.redirect = redirect; + } + + var beforeUpdate = $this.data('apprequest-beforeUpdate'); + if(beforeUpdate) { + eval('data.beforeUpdate = function(data,status,xhr){'+beforeUpdate+'}'); + } + + var error = $this.data('apprequest-error'); + if(error) { + eval('data.error = function(xhr,status,error){'+error+'}'); + } + + var complete = $this.data('apprequest-complete'); + if(complete) { + eval('data.complete = function(context,textStatus,xhr){'+complete+'}'); + } + + /** + * Send apprequest + */ + $this.appRequest(appid,request,data); + + } + + + + + + /** + * ================================================================================================================ + * **** Do not edit below this line **** + * ================================================================================================================ + */ + + Application.prototype.sysDestroy = function() { + this.handlers('off'); + this.$el.off('dispose-control', this.proxy(this.dispose)) + this.$el.removeData(this.oc); + + this.$el = null + + // In some cases options could contain callbacks, + // so it's better to clean them up too. + this.options = null + + BaseProto.dispose.call(this) + } + + Application.prototype.sysInit = function() { + this.$el.one('dispose-control', this.proxy(this.sysDestroy)); + this.handlers('on'); + } + Application.DEFAULTS = { + someParam: null + } + + // PLUGIN DEFINITION + // ============================ + + var old = $.fn[appName] + $.fn.appRequest = $.appRequest = function(appid,request,data) { + var sendobject = { + data:{ + appid:appid, + request:request + } + }; + var transposefuntions = ['success','update','confirm','redirect','beforeUpdate','error','complete']; + for(var c=0;c 0) + || (navigator.msMaxTouchPoints > 0)); +}; + +window.METRO_LOCALES = { + 'en': { + months: [ + "January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December", + "Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec" + ], + days: [ + "Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday", + "Su", "Mo", "Tu", "We", "Th", "Fr", "Sa" + ], + buttons: [ + "Today", "Clear", "Cancel", "Help", "Prior", "Next", "Finish" + ] + }, + 'fr': { + months: [ + "Janvier", "Février", "Mars", "Avril", "Mai", "Juin", "Juillet", "Août", "Septembre", "Octobre", "Novembre", "Décembre", + "Jan", "Fév", "Mars", "Avr", "Mai", "Juin", "Juil", "Août", "Sept", "Oct", "Nov", "Déc" + ], + days: [ + "Dimanche", "Lundi", "Mardi", "Mercredi", "Jeudi", "Vendredi", "Samedi", + "Di", "Lu", "Ma", "Me", "Je", "Ve", "Sa" + ], + buttons: [ + "Aujourd'hui", "Effacer", "Annuler", "Aide", "Précedent", "Suivant", "Fin" + ] + }, + 'nl': { + months: [ + "Januari", "Februari", "Maart", "April", "Mei", "Juni", "Juli", "Augustus", "September", "Oktober", "November", "December", + "Jan", "Feb", "Mrt", "Apr", "Mei", "Jun", "Jul", "Aug", "Sep", "Okt", "Nov", "Dec" + ], + days: [ + "Zondag", "Maandag", "Dinsdag", "Woensdag", "Donderdag", "Vrijdag", "Zaterdag", + "Zo", "Ma", "Di", "Wo", "Do", "Vr", "Za" + ], + buttons: [ + "Vandaag", "Verwijderen", "Annuleren", "Hulp", "Vorige", "Volgende", "Einde" + ] + }, + 'ua': { + months: [ + "Січень", "Лютий", "Березень", "Квітень", "Травень", "Червень", "Липень", "Серпень", "Вересень", "Жовтень", "Листопад", "Грудень", + "Січ", "Лют", "Бер", "Кві", "Тра", "Чер", "Лип", "Сер", "Вер", "Жов", "Лис", "Гру" + ], + days: [ + "Неділя", "Понеділок", "Вівторок", "Середа", "Четвер", "П’ятниця", "Субота", + "Нд", "Пн", "Вт", "Ср", "Чт", "Пт", "Сб" + ], + buttons: [ + "Сьогодні", "Очистити", "Скасувати", "Допомога", "Назад", "Вперед", "Готово" + ] + }, + 'ru': { + months: [ + "Январь", "Февраль", "Март", "Апрель", "Май", "Июнь", "Июль", "Август", "Сентябрь", "Октябрь", "Ноябрь", "Декабрь", + "Янв", "Фев", "Мар", "Апр", "Май", "Июн", "Июл", "Авг", "Сен", "Окт", "Ноя", "Дек" + ], + days: [ + "Воскресенье", "Понедельник", "Вторник", "Среда", "Четверг", "Пятница", "Суббота", + "Вс", "Пн", "Вт", "Ср", "Чт", "Пт", "Сб" + ], + buttons: [ + "Сегодня", "Очистить", "Отменить", "Помощь", "Назад", "Вперед", "Готово" + ] + }, + /** By NoGrief (nogrief@gmail.com) */ + 'zhCN': { + months: [ + "一月", "二月", "三月", "四月", "五月", "六月", "七月", "八月", "九月", "十月", "十一月", "十二月", + "一月", "二月", "三月", "四月", "五月", "六月", "七月", "八月", "九月", "十月", "十一月", "十二月" + ], + days: [ + "星期日", "星期一", "星期二", "星期三", "星期四", "星期五", "星期六", + "日", "一", "二", "三", "四", "五", "六" + ], + buttons: [ + "今日", "清除", "Cancel", "Help", "Prior", "Next", "Finish" + ] + }, + 'it': { + months: [ + 'Gennaio', 'Febbraio', 'Marzo', 'Aprile', 'Maggio', 'Giugno', 'Luglio', 'Agosto', 'Settembre', 'Ottobre', 'Novembre', 'Dicembre', + 'Gen', ' Feb', 'Mar', 'Apr', 'Mag', 'Giu', 'Lug', 'Ago', 'Set', 'Ott', 'Nov', 'Dic' + ], + days: [ + 'Domenica', 'Lunedì', 'Martedì', 'Mercoledì', 'Giovedì', 'Venerdì', 'Sabato', + 'Dom', 'Lun', 'Mar', 'Mer', 'Gio', 'Ven', 'Sab' + ], + buttons: [ + "Oggi", "Cancella", "Cancel", "Help", "Prior", "Next", "Finish" + ] + }, + 'de': { + months: [ + "Januar", "Februar", "März", "April", "Mai", "Juni", "Juli", "August", "September", "Oktober", "November", "Dezember", + "Jan", "Feb", "Mrz", "Apr", "Mai", "Jun", "Jul", "Aug", "Sep", "Okt", "Nov", "Dez" + ], + days: [ + "Sonntag", "Montag", "Dienstag", "Mittwoch", "Donnerstag", "Freitag", "Samstag", + "So", "Mo", "Di", "Mi", "Do", "Fr", "Sa" + ], + buttons: [ + "Heute", "Zurücksetzen", "Abbrechen", "Hilfe", "Früher", "Später", "Fertig" + ] + }, + /** By Javier Rodríguez (javier.rodriguez at fjrodriguez.com) */ + 'es': { + months: [ + "Enero", "Febrero", "Marzo", "Abril", "Mayo", "Junio", "Julio", "Agosto", "Septiembre", "Octubre", "Noviembre", "Diciembre", + "Ene", "Feb", "Mar", "Abr", "May", "Jun", "Jul", "Ago", "Sept", "Oct", "Nov", "Dic" + ], + days: [ + "Domingo", "Lunes", "Martes", "Miércoles", "Jueves", "Viernes", "Sábado", + "Do", "Lu", "Mar", "Mié", "Jue", "Vi", "Sáb" + ], + buttons: [ + "Hoy", "Limpiar", "Cancel", "Help", "Prior", "Next", "Finish" + ] + }, + 'pt': { + months: [ + 'Janeiro', 'Fevereiro', 'Março', 'Abril', 'Maio', 'Junho', 'Julho', 'Agosto', 'Setembro', 'Outubro', 'Novembro', 'Dezembro', + 'Jan', 'Fev', 'Mar', 'Abr', 'Mai', 'Jun', 'Jul', 'Ago', 'Set', 'Out', 'Nov', 'Dez' + ], + days: [ + 'Domingo', 'Segunda-feira', 'Terça-feira', 'Quarta-feira', 'Quinta-feira', 'Sexta-feira', 'Sabado', + 'Dom', 'Seg', 'Ter', 'Qua', 'Qui', 'Sex', 'Sab' + ], + buttons: [ + "Hoje", "Limpar", "Cancelar", "Ajuda", "Anterior", "Seguinte", "Terminar" + ] + }, + 'pl': { + months: [ + "Styczeń", "Luty", "Marzec", "Kwiecień", "Maj", "Czerwiec", "Lipiec", "Sierpień", "Wrzesień", "Październik", "Listopad", "Grudzień", + "Sty", "Lut", "Mar", "Kwi", "Maj", "Cze", "Lip", "Sie", "Wrz", "Paź", "Lis", "Gru" + ], + days: [ + "Niedziela", "Poniedziałek", "Wtorek", "Środa", "Czwartek", "Piątek", "Sobota", + "Nd", "Pon", "Wt", "Śr", "Czw", "Pt", "Sob" + ], + buttons: [ + "Dzisiaj", "Wyczyść", "Anuluj", "Pomoc", "Poprzedni", "Następny", "Koniec" + ] + }, + 'cs': { + months: [ + "Leden", "Únor", "Březen", "Duben", "Květen", "Červen", "Červenec", "Srpen", "Září", "Říjen", "Listopad", "Prosinec", + "Led", "Ún", "Bř", "Dub", "Kvě", "Če", "Čer", "Srp", "Zá", "Ří", "Li", "Pro" + ], + days: [ + "Neděle", "Pondělí", "Úterý", "Středa", "Čtvrtek", "Pátek", "Sobota", + "Ne", "Po", "Út", "St", "Čt", "Pá", "So" + ], + buttons: [ + "Dnes", "Vyčistit", "Zrušit", "Pomoc", "Předešlý", "Další", "Dokončit" + ] + }, + /* By Satit Rianpit */ + 'th': { + months: [ + "มกราคม", "กุมภาพันธ์", "มีนาคม", "เมษายน", "พฤษภาคม", "มิถุนายน", "กรกฎาคม", "สิงหาคม", "กันยายน", "ตุลาคม", "พฤศจิกายน", "ธันวาคม", + "ม.ค.", "ก.พ.", "มี.ค.", "เม.ย.", "พ.ค.", "มิ.ย.", "ก.ค.", "ส.ค.", "ก.ย.", "ต.ค.", "พ.ย.", "ธ.ค." + ], + days: [ + "อาทิตย์", "จันทร์", "อังคาร", "พุธ", "พฤหัสบดี", "ศุกร์", "เสาร์", + "อา.", "จ.", "อ.", "พ.", "พฤ.", "ศ.", "ส." + ], + buttons: [ + "วันนี้", "ล้าง", "ยกเลิก", "ช่วยเหลือ", "กลับ", "ต่อไป", "เสร็จ" + ] + } +}; + +/* + * Date Format 1.2.3 + * (c) 2007-2009 Steven Levithan + * MIT license + * + * Includes enhancements by Scott Trenda + * and Kris Kowal + * + * Accepts a date, a mask, or a date and a mask. + * Returns a formatted version of the given date. + * The date defaults to the current date/time. + * The mask defaults to dateFormat.masks.default. + */ +// this is a temporary solution + +var dateFormat = function () { + +var token = /d{1,4}|m{1,4}|yy(?:yy)?|([HhMsTt])\1?|[LloSZ]|"[^"]*"|'[^']*'/g, + timezone = /\b(?:[PMCEA][SDP]T|(?:Pacific|Mountain|Central|Eastern|Atlantic) (?:Standard|Daylight|Prevailing) Time|(?:GMT|UTC)(?:[-+]\d{4})?)\b/g, + timezoneClip = /[^-+\dA-Z]/g, + pad = function (val, len) { + val = String(val); + len = len || 2; + while (val.length < len) { + val = "0" + val; + } + return val; + }; + + // Regexes and supporting functions are cached through closure + return function (date, mask, utc) { + var dF = dateFormat; + + // You can't provide utc if you skip other args (use the "UTC:" mask prefix) + if (arguments.length === 1 && Object.prototype.toString.call(date) === "[object String]" && !/\d/.test(date)) { + mask = date; + date = undefined; + } + + //console.log(arguments); + + // Passing date through Date applies Date.parse, if necessary + date = date ? new Date(date) : new Date(); + //if (isNaN(date)) throw SyntaxError("invalid date"); + + mask = String(dF.masks[mask] || mask || dF.masks["default"]); + + // Allow setting the utc argument via the mask + if (mask.slice(0, 4) === "UTC:") { + mask = mask.slice(4); + utc = true; + } + + //console.log(locale); + + var locale = window.METRO_CURRENT_LOCALE || 'en'; + + var _ = utc ? "getUTC" : "get", + d = date[_ + "Date"](), + D = date[_ + "Day"](), + m = date[_ + "Month"](), + y = date[_ + "FullYear"](), + H = date[_ + "Hours"](), + M = date[_ + "Minutes"](), + s = date[_ + "Seconds"](), + L = date[_ + "Milliseconds"](), + o = utc ? 0 : date.getTimezoneOffset(), + flags = { + d: d, + dd: pad(d), + ddd: window.METRO_LOCALES[locale].days[D], + dddd: window.METRO_LOCALES[locale].days[D + 7], + m: m + 1, + mm: pad(m + 1), + mmm: window.METRO_LOCALES[locale].months[m], + mmmm: window.METRO_LOCALES[locale].months[m + 12], + yy: String(y).slice(2), + yyyy: y, + h: H % 12 || 12, + hh: pad(H % 12 || 12), + H: H, + HH: pad(H), + M: M, + MM: pad(M), + s: s, + ss: pad(s), + l: pad(L, 3), + L: pad(L > 99 ? Math.round(L / 10) : L), + t: H < 12 ? "a" : "p", + tt: H < 12 ? "am" : "pm", + T: H < 12 ? "A" : "P", + TT: H < 12 ? "AM" : "PM", + Z: utc ? "UTC" : (String(date).match(timezone) || [""]).pop().replace(timezoneClip, ""), + o: (o > 0 ? "-" : "+") + pad(Math.floor(Math.abs(o) / 60) * 100 + Math.abs(o) % 60, 4), + S: ["th", "st", "nd", "rd"][d % 10 > 3 ? 0 : (d % 100 - d % 10 !== 10) * d % 10] + }; + + return mask.replace(token, function ($0) { + return $0 in flags ? flags[$0] : $0.slice(1, $0.length - 1); + }); + }; +}(); + +// Some common format strings +dateFormat.masks = { + "default": "ddd mmm dd yyyy HH:MM:ss", + shortDate: "m/d/yy", + mediumDate: "mmm d, yyyy", + longDate: "mmmm d, yyyy", + fullDate: "dddd, mmmm d, yyyy", + shortTime: "h:MM TT", + mediumTime: "h:MM:ss TT", + longTime: "h:MM:ss TT Z", + isoDate: "yyyy-mm-dd", + isoTime: "HH:MM:ss", + isoDateTime: "yyyy-mm-dd'T'HH:MM:ss", + isoUtcDateTime: "UTC:yyyy-mm-dd'T'HH:MM:ss'Z'" +}; + +// For convenience... +Date.prototype.format = function (mask, utc) { +return dateFormat(this, mask, utc); +}; + +// Source: js/widget.js +var widget_uuid = 0, + widget_slice = Array.prototype.slice; + +$.cleanData = (function (orig) { + return function (elems) { + var events, elem, i; + for (i = 0; (elem = elems[i]) != null; i++) { + try { + + // Only trigger remove when necessary to save time + events = $._data(elem, "events"); + if (events && events.remove) { + $(elem).triggerHandler("remove"); + } + + // http://bugs.$.com/ticket/8235 + } catch (e) { + } + } + orig(elems); + }; +})($.cleanData); + +$.widget = function (name, base, prototype) { + var fullName, existingConstructor, constructor, basePrototype, + // proxiedPrototype allows the provided prototype to remain unmodified + // so that it can be used as a mixin for multiple widgets (#8876) + proxiedPrototype = {}, + namespace = name.split(".")[0]; + + name = name.split(".")[1]; + fullName = namespace + "-" + name; + + if (!prototype) { + prototype = base; + base = $.Widget; + } + + // create selector for plugin + $.expr[":"][fullName.toLowerCase()] = function (elem) { + return !!$.data(elem, fullName); + }; + + $[namespace] = $[namespace] || {}; + existingConstructor = $[namespace][name]; + constructor = $[namespace][name] = function (options, element) { + // allow instantiation without "new" keyword + if (!this._createWidget) { + return new constructor(options, element); + } + + // allow instantiation without initializing for simple inheritance + // must use "new" keyword (the code above always passes args) + if (arguments.length) { + this._createWidget(options, element); + } + }; + // extend with the existing constructor to carry over any static properties + $.extend(constructor, existingConstructor, { + version: prototype.version, + // copy the object used to create the prototype in case we need to + // redefine the widget later + _proto: $.extend({}, prototype), + // track widgets that inherit from this widget in case this widget is + // redefined after a widget inherits from it + _childConstructors: [] + }); + + basePrototype = new base(); + // we need to make the options hash a property directly on the new instance + // otherwise we'll modify the options hash on the prototype that we're + // inheriting from + basePrototype.options = $.widget.extend({}, basePrototype.options); + $.each(prototype, function (prop, value) { + if (!$.isFunction(value)) { + proxiedPrototype[prop] = value; + return; + } + proxiedPrototype[prop] = (function () { + var _super = function () { + return base.prototype[prop].apply(this, arguments); + }, + _superApply = function (args) { + return base.prototype[prop].apply(this, args); + }; + return function () { + var __super = this._super, + __superApply = this._superApply, + returnValue; + + this._super = _super; + this._superApply = _superApply; + + returnValue = value.apply(this, arguments); + + this._super = __super; + this._superApply = __superApply; + + return returnValue; + }; + })(); + }); + constructor.prototype = $.widget.extend(basePrototype, { + // TODO: remove support for widgetEventPrefix + // always use the name + a colon as the prefix, e.g., draggable:start + // don't prefix for widgets that aren't DOM-based + widgetEventPrefix: existingConstructor ? (basePrototype.widgetEventPrefix || name) : name + }, proxiedPrototype, { + constructor: constructor, + namespace: namespace, + widgetName: name, + widgetFullName: fullName + }); + + // If this widget is being redefined then we need to find all widgets that + // are inheriting from it and redefine all of them so that they inherit from + // the new version of this widget. We're essentially trying to replace one + // level in the prototype chain. + if (existingConstructor) { + $.each(existingConstructor._childConstructors, function (i, child) { + var childPrototype = child.prototype; + + // redefine the child widget using the same prototype that was + // originally used, but inherit from the new version of the base + $.widget(childPrototype.namespace + "." + childPrototype.widgetName, constructor, child._proto); + }); + // remove the list of existing child constructors from the old constructor + // so the old child constructors can be garbage collected + delete existingConstructor._childConstructors; + } else { + base._childConstructors.push(constructor); + } + + $.widget.bridge(name, constructor); + + return constructor; +}; + +$.widget.extend = function (target) { + var input = widget_slice.call(arguments, 1), + inputIndex = 0, + inputLength = input.length, + key, + value; + for (; inputIndex < inputLength; inputIndex++) { + for (key in input[inputIndex]) { + value = input[inputIndex][key]; + if (input[inputIndex].hasOwnProperty(key) && value !== undefined) { + // Clone objects + if ($.isPlainObject(value)) { + target[key] = $.isPlainObject(target[key]) ? + $.widget.extend({}, target[key], value) : + // Don't extend strings, arrays, etc. with objects + $.widget.extend({}, value); + // Copy everything else by reference + } else { + target[key] = value; + } + } + } + } + return target; +}; + +$.widget.bridge = function (name, object) { + var fullName = object.prototype.widgetFullName || name; + $.fn[name] = function (options) { + var isMethodCall = typeof options === "string", + args = widget_slice.call(arguments, 1), + returnValue = this; + + if (isMethodCall) { + this.each(function () { + var methodValue, + instance = $.data(this, fullName); + if (options === "instance") { + returnValue = instance; + return false; + } + if (!instance) { + return $.error("cannot call methods on " + name + " prior to initialization; " + + "attempted to call method '" + options + "'"); + } + if (!$.isFunction(instance[options]) || options.charAt(0) === "_") { + return $.error("no such method '" + options + "' for " + name + " widget instance"); + } + methodValue = instance[options].apply(instance, args); + if (methodValue !== instance && methodValue !== undefined) { + returnValue = methodValue && methodValue.jquery ? + returnValue.pushStack(methodValue.get()) : + methodValue; + return false; + } + }); + } else { + + // Allow multiple hashes to be passed on init + if (args.length) { + options = $.widget.extend.apply(null, [options].concat(args)); + } + + this.each(function () { + var instance = $.data(this, fullName); + if (instance) { + instance.option(options || {}); + if (instance._init) { + instance._init(); + } + } else { + $.data(this, fullName, new object(options, this)); + } + }); + } + + return returnValue; + }; +}; + +$.Widget = function (/* options, element */) { +}; +$.Widget._childConstructors = []; + +$.Widget.prototype = { + widgetName: "widget", + widgetEventPrefix: "", + defaultElement: "
", + options: { + disabled: false, + + // callbacks + create: null + }, + _createWidget: function (options, element) { + element = $(element || this.defaultElement || this)[0]; + this.element = $(element); + this.uuid = widget_uuid++; + this.eventNamespace = "." + this.widgetName + this.uuid; + + this.bindings = $(); + this.hoverable = $(); + this.focusable = $(); + + if (element !== this) { + $.data(element, this.widgetFullName, this); + this._on(true, this.element, { + remove: function (event) { + if (event.target === element) { + this.destroy(); + } + } + }); + this.document = $(element.style ? + // element within the document + element.ownerDocument : + // element is window or document + element.document || element); + this.window = $(this.document[0].defaultView || this.document[0].parentWindow); + } + + this.options = $.widget.extend({}, + this.options, + this._getCreateOptions(), + options); + + this._create(); + this._trigger("create", null, this._getCreateEventData()); + this._init(); + }, + _getCreateOptions: $.noop, + _getCreateEventData: $.noop, + _create: $.noop, + _init: $.noop, + + destroy: function () { + this._destroy(); + // we can probably remove the unbind calls in 2.0 + // all event bindings should go through this._on() + this.element + .unbind(this.eventNamespace) + .removeData(this.widgetFullName) + // support: jquery <1.6.3 + // http://bugs.jquery.com/ticket/9413 + .removeData($.camelCase(this.widgetFullName)); + this.widget() + .unbind(this.eventNamespace) + .removeAttr("aria-disabled") + .removeClass( + this.widgetFullName + "-disabled " + + "ui-state-disabled"); + + // clean up events and states + this.bindings.unbind(this.eventNamespace); + this.hoverable.removeClass("ui-state-hover"); + this.focusable.removeClass("ui-state-focus"); + }, + _destroy: $.noop, + + widget: function () { + return this.element; + }, + + option: function (key, value) { + var options = key, + parts, + curOption, + i; + + if (arguments.length === 0) { + // don't return a reference to the internal hash + return $.widget.extend({}, this.options); + } + + if (typeof key === "string") { + // handle nested keys, e.g., "foo.bar" => { foo: { bar: ___ } } + options = {}; + parts = key.split("."); + key = parts.shift(); + if (parts.length) { + curOption = options[key] = $.widget.extend({}, this.options[key]); + for (i = 0; i < parts.length - 1; i++) { + curOption[parts[i]] = curOption[parts[i]] || {}; + curOption = curOption[parts[i]]; + } + key = parts.pop(); + if (arguments.length === 1) { + return curOption[key] === undefined ? null : curOption[key]; + } + curOption[key] = value; + } else { + if (arguments.length === 1) { + return this.options[key] === undefined ? null : this.options[key]; + } + options[key] = value; + } + } + + this._setOptions(options); + + return this; + }, + _setOptions: function (options) { + var key; + + for (key in options) { + this._setOption(key, options[key]); + } + + return this; + }, + _setOption: function (key, value) { + this.options[key] = value; + + if (key === "disabled") { + this.widget() + .toggleClass(this.widgetFullName + "-disabled", !!value); + + // If the widget is becoming disabled, then nothing is interactive + if (value) { + this.hoverable.removeClass("ui-state-hover"); + this.focusable.removeClass("ui-state-focus"); + } + } + + return this; + }, + + enable: function () { + return this._setOptions({disabled: false}); + }, + disable: function () { + return this._setOptions({disabled: true}); + }, + + _on: function (suppressDisabledCheck, element, handlers) { + var delegateElement, + instance = this; + + // no suppressDisabledCheck flag, shuffle arguments + if (typeof suppressDisabledCheck !== "boolean") { + handlers = element; + element = suppressDisabledCheck; + suppressDisabledCheck = false; + } + + // no element argument, shuffle and use this.element + if (!handlers) { + handlers = element; + element = this.element; + delegateElement = this.widget(); + } else { + element = delegateElement = $(element); + this.bindings = this.bindings.add(element); + } + + $.each(handlers, function (event, handler) { + function handlerProxy() { + // allow widgets to customize the disabled handling + // - disabled as an array instead of boolean + // - disabled class as method for disabling individual parts + if (!suppressDisabledCheck && + ( instance.options.disabled === true || + $(this).hasClass("ui-state-disabled") )) { + return; + } + return ( typeof handler === "string" ? instance[handler] : handler ) + .apply(instance, arguments); + } + + // copy the guid so direct unbinding works + if (typeof handler !== "string") { + handlerProxy.guid = handler.guid = + handler.guid || handlerProxy.guid || $.guid++; + } + + var match = event.match(/^([\w:-]*)\s*(.*)$/), + eventName = match[1] + instance.eventNamespace, + selector = match[2]; + if (selector) { + delegateElement.delegate(selector, eventName, handlerProxy); + } else { + element.bind(eventName, handlerProxy); + } + }); + }, + + _off: function (element, eventName) { + eventName = (eventName || "").split(" ").join(this.eventNamespace + " ") + + this.eventNamespace; + element.unbind(eventName).undelegate(eventName); + + // Clear the stack to avoid memory leaks (#10056) + this.bindings = $(this.bindings.not(element).get()); + this.focusable = $(this.focusable.not(element).get()); + this.hoverable = $(this.hoverable.not(element).get()); + }, + + _delay: function (handler, delay) { + function handlerProxy() { + return ( typeof handler === "string" ? instance[handler] : handler ) + .apply(instance, arguments); + } + + var instance = this; + return setTimeout(handlerProxy, delay || 0); + }, + + _hoverable: function (element) { + this.hoverable = this.hoverable.add(element); + this._on(element, { + mouseenter: function (event) { + $(event.currentTarget).addClass("ui-state-hover"); + }, + mouseleave: function (event) { + $(event.currentTarget).removeClass("ui-state-hover"); + } + }); + }, + + _focusable: function (element) { + this.focusable = this.focusable.add(element); + this._on(element, { + focusin: function (event) { + $(event.currentTarget).addClass("ui-state-focus"); + }, + focusout: function (event) { + $(event.currentTarget).removeClass("ui-state-focus"); + } + }); + }, + + _trigger: function (type, event, data) { + var prop, orig, + callback = this.options[type]; + + data = data || {}; + event = $.Event(event); + event.type = ( type === this.widgetEventPrefix ? + type : + this.widgetEventPrefix + type ).toLowerCase(); + // the original event may come from any element + // so we need to reset the target on the new event + event.target = this.element[0]; + + // copy original event properties over to the new event + orig = event.originalEvent; + if (orig) { + for (prop in orig) { + if (!( prop in event )) { + event[prop] = orig[prop]; + } + } + } + + this.element.trigger(event, data); + return !( $.isFunction(callback) && + callback.apply(this.element[0], [event].concat(data)) === false || + event.isDefaultPrevented() ); + } +}; + +$.each({show: "fadeIn", hide: "fadeOut"}, function (method, defaultEffect) { + $.Widget.prototype["_" + method] = function (element, options, callback) { + if (typeof options === "string") { + options = {effect: options}; + } + var hasOptions, + effectName = !options ? + method : + options === true || typeof options === "number" ? + defaultEffect : + options.effect || defaultEffect; + options = options || {}; + if (typeof options === "number") { + options = {duration: options}; + } + hasOptions = !$.isEmptyObject(options); + options.complete = callback; + if (options.delay) { + element.delay(options.delay); + } + if (hasOptions && $.effects && $.effects.effect[effectName]) { + element[method](options); + } else if (effectName !== method && element[effectName]) { + element[effectName](options.duration, options.easing, callback); + } else { + element.queue(function (next) { + $(this)[method](); + if (callback) { + callback.call(element[0]); + } + next(); + }); + } + }; +}); + +var widget = $.widget; + +// Source: js/initiator.js +$.fn.reverse = Array.prototype.reverse; + +$.Metro = function(params){ + params = $.extend({ + }, params); +}; + +$.Metro.hotkeys = []; + +$.Metro.initWidgets = function(){ + var widgets = $("[data-role]"); + + var hotkeys = $("[data-hotkey]"); + $.each(hotkeys, function(){ + var element = $(this); + var hotkey = element.data('hotkey').toLowerCase(); + + //if ($.Metro.hotkeys.indexOf(hotkey) > -1) { + // return; + //} + if (element.data('hotKeyBonded') === true ) { + return; + } + + $.Metro.hotkeys.push(hotkey); + + $(document).on('keyup', null, hotkey, function(e){ + if (element === undefined) return; + + if (element[0].tagName === 'A' && + element.attr('href') !== undefined && + element.attr('href').trim() !== '' && + element.attr('href').trim() !== '#') { + document.location.href = element.attr('href'); + } else { + element.click(); + } + return false; + }); + + element.data('hotKeyBonded', true); + }); + + $.each(widgets, function(){ + var $this = $(this), w = this; + var roles = $this.data('role').split(/\s*,\s*/); + roles.map(function(func){ + try { + //$(w)[func](); + if ($.fn[func] !== undefined && $this.data(func+'-initiated') !== true) { + $.fn[func].call($this); + $this.data(func+'-initiated', true); + } + } catch(e) { + if (window.METRO_DEBUG) { + console.log(e.message, e.stack); + } + } + }); + }); +}; + +$.Metro.init = function(){ + $.Metro.initWidgets(); + + if (window.METRO_AUTO_REINIT) { + if (!window.canObserveMutation) { + var originalDOM = $('body').html(), + actualDOM; + + setInterval(function () { + actualDOM = $('body').html(); + + if (originalDOM !== actualDOM) { + originalDOM = actualDOM; + + $.Metro.initWidgets(); + } + }, 100); + } else { + var observer, observerOptions, observerCallback; + observerOptions = { + 'childList': true, + 'subtree': true + }; + observerCallback = function(mutations){ + + //console.log(mutations); + + mutations.map(function(record){ + + if (record.addedNodes) { + + /*jshint loopfunc: true */ + var obj, widgets, plugins, hotkeys; + + for(var i = 0, l = record.addedNodes.length; i < l; i++) { + obj = $(record.addedNodes[i]); + + plugins = obj.find("[data-role]"); + + hotkeys = obj.find("[data-hotkey]"); + + $.each(hotkeys, function(){ + var element = $(this); + var hotkey = element.data('hotkey').toLowerCase(); + + //if ($.Metro.hotkeys.indexOf(hotkey) > -1) { + // return; + //} + + if (element.data('hotKeyBonded') === true ) { + return; + } + + $.Metro.hotkeys.push(hotkey); + + $(document).on('keyup', null, hotkey, function () { + if (element === undefined) return; + + if (element[0].tagName === 'A' && + element.attr('href') !== undefined && + element.attr('href').trim() !== '' && + element.attr('href').trim() !== '#') { + document.location.href = element.attr('href'); + } else { + element.click(); + } + return false; + }); + + element.data('hotKeyBonded', true); + //console.log($.Metro.hotkeys); + }); + + if (obj.data('role') !== undefined) { + widgets = $.merge(plugins, obj); + } else { + widgets = plugins; + } + + if (widgets.length) { + $.each(widgets, function(){ + var _this = $(this); + var roles = _this.data('role').split(/\s*,\s*/); + roles.map(function(func){ + try { + if ($.fn[func] !== undefined && _this.data(func+'-initiated') !== true) { + $.fn[func].call(_this); + _this.data(func+'-initiated', true); + } + } catch(e) { + if (window.METRO_DEBUG) { + console.log(e.message, e.stack); + } + } + }); + }); + } + } + } + }); + }; + + //console.log($(document)); + observer = new MutationObserver(observerCallback); + observer.observe(document, observerOptions); + } + } +}; + +// Source: js/utils/easing.js + $.easing['jswing'] = $.easing['swing']; + + $.extend($.easing, { + def: 'easeOutQuad', + swing: function (x, t, b, c, d) { + //alert($.easing.default); + return $.easing[$.easing.def](x, t, b, c, d); + }, + easeInQuad: function (x, t, b, c, d) { + return c * (t /= d) * t + b; + }, + easeOutQuad: function (x, t, b, c, d) { + return -c * (t /= d) * (t - 2) + b; + }, + easeInOutQuad: function (x, t, b, c, d) { + if ((t /= d / 2) < 1) return c / 2 * t * t + b; + return -c / 2 * ((--t) * (t - 2) - 1) + b; + }, + easeInCubic: function (x, t, b, c, d) { + return c * (t /= d) * t * t + b; + }, + easeOutCubic: function (x, t, b, c, d) { + return c * ((t = t / d - 1) * t * t + 1) + b; + }, + easeInOutCubic: function (x, t, b, c, d) { + if ((t /= d / 2) < 1) return c / 2 * t * t * t + b; + return c / 2 * ((t -= 2) * t * t + 2) + b; + }, + easeInQuart: function (x, t, b, c, d) { + return c * (t /= d) * t * t * t + b; + }, + easeOutQuart: function (x, t, b, c, d) { + return -c * ((t = t / d - 1) * t * t * t - 1) + b; + }, + easeInOutQuart: function (x, t, b, c, d) { + if ((t /= d / 2) < 1) return c / 2 * t * t * t * t + b; + return -c / 2 * ((t -= 2) * t * t * t - 2) + b; + }, + easeInQuint: function (x, t, b, c, d) { + return c * (t /= d) * t * t * t * t + b; + }, + easeOutQuint: function (x, t, b, c, d) { + return c * ((t = t / d - 1) * t * t * t * t + 1) + b; + }, + easeInOutQuint: function (x, t, b, c, d) { + if ((t /= d / 2) < 1) return c / 2 * t * t * t * t * t + b; + return c / 2 * ((t -= 2) * t * t * t * t + 2) + b; + }, + easeInSine: function (x, t, b, c, d) { + return -c * Math.cos(t / d * (Math.PI / 2)) + c + b; + }, + easeOutSine: function (x, t, b, c, d) { + return c * Math.sin(t / d * (Math.PI / 2)) + b; + }, + easeInOutSine: function (x, t, b, c, d) { + return -c / 2 * (Math.cos(Math.PI * t / d) - 1) + b; + }, + easeInExpo: function (x, t, b, c, d) { + return (t == 0) ? b : c * Math.pow(2, 10 * (t / d - 1)) + b; + }, + easeOutExpo: function (x, t, b, c, d) { + return (t == d) ? b + c : c * (-Math.pow(2, -10 * t / d) + 1) + b; + }, + easeInOutExpo: function (x, t, b, c, d) { + if (t == 0) return b; + if (t == d) return b + c; + if ((t /= d / 2) < 1) return c / 2 * Math.pow(2, 10 * (t - 1)) + b; + return c / 2 * (-Math.pow(2, -10 * --t) + 2) + b; + }, + easeInCirc: function (x, t, b, c, d) { + return -c * (Math.sqrt(1 - (t /= d) * t) - 1) + b; + }, + easeOutCirc: function (x, t, b, c, d) { + return c * Math.sqrt(1 - (t = t / d - 1) * t) + b; + }, + easeInOutCirc: function (x, t, b, c, d) { + if ((t /= d / 2) < 1) return -c / 2 * (Math.sqrt(1 - t * t) - 1) + b; + return c / 2 * (Math.sqrt(1 - (t -= 2) * t) + 1) + b; + }, + easeInElastic: function (x, t, b, c, d) { + var s = 1.70158; + var p = 0; + var a = c; + if (t == 0) return b; + if ((t /= d) == 1) return b + c; + if (!p) p = d * .3; + if (a < Math.abs(c)) { + a = c; + s = p / 4; + } + else s = p / (2 * Math.PI) * Math.asin(c / a); + return -(a * Math.pow(2, 10 * (t -= 1)) * Math.sin((t * d - s) * (2 * Math.PI) / p)) + b; + }, + easeOutElastic: function (x, t, b, c, d) { + var s = 1.70158; + var p = 0; + var a = c; + if (t == 0) return b; + if ((t /= d) == 1) return b + c; + if (!p) p = d * .3; + if (a < Math.abs(c)) { + a = c; + s = p / 4; + } + else s = p / (2 * Math.PI) * Math.asin(c / a); + return a * Math.pow(2, -10 * t) * Math.sin((t * d - s) * (2 * Math.PI) / p) + c + b; + }, + easeInOutElastic: function (x, t, b, c, d) { + var s = 1.70158; + var p = 0; + var a = c; + if (t == 0) return b; + if ((t /= d / 2) == 2) return b + c; + if (!p) p = d * (.3 * 1.5); + if (a < Math.abs(c)) { + a = c; + s = p / 4; + } + else s = p / (2 * Math.PI) * Math.asin(c / a); + if (t < 1) return -.5 * (a * Math.pow(2, 10 * (t -= 1)) * Math.sin((t * d - s) * (2 * Math.PI) / p)) + b; + return a * Math.pow(2, -10 * (t -= 1)) * Math.sin((t * d - s) * (2 * Math.PI) / p) * .5 + c + b; + }, + easeInBack: function (x, t, b, c, d, s) { + if (s == undefined) s = 1.70158; + return c * (t /= d) * t * ((s + 1) * t - s) + b; + }, + easeOutBack: function (x, t, b, c, d, s) { + if (s == undefined) s = 1.70158; + return c * ((t = t / d - 1) * t * ((s + 1) * t + s) + 1) + b; + }, + easeInOutBack: function (x, t, b, c, d, s) { + if (s == undefined) s = 1.70158; + if ((t /= d / 2) < 1) return c / 2 * (t * t * (((s *= (1.525)) + 1) * t - s)) + b; + return c / 2 * ((t -= 2) * t * (((s *= (1.525)) + 1) * t + s) + 2) + b; + }, + easeInBounce: function (x, t, b, c, d) { + return c - $.easing.easeOutBounce(x, d - t, 0, c, d) + b; + }, + easeOutBounce: function (x, t, b, c, d) { + if ((t /= d) < (1 / 2.75)) { + return c * (7.5625 * t * t) + b; + } else if (t < (2 / 2.75)) { + return c * (7.5625 * (t -= (1.5 / 2.75)) * t + .75) + b; + } else if (t < (2.5 / 2.75)) { + return c * (7.5625 * (t -= (2.25 / 2.75)) * t + .9375) + b; + } else { + return c * (7.5625 * (t -= (2.625 / 2.75)) * t + .984375) + b; + } + }, + easeInOutBounce: function (x, t, b, c, d) { + if (t < d / 2) return $.easing.easeInBounce(x, t * 2, 0, c, d) * .5 + b; + return $.easing.easeOutBounce(x, t * 2 - d, 0, c, d) * .5 + c * .5 + b; + } +}); + +// Source: js/utils/hotkeys.js +$.hotkeys = { + version: "0.8", + + specialKeys: { + 8: "backspace", + 9: "tab", + 10: "return", + 13: "return", + 16: "shift", + 17: "ctrl", + 18: "alt", + 19: "pause", + 20: "capslock", + 27: "esc", + 32: "space", + 33: "pageup", + 34: "pagedown", + 35: "end", + 36: "home", + 37: "left", + 38: "up", + 39: "right", + 40: "down", + 45: "insert", + 46: "del", + 59: ";", + 61: "=", + 96: "0", + 97: "1", + 98: "2", + 99: "3", + 100: "4", + 101: "5", + 102: "6", + 103: "7", + 104: "8", + 105: "9", + 106: "*", + 107: "+", + 109: "-", + 110: ".", + 111: "/", + 112: "f1", + 113: "f2", + 114: "f3", + 115: "f4", + 116: "f5", + 117: "f6", + 118: "f7", + 119: "f8", + 120: "f9", + 121: "f10", + 122: "f11", + 123: "f12", + 144: "numlock", + 145: "scroll", + 173: "-", + 186: ";", + 187: "=", + 188: ",", + 189: "-", + 190: ".", + 191: "/", + 192: "`", + 219: "[", + 220: "\\", + 221: "]", + 222: "'" + }, + + shiftNums: { + "`": "~", + "1": "!", + "2": "@", + "3": "#", + "4": "$", + "5": "%", + "6": "^", + "7": "&", + "8": "*", + "9": "(", + "0": ")", + "-": "_", + "=": "+", + ";": ": ", + "'": "\"", + ",": "<", + ".": ">", + "/": "?", + "\\": "|" + }, + + // excludes: button, checkbox, file, hidden, image, password, radio, reset, search, submit, url + textAcceptingInputTypes: [ + "text", "password", "number", "email", "url", "range", "date", "month", "week", "time", "datetime", + "datetime-local", "search", "color", "tel"], + + // default input types not to bind to unless bound directly + textInputTypes: /textarea|input|select/i, + + options: { + filterInputAcceptingElements: true, + filterTextInputs: true, + filterContentEditable: true + } +}; + +function keyHandler(handleObj) { + if (typeof handleObj.data === "string") { + handleObj.data = { + keys: handleObj.data + }; + } + + // Only care when a possible input has been specified + if (!handleObj.data || !handleObj.data.keys || typeof handleObj.data.keys !== "string") { + return; + } + + var origHandler = handleObj.handler, + keys = handleObj.data.keys.toLowerCase().split(" "); + + handleObj.handler = function(event) { + // Don't fire in text-accepting inputs that we didn't directly bind to + if (this !== event.target && + ($.hotkeys.options.filterInputAcceptingElements && + $.hotkeys.textInputTypes.test(event.target.nodeName) || + ($.hotkeys.options.filterContentEditable && $(event.target).attr('contenteditable')) || + ($.hotkeys.options.filterTextInputs && + $.inArray(event.target.type, $.hotkeys.textAcceptingInputTypes) > -1))) { + return; + } + + var special = event.type !== "keypress" && $.hotkeys.specialKeys[event.which], + character = String.fromCharCode(event.which).toLowerCase(), + modif = "", + possible = {}; + + $.each(["alt", "ctrl", "shift"], function(index, specialKey) { + + if (event[specialKey + 'Key'] && special !== specialKey) { + modif += specialKey + '+'; + } + }); + + // metaKey is triggered off ctrlKey erronously + if (event.metaKey && !event.ctrlKey && special !== "meta") { + modif += "meta+"; + } + + if (event.metaKey && special !== "meta" && modif.indexOf("alt+ctrl+shift+") > -1) { + modif = modif.replace("alt+ctrl+shift+", "hyper+"); + } + + if (special) { + possible[modif + special] = true; + } + else { + possible[modif + character] = true; + possible[modif + $.hotkeys.shiftNums[character]] = true; + + // "$" can be triggered as "Shift+4" or "Shift+$" or just "$" + if (modif === "shift+") { + possible[$.hotkeys.shiftNums[character]] = true; + } + } + + for (var i = 0, l = keys.length; i < l; i++) { + if (possible[keys[i]]) { + return origHandler.apply(this, arguments); + } + } + }; +} + +$.each(["keydown", "keyup", "keypress"], function() { + $.event.special[this] = { + add: keyHandler + }; +}); + +// Source: js/utils/mousewheel.js +var toFix = ['wheel', 'mousewheel', 'DOMMouseScroll', 'MozMousePixelScroll']; +var toBind = 'onwheel' in document || document.documentMode >= 9 ? ['wheel'] : ['mousewheel', 'DomMouseScroll', 'MozMousePixelScroll']; +var lowestDelta, lowestDeltaXY; + +if ( $.event.fixHooks ) { + for ( var i = toFix.length; i; ) { + $.event.fixHooks[ toFix[--i] ] = $.event.mouseHooks; + } +} + +$.event.special.mousewheel = { + setup: function() { + if ( this.addEventListener ) { + for ( var i = toBind.length; i; ) { + this.addEventListener( toBind[--i], handler, false ); + } + } else { + this.onmousewheel = handler; + } + }, + + teardown: function() { + if ( this.removeEventListener ) { + for ( var i = toBind.length; i; ) { + this.removeEventListener( toBind[--i], handler, false ); + } + } else { + this.onmousewheel = null; + } + } +}; + +$.fn.extend({ + mousewheel: function(fn) { + return fn ? this.bind("mousewheel", fn) : this.trigger("mousewheel"); + }, + + unmousewheel: function(fn) { + return this.unbind("mousewheel", fn); + } +}); + + +function handler(event) { + var orgEvent = event || window.event, + args = [].slice.call(arguments, 1), + delta = 0, + deltaX = 0, + deltaY = 0, + absDelta = 0, + absDeltaXY = 0, + fn; + event = $.event.fix(orgEvent); + event.type = "mousewheel"; + + // Old school scrollwheel delta + if ( orgEvent.wheelDelta ) { delta = orgEvent.wheelDelta; } + if ( orgEvent.detail ) { delta = orgEvent.detail * -1; } + + // New school wheel delta (wheel event) + if ( orgEvent.deltaY ) { + deltaY = orgEvent.deltaY * -1; + delta = deltaY; + } + if ( orgEvent.deltaX ) { + deltaX = orgEvent.deltaX; + delta = deltaX * -1; + } + + // Webkit + if ( orgEvent.wheelDeltaY !== undefined ) { deltaY = orgEvent.wheelDeltaY; } + if ( orgEvent.wheelDeltaX !== undefined ) { deltaX = orgEvent.wheelDeltaX * -1; } + + // Look for lowest delta to normalize the delta values + absDelta = Math.abs(delta); + if ( !lowestDelta || absDelta < lowestDelta ) { lowestDelta = absDelta; } + absDeltaXY = Math.max(Math.abs(deltaY), Math.abs(deltaX)); + if ( !lowestDeltaXY || absDeltaXY < lowestDeltaXY ) { lowestDeltaXY = absDeltaXY; } + + // Get a whole value for the deltas + fn = delta > 0 ? 'floor' : 'ceil'; + delta = Math[fn](delta / lowestDelta); + deltaX = Math[fn](deltaX / lowestDeltaXY); + deltaY = Math[fn](deltaY / lowestDeltaXY); + + // Add event and delta to the front of the arguments + args.unshift(event, delta, deltaX, deltaY); + + return ($.event.dispatch || $.event.handle).apply(this, args); +} + +// Source: js/utils/pre-code.js +function preCode(selector) { + var els = Array.prototype.slice.call(document.querySelectorAll(selector), 0); + + els.forEach(function(el, idx, arr){ + var txt = el.textContent + .replace(/^[\r\n]+/, "") // strip leading newline + .replace(/\s+$/g, ""); + + if (/^\S/gm.test(txt)) { + el.textContent = txt; + return; + } + + var mat, str, re = /^[\t ]+/gm, len, min = 1e3; + + while (mat = re.exec(txt)) { + len = mat[0].length; + + if (len < min) { + min = len; + str = mat[0]; + } + } + + if (min == 1e3) + return; + + el.textContent = txt.replace(new RegExp("^" + str, 'gm'), ""); + }); +} + +document.addEventListener("DOMContentLoaded", function() { + preCode("pre code, textarea"); +}, false); +// Source: js/utils/touch-handler.js +var hasTouch = 'ontouchend' in window, eventTimer; +var moveDirection = 'undefined', startX, startY, deltaX, deltaY, mouseDown = false; + +var addTouchEvents = function(element) { + if (hasTouch) { + element.addEventListener("touchstart", touch2Mouse, true); + element.addEventListener("touchmove", touch2Mouse, true); + element.addEventListener("touchend", touch2Mouse, true); + } +}; + +function touch2Mouse(e) { + var theTouch = e.changedTouches[0]; + var mouseEv; + + switch (e.type) { + case "touchstart": + mouseEv = "mousedown"; + break; + case "touchend": + mouseEv = "mouseup"; + break; + case "touchmove": + mouseEv = "mousemove"; + break; + default: + return; + } + + + if (mouseEv == "mousedown") { + eventTimer = (new Date()).getTime(); + startX = theTouch.clientX; + startY = theTouch.clientY; + mouseDown = true; + } + + if (mouseEv == "mouseup") { + if ((new Date()).getTime() - eventTimer <= 500) { + mouseEv = "click"; + } else if ((new Date()).getTime() - eventTimer > 1000) { + mouseEv = "longclick"; + } + eventTimer = 0; + mouseDown = false; + } + + if (mouseEv == "mousemove") { + if (mouseDown) { + deltaX = theTouch.clientX - startX; + deltaY = theTouch.clientY - startY; + moveDirection = deltaX > deltaY ? 'horizontal' : 'vertical'; + } + } + + var mouseEvent = document.createEvent("MouseEvent"); + mouseEvent.initMouseEvent(mouseEv, true, true, window, 1, theTouch.screenX, theTouch.screenY, theTouch.clientX, theTouch.clientY, false, false, false, false, 0, null); + theTouch.target.dispatchEvent(mouseEvent); + + e.preventDefault(); +} + +// Source: js/widgets/accordion.js +$.widget("metro.accordion", { + + version: "3.0.0", + + options: { + closeAny: false, + speed: 'fast', + onFrameOpen: function(frame){return true;}, + onFrameOpened: function(frame){}, + onFrameClose: function(frame){return true;}, + onFrameClosed: function(frame){} + }, + + init: function(){ + var that = this, element = this.element; + + element.on('click', '.heading', function(e){ + var frame = $(this).parent(); + + if (frame.hasClass('disabled')) {return false;} + + if (!frame.hasClass('active')) { + that._openFrame(frame); + } else { + that._closeFrame(frame); + } + + e.preventDefault(); + e.stopPropagation(); + }); + }, + + _closeAllFrames: function(){ + var that = this; + var frames = this.element.children('.frame.active'); + $.each(frames, function(){ + that._closeFrame($(this)); + }); + }, + + _openFrame: function(frame){ + var o = this.options; + var content = frame.children('.content'); + var result; + + if (typeof o.onFrameOpen === 'function') { + if (!o.onFrameOpen(frame)) {return false;} + } else { + if (typeof window[o.onFrameOpen] === 'function') { + if (!window[o.onFrameOpen](frame)) {return false;} + } else { + result = eval("(function(){"+o.onFrameOpen+"})"); + if (!result.call(frame)) {return false;} + } + } + + if (o.closeAny) {this._closeAllFrames();} + + content.slideDown(o.speed); + frame.addClass('active'); + + if (typeof o.onFrameOpened === 'function') { + o.onFrameOpened(frame); + } else { + if (typeof window[o.onFrameOpened] === 'function') { + window[o.onFrameOpened](frame); + } else { + result = eval("(function(){"+o.onFrameOpened+"})"); + result.call(frame); + } + } + }, + + _closeFrame: function(frame){ + var o = this.options; + var content = frame.children('.content'); + var result; + + if (typeof o.onFrameClose === 'function') { + if (!o.onFrameClose(frame)) {return false;} + } else { + if (typeof window[o.onFrameClose] === 'function') { + if (!window[o.onFrameClose](frame)) {return false;} + } else { + result = eval("(function(){"+o.onFrameClose+"})"); + if (!result.call(frame)) {return false;} + } + } + + content.slideUp(o.speed,function(){ + frame.removeClass("active"); + }); + + if (typeof o.onFrameClosed === 'function') { + o.onFrameClosed(frame); + } else { + if (typeof window[o.onFrameClosed] === 'function') { + window[o.onFrameClosed](frame); + } else { + result = eval("(function(){"+o.onFrameClosed+"})"); + result.call(frame); + } + } + }, + + _create: function(){ + var that = this, o = this.options, element = this.element; + + $.each(this.element.data(), function(key, value){ + if (key in o) { + try { + o[key] = $.parseJSON(value); + } catch (e) { + o[key] = value; + } + } + }); + + that.init(); + element.data('accordion', this); + + }, + + _destroy: function(){ + }, + + _setOption: function(key, value){ + this._super('_setOption', key, value); + } +}); + +// Source: js/widgets/appbar.js + $.widget("metro.appbar", { + version: "3.0.0", + options: { + flexstyle: "app-bar-menu", //app-bar-menu | YOUR_OWN class for the pull flexmenu, basic support for "sidebar2" are integrated in the appbar.less file + flexclean: false, //true | false. if set all entries except the no-flexible ones will removed + flextolerance: 3 //in px. if set the freespace is runnig out a little bit earlier, so floats + //and not no-wrap elements have no chance to wrap. help for rounding errors also + }, + _create: function () { + var that = this, element = this.element, o = this.options; + + $.each(element.data(), function (key, value) { + if (key in o) { + try { + o[key] = $.parseJSON(value); + } catch (e) { + o[key] = value; + } + } + }); + + this._initBar(); + + element.data('appbar', this); + + }, + _calculateFreeSpace: function () { + var that = this, element = this.element, o = this.options; + var menusParentWidth = 0, childrenWidth = 0, children; + var freeSpace; + + //get the overall free space from the wrapping parent of the menus + menusParentWidth = $(that.menusParent).width(); + + //get the width of all visible children + children = $(that.menusParent).children(":visible").not(".app-bar-pullmenu"); + + + //margin support: because there could be margins between elements, we do not summarize the width up with a one liner + //but calculate width of all children in an intelligent way, we takte the left offsett of the first element and right offset of the right element + //for that we have to support float left and right too: + //float left and right support: we can not be sure that the first element in dom is on the left and the last is on the right + //right floated + // - sort the children as the user see them + + //sort the children as the user see them according to the css float + var childrenLeftFloated = []; + var childrenRightFloated = []; + var childrenAsUsual = []; + var floatState; + + for (var i = 0, len = children.length; i < len; i++) { + floatState = $(children[i]).css("float"); + switch (floatState) { + case "left": + childrenLeftFloated.push(children[i]); + break; + case "right": + childrenRightFloated.push(children[i]); + break; + default: + childrenAsUsual.push(children[i]); + } + } + //right floats are from right to left + childrenRightFloated.reverse(); + + //=== build up the new children jquery object === + //join the left, right and normal children + children = new Array(); + children = childrenLeftFloated.concat(childrenAsUsual, childrenRightFloated); + + //convert the array to jquery object again + children = $(children); + + //=== calculate the width of the elements with margin support === + + //adds the left margin dedicated to the first child + childrenWidth += parseInt($(children).first().css("margin-left")); + + //walk trough the children and add the size, + for (var i = 0, len = children.length - 1; i <= len; i++) { + childrenWidth += $(children[i]).outerWidth(); + if (i !== len) { + //the highest margin between two elements counts + childrenWidth += Math.max( + parseInt($(children[i]).css("margin-right")), + parseInt($(children[i + 1]).css("margin-left")) + + ); + } + } + //the right margin for the right child + childrenWidth += parseInt($(children[len]).css("margin-right")); + + //now we have all data for calculation. Yippie-Ya-Yeah, Schweinebacke!! (much cooler German translation of B. W. Yippie-Ya-Yeah, Motherf***er) + freeSpace = menusParentWidth - childrenWidth; + + //writing the data we found out to the element's data + that.freeSpace = freeSpace; //not used space within the parent(mostly the appbar itself) + that.childrenWidth = childrenWidth; //the total width of the children + that.menusParentWidth = menusParentWidth; //the width without padding or something + + return freeSpace; + }, + _originIndexMove: function(menu, child) { + //find all children which are lower than we + var flexChildren = $(menu).children().filter(function () { + return parseInt($(this).attr("data-flexorderorigin")) < parseInt($(child).attr("data-flexorderorigin")); + }); + + if (flexChildren.length > 0) { + //because we are greater, we set it after the childern which are lower + $(flexChildren).last().after(child); + } else { + //find all children which are greater than we are + flexChildren = $(menu).children().filter(function () { + return parseInt($(this).attr("data-flexorderorigin")) > parseInt($(child).attr("data-flexorderorigin")); + }); + if (flexChildren.length > 0) { + //because we are lower, we set us before the childern which are greater + $(flexChildren).first().before(child); + } else { + //we have no children, just append it + $(menu).append(child); + } + } + }, + _moveMenuEntry: function (direction) { + var that = this, element = this.element, o = this.options; + + direction = direction || "toPullMenu"; // "fromPullMenu" is also an option + + if (direction === "toPullMenu") { + //get next candidate which could be moved to the pullmenu, in fact the last which not have a mark as pullmenu-entry + + var nextToHide = $(that.allMenuEntries).not(".app-bar-pullmenu-entry").last(); + + if (nextToHide.length === 0) { + //nothing left, we have nothing to do + return false; + } + + + //find out in which menubar we are located in + var topMenu = $(nextToHide).parent(); //this is only a appbar-menu not the appbar itself + //find out where we have to go + var topMenuIndex = $(that.flexVisibles).index($(nextToHide).parent()); + var pullMenuBar = $(that.pullMenu).find(".app-bar-pullmenubar").eq(topMenuIndex); //TODO: Make the class app-bar-menu configurable - perhaps sidebar + + that._originIndexMove(pullMenuBar, nextToHide); + //move it to the pullmenu +// if ($(topMenu).is("[data-flexdirection='reverse']")) {//data-flexdirection="reverse" support +// $(nextToHide).appendTo(pullMenuBar); +// } else { //normal way +// $(nextToHide).prependTo(pullMenuBar); +// } + + //mark the entry as a entry of the pullmenu + $(nextToHide).addClass("app-bar-pullmenu-entry"); + + //the menubar is initiated with the hidden class, so we do not see empty pullmenubars, we must unhide them + //it does not matter, if we see it already, we do it always: + $(pullMenuBar).removeClass("hidden") + .show(); + + //in case there are no more entries in the top menu bar we can hide it + if ($(topMenu).children().length === 0) { + $(topMenu).addClass("hidden"); + } + + //we show the pullbutton now + $(that.pullButton).show(); + + return nextToHide; + + } else if (direction === "fromPullMenu") { + //get next candidate which could be moved to the topbar menu, in fact the first which is still marked as pullmenu-entry + var nextToShow = $(that.allMenuEntries).filter(".app-bar-pullmenu-entry").first(); + + + //find out in which pullmenu we are located in + var pullMenuBar = $(nextToShow).parent(); //only one single menu, not the whole thing + + //find out where we have to go + var topMenuIndex = $(pullMenuBar).index(); //it is the same structur as that.flexVisibles, so we can use the simple index + var topMenu = $(that.flexVisibles).eq(topMenuIndex); + + $(topMenu).removeClass("hidden"); + //remove the mark as a entry of the pullmenu and move it to the normal top menu + $(nextToShow).removeClass("app-bar-pullmenu-entry"); + + //cosider the flexorder + + //walk trough the children in topMenu and find out what we must do + + //find all children which are lower than we + that._originIndexMove(topMenu, nextToShow); + + //in case there are no more entries left, we can hide the pullbar menu from this entry + if ($(pullMenuBar).children().length === 0) { + $(pullMenuBar).addClass("hidden") + .hide(); + } + + //in case we have no more menus in the pullbar area, we hide the pullbar thing + if ($(that.pullMenu).children(".app-bar-pullmenubar").not(".hidden").length === 0) { + $(that.pullMenu).hide().addClass("hidden"); + $(that.pullButton).hide(); + } + + if (nextToShow.length === 0) { + //nothing left, we have nothing to do + return false; + } + return nextToShow; + } + }, + _checkMenuEntries: function () { + var that = this, element = this.element, o = this.options; + + var forceEndLoop = false; + + for (var maxLoop = 0, maxLoopLen = that.allMenuEntries.length; maxLoop < maxLoopLen; maxLoop++) { //we do nothing with this, we could use while(true) but there is a danger of infinite loops + + //calculate the empty space within the appbar we can use for hidden children + that._calculateFreeSpace(); + var freeSpace = that.freeSpace; + + if (freeSpace < o.flextolerance || o.flexclean) { //3px is tolerance and to be faster than the wrapping. TODO: make this configurable + //no space left, we hide a menu entry now + + //move the menu entry to the pullbar and check if there are more menuentries left + if (!(that._moveMenuEntry("toPullMenu"))) { + //nothing left to hide + break; + } else { + //we moved successfully, perhaps we can hide more entries, we recheck the appbar, + //remember, we are in a endless loop, which checks this for us + + if (!forceEndLoop) { + continue; + } + } + + } else { + //we have space here, we try to get more entries there + + //check if there is something to do + if (!(that._moveMenuEntry("fromPullMenu"))) { + //nothing left to show + break; + } else { + forceEndLoop = true; + continue; + } + + } + + //we continue manually. if we reach the end of the loop we end this better so we do not produce infinite loop accidentally + break; + } + }, + resize: function () { + var that = this, element = this.element, o = this.options; + + if (that.initiatedAsFlex) { + this._checkMenuEntries(); + } + }, + _initBar: function () { + var that = this, element = this.element, o = this.options; + + that.lastFlexAction = undefined; + + that.pullButton = $(element).find('.app-bar-pullbutton'); + var menus = $(element).find('.app-bar-menu'); + + that.initiatedAsFlex = false; //we change it later in the code - conditionally + o.flexclean = $(element).is("[data-flexclean='true']") || o.flexclean; + o.flexstyle = $(element).attr("data-flexstyle") || o.flexstyle; + + var flexVisible, menuEntries; //temporarly used vars + + that.flexVisibles = $(); //the menus which are directly in the appbar + that.allMenuEntries = $(); //all menu entries in a sorted order + that.menusParent = $(); //common parent from the menus, which can but do not need to be this.element. We get the max width from it + that.pullMenu = $(); + + if (menus.length > 0 && $(element).is(":not('.no-flexible')")) { + //strip off all .no-flexible menus + that.flexVisibles = $(menus).not(".no-flexible"); + + if (that.flexVisibles.length > 0) { + + that.initiatedAsFlex = true; + + //sort the menus according to the data-flexorder attribute + that.flexVisibles.sort(function (a, b) { + var aValue = (parseInt($(a).data("flexorder")) || $(a).index() + 1); + var bValue = (parseInt($(b).data("flexorder")) || $(b).index() + 1); + return aValue - bValue; + }); + + //get all children in a sorted order according to the data-flexorder attribute + $(that.flexVisibles).each(function () { + flexVisible = this; + + menuEntries = $(flexVisible).children(); + + //give all menuEntries a flexorder which have not one and save the original order + $(menuEntries).each(function () { + $(this).attr("data-flexorderorigin", $(this).index()); + + if(!($(this).is("[data-flexorder]"))) { + $(this).attr("data-flexorder", $(this).index() + 1); + } + }); + + menuEntries.sort(function (a, b) { + var aValue = parseInt($(a).data("flexorder")); + var bValue = parseInt($(b).data("flexorder")); + return aValue - bValue; + }); + + //data-flexdirection="reverse" support + if ($(flexVisible).is("[data-flexdirection='reverse']")) { + menuEntries.reverse(); + } + + $.merge(that.allMenuEntries, $(menuEntries).not(".no-flexible")); //strip off all .no-flexible elements + }); + + //find the parent, which contains all menus + that.menusParent = $(element).find(".app-bar-menu").first().parent(); + + // === create a pull down button + pull menu === + //check if a pulldown button already exists, if not we create one + if (!(that.pullButton.length > 0)) { + //DOC: We can create a display:none button, if we want to force to not show a pull button + that.pullButton = $('
'); + $(that.menusParent).append(that.pullButton); + } + + //create a pullmenu + that.pullMenu = $('