diff --git a/.ruby-gemset b/.ruby-gemset deleted file mode 100644 index e598c3a8..00000000 --- a/.ruby-gemset +++ /dev/null @@ -1 +0,0 @@ -bitcoincash diff --git a/.ruby-version b/.ruby-version deleted file mode 100644 index 005119ba..00000000 --- a/.ruby-version +++ /dev/null @@ -1 +0,0 @@ -2.4.1 diff --git a/COPYING b/COPYING deleted file mode 100644 index 4657e5f3..00000000 --- a/COPYING +++ /dev/null @@ -1,21 +0,0 @@ -The MIT License (MIT) - -Copyright (c) 2017 bitcoincash.org - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. diff --git a/Dockerfile b/Dockerfile deleted file mode 100644 index 5e5bfc43..00000000 --- a/Dockerfile +++ /dev/null @@ -1,3 +0,0 @@ -FROM nginx -COPY nginx.conf /etc/nginx/conf.d/default.conf -COPY html/ /usr/share/nginx/html/ \ No newline at end of file diff --git a/Gemfile b/Gemfile deleted file mode 100644 index 4ff53a1d..00000000 --- a/Gemfile +++ /dev/null @@ -1,4 +0,0 @@ -source 'https://rubygems.org' - -gem 'rake' -gem 'i18n' diff --git a/Gemfile.lock b/Gemfile.lock deleted file mode 100644 index 3a700cba..00000000 --- a/Gemfile.lock +++ /dev/null @@ -1,17 +0,0 @@ -GEM - remote: https://rubygems.org/ - specs: - concurrent-ruby (1.0.5) - i18n (0.9.1) - concurrent-ruby (~> 1.0) - rake (12.3.0) - -PLATFORMS - ruby - -DEPENDENCIES - i18n - rake - -BUNDLED WITH - 1.16.0 diff --git a/README.md b/README.md index 9d39f808..6d732e30 100644 --- a/README.md +++ b/README.md @@ -1,48 +1,7 @@ -# bitcoincash +# Legacy Website Repository -This is the repository for [bitcoincash.org](https://bitcoincash.org). As the Bitcoin Cash community expands, we hope that many will participate and improve this project over time. +This repository has been deprecated. -Build & Run the Docker Image ----------------------------- +Please submit patches to the combined bitcoincash.org repository: -In order to build and run the site you need ruby and docker. Then run: - -1. `gem install bundler` -2. `bundle install` -3. `rake docker:build` -4. `docker run -d -p 8888:80 bitcoincash` - -Contributions -------------- - -If you want to submit updates to the website make sure you are editing `index.html.erb`. This is the template used to generate all translated html files via `rake translations:build`. - -Adding Translations -------------------- - -To add translations to the project, use `translations/en.yml` as a template and create a new file for your locale. Then translate all the content inside of the yaml file and send us a pull request. - -About Bitcoin Cash ------------------- - -Bitcoin Cash brings sound money to the world. Merchants and users are empowered with low fees and reliable confirmations. The future shines brightly with unrestricted growth, global adoption, permissionless innovation, and decentralized development. - -All Bitcoin holders as of block 478558 are now owners of Bitcoin Cash. All Bitcoiners are welcome to join the Bitcoin Cash community as we move forward in creating sound money accessible to the whole world. - -Listing Policy for Exchanges, Wallets, and Projects ---------------------------------------------------- - -Although many exchanges, wallets, and other projects would like to be listed on our website, BitcoinCash.org is not meant -to be an exhaustive directory. There is limited space and quite simply, we only want to showcase the best of the best. - -Only the top several exchanges by trading volume in each country will be considered. - -For wallets, we only want to list those that have the highest trust and best reputation within the community. Relevant factors include the brand, the age of the wallet, as well as the track record of the company, developers, and/or other individuals involved. - -We apologize in advance if we're unable to provide a listing for you on BitcoinCash.org. We acknowledge the criteria for wallet listings are somewhat subjective. Please understand our decisions are not personal, but rather based on a conservative approach and our responsbility to safeguard the community against questionable projects. Lastly, no listing should be interpreted as our explicit endorsement. - -License -------- - -bitcoincash.org is released under the terms of the MIT license. See [COPYING](COPYING) for more -information or see https://opensource.org/licenses/MIT. +https://github.com/bitcoincashorg/bitcoincash.org diff --git a/Rakefile b/Rakefile deleted file mode 100644 index d50e6cd2..00000000 --- a/Rakefile +++ /dev/null @@ -1,46 +0,0 @@ -require 'bundler' -Bundler.setup - -namespace :docker do - desc "build docker images" - task :build => ['translations:build'] do - puts "Building bitcoincash docker image" - puts `docker build -t bitcoincash .` - end -end - -namespace :translations do - require 'erb' - require 'fileutils' - require 'i18n' - require "i18n/backend/fallbacks" - I18n::Backend::Simple.send(:include, I18n::Backend::Fallbacks) - I18n.load_path = Dir['./translations/*.yml'] - - desc "build translated html files" - task :build do - puts "Building bitcoincash translated html files" - nginx_template = File.read('nginx.conf.erb') - nginx_renderer = ERB.new(nginx_template) - File.write(File.join('.', 'nginx.conf'), nginx_renderer.result()) - graphics_template = File.read('graphics.html.erb') - graphics_renderer = ERB.new(graphics_template, nil, '-') - FileUtils.mkdir_p(File.join('.', 'html', 'graphics')) - template = File.read('index.html.erb') - renderer = ERB.new(template, nil, '-') - I18n.available_locales.sort.each do |locale| - puts "Building #{locale}" - I18n.locale = locale - File.write(File.join('.', 'html', "index.#{locale}.html"), renderer.result()) - File.write(File.join('.', 'html', 'index.html'), renderer.result()) if locale == :en - FileUtils.mkdir_p(File.join('.', 'html', 'graphics')) - FileUtils.mkdir_p(File.join('.', 'html', locale.to_s.downcase, 'graphics')) - File.write(File.join('.', 'html', 'graphics', "index.#{locale}.html"), graphics_renderer.result()) - File.write(File.join('.', 'html', 'graphics', 'index.html'), renderer.result()) if locale == :en - File.write(File.join('.', 'html', locale.to_s.downcase, 'index.html'), renderer.result()) - File.write(File.join('.', 'html', locale.to_s.downcase, 'graphics', 'index.html'), graphics_renderer.result()) - end - end -end - -task :default => 'docker:build' diff --git a/graphics.html.erb b/graphics.html.erb deleted file mode 100644 index fab2df8f..00000000 --- a/graphics.html.erb +++ /dev/null @@ -1,338 +0,0 @@ - - - - - <%= I18n.t(:'title.graphics').strip %> - - - - - - - - - - - - - - - - - - - - - - - - - - -
-
- -
-
- -
-
-
-
-
-

<%= I18n.t(:'graphics.logos').strip %>

-
-
-

<%= I18n.t(:'graphics.download_png_svg').strip %>

-

<%= I18n.t(:'graphics.download_all').strip %>

-
-
-
-
-
- - - - - - -
-
-
-
-
-
-
-

<%= I18n.t(:'graphics.merchant.title').strip %>

-
-
-

<%= I18n.t(:'graphics.merchant.description').strip %>

-
-
-
-
- -
-
-
-
-
-
-

<%= I18n.t(:'graphics.donation.title').strip %>

-
-
-

<%= I18n.t(:'graphics.donation.description').strip %>

-
-
-
-
- -
-
-
-
-
-
-

<%= I18n.t(:'graphics.identity.title').strip %>

-
-
-

<%= I18n.t(:'graphics.identity.description').strip %>

-
-
-
-
-
-
-
-

<%= I18n.t(:'graphics.identity.font').strip %>

-

ABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890?!%

- <%= I18n.t(:'graphics.identity.download').strip %> -
-
-

<%= I18n.t(:'graphics.identity.font_italic').strip %>

-

ABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890?!%

- <%= I18n.t(:'graphics.identity.download').strip %> -
-
-
-
-
-
-

<%= I18n.t(:'graphics.identity.orange').strip %>

- <%= I18n.t(:'graphics.identity.hex').strip %>: #F59332
- <%= I18n.t(:'graphics.identity.rgb').strip %>: 247 / 148 / 29
- <%= I18n.t(:'graphics.identity.cmyk').strip %>: 0 / 50 / 100 / 0
- <%= I18n.t(:'graphics.identity.pantone').strip %>: 1375C -
-
-
-
-
-

<%= I18n.t(:'graphics.identity.grey').strip %>

- <%= I18n.t(:'graphics.identity.hex').strip %>: #4D4D4D
- <%= I18n.t(:'graphics.identity.rgb').strip %>: 77 / 77 / 77
- <%= I18n.t(:'graphics.identity.cmyk').strip %>: 65 / 58 / 57 / 37
- <%= I18n.t(:'graphics.identity.pantone').strip %>: 11C -
-
-
-
-
-

<%= I18n.t(:'graphics.identity.white').strip %>

- <%= I18n.t(:'graphics.identity.hex').strip %>: #FFFFFF
- <%= I18n.t(:'graphics.identity.rgb').strip %>: 255 / 255 / 255
- <%= I18n.t(:'graphics.identity.cmyk').strip %>: 0 / 0 / 0 / 0
- <%= I18n.t(:'graphics.identity.pantone').strip %>: paper -
-
-
-
-
-
- -
- - - - - - - - - - - - - - - - diff --git a/html/bitcoin.pdf b/html/bitcoin.pdf deleted file mode 100644 index 1e19b739..00000000 Binary files a/html/bitcoin.pdf and /dev/null differ diff --git a/html/css/animate.css b/html/css/animate.css deleted file mode 100644 index 57725be5..00000000 --- a/html/css/animate.css +++ /dev/null @@ -1,3288 +0,0 @@ -@charset "UTF-8"; - -/*! -Animate.css - http://daneden.me/animate -Licensed under the MIT license - http://opensource.org/licenses/MIT - -Copyright (c) 2015 Daniel Eden -*/ - -.animated { - -webkit-animation-duration: 1s; - animation-duration: 1s; - -webkit-animation-fill-mode: both; - animation-fill-mode: both; -} - -.animated.infinite { - -webkit-animation-iteration-count: infinite; - animation-iteration-count: infinite; -} - -.animated.hinge { - -webkit-animation-duration: 2s; - animation-duration: 2s; -} - -.animated.bounceIn, -.animated.bounceOut { - -webkit-animation-duration: .75s; - animation-duration: .75s; -} - -.animated.flipOutX, -.animated.flipOutY { - -webkit-animation-duration: .75s; - animation-duration: .75s; -} - -@-webkit-keyframes bounce { - from, 20%, 53%, 80%, to { - -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000); - animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000); - -webkit-transform: translate3d(0,0,0); - transform: translate3d(0,0,0); - } - - 40%, 43% { - -webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060); - animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060); - -webkit-transform: translate3d(0, -30px, 0); - transform: translate3d(0, -30px, 0); - } - - 70% { - -webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060); - animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060); - -webkit-transform: translate3d(0, -15px, 0); - transform: translate3d(0, -15px, 0); - } - - 90% { - -webkit-transform: translate3d(0,-4px,0); - transform: translate3d(0,-4px,0); - } -} - -@keyframes bounce { - from, 20%, 53%, 80%, to { - -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000); - animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000); - -webkit-transform: translate3d(0,0,0); - transform: translate3d(0,0,0); - } - - 40%, 43% { - -webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060); - animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060); - -webkit-transform: translate3d(0, -30px, 0); - transform: translate3d(0, -30px, 0); - } - - 70% { - -webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060); - animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060); - -webkit-transform: translate3d(0, -15px, 0); - transform: translate3d(0, -15px, 0); - } - - 90% { - -webkit-transform: translate3d(0,-4px,0); - transform: translate3d(0,-4px,0); - } -} - -.bounce { - -webkit-animation-name: bounce; - animation-name: bounce; - -webkit-transform-origin: center bottom; - transform-origin: center bottom; -} - -@-webkit-keyframes flash { - from, 50%, to { - opacity: 1; - } - - 25%, 75% { - opacity: 0; - } -} - -@keyframes flash { - from, 50%, to { - opacity: 1; - } - - 25%, 75% { - opacity: 0; - } -} - -.flash { - -webkit-animation-name: flash; - animation-name: flash; -} - -/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */ - -@-webkit-keyframes pulse { - from { - -webkit-transform: scale3d(1, 1, 1); - transform: scale3d(1, 1, 1); - } - - 50% { - -webkit-transform: scale3d(1.05, 1.05, 1.05); - transform: scale3d(1.05, 1.05, 1.05); - } - - to { - -webkit-transform: scale3d(1, 1, 1); - transform: scale3d(1, 1, 1); - } -} - -@keyframes pulse { - from { - -webkit-transform: scale3d(1, 1, 1); - transform: scale3d(1, 1, 1); - } - - 50% { - -webkit-transform: scale3d(1.05, 1.05, 1.05); - transform: scale3d(1.05, 1.05, 1.05); - } - - to { - -webkit-transform: scale3d(1, 1, 1); - transform: scale3d(1, 1, 1); - } -} - -.pulse { - -webkit-animation-name: pulse; - animation-name: pulse; -} - -@-webkit-keyframes rubberBand { - from { - -webkit-transform: scale3d(1, 1, 1); - transform: scale3d(1, 1, 1); - } - - 30% { - -webkit-transform: scale3d(1.25, 0.75, 1); - transform: scale3d(1.25, 0.75, 1); - } - - 40% { - -webkit-transform: scale3d(0.75, 1.25, 1); - transform: scale3d(0.75, 1.25, 1); - } - - 50% { - -webkit-transform: scale3d(1.15, 0.85, 1); - transform: scale3d(1.15, 0.85, 1); - } - - 65% { - -webkit-transform: scale3d(.95, 1.05, 1); - transform: scale3d(.95, 1.05, 1); - } - - 75% { - -webkit-transform: scale3d(1.05, .95, 1); - transform: scale3d(1.05, .95, 1); - } - - to { - -webkit-transform: scale3d(1, 1, 1); - transform: scale3d(1, 1, 1); - } -} - -@keyframes rubberBand { - from { - -webkit-transform: scale3d(1, 1, 1); - transform: scale3d(1, 1, 1); - } - - 30% { - -webkit-transform: scale3d(1.25, 0.75, 1); - transform: scale3d(1.25, 0.75, 1); - } - - 40% { - -webkit-transform: scale3d(0.75, 1.25, 1); - transform: scale3d(0.75, 1.25, 1); - } - - 50% { - -webkit-transform: scale3d(1.15, 0.85, 1); - transform: scale3d(1.15, 0.85, 1); - } - - 65% { - -webkit-transform: scale3d(.95, 1.05, 1); - transform: scale3d(.95, 1.05, 1); - } - - 75% { - -webkit-transform: scale3d(1.05, .95, 1); - transform: scale3d(1.05, .95, 1); - } - - to { - -webkit-transform: scale3d(1, 1, 1); - transform: scale3d(1, 1, 1); - } -} - -.rubberBand { - -webkit-animation-name: rubberBand; - animation-name: rubberBand; -} - -@-webkit-keyframes shake { - from, to { - -webkit-transform: translate3d(0, 0, 0); - transform: translate3d(0, 0, 0); - } - - 10%, 30%, 50%, 70%, 90% { - -webkit-transform: translate3d(-10px, 0, 0); - transform: translate3d(-10px, 0, 0); - } - - 20%, 40%, 60%, 80% { - -webkit-transform: translate3d(10px, 0, 0); - transform: translate3d(10px, 0, 0); - } -} - -@keyframes shake { - from, to { - -webkit-transform: translate3d(0, 0, 0); - transform: translate3d(0, 0, 0); - } - - 10%, 30%, 50%, 70%, 90% { - -webkit-transform: translate3d(-10px, 0, 0); - transform: translate3d(-10px, 0, 0); - } - - 20%, 40%, 60%, 80% { - -webkit-transform: translate3d(10px, 0, 0); - transform: translate3d(10px, 0, 0); - } -} - -.shake { - -webkit-animation-name: shake; - animation-name: shake; -} - -@-webkit-keyframes swing { - 20% { - -webkit-transform: rotate3d(0, 0, 1, 15deg); - transform: rotate3d(0, 0, 1, 15deg); - } - - 40% { - -webkit-transform: rotate3d(0, 0, 1, -10deg); - transform: rotate3d(0, 0, 1, -10deg); - } - - 60% { - -webkit-transform: rotate3d(0, 0, 1, 5deg); - transform: rotate3d(0, 0, 1, 5deg); - } - - 80% { - -webkit-transform: rotate3d(0, 0, 1, -5deg); - transform: rotate3d(0, 0, 1, -5deg); - } - - to { - -webkit-transform: rotate3d(0, 0, 1, 0deg); - transform: rotate3d(0, 0, 1, 0deg); - } -} - -@keyframes swing { - 20% { - -webkit-transform: rotate3d(0, 0, 1, 15deg); - transform: rotate3d(0, 0, 1, 15deg); - } - - 40% { - -webkit-transform: rotate3d(0, 0, 1, -10deg); - transform: rotate3d(0, 0, 1, -10deg); - } - - 60% { - -webkit-transform: rotate3d(0, 0, 1, 5deg); - transform: rotate3d(0, 0, 1, 5deg); - } - - 80% { - -webkit-transform: rotate3d(0, 0, 1, -5deg); - transform: rotate3d(0, 0, 1, -5deg); - } - - to { - -webkit-transform: rotate3d(0, 0, 1, 0deg); - transform: rotate3d(0, 0, 1, 0deg); - } -} - -.swing { - -webkit-transform-origin: top center; - transform-origin: top center; - -webkit-animation-name: swing; - animation-name: swing; -} - -@-webkit-keyframes tada { - from { - -webkit-transform: scale3d(1, 1, 1); - transform: scale3d(1, 1, 1); - } - - 10%, 20% { - -webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg); - transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg); - } - - 30%, 50%, 70%, 90% { - -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg); - transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg); - } - - 40%, 60%, 80% { - -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg); - transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg); - } - - to { - -webkit-transform: scale3d(1, 1, 1); - transform: scale3d(1, 1, 1); - } -} - -@keyframes tada { - from { - -webkit-transform: scale3d(1, 1, 1); - transform: scale3d(1, 1, 1); - } - - 10%, 20% { - -webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg); - transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg); - } - - 30%, 50%, 70%, 90% { - -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg); - transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg); - } - - 40%, 60%, 80% { - -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg); - transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg); - } - - to { - -webkit-transform: scale3d(1, 1, 1); - transform: scale3d(1, 1, 1); - } -} - -.tada { - -webkit-animation-name: tada; - animation-name: tada; -} - -/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */ - -@-webkit-keyframes wobble { - from { - -webkit-transform: none; - transform: none; - } - - 15% { - -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg); - transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg); - } - - 30% { - -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg); - transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg); - } - - 45% { - -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg); - transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg); - } - - 60% { - -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg); - transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg); - } - - 75% { - -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg); - transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg); - } - - to { - -webkit-transform: none; - transform: none; - } -} - -@keyframes wobble { - from { - -webkit-transform: none; - transform: none; - } - - 15% { - -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg); - transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg); - } - - 30% { - -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg); - transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg); - } - - 45% { - -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg); - transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg); - } - - 60% { - -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg); - transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg); - } - - 75% { - -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg); - transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg); - } - - to { - -webkit-transform: none; - transform: none; - } -} - -.wobble { - -webkit-animation-name: wobble; - animation-name: wobble; -} - -@-webkit-keyframes jello { - from, 11.1%, to { - -webkit-transform: none; - transform: none; - } - - 22.2% { - -webkit-transform: skewX(-12.5deg) skewY(-12.5deg); - transform: skewX(-12.5deg) skewY(-12.5deg); - } - - 33.3% { - -webkit-transform: skewX(6.25deg) skewY(6.25deg); - transform: skewX(6.25deg) skewY(6.25deg); - } - - 44.4% { - -webkit-transform: skewX(-3.125deg) skewY(-3.125deg); - transform: skewX(-3.125deg) skewY(-3.125deg); - } - - 55.5% { - -webkit-transform: skewX(1.5625deg) skewY(1.5625deg); - transform: skewX(1.5625deg) skewY(1.5625deg); - } - - 66.6% { - -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg); - transform: skewX(-0.78125deg) skewY(-0.78125deg); - } - - 77.7% { - -webkit-transform: skewX(0.390625deg) skewY(0.390625deg); - transform: skewX(0.390625deg) skewY(0.390625deg); - } - - 88.8% { - -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg); - transform: skewX(-0.1953125deg) skewY(-0.1953125deg); - } -} - -@keyframes jello { - from, 11.1%, to { - -webkit-transform: none; - transform: none; - } - - 22.2% { - -webkit-transform: skewX(-12.5deg) skewY(-12.5deg); - transform: skewX(-12.5deg) skewY(-12.5deg); - } - - 33.3% { - -webkit-transform: skewX(6.25deg) skewY(6.25deg); - transform: skewX(6.25deg) skewY(6.25deg); - } - - 44.4% { - -webkit-transform: skewX(-3.125deg) skewY(-3.125deg); - transform: skewX(-3.125deg) skewY(-3.125deg); - } - - 55.5% { - -webkit-transform: skewX(1.5625deg) skewY(1.5625deg); - transform: skewX(1.5625deg) skewY(1.5625deg); - } - - 66.6% { - -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg); - transform: skewX(-0.78125deg) skewY(-0.78125deg); - } - - 77.7% { - -webkit-transform: skewX(0.390625deg) skewY(0.390625deg); - transform: skewX(0.390625deg) skewY(0.390625deg); - } - - 88.8% { - -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg); - transform: skewX(-0.1953125deg) skewY(-0.1953125deg); - } -} - -.jello { - -webkit-animation-name: jello; - animation-name: jello; - -webkit-transform-origin: center; - transform-origin: center; -} - -@-webkit-keyframes bounceIn { - from, 20%, 40%, 60%, 80%, to { - -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000); - animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000); - } - - 0% { - opacity: 0; - -webkit-transform: scale3d(.3, .3, .3); - transform: scale3d(.3, .3, .3); - } - - 20% { - -webkit-transform: scale3d(1.1, 1.1, 1.1); - transform: scale3d(1.1, 1.1, 1.1); - } - - 40% { - -webkit-transform: scale3d(.9, .9, .9); - transform: scale3d(.9, .9, .9); - } - - 60% { - opacity: 1; - -webkit-transform: scale3d(1.03, 1.03, 1.03); - transform: scale3d(1.03, 1.03, 1.03); - } - - 80% { - -webkit-transform: scale3d(.97, .97, .97); - transform: scale3d(.97, .97, .97); - } - - to { - opacity: 1; - -webkit-transform: scale3d(1, 1, 1); - transform: scale3d(1, 1, 1); - } -} - -@keyframes bounceIn { - from, 20%, 40%, 60%, 80%, to { - -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000); - animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000); - } - - 0% { - opacity: 0; - -webkit-transform: scale3d(.3, .3, .3); - transform: scale3d(.3, .3, .3); - } - - 20% { - -webkit-transform: scale3d(1.1, 1.1, 1.1); - transform: scale3d(1.1, 1.1, 1.1); - } - - 40% { - -webkit-transform: scale3d(.9, .9, .9); - transform: scale3d(.9, .9, .9); - } - - 60% { - opacity: 1; - -webkit-transform: scale3d(1.03, 1.03, 1.03); - transform: scale3d(1.03, 1.03, 1.03); - } - - 80% { - -webkit-transform: scale3d(.97, .97, .97); - transform: scale3d(.97, .97, .97); - } - - to { - opacity: 1; - -webkit-transform: scale3d(1, 1, 1); - transform: scale3d(1, 1, 1); - } -} - -.bounceIn { - -webkit-animation-name: bounceIn; - animation-name: bounceIn; -} - -@-webkit-keyframes bounceInDown { - from, 60%, 75%, 90%, to { - -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000); - animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000); - } - - 0% { - opacity: 0; - -webkit-transform: translate3d(0, -3000px, 0); - transform: translate3d(0, -3000px, 0); - } - - 60% { - opacity: 1; - -webkit-transform: translate3d(0, 25px, 0); - transform: translate3d(0, 25px, 0); - } - - 75% { - -webkit-transform: translate3d(0, -10px, 0); - transform: translate3d(0, -10px, 0); - } - - 90% { - -webkit-transform: translate3d(0, 5px, 0); - transform: translate3d(0, 5px, 0); - } - - to { - -webkit-transform: none; - transform: none; - } -} - -@keyframes bounceInDown { - from, 60%, 75%, 90%, to { - -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000); - animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000); - } - - 0% { - opacity: 0; - -webkit-transform: translate3d(0, -3000px, 0); - transform: translate3d(0, -3000px, 0); - } - - 60% { - opacity: 1; - -webkit-transform: translate3d(0, 25px, 0); - transform: translate3d(0, 25px, 0); - } - - 75% { - -webkit-transform: translate3d(0, -10px, 0); - transform: translate3d(0, -10px, 0); - } - - 90% { - -webkit-transform: translate3d(0, 5px, 0); - transform: translate3d(0, 5px, 0); - } - - to { - -webkit-transform: none; - transform: none; - } -} - -.bounceInDown { - -webkit-animation-name: bounceInDown; - animation-name: bounceInDown; -} - -@-webkit-keyframes bounceInLeft { - from, 60%, 75%, 90%, to { - -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000); - animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000); - } - - 0% { - opacity: 0; - -webkit-transform: translate3d(-3000px, 0, 0); - transform: translate3d(-3000px, 0, 0); - } - - 60% { - opacity: 1; - -webkit-transform: translate3d(25px, 0, 0); - transform: translate3d(25px, 0, 0); - } - - 75% { - -webkit-transform: translate3d(-10px, 0, 0); - transform: translate3d(-10px, 0, 0); - } - - 90% { - -webkit-transform: translate3d(5px, 0, 0); - transform: translate3d(5px, 0, 0); - } - - to { - -webkit-transform: none; - transform: none; - } -} - -@keyframes bounceInLeft { - from, 60%, 75%, 90%, to { - -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000); - animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000); - } - - 0% { - opacity: 0; - -webkit-transform: translate3d(-3000px, 0, 0); - transform: translate3d(-3000px, 0, 0); - } - - 60% { - opacity: 1; - -webkit-transform: translate3d(25px, 0, 0); - transform: translate3d(25px, 0, 0); - } - - 75% { - -webkit-transform: translate3d(-10px, 0, 0); - transform: translate3d(-10px, 0, 0); - } - - 90% { - -webkit-transform: translate3d(5px, 0, 0); - transform: translate3d(5px, 0, 0); - } - - to { - -webkit-transform: none; - transform: none; - } -} - -.bounceInLeft { - -webkit-animation-name: bounceInLeft; - animation-name: bounceInLeft; -} - -@-webkit-keyframes bounceInRight { - from, 60%, 75%, 90%, to { - -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000); - animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000); - } - - from { - opacity: 0; - -webkit-transform: translate3d(3000px, 0, 0); - transform: translate3d(3000px, 0, 0); - } - - 60% { - opacity: 1; - -webkit-transform: translate3d(-25px, 0, 0); - transform: translate3d(-25px, 0, 0); - } - - 75% { - -webkit-transform: translate3d(10px, 0, 0); - transform: translate3d(10px, 0, 0); - } - - 90% { - -webkit-transform: translate3d(-5px, 0, 0); - transform: translate3d(-5px, 0, 0); - } - - to { - -webkit-transform: none; - transform: none; - } -} - -@keyframes bounceInRight { - from, 60%, 75%, 90%, to { - -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000); - animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000); - } - - from { - opacity: 0; - -webkit-transform: translate3d(3000px, 0, 0); - transform: translate3d(3000px, 0, 0); - } - - 60% { - opacity: 1; - -webkit-transform: translate3d(-25px, 0, 0); - transform: translate3d(-25px, 0, 0); - } - - 75% { - -webkit-transform: translate3d(10px, 0, 0); - transform: translate3d(10px, 0, 0); - } - - 90% { - -webkit-transform: translate3d(-5px, 0, 0); - transform: translate3d(-5px, 0, 0); - } - - to { - -webkit-transform: none; - transform: none; - } -} - -.bounceInRight { - -webkit-animation-name: bounceInRight; - animation-name: bounceInRight; -} - -@-webkit-keyframes bounceInUp { - from, 60%, 75%, 90%, to { - -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000); - animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000); - } - - from { - opacity: 0; - -webkit-transform: translate3d(0, 3000px, 0); - transform: translate3d(0, 3000px, 0); - } - - 60% { - opacity: 1; - -webkit-transform: translate3d(0, -20px, 0); - transform: translate3d(0, -20px, 0); - } - - 75% { - -webkit-transform: translate3d(0, 10px, 0); - transform: translate3d(0, 10px, 0); - } - - 90% { - -webkit-transform: translate3d(0, -5px, 0); - transform: translate3d(0, -5px, 0); - } - - to { - -webkit-transform: translate3d(0, 0, 0); - transform: translate3d(0, 0, 0); - } -} - -@keyframes bounceInUp { - from, 60%, 75%, 90%, to { - -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000); - animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000); - } - - from { - opacity: 0; - -webkit-transform: translate3d(0, 3000px, 0); - transform: translate3d(0, 3000px, 0); - } - - 60% { - opacity: 1; - -webkit-transform: translate3d(0, -20px, 0); - transform: translate3d(0, -20px, 0); - } - - 75% { - -webkit-transform: translate3d(0, 10px, 0); - transform: translate3d(0, 10px, 0); - } - - 90% { - -webkit-transform: translate3d(0, -5px, 0); - transform: translate3d(0, -5px, 0); - } - - to { - -webkit-transform: translate3d(0, 0, 0); - transform: translate3d(0, 0, 0); - } -} - -.bounceInUp { - -webkit-animation-name: bounceInUp; - animation-name: bounceInUp; -} - -@-webkit-keyframes bounceOut { - 20% { - -webkit-transform: scale3d(.9, .9, .9); - transform: scale3d(.9, .9, .9); - } - - 50%, 55% { - opacity: 1; - -webkit-transform: scale3d(1.1, 1.1, 1.1); - transform: scale3d(1.1, 1.1, 1.1); - } - - to { - opacity: 0; - -webkit-transform: scale3d(.3, .3, .3); - transform: scale3d(.3, .3, .3); - } -} - -@keyframes bounceOut { - 20% { - -webkit-transform: scale3d(.9, .9, .9); - transform: scale3d(.9, .9, .9); - } - - 50%, 55% { - opacity: 1; - -webkit-transform: scale3d(1.1, 1.1, 1.1); - transform: scale3d(1.1, 1.1, 1.1); - } - - to { - opacity: 0; - -webkit-transform: scale3d(.3, .3, .3); - transform: scale3d(.3, .3, .3); - } -} - -.bounceOut { - -webkit-animation-name: bounceOut; - animation-name: bounceOut; -} - -@-webkit-keyframes bounceOutDown { - 20% { - -webkit-transform: translate3d(0, 10px, 0); - transform: translate3d(0, 10px, 0); - } - - 40%, 45% { - opacity: 1; - -webkit-transform: translate3d(0, -20px, 0); - transform: translate3d(0, -20px, 0); - } - - to { - opacity: 0; - -webkit-transform: translate3d(0, 2000px, 0); - transform: translate3d(0, 2000px, 0); - } -} - -@keyframes bounceOutDown { - 20% { - -webkit-transform: translate3d(0, 10px, 0); - transform: translate3d(0, 10px, 0); - } - - 40%, 45% { - opacity: 1; - -webkit-transform: translate3d(0, -20px, 0); - transform: translate3d(0, -20px, 0); - } - - to { - opacity: 0; - -webkit-transform: translate3d(0, 2000px, 0); - transform: translate3d(0, 2000px, 0); - } -} - -.bounceOutDown { - -webkit-animation-name: bounceOutDown; - animation-name: bounceOutDown; -} - -@-webkit-keyframes bounceOutLeft { - 20% { - opacity: 1; - -webkit-transform: translate3d(20px, 0, 0); - transform: translate3d(20px, 0, 0); - } - - to { - opacity: 0; - -webkit-transform: translate3d(-2000px, 0, 0); - transform: translate3d(-2000px, 0, 0); - } -} - -@keyframes bounceOutLeft { - 20% { - opacity: 1; - -webkit-transform: translate3d(20px, 0, 0); - transform: translate3d(20px, 0, 0); - } - - to { - opacity: 0; - -webkit-transform: translate3d(-2000px, 0, 0); - transform: translate3d(-2000px, 0, 0); - } -} - -.bounceOutLeft { - -webkit-animation-name: bounceOutLeft; - animation-name: bounceOutLeft; -} - -@-webkit-keyframes bounceOutRight { - 20% { - opacity: 1; - -webkit-transform: translate3d(-20px, 0, 0); - transform: translate3d(-20px, 0, 0); - } - - to { - opacity: 0; - -webkit-transform: translate3d(2000px, 0, 0); - transform: translate3d(2000px, 0, 0); - } -} - -@keyframes bounceOutRight { - 20% { - opacity: 1; - -webkit-transform: translate3d(-20px, 0, 0); - transform: translate3d(-20px, 0, 0); - } - - to { - opacity: 0; - -webkit-transform: translate3d(2000px, 0, 0); - transform: translate3d(2000px, 0, 0); - } -} - -.bounceOutRight { - -webkit-animation-name: bounceOutRight; - animation-name: bounceOutRight; -} - -@-webkit-keyframes bounceOutUp { - 20% { - -webkit-transform: translate3d(0, -10px, 0); - transform: translate3d(0, -10px, 0); - } - - 40%, 45% { - opacity: 1; - -webkit-transform: translate3d(0, 20px, 0); - transform: translate3d(0, 20px, 0); - } - - to { - opacity: 0; - -webkit-transform: translate3d(0, -2000px, 0); - transform: translate3d(0, -2000px, 0); - } -} - -@keyframes bounceOutUp { - 20% { - -webkit-transform: translate3d(0, -10px, 0); - transform: translate3d(0, -10px, 0); - } - - 40%, 45% { - opacity: 1; - -webkit-transform: translate3d(0, 20px, 0); - transform: translate3d(0, 20px, 0); - } - - to { - opacity: 0; - -webkit-transform: translate3d(0, -2000px, 0); - transform: translate3d(0, -2000px, 0); - } -} - -.bounceOutUp { - -webkit-animation-name: bounceOutUp; - animation-name: bounceOutUp; -} - -@-webkit-keyframes fadeIn { - from { - opacity: 0; - } - - to { - opacity: 1; - } -} - -@keyframes fadeIn { - from { - opacity: 0; - } - - to { - opacity: 1; - } -} - -.fadeIn { - -webkit-animation-name: fadeIn; - animation-name: fadeIn; -} - -@-webkit-keyframes fadeInDown { - from { - opacity: 0; - /*-webkit-transform: translate3d(0, -100%, 0); - transform: translate3d(0, -100%, 0);*/ - -webkit-transform: translate3d(0, -50px, 0); - transform: translate3d(0, -50px, 0); - } - - to { - opacity: 1; - -webkit-transform: none; - transform: none; - } -} - -@keyframes fadeInDown { - from { - opacity: 0; - /*-webkit-transform: translate3d(0, -100%, 0); - transform: translate3d(0, -100%, 0);*/ - -webkit-transform: translate3d(0, -50px, 0); - transform: translate3d(0, -50px, 0); - } - - to { - opacity: 1; - -webkit-transform: none; - transform: none; - } -} - -.fadeInDown { - -webkit-animation-name: fadeInDown; - animation-name: fadeInDown; -} - -@-webkit-keyframes fadeInDownBig { - from { - opacity: 0; - -webkit-transform: translate3d(0, -2000px, 0); - transform: translate3d(0, -2000px, 0); - } - - to { - opacity: 1; - -webkit-transform: none; - transform: none; - } -} - -@keyframes fadeInDownBig { - from { - opacity: 0; - -webkit-transform: translate3d(0, -2000px, 0); - transform: translate3d(0, -2000px, 0); - } - - to { - opacity: 1; - -webkit-transform: none; - transform: none; - } -} - -.fadeInDownBig { - -webkit-animation-name: fadeInDownBig; - animation-name: fadeInDownBig; -} - -@-webkit-keyframes fadeInLeft { - from { - opacity: 0; - /*-webkit-transform: translate3d(-100%, 0, 0); - transform: translate3d(-100%, 0, 0);*/ - -webkit-transform: translate3d(-50px, 0, 0); - transform: translate3d(-50px, 0, 0); - } - - to { - opacity: 1; - -webkit-transform: none; - transform: none; - } -} - -@keyframes fadeInLeft { - from { - opacity: 0; - /*-webkit-transform: translate3d(-100%, 0, 0); - transform: translate3d(-100%, 0, 0);*/ - -webkit-transform: translate3d(-50px, 0, 0); - transform: translate3d(-50px, 0, 0); - } - - to { - opacity: 1; - -webkit-transform: none; - transform: none; - } -} - -.fadeInLeft { - -webkit-animation-name: fadeInLeft; - animation-name: fadeInLeft; -} - -@-webkit-keyframes fadeInLeftBig { - from { - opacity: 0; - -webkit-transform: translate3d(-2000px, 0, 0); - transform: translate3d(-2000px, 0, 0); - } - - to { - opacity: 1; - -webkit-transform: none; - transform: none; - } -} - -@keyframes fadeInLeftBig { - from { - opacity: 0; - -webkit-transform: translate3d(-2000px, 0, 0); - transform: translate3d(-2000px, 0, 0); - } - - to { - opacity: 1; - -webkit-transform: none; - transform: none; - } -} - -.fadeInLeftBig { - -webkit-animation-name: fadeInLeftBig; - animation-name: fadeInLeftBig; -} - -@-webkit-keyframes fadeInRight { - from { - opacity: 0; - /*-webkit-transform: translate3d(100%, 0, 0); - transform: translate3d(100%, 0, 0);*/ - -webkit-transform: translate3d(50px, 0, 0); - transform: translate3d(50px, 0, 0); - } - - to { - opacity: 1; - -webkit-transform: none; - transform: none; - } -} - -@keyframes fadeInRight { - from { - opacity: 0; - /*-webkit-transform: translate3d(100%, 0, 0); - transform: translate3d(100%, 0, 0);*/ - -webkit-transform: translate3d(50px, 0, 0); - transform: translate3d(50px, 0, 0); - } - - to { - opacity: 1; - -webkit-transform: none; - transform: none; - } -} - -.fadeInRight { - -webkit-animation-name: fadeInRight; - animation-name: fadeInRight; -} - -@-webkit-keyframes fadeInRightBig { - from { - opacity: 0; - -webkit-transform: translate3d(2000px, 0, 0); - transform: translate3d(2000px, 0, 0); - } - - to { - opacity: 1; - -webkit-transform: none; - transform: none; - } -} - -@keyframes fadeInRightBig { - from { - opacity: 0; - -webkit-transform: translate3d(2000px, 0, 0); - transform: translate3d(2000px, 0, 0); - } - - to { - opacity: 1; - -webkit-transform: none; - transform: none; - } -} - -.fadeInRightBig { - -webkit-animation-name: fadeInRightBig; - animation-name: fadeInRightBig; -} - -@-webkit-keyframes fadeInUp { - from { - opacity: 0; - /*-webkit-transform: translate3d(0, 100%, 0); - transform: translate3d(0, 100%, 0);*/ - -webkit-transform: translate3d(0, 50px, 0); - transform: translate3d(0, 50px, 0); - } - - to { - opacity: 1; - -webkit-transform: none; - transform: none; - } -} - -@keyframes fadeInUp { - from { - opacity: 0; - /*-webkit-transform: translate3d(0, 100%, 0); - transform: translate3d(0, 100%, 0);*/ - -webkit-transform: translate3d(0, 50px, 0); - transform: translate3d(0, 50px, 0); - } - - to { - opacity: 1; - -webkit-transform: none; - transform: none; - } -} - -.fadeInUp { - -webkit-animation-name: fadeInUp; - animation-name: fadeInUp; -} - -@-webkit-keyframes fadeInUpBig { - from { - opacity: 0; - -webkit-transform: translate3d(0, 2000px, 0); - transform: translate3d(0, 2000px, 0); - } - - to { - opacity: 1; - -webkit-transform: none; - transform: none; - } -} - -@keyframes fadeInUpBig { - from { - opacity: 0; - -webkit-transform: translate3d(0, 2000px, 0); - transform: translate3d(0, 2000px, 0); - } - - to { - opacity: 1; - -webkit-transform: none; - transform: none; - } -} - -.fadeInUpBig { - -webkit-animation-name: fadeInUpBig; - animation-name: fadeInUpBig; -} - -@-webkit-keyframes fadeOut { - from { - opacity: 1; - } - - to { - opacity: 0; - } -} - -@keyframes fadeOut { - from { - opacity: 1; - } - - to { - opacity: 0; - } -} - -.fadeOut { - -webkit-animation-name: fadeOut; - animation-name: fadeOut; -} - -@-webkit-keyframes fadeOutDown { - from { - opacity: 1; - } - - to { - opacity: 0; - -webkit-transform: translate3d(0, 100%, 0); - transform: translate3d(0, 100%, 0); - } -} - -@keyframes fadeOutDown { - from { - opacity: 1; - } - - to { - opacity: 0; - -webkit-transform: translate3d(0, 100%, 0); - transform: translate3d(0, 100%, 0); - } -} - -.fadeOutDown { - -webkit-animation-name: fadeOutDown; - animation-name: fadeOutDown; -} - -@-webkit-keyframes fadeOutDownBig { - from { - opacity: 1; - } - - to { - opacity: 0; - -webkit-transform: translate3d(0, 2000px, 0); - transform: translate3d(0, 2000px, 0); - } -} - -@keyframes fadeOutDownBig { - from { - opacity: 1; - } - - to { - opacity: 0; - -webkit-transform: translate3d(0, 2000px, 0); - transform: translate3d(0, 2000px, 0); - } -} - -.fadeOutDownBig { - -webkit-animation-name: fadeOutDownBig; - animation-name: fadeOutDownBig; -} - -@-webkit-keyframes fadeOutLeft { - from { - opacity: 1; - } - - to { - opacity: 0; - -webkit-transform: translate3d(-100%, 0, 0); - transform: translate3d(-100%, 0, 0); - } -} - -@keyframes fadeOutLeft { - from { - opacity: 1; - } - - to { - opacity: 0; - -webkit-transform: translate3d(-100%, 0, 0); - transform: translate3d(-100%, 0, 0); - } -} - -.fadeOutLeft { - -webkit-animation-name: fadeOutLeft; - animation-name: fadeOutLeft; -} - -@-webkit-keyframes fadeOutLeftBig { - from { - opacity: 1; - } - - to { - opacity: 0; - -webkit-transform: translate3d(-2000px, 0, 0); - transform: translate3d(-2000px, 0, 0); - } -} - -@keyframes fadeOutLeftBig { - from { - opacity: 1; - } - - to { - opacity: 0; - -webkit-transform: translate3d(-2000px, 0, 0); - transform: translate3d(-2000px, 0, 0); - } -} - -.fadeOutLeftBig { - -webkit-animation-name: fadeOutLeftBig; - animation-name: fadeOutLeftBig; -} - -@-webkit-keyframes fadeOutRight { - from { - opacity: 1; - } - - to { - opacity: 0; - -webkit-transform: translate3d(100%, 0, 0); - transform: translate3d(100%, 0, 0); - } -} - -@keyframes fadeOutRight { - from { - opacity: 1; - } - - to { - opacity: 0; - -webkit-transform: translate3d(100%, 0, 0); - transform: translate3d(100%, 0, 0); - } -} - -.fadeOutRight { - -webkit-animation-name: fadeOutRight; - animation-name: fadeOutRight; -} - -@-webkit-keyframes fadeOutRightBig { - from { - opacity: 1; - } - - to { - opacity: 0; - -webkit-transform: translate3d(2000px, 0, 0); - transform: translate3d(2000px, 0, 0); - } -} - -@keyframes fadeOutRightBig { - from { - opacity: 1; - } - - to { - opacity: 0; - -webkit-transform: translate3d(2000px, 0, 0); - transform: translate3d(2000px, 0, 0); - } -} - -.fadeOutRightBig { - -webkit-animation-name: fadeOutRightBig; - animation-name: fadeOutRightBig; -} - -@-webkit-keyframes fadeOutUp { - from { - opacity: 1; - } - - to { - opacity: 0; - -webkit-transform: translate3d(0, -100%, 0); - transform: translate3d(0, -100%, 0); - } -} - -@keyframes fadeOutUp { - from { - opacity: 1; - } - - to { - opacity: 0; - -webkit-transform: translate3d(0, -100%, 0); - transform: translate3d(0, -100%, 0); - } -} - -.fadeOutUp { - -webkit-animation-name: fadeOutUp; - animation-name: fadeOutUp; -} - -@-webkit-keyframes fadeOutUpBig { - from { - opacity: 1; - } - - to { - opacity: 0; - -webkit-transform: translate3d(0, -2000px, 0); - transform: translate3d(0, -2000px, 0); - } -} - -@keyframes fadeOutUpBig { - from { - opacity: 1; - } - - to { - opacity: 0; - -webkit-transform: translate3d(0, -2000px, 0); - transform: translate3d(0, -2000px, 0); - } -} - -.fadeOutUpBig { - -webkit-animation-name: fadeOutUpBig; - animation-name: fadeOutUpBig; -} - -@-webkit-keyframes flip { - from { - -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg); - transform: perspective(400px) rotate3d(0, 1, 0, -360deg); - -webkit-animation-timing-function: ease-out; - animation-timing-function: ease-out; - } - - 40% { - -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg); - transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg); - -webkit-animation-timing-function: ease-out; - animation-timing-function: ease-out; - } - - 50% { - -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg); - transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg); - -webkit-animation-timing-function: ease-in; - animation-timing-function: ease-in; - } - - 80% { - -webkit-transform: perspective(400px) scale3d(.95, .95, .95); - transform: perspective(400px) scale3d(.95, .95, .95); - -webkit-animation-timing-function: ease-in; - animation-timing-function: ease-in; - } - - to { - -webkit-transform: perspective(400px); - transform: perspective(400px); - -webkit-animation-timing-function: ease-in; - animation-timing-function: ease-in; - } -} - -@keyframes flip { - from { - -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg); - transform: perspective(400px) rotate3d(0, 1, 0, -360deg); - -webkit-animation-timing-function: ease-out; - animation-timing-function: ease-out; - } - - 40% { - -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg); - transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg); - -webkit-animation-timing-function: ease-out; - animation-timing-function: ease-out; - } - - 50% { - -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg); - transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg); - -webkit-animation-timing-function: ease-in; - animation-timing-function: ease-in; - } - - 80% { - -webkit-transform: perspective(400px) scale3d(.95, .95, .95); - transform: perspective(400px) scale3d(.95, .95, .95); - -webkit-animation-timing-function: ease-in; - animation-timing-function: ease-in; - } - - to { - -webkit-transform: perspective(400px); - transform: perspective(400px); - -webkit-animation-timing-function: ease-in; - animation-timing-function: ease-in; - } -} - -.animated.flip { - -webkit-backface-visibility: visible; - backface-visibility: visible; - -webkit-animation-name: flip; - animation-name: flip; -} - -@-webkit-keyframes flipInX { - from { - -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg); - transform: perspective(400px) rotate3d(1, 0, 0, 90deg); - -webkit-animation-timing-function: ease-in; - animation-timing-function: ease-in; - opacity: 0; - } - - 40% { - -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg); - transform: perspective(400px) rotate3d(1, 0, 0, -20deg); - -webkit-animation-timing-function: ease-in; - animation-timing-function: ease-in; - } - - 60% { - -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg); - transform: perspective(400px) rotate3d(1, 0, 0, 10deg); - opacity: 1; - } - - 80% { - -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg); - transform: perspective(400px) rotate3d(1, 0, 0, -5deg); - } - - to { - -webkit-transform: perspective(400px); - transform: perspective(400px); - } -} - -@keyframes flipInX { - from { - -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg); - transform: perspective(400px) rotate3d(1, 0, 0, 90deg); - -webkit-animation-timing-function: ease-in; - animation-timing-function: ease-in; - opacity: 0; - } - - 40% { - -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg); - transform: perspective(400px) rotate3d(1, 0, 0, -20deg); - -webkit-animation-timing-function: ease-in; - animation-timing-function: ease-in; - } - - 60% { - -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg); - transform: perspective(400px) rotate3d(1, 0, 0, 10deg); - opacity: 1; - } - - 80% { - -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg); - transform: perspective(400px) rotate3d(1, 0, 0, -5deg); - } - - to { - -webkit-transform: perspective(400px); - transform: perspective(400px); - } -} - -.flipInX { - -webkit-backface-visibility: visible !important; - backface-visibility: visible !important; - -webkit-animation-name: flipInX; - animation-name: flipInX; -} - -@-webkit-keyframes flipInY { - from { - -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg); - transform: perspective(400px) rotate3d(0, 1, 0, 90deg); - -webkit-animation-timing-function: ease-in; - animation-timing-function: ease-in; - opacity: 0; - } - - 40% { - -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg); - transform: perspective(400px) rotate3d(0, 1, 0, -20deg); - -webkit-animation-timing-function: ease-in; - animation-timing-function: ease-in; - } - - 60% { - -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg); - transform: perspective(400px) rotate3d(0, 1, 0, 10deg); - opacity: 1; - } - - 80% { - -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg); - transform: perspective(400px) rotate3d(0, 1, 0, -5deg); - } - - to { - -webkit-transform: perspective(400px); - transform: perspective(400px); - } -} - -@keyframes flipInY { - from { - -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg); - transform: perspective(400px) rotate3d(0, 1, 0, 90deg); - -webkit-animation-timing-function: ease-in; - animation-timing-function: ease-in; - opacity: 0; - } - - 40% { - -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg); - transform: perspective(400px) rotate3d(0, 1, 0, -20deg); - -webkit-animation-timing-function: ease-in; - animation-timing-function: ease-in; - } - - 60% { - -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg); - transform: perspective(400px) rotate3d(0, 1, 0, 10deg); - opacity: 1; - } - - 80% { - -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg); - transform: perspective(400px) rotate3d(0, 1, 0, -5deg); - } - - to { - -webkit-transform: perspective(400px); - transform: perspective(400px); - } -} - -.flipInY { - -webkit-backface-visibility: visible !important; - backface-visibility: visible !important; - -webkit-animation-name: flipInY; - animation-name: flipInY; -} - -@-webkit-keyframes flipOutX { - from { - -webkit-transform: perspective(400px); - transform: perspective(400px); - } - - 30% { - -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg); - transform: perspective(400px) rotate3d(1, 0, 0, -20deg); - opacity: 1; - } - - to { - -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg); - transform: perspective(400px) rotate3d(1, 0, 0, 90deg); - opacity: 0; - } -} - -@keyframes flipOutX { - from { - -webkit-transform: perspective(400px); - transform: perspective(400px); - } - - 30% { - -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg); - transform: perspective(400px) rotate3d(1, 0, 0, -20deg); - opacity: 1; - } - - to { - -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg); - transform: perspective(400px) rotate3d(1, 0, 0, 90deg); - opacity: 0; - } -} - -.flipOutX { - -webkit-animation-name: flipOutX; - animation-name: flipOutX; - -webkit-backface-visibility: visible !important; - backface-visibility: visible !important; -} - -@-webkit-keyframes flipOutY { - from { - -webkit-transform: perspective(400px); - transform: perspective(400px); - } - - 30% { - -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg); - transform: perspective(400px) rotate3d(0, 1, 0, -15deg); - opacity: 1; - } - - to { - -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg); - transform: perspective(400px) rotate3d(0, 1, 0, 90deg); - opacity: 0; - } -} - -@keyframes flipOutY { - from { - -webkit-transform: perspective(400px); - transform: perspective(400px); - } - - 30% { - -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg); - transform: perspective(400px) rotate3d(0, 1, 0, -15deg); - opacity: 1; - } - - to { - -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg); - transform: perspective(400px) rotate3d(0, 1, 0, 90deg); - opacity: 0; - } -} - -.flipOutY { - -webkit-backface-visibility: visible !important; - backface-visibility: visible !important; - -webkit-animation-name: flipOutY; - animation-name: flipOutY; -} - -@-webkit-keyframes lightSpeedIn { - from { - -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg); - transform: translate3d(100%, 0, 0) skewX(-30deg); - opacity: 0; - } - - 60% { - -webkit-transform: skewX(20deg); - transform: skewX(20deg); - opacity: 1; - } - - 80% { - -webkit-transform: skewX(-5deg); - transform: skewX(-5deg); - opacity: 1; - } - - to { - -webkit-transform: none; - transform: none; - opacity: 1; - } -} - -@keyframes lightSpeedIn { - from { - -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg); - transform: translate3d(100%, 0, 0) skewX(-30deg); - opacity: 0; - } - - 60% { - -webkit-transform: skewX(20deg); - transform: skewX(20deg); - opacity: 1; - } - - 80% { - -webkit-transform: skewX(-5deg); - transform: skewX(-5deg); - opacity: 1; - } - - to { - -webkit-transform: none; - transform: none; - opacity: 1; - } -} - -.lightSpeedIn { - -webkit-animation-name: lightSpeedIn; - animation-name: lightSpeedIn; - -webkit-animation-timing-function: ease-out; - animation-timing-function: ease-out; -} - -@-webkit-keyframes lightSpeedOut { - from { - opacity: 1; - } - - to { - -webkit-transform: translate3d(100%, 0, 0) skewX(30deg); - transform: translate3d(100%, 0, 0) skewX(30deg); - opacity: 0; - } -} - -@keyframes lightSpeedOut { - from { - opacity: 1; - } - - to { - -webkit-transform: translate3d(100%, 0, 0) skewX(30deg); - transform: translate3d(100%, 0, 0) skewX(30deg); - opacity: 0; - } -} - -.lightSpeedOut { - -webkit-animation-name: lightSpeedOut; - animation-name: lightSpeedOut; - -webkit-animation-timing-function: ease-in; - animation-timing-function: ease-in; -} - -@-webkit-keyframes rotateIn { - from { - -webkit-transform-origin: center; - transform-origin: center; - -webkit-transform: rotate3d(0, 0, 1, -200deg); - transform: rotate3d(0, 0, 1, -200deg); - opacity: 0; - } - - to { - -webkit-transform-origin: center; - transform-origin: center; - -webkit-transform: none; - transform: none; - opacity: 1; - } -} - -@keyframes rotateIn { - from { - -webkit-transform-origin: center; - transform-origin: center; - -webkit-transform: rotate3d(0, 0, 1, -200deg); - transform: rotate3d(0, 0, 1, -200deg); - opacity: 0; - } - - to { - -webkit-transform-origin: center; - transform-origin: center; - -webkit-transform: none; - transform: none; - opacity: 1; - } -} - -.rotateIn { - -webkit-animation-name: rotateIn; - animation-name: rotateIn; -} - -@-webkit-keyframes rotateInDownLeft { - from { - -webkit-transform-origin: left bottom; - transform-origin: left bottom; - -webkit-transform: rotate3d(0, 0, 1, -45deg); - transform: rotate3d(0, 0, 1, -45deg); - opacity: 0; - } - - to { - -webkit-transform-origin: left bottom; - transform-origin: left bottom; - -webkit-transform: none; - transform: none; - opacity: 1; - } -} - -@keyframes rotateInDownLeft { - from { - -webkit-transform-origin: left bottom; - transform-origin: left bottom; - -webkit-transform: rotate3d(0, 0, 1, -45deg); - transform: rotate3d(0, 0, 1, -45deg); - opacity: 0; - } - - to { - -webkit-transform-origin: left bottom; - transform-origin: left bottom; - -webkit-transform: none; - transform: none; - opacity: 1; - } -} - -.rotateInDownLeft { - -webkit-animation-name: rotateInDownLeft; - animation-name: rotateInDownLeft; -} - -@-webkit-keyframes rotateInDownRight { - from { - -webkit-transform-origin: right bottom; - transform-origin: right bottom; - -webkit-transform: rotate3d(0, 0, 1, 45deg); - transform: rotate3d(0, 0, 1, 45deg); - opacity: 0; - } - - to { - -webkit-transform-origin: right bottom; - transform-origin: right bottom; - -webkit-transform: none; - transform: none; - opacity: 1; - } -} - -@keyframes rotateInDownRight { - from { - -webkit-transform-origin: right bottom; - transform-origin: right bottom; - -webkit-transform: rotate3d(0, 0, 1, 45deg); - transform: rotate3d(0, 0, 1, 45deg); - opacity: 0; - } - - to { - -webkit-transform-origin: right bottom; - transform-origin: right bottom; - -webkit-transform: none; - transform: none; - opacity: 1; - } -} - -.rotateInDownRight { - -webkit-animation-name: rotateInDownRight; - animation-name: rotateInDownRight; -} - -@-webkit-keyframes rotateInUpLeft { - from { - -webkit-transform-origin: left bottom; - transform-origin: left bottom; - -webkit-transform: rotate3d(0, 0, 1, 45deg); - transform: rotate3d(0, 0, 1, 45deg); - opacity: 0; - } - - to { - -webkit-transform-origin: left bottom; - transform-origin: left bottom; - -webkit-transform: none; - transform: none; - opacity: 1; - } -} - -@keyframes rotateInUpLeft { - from { - -webkit-transform-origin: left bottom; - transform-origin: left bottom; - -webkit-transform: rotate3d(0, 0, 1, 45deg); - transform: rotate3d(0, 0, 1, 45deg); - opacity: 0; - } - - to { - -webkit-transform-origin: left bottom; - transform-origin: left bottom; - -webkit-transform: none; - transform: none; - opacity: 1; - } -} - -.rotateInUpLeft { - -webkit-animation-name: rotateInUpLeft; - animation-name: rotateInUpLeft; -} - -@-webkit-keyframes rotateInUpRight { - from { - -webkit-transform-origin: right bottom; - transform-origin: right bottom; - -webkit-transform: rotate3d(0, 0, 1, -90deg); - transform: rotate3d(0, 0, 1, -90deg); - opacity: 0; - } - - to { - -webkit-transform-origin: right bottom; - transform-origin: right bottom; - -webkit-transform: none; - transform: none; - opacity: 1; - } -} - -@keyframes rotateInUpRight { - from { - -webkit-transform-origin: right bottom; - transform-origin: right bottom; - -webkit-transform: rotate3d(0, 0, 1, -90deg); - transform: rotate3d(0, 0, 1, -90deg); - opacity: 0; - } - - to { - -webkit-transform-origin: right bottom; - transform-origin: right bottom; - -webkit-transform: none; - transform: none; - opacity: 1; - } -} - -.rotateInUpRight { - -webkit-animation-name: rotateInUpRight; - animation-name: rotateInUpRight; -} - -@-webkit-keyframes rotateOut { - from { - -webkit-transform-origin: center; - transform-origin: center; - opacity: 1; - } - - to { - -webkit-transform-origin: center; - transform-origin: center; - -webkit-transform: rotate3d(0, 0, 1, 200deg); - transform: rotate3d(0, 0, 1, 200deg); - opacity: 0; - } -} - -@keyframes rotateOut { - from { - -webkit-transform-origin: center; - transform-origin: center; - opacity: 1; - } - - to { - -webkit-transform-origin: center; - transform-origin: center; - -webkit-transform: rotate3d(0, 0, 1, 200deg); - transform: rotate3d(0, 0, 1, 200deg); - opacity: 0; - } -} - -.rotateOut { - -webkit-animation-name: rotateOut; - animation-name: rotateOut; -} - -@-webkit-keyframes rotateOutDownLeft { - from { - -webkit-transform-origin: left bottom; - transform-origin: left bottom; - opacity: 1; - } - - to { - -webkit-transform-origin: left bottom; - transform-origin: left bottom; - -webkit-transform: rotate3d(0, 0, 1, 45deg); - transform: rotate3d(0, 0, 1, 45deg); - opacity: 0; - } -} - -@keyframes rotateOutDownLeft { - from { - -webkit-transform-origin: left bottom; - transform-origin: left bottom; - opacity: 1; - } - - to { - -webkit-transform-origin: left bottom; - transform-origin: left bottom; - -webkit-transform: rotate3d(0, 0, 1, 45deg); - transform: rotate3d(0, 0, 1, 45deg); - opacity: 0; - } -} - -.rotateOutDownLeft { - -webkit-animation-name: rotateOutDownLeft; - animation-name: rotateOutDownLeft; -} - -@-webkit-keyframes rotateOutDownRight { - from { - -webkit-transform-origin: right bottom; - transform-origin: right bottom; - opacity: 1; - } - - to { - -webkit-transform-origin: right bottom; - transform-origin: right bottom; - -webkit-transform: rotate3d(0, 0, 1, -45deg); - transform: rotate3d(0, 0, 1, -45deg); - opacity: 0; - } -} - -@keyframes rotateOutDownRight { - from { - -webkit-transform-origin: right bottom; - transform-origin: right bottom; - opacity: 1; - } - - to { - -webkit-transform-origin: right bottom; - transform-origin: right bottom; - -webkit-transform: rotate3d(0, 0, 1, -45deg); - transform: rotate3d(0, 0, 1, -45deg); - opacity: 0; - } -} - -.rotateOutDownRight { - -webkit-animation-name: rotateOutDownRight; - animation-name: rotateOutDownRight; -} - -@-webkit-keyframes rotateOutUpLeft { - from { - -webkit-transform-origin: left bottom; - transform-origin: left bottom; - opacity: 1; - } - - to { - -webkit-transform-origin: left bottom; - transform-origin: left bottom; - -webkit-transform: rotate3d(0, 0, 1, -45deg); - transform: rotate3d(0, 0, 1, -45deg); - opacity: 0; - } -} - -@keyframes rotateOutUpLeft { - from { - -webkit-transform-origin: left bottom; - transform-origin: left bottom; - opacity: 1; - } - - to { - -webkit-transform-origin: left bottom; - transform-origin: left bottom; - -webkit-transform: rotate3d(0, 0, 1, -45deg); - transform: rotate3d(0, 0, 1, -45deg); - opacity: 0; - } -} - -.rotateOutUpLeft { - -webkit-animation-name: rotateOutUpLeft; - animation-name: rotateOutUpLeft; -} - -@-webkit-keyframes rotateOutUpRight { - from { - -webkit-transform-origin: right bottom; - transform-origin: right bottom; - opacity: 1; - } - - to { - -webkit-transform-origin: right bottom; - transform-origin: right bottom; - -webkit-transform: rotate3d(0, 0, 1, 90deg); - transform: rotate3d(0, 0, 1, 90deg); - opacity: 0; - } -} - -@keyframes rotateOutUpRight { - from { - -webkit-transform-origin: right bottom; - transform-origin: right bottom; - opacity: 1; - } - - to { - -webkit-transform-origin: right bottom; - transform-origin: right bottom; - -webkit-transform: rotate3d(0, 0, 1, 90deg); - transform: rotate3d(0, 0, 1, 90deg); - opacity: 0; - } -} - -.rotateOutUpRight { - -webkit-animation-name: rotateOutUpRight; - animation-name: rotateOutUpRight; -} - -@-webkit-keyframes hinge { - 0% { - -webkit-transform-origin: top left; - transform-origin: top left; - -webkit-animation-timing-function: ease-in-out; - animation-timing-function: ease-in-out; - } - - 20%, 60% { - -webkit-transform: rotate3d(0, 0, 1, 80deg); - transform: rotate3d(0, 0, 1, 80deg); - -webkit-transform-origin: top left; - transform-origin: top left; - -webkit-animation-timing-function: ease-in-out; - animation-timing-function: ease-in-out; - } - - 40%, 80% { - -webkit-transform: rotate3d(0, 0, 1, 60deg); - transform: rotate3d(0, 0, 1, 60deg); - -webkit-transform-origin: top left; - transform-origin: top left; - -webkit-animation-timing-function: ease-in-out; - animation-timing-function: ease-in-out; - opacity: 1; - } - - to { - -webkit-transform: translate3d(0, 700px, 0); - transform: translate3d(0, 700px, 0); - opacity: 0; - } -} - -@keyframes hinge { - 0% { - -webkit-transform-origin: top left; - transform-origin: top left; - -webkit-animation-timing-function: ease-in-out; - animation-timing-function: ease-in-out; - } - - 20%, 60% { - -webkit-transform: rotate3d(0, 0, 1, 80deg); - transform: rotate3d(0, 0, 1, 80deg); - -webkit-transform-origin: top left; - transform-origin: top left; - -webkit-animation-timing-function: ease-in-out; - animation-timing-function: ease-in-out; - } - - 40%, 80% { - -webkit-transform: rotate3d(0, 0, 1, 60deg); - transform: rotate3d(0, 0, 1, 60deg); - -webkit-transform-origin: top left; - transform-origin: top left; - -webkit-animation-timing-function: ease-in-out; - animation-timing-function: ease-in-out; - opacity: 1; - } - - to { - -webkit-transform: translate3d(0, 700px, 0); - transform: translate3d(0, 700px, 0); - opacity: 0; - } -} - -.hinge { - -webkit-animation-name: hinge; - animation-name: hinge; -} - -/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */ - -@-webkit-keyframes rollIn { - from { - opacity: 0; - -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg); - transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg); - } - - to { - opacity: 1; - -webkit-transform: none; - transform: none; - } -} - -@keyframes rollIn { - from { - opacity: 0; - -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg); - transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg); - } - - to { - opacity: 1; - -webkit-transform: none; - transform: none; - } -} - -.rollIn { - -webkit-animation-name: rollIn; - animation-name: rollIn; -} - -/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */ - -@-webkit-keyframes rollOut { - from { - opacity: 1; - } - - to { - opacity: 0; - -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg); - transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg); - } -} - -@keyframes rollOut { - from { - opacity: 1; - } - - to { - opacity: 0; - -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg); - transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg); - } -} - -.rollOut { - -webkit-animation-name: rollOut; - animation-name: rollOut; -} - -@-webkit-keyframes zoomIn { - from { - opacity: 0; - -webkit-transform: scale3d(.3, .3, .3); - transform: scale3d(.3, .3, .3); - } - - 50% { - opacity: 1; - } -} - -@keyframes zoomIn { - from { - opacity: 0; - -webkit-transform: scale3d(.3, .3, .3); - transform: scale3d(.3, .3, .3); - } - - 50% { - opacity: 1; - } -} - -.zoomIn { - -webkit-animation-name: zoomIn; - animation-name: zoomIn; -} - -@-webkit-keyframes zoomInDown { - from { - opacity: 0; - -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0); - transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0); - -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190); - animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190); - } - - 60% { - opacity: 1; - -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0); - transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0); - -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1); - animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1); - } -} - -@keyframes zoomInDown { - from { - opacity: 0; - -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0); - transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0); - -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190); - animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190); - } - - 60% { - opacity: 1; - -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0); - transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0); - -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1); - animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1); - } -} - -.zoomInDown { - -webkit-animation-name: zoomInDown; - animation-name: zoomInDown; -} - -@-webkit-keyframes zoomInLeft { - from { - opacity: 0; - -webkit-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0); - transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0); - -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190); - animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190); - } - - 60% { - opacity: 1; - -webkit-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0); - transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0); - -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1); - animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1); - } -} - -@keyframes zoomInLeft { - from { - opacity: 0; - -webkit-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0); - transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0); - -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190); - animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190); - } - - 60% { - opacity: 1; - -webkit-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0); - transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0); - -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1); - animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1); - } -} - -.zoomInLeft { - -webkit-animation-name: zoomInLeft; - animation-name: zoomInLeft; -} - -@-webkit-keyframes zoomInRight { - from { - opacity: 0; - -webkit-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0); - transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0); - -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190); - animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190); - } - - 60% { - opacity: 1; - -webkit-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0); - transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0); - -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1); - animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1); - } -} - -@keyframes zoomInRight { - from { - opacity: 0; - -webkit-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0); - transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0); - -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190); - animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190); - } - - 60% { - opacity: 1; - -webkit-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0); - transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0); - -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1); - animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1); - } -} - -.zoomInRight { - -webkit-animation-name: zoomInRight; - animation-name: zoomInRight; -} - -@-webkit-keyframes zoomInUp { - from { - opacity: 0; - -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0); - transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0); - -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190); - animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190); - } - - 60% { - opacity: 1; - -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0); - transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0); - -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1); - animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1); - } -} - -@keyframes zoomInUp { - from { - opacity: 0; - -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0); - transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0); - -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190); - animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190); - } - - 60% { - opacity: 1; - -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0); - transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0); - -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1); - animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1); - } -} - -.zoomInUp { - -webkit-animation-name: zoomInUp; - animation-name: zoomInUp; -} - -@-webkit-keyframes zoomOut { - from { - opacity: 1; - } - - 50% { - opacity: 0; - -webkit-transform: scale3d(.3, .3, .3); - transform: scale3d(.3, .3, .3); - } - - to { - opacity: 0; - } -} - -@keyframes zoomOut { - from { - opacity: 1; - } - - 50% { - opacity: 0; - -webkit-transform: scale3d(.3, .3, .3); - transform: scale3d(.3, .3, .3); - } - - to { - opacity: 0; - } -} - -.zoomOut { - -webkit-animation-name: zoomOut; - animation-name: zoomOut; -} - -@-webkit-keyframes zoomOutDown { - 40% { - opacity: 1; - -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0); - transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0); - -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190); - animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190); - } - - to { - opacity: 0; - -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0); - transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0); - -webkit-transform-origin: center bottom; - transform-origin: center bottom; - -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1); - animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1); - } -} - -@keyframes zoomOutDown { - 40% { - opacity: 1; - -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0); - transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0); - -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190); - animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190); - } - - to { - opacity: 0; - -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0); - transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0); - -webkit-transform-origin: center bottom; - transform-origin: center bottom; - -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1); - animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1); - } -} - -.zoomOutDown { - -webkit-animation-name: zoomOutDown; - animation-name: zoomOutDown; -} - -@-webkit-keyframes zoomOutLeft { - 40% { - opacity: 1; - -webkit-transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0); - transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0); - } - - to { - opacity: 0; - -webkit-transform: scale(.1) translate3d(-2000px, 0, 0); - transform: scale(.1) translate3d(-2000px, 0, 0); - -webkit-transform-origin: left center; - transform-origin: left center; - } -} - -@keyframes zoomOutLeft { - 40% { - opacity: 1; - -webkit-transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0); - transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0); - } - - to { - opacity: 0; - -webkit-transform: scale(.1) translate3d(-2000px, 0, 0); - transform: scale(.1) translate3d(-2000px, 0, 0); - -webkit-transform-origin: left center; - transform-origin: left center; - } -} - -.zoomOutLeft { - -webkit-animation-name: zoomOutLeft; - animation-name: zoomOutLeft; -} - -@-webkit-keyframes zoomOutRight { - 40% { - opacity: 1; - -webkit-transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0); - transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0); - } - - to { - opacity: 0; - -webkit-transform: scale(.1) translate3d(2000px, 0, 0); - transform: scale(.1) translate3d(2000px, 0, 0); - -webkit-transform-origin: right center; - transform-origin: right center; - } -} - -@keyframes zoomOutRight { - 40% { - opacity: 1; - -webkit-transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0); - transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0); - } - - to { - opacity: 0; - -webkit-transform: scale(.1) translate3d(2000px, 0, 0); - transform: scale(.1) translate3d(2000px, 0, 0); - -webkit-transform-origin: right center; - transform-origin: right center; - } -} - -.zoomOutRight { - -webkit-animation-name: zoomOutRight; - animation-name: zoomOutRight; -} - -@-webkit-keyframes zoomOutUp { - 40% { - opacity: 1; - -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0); - transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0); - -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190); - animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190); - } - - to { - opacity: 0; - -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0); - transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0); - -webkit-transform-origin: center bottom; - transform-origin: center bottom; - -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1); - animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1); - } -} - -@keyframes zoomOutUp { - 40% { - opacity: 1; - -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0); - transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0); - -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190); - animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190); - } - - to { - opacity: 0; - -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0); - transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0); - -webkit-transform-origin: center bottom; - transform-origin: center bottom; - -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1); - animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1); - } -} - -.zoomOutUp { - -webkit-animation-name: zoomOutUp; - animation-name: zoomOutUp; -} - -@-webkit-keyframes slideInDown { - from { - -webkit-transform: translate3d(0, -100%, 0); - transform: translate3d(0, -100%, 0); - visibility: visible; - } - - to { - -webkit-transform: translate3d(0, 0, 0); - transform: translate3d(0, 0, 0); - } -} - -@keyframes slideInDown { - from { - -webkit-transform: translate3d(0, -100%, 0); - transform: translate3d(0, -100%, 0); - visibility: visible; - } - - to { - -webkit-transform: translate3d(0, 0, 0); - transform: translate3d(0, 0, 0); - } -} - -.slideInDown { - -webkit-animation-name: slideInDown; - animation-name: slideInDown; -} - -@-webkit-keyframes slideInLeft { - from { - -webkit-transform: translate3d(-100%, 0, 0); - transform: translate3d(-100%, 0, 0); - visibility: visible; - } - - to { - -webkit-transform: translate3d(0, 0, 0); - transform: translate3d(0, 0, 0); - } -} - -@keyframes slideInLeft { - from { - -webkit-transform: translate3d(-100%, 0, 0); - transform: translate3d(-100%, 0, 0); - visibility: visible; - } - - to { - -webkit-transform: translate3d(0, 0, 0); - transform: translate3d(0, 0, 0); - } -} - -.slideInLeft { - -webkit-animation-name: slideInLeft; - animation-name: slideInLeft; -} - -@-webkit-keyframes slideInRight { - from { - -webkit-transform: translate3d(100%, 0, 0); - transform: translate3d(100%, 0, 0); - visibility: visible; - } - - to { - -webkit-transform: translate3d(0, 0, 0); - transform: translate3d(0, 0, 0); - } -} - -@keyframes slideInRight { - from { - -webkit-transform: translate3d(100%, 0, 0); - transform: translate3d(100%, 0, 0); - visibility: visible; - } - - to { - -webkit-transform: translate3d(0, 0, 0); - transform: translate3d(0, 0, 0); - } -} - -.slideInRight { - -webkit-animation-name: slideInRight; - animation-name: slideInRight; -} - -@-webkit-keyframes slideInUp { - from { - -webkit-transform: translate3d(0, 100%, 0); - transform: translate3d(0, 100%, 0); - visibility: visible; - } - - to { - -webkit-transform: translate3d(0, 0, 0); - transform: translate3d(0, 0, 0); - } -} - -@keyframes slideInUp { - from { - -webkit-transform: translate3d(0, 100%, 0); - transform: translate3d(0, 100%, 0); - visibility: visible; - } - - to { - -webkit-transform: translate3d(0, 0, 0); - transform: translate3d(0, 0, 0); - } -} - -.slideInUp { - -webkit-animation-name: slideInUp; - animation-name: slideInUp; -} - -@-webkit-keyframes slideOutDown { - from { - -webkit-transform: translate3d(0, 0, 0); - transform: translate3d(0, 0, 0); - } - - to { - visibility: hidden; - -webkit-transform: translate3d(0, 100%, 0); - transform: translate3d(0, 100%, 0); - } -} - -@keyframes slideOutDown { - from { - -webkit-transform: translate3d(0, 0, 0); - transform: translate3d(0, 0, 0); - } - - to { - visibility: hidden; - -webkit-transform: translate3d(0, 100%, 0); - transform: translate3d(0, 100%, 0); - } -} - -.slideOutDown { - -webkit-animation-name: slideOutDown; - animation-name: slideOutDown; -} - -@-webkit-keyframes slideOutLeft { - from { - -webkit-transform: translate3d(0, 0, 0); - transform: translate3d(0, 0, 0); - } - - to { - visibility: hidden; - -webkit-transform: translate3d(-100%, 0, 0); - transform: translate3d(-100%, 0, 0); - } -} - -@keyframes slideOutLeft { - from { - -webkit-transform: translate3d(0, 0, 0); - transform: translate3d(0, 0, 0); - } - - to { - visibility: hidden; - -webkit-transform: translate3d(-100%, 0, 0); - transform: translate3d(-100%, 0, 0); - } -} - -.slideOutLeft { - -webkit-animation-name: slideOutLeft; - animation-name: slideOutLeft; -} - -@-webkit-keyframes slideOutRight { - from { - -webkit-transform: translate3d(0, 0, 0); - transform: translate3d(0, 0, 0); - } - - to { - visibility: hidden; - -webkit-transform: translate3d(100%, 0, 0); - transform: translate3d(100%, 0, 0); - } -} - -@keyframes slideOutRight { - from { - -webkit-transform: translate3d(0, 0, 0); - transform: translate3d(0, 0, 0); - } - - to { - visibility: hidden; - -webkit-transform: translate3d(100%, 0, 0); - transform: translate3d(100%, 0, 0); - } -} - -.slideOutRight { - -webkit-animation-name: slideOutRight; - animation-name: slideOutRight; -} - -@-webkit-keyframes slideOutUp { - from { - -webkit-transform: translate3d(0, 0, 0); - transform: translate3d(0, 0, 0); - } - - to { - visibility: hidden; - -webkit-transform: translate3d(0, -100%, 0); - transform: translate3d(0, -100%, 0); - } -} - -@keyframes slideOutUp { - from { - -webkit-transform: translate3d(0, 0, 0); - transform: translate3d(0, 0, 0); - } - - to { - visibility: hidden; - -webkit-transform: translate3d(0, -100%, 0); - transform: translate3d(0, -100%, 0); - } -} - -.slideOutUp { - -webkit-animation-name: slideOutUp; - animation-name: slideOutUp; -} \ No newline at end of file diff --git a/html/css/bootstrap-graphics.css b/html/css/bootstrap-graphics.css deleted file mode 100644 index 074ee3b2..00000000 --- a/html/css/bootstrap-graphics.css +++ /dev/null @@ -1,7323 +0,0 @@ -@charset "UTF-8"; -/*! - * Bootstrap v3.3.5 (http://getbootstrap.com) - * Copyright 2011-2015 Twitter, Inc. - * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) - */ -/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */ -html { - font-family: sans-serif; - -ms-text-size-adjust: 100%; - -webkit-text-size-adjust: 100%; -} - -body { - margin: 0; -} - -article, -aside, -details, -figcaption, -figure, -footer, -header, -hgroup, -main, -menu, -nav, -section, -summary { - display: block; -} - -audio, -canvas, -progress, -video { - display: inline-block; - vertical-align: baseline; -} - -audio:not([controls]) { - display: none; - height: 0; -} - -[hidden], -template { - display: none; -} - -a { - background-color: transparent; -} - -a:active, -a:hover { - outline: 0; -} - -abbr[title] { - border-bottom: 1px dotted; -} - -b, -strong { - font-weight: bold; -} - -dfn { - font-style: italic; -} - -h1 { - font-size: 2em; - margin: 0.67em 0; -} - -mark { - background: #ff0; - color: #000; -} - -small { - font-size: 80%; -} - -sub, -sup { - font-size: 75%; - line-height: 0; - position: relative; - vertical-align: baseline; -} - -sup { - top: -0.5em; -} - -sub { - bottom: -0.25em; -} - -img { - border: 0; -} - -svg:not(:root) { - overflow: hidden; -} - -figure { - margin: 1em 40px; -} - -hr { - box-sizing: content-box; - height: 0; -} - -pre { - overflow: auto; -} - -code, -kbd, -pre, -samp { - font-family: monospace, monospace; - font-size: 1em; -} - -button, -input, -optgroup, -select, -textarea { - color: inherit; - font: inherit; - margin: 0; -} - -button { - overflow: visible; -} - -button, -select { - text-transform: none; -} - -button, -html input[type="button"], -input[type="reset"], -input[type="submit"] { - -webkit-appearance: button; - cursor: pointer; -} - -button[disabled], -html input[disabled] { - cursor: default; -} - -button::-moz-focus-inner, -input::-moz-focus-inner { - border: 0; - padding: 0; -} - -input { - line-height: normal; -} - -input[type="checkbox"], -input[type="radio"] { - box-sizing: border-box; - padding: 0; -} - -input[type="number"]::-webkit-inner-spin-button, -input[type="number"]::-webkit-outer-spin-button { - height: auto; -} - -input[type="search"] { - -webkit-appearance: textfield; - box-sizing: content-box; -} - -input[type="search"]::-webkit-search-cancel-button, -input[type="search"]::-webkit-search-decoration { - -webkit-appearance: none; -} - -fieldset { - border: 1px solid #c0c0c0; - margin: 0 2px; - padding: 0.35em 0.625em 0.75em; -} - -legend { - border: 0; - padding: 0; -} - -textarea { - overflow: auto; -} - -optgroup { - font-weight: bold; -} - -table { - border-collapse: collapse; - border-spacing: 0; -} - -td, -th { - padding: 0; -} - -/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */ -@media print { - *, - *:before, - *:after { - background: transparent !important; - color: #000 !important; - box-shadow: none !important; - text-shadow: none !important; - } - - a, - a:visited { - text-decoration: underline; - } - - a[href]:after { - content: " (" attr(href) ")"; - } - - abbr[title]:after { - content: " (" attr(title) ")"; - } - - a[href^="#"]:after, - a[href^="javascript:"]:after { - content: ""; - } - - pre, - blockquote { - border: 1px solid #999; - page-break-inside: avoid; - } - - thead { - display: table-header-group; - } - - tr, - img { - page-break-inside: avoid; - } - - img { - max-width: 100% !important; - } - - p, - h2, - h3 { - orphans: 3; - widows: 3; - } - - h2, - h3 { - page-break-after: avoid; - } - - .navbar { - display: none; - } - - .btn > .caret, - .dropup > .btn > .caret { - border-top-color: #000 !important; - } - - .label { - border: 1px solid #000; - } - - .table { - border-collapse: collapse !important; - } - .table td, - .table th { - background-color: #fff !important; - } - - .table-bordered th, - .table-bordered td { - border: 1px solid #ddd !important; - } -} -@font-face { - font-family: 'Glyphicons Halflings'; - src: url("../fonts/bootstrap/glyphicons-halflings-regular.eot"); - src: url("../fonts/bootstrap/glyphicons-halflings-regular.eot?#iefix") format("embedded-opentype"), url("../fonts/bootstrap/glyphicons-halflings-regular.woff2") format("woff2"), url("../fonts/bootstrap/glyphicons-halflings-regular.woff") format("woff"), url("../fonts/bootstrap/glyphicons-halflings-regular.ttf") format("truetype"), url("../fonts/bootstrap/glyphicons-halflings-regular.svg#glyphicons_halflingsregular") format("svg"); -} -.glyphicon { - position: relative; - top: 1px; - display: inline-block; - font-family: 'Glyphicons Halflings'; - font-style: normal; - font-weight: normal; - line-height: 1; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; -} - -.glyphicon-asterisk:before { - content: "\2a"; -} - -.glyphicon-plus:before { - content: "\2b"; -} - -.glyphicon-euro:before, -.glyphicon-eur:before { - content: "\20ac"; -} - -.glyphicon-minus:before { - content: "\2212"; -} - -.glyphicon-cloud:before { - content: "\2601"; -} - -.glyphicon-envelope:before { - content: "\2709"; -} - -.glyphicon-pencil:before { - content: "\270f"; -} - -.glyphicon-glass:before { - content: "\e001"; -} - -.glyphicon-music:before { - content: "\e002"; -} - -.glyphicon-search:before { - content: "\e003"; -} - -.glyphicon-heart:before { - content: "\e005"; -} - -.glyphicon-star:before { - content: "\e006"; -} - -.glyphicon-star-empty:before { - content: "\e007"; -} - -.glyphicon-user:before { - content: "\e008"; -} - -.glyphicon-film:before { - content: "\e009"; -} - -.glyphicon-th-large:before { - content: "\e010"; -} - -.glyphicon-th:before { - content: "\e011"; -} - -.glyphicon-th-list:before { - content: "\e012"; -} - -.glyphicon-ok:before { - content: "\e013"; -} - -.glyphicon-remove:before { - content: "\e014"; -} - -.glyphicon-zoom-in:before { - content: "\e015"; -} - -.glyphicon-zoom-out:before { - content: "\e016"; -} - -.glyphicon-off:before { - content: "\e017"; -} - -.glyphicon-signal:before { - content: "\e018"; -} - -.glyphicon-cog:before { - content: "\e019"; -} - -.glyphicon-trash:before { - content: "\e020"; -} - -.glyphicon-home:before { - content: "\e021"; -} - -.glyphicon-file:before { - content: "\e022"; -} - -.glyphicon-time:before { - content: "\e023"; -} - -.glyphicon-road:before { - content: "\e024"; -} - -.glyphicon-download-alt:before { - content: "\e025"; -} - -.glyphicon-download:before { - content: "\e026"; -} - -.glyphicon-upload:before { - content: "\e027"; -} - -.glyphicon-inbox:before { - content: "\e028"; -} - -.glyphicon-play-circle:before { - content: "\e029"; -} - -.glyphicon-repeat:before { - content: "\e030"; -} - -.glyphicon-refresh:before { - content: "\e031"; -} - -.glyphicon-list-alt:before { - content: "\e032"; -} - -.glyphicon-lock:before { - content: "\e033"; -} - -.glyphicon-flag:before { - content: "\e034"; -} - -.glyphicon-headphones:before { - content: "\e035"; -} - -.glyphicon-volume-off:before { - content: "\e036"; -} - -.glyphicon-volume-down:before { - content: "\e037"; -} - -.glyphicon-volume-up:before { - content: "\e038"; -} - -.glyphicon-qrcode:before { - content: "\e039"; -} - -.glyphicon-barcode:before { - content: "\e040"; -} - -.glyphicon-tag:before { - content: "\e041"; -} - -.glyphicon-tags:before { - content: "\e042"; -} - -.glyphicon-book:before { - content: "\e043"; -} - -.glyphicon-bookmark:before { - content: "\e044"; -} - -.glyphicon-print:before { - content: "\e045"; -} - -.glyphicon-camera:before { - content: "\e046"; -} - -.glyphicon-font:before { - content: "\e047"; -} - -.glyphicon-bold:before { - content: "\e048"; -} - -.glyphicon-italic:before { - content: "\e049"; -} - -.glyphicon-text-height:before { - content: "\e050"; -} - -.glyphicon-text-width:before { - content: "\e051"; -} - -.glyphicon-align-left:before { - content: "\e052"; -} - -.glyphicon-align-center:before { - content: "\e053"; -} - -.glyphicon-align-right:before { - content: "\e054"; -} - -.glyphicon-align-justify:before { - content: "\e055"; -} - -.glyphicon-list:before { - content: "\e056"; -} - -.glyphicon-indent-left:before { - content: "\e057"; -} - -.glyphicon-indent-right:before { - content: "\e058"; -} - -.glyphicon-facetime-video:before { - content: "\e059"; -} - -.glyphicon-picture:before { - content: "\e060"; -} - -.glyphicon-map-marker:before { - content: "\e062"; -} - -.glyphicon-adjust:before { - content: "\e063"; -} - -.glyphicon-tint:before { - content: "\e064"; -} - -.glyphicon-edit:before { - content: "\e065"; -} - -.glyphicon-share:before { - content: "\e066"; -} - -.glyphicon-check:before { - content: "\e067"; -} - -.glyphicon-move:before { - content: "\e068"; -} - -.glyphicon-step-backward:before { - content: "\e069"; -} - -.glyphicon-fast-backward:before { - content: "\e070"; -} - -.glyphicon-backward:before { - content: "\e071"; -} - -.glyphicon-play:before { - content: "\e072"; -} - -.glyphicon-pause:before { - content: "\e073"; -} - -.glyphicon-stop:before { - content: "\e074"; -} - -.glyphicon-forward:before { - content: "\e075"; -} - -.glyphicon-fast-forward:before { - content: "\e076"; -} - -.glyphicon-step-forward:before { - content: "\e077"; -} - -.glyphicon-eject:before { - content: "\e078"; -} - -.glyphicon-chevron-left:before { - content: "\e079"; -} - -.glyphicon-chevron-right:before { - content: "\e080"; -} - -.glyphicon-plus-sign:before { - content: "\e081"; -} - -.glyphicon-minus-sign:before { - content: "\e082"; -} - -.glyphicon-remove-sign:before { - content: "\e083"; -} - -.glyphicon-ok-sign:before { - content: "\e084"; -} - -.glyphicon-question-sign:before { - content: "\e085"; -} - -.glyphicon-info-sign:before { - content: "\e086"; -} - -.glyphicon-screenshot:before { - content: "\e087"; -} - -.glyphicon-remove-circle:before { - content: "\e088"; -} - -.glyphicon-ok-circle:before { - content: "\e089"; -} - -.glyphicon-ban-circle:before { - content: "\e090"; -} - -.glyphicon-arrow-left:before { - content: "\e091"; -} - -.glyphicon-arrow-right:before { - content: "\e092"; -} - -.glyphicon-arrow-up:before { - content: "\e093"; -} - -.glyphicon-arrow-down:before { - content: "\e094"; -} - -.glyphicon-share-alt:before { - content: "\e095"; -} - -.glyphicon-resize-full:before { - content: "\e096"; -} - -.glyphicon-resize-small:before { - content: "\e097"; -} - -.glyphicon-exclamation-sign:before { - content: "\e101"; -} - -.glyphicon-gift:before { - content: "\e102"; -} - -.glyphicon-leaf:before { - content: "\e103"; -} - -.glyphicon-fire:before { - content: "\e104"; -} - -.glyphicon-eye-open:before { - content: "\e105"; -} - -.glyphicon-eye-close:before { - content: "\e106"; -} - -.glyphicon-warning-sign:before { - content: "\e107"; -} - -.glyphicon-plane:before { - content: "\e108"; -} - -.glyphicon-calendar:before { - content: "\e109"; -} - -.glyphicon-random:before { - content: "\e110"; -} - -.glyphicon-comment:before { - content: "\e111"; -} - -.glyphicon-magnet:before { - content: "\e112"; -} - -.glyphicon-chevron-up:before { - content: "\e113"; -} - -.glyphicon-chevron-down:before { - content: "\e114"; -} - -.glyphicon-retweet:before { - content: "\e115"; -} - -.glyphicon-shopping-cart:before { - content: "\e116"; -} - -.glyphicon-folder-close:before { - content: "\e117"; -} - -.glyphicon-folder-open:before { - content: "\e118"; -} - -.glyphicon-resize-vertical:before { - content: "\e119"; -} - -.glyphicon-resize-horizontal:before { - content: "\e120"; -} - -.glyphicon-hdd:before { - content: "\e121"; -} - -.glyphicon-bullhorn:before { - content: "\e122"; -} - -.glyphicon-bell:before { - content: "\e123"; -} - -.glyphicon-certificate:before { - content: "\e124"; -} - -.glyphicon-thumbs-up:before { - content: "\e125"; -} - -.glyphicon-thumbs-down:before { - content: "\e126"; -} - -.glyphicon-hand-right:before { - content: "\e127"; -} - -.glyphicon-hand-left:before { - content: "\e128"; -} - -.glyphicon-hand-up:before { - content: "\e129"; -} - -.glyphicon-hand-down:before { - content: "\e130"; -} - -.glyphicon-circle-arrow-right:before { - content: "\e131"; -} - -.glyphicon-circle-arrow-left:before { - content: "\e132"; -} - -.glyphicon-circle-arrow-up:before { - content: "\e133"; -} - -.glyphicon-circle-arrow-down:before { - content: "\e134"; -} - -.glyphicon-globe:before { - content: "\e135"; -} - -.glyphicon-wrench:before { - content: "\e136"; -} - -.glyphicon-tasks:before { - content: "\e137"; -} - -.glyphicon-filter:before { - content: "\e138"; -} - -.glyphicon-briefcase:before { - content: "\e139"; -} - -.glyphicon-fullscreen:before { - content: "\e140"; -} - -.glyphicon-dashboard:before { - content: "\e141"; -} - -.glyphicon-paperclip:before { - content: "\e142"; -} - -.glyphicon-heart-empty:before { - content: "\e143"; -} - -.glyphicon-link:before { - content: "\e144"; -} - -.glyphicon-phone:before { - content: "\e145"; -} - -.glyphicon-pushpin:before { - content: "\e146"; -} - -.glyphicon-usd:before { - content: "\e148"; -} - -.glyphicon-gbp:before { - content: "\e149"; -} - -.glyphicon-sort:before { - content: "\e150"; -} - -.glyphicon-sort-by-alphabet:before { - content: "\e151"; -} - -.glyphicon-sort-by-alphabet-alt:before { - content: "\e152"; -} - -.glyphicon-sort-by-order:before { - content: "\e153"; -} - -.glyphicon-sort-by-order-alt:before { - content: "\e154"; -} - -.glyphicon-sort-by-attributes:before { - content: "\e155"; -} - -.glyphicon-sort-by-attributes-alt:before { - content: "\e156"; -} - -.glyphicon-unchecked:before { - content: "\e157"; -} - -.glyphicon-expand:before { - content: "\e158"; -} - -.glyphicon-collapse-down:before { - content: "\e159"; -} - -.glyphicon-collapse-up:before { - content: "\e160"; -} - -.glyphicon-log-in:before { - content: "\e161"; -} - -.glyphicon-flash:before { - content: "\e162"; -} - -.glyphicon-log-out:before { - content: "\e163"; -} - -.glyphicon-new-window:before { - content: "\e164"; -} - -.glyphicon-record:before { - content: "\e165"; -} - -.glyphicon-save:before { - content: "\e166"; -} - -.glyphicon-open:before { - content: "\e167"; -} - -.glyphicon-saved:before { - content: "\e168"; -} - -.glyphicon-import:before { - content: "\e169"; -} - -.glyphicon-export:before { - content: "\e170"; -} - -.glyphicon-send:before { - content: "\e171"; -} - -.glyphicon-floppy-disk:before { - content: "\e172"; -} - -.glyphicon-floppy-saved:before { - content: "\e173"; -} - -.glyphicon-floppy-remove:before { - content: "\e174"; -} - -.glyphicon-floppy-save:before { - content: "\e175"; -} - -.glyphicon-floppy-open:before { - content: "\e176"; -} - -.glyphicon-credit-card:before { - content: "\e177"; -} - -.glyphicon-transfer:before { - content: "\e178"; -} - -.glyphicon-cutlery:before { - content: "\e179"; -} - -.glyphicon-header:before { - content: "\e180"; -} - -.glyphicon-compressed:before { - content: "\e181"; -} - -.glyphicon-earphone:before { - content: "\e182"; -} - -.glyphicon-phone-alt:before { - content: "\e183"; -} - -.glyphicon-tower:before { - content: "\e184"; -} - -.glyphicon-stats:before { - content: "\e185"; -} - -.glyphicon-sd-video:before { - content: "\e186"; -} - -.glyphicon-hd-video:before { - content: "\e187"; -} - -.glyphicon-subtitles:before { - content: "\e188"; -} - -.glyphicon-sound-stereo:before { - content: "\e189"; -} - -.glyphicon-sound-dolby:before { - content: "\e190"; -} - -.glyphicon-sound-5-1:before { - content: "\e191"; -} - -.glyphicon-sound-6-1:before { - content: "\e192"; -} - -.glyphicon-sound-7-1:before { - content: "\e193"; -} - -.glyphicon-copyright-mark:before { - content: "\e194"; -} - -.glyphicon-registration-mark:before { - content: "\e195"; -} - -.glyphicon-cloud-download:before { - content: "\e197"; -} - -.glyphicon-cloud-upload:before { - content: "\e198"; -} - -.glyphicon-tree-conifer:before { - content: "\e199"; -} - -.glyphicon-tree-deciduous:before { - content: "\e200"; -} - -.glyphicon-cd:before { - content: "\e201"; -} - -.glyphicon-save-file:before { - content: "\e202"; -} - -.glyphicon-open-file:before { - content: "\e203"; -} - -.glyphicon-level-up:before { - content: "\e204"; -} - -.glyphicon-copy:before { - content: "\e205"; -} - -.glyphicon-paste:before { - content: "\e206"; -} - -.glyphicon-alert:before { - content: "\e209"; -} - -.glyphicon-equalizer:before { - content: "\e210"; -} - -.glyphicon-king:before { - content: "\e211"; -} - -.glyphicon-queen:before { - content: "\e212"; -} - -.glyphicon-pawn:before { - content: "\e213"; -} - -.glyphicon-bishop:before { - content: "\e214"; -} - -.glyphicon-knight:before { - content: "\e215"; -} - -.glyphicon-baby-formula:before { - content: "\e216"; -} - -.glyphicon-tent:before { - content: "\26fa"; -} - -.glyphicon-blackboard:before { - content: "\e218"; -} - -.glyphicon-bed:before { - content: "\e219"; -} - -.glyphicon-apple:before { - content: "\f8ff"; -} - -.glyphicon-erase:before { - content: "\e221"; -} - -.glyphicon-hourglass:before { - content: "\231b"; -} - -.glyphicon-lamp:before { - content: "\e223"; -} - -.glyphicon-duplicate:before { - content: "\e224"; -} - -.glyphicon-piggy-bank:before { - content: "\e225"; -} - -.glyphicon-scissors:before { - content: "\e226"; -} - -.glyphicon-bitcoin:before { - content: "\e227"; -} - -.glyphicon-btc:before { - content: "\e227"; -} - -.glyphicon-xbt:before { - content: "\e227"; -} - -.glyphicon-yen:before { - content: "\00a5"; -} - -.glyphicon-jpy:before { - content: "\00a5"; -} - -.glyphicon-ruble:before { - content: "\20bd"; -} - -.glyphicon-rub:before { - content: "\20bd"; -} - -.glyphicon-scale:before { - content: "\e230"; -} - -.glyphicon-ice-lolly:before { - content: "\e231"; -} - -.glyphicon-ice-lolly-tasted:before { - content: "\e232"; -} - -.glyphicon-education:before { - content: "\e233"; -} - -.glyphicon-option-horizontal:before { - content: "\e234"; -} - -.glyphicon-option-vertical:before { - content: "\e235"; -} - -.glyphicon-menu-hamburger:before { - content: "\e236"; -} - -.glyphicon-modal-window:before { - content: "\e237"; -} - -.glyphicon-oil:before { - content: "\e238"; -} - -.glyphicon-grain:before { - content: "\e239"; -} - -.glyphicon-sunglasses:before { - content: "\e240"; -} - -.glyphicon-text-size:before { - content: "\e241"; -} - -.glyphicon-text-color:before { - content: "\e242"; -} - -.glyphicon-text-background:before { - content: "\e243"; -} - -.glyphicon-object-align-top:before { - content: "\e244"; -} - -.glyphicon-object-align-bottom:before { - content: "\e245"; -} - -.glyphicon-object-align-horizontal:before { - content: "\e246"; -} - -.glyphicon-object-align-left:before { - content: "\e247"; -} - -.glyphicon-object-align-vertical:before { - content: "\e248"; -} - -.glyphicon-object-align-right:before { - content: "\e249"; -} - -.glyphicon-triangle-right:before { - content: "\e250"; -} - -.glyphicon-triangle-left:before { - content: "\e251"; -} - -.glyphicon-triangle-bottom:before { - content: "\e252"; -} - -.glyphicon-triangle-top:before { - content: "\e253"; -} - -.glyphicon-console:before { - content: "\e254"; -} - -.glyphicon-superscript:before { - content: "\e255"; -} - -.glyphicon-subscript:before { - content: "\e256"; -} - -.glyphicon-menu-left:before { - content: "\e257"; -} - -.glyphicon-menu-right:before { - content: "\e258"; -} - -.glyphicon-menu-down:before { - content: "\e259"; -} - -.glyphicon-menu-up:before { - content: "\e260"; -} - -* { - -webkit-box-sizing: border-box; - -moz-box-sizing: border-box; - box-sizing: border-box; -} - -*:before, -*:after { - -webkit-box-sizing: border-box; - -moz-box-sizing: border-box; - box-sizing: border-box; -} - -html { - font-size: 10px; - -webkit-tap-highlight-color: transparent; -} - -body { - font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; - font-size: 14px; - line-height: 1.42857; - color: #333333; - background-color: #fff; -} - -input, -button, -select, -textarea { - font-family: inherit; - font-size: inherit; - line-height: inherit; -} - -a { - color: #337ab7; - text-decoration: none; -} -a:hover, a:focus { - color: #23527c; - text-decoration: underline; -} -a:focus { - outline: thin dotted; - outline: 5px auto -webkit-focus-ring-color; - outline-offset: -2px; -} - -figure { - margin: 0; -} - -img { - vertical-align: middle; -} - -.img-responsive { - display: block; - max-width: 100%; - height: auto; -} - -.img-rounded { - border-radius: 6px; -} - -.img-thumbnail { - padding: 4px; - line-height: 1.42857; - background-color: #fff; - border: 1px solid #ddd; - border-radius: 4px; - -webkit-transition: all 0.2s ease-in-out; - -o-transition: all 0.2s ease-in-out; - transition: all 0.2s ease-in-out; - display: inline-block; - max-width: 100%; - height: auto; -} - -.img-circle { - border-radius: 50%; -} - -hr { - margin-top: 20px; - margin-bottom: 20px; - border: 0; - border-top: 1px solid #eeeeee; -} - -.sr-only { - position: absolute; - width: 1px; - height: 1px; - margin: -1px; - padding: 0; - overflow: hidden; - clip: rect(0, 0, 0, 0); - border: 0; -} - -.sr-only-focusable:active, .sr-only-focusable:focus { - position: static; - width: auto; - height: auto; - margin: 0; - overflow: visible; - clip: auto; -} - -[role="button"] { - cursor: pointer; -} - -h1, h2, h3, h4, h5, h6, -.h1, .h2, .h3, .h4, .h5, .h6 { - font-family: inherit; - font-weight: 500; - line-height: 1.1; - color: inherit; -} -h1 small, -h1 .small, h2 small, -h2 .small, h3 small, -h3 .small, h4 small, -h4 .small, h5 small, -h5 .small, h6 small, -h6 .small, -.h1 small, -.h1 .small, .h2 small, -.h2 .small, .h3 small, -.h3 .small, .h4 small, -.h4 .small, .h5 small, -.h5 .small, .h6 small, -.h6 .small { - font-weight: normal; - line-height: 1; - color: #777777; -} - -h1, .h1, -h2, .h2, -h3, .h3 { - margin-top: 20px; - margin-bottom: 10px; -} -h1 small, -h1 .small, .h1 small, -.h1 .small, -h2 small, -h2 .small, .h2 small, -.h2 .small, -h3 small, -h3 .small, .h3 small, -.h3 .small { - font-size: 65%; -} - -h4, .h4, -h5, .h5, -h6, .h6 { - margin-top: 10px; - margin-bottom: 10px; -} -h4 small, -h4 .small, .h4 small, -.h4 .small, -h5 small, -h5 .small, .h5 small, -.h5 .small, -h6 small, -h6 .small, .h6 small, -.h6 .small { - font-size: 75%; -} - -h1, .h1 { - font-size: 36px; -} - -h2, .h2 { - font-size: 30px; -} - -h3, .h3 { - font-size: 24px; -} - -h4, .h4 { - font-size: 18px; -} - -h5, .h5 { - font-size: 14px; -} - -h6, .h6 { - font-size: 12px; -} - -p { - margin: 0 0 10px; -} - -.lead { - margin-bottom: 20px; - font-size: 16px; - font-weight: 300; - line-height: 1.4; -} -@media (min-width: 768px) { - .lead { - font-size: 21px; - } -} - -small, -.small { - font-size: 85%; -} - -mark, -.mark { - background-color: #fcf8e3; - padding: .2em; -} - -.text-left { - text-align: left; -} - -.text-right { - text-align: right; -} - -.text-center { - text-align: center; -} - -.text-justify { - text-align: justify; -} - -.text-nowrap { - white-space: nowrap; -} - -.text-lowercase { - text-transform: lowercase; -} - -.text-uppercase, .initialism { - text-transform: uppercase; -} - -.text-capitalize { - text-transform: capitalize; -} - -.text-muted { - color: #777777; -} - -.text-primary { - color: #337ab7; -} - -a.text-primary:hover, -a.text-primary:focus { - color: #286090; -} - -.text-success { - color: #3c763d; -} - -a.text-success:hover, -a.text-success:focus { - color: #2b542c; -} - -.text-info { - color: #31708f; -} - -a.text-info:hover, -a.text-info:focus { - color: #245269; -} - -.text-warning { - color: #8a6d3b; -} - -a.text-warning:hover, -a.text-warning:focus { - color: #66512c; -} - -.text-danger { - color: #a94442; -} - -a.text-danger:hover, -a.text-danger:focus { - color: #843534; -} - -.bg-primary { - color: #fff; -} - -.bg-primary { - background-color: #337ab7; -} - -a.bg-primary:hover, -a.bg-primary:focus { - background-color: #286090; -} - -.bg-success { - background-color: #dff0d8; -} - -a.bg-success:hover, -a.bg-success:focus { - background-color: #c1e2b3; -} - -.bg-info { - background-color: #d9edf7; -} - -a.bg-info:hover, -a.bg-info:focus { - background-color: #afd9ee; -} - -.bg-warning { - background-color: #fcf8e3; -} - -a.bg-warning:hover, -a.bg-warning:focus { - background-color: #f7ecb5; -} - -.bg-danger { - background-color: #f2dede; -} - -a.bg-danger:hover, -a.bg-danger:focus { - background-color: #e4b9b9; -} - -.page-header { - padding-bottom: 9px; - margin: 40px 0 20px; - border-bottom: 1px solid #eeeeee; -} - -ul, -ol { - margin-top: 0; - margin-bottom: 10px; -} -ul ul, -ul ol, -ol ul, -ol ol { - margin-bottom: 0; -} - -.list-unstyled { - padding-left: 0; - list-style: none; -} - -.list-inline { - padding-left: 0; - list-style: none; - margin-left: -5px; -} -.list-inline > li { - display: inline-block; - padding-left: 5px; - padding-right: 5px; -} - -dl { - margin-top: 0; - margin-bottom: 20px; -} - -dt, -dd { - line-height: 1.42857; -} - -dt { - font-weight: bold; -} - -dd { - margin-left: 0; -} - -.dl-horizontal dd:before, .dl-horizontal dd:after { - content: " "; - display: table; -} -.dl-horizontal dd:after { - clear: both; -} -@media (min-width: 768px) { - .dl-horizontal dt { - float: left; - width: 160px; - clear: left; - text-align: right; - overflow: hidden; - text-overflow: ellipsis; - white-space: nowrap; - } - .dl-horizontal dd { - margin-left: 180px; - } -} - -abbr[title], -abbr[data-original-title] { - cursor: help; - border-bottom: 1px dotted #777777; -} - -.initialism { - font-size: 90%; -} - -blockquote { - padding: 10px 20px; - margin: 0 0 20px; - font-size: 17.5px; - border-left: 5px solid #eeeeee; -} -blockquote p:last-child, -blockquote ul:last-child, -blockquote ol:last-child { - margin-bottom: 0; -} -blockquote footer, -blockquote small, -blockquote .small { - display: block; - font-size: 80%; - line-height: 1.42857; - color: #777777; -} -blockquote footer:before, -blockquote small:before, -blockquote .small:before { - content: '\2014 \00A0'; -} - -.blockquote-reverse, -blockquote.pull-right { - padding-right: 15px; - padding-left: 0; - border-right: 5px solid #eeeeee; - border-left: 0; - text-align: right; -} -.blockquote-reverse footer:before, -.blockquote-reverse small:before, -.blockquote-reverse .small:before, -blockquote.pull-right footer:before, -blockquote.pull-right small:before, -blockquote.pull-right .small:before { - content: ''; -} -.blockquote-reverse footer:after, -.blockquote-reverse small:after, -.blockquote-reverse .small:after, -blockquote.pull-right footer:after, -blockquote.pull-right small:after, -blockquote.pull-right .small:after { - content: '\00A0 \2014'; -} - -address { - margin-bottom: 20px; - font-style: normal; - line-height: 1.42857; -} - -code, -kbd, -pre, -samp { - font-family: Menlo, Monaco, Consolas, "Courier New", monospace; -} - -code { - padding: 2px 4px; - font-size: 90%; - color: #c7254e; - background-color: #f9f2f4; - border-radius: 4px; -} - -kbd { - padding: 2px 4px; - font-size: 90%; - color: #fff; - background-color: #333; - border-radius: 3px; - box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25); -} -kbd kbd { - padding: 0; - font-size: 100%; - font-weight: bold; - box-shadow: none; -} - -pre { - display: block; - padding: 9.5px; - margin: 0 0 10px; - font-size: 13px; - line-height: 1.42857; - word-break: break-all; - word-wrap: break-word; - color: #333333; - background-color: #f5f5f5; - border: 1px solid #ccc; - border-radius: 4px; -} -pre code { - padding: 0; - font-size: inherit; - color: inherit; - white-space: pre-wrap; - background-color: transparent; - border-radius: 0; -} - -.pre-scrollable { - max-height: 340px; - overflow-y: scroll; -} - -.container { - margin-right: auto; - margin-left: auto; - padding-left: 15px; - padding-right: 15px; -} -.container:before, .container:after { - content: " "; - display: table; -} -.container:after { - clear: both; -} -@media (min-width: 768px) { - /*.container { - width: 750px; - }*/ -} -@media (min-width: 992px) { - .container { - width: 970px; - } -} -@media (min-width: 1200px) { - .container { - width: 1170px; - } -} - -.container-fluid { - margin-right: auto; - margin-left: auto; - padding-left: 15px; - padding-right: 15px; -} -.container-fluid:before, .container-fluid:after { - content: " "; - display: table; -} -.container-fluid:after { - clear: both; -} - -.row { - margin-left: -15px; - margin-right: -15px; -} -.row:before, .row:after { - content: " "; - display: table; -} -.row:after { - clear: both; -} - -.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 { - position: relative; - min-height: 1px; - padding-left: 15px; - padding-right: 15px; -} - -.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 { - float: left; -} - -.col-xs-1 { - width: 8.33333%; -} - -.col-xs-2 { - width: 16.66667%; -} - -.col-xs-3 { - width: 25%; -} - -.col-xs-4 { - width: 33.33333%; -} - -.col-xs-5 { - width: 41.66667%; -} - -.col-xs-6 { - width: 50%; -} - -.col-xs-7 { - width: 58.33333%; -} - -.col-xs-8 { - width: 66.66667%; -} - -.col-xs-9 { - width: 75%; -} - -.col-xs-10 { - width: 83.33333%; -} - -.col-xs-11 { - width: 91.66667%; -} - -.col-xs-12 { - width: 100%; -} - -.col-xs-pull-0 { - right: auto; -} - -.col-xs-pull-1 { - right: 8.33333%; -} - -.col-xs-pull-2 { - right: 16.66667%; -} - -.col-xs-pull-3 { - right: 25%; -} - -.col-xs-pull-4 { - right: 33.33333%; -} - -.col-xs-pull-5 { - right: 41.66667%; -} - -.col-xs-pull-6 { - right: 50%; -} - -.col-xs-pull-7 { - right: 58.33333%; -} - -.col-xs-pull-8 { - right: 66.66667%; -} - -.col-xs-pull-9 { - right: 75%; -} - -.col-xs-pull-10 { - right: 83.33333%; -} - -.col-xs-pull-11 { - right: 91.66667%; -} - -.col-xs-pull-12 { - right: 100%; -} - -.col-xs-push-0 { - left: auto; -} - -.col-xs-push-1 { - left: 8.33333%; -} - -.col-xs-push-2 { - left: 16.66667%; -} - -.col-xs-push-3 { - left: 25%; -} - -.col-xs-push-4 { - left: 33.33333%; -} - -.col-xs-push-5 { - left: 41.66667%; -} - -.col-xs-push-6 { - left: 50%; -} - -.col-xs-push-7 { - left: 58.33333%; -} - -.col-xs-push-8 { - left: 66.66667%; -} - -.col-xs-push-9 { - left: 75%; -} - -.col-xs-push-10 { - left: 83.33333%; -} - -.col-xs-push-11 { - left: 91.66667%; -} - -.col-xs-push-12 { - left: 100%; -} - -.col-xs-offset-0 { - margin-left: 0%; -} - -.col-xs-offset-1 { - margin-left: 8.33333%; -} - -.col-xs-offset-2 { - margin-left: 16.66667%; -} - -.col-xs-offset-3 { - margin-left: 25%; -} - -.col-xs-offset-4 { - margin-left: 33.33333%; -} - -.col-xs-offset-5 { - margin-left: 41.66667%; -} - -.col-xs-offset-6 { - margin-left: 50%; -} - -.col-xs-offset-7 { - margin-left: 58.33333%; -} - -.col-xs-offset-8 { - margin-left: 66.66667%; -} - -.col-xs-offset-9 { - margin-left: 75%; -} - -.col-xs-offset-10 { - margin-left: 83.33333%; -} - -.col-xs-offset-11 { - margin-left: 91.66667%; -} - -.col-xs-offset-12 { - margin-left: 100%; -} - -@media (min-width: 768px) { - .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 { - float: left; - } - - .col-sm-1 { - width: 8.33333%; - } - - .col-sm-2 { - width: 16.66667%; - } - - .col-sm-3 { - width: 25%; - } - - .col-sm-4 { - width: 33.33333%; - } - - .col-sm-5 { - width: 41.66667%; - } - - .col-sm-6 { - width: 50%; - } - - .col-sm-7 { - width: 58.33333%; - } - - .col-sm-8 { - width: 66.66667%; - } - - .col-sm-9 { - width: 75%; - } - - .col-sm-10 { - width: 83.33333%; - } - - .col-sm-11 { - width: 91.66667%; - } - - .col-sm-12 { - width: 100%; - } - - .col-sm-pull-0 { - right: auto; - } - - .col-sm-pull-1 { - right: 8.33333%; - } - - .col-sm-pull-2 { - right: 16.66667%; - } - - .col-sm-pull-3 { - right: 25%; - } - - .col-sm-pull-4 { - right: 33.33333%; - } - - .col-sm-pull-5 { - right: 41.66667%; - } - - .col-sm-pull-6 { - right: 50%; - } - - .col-sm-pull-7 { - right: 58.33333%; - } - - .col-sm-pull-8 { - right: 66.66667%; - } - - .col-sm-pull-9 { - right: 75%; - } - - .col-sm-pull-10 { - right: 83.33333%; - } - - .col-sm-pull-11 { - right: 91.66667%; - } - - .col-sm-pull-12 { - right: 100%; - } - - .col-sm-push-0 { - left: auto; - } - - .col-sm-push-1 { - left: 8.33333%; - } - - .col-sm-push-2 { - left: 16.66667%; - } - - .col-sm-push-3 { - left: 25%; - } - - .col-sm-push-4 { - left: 33.33333%; - } - - .col-sm-push-5 { - left: 41.66667%; - } - - .col-sm-push-6 { - left: 50%; - } - - .col-sm-push-7 { - left: 58.33333%; - } - - .col-sm-push-8 { - left: 66.66667%; - } - - .col-sm-push-9 { - left: 75%; - } - - .col-sm-push-10 { - left: 83.33333%; - } - - .col-sm-push-11 { - left: 91.66667%; - } - - .col-sm-push-12 { - left: 100%; - } - - .col-sm-offset-0 { - margin-left: 0%; - } - - .col-sm-offset-1 { - margin-left: 8.33333%; - } - - .col-sm-offset-2 { - margin-left: 16.66667%; - } - - .col-sm-offset-3 { - margin-left: 25%; - } - - .col-sm-offset-4 { - margin-left: 33.33333%; - } - - .col-sm-offset-5 { - margin-left: 41.66667%; - } - - .col-sm-offset-6 { - margin-left: 50%; - } - - .col-sm-offset-7 { - margin-left: 58.33333%; - } - - .col-sm-offset-8 { - margin-left: 66.66667%; - } - - .col-sm-offset-9 { - margin-left: 75%; - } - - .col-sm-offset-10 { - margin-left: 83.33333%; - } - - .col-sm-offset-11 { - margin-left: 91.66667%; - } - - .col-sm-offset-12 { - margin-left: 100%; - } -} -@media (min-width: 992px) { - .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 { - float: left; - } - - .col-md-1 { - width: 8.33333%; - } - - .col-md-2 { - width: 16.66667%; - } - - .col-md-3 { - width: 25%; - } - - .col-md-4 { - width: 33.33333%; - } - - .col-md-5 { - width: 41.66667%; - } - - .col-md-6 { - width: 50%; - } - - .col-md-7 { - width: 58.33333%; - } - - .col-md-8 { - width: 66.66667%; - } - - .col-md-9 { - width: 75%; - } - - .col-md-10 { - width: 83.33333%; - } - - .col-md-11 { - width: 91.66667%; - } - - .col-md-12 { - width: 100%; - } - - .col-md-pull-0 { - right: auto; - } - - .col-md-pull-1 { - right: 8.33333%; - } - - .col-md-pull-2 { - right: 16.66667%; - } - - .col-md-pull-3 { - right: 25%; - } - - .col-md-pull-4 { - right: 33.33333%; - } - - .col-md-pull-5 { - right: 41.66667%; - } - - .col-md-pull-6 { - right: 50%; - } - - .col-md-pull-7 { - right: 58.33333%; - } - - .col-md-pull-8 { - right: 66.66667%; - } - - .col-md-pull-9 { - right: 75%; - } - - .col-md-pull-10 { - right: 83.33333%; - } - - .col-md-pull-11 { - right: 91.66667%; - } - - .col-md-pull-12 { - right: 100%; - } - - .col-md-push-0 { - left: auto; - } - - .col-md-push-1 { - left: 8.33333%; - } - - .col-md-push-2 { - left: 16.66667%; - } - - .col-md-push-3 { - left: 25%; - } - - .col-md-push-4 { - left: 33.33333%; - } - - .col-md-push-5 { - left: 41.66667%; - } - - .col-md-push-6 { - left: 50%; - } - - .col-md-push-7 { - left: 58.33333%; - } - - .col-md-push-8 { - left: 66.66667%; - } - - .col-md-push-9 { - left: 75%; - } - - .col-md-push-10 { - left: 83.33333%; - } - - .col-md-push-11 { - left: 91.66667%; - } - - .col-md-push-12 { - left: 100%; - } - - .col-md-offset-0 { - margin-left: 0%; - } - - .col-md-offset-1 { - margin-left: 8.33333%; - } - - .col-md-offset-2 { - margin-left: 16.66667%; - } - - .col-md-offset-3 { - margin-left: 25%; - } - - .col-md-offset-4 { - margin-left: 33.33333%; - } - - .col-md-offset-5 { - margin-left: 41.66667%; - } - - .col-md-offset-6 { - margin-left: 50%; - } - - .col-md-offset-7 { - margin-left: 58.33333%; - } - - .col-md-offset-8 { - margin-left: 66.66667%; - } - - .col-md-offset-9 { - margin-left: 75%; - } - - .col-md-offset-10 { - margin-left: 83.33333%; - } - - .col-md-offset-11 { - margin-left: 91.66667%; - } - - .col-md-offset-12 { - margin-left: 100%; - } -} -@media (min-width: 1200px) { - .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 { - float: left; - } - - .col-lg-1 { - width: 8.33333%; - } - - .col-lg-2 { - width: 16.66667%; - } - - .col-lg-3 { - width: 25%; - } - - .col-lg-4 { - width: 33.33333%; - } - - .col-lg-5 { - width: 41.66667%; - } - - .col-lg-6 { - width: 50%; - } - - .col-lg-7 { - width: 58.33333%; - } - - .col-lg-8 { - width: 66.66667%; - } - - .col-lg-9 { - width: 75%; - } - - .col-lg-10 { - width: 83.33333%; - } - - .col-lg-11 { - width: 91.66667%; - } - - .col-lg-12 { - width: 100%; - } - - .col-lg-pull-0 { - right: auto; - } - - .col-lg-pull-1 { - right: 8.33333%; - } - - .col-lg-pull-2 { - right: 16.66667%; - } - - .col-lg-pull-3 { - right: 25%; - } - - .col-lg-pull-4 { - right: 33.33333%; - } - - .col-lg-pull-5 { - right: 41.66667%; - } - - .col-lg-pull-6 { - right: 50%; - } - - .col-lg-pull-7 { - right: 58.33333%; - } - - .col-lg-pull-8 { - right: 66.66667%; - } - - .col-lg-pull-9 { - right: 75%; - } - - .col-lg-pull-10 { - right: 83.33333%; - } - - .col-lg-pull-11 { - right: 91.66667%; - } - - .col-lg-pull-12 { - right: 100%; - } - - .col-lg-push-0 { - left: auto; - } - - .col-lg-push-1 { - left: 8.33333%; - } - - .col-lg-push-2 { - left: 16.66667%; - } - - .col-lg-push-3 { - left: 25%; - } - - .col-lg-push-4 { - left: 33.33333%; - } - - .col-lg-push-5 { - left: 41.66667%; - } - - .col-lg-push-6 { - left: 50%; - } - - .col-lg-push-7 { - left: 58.33333%; - } - - .col-lg-push-8 { - left: 66.66667%; - } - - .col-lg-push-9 { - left: 75%; - } - - .col-lg-push-10 { - left: 83.33333%; - } - - .col-lg-push-11 { - left: 91.66667%; - } - - .col-lg-push-12 { - left: 100%; - } - - .col-lg-offset-0 { - margin-left: 0%; - } - - .col-lg-offset-1 { - margin-left: 8.33333%; - } - - .col-lg-offset-2 { - margin-left: 16.66667%; - } - - .col-lg-offset-3 { - margin-left: 25%; - } - - .col-lg-offset-4 { - margin-left: 33.33333%; - } - - .col-lg-offset-5 { - margin-left: 41.66667%; - } - - .col-lg-offset-6 { - margin-left: 50%; - } - - .col-lg-offset-7 { - margin-left: 58.33333%; - } - - .col-lg-offset-8 { - margin-left: 66.66667%; - } - - .col-lg-offset-9 { - margin-left: 75%; - } - - .col-lg-offset-10 { - margin-left: 83.33333%; - } - - .col-lg-offset-11 { - margin-left: 91.66667%; - } - - .col-lg-offset-12 { - margin-left: 100%; - } -} -table { - background-color: transparent; -} - -caption { - padding-top: 8px; - padding-bottom: 8px; - color: #777777; - text-align: left; -} - -th { - text-align: left; -} - -.table { - width: 100%; - max-width: 100%; - margin-bottom: 20px; -} -.table > thead > tr > th, -.table > thead > tr > td, -.table > tbody > tr > th, -.table > tbody > tr > td, -.table > tfoot > tr > th, -.table > tfoot > tr > td { - padding: 8px; - line-height: 1.42857; - vertical-align: top; - border-top: 1px solid #ddd; -} -.table > thead > tr > th { - vertical-align: bottom; - border-bottom: 2px solid #ddd; -} -.table > caption + thead > tr:first-child > th, -.table > caption + thead > tr:first-child > td, -.table > colgroup + thead > tr:first-child > th, -.table > colgroup + thead > tr:first-child > td, -.table > thead:first-child > tr:first-child > th, -.table > thead:first-child > tr:first-child > td { - border-top: 0; -} -.table > tbody + tbody { - border-top: 2px solid #ddd; -} -.table .table { - background-color: #fff; -} - -.table-condensed > thead > tr > th, -.table-condensed > thead > tr > td, -.table-condensed > tbody > tr > th, -.table-condensed > tbody > tr > td, -.table-condensed > tfoot > tr > th, -.table-condensed > tfoot > tr > td { - padding: 5px; -} - -.table-bordered { - border: 1px solid #ddd; -} -.table-bordered > thead > tr > th, -.table-bordered > thead > tr > td, -.table-bordered > tbody > tr > th, -.table-bordered > tbody > tr > td, -.table-bordered > tfoot > tr > th, -.table-bordered > tfoot > tr > td { - border: 1px solid #ddd; -} -.table-bordered > thead > tr > th, -.table-bordered > thead > tr > td { - border-bottom-width: 2px; -} - -.table-striped > tbody > tr:nth-of-type(odd) { - background-color: #f9f9f9; -} - -.table-hover > tbody > tr:hover { - background-color: #f5f5f5; -} - -table col[class*="col-"] { - position: static; - float: none; - display: table-column; -} - -table td[class*="col-"], -table th[class*="col-"] { - position: static; - float: none; - display: table-cell; -} - -.table > thead > tr > td.active, -.table > thead > tr > th.active, .table > thead > tr.active > td, .table > thead > tr.active > th, -.table > tbody > tr > td.active, -.table > tbody > tr > th.active, -.table > tbody > tr.active > td, -.table > tbody > tr.active > th, -.table > tfoot > tr > td.active, -.table > tfoot > tr > th.active, -.table > tfoot > tr.active > td, -.table > tfoot > tr.active > th { - background-color: #f5f5f5; -} - -.table-hover > tbody > tr > td.active:hover, -.table-hover > tbody > tr > th.active:hover, .table-hover > tbody > tr.active:hover > td, .table-hover > tbody > tr:hover > .active, .table-hover > tbody > tr.active:hover > th { - background-color: #e8e8e8; -} - -.table > thead > tr > td.success, -.table > thead > tr > th.success, .table > thead > tr.success > td, .table > thead > tr.success > th, -.table > tbody > tr > td.success, -.table > tbody > tr > th.success, -.table > tbody > tr.success > td, -.table > tbody > tr.success > th, -.table > tfoot > tr > td.success, -.table > tfoot > tr > th.success, -.table > tfoot > tr.success > td, -.table > tfoot > tr.success > th { - background-color: #dff0d8; -} - -.table-hover > tbody > tr > td.success:hover, -.table-hover > tbody > tr > th.success:hover, .table-hover > tbody > tr.success:hover > td, .table-hover > tbody > tr:hover > .success, .table-hover > tbody > tr.success:hover > th { - background-color: #d0e9c6; -} - -.table > thead > tr > td.info, -.table > thead > tr > th.info, .table > thead > tr.info > td, .table > thead > tr.info > th, -.table > tbody > tr > td.info, -.table > tbody > tr > th.info, -.table > tbody > tr.info > td, -.table > tbody > tr.info > th, -.table > tfoot > tr > td.info, -.table > tfoot > tr > th.info, -.table > tfoot > tr.info > td, -.table > tfoot > tr.info > th { - background-color: #d9edf7; -} - -.table-hover > tbody > tr > td.info:hover, -.table-hover > tbody > tr > th.info:hover, .table-hover > tbody > tr.info:hover > td, .table-hover > tbody > tr:hover > .info, .table-hover > tbody > tr.info:hover > th { - background-color: #c4e3f3; -} - -.table > thead > tr > td.warning, -.table > thead > tr > th.warning, .table > thead > tr.warning > td, .table > thead > tr.warning > th, -.table > tbody > tr > td.warning, -.table > tbody > tr > th.warning, -.table > tbody > tr.warning > td, -.table > tbody > tr.warning > th, -.table > tfoot > tr > td.warning, -.table > tfoot > tr > th.warning, -.table > tfoot > tr.warning > td, -.table > tfoot > tr.warning > th { - background-color: #fcf8e3; -} - -.table-hover > tbody > tr > td.warning:hover, -.table-hover > tbody > tr > th.warning:hover, .table-hover > tbody > tr.warning:hover > td, .table-hover > tbody > tr:hover > .warning, .table-hover > tbody > tr.warning:hover > th { - background-color: #faf2cc; -} - -.table > thead > tr > td.danger, -.table > thead > tr > th.danger, .table > thead > tr.danger > td, .table > thead > tr.danger > th, -.table > tbody > tr > td.danger, -.table > tbody > tr > th.danger, -.table > tbody > tr.danger > td, -.table > tbody > tr.danger > th, -.table > tfoot > tr > td.danger, -.table > tfoot > tr > th.danger, -.table > tfoot > tr.danger > td, -.table > tfoot > tr.danger > th { - background-color: #f2dede; -} - -.table-hover > tbody > tr > td.danger:hover, -.table-hover > tbody > tr > th.danger:hover, .table-hover > tbody > tr.danger:hover > td, .table-hover > tbody > tr:hover > .danger, .table-hover > tbody > tr.danger:hover > th { - background-color: #ebcccc; -} - -.table-responsive { - overflow-x: auto; - min-height: 0.01%; -} -@media screen and (max-width: 767px) { - .table-responsive { - width: 100%; - margin-bottom: 15px; - overflow-y: hidden; - -ms-overflow-style: -ms-autohiding-scrollbar; - border: 1px solid #ddd; - } - .table-responsive > .table { - margin-bottom: 0; - } - .table-responsive > .table > thead > tr > th, - .table-responsive > .table > thead > tr > td, - .table-responsive > .table > tbody > tr > th, - .table-responsive > .table > tbody > tr > td, - .table-responsive > .table > tfoot > tr > th, - .table-responsive > .table > tfoot > tr > td { - white-space: nowrap; - } - .table-responsive > .table-bordered { - border: 0; - } - .table-responsive > .table-bordered > thead > tr > th:first-child, - .table-responsive > .table-bordered > thead > tr > td:first-child, - .table-responsive > .table-bordered > tbody > tr > th:first-child, - .table-responsive > .table-bordered > tbody > tr > td:first-child, - .table-responsive > .table-bordered > tfoot > tr > th:first-child, - .table-responsive > .table-bordered > tfoot > tr > td:first-child { - border-left: 0; - } - .table-responsive > .table-bordered > thead > tr > th:last-child, - .table-responsive > .table-bordered > thead > tr > td:last-child, - .table-responsive > .table-bordered > tbody > tr > th:last-child, - .table-responsive > .table-bordered > tbody > tr > td:last-child, - .table-responsive > .table-bordered > tfoot > tr > th:last-child, - .table-responsive > .table-bordered > tfoot > tr > td:last-child { - border-right: 0; - } - .table-responsive > .table-bordered > tbody > tr:last-child > th, - .table-responsive > .table-bordered > tbody > tr:last-child > td, - .table-responsive > .table-bordered > tfoot > tr:last-child > th, - .table-responsive > .table-bordered > tfoot > tr:last-child > td { - border-bottom: 0; - } -} - -fieldset { - padding: 0; - margin: 0; - border: 0; - min-width: 0; -} - -legend { - display: block; - width: 100%; - padding: 0; - margin-bottom: 20px; - font-size: 21px; - line-height: inherit; - color: #333333; - border: 0; - border-bottom: 1px solid #e5e5e5; -} - -label { - display: inline-block; - max-width: 100%; - margin-bottom: 5px; - font-weight: bold; -} - -input[type="search"] { - -webkit-box-sizing: border-box; - -moz-box-sizing: border-box; - box-sizing: border-box; -} - -input[type="radio"], -input[type="checkbox"] { - margin: 4px 0 0; - margin-top: 1px \9; - line-height: normal; -} - -input[type="file"] { - display: block; -} - -input[type="range"] { - display: block; - width: 100%; -} - -select[multiple], -select[size] { - height: auto; -} - -input[type="file"]:focus, -input[type="radio"]:focus, -input[type="checkbox"]:focus { - outline: thin dotted; - outline: 5px auto -webkit-focus-ring-color; - outline-offset: -2px; -} - -output { - display: block; - padding-top: 11px; - font-size: 14px; - line-height: 1.42857; - color: #555555; -} - -.form-control { - display: block; - width: 100%; - height: 42px; - padding: 10px 20px; - font-size: 14px; - line-height: 1.42857; - color: #555555; - background-color: #fff; - background-image: none; - border: 1px solid #ccc; - border-radius: 4px; - -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); - box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); - -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s; - -o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s; - transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s; -} -.form-control:focus { - border-color: #66afe9; - outline: 0; - -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6); - box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6); -} -.form-control::-moz-placeholder { - color: #999; - opacity: 1; -} -.form-control:-ms-input-placeholder { - color: #999; -} -.form-control::-webkit-input-placeholder { - color: #999; -} -.form-control[disabled], .form-control[readonly], fieldset[disabled] .form-control { - background-color: #eeeeee; - opacity: 1; -} -.form-control[disabled], fieldset[disabled] .form-control { - cursor: not-allowed; -} - -textarea.form-control { - height: auto; -} - -input[type="search"] { - -webkit-appearance: none; -} - -@media screen and (-webkit-min-device-pixel-ratio: 0) { - input[type="date"].form-control, - input[type="time"].form-control, - input[type="datetime-local"].form-control, - input[type="month"].form-control { - line-height: 42px; - } - input[type="date"].input-sm, .input-group-sm > input[type="date"].form-control, - .input-group-sm > input[type="date"].input-group-addon, - .input-group-sm > .input-group-btn > input[type="date"].btn, .input-group-sm input[type="date"], - input[type="time"].input-sm, - .input-group-sm > input[type="time"].form-control, - .input-group-sm > input[type="time"].input-group-addon, - .input-group-sm > .input-group-btn > input[type="time"].btn, .input-group-sm - input[type="time"], - input[type="datetime-local"].input-sm, - .input-group-sm > input[type="datetime-local"].form-control, - .input-group-sm > input[type="datetime-local"].input-group-addon, - .input-group-sm > .input-group-btn > input[type="datetime-local"].btn, .input-group-sm - input[type="datetime-local"], - input[type="month"].input-sm, - .input-group-sm > input[type="month"].form-control, - .input-group-sm > input[type="month"].input-group-addon, - .input-group-sm > .input-group-btn > input[type="month"].btn, .input-group-sm - input[type="month"] { - line-height: 30px; - } - input[type="date"].input-lg, .input-group-lg > input[type="date"].form-control, - .input-group-lg > input[type="date"].input-group-addon, - .input-group-lg > .input-group-btn > input[type="date"].btn, .input-group-lg input[type="date"], - input[type="time"].input-lg, - .input-group-lg > input[type="time"].form-control, - .input-group-lg > input[type="time"].input-group-addon, - .input-group-lg > .input-group-btn > input[type="time"].btn, .input-group-lg - input[type="time"], - input[type="datetime-local"].input-lg, - .input-group-lg > input[type="datetime-local"].form-control, - .input-group-lg > input[type="datetime-local"].input-group-addon, - .input-group-lg > .input-group-btn > input[type="datetime-local"].btn, .input-group-lg - input[type="datetime-local"], - input[type="month"].input-lg, - .input-group-lg > input[type="month"].form-control, - .input-group-lg > input[type="month"].input-group-addon, - .input-group-lg > .input-group-btn > input[type="month"].btn, .input-group-lg - input[type="month"] { - line-height: 46px; - } -} -.form-group { - margin-bottom: 15px; -} - -.radio, -.checkbox { - position: relative; - display: block; - margin-top: 10px; - margin-bottom: 10px; -} -.radio label, -.checkbox label { - min-height: 20px; - padding-left: 20px; - margin-bottom: 0; - font-weight: normal; - cursor: pointer; -} - -.radio input[type="radio"], -.radio-inline input[type="radio"], -.checkbox input[type="checkbox"], -.checkbox-inline input[type="checkbox"] { - position: absolute; - margin-left: -20px; - margin-top: 4px \9; -} - -.radio + .radio, -.checkbox + .checkbox { - margin-top: -5px; -} - -.radio-inline, -.checkbox-inline { - position: relative; - display: inline-block; - padding-left: 20px; - margin-bottom: 0; - vertical-align: middle; - font-weight: normal; - cursor: pointer; -} - -.radio-inline + .radio-inline, -.checkbox-inline + .checkbox-inline { - margin-top: 0; - margin-left: 10px; -} - -input[type="radio"][disabled], input[type="radio"].disabled, fieldset[disabled] input[type="radio"], -input[type="checkbox"][disabled], -input[type="checkbox"].disabled, fieldset[disabled] -input[type="checkbox"] { - cursor: not-allowed; -} - -.radio-inline.disabled, fieldset[disabled] .radio-inline, -.checkbox-inline.disabled, fieldset[disabled] -.checkbox-inline { - cursor: not-allowed; -} - -.radio.disabled label, fieldset[disabled] .radio label, -.checkbox.disabled label, fieldset[disabled] -.checkbox label { - cursor: not-allowed; -} - -.form-control-static { - padding-top: 11px; - padding-bottom: 11px; - margin-bottom: 0; - min-height: 34px; -} -.form-control-static.input-lg, .input-group-lg > .form-control-static.form-control, -.input-group-lg > .form-control-static.input-group-addon, -.input-group-lg > .input-group-btn > .form-control-static.btn, .form-control-static.input-sm, .input-group-sm > .form-control-static.form-control, -.input-group-sm > .form-control-static.input-group-addon, -.input-group-sm > .input-group-btn > .form-control-static.btn { - padding-left: 0; - padding-right: 0; -} - -.input-sm, .input-group-sm > .form-control, -.input-group-sm > .input-group-addon, -.input-group-sm > .input-group-btn > .btn { - height: 30px; - padding: 5px 20px; - font-size: 12px; - line-height: 1.5; - border-radius: 3px; -} - -select.input-sm, .input-group-sm > select.form-control, -.input-group-sm > select.input-group-addon, -.input-group-sm > .input-group-btn > select.btn { - height: 30px; - line-height: 30px; -} - -textarea.input-sm, .input-group-sm > textarea.form-control, -.input-group-sm > textarea.input-group-addon, -.input-group-sm > .input-group-btn > textarea.btn, -select[multiple].input-sm, -.input-group-sm > select[multiple].form-control, -.input-group-sm > select[multiple].input-group-addon, -.input-group-sm > .input-group-btn > select[multiple].btn { - height: auto; -} - -.form-group-sm .form-control { - height: 30px; - padding: 5px 20px; - font-size: 12px; - line-height: 1.5; - border-radius: 3px; -} -.form-group-sm select.form-control { - height: 30px; - line-height: 30px; -} -.form-group-sm textarea.form-control, -.form-group-sm select[multiple].form-control { - height: auto; -} -.form-group-sm .form-control-static { - height: 30px; - min-height: 32px; - padding: 6px 20px; - font-size: 12px; - line-height: 1.5; -} - -.input-lg, .input-group-lg > .form-control, -.input-group-lg > .input-group-addon, -.input-group-lg > .input-group-btn > .btn { - height: 46px; - padding: 10px 20px; - font-size: 18px; - line-height: 1.33333; - border-radius: 6px; -} - -select.input-lg, .input-group-lg > select.form-control, -.input-group-lg > select.input-group-addon, -.input-group-lg > .input-group-btn > select.btn { - height: 46px; - line-height: 46px; -} - -textarea.input-lg, .input-group-lg > textarea.form-control, -.input-group-lg > textarea.input-group-addon, -.input-group-lg > .input-group-btn > textarea.btn, -select[multiple].input-lg, -.input-group-lg > select[multiple].form-control, -.input-group-lg > select[multiple].input-group-addon, -.input-group-lg > .input-group-btn > select[multiple].btn { - height: auto; -} - -.form-group-lg .form-control { - height: 46px; - padding: 10px 20px; - font-size: 18px; - line-height: 1.33333; - border-radius: 6px; -} -.form-group-lg select.form-control { - height: 46px; - line-height: 46px; -} -.form-group-lg textarea.form-control, -.form-group-lg select[multiple].form-control { - height: auto; -} -.form-group-lg .form-control-static { - height: 46px; - min-height: 38px; - padding: 11px 20px; - font-size: 18px; - line-height: 1.33333; -} - -.has-feedback { - position: relative; -} -.has-feedback .form-control { - padding-right: 52.5px; -} - -.form-control-feedback { - position: absolute; - top: 0; - right: 0; - z-index: 2; - display: block; - width: 42px; - height: 42px; - line-height: 42px; - text-align: center; - pointer-events: none; -} - -.input-lg + .form-control-feedback, .input-group-lg > .form-control + .form-control-feedback, -.input-group-lg > .input-group-addon + .form-control-feedback, -.input-group-lg > .input-group-btn > .btn + .form-control-feedback, -.input-group-lg + .form-control-feedback, -.form-group-lg .form-control + .form-control-feedback { - width: 46px; - height: 46px; - line-height: 46px; -} - -.input-sm + .form-control-feedback, .input-group-sm > .form-control + .form-control-feedback, -.input-group-sm > .input-group-addon + .form-control-feedback, -.input-group-sm > .input-group-btn > .btn + .form-control-feedback, -.input-group-sm + .form-control-feedback, -.form-group-sm .form-control + .form-control-feedback { - width: 30px; - height: 30px; - line-height: 30px; -} - -.has-success .help-block, -.has-success .control-label, -.has-success .radio, -.has-success .checkbox, -.has-success .radio-inline, -.has-success .checkbox-inline, .has-success.radio label, .has-success.checkbox label, .has-success.radio-inline label, .has-success.checkbox-inline label { - color: #3c763d; -} -.has-success .form-control { - border-color: #3c763d; - -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); - box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); -} -.has-success .form-control:focus { - border-color: #2b542c; - -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168; - box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168; -} -.has-success .input-group-addon { - color: #3c763d; - border-color: #3c763d; - background-color: #dff0d8; -} -.has-success .form-control-feedback { - color: #3c763d; -} - -.has-warning .help-block, -.has-warning .control-label, -.has-warning .radio, -.has-warning .checkbox, -.has-warning .radio-inline, -.has-warning .checkbox-inline, .has-warning.radio label, .has-warning.checkbox label, .has-warning.radio-inline label, .has-warning.checkbox-inline label { - color: #8a6d3b; -} -.has-warning .form-control { - border-color: #8a6d3b; - -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); - box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); -} -.has-warning .form-control:focus { - border-color: #66512c; - -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b; - box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b; -} -.has-warning .input-group-addon { - color: #8a6d3b; - border-color: #8a6d3b; - background-color: #fcf8e3; -} -.has-warning .form-control-feedback { - color: #8a6d3b; -} - -.has-error .help-block, -.has-error .control-label, -.has-error .radio, -.has-error .checkbox, -.has-error .radio-inline, -.has-error .checkbox-inline, .has-error.radio label, .has-error.checkbox label, .has-error.radio-inline label, .has-error.checkbox-inline label { - color: #a94442; -} -.has-error .form-control { - border-color: #a94442; - -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); - box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); -} -.has-error .form-control:focus { - border-color: #843534; - -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483; - box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483; -} -.has-error .input-group-addon { - color: #a94442; - border-color: #a94442; - background-color: #f2dede; -} -.has-error .form-control-feedback { - color: #a94442; -} - -.has-feedback label ~ .form-control-feedback { - top: 25px; -} -.has-feedback label.sr-only ~ .form-control-feedback { - top: 0; -} - -.help-block { - display: block; - margin-top: 5px; - margin-bottom: 10px; - color: #737373; -} - -@media (min-width: 768px) { - .form-inline .form-group { - display: inline-block; - margin-bottom: 0; - vertical-align: middle; - } - .form-inline .form-control { - display: inline-block; - width: auto; - vertical-align: middle; - } - .form-inline .form-control-static { - display: inline-block; - } - .form-inline .input-group { - display: inline-table; - vertical-align: middle; - } - .form-inline .input-group .input-group-addon, - .form-inline .input-group .input-group-btn, - .form-inline .input-group .form-control { - width: auto; - } - .form-inline .input-group > .form-control { - width: 100%; - } - .form-inline .control-label { - margin-bottom: 0; - vertical-align: middle; - } - .form-inline .radio, - .form-inline .checkbox { - display: inline-block; - margin-top: 0; - margin-bottom: 0; - vertical-align: middle; - } - .form-inline .radio label, - .form-inline .checkbox label { - padding-left: 0; - } - .form-inline .radio input[type="radio"], - .form-inline .checkbox input[type="checkbox"] { - position: relative; - margin-left: 0; - } - .form-inline .has-feedback .form-control-feedback { - top: 0; - } -} - -.form-horizontal .radio, -.form-horizontal .checkbox, -.form-horizontal .radio-inline, -.form-horizontal .checkbox-inline { - margin-top: 0; - margin-bottom: 0; - padding-top: 11px; -} -.form-horizontal .radio, -.form-horizontal .checkbox { - min-height: 31px; -} -.form-horizontal .form-group { - margin-left: -15px; - margin-right: -15px; -} -.form-horizontal .form-group:before, .form-horizontal .form-group:after { - content: " "; - display: table; -} -.form-horizontal .form-group:after { - clear: both; -} -@media (min-width: 768px) { - .form-horizontal .control-label { - text-align: right; - margin-bottom: 0; - padding-top: 11px; - } -} -.form-horizontal .has-feedback .form-control-feedback { - right: 15px; -} -@media (min-width: 768px) { - .form-horizontal .form-group-lg .control-label { - padding-top: 14.33333px; - font-size: 18px; - } -} -@media (min-width: 768px) { - .form-horizontal .form-group-sm .control-label { - padding-top: 6px; - font-size: 12px; - } -} - -.btn { - display: inline-block; - margin-bottom: 0; - font-weight: normal; - text-align: center; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - background-image: none; - border: 1px solid transparent; - white-space: nowrap; - padding: 10px 20px; - font-size: 14px; - line-height: 1.42857; - border-radius: 4px; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; -} -.btn:focus, .btn.focus, .btn:active:focus, .btn:active.focus, .btn.active:focus, .btn.active.focus { - outline: thin dotted; - outline: 5px auto -webkit-focus-ring-color; - outline-offset: -2px; -} -.btn:hover, .btn:focus, .btn.focus { - color: #333; - text-decoration: none; -} -.btn:active, .btn.active { - outline: 0; - background-image: none; - -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); - box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); -} -.btn.disabled, .btn[disabled], fieldset[disabled] .btn { - cursor: not-allowed; - opacity: 0.65; - filter: alpha(opacity=65); - -webkit-box-shadow: none; - box-shadow: none; -} - -a.btn.disabled, fieldset[disabled] a.btn { - pointer-events: none; -} - -.btn-default { - color: #333; - background-color: #fff; - border-color: #ccc; -} -.btn-default:focus, .btn-default.focus { - color: #333; - background-color: #e6e6e6; - border-color: #8c8c8c; -} -.btn-default:hover { - color: #333; - background-color: #e6e6e6; - border-color: #adadad; -} -.btn-default:active, .btn-default.active, .open > .btn-default.dropdown-toggle { - color: #333; - background-color: #e6e6e6; - border-color: #adadad; -} -.btn-default:active:hover, .btn-default:active:focus, .btn-default:active.focus, .btn-default.active:hover, .btn-default.active:focus, .btn-default.active.focus, .open > .btn-default.dropdown-toggle:hover, .open > .btn-default.dropdown-toggle:focus, .open > .btn-default.dropdown-toggle.focus { - color: #333; - background-color: #d4d4d4; - border-color: #8c8c8c; -} -.btn-default:active, .btn-default.active, .open > .btn-default.dropdown-toggle { - background-image: none; -} -.btn-default.disabled, .btn-default.disabled:hover, .btn-default.disabled:focus, .btn-default.disabled.focus, .btn-default.disabled:active, .btn-default.disabled.active, .btn-default[disabled], .btn-default[disabled]:hover, .btn-default[disabled]:focus, .btn-default[disabled].focus, .btn-default[disabled]:active, .btn-default[disabled].active, fieldset[disabled] .btn-default, fieldset[disabled] .btn-default:hover, fieldset[disabled] .btn-default:focus, fieldset[disabled] .btn-default.focus, fieldset[disabled] .btn-default:active, fieldset[disabled] .btn-default.active { - background-color: #fff; - border-color: #ccc; -} -.btn-default .badge { - color: #fff; - background-color: #333; -} - -.btn-primary { - color: #fff; - background-color: #337ab7; - border-color: #2e6da4; -} -.btn-primary:focus, .btn-primary.focus { - color: #fff; - background-color: #286090; - border-color: #122b40; -} -.btn-primary:hover { - color: #fff; - background-color: #286090; - border-color: #204d74; -} -.btn-primary:active, .btn-primary.active, .open > .btn-primary.dropdown-toggle { - color: #fff; - background-color: #286090; - border-color: #204d74; -} -.btn-primary:active:hover, .btn-primary:active:focus, .btn-primary:active.focus, .btn-primary.active:hover, .btn-primary.active:focus, .btn-primary.active.focus, .open > .btn-primary.dropdown-toggle:hover, .open > .btn-primary.dropdown-toggle:focus, .open > .btn-primary.dropdown-toggle.focus { - color: #fff; - background-color: #204d74; - border-color: #122b40; -} -.btn-primary:active, .btn-primary.active, .open > .btn-primary.dropdown-toggle { - background-image: none; -} -.btn-primary.disabled, .btn-primary.disabled:hover, .btn-primary.disabled:focus, .btn-primary.disabled.focus, .btn-primary.disabled:active, .btn-primary.disabled.active, .btn-primary[disabled], .btn-primary[disabled]:hover, .btn-primary[disabled]:focus, .btn-primary[disabled].focus, .btn-primary[disabled]:active, .btn-primary[disabled].active, fieldset[disabled] .btn-primary, fieldset[disabled] .btn-primary:hover, fieldset[disabled] .btn-primary:focus, fieldset[disabled] .btn-primary.focus, fieldset[disabled] .btn-primary:active, fieldset[disabled] .btn-primary.active { - background-color: #337ab7; - border-color: #2e6da4; -} -.btn-primary .badge { - color: #337ab7; - background-color: #fff; -} - -.btn-success { - color: #fff; - background-color: #5cb85c; - border-color: #4cae4c; -} -.btn-success:focus, .btn-success.focus { - color: #fff; - background-color: #449d44; - border-color: #255625; -} -.btn-success:hover { - color: #fff; - background-color: #449d44; - border-color: #398439; -} -.btn-success:active, .btn-success.active, .open > .btn-success.dropdown-toggle { - color: #fff; - background-color: #449d44; - border-color: #398439; -} -.btn-success:active:hover, .btn-success:active:focus, .btn-success:active.focus, .btn-success.active:hover, .btn-success.active:focus, .btn-success.active.focus, .open > .btn-success.dropdown-toggle:hover, .open > .btn-success.dropdown-toggle:focus, .open > .btn-success.dropdown-toggle.focus { - color: #fff; - background-color: #398439; - border-color: #255625; -} -.btn-success:active, .btn-success.active, .open > .btn-success.dropdown-toggle { - background-image: none; -} -.btn-success.disabled, .btn-success.disabled:hover, .btn-success.disabled:focus, .btn-success.disabled.focus, .btn-success.disabled:active, .btn-success.disabled.active, .btn-success[disabled], .btn-success[disabled]:hover, .btn-success[disabled]:focus, .btn-success[disabled].focus, .btn-success[disabled]:active, .btn-success[disabled].active, fieldset[disabled] .btn-success, fieldset[disabled] .btn-success:hover, fieldset[disabled] .btn-success:focus, fieldset[disabled] .btn-success.focus, fieldset[disabled] .btn-success:active, fieldset[disabled] .btn-success.active { - background-color: #5cb85c; - border-color: #4cae4c; -} -.btn-success .badge { - color: #5cb85c; - background-color: #fff; -} - -.btn-info { - color: #fff; - background-color: #5bc0de; - border-color: #46b8da; -} -.btn-info:focus, .btn-info.focus { - color: #fff; - background-color: #31b0d5; - border-color: #1b6d85; -} -.btn-info:hover { - color: #fff; - background-color: #31b0d5; - border-color: #269abc; -} -.btn-info:active, .btn-info.active, .open > .btn-info.dropdown-toggle { - color: #fff; - background-color: #31b0d5; - border-color: #269abc; -} -.btn-info:active:hover, .btn-info:active:focus, .btn-info:active.focus, .btn-info.active:hover, .btn-info.active:focus, .btn-info.active.focus, .open > .btn-info.dropdown-toggle:hover, .open > .btn-info.dropdown-toggle:focus, .open > .btn-info.dropdown-toggle.focus { - color: #fff; - background-color: #269abc; - border-color: #1b6d85; -} -.btn-info:active, .btn-info.active, .open > .btn-info.dropdown-toggle { - background-image: none; -} -.btn-info.disabled, .btn-info.disabled:hover, .btn-info.disabled:focus, .btn-info.disabled.focus, .btn-info.disabled:active, .btn-info.disabled.active, .btn-info[disabled], .btn-info[disabled]:hover, .btn-info[disabled]:focus, .btn-info[disabled].focus, .btn-info[disabled]:active, .btn-info[disabled].active, fieldset[disabled] .btn-info, fieldset[disabled] .btn-info:hover, fieldset[disabled] .btn-info:focus, fieldset[disabled] .btn-info.focus, fieldset[disabled] .btn-info:active, fieldset[disabled] .btn-info.active { - background-color: #5bc0de; - border-color: #46b8da; -} -.btn-info .badge { - color: #5bc0de; - background-color: #fff; -} - -.btn-warning { - color: #fff; - background-color: #f0ad4e; - border-color: #eea236; -} -.btn-warning:focus, .btn-warning.focus { - color: #fff; - background-color: #ec971f; - border-color: #985f0d; -} -.btn-warning:hover { - color: #fff; - background-color: #ec971f; - border-color: #d58512; -} -.btn-warning:active, .btn-warning.active, .open > .btn-warning.dropdown-toggle { - color: #fff; - background-color: #ec971f; - border-color: #d58512; -} -.btn-warning:active:hover, .btn-warning:active:focus, .btn-warning:active.focus, .btn-warning.active:hover, .btn-warning.active:focus, .btn-warning.active.focus, .open > .btn-warning.dropdown-toggle:hover, .open > .btn-warning.dropdown-toggle:focus, .open > .btn-warning.dropdown-toggle.focus { - color: #fff; - background-color: #d58512; - border-color: #985f0d; -} -.btn-warning:active, .btn-warning.active, .open > .btn-warning.dropdown-toggle { - background-image: none; -} -.btn-warning.disabled, .btn-warning.disabled:hover, .btn-warning.disabled:focus, .btn-warning.disabled.focus, .btn-warning.disabled:active, .btn-warning.disabled.active, .btn-warning[disabled], .btn-warning[disabled]:hover, .btn-warning[disabled]:focus, .btn-warning[disabled].focus, .btn-warning[disabled]:active, .btn-warning[disabled].active, fieldset[disabled] .btn-warning, fieldset[disabled] .btn-warning:hover, fieldset[disabled] .btn-warning:focus, fieldset[disabled] .btn-warning.focus, fieldset[disabled] .btn-warning:active, fieldset[disabled] .btn-warning.active { - background-color: #f0ad4e; - border-color: #eea236; -} -.btn-warning .badge { - color: #f0ad4e; - background-color: #fff; -} - -.btn-danger { - color: #fff; - background-color: #d9534f; - border-color: #d43f3a; -} -.btn-danger:focus, .btn-danger.focus { - color: #fff; - background-color: #c9302c; - border-color: #761c19; -} -.btn-danger:hover { - color: #fff; - background-color: #c9302c; - border-color: #ac2925; -} -.btn-danger:active, .btn-danger.active, .open > .btn-danger.dropdown-toggle { - color: #fff; - background-color: #c9302c; - border-color: #ac2925; -} -.btn-danger:active:hover, .btn-danger:active:focus, .btn-danger:active.focus, .btn-danger.active:hover, .btn-danger.active:focus, .btn-danger.active.focus, .open > .btn-danger.dropdown-toggle:hover, .open > .btn-danger.dropdown-toggle:focus, .open > .btn-danger.dropdown-toggle.focus { - color: #fff; - background-color: #ac2925; - border-color: #761c19; -} -.btn-danger:active, .btn-danger.active, .open > .btn-danger.dropdown-toggle { - background-image: none; -} -.btn-danger.disabled, .btn-danger.disabled:hover, .btn-danger.disabled:focus, .btn-danger.disabled.focus, .btn-danger.disabled:active, .btn-danger.disabled.active, .btn-danger[disabled], .btn-danger[disabled]:hover, .btn-danger[disabled]:focus, .btn-danger[disabled].focus, .btn-danger[disabled]:active, .btn-danger[disabled].active, fieldset[disabled] .btn-danger, fieldset[disabled] .btn-danger:hover, fieldset[disabled] .btn-danger:focus, fieldset[disabled] .btn-danger.focus, fieldset[disabled] .btn-danger:active, fieldset[disabled] .btn-danger.active { - background-color: #d9534f; - border-color: #d43f3a; -} -.btn-danger .badge { - color: #d9534f; - background-color: #fff; -} - -.btn-link { - color: #337ab7; - font-weight: normal; - border-radius: 0; -} -.btn-link, .btn-link:active, .btn-link.active, .btn-link[disabled], fieldset[disabled] .btn-link { - background-color: transparent; - -webkit-box-shadow: none; - box-shadow: none; -} -.btn-link, .btn-link:hover, .btn-link:focus, .btn-link:active { - border-color: transparent; -} -.btn-link:hover, .btn-link:focus { - color: #23527c; - text-decoration: underline; - background-color: transparent; -} -.btn-link[disabled]:hover, .btn-link[disabled]:focus, fieldset[disabled] .btn-link:hover, fieldset[disabled] .btn-link:focus { - color: #777777; - text-decoration: none; -} - -.btn-lg, .btn-group-lg > .btn { - padding: 10px 20px; - font-size: 18px; - line-height: 1.33333; - border-radius: 6px; -} - -.btn-sm, .btn-group-sm > .btn { - padding: 5px 20px; - font-size: 12px; - line-height: 1.5; - border-radius: 3px; -} - -.btn-xs, .btn-group-xs > .btn { - padding: 1px 5px; - font-size: 12px; - line-height: 1.5; - border-radius: 3px; -} - -.btn-block { - display: block; - width: 100%; -} - -.btn-block + .btn-block { - margin-top: 5px; -} - -input[type="submit"].btn-block, -input[type="reset"].btn-block, -input[type="button"].btn-block { - width: 100%; -} - -.fade { - opacity: 0; - -webkit-transition: opacity 0.15s linear; - -o-transition: opacity 0.15s linear; - transition: opacity 0.15s linear; -} -.fade.in { - opacity: 1; -} - -.collapse { - display: none; -} -.collapse.in { - display: block; -} - -tr.collapse.in { - display: table-row; -} - -tbody.collapse.in { - display: table-row-group; -} - -.collapsing { - position: relative; - height: 0; - overflow: hidden; - -webkit-transition-property: height, visibility; - transition-property: height, visibility; - -webkit-transition-duration: 0.35s; - transition-duration: 0.35s; - -webkit-transition-timing-function: ease; - transition-timing-function: ease; -} - -.caret { - display: inline-block; - width: 0; - height: 0; - margin-left: 2px; - vertical-align: middle; - border-top: 4px dashed; - border-top: 4px solid \9; - border-right: 4px solid transparent; - border-left: 4px solid transparent; -} - -.dropup, -.dropdown { - position: relative; -} - -.dropdown-toggle:focus { - outline: 0; -} - -.dropdown-menu { - position: absolute; - top: 100%; - left: 0; - z-index: 1000; - display: none; - float: left; - min-width: 160px; - padding: 5px 0; - margin: 2px 0 0; - list-style: none; - font-size: 14px; - text-align: left; - background-color: #fff; - border: 1px solid #ccc; - border: 1px solid rgba(0, 0, 0, 0.15); - border-radius: 4px; - -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175); - box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175); - background-clip: padding-box; -} -.dropdown-menu.pull-right { - right: 0; - left: auto; -} -.dropdown-menu .divider { - height: 1px; - margin: 9px 0; - overflow: hidden; - background-color: #e5e5e5; -} -.dropdown-menu > li > a { - display: block; - padding: 3px 20px; - clear: both; - font-weight: normal; - line-height: 1.42857; - color: #333333; - white-space: nowrap; -} - -.dropdown-menu > li > a:hover, .dropdown-menu > li > a:focus { - text-decoration: none; - color: #262626; - background-color: #f5f5f5; -} - -.dropdown-menu > .active > a, .dropdown-menu > .active > a:hover, .dropdown-menu > .active > a:focus { - color: #fff; - text-decoration: none; - outline: 0; - background-color: #337ab7; -} - -.dropdown-menu > .disabled > a, .dropdown-menu > .disabled > a:hover, .dropdown-menu > .disabled > a:focus { - color: #777777; -} -.dropdown-menu > .disabled > a:hover, .dropdown-menu > .disabled > a:focus { - text-decoration: none; - background-color: transparent; - background-image: none; - filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); - cursor: not-allowed; -} - -.open > .dropdown-menu { - display: block; -} -.open > a { - outline: 0; -} - -.dropdown-menu-right { - left: auto; - right: 0; -} - -.dropdown-menu-left { - left: 0; - right: auto; -} - -.dropdown-header { - display: block; - padding: 3px 20px; - font-size: 12px; - line-height: 1.42857; - color: #777777; - white-space: nowrap; -} - -.dropdown-backdrop { - position: fixed; - left: 0; - right: 0; - bottom: 0; - top: 0; - z-index: 990; -} - -.pull-right > .dropdown-menu { - right: 0; - left: auto; -} - -.dropup .caret, -.navbar-fixed-bottom .dropdown .caret { - border-top: 0; - border-bottom: 4px dashed; - border-bottom: 4px solid \9; - content: ""; -} -.dropup .dropdown-menu, -.navbar-fixed-bottom .dropdown .dropdown-menu { - top: auto; - bottom: 100%; - margin-bottom: 2px; -} - -@media (min-width: 768px) { - .navbar-right .dropdown-menu { - right: 0; - left: auto; - } - .navbar-right .dropdown-menu-left { - left: 0; - right: auto; - } -} -.btn-group, -.btn-group-vertical { - position: relative; - display: inline-block; - vertical-align: middle; -} -.btn-group > .btn, -.btn-group-vertical > .btn { - position: relative; - float: left; -} -.btn-group > .btn:hover, .btn-group > .btn:focus, .btn-group > .btn:active, .btn-group > .btn.active, -.btn-group-vertical > .btn:hover, -.btn-group-vertical > .btn:focus, -.btn-group-vertical > .btn:active, -.btn-group-vertical > .btn.active { - z-index: 2; -} - -.btn-group .btn + .btn, -.btn-group .btn + .btn-group, -.btn-group .btn-group + .btn, -.btn-group .btn-group + .btn-group { - margin-left: -1px; -} - -.btn-toolbar { - margin-left: -5px; -} -.btn-toolbar:before, .btn-toolbar:after { - content: " "; - display: table; -} -.btn-toolbar:after { - clear: both; -} -.btn-toolbar .btn, -.btn-toolbar .btn-group, -.btn-toolbar .input-group { - float: left; -} -.btn-toolbar > .btn, -.btn-toolbar > .btn-group, -.btn-toolbar > .input-group { - margin-left: 5px; -} - -.btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) { - border-radius: 0; -} - -.btn-group > .btn:first-child { - margin-left: 0; -} -.btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) { - border-bottom-right-radius: 0; - border-top-right-radius: 0; -} - -.btn-group > .btn:last-child:not(:first-child), -.btn-group > .dropdown-toggle:not(:first-child) { - border-bottom-left-radius: 0; - border-top-left-radius: 0; -} - -.btn-group > .btn-group { - float: left; -} - -.btn-group > .btn-group:not(:first-child):not(:last-child) > .btn { - border-radius: 0; -} - -.btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child, -.btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle { - border-bottom-right-radius: 0; - border-top-right-radius: 0; -} - -.btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child { - border-bottom-left-radius: 0; - border-top-left-radius: 0; -} - -.btn-group .dropdown-toggle:active, -.btn-group.open .dropdown-toggle { - outline: 0; -} - -.btn-group > .btn + .dropdown-toggle { - padding-left: 8px; - padding-right: 8px; -} - -.btn-group > .btn-lg + .dropdown-toggle, .btn-group-lg.btn-group > .btn + .dropdown-toggle { - padding-left: 12px; - padding-right: 12px; -} - -.btn-group.open .dropdown-toggle { - -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); - box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); -} -.btn-group.open .dropdown-toggle.btn-link { - -webkit-box-shadow: none; - box-shadow: none; -} - -.btn .caret { - margin-left: 0; -} - -.btn-lg .caret, .btn-group-lg > .btn .caret { - border-width: 5px 5px 0; - border-bottom-width: 0; -} - -.dropup .btn-lg .caret, .dropup .btn-group-lg > .btn .caret { - border-width: 0 5px 5px; -} - -.btn-group-vertical > .btn, -.btn-group-vertical > .btn-group, -.btn-group-vertical > .btn-group > .btn { - display: block; - float: none; - width: 100%; - max-width: 100%; -} -.btn-group-vertical > .btn-group:before, .btn-group-vertical > .btn-group:after { - content: " "; - display: table; -} -.btn-group-vertical > .btn-group:after { - clear: both; -} -.btn-group-vertical > .btn-group > .btn { - float: none; -} -.btn-group-vertical > .btn + .btn, -.btn-group-vertical > .btn + .btn-group, -.btn-group-vertical > .btn-group + .btn, -.btn-group-vertical > .btn-group + .btn-group { - margin-top: -1px; - margin-left: 0; -} - -.btn-group-vertical > .btn:not(:first-child):not(:last-child) { - border-radius: 0; -} -.btn-group-vertical > .btn:first-child:not(:last-child) { - border-top-right-radius: 4px; - border-bottom-right-radius: 0; - border-bottom-left-radius: 0; -} -.btn-group-vertical > .btn:last-child:not(:first-child) { - border-bottom-left-radius: 4px; - border-top-right-radius: 0; - border-top-left-radius: 0; -} - -.btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn { - border-radius: 0; -} - -.btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child, -.btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle { - border-bottom-right-radius: 0; - border-bottom-left-radius: 0; -} - -.btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child { - border-top-right-radius: 0; - border-top-left-radius: 0; -} - -.btn-group-justified { - display: table; - width: 100%; - table-layout: fixed; - border-collapse: separate; -} -.btn-group-justified > .btn, -.btn-group-justified > .btn-group { - float: none; - display: table-cell; - width: 1%; -} -.btn-group-justified > .btn-group .btn { - width: 100%; -} -.btn-group-justified > .btn-group .dropdown-menu { - left: auto; -} - -[data-toggle="buttons"] > .btn input[type="radio"], -[data-toggle="buttons"] > .btn input[type="checkbox"], -[data-toggle="buttons"] > .btn-group > .btn input[type="radio"], -[data-toggle="buttons"] > .btn-group > .btn input[type="checkbox"] { - position: absolute; - clip: rect(0, 0, 0, 0); - pointer-events: none; -} - -.input-group { - position: relative; - display: table; - border-collapse: separate; -} -.input-group[class*="col-"] { - float: none; - padding-left: 0; - padding-right: 0; -} -.input-group .form-control { - position: relative; - z-index: 2; - float: left; - width: 100%; - margin-bottom: 0; -} - -.input-group-addon, -.input-group-btn, -.input-group .form-control { - display: table-cell; -} -.input-group-addon:not(:first-child):not(:last-child), -.input-group-btn:not(:first-child):not(:last-child), -.input-group .form-control:not(:first-child):not(:last-child) { - border-radius: 0; -} - -.input-group-addon, -.input-group-btn { - width: 1%; - white-space: nowrap; - vertical-align: middle; -} - -.input-group-addon { - padding: 10px 20px; - font-size: 14px; - font-weight: normal; - line-height: 1; - color: #555555; - text-align: center; - background-color: #eeeeee; - border: 1px solid #ccc; - border-radius: 4px; -} -.input-group-addon.input-sm, -.input-group-sm > .input-group-addon, -.input-group-sm > .input-group-btn > .input-group-addon.btn { - padding: 5px 20px; - font-size: 12px; - border-radius: 3px; -} -.input-group-addon.input-lg, -.input-group-lg > .input-group-addon, -.input-group-lg > .input-group-btn > .input-group-addon.btn { - padding: 10px 20px; - font-size: 18px; - border-radius: 6px; -} -.input-group-addon input[type="radio"], -.input-group-addon input[type="checkbox"] { - margin-top: 0; -} - -.input-group .form-control:first-child, -.input-group-addon:first-child, -.input-group-btn:first-child > .btn, -.input-group-btn:first-child > .btn-group > .btn, -.input-group-btn:first-child > .dropdown-toggle, -.input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle), -.input-group-btn:last-child > .btn-group:not(:last-child) > .btn { - border-bottom-right-radius: 0; - border-top-right-radius: 0; -} - -.input-group-addon:first-child { - border-right: 0; -} - -.input-group .form-control:last-child, -.input-group-addon:last-child, -.input-group-btn:last-child > .btn, -.input-group-btn:last-child > .btn-group > .btn, -.input-group-btn:last-child > .dropdown-toggle, -.input-group-btn:first-child > .btn:not(:first-child), -.input-group-btn:first-child > .btn-group:not(:first-child) > .btn { - border-bottom-left-radius: 0; - border-top-left-radius: 0; -} - -.input-group-addon:last-child { - border-left: 0; -} - -.input-group-btn { - position: relative; - font-size: 0; - white-space: nowrap; -} -.input-group-btn > .btn { - position: relative; -} -.input-group-btn > .btn + .btn { - margin-left: -1px; -} -.input-group-btn > .btn:hover, .input-group-btn > .btn:focus, .input-group-btn > .btn:active { - z-index: 2; -} -.input-group-btn:first-child > .btn, -.input-group-btn:first-child > .btn-group { - margin-right: -1px; -} -.input-group-btn:last-child > .btn, -.input-group-btn:last-child > .btn-group { - z-index: 2; - margin-left: -1px; -} - -.nav { - margin-bottom: 0; - padding-left: 0; - list-style: none; -} -.nav:before, .nav:after { - content: " "; - display: table; -} -.nav:after { - clear: both; -} -.nav > li { - position: relative; - display: block; -} -.nav > li > a { - position: relative; - display: block; - padding: 10px 15px; -} -.nav > li > a:hover, .nav > li > a:focus { - text-decoration: none; - background-color: #eeeeee; -} -.nav > li.disabled > a { - color: #777777; -} -.nav > li.disabled > a:hover, .nav > li.disabled > a:focus { - color: #777777; - text-decoration: none; - background-color: transparent; - cursor: not-allowed; -} -.nav .open > a, .nav .open > a:hover, .nav .open > a:focus { - background-color: #eeeeee; - border-color: #337ab7; -} -.nav .nav-divider { - height: 1px; - margin: 9px 0; - overflow: hidden; - background-color: #e5e5e5; -} -.nav > li > a > img { - max-width: none; -} - -.nav-tabs { - border-bottom: 1px solid #ddd; -} -.nav-tabs > li { - float: left; - margin-bottom: -1px; -} -.nav-tabs > li > a { - margin-right: 2px; - line-height: 1.42857; - border: 1px solid transparent; - border-radius: 4px 4px 0 0; -} -.nav-tabs > li > a:hover { - border-color: #eeeeee #eeeeee #ddd; -} -.nav-tabs > li.active > a, .nav-tabs > li.active > a:hover, .nav-tabs > li.active > a:focus { - color: #555555; - background-color: #fff; - border: 1px solid #ddd; - border-bottom-color: transparent; - cursor: default; -} - -.nav-pills > li { - float: left; -} -.nav-pills > li > a { - border-radius: 4px; -} -.nav-pills > li + li { - margin-left: 2px; -} -.nav-pills > li.active > a, .nav-pills > li.active > a:hover, .nav-pills > li.active > a:focus { - color: #fff; - background-color: #337ab7; -} - -.nav-stacked > li { - float: none; -} -.nav-stacked > li + li { - margin-top: 2px; - margin-left: 0; -} - -.nav-justified, .nav-tabs.nav-justified { - width: 100%; -} -.nav-justified > li, .nav-tabs.nav-justified > li { - float: none; -} -.nav-justified > li > a, .nav-tabs.nav-justified > li > a { - text-align: center; - margin-bottom: 5px; -} -.nav-justified > .dropdown .dropdown-menu { - top: auto; - left: auto; -} -@media (min-width: 768px) { - .nav-justified > li, .nav-tabs.nav-justified > li { - display: table-cell; - width: 1%; - } - .nav-justified > li > a, .nav-tabs.nav-justified > li > a { - margin-bottom: 0; - } -} - -.nav-tabs-justified, .nav-tabs.nav-justified { - border-bottom: 0; -} -.nav-tabs-justified > li > a, .nav-tabs.nav-justified > li > a { - margin-right: 0; - border-radius: 4px; -} -.nav-tabs-justified > .active > a, .nav-tabs.nav-justified > .active > a, -.nav-tabs-justified > .active > a:hover, -.nav-tabs.nav-justified > .active > a:hover, -.nav-tabs-justified > .active > a:focus, -.nav-tabs.nav-justified > .active > a:focus { - border: 1px solid #ddd; -} -@media (min-width: 768px) { - .nav-tabs-justified > li > a, .nav-tabs.nav-justified > li > a { - border-bottom: 1px solid #ddd; - border-radius: 4px 4px 0 0; - } - .nav-tabs-justified > .active > a, .nav-tabs.nav-justified > .active > a, - .nav-tabs-justified > .active > a:hover, - .nav-tabs.nav-justified > .active > a:hover, - .nav-tabs-justified > .active > a:focus, - .nav-tabs.nav-justified > .active > a:focus { - border-bottom-color: #fff; - } -} - -.tab-content > .tab-pane { - display: none; -} -.tab-content > .active { - display: block; -} - -.nav-tabs .dropdown-menu { - margin-top: -1px; - border-top-right-radius: 0; - border-top-left-radius: 0; -} - -.navbar { - position: relative; - min-height: 55px; - margin-bottom: 20px; - border: 1px solid transparent; -} -.navbar:before, .navbar:after { - content: " "; - display: table; -} -.navbar:after { - clear: both; -} -@media (min-width: 768px) { - .navbar { - border-radius: 4px; - } -} - -.navbar-header:before, .navbar-header:after { - content: " "; - display: table; -} -.navbar-header:after { - clear: both; -} -@media (min-width: 768px) { - .navbar-header { - float: left; - } -} - -.navbar-collapse { - overflow-x: visible; - padding-right: 15px; - padding-left: 15px; - border-top: 1px solid transparent; - box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1); - -webkit-overflow-scrolling: touch; -} -.navbar-collapse:before, .navbar-collapse:after { - content: " "; - display: table; -} -.navbar-collapse:after { - clear: both; -} -.navbar-collapse.in { - overflow-y: auto; -} -@media (min-width: 768px) { - .navbar-collapse { - width: auto; - border-top: 0; - box-shadow: none; - } - .navbar-collapse.collapse { - display: block !important; - height: auto !important; - padding-bottom: 0; - overflow: visible !important; - } - .navbar-collapse.in { - overflow-y: visible; - } - .navbar-fixed-top .navbar-collapse, .navbar-static-top .navbar-collapse, .navbar-fixed-bottom .navbar-collapse { - padding-left: 0; - padding-right: 0; - } -} - -.navbar-fixed-top .navbar-collapse, -.navbar-fixed-bottom .navbar-collapse { - max-height: 340px; -} -@media (max-device-width: 480px) and (orientation: landscape) { - .navbar-fixed-top .navbar-collapse, - .navbar-fixed-bottom .navbar-collapse { - max-height: 200px; - } -} - -.container > .navbar-header, -.container > .navbar-collapse, -.container-fluid > .navbar-header, -.container-fluid > .navbar-collapse { - margin-right: -15px; - margin-left: -15px; -} -@media (min-width: 768px) { - .container > .navbar-header, - .container > .navbar-collapse, - .container-fluid > .navbar-header, - .container-fluid > .navbar-collapse { - margin-right: 0; - margin-left: 0; - } -} - -.navbar-static-top { - z-index: 1000; - border-width: 0 0 1px; -} -@media (min-width: 768px) { - .navbar-static-top { - border-radius: 0; - } -} - -.navbar-fixed-top, -.navbar-fixed-bottom { - position: fixed; - right: 0; - left: 0; - z-index: 1030; -} -@media (min-width: 768px) { - .navbar-fixed-top, - .navbar-fixed-bottom { - border-radius: 0; - } -} - -.navbar-fixed-top { - top: 0; - border-width: 0 0 1px; -} - -.navbar-fixed-bottom { - bottom: 0; - margin-bottom: 0; - border-width: 1px 0 0; -} - -.navbar-brand { - float: left; - padding: 17.5px 15px; - font-size: 18px; - line-height: 20px; - height: 55px; -} -.navbar-brand:hover, .navbar-brand:focus { - text-decoration: none; -} -.navbar-brand > img { - display: block; -} -@media (min-width: 768px) { - .navbar > .container .navbar-brand, .navbar > .container-fluid .navbar-brand { - margin-left: -15px; - } -} - -.navbar-toggle { - position: relative; - float: right; - margin-right: 15px; - padding: 9px 10px; - margin-top: 10.5px; - margin-bottom: 10.5px; - background-color: transparent; - background-image: none; - border: 1px solid transparent; - border-radius: 4px; -} -.navbar-toggle:focus { - outline: 0; -} -.navbar-toggle .icon-bar { - display: block; - width: 22px; - height: 2px; - border-radius: 1px; -} -.navbar-toggle .icon-bar + .icon-bar { - margin-top: 4px; -} -@media (min-width: 768px) { - .navbar-toggle { - display: none; - } -} - -.navbar-nav { - margin: 8.75px -15px; -} -.navbar-nav > li > a { - padding-top: 10px; - padding-bottom: 10px; - line-height: 20px; -} -@media (max-width: 767px) { - .navbar-nav .open .dropdown-menu { - position: static; - float: none; - width: auto; - margin-top: 0; - background-color: transparent; - border: 0; - box-shadow: none; - } - .navbar-nav .open .dropdown-menu > li > a, - .navbar-nav .open .dropdown-menu .dropdown-header { - padding: 5px 15px 5px 25px; - } - .navbar-nav .open .dropdown-menu > li > a { - line-height: 20px; - } - .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-nav .open .dropdown-menu > li > a:focus { - background-image: none; - } -} -@media (min-width: 768px) { - .navbar-nav { - float: left; - margin: 0; - } - .navbar-nav > li { - float: left; - } - .navbar-nav > li > a { - padding-top: 17.5px; - padding-bottom: 17.5px; - } -} - -.navbar-form { - margin-left: -15px; - margin-right: -15px; - padding: 10px 15px; - border-top: 1px solid transparent; - border-bottom: 1px solid transparent; - -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1); - box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1); - margin-top: 6.5px; - margin-bottom: 6.5px; -} -@media (min-width: 768px) { - .navbar-form .form-group { - display: inline-block; - margin-bottom: 0; - vertical-align: middle; - } - .navbar-form .form-control { - display: inline-block; - width: auto; - vertical-align: middle; - } - .navbar-form .form-control-static { - display: inline-block; - } - .navbar-form .input-group { - display: inline-table; - vertical-align: middle; - } - .navbar-form .input-group .input-group-addon, - .navbar-form .input-group .input-group-btn, - .navbar-form .input-group .form-control { - width: auto; - } - .navbar-form .input-group > .form-control { - width: 100%; - } - .navbar-form .control-label { - margin-bottom: 0; - vertical-align: middle; - } - .navbar-form .radio, - .navbar-form .checkbox { - display: inline-block; - margin-top: 0; - margin-bottom: 0; - vertical-align: middle; - } - .navbar-form .radio label, - .navbar-form .checkbox label { - padding-left: 0; - } - .navbar-form .radio input[type="radio"], - .navbar-form .checkbox input[type="checkbox"] { - position: relative; - margin-left: 0; - } - .navbar-form .has-feedback .form-control-feedback { - top: 0; - } -} -@media (max-width: 767px) { - .navbar-form .form-group { - margin-bottom: 5px; - } - .navbar-form .form-group:last-child { - margin-bottom: 0; - } -} -@media (min-width: 768px) { - .navbar-form { - width: auto; - border: 0; - margin-left: 0; - margin-right: 0; - padding-top: 0; - padding-bottom: 0; - -webkit-box-shadow: none; - box-shadow: none; - } -} - -.navbar-nav > li > .dropdown-menu { - margin-top: 0; - border-top-right-radius: 0; - border-top-left-radius: 0; -} - -.navbar-fixed-bottom .navbar-nav > li > .dropdown-menu { - margin-bottom: 0; - border-top-right-radius: 4px; - border-top-left-radius: 4px; - border-bottom-right-radius: 0; - border-bottom-left-radius: 0; -} - -.navbar-btn { - margin-top: 6.5px; - margin-bottom: 6.5px; -} -.navbar-btn.btn-sm, .btn-group-sm > .navbar-btn.btn { - margin-top: 12.5px; - margin-bottom: 12.5px; -} -.navbar-btn.btn-xs, .btn-group-xs > .navbar-btn.btn { - margin-top: 16.5px; - margin-bottom: 16.5px; -} - -.navbar-text { - margin-top: 17.5px; - margin-bottom: 17.5px; -} -@media (min-width: 768px) { - .navbar-text { - float: left; - margin-left: 15px; - margin-right: 15px; - } -} - -@media (min-width: 768px) { - .navbar-left { - float: left !important; - } - - .navbar-right { - float: right !important; - margin-right: -15px; - } - .navbar-right ~ .navbar-right { - margin-right: 0; - } -} -.navbar-default { - background-color: #f8f8f8; - border-color: #e7e7e7; -} -.navbar-default .navbar-brand { - color: #777; -} -.navbar-default .navbar-brand:hover, .navbar-default .navbar-brand:focus { - color: #5e5e5e; - background-color: transparent; -} -.navbar-default .navbar-text { - color: #777; -} -.navbar-default .navbar-nav > li > a { - color: #777; -} -.navbar-default .navbar-nav > li > a:hover, .navbar-default .navbar-nav > li > a:focus { - color: #333; - background-color: transparent; -} -.navbar-default .navbar-nav > .active > a, .navbar-default .navbar-nav > .active > a:hover, .navbar-default .navbar-nav > .active > a:focus { - color: #555; - background-color: #e7e7e7; -} -.navbar-default .navbar-nav > .disabled > a, .navbar-default .navbar-nav > .disabled > a:hover, .navbar-default .navbar-nav > .disabled > a:focus { - color: #ccc; - background-color: transparent; -} -.navbar-default .navbar-toggle { - border-color: #ddd; -} -.navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:focus { - background-color: #ddd; -} -.navbar-default .navbar-toggle .icon-bar { - background-color: #888; -} -.navbar-default .navbar-collapse, -.navbar-default .navbar-form { - border-color: #e7e7e7; -} -.navbar-default .navbar-nav > .open > a, .navbar-default .navbar-nav > .open > a:hover, .navbar-default .navbar-nav > .open > a:focus { - background-color: #e7e7e7; - color: #555; -} -@media (max-width: 767px) { - .navbar-default .navbar-nav .open .dropdown-menu > li > a { - color: #777; - } - .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus { - color: #333; - background-color: transparent; - } - .navbar-default .navbar-nav .open .dropdown-menu > .active > a, .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus { - color: #555; - background-color: #e7e7e7; - } - .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a, .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus { - color: #ccc; - background-color: transparent; - } -} -.navbar-default .navbar-link { - color: #777; -} -.navbar-default .navbar-link:hover { - color: #333; -} -.navbar-default .btn-link { - color: #777; -} -.navbar-default .btn-link:hover, .navbar-default .btn-link:focus { - color: #333; -} -.navbar-default .btn-link[disabled]:hover, .navbar-default .btn-link[disabled]:focus, fieldset[disabled] .navbar-default .btn-link:hover, fieldset[disabled] .navbar-default .btn-link:focus { - color: #ccc; -} - -.navbar-inverse { - background-color: #222; - border-color: #090909; -} -.navbar-inverse .navbar-brand { - color: #9d9d9d; -} -.navbar-inverse .navbar-brand:hover, .navbar-inverse .navbar-brand:focus { - color: #fff; - background-color: transparent; -} -.navbar-inverse .navbar-text { - color: #9d9d9d; -} -.navbar-inverse .navbar-nav > li > a { - color: #9d9d9d; -} -.navbar-inverse .navbar-nav > li > a:hover, .navbar-inverse .navbar-nav > li > a:focus { - color: #fff; - background-color: transparent; -} -.navbar-inverse .navbar-nav > .active > a, .navbar-inverse .navbar-nav > .active > a:hover, .navbar-inverse .navbar-nav > .active > a:focus { - color: #fff; - background-color: #090909; -} -.navbar-inverse .navbar-nav > .disabled > a, .navbar-inverse .navbar-nav > .disabled > a:hover, .navbar-inverse .navbar-nav > .disabled > a:focus { - color: #444; - background-color: transparent; -} -.navbar-inverse .navbar-toggle { - border-color: #333; -} -.navbar-inverse .navbar-toggle:hover, .navbar-inverse .navbar-toggle:focus { - background-color: #333; -} -.navbar-inverse .navbar-toggle .icon-bar { - background-color: #fff; -} -.navbar-inverse .navbar-collapse, -.navbar-inverse .navbar-form { - border-color: #101010; -} -.navbar-inverse .navbar-nav > .open > a, .navbar-inverse .navbar-nav > .open > a:hover, .navbar-inverse .navbar-nav > .open > a:focus { - background-color: #090909; - color: #fff; -} -@media (max-width: 767px) { - .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header { - border-color: #090909; - } - .navbar-inverse .navbar-nav .open .dropdown-menu .divider { - background-color: #090909; - } - .navbar-inverse .navbar-nav .open .dropdown-menu > li > a { - color: #9d9d9d; - } - .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus { - color: #fff; - background-color: transparent; - } - .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a, .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus { - color: #fff; - background-color: #090909; - } - .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a, .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus { - color: #444; - background-color: transparent; - } -} -.navbar-inverse .navbar-link { - color: #9d9d9d; -} -.navbar-inverse .navbar-link:hover { - color: #fff; -} -.navbar-inverse .btn-link { - color: #9d9d9d; -} -.navbar-inverse .btn-link:hover, .navbar-inverse .btn-link:focus { - color: #fff; -} -.navbar-inverse .btn-link[disabled]:hover, .navbar-inverse .btn-link[disabled]:focus, fieldset[disabled] .navbar-inverse .btn-link:hover, fieldset[disabled] .navbar-inverse .btn-link:focus { - color: #444; -} - -.breadcrumb { - padding: 8px 15px; - margin-bottom: 20px; - list-style: none; - background-color: #f5f5f5; - border-radius: 4px; -} -.breadcrumb > li { - display: inline-block; -} -.breadcrumb > li + li:before { - content: "/ "; - padding: 0 5px; - color: #ccc; -} -.breadcrumb > .active { - color: #777777; -} - -.pagination { - display: inline-block; - padding-left: 0; - margin: 20px 0; - border-radius: 4px; -} -.pagination > li { - display: inline; -} -.pagination > li > a, -.pagination > li > span { - position: relative; - float: left; - padding: 10px 20px; - line-height: 1.42857; - text-decoration: none; - color: #337ab7; - background-color: #fff; - border: 1px solid #ddd; - margin-left: -1px; -} -.pagination > li:first-child > a, -.pagination > li:first-child > span { - margin-left: 0; - border-bottom-left-radius: 4px; - border-top-left-radius: 4px; -} -.pagination > li:last-child > a, -.pagination > li:last-child > span { - border-bottom-right-radius: 4px; - border-top-right-radius: 4px; -} -.pagination > li > a:hover, .pagination > li > a:focus, -.pagination > li > span:hover, -.pagination > li > span:focus { - z-index: 3; - color: #23527c; - background-color: #eeeeee; - border-color: #ddd; -} -.pagination > .active > a, .pagination > .active > a:hover, .pagination > .active > a:focus, -.pagination > .active > span, -.pagination > .active > span:hover, -.pagination > .active > span:focus { - z-index: 2; - color: #fff; - background-color: #337ab7; - border-color: #337ab7; - cursor: default; -} -.pagination > .disabled > span, -.pagination > .disabled > span:hover, -.pagination > .disabled > span:focus, -.pagination > .disabled > a, -.pagination > .disabled > a:hover, -.pagination > .disabled > a:focus { - color: #777777; - background-color: #fff; - border-color: #ddd; - cursor: not-allowed; -} - -.pagination-lg > li > a, -.pagination-lg > li > span { - padding: 10px 20px; - font-size: 18px; - line-height: 1.33333; -} -.pagination-lg > li:first-child > a, -.pagination-lg > li:first-child > span { - border-bottom-left-radius: 6px; - border-top-left-radius: 6px; -} -.pagination-lg > li:last-child > a, -.pagination-lg > li:last-child > span { - border-bottom-right-radius: 6px; - border-top-right-radius: 6px; -} - -.pagination-sm > li > a, -.pagination-sm > li > span { - padding: 5px 20px; - font-size: 12px; - line-height: 1.5; -} -.pagination-sm > li:first-child > a, -.pagination-sm > li:first-child > span { - border-bottom-left-radius: 3px; - border-top-left-radius: 3px; -} -.pagination-sm > li:last-child > a, -.pagination-sm > li:last-child > span { - border-bottom-right-radius: 3px; - border-top-right-radius: 3px; -} - -.pager { - padding-left: 0; - margin: 20px 0; - list-style: none; - text-align: center; -} -.pager:before, .pager:after { - content: " "; - display: table; -} -.pager:after { - clear: both; -} -.pager li { - display: inline; -} -.pager li > a, -.pager li > span { - display: inline-block; - padding: 5px 14px; - background-color: #fff; - border: 1px solid #ddd; - border-radius: 15px; -} -.pager li > a:hover, -.pager li > a:focus { - text-decoration: none; - background-color: #eeeeee; -} -.pager .next > a, -.pager .next > span { - float: right; -} -.pager .previous > a, -.pager .previous > span { - float: left; -} -.pager .disabled > a, -.pager .disabled > a:hover, -.pager .disabled > a:focus, -.pager .disabled > span { - color: #777777; - background-color: #fff; - cursor: not-allowed; -} - -.label { - display: inline; - padding: .2em .6em .3em; - font-size: 75%; - font-weight: bold; - line-height: 1; - color: #fff; - text-align: center; - white-space: nowrap; - vertical-align: baseline; - border-radius: .25em; -} -.label:empty { - display: none; -} -.btn .label { - position: relative; - top: -1px; -} - -a.label:hover, a.label:focus { - color: #fff; - text-decoration: none; - cursor: pointer; -} - -.label-default { - background-color: #777777; -} -.label-default[href]:hover, .label-default[href]:focus { - background-color: #5e5e5e; -} - -.label-primary { - background-color: #337ab7; -} -.label-primary[href]:hover, .label-primary[href]:focus { - background-color: #286090; -} - -.label-success { - background-color: #5cb85c; -} -.label-success[href]:hover, .label-success[href]:focus { - background-color: #449d44; -} - -.label-info { - background-color: #5bc0de; -} -.label-info[href]:hover, .label-info[href]:focus { - background-color: #31b0d5; -} - -.label-warning { - background-color: #f0ad4e; -} -.label-warning[href]:hover, .label-warning[href]:focus { - background-color: #ec971f; -} - -.label-danger { - background-color: #d9534f; -} -.label-danger[href]:hover, .label-danger[href]:focus { - background-color: #c9302c; -} - -.badge { - display: inline-block; - min-width: 10px; - padding: 3px 7px; - font-size: 12px; - font-weight: bold; - color: #fff; - line-height: 1; - vertical-align: middle; - white-space: nowrap; - text-align: center; - background-color: #777777; - border-radius: 10px; -} -.badge:empty { - display: none; -} -.btn .badge { - position: relative; - top: -1px; -} -.btn-xs .badge, .btn-group-xs > .btn .badge, .btn-group-xs > .btn .badge { - top: 0; - padding: 1px 5px; -} -.list-group-item.active > .badge, .nav-pills > .active > a > .badge { - color: #337ab7; - background-color: #fff; -} -.list-group-item > .badge { - float: right; -} -.list-group-item > .badge + .badge { - margin-right: 5px; -} -.nav-pills > li > a > .badge { - margin-left: 3px; -} - -a.badge:hover, a.badge:focus { - color: #fff; - text-decoration: none; - cursor: pointer; -} - -.jumbotron { - padding-top: 30px; - padding-bottom: 30px; - margin-bottom: 30px; - color: inherit; - background-color: #eeeeee; -} -.jumbotron h1, -.jumbotron .h1 { - color: inherit; -} -.jumbotron p { - margin-bottom: 15px; - font-size: 21px; - font-weight: 200; -} -.jumbotron > hr { - border-top-color: #d5d5d5; -} -.container .jumbotron, .container-fluid .jumbotron { - border-radius: 6px; -} -.jumbotron .container { - max-width: 100%; -} -@media screen and (min-width: 768px) { - .jumbotron { - padding-top: 48px; - padding-bottom: 48px; - } - .container .jumbotron, .container-fluid .jumbotron { - padding-left: 60px; - padding-right: 60px; - } - .jumbotron h1, - .jumbotron .h1 { - font-size: 63px; - } -} - -.thumbnail { - display: block; - padding: 4px; - margin-bottom: 20px; - line-height: 1.42857; - background-color: #fff; - border: 1px solid #ddd; - border-radius: 4px; - -webkit-transition: border 0.2s ease-in-out; - -o-transition: border 0.2s ease-in-out; - transition: border 0.2s ease-in-out; -} -.thumbnail > img, -.thumbnail a > img { - display: block; - max-width: 100%; - height: auto; - margin-left: auto; - margin-right: auto; -} -.thumbnail .caption { - padding: 9px; - color: #333333; -} - -a.thumbnail:hover, -a.thumbnail:focus, -a.thumbnail.active { - border-color: #337ab7; -} - -.alert { - padding: 15px; - margin-bottom: 20px; - border: 1px solid transparent; - border-radius: 4px; -} -.alert h4 { - margin-top: 0; - color: inherit; -} -.alert .alert-link { - font-weight: bold; -} -.alert > p, -.alert > ul { - margin-bottom: 0; -} -.alert > p + p { - margin-top: 5px; -} - -.alert-dismissable, -.alert-dismissible { - padding-right: 35px; -} -.alert-dismissable .close, -.alert-dismissible .close { - position: relative; - top: -2px; - right: -21px; - color: inherit; -} - -.alert-success { - background-color: #dff0d8; - border-color: #d6e9c6; - color: #3c763d; -} -.alert-success hr { - border-top-color: #c9e2b3; -} -.alert-success .alert-link { - color: #2b542c; -} - -.alert-info { - background-color: #d9edf7; - border-color: #bce8f1; - color: #31708f; -} -.alert-info hr { - border-top-color: #a6e1ec; -} -.alert-info .alert-link { - color: #245269; -} - -.alert-warning { - background-color: #fcf8e3; - border-color: #faebcc; - color: #8a6d3b; -} -.alert-warning hr { - border-top-color: #f7e1b5; -} -.alert-warning .alert-link { - color: #66512c; -} - -.alert-danger { - background-color: #f2dede; - border-color: #ebccd1; - color: #a94442; -} -.alert-danger hr { - border-top-color: #e4b9c0; -} -.alert-danger .alert-link { - color: #843534; -} - -@-webkit-keyframes progress-bar-stripes { - from { - background-position: 40px 0; - } - to { - background-position: 0 0; - } -} -@keyframes progress-bar-stripes { - from { - background-position: 40px 0; - } - to { - background-position: 0 0; - } -} -.progress { - overflow: hidden; - height: 20px; - margin-bottom: 20px; - background-color: #f5f5f5; - border-radius: 4px; - -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1); - box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1); -} - -.progress-bar { - float: left; - width: 0%; - height: 100%; - font-size: 12px; - line-height: 20px; - color: #fff; - text-align: center; - background-color: #337ab7; - -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15); - box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15); - -webkit-transition: width 0.6s ease; - -o-transition: width 0.6s ease; - transition: width 0.6s ease; -} - -.progress-striped .progress-bar, -.progress-bar-striped { - background-image: -webkit-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-image: -o-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-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); - background-size: 40px 40px; -} - -.progress.active .progress-bar, -.progress-bar.active { - -webkit-animation: progress-bar-stripes 2s linear infinite; - -o-animation: progress-bar-stripes 2s linear infinite; - animation: progress-bar-stripes 2s linear infinite; -} - -.progress-bar-success { - background-color: #5cb85c; -} -.progress-striped .progress-bar-success { - background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 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-image: -o-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-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); -} - -.progress-bar-info { - background-color: #5bc0de; -} -.progress-striped .progress-bar-info { - background-image: -webkit-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-image: -o-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-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); -} - -.progress-bar-warning { - background-color: #f0ad4e; -} -.progress-striped .progress-bar-warning { - background-image: -webkit-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-image: -o-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-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); -} - -.progress-bar-danger { - background-color: #d9534f; -} -.progress-striped .progress-bar-danger { - background-image: -webkit-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-image: -o-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-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); -} - -.media { - margin-top: 15px; -} -.media:first-child { - margin-top: 0; -} - -.media, -.media-body { - zoom: 1; - overflow: hidden; -} - -.media-body { - width: 10000px; -} - -.media-object { - display: block; -} -.media-object.img-thumbnail { - max-width: none; -} - -.media-right, -.media > .pull-right { - padding-left: 10px; -} - -.media-left, -.media > .pull-left { - padding-right: 10px; -} - -.media-left, -.media-right, -.media-body { - display: table-cell; - vertical-align: top; -} - -.media-middle { - vertical-align: middle; -} - -.media-bottom { - vertical-align: bottom; -} - -.media-heading { - margin-top: 0; - margin-bottom: 5px; -} - -.media-list { - padding-left: 0; - list-style: none; -} - -.list-group { - margin-bottom: 20px; - padding-left: 0; -} - -.list-group-item { - position: relative; - display: block; - padding: 10px 15px; - margin-bottom: -1px; - background-color: #fff; - border: 1px solid #ddd; -} -.list-group-item:first-child { - border-top-right-radius: 4px; - border-top-left-radius: 4px; -} -.list-group-item:last-child { - margin-bottom: 0; - border-bottom-right-radius: 4px; - border-bottom-left-radius: 4px; -} - -a.list-group-item, -button.list-group-item { - color: #555; -} -a.list-group-item .list-group-item-heading, -button.list-group-item .list-group-item-heading { - color: #333; -} -a.list-group-item:hover, a.list-group-item:focus, -button.list-group-item:hover, -button.list-group-item:focus { - text-decoration: none; - color: #555; - background-color: #f5f5f5; -} - -button.list-group-item { - width: 100%; - text-align: left; -} - -.list-group-item.disabled, .list-group-item.disabled:hover, .list-group-item.disabled:focus { - background-color: #eeeeee; - color: #777777; - cursor: not-allowed; -} -.list-group-item.disabled .list-group-item-heading, .list-group-item.disabled:hover .list-group-item-heading, .list-group-item.disabled:focus .list-group-item-heading { - color: inherit; -} -.list-group-item.disabled .list-group-item-text, .list-group-item.disabled:hover .list-group-item-text, .list-group-item.disabled:focus .list-group-item-text { - color: #777777; -} -.list-group-item.active, .list-group-item.active:hover, .list-group-item.active:focus { - z-index: 2; - color: #fff; - background-color: #337ab7; - border-color: #337ab7; -} -.list-group-item.active .list-group-item-heading, -.list-group-item.active .list-group-item-heading > small, -.list-group-item.active .list-group-item-heading > .small, .list-group-item.active:hover .list-group-item-heading, -.list-group-item.active:hover .list-group-item-heading > small, -.list-group-item.active:hover .list-group-item-heading > .small, .list-group-item.active:focus .list-group-item-heading, -.list-group-item.active:focus .list-group-item-heading > small, -.list-group-item.active:focus .list-group-item-heading > .small { - color: inherit; -} -.list-group-item.active .list-group-item-text, .list-group-item.active:hover .list-group-item-text, .list-group-item.active:focus .list-group-item-text { - color: #c7ddef; -} - -.list-group-item-success { - color: #3c763d; - background-color: #dff0d8; -} - -a.list-group-item-success, -button.list-group-item-success { - color: #3c763d; -} -a.list-group-item-success .list-group-item-heading, -button.list-group-item-success .list-group-item-heading { - color: inherit; -} -a.list-group-item-success:hover, a.list-group-item-success:focus, -button.list-group-item-success:hover, -button.list-group-item-success:focus { - color: #3c763d; - background-color: #d0e9c6; -} -a.list-group-item-success.active, a.list-group-item-success.active:hover, a.list-group-item-success.active:focus, -button.list-group-item-success.active, -button.list-group-item-success.active:hover, -button.list-group-item-success.active:focus { - color: #fff; - background-color: #3c763d; - border-color: #3c763d; -} - -.list-group-item-info { - color: #31708f; - background-color: #d9edf7; -} - -a.list-group-item-info, -button.list-group-item-info { - color: #31708f; -} -a.list-group-item-info .list-group-item-heading, -button.list-group-item-info .list-group-item-heading { - color: inherit; -} -a.list-group-item-info:hover, a.list-group-item-info:focus, -button.list-group-item-info:hover, -button.list-group-item-info:focus { - color: #31708f; - background-color: #c4e3f3; -} -a.list-group-item-info.active, a.list-group-item-info.active:hover, a.list-group-item-info.active:focus, -button.list-group-item-info.active, -button.list-group-item-info.active:hover, -button.list-group-item-info.active:focus { - color: #fff; - background-color: #31708f; - border-color: #31708f; -} - -.list-group-item-warning { - color: #8a6d3b; - background-color: #fcf8e3; -} - -a.list-group-item-warning, -button.list-group-item-warning { - color: #8a6d3b; -} -a.list-group-item-warning .list-group-item-heading, -button.list-group-item-warning .list-group-item-heading { - color: inherit; -} -a.list-group-item-warning:hover, a.list-group-item-warning:focus, -button.list-group-item-warning:hover, -button.list-group-item-warning:focus { - color: #8a6d3b; - background-color: #faf2cc; -} -a.list-group-item-warning.active, a.list-group-item-warning.active:hover, a.list-group-item-warning.active:focus, -button.list-group-item-warning.active, -button.list-group-item-warning.active:hover, -button.list-group-item-warning.active:focus { - color: #fff; - background-color: #8a6d3b; - border-color: #8a6d3b; -} - -.list-group-item-danger { - color: #a94442; - background-color: #f2dede; -} - -a.list-group-item-danger, -button.list-group-item-danger { - color: #a94442; -} -a.list-group-item-danger .list-group-item-heading, -button.list-group-item-danger .list-group-item-heading { - color: inherit; -} -a.list-group-item-danger:hover, a.list-group-item-danger:focus, -button.list-group-item-danger:hover, -button.list-group-item-danger:focus { - color: #a94442; - background-color: #ebcccc; -} -a.list-group-item-danger.active, a.list-group-item-danger.active:hover, a.list-group-item-danger.active:focus, -button.list-group-item-danger.active, -button.list-group-item-danger.active:hover, -button.list-group-item-danger.active:focus { - color: #fff; - background-color: #a94442; - border-color: #a94442; -} - -.list-group-item-heading { - margin-top: 0; - margin-bottom: 5px; -} - -.list-group-item-text { - margin-bottom: 0; - line-height: 1.3; -} - -.panel { - margin-bottom: 20px; - background-color: #fff; - border: 1px solid transparent; - border-radius: 4px; - -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05); - box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05); -} - -.panel-body { - padding: 15px; -} -.panel-body:before, .panel-body:after { - content: " "; - display: table; -} -.panel-body:after { - clear: both; -} - -.panel-heading { - padding: 10px 15px; - border-bottom: 1px solid transparent; - border-top-right-radius: 3px; - border-top-left-radius: 3px; -} -.panel-heading > .dropdown .dropdown-toggle { - color: inherit; -} - -.panel-title { - margin-top: 0; - margin-bottom: 0; - font-size: 16px; - color: inherit; -} -.panel-title > a, -.panel-title > small, -.panel-title > .small, -.panel-title > small > a, -.panel-title > .small > a { - color: inherit; -} - -.panel-footer { - padding: 10px 15px; - background-color: #f5f5f5; - border-top: 1px solid #ddd; - border-bottom-right-radius: 3px; - border-bottom-left-radius: 3px; -} - -.panel > .list-group, -.panel > .panel-collapse > .list-group { - margin-bottom: 0; -} -.panel > .list-group .list-group-item, -.panel > .panel-collapse > .list-group .list-group-item { - border-width: 1px 0; - border-radius: 0; -} -.panel > .list-group:first-child .list-group-item:first-child, -.panel > .panel-collapse > .list-group:first-child .list-group-item:first-child { - border-top: 0; - border-top-right-radius: 3px; - border-top-left-radius: 3px; -} -.panel > .list-group:last-child .list-group-item:last-child, -.panel > .panel-collapse > .list-group:last-child .list-group-item:last-child { - border-bottom: 0; - border-bottom-right-radius: 3px; - border-bottom-left-radius: 3px; -} -.panel > .panel-heading + .panel-collapse > .list-group .list-group-item:first-child { - border-top-right-radius: 0; - border-top-left-radius: 0; -} - -.panel-heading + .list-group .list-group-item:first-child { - border-top-width: 0; -} - -.list-group + .panel-footer { - border-top-width: 0; -} - -.panel > .table, -.panel > .table-responsive > .table, -.panel > .panel-collapse > .table { - margin-bottom: 0; -} -.panel > .table caption, -.panel > .table-responsive > .table caption, -.panel > .panel-collapse > .table caption { - padding-left: 15px; - padding-right: 15px; -} -.panel > .table:first-child, -.panel > .table-responsive:first-child > .table:first-child { - border-top-right-radius: 3px; - border-top-left-radius: 3px; -} -.panel > .table:first-child > thead:first-child > tr:first-child, -.panel > .table:first-child > tbody:first-child > tr:first-child, -.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child, -.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child { - border-top-left-radius: 3px; - border-top-right-radius: 3px; -} -.panel > .table:first-child > thead:first-child > tr:first-child td:first-child, -.panel > .table:first-child > thead:first-child > tr:first-child th:first-child, -.panel > .table:first-child > tbody:first-child > tr:first-child td:first-child, -.panel > .table:first-child > tbody:first-child > tr:first-child th:first-child, -.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child, -.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child, -.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child, -.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child { - border-top-left-radius: 3px; -} -.panel > .table:first-child > thead:first-child > tr:first-child td:last-child, -.panel > .table:first-child > thead:first-child > tr:first-child th:last-child, -.panel > .table:first-child > tbody:first-child > tr:first-child td:last-child, -.panel > .table:first-child > tbody:first-child > tr:first-child th:last-child, -.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child, -.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child, -.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child, -.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child { - border-top-right-radius: 3px; -} -.panel > .table:last-child, -.panel > .table-responsive:last-child > .table:last-child { - border-bottom-right-radius: 3px; - border-bottom-left-radius: 3px; -} -.panel > .table:last-child > tbody:last-child > tr:last-child, -.panel > .table:last-child > tfoot:last-child > tr:last-child, -.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child, -.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child { - border-bottom-left-radius: 3px; - border-bottom-right-radius: 3px; -} -.panel > .table:last-child > tbody:last-child > tr:last-child td:first-child, -.panel > .table:last-child > tbody:last-child > tr:last-child th:first-child, -.panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child, -.panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child, -.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child, -.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child, -.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child, -.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child { - border-bottom-left-radius: 3px; -} -.panel > .table:last-child > tbody:last-child > tr:last-child td:last-child, -.panel > .table:last-child > tbody:last-child > tr:last-child th:last-child, -.panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child, -.panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child, -.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child, -.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child, -.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child, -.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child { - border-bottom-right-radius: 3px; -} -.panel > .panel-body + .table, -.panel > .panel-body + .table-responsive, -.panel > .table + .panel-body, -.panel > .table-responsive + .panel-body { - border-top: 1px solid #ddd; -} -.panel > .table > tbody:first-child > tr:first-child th, -.panel > .table > tbody:first-child > tr:first-child td { - border-top: 0; -} -.panel > .table-bordered, -.panel > .table-responsive > .table-bordered { - border: 0; -} -.panel > .table-bordered > thead > tr > th:first-child, -.panel > .table-bordered > thead > tr > td:first-child, -.panel > .table-bordered > tbody > tr > th:first-child, -.panel > .table-bordered > tbody > tr > td:first-child, -.panel > .table-bordered > tfoot > tr > th:first-child, -.panel > .table-bordered > tfoot > tr > td:first-child, -.panel > .table-responsive > .table-bordered > thead > tr > th:first-child, -.panel > .table-responsive > .table-bordered > thead > tr > td:first-child, -.panel > .table-responsive > .table-bordered > tbody > tr > th:first-child, -.panel > .table-responsive > .table-bordered > tbody > tr > td:first-child, -.panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child, -.panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child { - border-left: 0; -} -.panel > .table-bordered > thead > tr > th:last-child, -.panel > .table-bordered > thead > tr > td:last-child, -.panel > .table-bordered > tbody > tr > th:last-child, -.panel > .table-bordered > tbody > tr > td:last-child, -.panel > .table-bordered > tfoot > tr > th:last-child, -.panel > .table-bordered > tfoot > tr > td:last-child, -.panel > .table-responsive > .table-bordered > thead > tr > th:last-child, -.panel > .table-responsive > .table-bordered > thead > tr > td:last-child, -.panel > .table-responsive > .table-bordered > tbody > tr > th:last-child, -.panel > .table-responsive > .table-bordered > tbody > tr > td:last-child, -.panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child, -.panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child { - border-right: 0; -} -.panel > .table-bordered > thead > tr:first-child > td, -.panel > .table-bordered > thead > tr:first-child > th, -.panel > .table-bordered > tbody > tr:first-child > td, -.panel > .table-bordered > tbody > tr:first-child > th, -.panel > .table-responsive > .table-bordered > thead > tr:first-child > td, -.panel > .table-responsive > .table-bordered > thead > tr:first-child > th, -.panel > .table-responsive > .table-bordered > tbody > tr:first-child > td, -.panel > .table-responsive > .table-bordered > tbody > tr:first-child > th { - border-bottom: 0; -} -.panel > .table-bordered > tbody > tr:last-child > td, -.panel > .table-bordered > tbody > tr:last-child > th, -.panel > .table-bordered > tfoot > tr:last-child > td, -.panel > .table-bordered > tfoot > tr:last-child > th, -.panel > .table-responsive > .table-bordered > tbody > tr:last-child > td, -.panel > .table-responsive > .table-bordered > tbody > tr:last-child > th, -.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td, -.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th { - border-bottom: 0; -} -.panel > .table-responsive { - border: 0; - margin-bottom: 0; -} - -.panel-group { - margin-bottom: 20px; -} -.panel-group .panel { - margin-bottom: 0; - border-radius: 4px; -} -.panel-group .panel + .panel { - margin-top: 5px; -} -.panel-group .panel-heading { - border-bottom: 0; -} -.panel-group .panel-heading + .panel-collapse > .panel-body, -.panel-group .panel-heading + .panel-collapse > .list-group { - border-top: 1px solid #ddd; -} -.panel-group .panel-footer { - border-top: 0; -} -.panel-group .panel-footer + .panel-collapse .panel-body { - border-bottom: 1px solid #ddd; -} - -.panel-default { - border-color: #ddd; -} -.panel-default > .panel-heading { - color: #333333; - background-color: #f5f5f5; - border-color: #ddd; -} -.panel-default > .panel-heading + .panel-collapse > .panel-body { - border-top-color: #ddd; -} -.panel-default > .panel-heading .badge { - color: #f5f5f5; - background-color: #333333; -} -.panel-default > .panel-footer + .panel-collapse > .panel-body { - border-bottom-color: #ddd; -} - -.panel-primary { - border-color: #337ab7; -} -.panel-primary > .panel-heading { - color: #fff; - background-color: #337ab7; - border-color: #337ab7; -} -.panel-primary > .panel-heading + .panel-collapse > .panel-body { - border-top-color: #337ab7; -} -.panel-primary > .panel-heading .badge { - color: #337ab7; - background-color: #fff; -} -.panel-primary > .panel-footer + .panel-collapse > .panel-body { - border-bottom-color: #337ab7; -} - -.panel-success { - border-color: #d6e9c6; -} -.panel-success > .panel-heading { - color: #3c763d; - background-color: #dff0d8; - border-color: #d6e9c6; -} -.panel-success > .panel-heading + .panel-collapse > .panel-body { - border-top-color: #d6e9c6; -} -.panel-success > .panel-heading .badge { - color: #dff0d8; - background-color: #3c763d; -} -.panel-success > .panel-footer + .panel-collapse > .panel-body { - border-bottom-color: #d6e9c6; -} - -.panel-info { - border-color: #bce8f1; -} -.panel-info > .panel-heading { - color: #31708f; - background-color: #d9edf7; - border-color: #bce8f1; -} -.panel-info > .panel-heading + .panel-collapse > .panel-body { - border-top-color: #bce8f1; -} -.panel-info > .panel-heading .badge { - color: #d9edf7; - background-color: #31708f; -} -.panel-info > .panel-footer + .panel-collapse > .panel-body { - border-bottom-color: #bce8f1; -} - -.panel-warning { - border-color: #faebcc; -} -.panel-warning > .panel-heading { - color: #8a6d3b; - background-color: #fcf8e3; - border-color: #faebcc; -} -.panel-warning > .panel-heading + .panel-collapse > .panel-body { - border-top-color: #faebcc; -} -.panel-warning > .panel-heading .badge { - color: #fcf8e3; - background-color: #8a6d3b; -} -.panel-warning > .panel-footer + .panel-collapse > .panel-body { - border-bottom-color: #faebcc; -} - -.panel-danger { - border-color: #ebccd1; -} -.panel-danger > .panel-heading { - color: #a94442; - background-color: #f2dede; - border-color: #ebccd1; -} -.panel-danger > .panel-heading + .panel-collapse > .panel-body { - border-top-color: #ebccd1; -} -.panel-danger > .panel-heading .badge { - color: #f2dede; - background-color: #a94442; -} -.panel-danger > .panel-footer + .panel-collapse > .panel-body { - border-bottom-color: #ebccd1; -} - -.embed-responsive { - position: relative; - display: block; - height: 0; - padding: 0; - overflow: hidden; -} -.embed-responsive .embed-responsive-item, -.embed-responsive iframe, -.embed-responsive embed, -.embed-responsive object, -.embed-responsive video { - position: absolute; - top: 0; - left: 0; - bottom: 0; - height: 100%; - width: 100%; - border: 0; -} - -.embed-responsive-16by9 { - padding-bottom: 56.25%; -} - -.embed-responsive-4by3 { - padding-bottom: 75%; -} - -.well { - min-height: 20px; - padding: 19px; - margin-bottom: 20px; - background-color: #f5f5f5; - border: 1px solid #e3e3e3; - border-radius: 4px; - -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05); - box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05); -} -.well blockquote { - border-color: #ddd; - border-color: rgba(0, 0, 0, 0.15); -} - -.well-lg { - padding: 24px; - border-radius: 6px; -} - -.well-sm { - padding: 9px; - border-radius: 3px; -} - -.close { - float: right; - font-size: 21px; - font-weight: bold; - line-height: 1; - color: #000; - text-shadow: 0 1px 0 #fff; - opacity: 0.2; - filter: alpha(opacity=20); -} -.close:hover, .close:focus { - color: #000; - text-decoration: none; - cursor: pointer; - opacity: 0.5; - filter: alpha(opacity=50); -} - -button.close { - padding: 0; - cursor: pointer; - background: transparent; - border: 0; - -webkit-appearance: none; -} - -.modal-open { - overflow: hidden; -} - -.modal { - display: none; - overflow: hidden; - position: fixed; - top: 0; - right: 0; - bottom: 0; - left: 0; - z-index: 1050; - -webkit-overflow-scrolling: touch; - outline: 0; -} -.modal.fade .modal-dialog { - -webkit-transform: translate(0, -25%); - -ms-transform: translate(0, -25%); - -o-transform: translate(0, -25%); - transform: translate(0, -25%); - -webkit-transition: -webkit-transform 0.3s ease-out; - -moz-transition: -moz-transform 0.3s ease-out; - -o-transition: -o-transform 0.3s ease-out; - transition: transform 0.3s ease-out; -} -.modal.in .modal-dialog { - -webkit-transform: translate(0, 0); - -ms-transform: translate(0, 0); - -o-transform: translate(0, 0); - transform: translate(0, 0); -} - -.modal-open .modal { - overflow-x: hidden; - overflow-y: auto; -} - -.modal-dialog { - position: relative; - width: auto; - margin: 10px; -} - -.modal-content { - position: relative; - background-color: #fff; - border: 1px solid #999; - border: 1px solid rgba(0, 0, 0, 0.2); - border-radius: 6px; - -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5); - box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5); - background-clip: padding-box; - outline: 0; -} - -.modal-backdrop { - position: fixed; - top: 0; - right: 0; - bottom: 0; - left: 0; - z-index: 1040; - background-color: #000; -} -.modal-backdrop.fade { - opacity: 0; - filter: alpha(opacity=0); -} -.modal-backdrop.in { - opacity: 0.5; - filter: alpha(opacity=50); -} - -.modal-header { - padding: 15px; - border-bottom: 1px solid #e5e5e5; - min-height: 16.42857px; -} - -.modal-header .close { - margin-top: -2px; -} - -.modal-title { - margin: 0; - line-height: 1.42857; -} - -.modal-body { - position: relative; - padding: 15px; -} - -.modal-footer { - padding: 15px; - text-align: right; - border-top: 1px solid #e5e5e5; -} -.modal-footer:before, .modal-footer:after { - content: " "; - display: table; -} -.modal-footer:after { - clear: both; -} -.modal-footer .btn + .btn { - margin-left: 5px; - margin-bottom: 0; -} -.modal-footer .btn-group .btn + .btn { - margin-left: -1px; -} -.modal-footer .btn-block + .btn-block { - margin-left: 0; -} - -.modal-scrollbar-measure { - position: absolute; - top: -9999px; - width: 50px; - height: 50px; - overflow: scroll; -} - -@media (min-width: 768px) { - .modal-dialog { - width: 600px; - margin: 30px auto; - } - - .modal-content { - -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5); - box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5); - } - - .modal-sm { - width: 300px; - } -} -@media (min-width: 992px) { - .modal-lg { - width: 900px; - } -} -.tooltip { - position: absolute; - z-index: 1070; - display: block; - font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; - font-style: normal; - font-weight: normal; - letter-spacing: normal; - line-break: auto; - line-height: 1.42857; - text-align: left; - text-align: start; - text-decoration: none; - text-shadow: none; - text-transform: none; - white-space: normal; - word-break: normal; - word-spacing: normal; - word-wrap: normal; - font-size: 12px; - opacity: 0; - filter: alpha(opacity=0); -} -.tooltip.in { - opacity: 0.9; - filter: alpha(opacity=90); -} -.tooltip.top { - margin-top: -3px; - padding: 5px 0; -} -.tooltip.right { - margin-left: 3px; - padding: 0 5px; -} -.tooltip.bottom { - margin-top: 3px; - padding: 5px 0; -} -.tooltip.left { - margin-left: -3px; - padding: 0 5px; -} - -.tooltip-inner { - max-width: 200px; - padding: 3px 8px; - color: #fff; - text-align: center; - background-color: #000; - border-radius: 4px; -} - -.tooltip-arrow { - position: absolute; - width: 0; - height: 0; - border-color: transparent; - border-style: solid; -} - -.tooltip.top .tooltip-arrow { - bottom: 0; - left: 50%; - margin-left: -5px; - border-width: 5px 5px 0; - border-top-color: #000; -} -.tooltip.top-left .tooltip-arrow { - bottom: 0; - right: 5px; - margin-bottom: -5px; - border-width: 5px 5px 0; - border-top-color: #000; -} -.tooltip.top-right .tooltip-arrow { - bottom: 0; - left: 5px; - margin-bottom: -5px; - border-width: 5px 5px 0; - border-top-color: #000; -} -.tooltip.right .tooltip-arrow { - top: 50%; - left: 0; - margin-top: -5px; - border-width: 5px 5px 5px 0; - border-right-color: #000; -} -.tooltip.left .tooltip-arrow { - top: 50%; - right: 0; - margin-top: -5px; - border-width: 5px 0 5px 5px; - border-left-color: #000; -} -.tooltip.bottom .tooltip-arrow { - top: 0; - left: 50%; - margin-left: -5px; - border-width: 0 5px 5px; - border-bottom-color: #000; -} -.tooltip.bottom-left .tooltip-arrow { - top: 0; - right: 5px; - margin-top: -5px; - border-width: 0 5px 5px; - border-bottom-color: #000; -} -.tooltip.bottom-right .tooltip-arrow { - top: 0; - left: 5px; - margin-top: -5px; - border-width: 0 5px 5px; - border-bottom-color: #000; -} - -.popover { - position: absolute; - top: 0; - left: 0; - z-index: 1060; - display: none; - max-width: 276px; - padding: 1px; - font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; - font-style: normal; - font-weight: normal; - letter-spacing: normal; - line-break: auto; - line-height: 1.42857; - text-align: left; - text-align: start; - text-decoration: none; - text-shadow: none; - text-transform: none; - white-space: normal; - word-break: normal; - word-spacing: normal; - word-wrap: normal; - font-size: 14px; - background-color: #fff; - background-clip: padding-box; - border: 1px solid #ccc; - border: 1px solid rgba(0, 0, 0, 0.2); - border-radius: 6px; - -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); - box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); -} -.popover.top { - margin-top: -10px; -} -.popover.right { - margin-left: 10px; -} -.popover.bottom { - margin-top: 10px; -} -.popover.left { - margin-left: -10px; -} - -.popover-title { - margin: 0; - padding: 8px 14px; - font-size: 14px; - background-color: #f7f7f7; - border-bottom: 1px solid #ebebeb; - border-radius: 5px 5px 0 0; -} - -.popover-content { - padding: 9px 14px; -} - -.popover > .arrow, .popover > .arrow:after { - position: absolute; - display: block; - width: 0; - height: 0; - border-color: transparent; - border-style: solid; -} - -.popover > .arrow { - border-width: 11px; -} - -.popover > .arrow:after { - border-width: 10px; - content: ""; -} - -.popover.top > .arrow { - left: 50%; - margin-left: -11px; - border-bottom-width: 0; - border-top-color: #999999; - border-top-color: rgba(0, 0, 0, 0.25); - bottom: -11px; -} -.popover.top > .arrow:after { - content: " "; - bottom: 1px; - margin-left: -10px; - border-bottom-width: 0; - border-top-color: #fff; -} -.popover.right > .arrow { - top: 50%; - left: -11px; - margin-top: -11px; - border-left-width: 0; - border-right-color: #999999; - border-right-color: rgba(0, 0, 0, 0.25); -} -.popover.right > .arrow:after { - content: " "; - left: 1px; - bottom: -10px; - border-left-width: 0; - border-right-color: #fff; -} -.popover.bottom > .arrow { - left: 50%; - margin-left: -11px; - border-top-width: 0; - border-bottom-color: #999999; - border-bottom-color: rgba(0, 0, 0, 0.25); - top: -11px; -} -.popover.bottom > .arrow:after { - content: " "; - top: 1px; - margin-left: -10px; - border-top-width: 0; - border-bottom-color: #fff; -} -.popover.left > .arrow { - top: 50%; - right: -11px; - margin-top: -11px; - border-right-width: 0; - border-left-color: #999999; - border-left-color: rgba(0, 0, 0, 0.25); -} -.popover.left > .arrow:after { - content: " "; - right: 1px; - border-right-width: 0; - border-left-color: #fff; - bottom: -10px; -} - -.carousel { - position: relative; -} - -.carousel-inner { - position: relative; - overflow: hidden; - width: 100%; -} -.carousel-inner > .item { - display: none; - position: relative; - -webkit-transition: 0.6s ease-in-out left; - -o-transition: 0.6s ease-in-out left; - transition: 0.6s ease-in-out left; -} -.carousel-inner > .item > img, -.carousel-inner > .item > a > img { - display: block; - max-width: 100%; - height: auto; - line-height: 1; -} -@media all and (transform-3d), (-webkit-transform-3d) { - .carousel-inner > .item { - -webkit-transition: -webkit-transform 0.6s ease-in-out; - -moz-transition: -moz-transform 0.6s ease-in-out; - -o-transition: -o-transform 0.6s ease-in-out; - transition: transform 0.6s ease-in-out; - -webkit-backface-visibility: hidden; - -moz-backface-visibility: hidden; - backface-visibility: hidden; - -webkit-perspective: 1000px; - -moz-perspective: 1000px; - perspective: 1000px; - } - .carousel-inner > .item.next, .carousel-inner > .item.active.right { - -webkit-transform: translate3d(100%, 0, 0); - transform: translate3d(100%, 0, 0); - left: 0; - } - .carousel-inner > .item.prev, .carousel-inner > .item.active.left { - -webkit-transform: translate3d(-100%, 0, 0); - transform: translate3d(-100%, 0, 0); - left: 0; - } - .carousel-inner > .item.next.left, .carousel-inner > .item.prev.right, .carousel-inner > .item.active { - -webkit-transform: translate3d(0, 0, 0); - transform: translate3d(0, 0, 0); - left: 0; - } -} -.carousel-inner > .active, -.carousel-inner > .next, -.carousel-inner > .prev { - display: block; -} -.carousel-inner > .active { - left: 0; -} -.carousel-inner > .next, -.carousel-inner > .prev { - position: absolute; - top: 0; - width: 100%; -} -.carousel-inner > .next { - left: 100%; -} -.carousel-inner > .prev { - left: -100%; -} -.carousel-inner > .next.left, -.carousel-inner > .prev.right { - left: 0; -} -.carousel-inner > .active.left { - left: -100%; -} -.carousel-inner > .active.right { - left: 100%; -} - -.carousel-control { - position: absolute; - top: 0; - left: 0; - bottom: 0; - width: 15%; - opacity: 0.5; - filter: alpha(opacity=50); - font-size: 20px; - color: #fff; - text-align: center; - text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); -} -.carousel-control.left { - background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%); - background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%); - background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%); - background-repeat: repeat-x; - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1); -} -.carousel-control.right { - left: auto; - right: 0; - background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%); - background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%); - background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%); - background-repeat: repeat-x; - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1); -} -.carousel-control:hover, .carousel-control:focus { - outline: 0; - color: #fff; - text-decoration: none; - opacity: 0.9; - filter: alpha(opacity=90); -} -.carousel-control .icon-prev, -.carousel-control .icon-next, -.carousel-control .glyphicon-chevron-left, -.carousel-control .glyphicon-chevron-right { - position: absolute; - top: 50%; - margin-top: -10px; - z-index: 5; - display: inline-block; -} -.carousel-control .icon-prev, -.carousel-control .glyphicon-chevron-left { - left: 50%; - margin-left: -10px; -} -.carousel-control .icon-next, -.carousel-control .glyphicon-chevron-right { - right: 50%; - margin-right: -10px; -} -.carousel-control .icon-prev, -.carousel-control .icon-next { - width: 20px; - height: 20px; - line-height: 1; - font-family: serif; -} -.carousel-control .icon-prev:before { - content: '\2039'; -} -.carousel-control .icon-next:before { - content: '\203a'; -} - -.carousel-indicators { - position: absolute; - bottom: 10px; - left: 50%; - z-index: 15; - width: 60%; - margin-left: -30%; - padding-left: 0; - list-style: none; - text-align: center; -} -.carousel-indicators li { - display: inline-block; - width: 10px; - height: 10px; - margin: 1px; - text-indent: -999px; - border: 1px solid #fff; - border-radius: 10px; - cursor: pointer; - background-color: #000 \9; - background-color: transparent; -} -.carousel-indicators .active { - margin: 0; - width: 12px; - height: 12px; - background-color: #fff; -} - -.carousel-caption { - position: absolute; - left: 15%; - right: 15%; - bottom: 20px; - z-index: 10; - padding-top: 20px; - padding-bottom: 20px; - color: #fff; - text-align: center; - text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); -} -.carousel-caption .btn { - text-shadow: none; -} - -@media screen and (min-width: 768px) { - .carousel-control .glyphicon-chevron-left, - .carousel-control .glyphicon-chevron-right, - .carousel-control .icon-prev, - .carousel-control .icon-next { - width: 30px; - height: 30px; - margin-top: -15px; - font-size: 30px; - } - .carousel-control .glyphicon-chevron-left, - .carousel-control .icon-prev { - margin-left: -15px; - } - .carousel-control .glyphicon-chevron-right, - .carousel-control .icon-next { - margin-right: -15px; - } - - .carousel-caption { - left: 20%; - right: 20%; - padding-bottom: 30px; - } - - .carousel-indicators { - bottom: 20px; - } -} -.clearfix:before, .clearfix:after { - content: " "; - display: table; -} -.clearfix:after { - clear: both; -} - -.center-block { - display: block; - margin-left: auto; - margin-right: auto; -} - -.pull-right { - float: right !important; -} - -.pull-left { - float: left !important; -} - -.hide { - display: none !important; -} - -.show { - display: block !important; -} - -.invisible { - visibility: hidden; -} - -.text-hide { - font: 0/0 a; - color: transparent; - text-shadow: none; - background-color: transparent; - border: 0; -} - -.hidden { - display: none !important; -} - -.affix { - position: fixed; -} - -@-ms-viewport { - width: device-width; -} -.visible-xs { - display: none !important; -} - -.visible-sm { - display: none !important; -} - -.visible-md { - display: none !important; -} - -.visible-lg { - display: none !important; -} - -.visible-xs-block, -.visible-xs-inline, -.visible-xs-inline-block, -.visible-sm-block, -.visible-sm-inline, -.visible-sm-inline-block, -.visible-md-block, -.visible-md-inline, -.visible-md-inline-block, -.visible-lg-block, -.visible-lg-inline, -.visible-lg-inline-block { - display: none !important; -} - -@media (max-width: 767px) { - .visible-xs { - display: block !important; - } - - table.visible-xs { - display: table !important; - } - - tr.visible-xs { - display: table-row !important; - } - - th.visible-xs, - td.visible-xs { - display: table-cell !important; - } -} -@media (max-width: 767px) { - .visible-xs-block { - display: block !important; - } -} - -@media (max-width: 767px) { - .visible-xs-inline { - display: inline !important; - } -} - -@media (max-width: 767px) { - .visible-xs-inline-block { - display: inline-block !important; - } -} - -@media (min-width: 768px) and (max-width: 991px) { - .visible-sm { - display: block !important; - } - - table.visible-sm { - display: table !important; - } - - tr.visible-sm { - display: table-row !important; - } - - th.visible-sm, - td.visible-sm { - display: table-cell !important; - } -} -@media (min-width: 768px) and (max-width: 991px) { - .visible-sm-block { - display: block !important; - } -} - -@media (min-width: 768px) and (max-width: 991px) { - .visible-sm-inline { - display: inline !important; - } -} - -@media (min-width: 768px) and (max-width: 991px) { - .visible-sm-inline-block { - display: inline-block !important; - } -} - -@media (min-width: 992px) and (max-width: 1199px) { - .visible-md { - display: block !important; - } - - table.visible-md { - display: table !important; - } - - tr.visible-md { - display: table-row !important; - } - - th.visible-md, - td.visible-md { - display: table-cell !important; - } -} -@media (min-width: 992px) and (max-width: 1199px) { - .visible-md-block { - display: block !important; - } -} - -@media (min-width: 992px) and (max-width: 1199px) { - .visible-md-inline { - display: inline !important; - } -} - -@media (min-width: 992px) and (max-width: 1199px) { - .visible-md-inline-block { - display: inline-block !important; - } -} - -@media (min-width: 1200px) { - .visible-lg { - display: block !important; - } - - table.visible-lg { - display: table !important; - } - - tr.visible-lg { - display: table-row !important; - } - - th.visible-lg, - td.visible-lg { - display: table-cell !important; - } -} -@media (min-width: 1200px) { - .visible-lg-block { - display: block !important; - } -} - -@media (min-width: 1200px) { - .visible-lg-inline { - display: inline !important; - } -} - -@media (min-width: 1200px) { - .visible-lg-inline-block { - display: inline-block !important; - } -} - -@media (max-width: 767px) { - .hidden-xs { - display: none !important; - } -} -@media (min-width: 768px) and (max-width: 991px) { - .hidden-sm { - display: none !important; - } -} -@media (min-width: 992px) and (max-width: 1199px) { - .hidden-md { - display: none !important; - } -} -@media (min-width: 1200px) { - .hidden-lg { - display: none !important; - } -} -.visible-print { - display: none !important; -} - -@media print { - .visible-print { - display: block !important; - } - - table.visible-print { - display: table !important; - } - - tr.visible-print { - display: table-row !important; - } - - th.visible-print, - td.visible-print { - display: table-cell !important; - } -} -.visible-print-block { - display: none !important; -} -@media print { - .visible-print-block { - display: block !important; - } -} - -.visible-print-inline { - display: none !important; -} -@media print { - .visible-print-inline { - display: inline !important; - } -} - -.visible-print-inline-block { - display: none !important; -} -@media print { - .visible-print-inline-block { - display: inline-block !important; - } -} - -@media print { - .hidden-print { - display: none !important; - } -} - -/*# sourceMappingURL=bootstrap.css.map */ diff --git a/html/css/bootstrap.css b/html/css/bootstrap.css deleted file mode 100644 index 37f8defd..00000000 --- a/html/css/bootstrap.css +++ /dev/null @@ -1,3383 +0,0 @@ -/*! normalize.css v3.0.2 | MIT License | git.io/normalize */ -html { - font-family: sans-serif; - -ms-text-size-adjust: 100%; - -webkit-text-size-adjust: 100%; -} -body { - margin: 0; -} -article, -aside, -details, -figcaption, -figure, -footer, -header, -hgroup, -main, -menu, -nav, -section, -summary { - display: block; -} -audio, -canvas, -progress, -video { - display: inline-block; - vertical-align: baseline; -} -audio:not([controls]) { - display: none; - height: 0; -} -[hidden], -template { - display: none; -} -a { - background-color: transparent; -} -a:active, -a:hover { - outline: 0; -} -abbr[title] { - border-bottom: 1px dotted; -} -b, -strong { - font-weight: bold; -} -dfn { - font-style: italic; -} -h1 { - font-size: 2em; - margin: 0.67em 0; -} -mark { - background: #ff0; - color: #000; -} -small { - font-size: 80%; -} -sub, -sup { - font-size: 75%; - line-height: 0; - position: relative; - vertical-align: baseline; -} -sup { - top: -0.5em; -} -sub { - bottom: -0.25em; -} -img { - border: 0; -} -svg:not(:root) { - overflow: hidden; -} -figure { - margin: 1em 40px; -} -hr { - -moz-box-sizing: content-box; - box-sizing: content-box; - height: 0; -} -pre { - overflow: auto; -} -code, -kbd, -pre, -samp { - font-family: monospace, monospace; - font-size: 1em; -} -button, -input, -optgroup, -select, -textarea { - color: inherit; - font: inherit; - margin: 0; -} -button { - overflow: visible; -} -button, -select { - text-transform: none; -} -button, -html input[type="button"], -input[type="reset"], -input[type="submit"] { - -webkit-appearance: button; - cursor: pointer; -} -button[disabled], -html input[disabled] { - cursor: default; -} -button::-moz-focus-inner, -input::-moz-focus-inner { - border: 0; - padding: 0; -} -input { - line-height: normal; -} -input[type="checkbox"], -input[type="radio"] { - box-sizing: border-box; - padding: 0; -} -input[type="number"]::-webkit-inner-spin-button, -input[type="number"]::-webkit-outer-spin-button { - height: auto; -} -input[type="search"] { - -webkit-appearance: textfield; - -moz-box-sizing: content-box; - -webkit-box-sizing: content-box; - box-sizing: content-box; -} -input[type="search"]::-webkit-search-cancel-button, -input[type="search"]::-webkit-search-decoration { - -webkit-appearance: none; -} -fieldset { - border: 1px solid #c0c0c0; - margin: 0 2px; - padding: 0.35em 0.625em 0.75em; -} -legend { - border: 0; - padding: 0; -} -textarea { - overflow: auto; -} -optgroup { - font-weight: bold; -} -table { - border-collapse: collapse; - border-spacing: 0; -} -td, -th { - padding: 0; -} -/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */ -@media print { - *, - *:before, - *:after { - background: transparent !important; - color: #000 !important; - box-shadow: none !important; - text-shadow: none !important; - } - a, - a:visited { - text-decoration: underline; - } - a[href]:after { - content: " (" attr(href) ")"; - } - abbr[title]:after { - content: " (" attr(title) ")"; - } - a[href^="#"]:after, - a[href^="javascript:"]:after { - content: ""; - } - pre, - blockquote { - border: 1px solid #999; - page-break-inside: avoid; - } - thead { - display: table-header-group; - } - tr, - img { - page-break-inside: avoid; - } - img { - max-width: 100% !important; - } - p, - h2, - h3 { - orphans: 3; - widows: 3; - } - h2, - h3 { - page-break-after: avoid; - } - select { - background: #fff !important; - } - .navbar { - display: none; - } - .btn > .caret, - .dropup > .btn > .caret { - border-top-color: #000 !important; - } - .label { - border: 1px solid #000; - } - .table { - border-collapse: collapse !important; - } - .table td, - .table th { - background-color: #fff !important; - } - .table-bordered th, - .table-bordered td { - border: 1px solid #ddd !important; - } -} -@font-face { - font-family: 'Glyphicons Halflings'; - src: url('../fonts/glyphicons-halflings-regular.eot'); - src: url('../fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/glyphicons-halflings-regular.woff') format('woff'), url('../fonts/glyphicons-halflings-regular.ttf') format('truetype'), url('../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular') format('svg'); -} -.glyphicon { - position: relative; - top: 1px; - display: inline-block; - font-family: 'Glyphicons Halflings'; - font-style: normal; - font-weight: normal; - line-height: 1; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; -} -.glyphicon-asterisk:before { - content: "\2a"; -} -.glyphicon-plus:before { - content: "\2b"; -} -.glyphicon-euro:before, -.glyphicon-eur:before { - content: "\20ac"; -} -.glyphicon-minus:before { - content: "\2212"; -} -.glyphicon-cloud:before { - content: "\2601"; -} -.glyphicon-envelope:before { - content: "\2709"; -} -.glyphicon-pencil:before { - content: "\270f"; -} -.glyphicon-glass:before { - content: "\e001"; -} -.glyphicon-music:before { - content: "\e002"; -} -.glyphicon-search:before { - content: "\e003"; -} -.glyphicon-heart:before { - content: "\e005"; -} -.glyphicon-star:before { - content: "\e006"; -} -.glyphicon-star-empty:before { - content: "\e007"; -} -.glyphicon-user:before { - content: "\e008"; -} -.glyphicon-film:before { - content: "\e009"; -} -.glyphicon-th-large:before { - content: "\e010"; -} -.glyphicon-th:before { - content: "\e011"; -} -.glyphicon-th-list:before { - content: "\e012"; -} -.glyphicon-ok:before { - content: "\e013"; -} -.glyphicon-remove:before { - content: "\e014"; -} -.glyphicon-zoom-in:before { - content: "\e015"; -} -.glyphicon-zoom-out:before { - content: "\e016"; -} -.glyphicon-off:before { - content: "\e017"; -} -.glyphicon-signal:before { - content: "\e018"; -} -.glyphicon-cog:before { - content: "\e019"; -} -.glyphicon-trash:before { - content: "\e020"; -} -.glyphicon-home:before { - content: "\e021"; -} -.glyphicon-file:before { - content: "\e022"; -} -.glyphicon-time:before { - content: "\e023"; -} -.glyphicon-road:before { - content: "\e024"; -} -.glyphicon-download-alt:before { - content: "\e025"; -} -.glyphicon-download:before { - content: "\e026"; -} -.glyphicon-upload:before { - content: "\e027"; -} -.glyphicon-inbox:before { - content: "\e028"; -} -.glyphicon-play-circle:before { - content: "\e029"; -} -.glyphicon-repeat:before { - content: "\e030"; -} -.glyphicon-refresh:before { - content: "\e031"; -} -.glyphicon-list-alt:before { - content: "\e032"; -} -.glyphicon-lock:before { - content: "\e033"; -} -.glyphicon-flag:before { - content: "\e034"; -} -.glyphicon-headphones:before { - content: "\e035"; -} -.glyphicon-volume-off:before { - content: "\e036"; -} -.glyphicon-volume-down:before { - content: "\e037"; -} -.glyphicon-volume-up:before { - content: "\e038"; -} -.glyphicon-qrcode:before { - content: "\e039"; -} -.glyphicon-barcode:before { - content: "\e040"; -} -.glyphicon-tag:before { - content: "\e041"; -} -.glyphicon-tags:before { - content: "\e042"; -} -.glyphicon-book:before { - content: "\e043"; -} -.glyphicon-bookmark:before { - content: "\e044"; -} -.glyphicon-print:before { - content: "\e045"; -} -.glyphicon-camera:before { - content: "\e046"; -} -.glyphicon-font:before { - content: "\e047"; -} -.glyphicon-bold:before { - content: "\e048"; -} -.glyphicon-italic:before { - content: "\e049"; -} -.glyphicon-text-height:before { - content: "\e050"; -} -.glyphicon-text-width:before { - content: "\e051"; -} -.glyphicon-align-left:before { - content: "\e052"; -} -.glyphicon-align-center:before { - content: "\e053"; -} -.glyphicon-align-right:before { - content: "\e054"; -} -.glyphicon-align-justify:before { - content: "\e055"; -} -.glyphicon-list:before { - content: "\e056"; -} -.glyphicon-indent-left:before { - content: "\e057"; -} -.glyphicon-indent-right:before { - content: "\e058"; -} -.glyphicon-facetime-video:before { - content: "\e059"; -} -.glyphicon-picture:before { - content: "\e060"; -} -.glyphicon-map-marker:before { - content: "\e062"; -} -.glyphicon-adjust:before { - content: "\e063"; -} -.glyphicon-tint:before { - content: "\e064"; -} -.glyphicon-edit:before { - content: "\e065"; -} -.glyphicon-share:before { - content: "\e066"; -} -.glyphicon-check:before { - content: "\e067"; -} -.glyphicon-move:before { - content: "\e068"; -} -.glyphicon-step-backward:before { - content: "\e069"; -} -.glyphicon-fast-backward:before { - content: "\e070"; -} -.glyphicon-backward:before { - content: "\e071"; -} -.glyphicon-play:before { - content: "\e072"; -} -.glyphicon-pause:before { - content: "\e073"; -} -.glyphicon-stop:before { - content: "\e074"; -} -.glyphicon-forward:before { - content: "\e075"; -} -.glyphicon-fast-forward:before { - content: "\e076"; -} -.glyphicon-step-forward:before { - content: "\e077"; -} -.glyphicon-eject:before { - content: "\e078"; -} -.glyphicon-chevron-left:before { - content: "\e079"; -} -.glyphicon-chevron-right:before { - content: "\e080"; -} -.glyphicon-plus-sign:before { - content: "\e081"; -} -.glyphicon-minus-sign:before { - content: "\e082"; -} -.glyphicon-remove-sign:before { - content: "\e083"; -} -.glyphicon-ok-sign:before { - content: "\e084"; -} -.glyphicon-question-sign:before { - content: "\e085"; -} -.glyphicon-info-sign:before { - content: "\e086"; -} -.glyphicon-screenshot:before { - content: "\e087"; -} -.glyphicon-remove-circle:before { - content: "\e088"; -} -.glyphicon-ok-circle:before { - content: "\e089"; -} -.glyphicon-ban-circle:before { - content: "\e090"; -} -.glyphicon-arrow-left:before { - content: "\e091"; -} -.glyphicon-arrow-right:before { - content: "\e092"; -} -.glyphicon-arrow-up:before { - content: "\e093"; -} -.glyphicon-arrow-down:before { - content: "\e094"; -} -.glyphicon-share-alt:before { - content: "\e095"; -} -.glyphicon-resize-full:before { - content: "\e096"; -} -.glyphicon-resize-small:before { - content: "\e097"; -} -.glyphicon-exclamation-sign:before { - content: "\e101"; -} -.glyphicon-gift:before { - content: "\e102"; -} -.glyphicon-leaf:before { - content: "\e103"; -} -.glyphicon-fire:before { - content: "\e104"; -} -.glyphicon-eye-open:before { - content: "\e105"; -} -.glyphicon-eye-close:before { - content: "\e106"; -} -.glyphicon-warning-sign:before { - content: "\e107"; -} -.glyphicon-plane:before { - content: "\e108"; -} -.glyphicon-calendar:before { - content: "\e109"; -} -.glyphicon-random:before { - content: "\e110"; -} -.glyphicon-comment:before { - content: "\e111"; -} -.glyphicon-magnet:before { - content: "\e112"; -} -.glyphicon-chevron-up:before { - content: "\e113"; -} -.glyphicon-chevron-down:before { - content: "\e114"; -} -.glyphicon-retweet:before { - content: "\e115"; -} -.glyphicon-shopping-cart:before { - content: "\e116"; -} -.glyphicon-folder-close:before { - content: "\e117"; -} -.glyphicon-folder-open:before { - content: "\e118"; -} -.glyphicon-resize-vertical:before { - content: "\e119"; -} -.glyphicon-resize-horizontal:before { - content: "\e120"; -} -.glyphicon-hdd:before { - content: "\e121"; -} -.glyphicon-bullhorn:before { - content: "\e122"; -} -.glyphicon-bell:before { - content: "\e123"; -} -.glyphicon-certificate:before { - content: "\e124"; -} -.glyphicon-thumbs-up:before { - content: "\e125"; -} -.glyphicon-thumbs-down:before { - content: "\e126"; -} -.glyphicon-hand-right:before { - content: "\e127"; -} -.glyphicon-hand-left:before { - content: "\e128"; -} -.glyphicon-hand-up:before { - content: "\e129"; -} -.glyphicon-hand-down:before { - content: "\e130"; -} -.glyphicon-circle-arrow-right:before { - content: "\e131"; -} -.glyphicon-circle-arrow-left:before { - content: "\e132"; -} -.glyphicon-circle-arrow-up:before { - content: "\e133"; -} -.glyphicon-circle-arrow-down:before { - content: "\e134"; -} -.glyphicon-globe:before { - content: "\e135"; -} -.glyphicon-wrench:before { - content: "\e136"; -} -.glyphicon-tasks:before { - content: "\e137"; -} -.glyphicon-filter:before { - content: "\e138"; -} -.glyphicon-briefcase:before { - content: "\e139"; -} -.glyphicon-fullscreen:before { - content: "\e140"; -} -.glyphicon-dashboard:before { - content: "\e141"; -} -.glyphicon-paperclip:before { - content: "\e142"; -} -.glyphicon-heart-empty:before { - content: "\e143"; -} -.glyphicon-link:before { - content: "\e144"; -} -.glyphicon-phone:before { - content: "\e145"; -} -.glyphicon-pushpin:before { - content: "\e146"; -} -.glyphicon-usd:before { - content: "\e148"; -} -.glyphicon-gbp:before { - content: "\e149"; -} -.glyphicon-sort:before { - content: "\e150"; -} -.glyphicon-sort-by-alphabet:before { - content: "\e151"; -} -.glyphicon-sort-by-alphabet-alt:before { - content: "\e152"; -} -.glyphicon-sort-by-order:before { - content: "\e153"; -} -.glyphicon-sort-by-order-alt:before { - content: "\e154"; -} -.glyphicon-sort-by-attributes:before { - content: "\e155"; -} -.glyphicon-sort-by-attributes-alt:before { - content: "\e156"; -} -.glyphicon-unchecked:before { - content: "\e157"; -} -.glyphicon-expand:before { - content: "\e158"; -} -.glyphicon-collapse-down:before { - content: "\e159"; -} -.glyphicon-collapse-up:before { - content: "\e160"; -} -.glyphicon-log-in:before { - content: "\e161"; -} -.glyphicon-flash:before { - content: "\e162"; -} -.glyphicon-log-out:before { - content: "\e163"; -} -.glyphicon-new-window:before { - content: "\e164"; -} -.glyphicon-record:before { - content: "\e165"; -} -.glyphicon-save:before { - content: "\e166"; -} -.glyphicon-open:before { - content: "\e167"; -} -.glyphicon-saved:before { - content: "\e168"; -} -.glyphicon-import:before { - content: "\e169"; -} -.glyphicon-export:before { - content: "\e170"; -} -.glyphicon-send:before { - content: "\e171"; -} -.glyphicon-floppy-disk:before { - content: "\e172"; -} -.glyphicon-floppy-saved:before { - content: "\e173"; -} -.glyphicon-floppy-remove:before { - content: "\e174"; -} -.glyphicon-floppy-save:before { - content: "\e175"; -} -.glyphicon-floppy-open:before { - content: "\e176"; -} -.glyphicon-credit-card:before { - content: "\e177"; -} -.glyphicon-transfer:before { - content: "\e178"; -} -.glyphicon-cutlery:before { - content: "\e179"; -} -.glyphicon-header:before { - content: "\e180"; -} -.glyphicon-compressed:before { - content: "\e181"; -} -.glyphicon-earphone:before { - content: "\e182"; -} -.glyphicon-phone-alt:before { - content: "\e183"; -} -.glyphicon-tower:before { - content: "\e184"; -} -.glyphicon-stats:before { - content: "\e185"; -} -.glyphicon-sd-video:before { - content: "\e186"; -} -.glyphicon-hd-video:before { - content: "\e187"; -} -.glyphicon-subtitles:before { - content: "\e188"; -} -.glyphicon-sound-stereo:before { - content: "\e189"; -} -.glyphicon-sound-dolby:before { - content: "\e190"; -} -.glyphicon-sound-5-1:before { - content: "\e191"; -} -.glyphicon-sound-6-1:before { - content: "\e192"; -} -.glyphicon-sound-7-1:before { - content: "\e193"; -} -.glyphicon-copyright-mark:before { - content: "\e194"; -} -.glyphicon-registration-mark:before { - content: "\e195"; -} -.glyphicon-cloud-download:before { - content: "\e197"; -} -.glyphicon-cloud-upload:before { - content: "\e198"; -} -.glyphicon-tree-conifer:before { - content: "\e199"; -} -.glyphicon-tree-deciduous:before { - content: "\e200"; -} -* { - -webkit-box-sizing: border-box; - -moz-box-sizing: border-box; - box-sizing: border-box; -} -*:before, -*:after { - -webkit-box-sizing: border-box; - -moz-box-sizing: border-box; - box-sizing: border-box; -} -html { - font-size: 10px; - -webkit-tap-highlight-color: rgba(0, 0, 0, 0); -} -body { - font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; - font-size: 14px; - line-height: 1.42857143; - color: #333333; - background-color: #ffffff; -} -input, -button, -select, -textarea { - font-family: inherit; - font-size: inherit; - line-height: inherit; -} -a { - color: #337ab7; - text-decoration: none; -} -a:hover, -a:focus { - color: #23527c; - text-decoration: underline; -} -a:focus { - outline: thin dotted; - outline: 5px auto -webkit-focus-ring-color; - outline-offset: -2px; -} -figure { - margin: 0; -} -img { - vertical-align: middle; -} -.img-responsive { - display: block; - max-width: 100%; - height: auto; -} -.img-rounded { - border-radius: 6px; -} -.img-thumbnail { - padding: 4px; - line-height: 1.42857143; - background-color: #ffffff; - border: 1px solid #dddddd; - border-radius: 4px; - -webkit-transition: all 0.2s ease-in-out; - -o-transition: all 0.2s ease-in-out; - transition: all 0.2s ease-in-out; - display: inline-block; - max-width: 100%; - height: auto; -} -.img-circle { - border-radius: 50%; -} -hr { - margin-top: 20px; - margin-bottom: 20px; - border: 0; - border-top: 1px solid #eeeeee; -} -.sr-only { - position: absolute; - width: 1px; - height: 1px; - margin: -1px; - padding: 0; - overflow: hidden; - clip: rect(0, 0, 0, 0); - border: 0; -} -.sr-only-focusable:active, -.sr-only-focusable:focus { - position: static; - width: auto; - height: auto; - margin: 0; - overflow: visible; - clip: auto; -} -h1, -h2, -h3, -h4, -h5, -h6, -.h1, -.h2, -.h3, -.h4, -.h5, -.h6 { - font-family: inherit; - font-weight: 500; - line-height: 1.1; - color: inherit; -} -h1 small, -h2 small, -h3 small, -h4 small, -h5 small, -h6 small, -.h1 small, -.h2 small, -.h3 small, -.h4 small, -.h5 small, -.h6 small, -h1 .small, -h2 .small, -h3 .small, -h4 .small, -h5 .small, -h6 .small, -.h1 .small, -.h2 .small, -.h3 .small, -.h4 .small, -.h5 .small, -.h6 .small { - font-weight: normal; - line-height: 1; - color: #777777; -} -h1, -.h1, -h2, -.h2, -h3, -.h3 { - margin-top: 20px; - margin-bottom: 10px; -} -h1 small, -.h1 small, -h2 small, -.h2 small, -h3 small, -.h3 small, -h1 .small, -.h1 .small, -h2 .small, -.h2 .small, -h3 .small, -.h3 .small { - font-size: 65%; -} -h4, -.h4, -h5, -.h5, -h6, -.h6 { - margin-top: 10px; - margin-bottom: 10px; -} -h4 small, -.h4 small, -h5 small, -.h5 small, -h6 small, -.h6 small, -h4 .small, -.h4 .small, -h5 .small, -.h5 .small, -h6 .small, -.h6 .small { - font-size: 75%; -} -h1, -.h1 { - font-size: 36px; -} -h2, -.h2 { - font-size: 30px; -} -h3, -.h3 { - font-size: 24px; -} -h4, -.h4 { - font-size: 18px; -} -h5, -.h5 { - font-size: 14px; -} -h6, -.h6 { - font-size: 12px; -} -p { - margin: 0 0 10px; -} -.lead { - margin-bottom: 20px; - font-size: 16px; - font-weight: 300; - line-height: 1.4; -} -@media (min-width: 768px) { - .lead { - font-size: 21px; - } -} -small, -.small { - font-size: 85%; -} -mark, -.mark { - background-color: #fcf8e3; - padding: .2em; -} -.text-left { - text-align: left; -} -.text-right { - text-align: right; -} -.text-center { - text-align: center; -} -.text-justify { - text-align: justify; -} -.text-nowrap { - white-space: nowrap; -} -.text-lowercase { - text-transform: lowercase; -} -.text-uppercase { - text-transform: uppercase; -} -.text-capitalize { - text-transform: capitalize; -} -.text-muted { - color: #777777; -} -.text-primary { - color: #337ab7; -} -a.text-primary:hover { - color: #286090; -} -.text-success { - color: #3c763d; -} -a.text-success:hover { - color: #2b542c; -} -.text-info { - color: #31708f; -} -a.text-info:hover { - color: #245269; -} -.text-warning { - color: #8a6d3b; -} -a.text-warning:hover { - color: #66512c; -} -.text-danger { - color: #a94442; -} -a.text-danger:hover { - color: #843534; -} -.bg-primary { - color: #fff; - background-color: #337ab7; -} -a.bg-primary:hover { - background-color: #286090; -} -.bg-success { - background-color: #dff0d8; -} -a.bg-success:hover { - background-color: #c1e2b3; -} -.bg-info { - background-color: #d9edf7; -} -a.bg-info:hover { - background-color: #afd9ee; -} -.bg-warning { - background-color: #fcf8e3; -} -a.bg-warning:hover { - background-color: #f7ecb5; -} -.bg-danger { - background-color: #f2dede; -} -a.bg-danger:hover { - background-color: #e4b9b9; -} -.page-header { - padding-bottom: 9px; - margin: 40px 0 20px; - border-bottom: 1px solid #eeeeee; -} -ul, -ol { - margin-top: 0; - margin-bottom: 10px; -} -ul ul, -ol ul, -ul ol, -ol ol { - margin-bottom: 0; -} -.list-unstyled { - padding-left: 0; - list-style: none; -} -.list-inline { - padding-left: 0; - list-style: none; - margin-left: -5px; -} -.list-inline > li { - display: inline-block; - padding-left: 5px; - padding-right: 5px; -} -dl { - margin-top: 0; - margin-bottom: 20px; -} -dt, -dd { - line-height: 1.42857143; -} -dt { - font-weight: bold; -} -dd { - margin-left: 0; -} -@media (min-width: 768px) { - .dl-horizontal dt { - float: left; - width: 160px; - clear: left; - text-align: right; - overflow: hidden; - text-overflow: ellipsis; - white-space: nowrap; - } - .dl-horizontal dd { - margin-left: 180px; - } -} -abbr[title], -abbr[data-original-title] { - cursor: help; - border-bottom: 1px dotted #777777; -} -.initialism { - font-size: 90%; - text-transform: uppercase; -} -blockquote { - padding: 10px 20px; - margin: 0 0 20px; - font-size: 17.5px; - border-left: 5px solid #eeeeee; -} -blockquote p:last-child, -blockquote ul:last-child, -blockquote ol:last-child { - margin-bottom: 0; -} -blockquote footer, -blockquote small, -blockquote .small { - display: block; - font-size: 80%; - line-height: 1.42857143; - color: #777777; -} -blockquote footer:before, -blockquote small:before, -blockquote .small:before { - content: '\2014 \00A0'; -} -.blockquote-reverse, -blockquote.pull-right { - padding-right: 15px; - padding-left: 0; - border-right: 5px solid #eeeeee; - border-left: 0; - text-align: right; -} -.blockquote-reverse footer:before, -blockquote.pull-right footer:before, -.blockquote-reverse small:before, -blockquote.pull-right small:before, -.blockquote-reverse .small:before, -blockquote.pull-right .small:before { - content: ''; -} -.blockquote-reverse footer:after, -blockquote.pull-right footer:after, -.blockquote-reverse small:after, -blockquote.pull-right small:after, -.blockquote-reverse .small:after, -blockquote.pull-right .small:after { - content: '\00A0 \2014'; -} -address { - margin-bottom: 20px; - font-style: normal; - line-height: 1.42857143; -} -code, -kbd, -pre, -samp { - font-family: Menlo, Monaco, Consolas, "Courier New", monospace; -} -code { - padding: 2px 4px; - font-size: 90%; - color: #c7254e; - background-color: #f9f2f4; - border-radius: 4px; -} -kbd { - padding: 2px 4px; - font-size: 90%; - color: #ffffff; - background-color: #333333; - border-radius: 3px; - box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25); -} -kbd kbd { - padding: 0; - font-size: 100%; - font-weight: bold; - box-shadow: none; -} -pre { - display: block; - padding: 9.5px; - margin: 0 0 10px; - font-size: 13px; - line-height: 1.42857143; - word-break: break-all; - word-wrap: break-word; - color: #333333; - background-color: #f5f5f5; - border: 1px solid #cccccc; - border-radius: 4px; -} -pre code { - padding: 0; - font-size: inherit; - color: inherit; - white-space: pre-wrap; - background-color: transparent; - border-radius: 0; -} -.pre-scrollable { - max-height: 340px; - overflow-y: scroll; -} -.container { - margin-right: auto; - margin-left: auto; - padding-left: 15px; - padding-right: 15px; -} -@media (min-width: 768px) { - .container { - width: 750px; - } -} -@media (min-width: 992px) { - .container { - width: 970px; - } -} -@media (min-width: 1200px) { - .container { - width: 1170px; - } -} -.container-fluid { - margin-right: auto; - margin-left: auto; - padding-left: 15px; - padding-right: 15px; -} -.row { - margin-left: -15px; - margin-right: -15px; -} -.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 { - position: relative; - min-height: 1px; - padding-left: 15px; - padding-right: 15px; -} -.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 { - float: left; -} -.col-xs-12 { - width: 100%; -} -.col-xs-11 { - width: 91.66666667%; -} -.col-xs-10 { - width: 83.33333333%; -} -.col-xs-9 { - width: 75%; -} -.col-xs-8 { - width: 66.66666667%; -} -.col-xs-7 { - width: 58.33333333%; -} -.col-xs-6 { - width: 50%; -} -.col-xs-5 { - width: 41.66666667%; -} -.col-xs-4 { - width: 33.33333333%; -} -.col-xs-3 { - width: 25%; -} -.col-xs-2 { - width: 16.66666667%; -} -.col-xs-1 { - width: 8.33333333%; -} -.col-xs-pull-12 { - right: 100%; -} -.col-xs-pull-11 { - right: 91.66666667%; -} -.col-xs-pull-10 { - right: 83.33333333%; -} -.col-xs-pull-9 { - right: 75%; -} -.col-xs-pull-8 { - right: 66.66666667%; -} -.col-xs-pull-7 { - right: 58.33333333%; -} -.col-xs-pull-6 { - right: 50%; -} -.col-xs-pull-5 { - right: 41.66666667%; -} -.col-xs-pull-4 { - right: 33.33333333%; -} -.col-xs-pull-3 { - right: 25%; -} -.col-xs-pull-2 { - right: 16.66666667%; -} -.col-xs-pull-1 { - right: 8.33333333%; -} -.col-xs-pull-0 { - right: auto; -} -.col-xs-push-12 { - left: 100%; -} -.col-xs-push-11 { - left: 91.66666667%; -} -.col-xs-push-10 { - left: 83.33333333%; -} -.col-xs-push-9 { - left: 75%; -} -.col-xs-push-8 { - left: 66.66666667%; -} -.col-xs-push-7 { - left: 58.33333333%; -} -.col-xs-push-6 { - left: 50%; -} -.col-xs-push-5 { - left: 41.66666667%; -} -.col-xs-push-4 { - left: 33.33333333%; -} -.col-xs-push-3 { - left: 25%; -} -.col-xs-push-2 { - left: 16.66666667%; -} -.col-xs-push-1 { - left: 8.33333333%; -} -.col-xs-push-0 { - left: auto; -} -.col-xs-offset-12 { - margin-left: 100%; -} -.col-xs-offset-11 { - margin-left: 91.66666667%; -} -.col-xs-offset-10 { - margin-left: 83.33333333%; -} -.col-xs-offset-9 { - margin-left: 75%; -} -.col-xs-offset-8 { - margin-left: 66.66666667%; -} -.col-xs-offset-7 { - margin-left: 58.33333333%; -} -.col-xs-offset-6 { - margin-left: 50%; -} -.col-xs-offset-5 { - margin-left: 41.66666667%; -} -.col-xs-offset-4 { - margin-left: 33.33333333%; -} -.col-xs-offset-3 { - margin-left: 25%; -} -.col-xs-offset-2 { - margin-left: 16.66666667%; -} -.col-xs-offset-1 { - margin-left: 8.33333333%; -} -.col-xs-offset-0 { - margin-left: 0%; -} -@media (min-width: 768px) { - .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 { - float: left; - } - .col-sm-12 { - width: 100%; - } - .col-sm-11 { - width: 91.66666667%; - } - .col-sm-10 { - width: 83.33333333%; - } - .col-sm-9 { - width: 75%; - } - .col-sm-8 { - width: 66.66666667%; - } - .col-sm-7 { - width: 58.33333333%; - } - .col-sm-6 { - width: 50%; - } - .col-sm-5 { - width: 41.66666667%; - } - .col-sm-4 { - width: 33.33333333%; - } - .col-sm-3 { - width: 25%; - } - .col-sm-2 { - width: 16.66666667%; - } - .col-sm-1 { - width: 8.33333333%; - } - .col-sm-pull-12 { - right: 100%; - } - .col-sm-pull-11 { - right: 91.66666667%; - } - .col-sm-pull-10 { - right: 83.33333333%; - } - .col-sm-pull-9 { - right: 75%; - } - .col-sm-pull-8 { - right: 66.66666667%; - } - .col-sm-pull-7 { - right: 58.33333333%; - } - .col-sm-pull-6 { - right: 50%; - } - .col-sm-pull-5 { - right: 41.66666667%; - } - .col-sm-pull-4 { - right: 33.33333333%; - } - .col-sm-pull-3 { - right: 25%; - } - .col-sm-pull-2 { - right: 16.66666667%; - } - .col-sm-pull-1 { - right: 8.33333333%; - } - .col-sm-pull-0 { - right: auto; - } - .col-sm-push-12 { - left: 100%; - } - .col-sm-push-11 { - left: 91.66666667%; - } - .col-sm-push-10 { - left: 83.33333333%; - } - .col-sm-push-9 { - left: 75%; - } - .col-sm-push-8 { - left: 66.66666667%; - } - .col-sm-push-7 { - left: 58.33333333%; - } - .col-sm-push-6 { - left: 50%; - } - .col-sm-push-5 { - left: 41.66666667%; - } - .col-sm-push-4 { - left: 33.33333333%; - } - .col-sm-push-3 { - left: 25%; - } - .col-sm-push-2 { - left: 16.66666667%; - } - .col-sm-push-1 { - left: 8.33333333%; - } - .col-sm-push-0 { - left: auto; - } - .col-sm-offset-12 { - margin-left: 100%; - } - .col-sm-offset-11 { - margin-left: 91.66666667%; - } - .col-sm-offset-10 { - margin-left: 83.33333333%; - } - .col-sm-offset-9 { - margin-left: 75%; - } - .col-sm-offset-8 { - margin-left: 66.66666667%; - } - .col-sm-offset-7 { - margin-left: 58.33333333%; - } - .col-sm-offset-6 { - margin-left: 50%; - } - .col-sm-offset-5 { - margin-left: 41.66666667%; - } - .col-sm-offset-4 { - margin-left: 33.33333333%; - } - .col-sm-offset-3 { - margin-left: 25%; - } - .col-sm-offset-2 { - margin-left: 16.66666667%; - } - .col-sm-offset-1 { - margin-left: 8.33333333%; - } - .col-sm-offset-0 { - margin-left: 0%; - } -} -@media (min-width: 992px) { - .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 { - float: left; - } - .col-md-12 { - width: 100%; - } - .col-md-11 { - width: 91.66666667%; - } - .col-md-10 { - width: 83.33333333%; - } - .col-md-9 { - width: 75%; - } - .col-md-8 { - width: 66.66666667%; - } - .col-md-7 { - width: 58.33333333%; - } - .col-md-6 { - width: 50%; - } - .col-md-5 { - width: 41.66666667%; - } - .col-md-4 { - width: 33.33333333%; - } - .col-md-3 { - width: 25%; - } - .col-md-2 { - width: 16.66666667%; - } - .col-md-1 { - width: 8.33333333%; - } - .col-md-pull-12 { - right: 100%; - } - .col-md-pull-11 { - right: 91.66666667%; - } - .col-md-pull-10 { - right: 83.33333333%; - } - .col-md-pull-9 { - right: 75%; - } - .col-md-pull-8 { - right: 66.66666667%; - } - .col-md-pull-7 { - right: 58.33333333%; - } - .col-md-pull-6 { - right: 50%; - } - .col-md-pull-5 { - right: 41.66666667%; - } - .col-md-pull-4 { - right: 33.33333333%; - } - .col-md-pull-3 { - right: 25%; - } - .col-md-pull-2 { - right: 16.66666667%; - } - .col-md-pull-1 { - right: 8.33333333%; - } - .col-md-pull-0 { - right: auto; - } - .col-md-push-12 { - left: 100%; - } - .col-md-push-11 { - left: 91.66666667%; - } - .col-md-push-10 { - left: 83.33333333%; - } - .col-md-push-9 { - left: 75%; - } - .col-md-push-8 { - left: 66.66666667%; - } - .col-md-push-7 { - left: 58.33333333%; - } - .col-md-push-6 { - left: 50%; - } - .col-md-push-5 { - left: 41.66666667%; - } - .col-md-push-4 { - left: 33.33333333%; - } - .col-md-push-3 { - left: 25%; - } - .col-md-push-2 { - left: 16.66666667%; - } - .col-md-push-1 { - left: 8.33333333%; - } - .col-md-push-0 { - left: auto; - } - .col-md-offset-12 { - margin-left: 100%; - } - .col-md-offset-11 { - margin-left: 91.66666667%; - } - .col-md-offset-10 { - margin-left: 83.33333333%; - } - .col-md-offset-9 { - margin-left: 75%; - } - .col-md-offset-8 { - margin-left: 66.66666667%; - } - .col-md-offset-7 { - margin-left: 58.33333333%; - } - .col-md-offset-6 { - margin-left: 50%; - } - .col-md-offset-5 { - margin-left: 41.66666667%; - } - .col-md-offset-4 { - margin-left: 33.33333333%; - } - .col-md-offset-3 { - margin-left: 25%; - } - .col-md-offset-2 { - margin-left: 16.66666667%; - } - .col-md-offset-1 { - margin-left: 8.33333333%; - } - .col-md-offset-0 { - margin-left: 0%; - } -} -@media (min-width: 1200px) { - .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 { - float: left; - } - .col-lg-12 { - width: 100%; - } - .col-lg-11 { - width: 91.66666667%; - } - .col-lg-10 { - width: 83.33333333%; - } - .col-lg-9 { - width: 75%; - } - .col-lg-8 { - width: 66.66666667%; - } - .col-lg-7 { - width: 58.33333333%; - } - .col-lg-6 { - width: 50%; - } - .col-lg-5 { - width: 41.66666667%; - } - .col-lg-4 { - width: 33.33333333%; - } - .col-lg-3 { - width: 25%; - } - .col-lg-2 { - width: 16.66666667%; - } - .col-lg-1 { - width: 8.33333333%; - } - .col-lg-pull-12 { - right: 100%; - } - .col-lg-pull-11 { - right: 91.66666667%; - } - .col-lg-pull-10 { - right: 83.33333333%; - } - .col-lg-pull-9 { - right: 75%; - } - .col-lg-pull-8 { - right: 66.66666667%; - } - .col-lg-pull-7 { - right: 58.33333333%; - } - .col-lg-pull-6 { - right: 50%; - } - .col-lg-pull-5 { - right: 41.66666667%; - } - .col-lg-pull-4 { - right: 33.33333333%; - } - .col-lg-pull-3 { - right: 25%; - } - .col-lg-pull-2 { - right: 16.66666667%; - } - .col-lg-pull-1 { - right: 8.33333333%; - } - .col-lg-pull-0 { - right: auto; - } - .col-lg-push-12 { - left: 100%; - } - .col-lg-push-11 { - left: 91.66666667%; - } - .col-lg-push-10 { - left: 83.33333333%; - } - .col-lg-push-9 { - left: 75%; - } - .col-lg-push-8 { - left: 66.66666667%; - } - .col-lg-push-7 { - left: 58.33333333%; - } - .col-lg-push-6 { - left: 50%; - } - .col-lg-push-5 { - left: 41.66666667%; - } - .col-lg-push-4 { - left: 33.33333333%; - } - .col-lg-push-3 { - left: 25%; - } - .col-lg-push-2 { - left: 16.66666667%; - } - .col-lg-push-1 { - left: 8.33333333%; - } - .col-lg-push-0 { - left: auto; - } - .col-lg-offset-12 { - margin-left: 100%; - } - .col-lg-offset-11 { - margin-left: 91.66666667%; - } - .col-lg-offset-10 { - margin-left: 83.33333333%; - } - .col-lg-offset-9 { - margin-left: 75%; - } - .col-lg-offset-8 { - margin-left: 66.66666667%; - } - .col-lg-offset-7 { - margin-left: 58.33333333%; - } - .col-lg-offset-6 { - margin-left: 50%; - } - .col-lg-offset-5 { - margin-left: 41.66666667%; - } - .col-lg-offset-4 { - margin-left: 33.33333333%; - } - .col-lg-offset-3 { - margin-left: 25%; - } - .col-lg-offset-2 { - margin-left: 16.66666667%; - } - .col-lg-offset-1 { - margin-left: 8.33333333%; - } - .col-lg-offset-0 { - margin-left: 0%; - } -} -table { - background-color: transparent; -} -caption { - padding-top: 8px; - padding-bottom: 8px; - color: #777777; - text-align: left; -} -th { - text-align: left; -} -.table { - width: 100%; - max-width: 100%; - margin-bottom: 20px; -} -.table > thead > tr > th, -.table > tbody > tr > th, -.table > tfoot > tr > th, -.table > thead > tr > td, -.table > tbody > tr > td, -.table > tfoot > tr > td { - padding: 8px; - line-height: 1.42857143; - vertical-align: top; - border-top: 1px solid #dddddd; -} -.table > thead > tr > th { - vertical-align: bottom; - border-bottom: 2px solid #dddddd; -} -.table > caption + thead > tr:first-child > th, -.table > colgroup + thead > tr:first-child > th, -.table > thead:first-child > tr:first-child > th, -.table > caption + thead > tr:first-child > td, -.table > colgroup + thead > tr:first-child > td, -.table > thead:first-child > tr:first-child > td { - border-top: 0; -} -.table > tbody + tbody { - border-top: 2px solid #dddddd; -} -.table .table { - background-color: #ffffff; -} -.table-condensed > thead > tr > th, -.table-condensed > tbody > tr > th, -.table-condensed > tfoot > tr > th, -.table-condensed > thead > tr > td, -.table-condensed > tbody > tr > td, -.table-condensed > tfoot > tr > td { - padding: 5px; -} -.table-bordered { - border: 1px solid #dddddd; -} -.table-bordered > thead > tr > th, -.table-bordered > tbody > tr > th, -.table-bordered > tfoot > tr > th, -.table-bordered > thead > tr > td, -.table-bordered > tbody > tr > td, -.table-bordered > tfoot > tr > td { - border: 1px solid #dddddd; -} -.table-bordered > thead > tr > th, -.table-bordered > thead > tr > td { - border-bottom-width: 2px; -} -.table-striped > tbody > tr:nth-child(odd) { - background-color: #f9f9f9; -} -.table-hover > tbody > tr:hover { - background-color: #f5f5f5; -} -table col[class*="col-"] { - position: static; - float: none; - display: table-column; -} -table td[class*="col-"], -table th[class*="col-"] { - position: static; - float: none; - display: table-cell; -} -.table > thead > tr > td.active, -.table > tbody > tr > td.active, -.table > tfoot > tr > td.active, -.table > thead > tr > th.active, -.table > tbody > tr > th.active, -.table > tfoot > tr > th.active, -.table > thead > tr.active > td, -.table > tbody > tr.active > td, -.table > tfoot > tr.active > td, -.table > thead > tr.active > th, -.table > tbody > tr.active > th, -.table > tfoot > tr.active > th { - background-color: #f5f5f5; -} -.table-hover > tbody > tr > td.active:hover, -.table-hover > tbody > tr > th.active:hover, -.table-hover > tbody > tr.active:hover > td, -.table-hover > tbody > tr:hover > .active, -.table-hover > tbody > tr.active:hover > th { - background-color: #e8e8e8; -} -.table > thead > tr > td.success, -.table > tbody > tr > td.success, -.table > tfoot > tr > td.success, -.table > thead > tr > th.success, -.table > tbody > tr > th.success, -.table > tfoot > tr > th.success, -.table > thead > tr.success > td, -.table > tbody > tr.success > td, -.table > tfoot > tr.success > td, -.table > thead > tr.success > th, -.table > tbody > tr.success > th, -.table > tfoot > tr.success > th { - background-color: #dff0d8; -} -.table-hover > tbody > tr > td.success:hover, -.table-hover > tbody > tr > th.success:hover, -.table-hover > tbody > tr.success:hover > td, -.table-hover > tbody > tr:hover > .success, -.table-hover > tbody > tr.success:hover > th { - background-color: #d0e9c6; -} -.table > thead > tr > td.info, -.table > tbody > tr > td.info, -.table > tfoot > tr > td.info, -.table > thead > tr > th.info, -.table > tbody > tr > th.info, -.table > tfoot > tr > th.info, -.table > thead > tr.info > td, -.table > tbody > tr.info > td, -.table > tfoot > tr.info > td, -.table > thead > tr.info > th, -.table > tbody > tr.info > th, -.table > tfoot > tr.info > th { - background-color: #d9edf7; -} -.table-hover > tbody > tr > td.info:hover, -.table-hover > tbody > tr > th.info:hover, -.table-hover > tbody > tr.info:hover > td, -.table-hover > tbody > tr:hover > .info, -.table-hover > tbody > tr.info:hover > th { - background-color: #c4e3f3; -} -.table > thead > tr > td.warning, -.table > tbody > tr > td.warning, -.table > tfoot > tr > td.warning, -.table > thead > tr > th.warning, -.table > tbody > tr > th.warning, -.table > tfoot > tr > th.warning, -.table > thead > tr.warning > td, -.table > tbody > tr.warning > td, -.table > tfoot > tr.warning > td, -.table > thead > tr.warning > th, -.table > tbody > tr.warning > th, -.table > tfoot > tr.warning > th { - background-color: #fcf8e3; -} -.table-hover > tbody > tr > td.warning:hover, -.table-hover > tbody > tr > th.warning:hover, -.table-hover > tbody > tr.warning:hover > td, -.table-hover > tbody > tr:hover > .warning, -.table-hover > tbody > tr.warning:hover > th { - background-color: #faf2cc; -} -.table > thead > tr > td.danger, -.table > tbody > tr > td.danger, -.table > tfoot > tr > td.danger, -.table > thead > tr > th.danger, -.table > tbody > tr > th.danger, -.table > tfoot > tr > th.danger, -.table > thead > tr.danger > td, -.table > tbody > tr.danger > td, -.table > tfoot > tr.danger > td, -.table > thead > tr.danger > th, -.table > tbody > tr.danger > th, -.table > tfoot > tr.danger > th { - background-color: #f2dede; -} -.table-hover > tbody > tr > td.danger:hover, -.table-hover > tbody > tr > th.danger:hover, -.table-hover > tbody > tr.danger:hover > td, -.table-hover > tbody > tr:hover > .danger, -.table-hover > tbody > tr.danger:hover > th { - background-color: #ebcccc; -} -.table-responsive { - overflow-x: auto; - min-height: 0.01%; -} -@media screen and (max-width: 767px) { - .table-responsive { - width: 100%; - margin-bottom: 15px; - overflow-y: hidden; - -ms-overflow-style: -ms-autohiding-scrollbar; - border: 1px solid #dddddd; - } - .table-responsive > .table { - margin-bottom: 0; - } - .table-responsive > .table > thead > tr > th, - .table-responsive > .table > tbody > tr > th, - .table-responsive > .table > tfoot > tr > th, - .table-responsive > .table > thead > tr > td, - .table-responsive > .table > tbody > tr > td, - .table-responsive > .table > tfoot > tr > td { - white-space: nowrap; - } - .table-responsive > .table-bordered { - border: 0; - } - .table-responsive > .table-bordered > thead > tr > th:first-child, - .table-responsive > .table-bordered > tbody > tr > th:first-child, - .table-responsive > .table-bordered > tfoot > tr > th:first-child, - .table-responsive > .table-bordered > thead > tr > td:first-child, - .table-responsive > .table-bordered > tbody > tr > td:first-child, - .table-responsive > .table-bordered > tfoot > tr > td:first-child { - border-left: 0; - } - .table-responsive > .table-bordered > thead > tr > th:last-child, - .table-responsive > .table-bordered > tbody > tr > th:last-child, - .table-responsive > .table-bordered > tfoot > tr > th:last-child, - .table-responsive > .table-bordered > thead > tr > td:last-child, - .table-responsive > .table-bordered > tbody > tr > td:last-child, - .table-responsive > .table-bordered > tfoot > tr > td:last-child { - border-right: 0; - } - .table-responsive > .table-bordered > tbody > tr:last-child > th, - .table-responsive > .table-bordered > tfoot > tr:last-child > th, - .table-responsive > .table-bordered > tbody > tr:last-child > td, - .table-responsive > .table-bordered > tfoot > tr:last-child > td { - border-bottom: 0; - } -} -fieldset { - padding: 0; - margin: 0; - border: 0; - min-width: 0; -} -legend { - display: block; - width: 100%; - padding: 0; - margin-bottom: 20px; - font-size: 21px; - line-height: inherit; - color: #333333; - border: 0; - border-bottom: 1px solid #e5e5e5; -} -label { - display: inline-block; - max-width: 100%; - margin-bottom: 5px; - font-weight: bold; -} -input[type="search"] { - -webkit-box-sizing: border-box; - -moz-box-sizing: border-box; - box-sizing: border-box; -} -input[type="radio"], -input[type="checkbox"] { - margin: 4px 0 0; - margin-top: 1px \9; - line-height: normal; -} -input[type="file"] { - display: block; -} -input[type="range"] { - display: block; - width: 100%; -} -select[multiple], -select[size] { - height: auto; -} -input[type="file"]:focus, -input[type="radio"]:focus, -input[type="checkbox"]:focus { - outline: thin dotted; - outline: 5px auto -webkit-focus-ring-color; - outline-offset: -2px; -} -output { - display: block; - padding-top: 7px; - font-size: 14px; - line-height: 1.42857143; - color: #555555; -} -.form-control { - display: block; - width: 100%; - height: 34px; - padding: 6px 12px; - font-size: 14px; - line-height: 1.42857143; - color: #555555; - background-color: #ffffff; - background-image: none; - border: 1px solid #cccccc; - border-radius: 4px; - -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); - box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); - -webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s; - -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s; - transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s; -} -.form-control:focus { - border-color: #66afe9; - outline: 0; - -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6); - box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6); -} -.form-control::-moz-placeholder { - color: #999999; - opacity: 1; -} -.form-control:-ms-input-placeholder { - color: #999999; -} -.form-control::-webkit-input-placeholder { - color: #999999; -} -.form-control[disabled], -.form-control[readonly], -fieldset[disabled] .form-control { - cursor: not-allowed; - background-color: #eeeeee; - opacity: 1; -} -textarea.form-control { - height: auto; -} -input[type="search"] { - -webkit-appearance: none; -} -@media screen and (-webkit-min-device-pixel-ratio: 0) { - input[type="date"], - input[type="time"], - input[type="datetime-local"], - input[type="month"] { - line-height: 34px; - } - input[type="date"].input-sm, - input[type="time"].input-sm, - input[type="datetime-local"].input-sm, - input[type="month"].input-sm { - line-height: 30px; - } - input[type="date"].input-lg, - input[type="time"].input-lg, - input[type="datetime-local"].input-lg, - input[type="month"].input-lg { - line-height: 46px; - } -} -.form-group { - margin-bottom: 15px; -} -.radio, -.checkbox { - position: relative; - display: block; - margin-top: 10px; - margin-bottom: 10px; -} -.radio label, -.checkbox label { - min-height: 20px; - padding-left: 20px; - margin-bottom: 0; - font-weight: normal; - cursor: pointer; -} -.radio input[type="radio"], -.radio-inline input[type="radio"], -.checkbox input[type="checkbox"], -.checkbox-inline input[type="checkbox"] { - position: absolute; - margin-left: -20px; - margin-top: 4px \9; -} -.radio + .radio, -.checkbox + .checkbox { - margin-top: -5px; -} -.radio-inline, -.checkbox-inline { - display: inline-block; - padding-left: 20px; - margin-bottom: 0; - vertical-align: middle; - font-weight: normal; - cursor: pointer; -} -.radio-inline + .radio-inline, -.checkbox-inline + .checkbox-inline { - margin-top: 0; - margin-left: 10px; -} -input[type="radio"][disabled], -input[type="checkbox"][disabled], -input[type="radio"].disabled, -input[type="checkbox"].disabled, -fieldset[disabled] input[type="radio"], -fieldset[disabled] input[type="checkbox"] { - cursor: not-allowed; -} -.radio-inline.disabled, -.checkbox-inline.disabled, -fieldset[disabled] .radio-inline, -fieldset[disabled] .checkbox-inline { - cursor: not-allowed; -} -.radio.disabled label, -.checkbox.disabled label, -fieldset[disabled] .radio label, -fieldset[disabled] .checkbox label { - cursor: not-allowed; -} -.form-control-static { - padding-top: 7px; - padding-bottom: 7px; - margin-bottom: 0; -} -.form-control-static.input-lg, -.form-control-static.input-sm { - padding-left: 0; - padding-right: 0; -} -.input-sm, -.form-group-sm .form-control { - height: 30px; - padding: 5px 10px; - font-size: 12px; - line-height: 1.5; - border-radius: 3px; -} -select.input-sm, -select.form-group-sm .form-control { - height: 30px; - line-height: 30px; -} -textarea.input-sm, -textarea.form-group-sm .form-control, -select[multiple].input-sm, -select[multiple].form-group-sm .form-control { - height: auto; -} -.input-lg, -.form-group-lg .form-control { - height: 46px; - padding: 10px 16px; - font-size: 18px; - line-height: 1.33; - border-radius: 6px; -} -select.input-lg, -select.form-group-lg .form-control { - height: 46px; - line-height: 46px; -} -textarea.input-lg, -textarea.form-group-lg .form-control, -select[multiple].input-lg, -select[multiple].form-group-lg .form-control { - height: auto; -} -.has-feedback { - position: relative; -} -.has-feedback .form-control { - padding-right: 42.5px; -} -.form-control-feedback { - position: absolute; - top: 0; - right: 0; - z-index: 2; - display: block; - width: 34px; - height: 34px; - line-height: 34px; - text-align: center; - pointer-events: none; -} -.input-lg + .form-control-feedback { - width: 46px; - height: 46px; - line-height: 46px; -} -.input-sm + .form-control-feedback { - width: 30px; - height: 30px; - line-height: 30px; -} -.has-success .help-block, -.has-success .control-label, -.has-success .radio, -.has-success .checkbox, -.has-success .radio-inline, -.has-success .checkbox-inline, -.has-success.radio label, -.has-success.checkbox label, -.has-success.radio-inline label, -.has-success.checkbox-inline label { - color: #3c763d; -} -.has-success .form-control { - border-color: #3c763d; - -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); - box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); -} -.has-success .form-control:focus { - border-color: #2b542c; - -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168; - box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168; -} -.has-success .input-group-addon { - color: #3c763d; - border-color: #3c763d; - background-color: #dff0d8; -} -.has-success .form-control-feedback { - color: #3c763d; -} -.has-warning .help-block, -.has-warning .control-label, -.has-warning .radio, -.has-warning .checkbox, -.has-warning .radio-inline, -.has-warning .checkbox-inline, -.has-warning.radio label, -.has-warning.checkbox label, -.has-warning.radio-inline label, -.has-warning.checkbox-inline label { - color: #8a6d3b; -} -.has-warning .form-control { - border-color: #8a6d3b; - -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); - box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); -} -.has-warning .form-control:focus { - border-color: #66512c; - -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b; - box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b; -} -.has-warning .input-group-addon { - color: #8a6d3b; - border-color: #8a6d3b; - background-color: #fcf8e3; -} -.has-warning .form-control-feedback { - color: #8a6d3b; -} -.has-error .help-block, -.has-error .control-label, -.has-error .radio, -.has-error .checkbox, -.has-error .radio-inline, -.has-error .checkbox-inline, -.has-error.radio label, -.has-error.checkbox label, -.has-error.radio-inline label, -.has-error.checkbox-inline label { - color: #a94442; -} -.has-error .form-control { - border-color: #a94442; - -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); - box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); -} -.has-error .form-control:focus { - border-color: #843534; - -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483; - box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483; -} -.has-error .input-group-addon { - color: #a94442; - border-color: #a94442; - background-color: #f2dede; -} -.has-error .form-control-feedback { - color: #a94442; -} -.has-feedback label ~ .form-control-feedback { - top: 25px; -} -.has-feedback label.sr-only ~ .form-control-feedback { - top: 0; -} -.help-block { - display: block; - margin-top: 5px; - margin-bottom: 10px; - color: #737373; -} -@media (min-width: 768px) { - .form-inline .form-group { - display: inline-block; - margin-bottom: 0; - vertical-align: middle; - } - .form-inline .form-control { - display: inline-block; - width: auto; - vertical-align: middle; - } - .form-inline .form-control-static { - display: inline-block; - } - .form-inline .input-group { - display: inline-table; - vertical-align: middle; - } - .form-inline .input-group .input-group-addon, - .form-inline .input-group .input-group-btn, - .form-inline .input-group .form-control { - width: auto; - } - .form-inline .input-group > .form-control { - width: 100%; - } - .form-inline .control-label { - margin-bottom: 0; - vertical-align: middle; - } - .form-inline .radio, - .form-inline .checkbox { - display: inline-block; - margin-top: 0; - margin-bottom: 0; - vertical-align: middle; - } - .form-inline .radio label, - .form-inline .checkbox label { - padding-left: 0; - } - .form-inline .radio input[type="radio"], - .form-inline .checkbox input[type="checkbox"] { - position: relative; - margin-left: 0; - } - .form-inline .has-feedback .form-control-feedback { - top: 0; - } -} -.form-horizontal .radio, -.form-horizontal .checkbox, -.form-horizontal .radio-inline, -.form-horizontal .checkbox-inline { - margin-top: 0; - margin-bottom: 0; - padding-top: 7px; -} -.form-horizontal .radio, -.form-horizontal .checkbox { - min-height: 27px; -} -.form-horizontal .form-group { - margin-left: -15px; - margin-right: -15px; -} -@media (min-width: 768px) { - .form-horizontal .control-label { - text-align: right; - margin-bottom: 0; - padding-top: 7px; - } -} -.form-horizontal .has-feedback .form-control-feedback { - right: 15px; -} -@media (min-width: 768px) { - .form-horizontal .form-group-lg .control-label { - padding-top: 14.3px; - } -} -@media (min-width: 768px) { - .form-horizontal .form-group-sm .control-label { - padding-top: 6px; - } -} -.btn { - display: inline-block; - margin-bottom: 0; - font-weight: normal; - text-align: center; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - background-image: none; - border: 1px solid transparent; - white-space: nowrap; - padding: 6px 12px; - font-size: 14px; - line-height: 1.42857143; - border-radius: 4px; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; -} -.btn:focus, -.btn:active:focus, -.btn.active:focus, -.btn.focus, -.btn:active.focus, -.btn.active.focus { - outline: thin dotted; - outline: 5px auto -webkit-focus-ring-color; - outline-offset: -2px; -} -.btn:hover, -.btn:focus, -.btn.focus { - color: #333333; - text-decoration: none; -} -.btn:active, -.btn.active { - outline: 0; - background-image: none; - -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); - box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); -} -.btn.disabled, -.btn[disabled], -fieldset[disabled] .btn { - cursor: not-allowed; - pointer-events: none; - opacity: 0.65; - filter: alpha(opacity=65); - -webkit-box-shadow: none; - box-shadow: none; -} -.btn-default { - color: #333333; - background-color: #ffffff; - border-color: #cccccc; -} -.btn-default:hover, -.btn-default:focus, -.btn-default.focus, -.btn-default:active, -.btn-default.active, -.open > .dropdown-toggle.btn-default { - color: #333333; - background-color: #e6e6e6; - border-color: #adadad; -} -.btn-default:active, -.btn-default.active, -.open > .dropdown-toggle.btn-default { - background-image: none; -} -.btn-default.disabled, -.btn-default[disabled], -fieldset[disabled] .btn-default, -.btn-default.disabled:hover, -.btn-default[disabled]:hover, -fieldset[disabled] .btn-default:hover, -.btn-default.disabled:focus, -.btn-default[disabled]:focus, -fieldset[disabled] .btn-default:focus, -.btn-default.disabled.focus, -.btn-default[disabled].focus, -fieldset[disabled] .btn-default.focus, -.btn-default.disabled:active, -.btn-default[disabled]:active, -fieldset[disabled] .btn-default:active, -.btn-default.disabled.active, -.btn-default[disabled].active, -fieldset[disabled] .btn-default.active { - background-color: #ffffff; - border-color: #cccccc; -} -.btn-default .badge { - color: #ffffff; - background-color: #333333; -} -.btn-primary { - color: #ffffff; - background-color: #337ab7; - border-color: #2e6da4; -} -.btn-primary:hover, -.btn-primary:focus, -.btn-primary.focus, -.btn-primary:active, -.btn-primary.active, -.open > .dropdown-toggle.btn-primary { - color: #ffffff; - background-color: #286090; - border-color: #204d74; -} -.btn-primary:active, -.btn-primary.active, -.open > .dropdown-toggle.btn-primary { - background-image: none; -} -.btn-primary.disabled, -.btn-primary[disabled], -fieldset[disabled] .btn-primary, -.btn-primary.disabled:hover, -.btn-primary[disabled]:hover, -fieldset[disabled] .btn-primary:hover, -.btn-primary.disabled:focus, -.btn-primary[disabled]:focus, -fieldset[disabled] .btn-primary:focus, -.btn-primary.disabled.focus, -.btn-primary[disabled].focus, -fieldset[disabled] .btn-primary.focus, -.btn-primary.disabled:active, -.btn-primary[disabled]:active, -fieldset[disabled] .btn-primary:active, -.btn-primary.disabled.active, -.btn-primary[disabled].active, -fieldset[disabled] .btn-primary.active { - background-color: #337ab7; - border-color: #2e6da4; -} -.btn-primary .badge { - color: #337ab7; - background-color: #ffffff; -} -.btn-success { - color: #ffffff; - background-color: #5cb85c; - border-color: #4cae4c; -} -.btn-success:hover, -.btn-success:focus, -.btn-success.focus, -.btn-success:active, -.btn-success.active, -.open > .dropdown-toggle.btn-success { - color: #ffffff; - background-color: #449d44; - border-color: #398439; -} -.btn-success:active, -.btn-success.active, -.open > .dropdown-toggle.btn-success { - background-image: none; -} -.btn-success.disabled, -.btn-success[disabled], -fieldset[disabled] .btn-success, -.btn-success.disabled:hover, -.btn-success[disabled]:hover, -fieldset[disabled] .btn-success:hover, -.btn-success.disabled:focus, -.btn-success[disabled]:focus, -fieldset[disabled] .btn-success:focus, -.btn-success.disabled.focus, -.btn-success[disabled].focus, -fieldset[disabled] .btn-success.focus, -.btn-success.disabled:active, -.btn-success[disabled]:active, -fieldset[disabled] .btn-success:active, -.btn-success.disabled.active, -.btn-success[disabled].active, -fieldset[disabled] .btn-success.active { - background-color: #5cb85c; - border-color: #4cae4c; -} -.btn-success .badge { - color: #5cb85c; - background-color: #ffffff; -} -.btn-info { - color: #ffffff; - background-color: #5bc0de; - border-color: #46b8da; -} -.btn-info:hover, -.btn-info:focus, -.btn-info.focus, -.btn-info:active, -.btn-info.active, -.open > .dropdown-toggle.btn-info { - color: #ffffff; - background-color: #31b0d5; - border-color: #269abc; -} -.btn-info:active, -.btn-info.active, -.open > .dropdown-toggle.btn-info { - background-image: none; -} -.btn-info.disabled, -.btn-info[disabled], -fieldset[disabled] .btn-info, -.btn-info.disabled:hover, -.btn-info[disabled]:hover, -fieldset[disabled] .btn-info:hover, -.btn-info.disabled:focus, -.btn-info[disabled]:focus, -fieldset[disabled] .btn-info:focus, -.btn-info.disabled.focus, -.btn-info[disabled].focus, -fieldset[disabled] .btn-info.focus, -.btn-info.disabled:active, -.btn-info[disabled]:active, -fieldset[disabled] .btn-info:active, -.btn-info.disabled.active, -.btn-info[disabled].active, -fieldset[disabled] .btn-info.active { - background-color: #5bc0de; - border-color: #46b8da; -} -.btn-info .badge { - color: #5bc0de; - background-color: #ffffff; -} -.btn-warning { - color: #ffffff; - background-color: #f0ad4e; - border-color: #eea236; -} -.btn-warning:hover, -.btn-warning:focus, -.btn-warning.focus, -.btn-warning:active, -.btn-warning.active, -.open > .dropdown-toggle.btn-warning { - color: #ffffff; - background-color: #ec971f; - border-color: #d58512; -} -.btn-warning:active, -.btn-warning.active, -.open > .dropdown-toggle.btn-warning { - background-image: none; -} -.btn-warning.disabled, -.btn-warning[disabled], -fieldset[disabled] .btn-warning, -.btn-warning.disabled:hover, -.btn-warning[disabled]:hover, -fieldset[disabled] .btn-warning:hover, -.btn-warning.disabled:focus, -.btn-warning[disabled]:focus, -fieldset[disabled] .btn-warning:focus, -.btn-warning.disabled.focus, -.btn-warning[disabled].focus, -fieldset[disabled] .btn-warning.focus, -.btn-warning.disabled:active, -.btn-warning[disabled]:active, -fieldset[disabled] .btn-warning:active, -.btn-warning.disabled.active, -.btn-warning[disabled].active, -fieldset[disabled] .btn-warning.active { - background-color: #f0ad4e; - border-color: #eea236; -} -.btn-warning .badge { - color: #f0ad4e; - background-color: #ffffff; -} -.btn-danger { - color: #ffffff; - background-color: #d9534f; - border-color: #d43f3a; -} -.btn-danger:hover, -.btn-danger:focus, -.btn-danger.focus, -.btn-danger:active, -.btn-danger.active, -.open > .dropdown-toggle.btn-danger { - color: #ffffff; - background-color: #c9302c; - border-color: #ac2925; -} -.btn-danger:active, -.btn-danger.active, -.open > .dropdown-toggle.btn-danger { - background-image: none; -} -.btn-danger.disabled, -.btn-danger[disabled], -fieldset[disabled] .btn-danger, -.btn-danger.disabled:hover, -.btn-danger[disabled]:hover, -fieldset[disabled] .btn-danger:hover, -.btn-danger.disabled:focus, -.btn-danger[disabled]:focus, -fieldset[disabled] .btn-danger:focus, -.btn-danger.disabled.focus, -.btn-danger[disabled].focus, -fieldset[disabled] .btn-danger.focus, -.btn-danger.disabled:active, -.btn-danger[disabled]:active, -fieldset[disabled] .btn-danger:active, -.btn-danger.disabled.active, -.btn-danger[disabled].active, -fieldset[disabled] .btn-danger.active { - background-color: #d9534f; - border-color: #d43f3a; -} -.btn-danger .badge { - color: #d9534f; - background-color: #ffffff; -} -.btn-link { - color: #337ab7; - font-weight: normal; - border-radius: 0; -} -.btn-link, -.btn-link:active, -.btn-link.active, -.btn-link[disabled], -fieldset[disabled] .btn-link { - background-color: transparent; - -webkit-box-shadow: none; - box-shadow: none; -} -.btn-link, -.btn-link:hover, -.btn-link:focus, -.btn-link:active { - border-color: transparent; -} -.btn-link:hover, -.btn-link:focus { - color: #23527c; - text-decoration: underline; - background-color: transparent; -} -.btn-link[disabled]:hover, -fieldset[disabled] .btn-link:hover, -.btn-link[disabled]:focus, -fieldset[disabled] .btn-link:focus { - color: #777777; - text-decoration: none; -} -.btn-lg { - padding: 10px 16px; - font-size: 18px; - line-height: 1.33; - border-radius: 6px; -} -.btn-sm { - padding: 5px 10px; - font-size: 12px; - line-height: 1.5; - border-radius: 3px; -} -.btn-xs { - padding: 1px 5px; - font-size: 12px; - line-height: 1.5; - border-radius: 3px; -} -.btn-block { - display: block; - width: 100%; -} -.btn-block + .btn-block { - margin-top: 5px; -} -input[type="submit"].btn-block, -input[type="reset"].btn-block, -input[type="button"].btn-block { - width: 100%; -} -.clearfix:before, -.clearfix:after, -.dl-horizontal dd:before, -.dl-horizontal dd:after, -.container:before, -.container:after, -.container-fluid:before, -.container-fluid:after, -.row:before, -.row:after, -.form-horizontal .form-group:before, -.form-horizontal .form-group:after { - content: " "; - display: table; -} -.clearfix:after, -.dl-horizontal dd:after, -.container:after, -.container-fluid:after, -.row:after, -.form-horizontal .form-group:after { - clear: both; -} -.center-block { - display: block; - margin-left: auto; - margin-right: auto; -} -.pull-right { - float: right !important; -} -.pull-left { - float: left !important; -} -.hide { - display: none !important; -} -.show { - display: block !important; -} -.invisible { - visibility: hidden; -} -.text-hide { - font: 0/0 a; - color: transparent; - text-shadow: none; - background-color: transparent; - border: 0; -} -.hidden { - display: none !important; - visibility: hidden !important; -} -.affix { - position: fixed; -} -@-ms-viewport { - width: device-width; -} -.visible-xs, -.visible-sm, -.visible-md, -.visible-lg { - display: none !important; -} -.visible-xs-block, -.visible-xs-inline, -.visible-xs-inline-block, -.visible-sm-block, -.visible-sm-inline, -.visible-sm-inline-block, -.visible-md-block, -.visible-md-inline, -.visible-md-inline-block, -.visible-lg-block, -.visible-lg-inline, -.visible-lg-inline-block { - display: none !important; -} -@media (max-width: 767px) { - .visible-xs { - display: block !important; - } - table.visible-xs { - display: table; - } - tr.visible-xs { - display: table-row !important; - } - th.visible-xs, - td.visible-xs { - display: table-cell !important; - } -} -@media (max-width: 767px) { - .visible-xs-block { - display: block !important; - } -} -@media (max-width: 767px) { - .visible-xs-inline { - display: inline !important; - } -} -@media (max-width: 767px) { - .visible-xs-inline-block { - display: inline-block !important; - } -} -@media (min-width: 768px) and (max-width: 991px) { - .visible-sm { - display: block !important; - } - table.visible-sm { - display: table; - } - tr.visible-sm { - display: table-row !important; - } - th.visible-sm, - td.visible-sm { - display: table-cell !important; - } -} -@media (min-width: 768px) and (max-width: 991px) { - .visible-sm-block { - display: block !important; - } -} -@media (min-width: 768px) and (max-width: 991px) { - .visible-sm-inline { - display: inline !important; - } -} -@media (min-width: 768px) and (max-width: 991px) { - .visible-sm-inline-block { - display: inline-block !important; - } -} -@media (min-width: 992px) and (max-width: 1199px) { - .visible-md { - display: block !important; - } - table.visible-md { - display: table; - } - tr.visible-md { - display: table-row !important; - } - th.visible-md, - td.visible-md { - display: table-cell !important; - } -} -@media (min-width: 992px) and (max-width: 1199px) { - .visible-md-block { - display: block !important; - } -} -@media (min-width: 992px) and (max-width: 1199px) { - .visible-md-inline { - display: inline !important; - } -} -@media (min-width: 992px) and (max-width: 1199px) { - .visible-md-inline-block { - display: inline-block !important; - } -} -@media (min-width: 1200px) { - .visible-lg { - display: block !important; - } - table.visible-lg { - display: table; - } - tr.visible-lg { - display: table-row !important; - } - th.visible-lg, - td.visible-lg { - display: table-cell !important; - } -} -@media (min-width: 1200px) { - .visible-lg-block { - display: block !important; - } -} -@media (min-width: 1200px) { - .visible-lg-inline { - display: inline !important; - } -} -@media (min-width: 1200px) { - .visible-lg-inline-block { - display: inline-block !important; - } -} -@media (max-width: 767px) { - .hidden-xs { - display: none !important; - } -} -@media (min-width: 768px) and (max-width: 991px) { - .hidden-sm { - display: none !important; - } -} -@media (min-width: 992px) and (max-width: 1199px) { - .hidden-md { - display: none !important; - } -} -@media (min-width: 1200px) { - .hidden-lg { - display: none !important; - } -} -.visible-print { - display: none !important; -} -@media print { - .visible-print { - display: block !important; - } - table.visible-print { - display: table; - } - tr.visible-print { - display: table-row !important; - } - th.visible-print, - td.visible-print { - display: table-cell !important; - } -} -.visible-print-block { - display: none !important; -} -@media print { - .visible-print-block { - display: block !important; - } -} -.visible-print-inline { - display: none !important; -} -@media print { - .visible-print-inline { - display: inline !important; - } -} -.visible-print-inline-block { - display: none !important; -} -@media print { - .visible-print-inline-block { - display: inline-block !important; - } -} -@media print { - .hidden-print { - display: none !important; - } -} diff --git a/html/css/custom.css b/html/css/custom.css deleted file mode 100644 index 208da116..00000000 --- a/html/css/custom.css +++ /dev/null @@ -1,145 +0,0 @@ -/*! Place your custom styles here */ - -.bar .logo { - max-height: 1.3em; -} - -.benefits .row .col-sm-4 { - margin-bottom: 40px; -} - -p.release { - color: white; - padding-top: .5em; - font-size: 1.2em; -} - -.release a, .release a:visited { - color: white; - font-weight: 700; - text-decoration: none; -} -.release a:hover { - color: white; - text-decoration: underline; -} - -.benefits p { - margin-bottom: 0; -} - -.fa-fw { - color: #f08b16; -} - -.vertical-align { - display: flex; - align-items: center; - justify-content: center; -} - -.site-header { - background-color: black; - background-image: url(../img/background13.jpg); - -webkit-background-size: cover; - -moz-background-size: cover; - -o-background-size: cover; - background-size: cover; - background-attachment: fixed; -} - -@media only screen and (max-device-width: 1024px) { - .site-header { - background-attachment: scroll !important; - } -} - -@media (max-width: 767px) { - .dropdown .dropdown__content { - padding: 0 1.2em .3em; - } -} - -.dropdown .dropdown__content { - min-width: 200px; - border:1px solid #eee; - border-radius: 0; - border-width:1px 1px 3px 1px; - box-shadow: none; - --webkit-box-shadow: none; -} - -@media (min-width: 991px) { - .dropdown .dropdown__container:before { - height: 0px; - } -} - -#ticker, #ticker_value { - font-weight: 400; - color: white; -} - -.ticker { - padding-top: 15px; -} - -.lead { - color: white; -} - -section.no-bottom { - padding-bottom: 0; -} - -section.no-top { - padding-top: 0; -} - -section.gray { - background-color: #FAFAFA; -} - -section.border-bottom { - border-bottom: 1px solid #EAEAEA; -} - -p.question { - font-size: 1.3em; - font-weight: 350; - font-variant-ligatures: common-ligatures; - color: #f08b16; - font-family: 'Open Sans', 'Helvetica', 'Arial', sans-serif; - margin-bottom: 1.04em; -} - -.nodes div a:hover, .wallets div a:hover, .services div a:hover, .exchanges div a:hover{ - border-bottom: 3px solid #F08B16; -} - -.nodes div a, .wallets div a, .services div a, .exchanges div a{ - padding: 2em; - width: 100%; - height: 120px; - display: block; - background: white; - border:1px solid #eee; - border-width:1px 1px 3px 1px; - - -webkit-transition: border-color 250ms ease; - -moz-transition: border-color 250ms ease; - -o-transition: border-color 250ms ease; - -ms-transition: border-color 250ms ease; - transition: border-color 250ms ease; - - display: flex; - align-items: center; - justify-content: center; - margin-bottom: 1.5em; -} - -@media all and (min-width: 990px) { - .menu-vertical li { - white-space: normal; - } -} \ No newline at end of file diff --git a/html/css/flickity.css b/html/css/flickity.css deleted file mode 100644 index c4e2d3d5..00000000 --- a/html/css/flickity.css +++ /dev/null @@ -1,130 +0,0 @@ -/*! Flickity v2.0.2 -http://flickity.metafizzy.co ----------------------------------------------- */ - -.flickity-enabled { - position: relative; -} - -.flickity-enabled:focus { outline: none; } - -.flickity-viewport { - overflow: hidden; - position: relative; - height: 100%; -} - -.flickity-slider { - position: absolute; - width: 100%; - height: 100%; -} - -/* draggable */ - -.flickity-enabled.is-draggable { - -webkit-tap-highlight-color: transparent; - tap-highlight-color: transparent; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; -} - -.flickity-enabled.is-draggable .flickity-viewport { - cursor: move; - cursor: -webkit-grab; - cursor: grab; -} - -.flickity-enabled.is-draggable .flickity-viewport.is-pointer-down { - cursor: -webkit-grabbing; - cursor: grabbing; -} - -/* ---- previous/next buttons ---- */ - -.flickity-prev-next-button { - position: absolute; - top: 50%; - width: 44px; - height: 44px; - border: none; - border-radius: 50%; - background: white; - background: hsla(0, 0%, 100%, 0.75); - cursor: pointer; - /* vertically center */ - -webkit-transform: translateY(-50%); - transform: translateY(-50%); -} - -.flickity-prev-next-button:hover { background: white; } - -.flickity-prev-next-button:focus { - outline: none; - box-shadow: 0 0 0 5px #09F; -} - -.flickity-prev-next-button:active { - opacity: 0.6; -} - -.flickity-prev-next-button.previous { left: 10px; } -.flickity-prev-next-button.next { right: 10px; } -/* right to left */ -.flickity-rtl .flickity-prev-next-button.previous { - left: auto; - right: 10px; -} -.flickity-rtl .flickity-prev-next-button.next { - right: auto; - left: 10px; -} - -.flickity-prev-next-button:disabled { - opacity: 0.3; - cursor: auto; -} - -.flickity-prev-next-button svg { - position: absolute; - left: 20%; - top: 20%; - width: 60%; - height: 60%; -} - -.flickity-prev-next-button .arrow { - fill: #333; -} - -/* ---- page dots ---- */ - -.flickity-page-dots { - position: absolute; - width: 100%; - bottom: -25px; - padding: 0; - margin: 0; - list-style: none; - text-align: center; - line-height: 1; -} - -.flickity-rtl .flickity-page-dots { direction: rtl; } - -.flickity-page-dots .dot { - display: inline-block; - width: 10px; - height: 10px; - margin: 0 8px; - background: #333; - border-radius: 50%; - opacity: 0.25; - cursor: pointer; -} - -.flickity-page-dots .dot.is-selected { - opacity: 1; -} \ No newline at end of file diff --git a/html/css/font-frankruhl-firasans.css b/html/css/font-frankruhl-firasans.css deleted file mode 100644 index e1d54f11..00000000 --- a/html/css/font-frankruhl-firasans.css +++ /dev/null @@ -1,16 +0,0 @@ -body{ - font-family: 'Fira Sans','Verdana','Helvetica', sans-serif; -} - -.menu > li{ - font-family: 'Fira Sans','Verdana','Helvetica', sans-serif; -} - -.btn,.btn__text,button{ - font-family: 'Fira Sans','Verdana','Helvetica', sans-serif; -} - -h1,h2,h3,h4,h5,h6, -.h1,.h2,.h3,.h4,.h5,.h6{ - font-family: 'Frank Ruhl Libre','Georgia', serif; -} \ No newline at end of file diff --git a/html/css/font-karla.css b/html/css/font-karla.css deleted file mode 100644 index d0a9d436..00000000 --- a/html/css/font-karla.css +++ /dev/null @@ -1,8 +0,0 @@ -body,.btn,.btn__text{ - font-family: 'Karla','Verdana','Helvetica', sans-serif; -} - -h1,h2,h3,h4,h5,h6, -.h1,.h2,.h3,.h4,.h5,.h6{ - font-family: 'Karla','Verdana','Helvetica', sans-serif; -} \ No newline at end of file diff --git a/html/css/font-merriweather-ptsans.css b/html/css/font-merriweather-ptsans.css deleted file mode 100644 index 3dd6ef2d..00000000 --- a/html/css/font-merriweather-ptsans.css +++ /dev/null @@ -1,8 +0,0 @@ -body{ - font-family: 'PT Sans','Verdana','Helvetica', sans-serif; -} - -h1,h2,h3,h4,h5,h6, -.h1,.h2,.h3,.h4,.h5,.h6{ - font-family: 'Merriweather','Georgia', serif; -} \ No newline at end of file diff --git a/html/css/font-raleway.css b/html/css/font-raleway.css deleted file mode 100644 index 66c16653..00000000 --- a/html/css/font-raleway.css +++ /dev/null @@ -1,12 +0,0 @@ -.menu > li{ - font-family: 'Raleway','Verdana','Helvetica', sans-serif; -} - -.btn,.btn__text,button{ - font-family: 'Raleway','Verdana','Helvetica', sans-serif; -} - -h1,h2,h3,h4,h5,h6, -.h1,.h2,.h3,.h4,.h5,.h6{ - font-family: 'Raleway','Helvetica', sans-serif; -} \ No newline at end of file diff --git a/html/css/font-roboto.css b/html/css/font-roboto.css deleted file mode 100644 index 1834da7f..00000000 --- a/html/css/font-roboto.css +++ /dev/null @@ -1,24 +0,0 @@ -body{ - font-family: 'Roboto','Verdana','Helvetica', sans-serif; -} - -.menu > li{ - font-family: 'Roboto','Verdana','Helvetica', sans-serif; -} - -.btn,.btn__text,button{ - font-family: 'Roboto','Verdana','Helvetica', sans-serif; -} - -h1,h2,h3,h4,h5,h6, -.h1,.h2,.h3,.h4,.h5,.h6{ - font-family: 'Roboto','Helvetica', sans-serif; -} - -h5{ - font-weight: 500; -} - -.bar-1 .menu-horizontal>li>.dropdown__trigger, .bar-1 .menu-horizontal>li>a{ - font-weight: 500; -} \ No newline at end of file diff --git a/html/css/font-robotoslab.css b/html/css/font-robotoslab.css deleted file mode 100644 index d4d451ce..00000000 --- a/html/css/font-robotoslab.css +++ /dev/null @@ -1,8 +0,0 @@ -/*body{ - font-family: 'PT Sans','Verdana','Helvetica', sans-serif; -}*/ - -h1,h2,h3,h4,h5,h6, -.h1,.h2,.h3,.h4,.h5,.h6{ - font-family: 'Roboto Slab','Helvetica', sans-serif; -} \ No newline at end of file diff --git a/html/css/font-rubiklato.css b/html/css/font-rubiklato.css deleted file mode 100644 index 13623b5d..00000000 --- a/html/css/font-rubiklato.css +++ /dev/null @@ -1,21 +0,0 @@ -body{ - font-family: 'Lato','Verdana','Helvetica', sans-serif; -} - -h1,h2,h3,h4,h5,h6, -.h1,.h2,.h3,.h4,.h5,.h6{ - font-family: 'Rubik','Helvetica', sans-serif; -} - -h5,h6,.h5,.h6{ - font-weight: 500; -} - -.menu > li{ - font-family: 'Lato','Verdana','Helvetica', sans-serif; -} - -.btn,.btn__text,button{ - font-family: 'Lato','Verdana','Helvetica', sans-serif; -} - diff --git a/html/css/font-sourcesanspro.css b/html/css/font-sourcesanspro.css deleted file mode 100644 index f383ae11..00000000 --- a/html/css/font-sourcesanspro.css +++ /dev/null @@ -1,8 +0,0 @@ -body{ - font-family: 'Source Sans Pro','Verdana','Helvetica', sans-serif; -} - -h1,h2,h3,h4,h5,h6, -.h1,.h2,.h3,.h4,.h5,.h6{ - font-family: 'Source Sans Pro','Helvetica', sans-serif; -} \ No newline at end of file diff --git a/html/css/graphics.css b/html/css/graphics.css deleted file mode 100644 index fcec1498..00000000 --- a/html/css/graphics.css +++ /dev/null @@ -1,1901 +0,0 @@ -@font-face { - font-family: 'icomoon'; - src: url("../fonts/icomoon/icomoon.eot?srf3rx"); - src: url("../fonts/icomoon/icomoon.eot?srf3rx#iefix") format("embedded-opentype"), url("../fonts/icomoon/icomoon.ttf?srf3rx") format("truetype"), url("../fonts/icomoon/icomoon.woff?srf3rx") format("woff"), url("../fonts/icomoon/icomoon.svg?srf3rx#icomoon") format("svg"); - font-weight: normal; - font-style: normal; -} -/* ======================================================= -* -* Template Style -* Edit this section -* -* ======================================================= */ -body { - font-family: "Ubuntu", Arial, sans-serif; - font-weight: 300; - font-size: 20px; - line-height: 1.5; - color: #777777; - color: #7f7f7f; - background: #fff; - height: 100%; - position: relative; -} - -a { - color: #EE8B2B; - -webkit-transition: 0.5s; - -o-transition: 0.5s; - transition: 0.5s; -} -a:hover, a:active, a:focus { - color: #EE8B2B; - outline: none; -} - -p { - margin-bottom: 1.5em; -} - -h1, h2, h3, h4, h5, h6 { - color: #000; - font-family: "Ubuntu", Arial, sans-serif; - font-weight: 400; - margin: 0 0 30px 0; -} - -::-webkit-selection { - color: #818892; - background: #f9f6f0; -} - -::-moz-selection { - color: #818892; - background: #f9f6f0; -} - -::selection { - color: #818892; - background: #f9f6f0; -} - -.edge--bottom { - position: relative; - z-index: 1; -} -.edge--bottom:after { - background: inherit; - content: ''; - display: block; - height: 50%; - left: 0; - position: absolute; - right: 0; - z-index: -1; - -webkit-backface-visibility: hidden; -} -.edge--bottom:after { - bottom: 0; - transform: skewY(-1.5deg); - transform-origin: 100%; -} - -.edge--bottom--reverse { - position: relative; - z-index: 1; -} -.edge--bottom--reverse:after { - background: inherit; - content: ''; - display: block; - height: 50%; - left: 0; - position: absolute; - right: 0; - z-index: -1; - -webkit-backface-visibility: hidden; -} -.edge--bottom--reverse:after { - bottom: 0; - transform: skewY(1.5deg); - transform-origin: 0 100%; -} - -.edge--top { - position: relative; - z-index: 1; -} -.edge--top:before { - background: inherit; - content: ''; - display: block; - height: 50%; - left: 0; - position: absolute; - right: 0; - z-index: -1; - -webkit-backface-visibility: hidden; -} -.edge--top:before { - top: 0; - transform: skewY(1.5deg); - transform-origin: 100% 0; -} - -.edge--top--reverse { - position: relative; - z-index: 1; -} -.edge--top--reverse:before { - background: inherit; - content: ''; - display: block; - height: 50%; - left: 0; - position: absolute; - right: 0; - z-index: -1; - -webkit-backface-visibility: hidden; -} -.edge--top--reverse:before { - top: 0; - transform: skewY(-1.5deg); - transform-origin: 0 0; -} - -.edge--both { - position: relative; - z-index: 1; -} -.edge--both:before, .edge--both:after { - background: inherit; - content: ''; - display: block; - height: 50%; - left: 0; - position: absolute; - right: 0; - z-index: -1; - -webkit-backface-visibility: hidden; -} -.edge--both:before { - top: 0; - transform: skewY(1.5deg); - transform-origin: 100% 0; -} -.edge--both:after { - bottom: 0; - transform: skewY(-1.5deg); - transform-origin: 100%; -} - -.edge--both--reverse { - position: relative; - z-index: 1; -} -.edge--both--reverse:before, .edge--both--reverse:after { - background: inherit; - content: ''; - display: block; - height: 50%; - left: 0; - position: absolute; - right: 0; - z-index: -1; - -webkit-backface-visibility: hidden; -} -.edge--both--reverse:before { - top: 0; - transform: skewY(-1.5deg); - transform-origin: 0 0; -} -.edge--both--reverse:after { - bottom: 0; - transform: skewY(1.5deg); - transform-origin: 0 0; -} - -#fh5co-header { - position: absolute; - z-index: 99; - width: 100%; - opacity: 1; - top: 0; - margin-top: 40px; -} - -@media screen and (max-width:865px) { - .homepage.navbar-right { - float: left !important; - padding-bottom:0.5em; - } -} - -@media screen and (max-width: 767px) { - #fh5co-header { - margin-top: 0; - background: #fff; - -webkit-box-shadow: 0 0 9px 0 rgba(0, 0, 0, 0.1); - -moz-box-shadow: 0 0 9px 0 rgba(0, 0, 0, 0.1); - -ms-box-shadow: 0 0 9px 0 rgba(0, 0, 0, 0.1); - box-shadow: 0 0 9px 0 rgba(0, 0, 0, 0.1); - } - #fh5co-header .navbar-brand { - color: #EE8B2B !important; - } - #fh5co-home.home, #fh5co-home.home .text-wrap { - height: auto !important; - } - #fh5co-header #navbar li a:hover { - color: #EE8B2B !important; - } - #fh5co-header #navbar li span:before { - background: transparent !important; - } - #fh5co-header #navbar li.active a { - background: transparent; - background: none; - color: #EE8B2B !important; - } - #fh5co-header #navbar li.active a span:before { - visibility: visible; - -webkit-transform: scaleX(1); - transform: scaleX(1); - } -} -#fh5co-header .navbar { - padding-bottom: 0; - margin-bottom: 0; -} -#fh5co-header #navbar li a { - font-family: "Ubuntu", Arial, sans-serif; - color: rgba(0, 0, 0, 0.5); - position: relative; - font-size: 19px; - font-weight: 400; -} -#fh5co-header #navbar li span { - position: relative; - display: block; - padding-bottom: 2px; -} -#fh5co-header #navbar li span:before { - content: ""; - position: absolute; - width: 100%; - height: 2px; - bottom: 0; - left: 0; - background-color: rgba(0, 0, 0, 0.5); - visibility: hidden; - -webkit-transform: scaleX(0); - -moz-transform: scaleX(0); - -ms-transform: scaleX(0); - -o-transform: scaleX(0); - transform: scaleX(0); - -webkit-transition: all 0.3s ease-in-out 0s; - -moz-transition: all 0.3s ease-in-out 0s; - -ms-transition: all 0.3s ease-in-out 0s; - -o-transition: all 0.3s ease-in-out 0s; - transition: all 0.3s ease-in-out 0s; -} -#fh5co-header #navbar li a:hover { - color: #222; -} -#fh5co-header #navbar li:hover span:before { - visibility: visible; - -webkit-transform: scaleX(1); - -moz-transform: scaleX(1); - -ms-transform: scaleX(1); - -o-transform: scaleX(1); - transform: scaleX(1); -} -#fh5co-header #navbar li.active a { - background: transparent; - background: none; - color: #222; -} -#fh5co-header #navbar li.active a span:before { - visibility: visible; - -webkit-transform: scaleX(1); - transform: scaleX(1); -} -#fh5co-header .navbar-brand { - float: left; - display: block; - font-size: 30px; - font-weight: 700; - padding-left: 0; - color: #fff; -} - -#fh5co-header .navbar-brand img{ - width:200px; -} - -#fh5co-header.navbar-fixed-top { - position: fixed !important; - background: #fff; - -webkit-box-shadow: 0 0 9px 0 rgba(0, 0, 0, 0.1); - -moz-box-shadow: 0 0 9px 0 rgba(0, 0, 0, 0.1); - -ms-box-shadow: 0 0 9px 0 rgba(0, 0, 0, 0.1); - box-shadow: 0 0 9px 0 rgba(0, 0, 0, 0.1); - margin-top: 0px; - top: 0; -} -#fh5co-header.navbar-fixed-top .navbar-brand { - color: #EE8B2B; -} -#fh5co-header.navbar-fixed-top #navbar li a { - color: rgba(0, 0, 0, 0.5); - -webkit-transition: 0.3s; - -o-transition: 0.3s; - transition: 0.3s; -} -#fh5co-header.navbar-fixed-top #navbar li a:hover { - color: #EE8B2B; -} -#fh5co-header.navbar-fixed-top #navbar li.active a { - background: transparent; - background: none; - color: #EE8B2B; -} -#fh5co-header.navbar-fixed-top #navbar li.active a span:before { - visibility: visible; - -webkit-transform: scaleX(1); - transform: scaleX(1); - background-color: #EE8B2B; -} -#fh5co-header .navbar-default { - border: transparent; - background: transparent; - -webkit-border-radius: 0px; - -moz-border-radius: 0px; - -ms-border-radius: 0px; - border-radius: 0px; -} -@media screen and (max-width: 768px) { - #fh5co-header .navbar-default { - margin-top: 0px; - padding-right: 0px; - padding-left: 0px; - } -} -#fh5co-header .navbar-default .brand-slogan { - margin: 28px 0 0 15px; - float: left; - letter-spacing: 2px; - color: #adadad; -} -#fh5co-header .navbar-default .brand-slogan em { - color: #EE8B2B; - font-style: normal; -} -#fh5co-header a { - -webkit-transition: 0s; - -o-transition: 0s; - transition: 0s; -} - -.main-container #fh5co-home { - background:blue; -} - -#fh5co-home { - background-color: transparent; - background-size: cover; - background-attachment: fixed; - position: relative; - width: 100%; - background-color: #E3E3E3; - color: #fff; - overflow: hidden; -} -#fh5co-home .gradient { - position: absolute; - top: 0; - bottom: 0; - left: 0; - right: 0; - z-index: 2; - opacity: .9; - -webkit-backface-visibility: hidden; - background-color: #EE8B2B; - /* IE9, iOS 3.2+ */ - background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAxIDEiIHByZXNlcnZlQXNwZWN0UmF0aW89Im5vbmUiPjxsaW5lYXJHcmFkaWVudCBpZD0idnNnZyIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIHgxPSIwJSIgeTE9IjAlIiB4Mj0iMTAwJSIgeTI9IjEwMCUiPjxzdG9wIHN0b3AtY29sb3I9IiMzZjk1ZWEiIHN0b3Atb3BhY2l0eT0iMSIgb2Zmc2V0PSIwIi8+PHN0b3Agc3RvcC1jb2xvcj0iIzUyZDNhYSIgc3RvcC1vcGFjaXR5PSIxIiBvZmZzZXQ9IjEiLz48L2xpbmVhckdyYWRpZW50PjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxIiBoZWlnaHQ9IjEiIGZpbGw9InVybCgjdnNnZykiIC8+PC9zdmc+); - background-image: -webkit-gradient(linear, 0% 0%, 100% 100%, color-stop(0, #fafafa), color-stop(1, #ddd)); - /* Android 2.3 */ - background-image: -webkit-repeating-linear-gradient(top left, #fafafa 0%, #ddd 100%); - /* IE10+ */ - background-image: repeating-linear-gradient(to bottom right, #fafafa 0%, #ddd 100%); - background-image: -ms-repeating-linear-gradient(top left, #fafafa 0%, #ddd 100%); -} - -#fh5co-home .lead { - margin-top:10px; - color:#fff; -} - -#fh5co-home .hero-logo { - margin-top:25px; -} - -#fh5co-home #ticker, #fh5co-home #ticker_value { - color:#fff; - margin-top:50px; -} -#fh5co-home, #fh5co-home .text-wrap { - height: 700px; -} -#fh5co-home .text-wrap { - display: table; - width: 100%; - position: relative; - z-index: 4; -} -#fh5co-home .text-inner { - display: table-cell; - vertical-align: middle; - text-align: center; -} -#fh5co-home .text-inner a { - color: white; - border-bottom: 1px dashed rgba(255, 255, 255, 0.5); - -webkit-transition: 0.5s; - -o-transition: 0.5s; - transition: 0.5s; -} -#fh5co-home .text-inner a:hover, #fh5co-home .text-inner a:active, #fh5co-home .text-inner a:focus { - text-decoration: none; - color: white; - border-bottom: 1px dashed white; -} -#fh5co-home .text-inner h1 { - font-size: 50px; - color: #fff; - margin: 0 0 20px 0; -} -#fh5co-home .text-inner h2 { - font-size: 28px; - line-height: 38px; - font-weight: 300; - color: #fff; - margin: 0; -} - -#fh5co-header #navbar li a { - color: rgba(255, 255, 255, 1) !important; - -webkit-transition: 0.3s; - -o-transition: 0.3s; - transition: 0.3s; -} - -#fh5co-header.navbar-fixed-top #navbar li a { - color:rgba(0,0,0,0.5) !important; -} - -#faq-section a { - color:#777; -} - -.navbar-brand > img.darkit {display:none;} -#fh5co-header.navbar-fixed-top .navbar-brand > img.darkit {display:block;} -#fh5co-header.navbar-fixed-top .navbar-brand > img.lightit {display:none;} - - -.navbar-nav > li > .dropdown__trigger { - color: rgba(255, 255, 255, 1) !important; - padding:10px 0; - margin:0 15px; - font-weight:400; -} - -#fh5co-header.navbar-fixed-top #navbar .navbar-nav > li > .dropdown__trigger { - color:rgba(0, 0, 0, 0.5) !important; - -} - -#fh5co-header #navbar li .dropdown__container .dropdown__content .menu-vertical li a { - color:rgba(0,0,0,0.5) !important; -} - -.lang-menu .menu-vertical { - padding-right:1em; -} - -.slant { - position: absolute; - transform: rotate(-1.7deg); - -ms-transform: rotate(-1.7deg); - -webkit-transform: rotate(-1.7deg); - -o-transform: rotate(-1.7deg); - -moz-transform: rotate(-1.7deg); - background-color: #fff; - content: ""; - z-index: 3; - display: inline-block; - height: 70px; - bottom: 0; - margin-bottom: -35px; - padding: 0; - width: 101%; -} - -#fh5co-intro { - position: relative; - bottom: 0; - margin-top: -150px; - z-index: 10; - padding-bottom: 7em; -} -@media screen and (max-width: 768px) { - #fh5co-intro { - padding-bottom: 3em; - } -} -#fh5co-intro > div { - display: -webkit-box; - display: -moz-box; - display: -ms-flexbox; - display: -webkit-flex; - display: flex; - flex-wrap: wrap; - -webkit-flex-wrap: wrap; - -moz-flex-wrap: wrap; -} -#fh5co-intro .fh5co-block { - width: 33.33%; - float: left; - text-align: center; - font-size: 16px; - min-height: 300px; - vertical-align: middle; - padding: 40px; - background: #fff; - -webkit-box-shadow: 7px 14px 42px 3px rgba(163, 174, 184, 0.4); - -moz-box-shadow: 7px 14px 42px 3px rgba(163, 174, 184, 0.4); - -ms-box-shadow: 7px 14px 42px 3px rgba(163, 174, 184, 0.4); - -o-box-shadow: 7px 14px 42px 3px rgba(163, 174, 184, 0.4); - box-shadow: 7px 14px 42px 3px rgba(163, 174, 184, 0.4); - z-index: 7; - flex-grow: 1; - background-size: cover; - position: relative; - backgroun-repeat: no-repeat; -} -@media screen and (max-width: 768px) { - #fh5co-intro .fh5co-block { - width: 100%; - } -} -#fh5co-intro .fh5co-block > .overlay-darker { - z-index: 8; - opacity: .5; - background: #4D4D4D; - position: absolute; - left: 0; - right: 0; - top: 0; - bottom: 0; -} -#fh5co-intro .fh5co-block > .overlay { - background: #fff; - opacity: 1; - z-index: 9; - position: absolute; - top: 0; - bottom: 0; - left: 0; - right: 0; - -webkit-transition: 0.5s; - -o-transition: 0.5s; - transition: 0.5s; -} -#fh5co-intro .fh5co-block > .fh5co-text { - position: relative; - z-index: 10; -} -#fh5co-intro .fh5co-block > .fh5co-text .fh5co-intro-icon { - font-size: 50px; - color: #EE8B2B; - margin-bottom: 30px; - display: block; -} -#fh5co-intro .fh5co-block h2 { - font-size: 24px; - font-weight: 400; -} -#fh5co-intro .fh5co-block:hover > .overlay, #fh5co-intro .fh5co-block:focus > .overlay { - opacity: 0; - z-index: 9; -} -#fh5co-intro .fh5co-block:hover > .fh5co-text, #fh5co-intro .fh5co-block:focus > .fh5co-text { - color: #fff; -} -#fh5co-intro .fh5co-block:hover > .fh5co-text .fh5co-intro-icon, #fh5co-intro .fh5co-block:focus > .fh5co-text .fh5co-intro-icon { - color: #fff; -} -#fh5co-intro .fh5co-block:hover h2, #fh5co-intro .fh5co-block:focus h2 { - color: #fff; -} -#fh5co-intro .fh5co-block:hover .btn, #fh5co-intro .fh5co-block:focus .btn { - border: 2px solid #fff !important; - background: transparent; -} -#fh5co-intro .fh5co-block:hover .btn:hover, #fh5co-intro .fh5co-block:focus .btn:hover { - background: #EE8B2B !important; - border: 2px solid #EE8B2B !important; -} - -.watch-video { - text-align: center; - width: 100%; - display: block; - float: left; -} -.watch-video span { - display: block; - margin-bottom: 20px; - letter-spacing: 2px; - text-transform: uppercase; - font-weight: bold; -} -.watch-video .btn-video { - display: block; - font-size: 60px; - height: 120px; - width: 120px; - margin: 0 auto; - border: 2px solid #EE8B2B; - line-height: 0px; - display: table; - text-align: center; - -webkit-border-radius: 50%; - -moz-border-radius: 50%; - -ms-border-radius: 50%; - border-radius: 50%; -} -.watch-video .btn-video:hover, .watch-video .btn-video:focus, .watch-video .btn-video:active { - text-decoration: none; -} -.watch-video .btn-video i { - position: relative; - display: table-cell; - vertical-align: middle; - margin: 0; - padding: 0; - right: -9px; - -webkit-transition: 0.3s; - -o-transition: 0.3s; - transition: 0.3s; -} -.watch-video .btn-video:hover i, .watch-video .btn-video:focus i { - -webkit-transform: scale(1.1); - -moz-transform: scale(1.1); - -ms-transform: scale(1.1); - -o-transform: scale(1.1); - transform: scale(1.1); -} - -#fh5co-services, #fh5co-testimonials, #fh5co-counters, #fh5co-work, #fh5co-contact, #fh5co-about, #fh5co-logos, #fh5co-donation, #fh5co-merchant, #fh5co-identity { - padding: 4em 0; -} -@media screen and (max-width: 768px) { - #fh5co-services, #fh5co-testimonials, #fh5co-counters, #fh5co-work, #fh5co-contact, #fh5co-about, #fh5co-logos, #fh5co-donation, #fh5co-merchant, #fh5co-identity { - padding: 2em 0; - } -} -#fh5co-identity .font { - margin-bottom:6rem; -} - -#fh5co-identity .col-md-6 { - word-break:break-all; -} - -#fh5co-identity .font-color-sample { - color:#4d4d4d; - font-weight:bold; - letter-spacing:1px; -} -#fh5co-identity h3 { - margin-bottom:10px; -} -#fh5co-identity .color { - margin-bottom:3rem; -} - -#fh5co-identity .box-color { - width:10rem; - height:10rem; - border-radius:50%; - display:block; - border:1px solid #ddd; - -} - -#fh5co-services, #fh5co-work, #fh5co-counters { - padding: 7em 0; -} -@media screen and (max-width: 768px) { - #fh5co-services, #fh5co-work, #fh5co-counters { - padding: 4em 0; - } -} - -#fh5co-services { - background-color: #EE8B2B; - /* IE9, iOS 3.2+ */ - background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAxIDEiIHByZXNlcnZlQXNwZWN0UmF0aW89Im5vbmUiPjxsaW5lYXJHcmFkaWVudCBpZD0idnNnZyIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIHgxPSIwJSIgeTE9IjAlIiB4Mj0iMTAwJSIgeTI9IjEwMCUiPjxzdG9wIHN0b3AtY29sb3I9IiMzZjk1ZWEiIHN0b3Atb3BhY2l0eT0iMSIgb2Zmc2V0PSIwIi8+PHN0b3Agc3RvcC1jb2xvcj0iIzUyZDNhYSIgc3RvcC1vcGFjaXR5PSIxIiBvZmZzZXQ9IjEiLz48L2xpbmVhckdyYWRpZW50PjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxIiBoZWlnaHQ9IjEiIGZpbGw9InVybCgjdnNnZykiIC8+PC9zdmc+); - background-image: -webkit-gradient(linear, 0% 0%, 100% 100%, color-stop(0, #F6A248), color-stop(1, #EE8B2B)); - /* Android 2.3 */ - background-image: -webkit-repeating-linear-gradient(top left, #F6A248 0%, #EE8B2B 100%); - /* IE10+ */ - background-image: repeating-linear-gradient(to bottom right, #F6A248 0%, #EE8B2B 100%); - background-image: -ms-repeating-linear-gradient(top left, #F6A248 0%, #EE8B2B 100%); - overflow: hidden; - position: relative; - color: rgba(255, 255, 255, 0.7); -} -#fh5co-services:before, #fh5co-services:after { - position: absolute; - transform: rotate(-1.7deg); - -ms-transform: rotate(-1.7deg); - -webkit-transform: rotate(-1.7deg); - -o-transform: rotate(-1.7deg); - -moz-transform: rotate(-1.7deg); - background-color: #fff; - content: ""; - z-index: 3; - display: inline-block; - height: 70px; - padding: 0; - width: 101%; -} -#fh5co-services:before { - top: 0; - margin-top: -35px; -} -#fh5co-services:after { - bottom: 0; - margin-bottom: -35px; -} -#fh5co-services .fh5co-service { - padding-right: 30px; -} -#fh5co-services h3 { - font-size: 24px; - color: #fff; -} -#fh5co-services .icon { - font-size: 70px; - margin-bottom: 30px; - display: -moz-inline-stack; - display: inline-block; - zoom: 1; - *display: inline; -} -#fh5co-services .icon:before { - color: #fff; -} -#fh5co-services .section-heading h2 { - color: #fff; -} -#fh5co-services .section-heading h2.left-border:after { - background: rgba(255, 255, 255, 0.3); -} - -#fh5co-counters { - background: #EE8B2B; - overflow: hidden; - background-color: transparent; - background-size: cover; - background-attachment: fixed; - position: relative; - width: 100%; - padding: 9em 0 10em 0; -} -@media screen and (max-width: 768px) { - #fh5co-counters { - padding: 4em 0; - } -} -#fh5co-counters .fh5co-overlay { - position: absolute; - top: 0; - left: 0; - right: 0; - bottom: 0; - z-index: 2; - background: rgba(0, 0, 0, 0.7); -} -#fh5co-counters:before, #fh5co-counters:after { - position: absolute; - transform: rotate(-1.7deg); - -ms-transform: rotate(-1.7deg); - -webkit-transform: rotate(-1.7deg); - -o-transform: rotate(-1.7deg); - -moz-transform: rotate(-1.7deg); - background-color: #fff; - content: ""; - z-index: 3; - display: inline-block; - height: 70px; - padding: 0; - width: 101%; -} -#fh5co-counters:before { - top: 0; - margin-top: -35px; -} -#fh5co-counters:after { - bottom: 0; - margin-bottom: -35px; -} -#fh5co-counters .section-heading { - position: relative; - z-index: 3; - margin-bottom: 0; -} -#fh5co-counters .section-heading h2 { - color: #fff; -} -#fh5co-counters .section-heading h2:after { - background: rgba(255, 255, 255, 0.3) !important; -} -#fh5co-counters .section-heading .subtext h3 { - color: rgba(255, 255, 255, 0.7) !important; -} -#fh5co-counters .fh5co-counter { - position: relative; - z-index: 3; - text-align: center; -} -@media screen and (max-width: 992px) { - #fh5co-counters .fh5co-counter { - margin-bottom: 50px; - float: left; - width: 100%; - } -} -#fh5co-counters .fh5co-counter .fh5co-counter-icon, -#fh5co-counters .fh5co-counter .fh5co-counter-number, -#fh5co-counters .fh5co-counter .fh5co-counter-label { - display: block; -} -#fh5co-counters .fh5co-counter .fh5co-counter-icon { - font-size: 40px; - color: #EE8B2B; -} -#fh5co-counters .fh5co-counter .fh5co-counter-number { - font-size: 70px; - color: #fff; - font-weight: 300; -} -#fh5co-counters .fh5co-counter .fh5co-counter-label { - color: rgba(255, 255, 255, 0.5); - font-size: 18px; - font-weight: 400; -} - -#fh5co-testimonials .box-testimony { - margin-bottom: 2em; - float: left; -} -#fh5co-testimonials .box-testimony a { - color: rgba(255, 255, 255, 0.5); -} -#fh5co-testimonials .box-testimony a:hover, #fh5co-testimonials .box-testimony a:focus, #fh5co-testimonials .box-testimony a:active { - color: white; - text-decoration: none; -} -#fh5co-testimonials .box-testimony blockquote { - padding-left: 0; - border-left: none; - padding: 30px; - background: #fff; - background: #EE8B2B; - font-size: 20px; - font-weight: 300; - position: relative; - -webkit-border-radius: 7px; - -moz-border-radius: 7px; - -ms-border-radius: 7px; - border-radius: 7px; -} -#fh5co-testimonials .box-testimony blockquote:after { - content: ""; - position: absolute; - top: 100%; - left: 40px; - border-top: 10px solid black; - border-top-color: #fff; - border-top-color: #EE8B2B; - border-left: 10px solid transparent; - border-right: 10px solid transparent; -} -#fh5co-testimonials .box-testimony blockquote p { - font-style: italic; - color: #fff; -} -#fh5co-testimonials .box-testimony .author { - line-height: 20px; - color: black; - font-size: 16px; - margin-left: 20px; - font-weight: 400; -} -#fh5co-testimonials .box-testimony .author a { - color: #EE8B2B; -} -#fh5co-testimonials .box-testimony .author a:hover { - text-decoration: underline; -} -#fh5co-testimonials .box-testimony .author > figure { - float: left; - margin-right: 10px; -} -#fh5co-testimonials .box-testimony .author > figure img { - width: 60px; - -webkit-border-radius: 50%; - -moz-border-radius: 50%; - -ms-border-radius: 50%; - border-radius: 50%; -} -#fh5co-testimonials .box-testimony .author p { - float: left; - margin-top: 10px; -} -#fh5co-testimonials .box-testimony .author .subtext { - display: block; - color: rgba(0, 0, 0, 0.5); - font-size: 16px; - font-weight: 400 !important; -} - -#fh5co-work { - overflow: hidden; - position: relative; - color: rgba(255, 255, 255, 0.8); - background-color: #EE8B2B; - /* IE9, iOS 3.2+ */ - background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAxIDEiIHByZXNlcnZlQXNwZWN0UmF0aW89Im5vbmUiPjxsaW5lYXJHcmFkaWVudCBpZD0idnNnZyIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIHgxPSIwJSIgeTE9IjAlIiB4Mj0iMTAwJSIgeTI9IjEwMCUiPjxzdG9wIHN0b3AtY29sb3I9IiMzZjk1ZWEiIHN0b3Atb3BhY2l0eT0iMSIgb2Zmc2V0PSIwIi8+PHN0b3Agc3RvcC1jb2xvcj0iIzUyZDNhYSIgc3RvcC1vcGFjaXR5PSIxIiBvZmZzZXQ9IjEiLz48L2xpbmVhckdyYWRpZW50PjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxIiBoZWlnaHQ9IjEiIGZpbGw9InVybCgjdnNnZykiIC8+PC9zdmc+); - background-image: -webkit-gradient(linear, 0% 0%, 100% 100%, color-stop(0, #F6A248), color-stop(1, #F5922F)); - /* Android 2.3 */ - background-image: -webkit-repeating-linear-gradient(top left, #F6A248 0%, #F5922F 100%); - /* IE10+ */ - background-image: repeating-linear-gradient(to bottom right, #F6A248 0%, #F5922F 100%); - background-image: -ms-repeating-linear-gradient(top left, #F6A248 0%, #F5922F 100%); -} -#fh5co-work a { - color: rgba(255, 255, 255, 0.5); - text-decoration: underline; -} -#fh5co-work a:hover { - color: white; -} -#fh5co-work:before, #fh5co-work:after { - position: absolute; - transform: rotate(-1.7deg); - -ms-transform: rotate(-1.7deg); - -webkit-transform: rotate(-1.7deg); - -o-transform: rotate(-1.7deg); - -moz-transform: rotate(-1.7deg); - background-color: #fff; - content: ""; - z-index: 3; - display: inline-block; - height: 70px; - padding: 0; - width: 101%; -} -#fh5co-work:before { - top: 0; - margin-top: -35px; -} -#fh5co-work:after { - bottom: 0; - margin-bottom: -35px; -} -#fh5co-work .section-heading h2 { - color: #fff; -} -#fh5co-work .section-heading h2:after { - background: rgba(255, 255, 255, 0.3); -} -#fh5co-work .section-heading h3 { - color: rgba(255, 255, 255, 0.8); -} -#fh5co-work .fh5co-project-item { - display: block; - width: 100%; - position: relative; - top: 0; - background: #fff; - overflow: hidden; - z-index: 9; - margin-bottom: 30px; - -webkit-border-radius: 7px; - -moz-border-radius: 7px; - -ms-border-radius: 7px; - border-radius: 7px; - -webkit-transition: 0.3s; - -o-transition: 0.3s; - transition: 0.3s; -} -#fh5co-work .fh5co-project-item img { - z-index: 8; - opacity: 1; - -webkit-transition: 0.3s; - -o-transition: 0.3s; - transition: 0.3s; -} -#fh5co-work .fh5co-project-item .fh5co-text { - padding: 10px 20px; -} -#fh5co-work .fh5co-project-item .fh5co-text h2, #fh5co-work .fh5co-project-item .fh5co-text span { - text-decoration: none !important; -} -#fh5co-work .fh5co-project-item .fh5co-text h2 { - font-size: 18px; - font-weight: bold; - margin: 0; -} -#fh5co-work .fh5co-project-item .fh5co-text span { - color: #b3b3b3; - font-size: 16px; - font-weight: 400; -} -#fh5co-work .fh5co-project-item:hover, #fh5co-work .fh5co-project-item:focus { - -webkit-box-shadow: 7px 14px 42px 3px rgba(0, 0, 0, 0.4); - -moz-box-shadow: 7px 14px 42px 3px rgba(0, 0, 0, 0.4); - -ms-box-shadow: 7px 14px 42px 3px rgba(0, 0, 0, 0.4); - -o-box-shadow: 7px 14px 42px 3px rgba(0, 0, 0, 0.4); - box-shadow: 7px 14px 42px 3px rgba(0, 0, 0, 0.4); - text-decoration: none; - top: -15px; -} -#fh5co-work .fh5co-project-item:hover img, #fh5co-work .fh5co-project-item:focus img { - opacity: .7; -} -#fh5co-work .fh5co-project-item:hover h2, #fh5co-work .fh5co-project-item:hover span, #fh5co-work .fh5co-project-item:focus h2, #fh5co-work .fh5co-project-item:focus span { - text-decoration: none !important; -} - -.fh5co-person { - border: 2px solid #f2f2f2; - padding: 30px 30px 30px 30px; - float: left; - width: 100%; - position: relative; - margin-bottom:30px; -} -.fh5co-person .dark { - background:#4d4d4d; -} - -.fh5co-person .flag { - padding-bottom:56px; -} - -@media screen and (max-width: 1200px) { - - -.fh5co-person .flag { - padding-bottom:44px; -} - -} - - -#fh5co-merchant .fh5co-person img.small-circle, #fh5co-donation .fh5co-person img.small-circle { - padding:0em 4.42em; -} - -.fh5co-person .horiz { - padding:7.2rem 5px; -} - -.fh5co-person .square-crop { - padding:0px 2.9em; -} - - -@media screen and (max-width: 1200px) { - - .fh5co-person .square-crop { - padding-left: 1.4em; - padding-right:1.4em; - } - -} - -.fh5co-person img { - max-width:100%; - margin-bottom:30px; - padding:5px; -} -@media screen and (max-width: 992px) { - .fh5co-person { - margin-bottom: 3.5em; - } -} -.fh5co-person figure { - position: absolute; - margin-top: -60px; - top: 0; - left: 50%; - margin-left: -60px; - display: block; - margin-bottom: 50px; -} -.fh5co-person figure img { - width: 120px; - border: 2px solid #f2f2f2; - -webkit-border-radius: 50%; - -moz-border-radius: 50%; - -ms-border-radius: 50%; - border-radius: 50%; -} -.fh5co-person h3 { - margin-bottom: 0px; -} -.fh5co-person .fh5co-position { - color: #b3b3b3; - display: block; - margin-bottom: 20px; -} - -.form-control { - box-shadow: none; - background: transparent; - border: 2px solid rgba(0, 0, 0, 0.1); - height: 54px; - font-size: 18px; - font-weight: 400; -} -.form-control:active, .form-control:focus { - outline: none; - box-shadow: none; - border-color: #EE8B2B; -} - -.btn { - -webkit-transition: 0.5s; - -o-transition: 0.5s; - transition: 0.5s; -} -.btn:hover, .btn:active, .btn:focus { - outline: none; -} - -#fh5co-contact { - padding-bottom: 0; -} -#fh5co-contact .fh5co-contact-info { - padding: 0; - margin: 0 0 1.5em 0; -} -#fh5co-contact .fh5co-contact-info li { - position: relative; - padding: 0; - margin: 0 0 1.5em 0; - padding-left: 50px; - list-style: none; -} -#fh5co-contact .fh5co-contact-info li i { - position: absolute; - top: .2em; - left: 0; -} - -.section-heading { - float: left; - width: 100%; - padding-bottom: 15px; - clear: both; -} -.section-heading h2 { - margin: 0 0 30px 0; - font-size: 50px; - font-weight: 300; - color: #444; - text-transform: uppercase; - position: relative; - display: block; - padding-bottom: 20px; - line-height: 1.5; -} -.section-heading h2.left-border:after { - content: ""; - position: absolute; - display: block; - width: 80px; - height: 2px; - background: #EE8B2B; - left: 0%; - margin-left: 0px; - bottom: 0; -} -.section-heading h2:after { - content: ""; - position: absolute; - display: block; - width: 80px; - height: 2px; - background: #EE8B2B; - left: 50%; - margin-left: -40px; - bottom: 0; -} -@media screen and (max-width: 768px) { - .section-heading h2 { - font-size: 30px; - } -} -.section-heading h3 { - font-weight: 300; - line-height: 1.5; - color: #929292; -} -@media screen and (max-width: 768px) { - .section-heading h3 { - font-size: 24px !important; - line-height: 34px; - } -} - -.btn { - -webkit-transition: 0.3s; - -o-transition: 0.3s; - transition: 0.3s; -} - -.fh5co-nav-toggle { - width: 25px; - height: 25px; - cursor: pointer; - text-decoration: none; -} -.fh5co-nav-toggle.active i::before, .fh5co-nav-toggle.active i::after { - background: #EE8B2B; -} -.fh5co-nav-toggle:hover, .fh5co-nav-toggle:focus, .fh5co-nav-toggle:active { - outline: none; - border-bottom: none !important; -} -.fh5co-nav-toggle i { - position: relative; - display: -moz-inline-stack; - display: inline-block; - zoom: 1; - *display: inline; - width: 25px; - height: 3px; - color: #EE8B2B; - font: bold 14px/.4 Helvetica; - text-transform: uppercase; - text-indent: -55px; - background: #EE8B2B; - transition: all .2s ease-out; -} -.fh5co-nav-toggle i::before, .fh5co-nav-toggle i::after { - content: ''; - width: 25px; - height: 3px; - background: #EE8B2B; - position: absolute; - left: 0; - -webkit-transition: 0.2s; - -o-transition: 0.2s; - transition: 0.2s; -} - -.fh5co-nav-toggle i::before { - top: -7px; -} - -.fh5co-nav-toggle i::after { - bottom: -7px; -} - -.fh5co-nav-toggle:hover i::before { - top: -10px; -} - -.fh5co-nav-toggle:hover i::after { - bottom: -10px; -} - -.fh5co-nav-toggle.active i { - background: transparent; -} - -.fh5co-nav-toggle.active i::before { - top: 0; - -webkit-transform: rotateZ(45deg); - -moz-transform: rotateZ(45deg); - -ms-transform: rotateZ(45deg); - -o-transform: rotateZ(45deg); - transform: rotateZ(45deg); -} - -.fh5co-nav-toggle.active i::after { - bottom: 0; - -webkit-transform: rotateZ(-45deg); - -moz-transform: rotateZ(-45deg); - -ms-transform: rotateZ(-45deg); - -o-transform: rotateZ(-45deg); - transform: rotateZ(-45deg); -} - -.fh5co-nav-toggle { - position: absolute; - top: 2px; - right: 0px; - z-index: 21; - padding: 6px 0 0 0; - display: block; - margin: 0 auto; - display: none; - height: 44px; - width: 25px; - border-bottom: none !important; -} -@media screen and (max-width: 767px) { - .fh5co-nav-toggle { - display: block; - } - - #fh5co-header.navbar-fixed-top .navbar-brand > img.darkit, .navbar-brand > img.darkit {display:block !important;} - #fh5co-header.navbar-fixed-top .navbar-brand > img.lightit, .navbar-brand > img.lightit {display:none !important;} - - #fh5co-header #navbar li a, #fh5co-header.navbar-fixed-top #navbar li a, .navbar-nav > li > .dropdown__trigger, #fh5co-header.navbar-fixed-top .navbar-nav > li > .dropdown__trigger { - color:rgba(0,0,0,0.5) !important; - } - - -} -.type--fine-print { - font-size: 0.85714286em; -} - -#footer { - padding: 50px 0; - color: #7f7f7f; - position: relative; -} -#footer .gotop { - position: absolute; - top: -20px; - left: 50%; - margin-left: -40px; - background: #fff; - z-index: 8; - width: 80px; - height: 80px; - font-size: 30px; - padding-top: 5px; - text-align: center; - vertical-align: middle; - -webkit-border-radius: 50%; - -moz-border-radius: 50%; - -ms-border-radius: 50%; - border-radius: 50%; - -webkit-transition: 0.2s; - -o-transition: 0.2s; - transition: 0.2s; -} -#footer .gotop:hover, #footer .gotop:focus { - top: -25px; - text-decoration: none !important; -} -#footer .copyright { - font-size: 16px; - margin-bottom: 0px; - padding-bottom: 0; -} - -.btn { - text-transform: uppercase; - letter-spacing: 2px; - -webkit-transition: 0.3s; - -o-transition: 0.3s; - transition: 0.3s; -} -.btn.btn-primary { - background: #EE8B2B; - color: #fff; - border: none !important; - border: 2px solid transparent !important; -} - - -.btn.btn-primary:hover, .btn.btn-primary:active, .btn.btn-primary:focus { - box-shadow: none; - background: #EE8B2B; -} -.btn:hover, .btn:active, .btn:focus { - background: #393e46 !important; - color: #fff; - outline: none !important; -} -.btn.btn-default:hover, .btn.btn-default:focus, .btn.btn-default:active { - border-color: transparent; -} - - -.btn.btn-secondary { - background: #fff; - color: #4E4E4E; - border: 2px solid #4E4E4E; -} - -.btn.btn-secondary:hover, .btn.btn-secondary:active, .btn.btn-secondary:focus { - background:#4E4E4E !important; - color:#fff; -} - -.social { - padding: 0; - margin: 0; - display: inline-block; - position: relative; - width: 100%; -} -.social li { - list-style: none; - padding: 0; - margin: 0; - display: inline-block; -} -.social li a { - font-size: 16px; - display: table; - width: 40px; - height: 40px; - margin: 0 4px; -} -.social li a i { - display: table-cell; - vertical-align: middle; -} -.social li a:hover, .social li a:active, .social li a:focus { - text-decoration: none; - border-bottom: none; -} -.social li a.social-box { - background: #EE8B2B; - color: #fff; -} -.social li a.social-circle { - background: #EE8B2B; - color: #fff; - -webkit-border-radius: 50%; - -moz-border-radius: 50%; - -ms-border-radius: 50%; - border-radius: 50%; -} -.social li a:hover { - background: #393e46 !important; -} -.social.social-box a { - background: #EE8B2B; - color: #fff; -} -.social.social-circle a { - background: #EE8B2B; - color: #fff; - -webkit-border-radius: 50%; - -moz-border-radius: 50%; - -ms-border-radius: 50%; - border-radius: 50%; -} - -#map { - width: 100%; - height: 500px; - position: relative; -} -@media screen and (max-width: 768px) { - #map { - height: 200px; - } -} - -.mfp-with-zoom .mfp-container, -.mfp-with-zoom.mfp-bg { - opacity: 0; - -webkit-backface-visibility: hidden; - /* ideally, transition speed should match zoom duration */ - -webkit-transition: all 0.3s ease-out; - -moz-transition: all 0.3s ease-out; - -o-transition: all 0.3s ease-out; - transition: all 0.3s ease-out; -} - -.mfp-with-zoom.mfp-ready .mfp-container { - opacity: 1; -} - -.mfp-with-zoom.mfp-ready.mfp-bg { - opacity: 0.8; -} - -.mfp-with-zoom.mfp-removing .mfp-container, -.mfp-with-zoom.mfp-removing.mfp-bg { - opacity: 0; -} - -/*.js .to-animate, -.js .to-animate-2, -.js .single-animate { - opacity: 0; -} - -.js .to-animate, .js .to-animate-2, .js .single-animate { - opacity: 0; -}*/ - -@media screen and (max-width: 480px) { - .col-xxs-12 { - float: none; - width: 100%; - } -} - -.row-bottom-padded-lg { - padding-bottom: 7em; -} -@media screen and (max-width: 768px) { - .row-bottom-padded-lg { - padding-bottom: 2em; - } -} - -.row-bottom-padded-md { - padding-bottom: 4em; -} -@media screen and (max-width: 768px) { - .row-bottom-padded-md { - padding-bottom: 2em; - } -} - -.row-bottom-padded-sm { - padding-bottom: 2em; -} -@media screen and (max-width: 768px) { - .row-bottom-padded-sm { - padding-bottom: 2em; - } -} - -.fh5co-animated { - -webkit-animation-duration: .3s; - animation-duration: .3s; - -webkit-animation-fill-mode: both; - animation-fill-mode: both; -} - - -.back-to-top { - position: fixed; - width: 3.71428571em; - height: 3.71428571em; - background: #fff; - border-radius: 50%; - text-align: center; - right: 1.85714286em; - bottom: 3.71428571em; - padding-top: 12px; - box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); - box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.04); - z-index: 99; - border: 1px solid #ececec; - transition: 0.2s ease-out; - -webkit-transition: 0.2s ease-out; - -moz-transition: 0.2s ease-out; -} -.back-to-top i { - color: #252525; - display:block; - margin-top:7px; -} -.back-to-top:not(.active) { - opacity: 0; - transform: translate3d(0, 20px, 0); - -webkit-transform: translate3d(0, 20px, 0); - pointer-events: none; -} -.back-to-top.active:hover { - transform: translate3d(0, -5px, 0); - -webkit-transform: translate3d(0, -5px, 0); -} - - -ul:not([class*='menu']) li > a { - font-weight: normal; -} -ul:not([class*='menu']) li > a:hover { - text-decoration: none; -} -ol { - list-style-position: outside; - list-style-type: decimal; -} -ol li:not(:last-child) { - margin-bottom: 1.85714286em; -} -ol.lead li:not(:last-child) { - margin-bottom: 1.26315789473684em; -} -.list-inline { - margin-left: 0; - display: inline-block; -} -.list-inline li { - padding: 0; -} -.list-inline li:not(:last-child) { - margin-right: 1.85714286em; -} -.list-inline:not(:last-child) { - margin-right: 1.85714286em; -} -.list-inline--images img { - max-height: 2.78571429em; -} -@media all and (min-width: 768px) { - - .navbar-nav > li > .dropdown__trigger { - padding-top: 17.5px; - padding-bottom: 17.5px; - line-height:20px; - font-size:19px; - display:block; - font-family: "Ubuntu", Arial, sans-serif; - color: rgba(0, 0, 0, 0.5); - } - - .navbar-nav > li > .dropdown__trigger:hover { - - color: #222; - } - - - - .list-inline--images li:not(:last-child) { - margin-right: 5.57142857em; - } -} -@media all and (max-width: 767px) { - .list-inline--images li:not(:last-child) { - margin-bottom: 1.85714286em; - } -} -.list--loose > li:not(:last-child) { - margin-bottom: 0.46428571em; -} -.list--hover li { - transition: 0.2s ease; - -webkit-transition: 0.2s ease; - -moz-transition: 0.2s ease; -} -.list--hover li:not(:hover) { - opacity: .6; -} -.social-list a { - color: #252525; -} - -footer .type--fine-print:not(p) { - opacity: .5; -} -footer a { - font-weight: normal; -} -footer a:hover, footer a:focus { - text-decoration: none; -} - -footer:not(.bg--primary):not(.bg--dark) a, footer a { - color: #666666; -} -footer a.type--fine-print:not(:first-child) { - margin-left: 1.85714286em; -} -footer .logo { - max-height: 1.67142857em; -} -footer ul:not(.list-inline):not(.slides) > li { - line-height: 2.32142857em !important; -} -footer.footer-2 .row:last-child { - margin-top: 3.71428571em; -} -footer.footer-5 .row [class*='col-'] > div:nth-last-child(2) { - margin: 0.92857143em; -} -footer.footer-5 .row [class*='col-'] > div:nth-last-child(2) .type--fine-print { - opacity: 1; -} -footer.footer-6 .footer__lower { - background: #fafafa; - margin-top: 1.85714286em; - padding: 1.85714286em 0; -} -footer.footer-6.bg--dark .footer__lower { - background: #181818; -} -footer.footer-6.bg--secondary .footer__lower { - background: #f5f5f5; -} -section.space--xs, -footer.space--xs { - padding-top: 3.71428571em; - padding-bottom: 3.71428571em; -} - -.social-list a { - color: #252525; -} - -.imagebg:not(.image--light) .social-list a { - color: #fff; -} - -@media all and (max-width: 767px) { - .list-inline:not(.social-list):not(.list-inline--images) { - display: block; - } - .list-inline:not(.social-list):not(.list-inline--images) li { - display: block; - margin: 0; - } - .list-inline:not(.social-list):not(.list-inline--images) li:not(:last-child) { - margin-bottom: 0.46428571em; - } -} - -.notification.side-menu .social-list:not(:first-child) { - margin-top: 1.85714286em; -} - -.nav-sidebar-column .social-list { - margin-bottom: 0.92857143em; -} - -.menu-fullscreen .social-list { - margin-right: 0; -} - -@media all and (max-width: 767px) { - .card .list-inline:not(.social-list) li { - display: inline-block; - } - .card .list-inline:not(.social-list) li:not(:first-child) { - margin-left: 0.92857143em; - } -} - -/*! -- Stack Footers -- */ -footer .type--fine-print:not(p) { - opacity: .5; -} -footer a { - font-weight: normal; -} -footer:not(.bg--primary):not(.bg--dark) a { - color: #666666; -} -footer a.type--fine-print:not(:first-child) { - margin-left: 1.85714286em; -} -footer .logo { - max-height: 1.67142857em; -} -footer ul:not(.list-inline):not(.slides) > li { - line-height: 2.32142857em !important; -} -footer.footer-2 .row:last-child { - margin-top: 3.71428571em; -} -footer.footer-5 .row [class*='col-'] > div:nth-last-child(2) { - margin: 0.92857143em; -} -footer.footer-5 .row [class*='col-'] > div:nth-last-child(2) .type--fine-print { - opacity: 1; -} -footer.footer-6 .footer__lower { - background: #fafafa; - margin-top: 1.85714286em; - padding: 1.85714286em 0; -} -footer.footer-6.bg--dark .footer__lower { - background: #181818; -} -footer.footer-6.bg--secondary .footer__lower { - background: #f5f5f5; -} -footer.footer-6.bg--primary .footer__lower { - background: #3483de; -} -footer.footer-7 { - padding: 1.85714286em 0; -} -@media all and (min-width: 768px) { - footer .list-inline + .btn { - position: relative; - bottom: 4px; - } - footer .logo { - margin: 0; - } - footer .logo:not(:last-child) { - margin-right: 1.85714286em; - } - footer.footer-3 .logo + ul { - position: relative; - top: 5px; - } - footer.footer-3 .logo + ul a { - color: #252525; - } - footer.footer-3 .social-list { - position: relative; - top: 9px; - } - footer.footer-3 .row:last-child { - margin-top: 1.85714286em; - } - footer.footer-4 .logo + span { - position: relative; - top: 8px; - } - footer.footer-4 form { - position: relative; - bottom: 4px; - } - footer.footer-4 .row:last-child { - margin-top: 1.85714286em; - } - footer.imagebg:not(.image--light) span, - footer.imagebg:not(.image--light) p, - footer.imagebg:not(.image--light) a { - color: #fff; - } - .footer-1 .type--fine-print { - position: relative; - top: 2px; - } -} -@media all and (max-width: 767px) { - footer .social-list { - margin: 1.85714286em 0; - } - .footer-4 form { - margin: 1.85714286em 0; - } - .footer-4 .logo { - margin: 0; - } - .footer-6 .footer__lower .social-list { - margin-top: 1.85714286em; - } - .footer-7 .social-list { - margin-top: 1.85714286em; - } - .footer-1 .social-list { - margin-top: 1.85714286em; - } - .footer-1 .logo { - display: block; - margin-top: 1.85714286em; - margin-bottom: 0.92857143em; - margin-left: auto; - margin-right: auto; - } -} -/*# sourceMappingURL=style.css.map */ diff --git a/html/css/icomoon.css b/html/css/icomoon.css deleted file mode 100755 index 8bd50346..00000000 --- a/html/css/icomoon.css +++ /dev/null @@ -1,2438 +0,0 @@ -@font-face { - font-family: 'icomoon'; - src:url('../fonts/icomoon/icomoon.eot?qtatmt'); - src:url('../fonts/icomoon/icomoon.eot?qtatmt#iefix') format('embedded-opentype'), - url('../fonts/icomoon/icomoon.ttf?qtatmt') format('truetype'), - url('../fonts/icomoon/icomoon.woff?qtatmt') format('woff'), - url('../fonts/icomoon/icomoon.svg?qtatmt#icomoon') format('svg'); - font-weight: normal; - font-style: normal; -} - -[class^="icon-"], [class*=" icon-"] { - font-family: 'icomoon'; - speak: none; - font-style: normal; - font-weight: normal; - font-variant: normal; - text-transform: none; - line-height: 1; - - /* Better Font Rendering =========== */ - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; -} - -.icon-glass:before { - content: "\f000"; -} -.icon-music:before { - content: "\f001"; -} -.icon-search2:before { - content: "\f002"; -} -.icon-envelope-o:before { - content: "\f003"; -} -.icon-heart:before { - content: "\f004"; -} -.icon-star:before { - content: "\f005"; -} -.icon-star-o:before { - content: "\f006"; -} -.icon-user:before { - content: "\f007"; -} -.icon-film:before { - content: "\f008"; -} -.icon-th-large:before { - content: "\f009"; -} -.icon-th:before { - content: "\f00a"; -} -.icon-th-list:before { - content: "\f00b"; -} -.icon-check:before { - content: "\f00c"; -} -.icon-close:before { - content: "\f00d"; -} -.icon-remove:before { - content: "\f00d"; -} -.icon-times:before { - content: "\f00d"; -} -.icon-search-plus:before { - content: "\f00e"; -} -.icon-search-minus:before { - content: "\f010"; -} -.icon-power-off:before { - content: "\f011"; -} -.icon-signal:before { - content: "\f012"; -} -.icon-cog:before { - content: "\f013"; -} -.icon-gear:before { - content: "\f013"; -} -.icon-trash-o:before { - content: "\f014"; -} -.icon-home:before { - content: "\f015"; -} -.icon-file-o:before { - content: "\f016"; -} -.icon-clock-o:before { - content: "\f017"; -} -.icon-road:before { - content: "\f018"; -} -.icon-download:before { - content: "\f019"; -} -.icon-arrow-circle-o-down:before { - content: "\f01a"; -} -.icon-arrow-circle-o-up:before { - content: "\f01b"; -} -.icon-inbox:before { - content: "\f01c"; -} -.icon-play-circle-o:before { - content: "\f01d"; -} -.icon-repeat2:before { - content: "\f01e"; -} -.icon-rotate-right:before { - content: "\f01e"; -} -.icon-refresh:before { - content: "\f021"; -} -.icon-list-alt:before { - content: "\f022"; -} -.icon-lock:before { - content: "\f023"; -} -.icon-flag:before { - content: "\f024"; -} -.icon-headphones:before { - content: "\f025"; -} -.icon-volume-off:before { - content: "\f026"; -} -.icon-volume-down:before { - content: "\f027"; -} -.icon-volume-up:before { - content: "\f028"; -} -.icon-qrcode:before { - content: "\f029"; -} -.icon-barcode:before { - content: "\f02a"; -} -.icon-tag:before { - content: "\f02b"; -} -.icon-tags:before { - content: "\f02c"; -} -.icon-book:before { - content: "\f02d"; -} -.icon-bookmark:before { - content: "\f02e"; -} -.icon-print:before { - content: "\f02f"; -} -.icon-camera:before { - content: "\f030"; -} -.icon-font:before { - content: "\f031"; -} -.icon-bold:before { - content: "\f032"; -} -.icon-italic:before { - content: "\f033"; -} -.icon-text-height:before { - content: "\f034"; -} -.icon-text-width:before { - content: "\f035"; -} -.icon-align-left:before { - content: "\f036"; -} -.icon-align-center2:before { - content: "\f037"; -} -.icon-align-right:before { - content: "\f038"; -} -.icon-align-justify2:before { - content: "\f039"; -} -.icon-list:before { - content: "\f03a"; -} -.icon-dedent:before { - content: "\f03b"; -} -.icon-outdent:before { - content: "\f03b"; -} -.icon-indent:before { - content: "\f03c"; -} -.icon-video-camera:before { - content: "\f03d"; -} -.icon-image:before { - content: "\f03e"; -} -.icon-photo:before { - content: "\f03e"; -} -.icon-picture-o:before { - content: "\f03e"; -} -.icon-pencil:before { - content: "\f040"; -} -.icon-map-marker:before { - content: "\f041"; -} -.icon-adjust:before { - content: "\f042"; -} -.icon-tint:before { - content: "\f043"; -} -.icon-edit:before { - content: "\f044"; -} -.icon-pencil-square-o:before { - content: "\f044"; -} -.icon-share-square-o:before { - content: "\f045"; -} -.icon-check-square-o:before { - content: "\f046"; -} -.icon-arrows:before { - content: "\f047"; -} -.icon-step-backward:before { - content: "\f048"; -} -.icon-fast-backward:before { - content: "\f049"; -} -.icon-backward:before { - content: "\f04a"; -} -.icon-play2:before { - content: "\f04b"; -} -.icon-pause2:before { - content: "\f04c"; -} -.icon-stop2:before { - content: "\f04d"; -} -.icon-forward:before { - content: "\f04e"; -} -.icon-fast-forward2:before { - content: "\f050"; -} -.icon-step-forward:before { - content: "\f051"; -} -.icon-eject:before { - content: "\f052"; -} -.icon-chevron-left:before { - content: "\f053"; -} -.icon-chevron-right:before { - content: "\f054"; -} -.icon-plus-circle:before { - content: "\f055"; -} -.icon-minus-circle:before { - content: "\f056"; -} -.icon-times-circle:before { - content: "\f057"; -} -.icon-check-circle:before { - content: "\f058"; -} -.icon-question-circle:before { - content: "\f059"; -} -.icon-info-circle:before { - content: "\f05a"; -} -.icon-crosshairs:before { - content: "\f05b"; -} -.icon-times-circle-o:before { - content: "\f05c"; -} -.icon-check-circle-o:before { - content: "\f05d"; -} -.icon-ban2:before { - content: "\f05e"; -} -.icon-arrow-left:before { - content: "\f060"; -} -.icon-arrow-right:before { - content: "\f061"; -} -.icon-arrow-up:before { - content: "\f062"; -} -.icon-arrow-down:before { - content: "\f063"; -} -.icon-mail-forward:before { - content: "\f064"; -} -.icon-share:before { - content: "\f064"; -} -.icon-expand2:before { - content: "\f065"; -} -.icon-compress:before { - content: "\f066"; -} -.icon-plus:before { - content: "\f067"; -} -.icon-minus:before { - content: "\f068"; -} -.icon-asterisk:before { - content: "\f069"; -} -.icon-exclamation-circle:before { - content: "\f06a"; -} -.icon-gift:before { - content: "\f06b"; -} -.icon-leaf:before { - content: "\f06c"; -} -.icon-fire:before { - content: "\f06d"; -} -.icon-eye:before { - content: "\f06e"; -} -.icon-eye-slash:before { - content: "\f070"; -} -.icon-exclamation-triangle:before { - content: "\f071"; -} -.icon-warning:before { - content: "\f071"; -} -.icon-plane:before { - content: "\f072"; -} -.icon-calendar:before { - content: "\f073"; -} -.icon-random:before { - content: "\f074"; -} -.icon-comment:before { - content: "\f075"; -} -.icon-magnet:before { - content: "\f076"; -} -.icon-chevron-up:before { - content: "\f077"; -} -.icon-chevron-down:before { - content: "\f078"; -} -.icon-retweet:before { - content: "\f079"; -} -.icon-shopping-cart:before { - content: "\f07a"; -} -.icon-folder:before { - content: "\f07b"; -} -.icon-folder-open:before { - content: "\f07c"; -} -.icon-arrows-v:before { - content: "\f07d"; -} -.icon-arrows-h:before { - content: "\f07e"; -} -.icon-bar-chart:before { - content: "\f080"; -} -.icon-bar-chart-o:before { - content: "\f080"; -} -.icon-twitter-square:before { - content: "\f081"; -} -.icon-facebook-square:before { - content: "\f082"; -} -.icon-camera-retro:before { - content: "\f083"; -} -.icon-key:before { - content: "\f084"; -} -.icon-cogs:before { - content: "\f085"; -} -.icon-gears:before { - content: "\f085"; -} -.icon-comments:before { - content: "\f086"; -} -.icon-thumbs-o-up:before { - content: "\f087"; -} -.icon-thumbs-o-down:before { - content: "\f088"; -} -.icon-star-half:before { - content: "\f089"; -} -.icon-heart-o:before { - content: "\f08a"; -} -.icon-sign-out:before { - content: "\f08b"; -} -.icon-linkedin-square:before { - content: "\f08c"; -} -.icon-thumb-tack:before { - content: "\f08d"; -} -.icon-external-link:before { - content: "\f08e"; -} -.icon-sign-in:before { - content: "\f090"; -} -.icon-trophy:before { - content: "\f091"; -} -.icon-github-square:before { - content: "\f092"; -} -.icon-upload:before { - content: "\f093"; -} -.icon-lemon-o:before { - content: "\f094"; -} -.icon-phone:before { - content: "\f095"; -} -.icon-square-o:before { - content: "\f096"; -} -.icon-bookmark-o:before { - content: "\f097"; -} -.icon-phone-square:before { - content: "\f098"; -} -.icon-twitter:before { - content: "\f099"; -} -.icon-facebook:before { - content: "\f09a"; -} -.icon-facebook-f:before { - content: "\f09a"; -} -.icon-github:before { - content: "\f09b"; -} -.icon-unlock2:before { - content: "\f09c"; -} -.icon-credit-card:before { - content: "\f09d"; -} -.icon-feed:before { - content: "\f09e"; -} -.icon-rss:before { - content: "\f09e"; -} -.icon-hdd-o:before { - content: "\f0a0"; -} -.icon-bullhorn:before { - content: "\f0a1"; -} -.icon-bell-o:before { - content: "\f0a2"; -} -.icon-certificate:before { - content: "\f0a3"; -} -.icon-hand-o-right:before { - content: "\f0a4"; -} -.icon-hand-o-left:before { - content: "\f0a5"; -} -.icon-hand-o-up:before { - content: "\f0a6"; -} -.icon-hand-o-down:before { - content: "\f0a7"; -} -.icon-arrow-circle-left:before { - content: "\f0a8"; -} -.icon-arrow-circle-right:before { - content: "\f0a9"; -} -.icon-arrow-circle-up:before { - content: "\f0aa"; -} -.icon-arrow-circle-down:before { - content: "\f0ab"; -} -.icon-globe:before { - content: "\f0ac"; -} -.icon-wrench:before { - content: "\f0ad"; -} -.icon-tasks:before { - content: "\f0ae"; -} -.icon-filter:before { - content: "\f0b0"; -} -.icon-briefcase:before { - content: "\f0b1"; -} -.icon-arrows-alt:before { - content: "\f0b2"; -} -.icon-group:before { - content: "\f0c0"; -} -.icon-users:before { - content: "\f0c0"; -} -.icon-chain:before { - content: "\f0c1"; -} -.icon-link:before { - content: "\f0c1"; -} -.icon-cloud:before { - content: "\f0c2"; -} -.icon-flask:before { - content: "\f0c3"; -} -.icon-cut:before { - content: "\f0c4"; -} -.icon-scissors:before { - content: "\f0c4"; -} -.icon-copy:before { - content: "\f0c5"; -} -.icon-files-o:before { - content: "\f0c5"; -} -.icon-paperclip:before { - content: "\f0c6"; -} -.icon-floppy-o:before { - content: "\f0c7"; -} -.icon-save:before { - content: "\f0c7"; -} -.icon-square:before { - content: "\f0c8"; -} -.icon-bars:before { - content: "\f0c9"; -} -.icon-navicon:before { - content: "\f0c9"; -} -.icon-reorder:before { - content: "\f0c9"; -} -.icon-list-ul:before { - content: "\f0ca"; -} -.icon-list-ol:before { - content: "\f0cb"; -} -.icon-strikethrough:before { - content: "\f0cc"; -} -.icon-underline:before { - content: "\f0cd"; -} -.icon-table:before { - content: "\f0ce"; -} -.icon-magic:before { - content: "\f0d0"; -} -.icon-truck:before { - content: "\f0d1"; -} -.icon-pinterest:before { - content: "\f0d2"; -} -.icon-pinterest-square:before { - content: "\f0d3"; -} -.icon-google-plus-square:before { - content: "\f0d4"; -} -.icon-google-plus:before { - content: "\f0d5"; -} -.icon-money:before { - content: "\f0d6"; -} -.icon-caret-down:before { - content: "\f0d7"; -} -.icon-caret-up:before { - content: "\f0d8"; -} -.icon-caret-left:before { - content: "\f0d9"; -} -.icon-caret-right:before { - content: "\f0da"; -} -.icon-columns2:before { - content: "\f0db"; -} -.icon-sort:before { - content: "\f0dc"; -} -.icon-unsorted:before { - content: "\f0dc"; -} -.icon-sort-desc:before { - content: "\f0dd"; -} -.icon-sort-down:before { - content: "\f0dd"; -} -.icon-sort-asc:before { - content: "\f0de"; -} -.icon-sort-up:before { - content: "\f0de"; -} -.icon-envelope:before { - content: "\f0e0"; -} -.icon-linkedin:before { - content: "\f0e1"; -} -.icon-rotate-left:before { - content: "\f0e2"; -} -.icon-undo:before { - content: "\f0e2"; -} -.icon-gavel:before { - content: "\f0e3"; -} -.icon-legal:before { - content: "\f0e3"; -} -.icon-dashboard:before { - content: "\f0e4"; -} -.icon-tachometer:before { - content: "\f0e4"; -} -.icon-comment-o:before { - content: "\f0e5"; -} -.icon-comments-o:before { - content: "\f0e6"; -} -.icon-bolt:before { - content: "\f0e7"; -} -.icon-flash:before { - content: "\f0e7"; -} -.icon-sitemap:before { - content: "\f0e8"; -} -.icon-umbrella2:before { - content: "\f0e9"; -} -.icon-clipboard:before { - content: "\f0ea"; -} -.icon-paste:before { - content: "\f0ea"; -} -.icon-lightbulb-o:before { - content: "\f0eb"; -} -.icon-exchange:before { - content: "\f0ec"; -} -.icon-cloud-download2:before { - content: "\f0ed"; -} -.icon-cloud-upload2:before { - content: "\f0ee"; -} -.icon-user-md:before { - content: "\f0f0"; -} -.icon-stethoscope:before { - content: "\f0f1"; -} -.icon-suitcase:before { - content: "\f0f2"; -} -.icon-bell:before { - content: "\f0f3"; -} -.icon-coffee:before { - content: "\f0f4"; -} -.icon-cutlery:before { - content: "\f0f5"; -} -.icon-file-text-o:before { - content: "\f0f6"; -} -.icon-building-o:before { - content: "\f0f7"; -} -.icon-hospital-o:before { - content: "\f0f8"; -} -.icon-ambulance:before { - content: "\f0f9"; -} -.icon-medkit:before { - content: "\f0fa"; -} -.icon-fighter-jet:before { - content: "\f0fb"; -} -.icon-beer:before { - content: "\f0fc"; -} -.icon-h-square:before { - content: "\f0fd"; -} -.icon-plus-square:before { - content: "\f0fe"; -} -.icon-angle-double-left:before { - content: "\f100"; -} -.icon-angle-double-right:before { - content: "\f101"; -} -.icon-angle-double-up:before { - content: "\f102"; -} -.icon-angle-double-down:before { - content: "\f103"; -} -.icon-angle-left:before { - content: "\f104"; -} -.icon-angle-right:before { - content: "\f105"; -} -.icon-angle-up:before { - content: "\f106"; -} -.icon-angle-down:before { - content: "\f107"; -} -.icon-desktop:before { - content: "\f108"; -} -.icon-laptop:before { - content: "\f109"; -} -.icon-tablet:before { - content: "\f10a"; -} -.icon-mobile:before { - content: "\f10b"; -} -.icon-mobile-phone:before { - content: "\f10b"; -} -.icon-circle-o:before { - content: "\f10c"; -} -.icon-quote-left:before { - content: "\f10d"; -} -.icon-quote-right:before { - content: "\f10e"; -} -.icon-spinner:before { - content: "\f110"; -} -.icon-circle:before { - content: "\f111"; -} -.icon-mail-reply:before { - content: "\f112"; -} -.icon-reply:before { - content: "\f112"; -} -.icon-github-alt:before { - content: "\f113"; -} -.icon-folder-o:before { - content: "\f114"; -} -.icon-folder-open-o:before { - content: "\f115"; -} -.icon-smile-o:before { - content: "\f118"; -} -.icon-frown-o:before { - content: "\f119"; -} -.icon-meh-o:before { - content: "\f11a"; -} -.icon-gamepad:before { - content: "\f11b"; -} -.icon-keyboard-o:before { - content: "\f11c"; -} -.icon-flag-o:before { - content: "\f11d"; -} -.icon-flag-checkered:before { - content: "\f11e"; -} -.icon-terminal:before { - content: "\f120"; -} -.icon-code:before { - content: "\f121"; -} -.icon-mail-reply-all:before { - content: "\f122"; -} -.icon-reply-all:before { - content: "\f122"; -} -.icon-star-half-empty:before { - content: "\f123"; -} -.icon-star-half-full:before { - content: "\f123"; -} -.icon-star-half-o:before { - content: "\f123"; -} -.icon-location-arrow:before { - content: "\f124"; -} -.icon-crop:before { - content: "\f125"; -} -.icon-code-fork:before { - content: "\f126"; -} -.icon-chain-broken:before { - content: "\f127"; -} -.icon-unlink:before { - content: "\f127"; -} -.icon-question:before { - content: "\f128"; -} -.icon-info:before { - content: "\f129"; -} -.icon-exclamation:before { - content: "\f12a"; -} -.icon-superscript:before { - content: "\f12b"; -} -.icon-subscript:before { - content: "\f12c"; -} -.icon-eraser:before { - content: "\f12d"; -} -.icon-puzzle-piece:before { - content: "\f12e"; -} -.icon-microphone2:before { - content: "\f130"; -} -.icon-microphone-slash:before { - content: "\f131"; -} -.icon-shield:before { - content: "\f132"; -} -.icon-calendar-o:before { - content: "\f133"; -} -.icon-fire-extinguisher:before { - content: "\f134"; -} -.icon-rocket:before { - content: "\f135"; -} -.icon-maxcdn:before { - content: "\f136"; -} -.icon-chevron-circle-left:before { - content: "\f137"; -} -.icon-chevron-circle-right:before { - content: "\f138"; -} -.icon-chevron-circle-up:before { - content: "\f139"; -} -.icon-chevron-circle-down:before { - content: "\f13a"; -} -.icon-html5:before { - content: "\f13b"; -} -.icon-css3:before { - content: "\f13c"; -} -.icon-anchor2:before { - content: "\f13d"; -} -.icon-unlock-alt:before { - content: "\f13e"; -} -.icon-bullseye:before { - content: "\f140"; -} -.icon-ellipsis-h:before { - content: "\f141"; -} -.icon-ellipsis-v:before { - content: "\f142"; -} -.icon-rss-square:before { - content: "\f143"; -} -.icon-play-circle:before { - content: "\f144"; -} -.icon-ticket:before { - content: "\f145"; -} -.icon-minus-square:before { - content: "\f146"; -} -.icon-minus-square-o:before { - content: "\f147"; -} -.icon-level-up:before { - content: "\f148"; -} -.icon-level-down:before { - content: "\f149"; -} -.icon-check-square:before { - content: "\f14a"; -} -.icon-pencil-square:before { - content: "\f14b"; -} -.icon-external-link-square:before { - content: "\f14c"; -} -.icon-share-square:before { - content: "\f14d"; -} -.icon-compass:before { - content: "\f14e"; -} -.icon-caret-square-o-down:before { - content: "\f150"; -} -.icon-toggle-down:before { - content: "\f150"; -} -.icon-caret-square-o-up:before { - content: "\f151"; -} -.icon-toggle-up:before { - content: "\f151"; -} -.icon-caret-square-o-right:before { - content: "\f152"; -} -.icon-toggle-right:before { - content: "\f152"; -} -.icon-eur:before { - content: "\f153"; -} -.icon-euro:before { - content: "\f153"; -} -.icon-gbp:before { - content: "\f154"; -} -.icon-dollar:before { - content: "\f155"; -} -.icon-usd:before { - content: "\f155"; -} -.icon-inr:before { - content: "\f156"; -} -.icon-rupee:before { - content: "\f156"; -} -.icon-cny:before { - content: "\f157"; -} -.icon-jpy:before { - content: "\f157"; -} -.icon-rmb:before { - content: "\f157"; -} -.icon-yen:before { - content: "\f157"; -} -.icon-rouble:before { - content: "\f158"; -} -.icon-rub:before { - content: "\f158"; -} -.icon-ruble:before { - content: "\f158"; -} -.icon-krw:before { - content: "\f159"; -} -.icon-won:before { - content: "\f159"; -} -.icon-bitcoin:before { - content: "\f15a"; -} -.icon-btc:before { - content: "\f15a"; -} -.icon-file2:before { - content: "\f15b"; -} -.icon-file-text:before { - content: "\f15c"; -} -.icon-sort-alpha-asc:before { - content: "\f15d"; -} -.icon-sort-alpha-desc:before { - content: "\f15e"; -} -.icon-sort-amount-asc:before { - content: "\f160"; -} -.icon-sort-amount-desc:before { - content: "\f161"; -} -.icon-sort-numeric-asc:before { - content: "\f162"; -} -.icon-sort-numeric-desc:before { - content: "\f163"; -} -.icon-thumbs-up:before { - content: "\f164"; -} -.icon-thumbs-down:before { - content: "\f165"; -} -.icon-youtube-square:before { - content: "\f166"; -} -.icon-youtube:before { - content: "\f167"; -} -.icon-xing:before { - content: "\f168"; -} -.icon-xing-square:before { - content: "\f169"; -} -.icon-youtube-play:before { - content: "\f16a"; -} -.icon-dropbox:before { - content: "\f16b"; -} -.icon-stack-overflow:before { - content: "\f16c"; -} -.icon-instagram:before { - content: "\f16d"; -} -.icon-flickr:before { - content: "\f16e"; -} -.icon-adn:before { - content: "\f170"; -} -.icon-bitbucket:before { - content: "\f171"; -} -.icon-bitbucket-square:before { - content: "\f172"; -} -.icon-tumblr:before { - content: "\f173"; -} -.icon-tumblr-square:before { - content: "\f174"; -} -.icon-long-arrow-down:before { - content: "\f175"; -} -.icon-long-arrow-up:before { - content: "\f176"; -} -.icon-long-arrow-left:before { - content: "\f177"; -} -.icon-long-arrow-right:before { - content: "\f178"; -} -.icon-apple:before { - content: "\f179"; -} -.icon-windows:before { - content: "\f17a"; -} -.icon-android:before { - content: "\f17b"; -} -.icon-linux:before { - content: "\f17c"; -} -.icon-dribbble:before { - content: "\f17d"; -} -.icon-skype:before { - content: "\f17e"; -} -.icon-foursquare:before { - content: "\f180"; -} -.icon-trello:before { - content: "\f181"; -} -.icon-female:before { - content: "\f182"; -} -.icon-male:before { - content: "\f183"; -} -.icon-gittip:before { - content: "\f184"; -} -.icon-gratipay:before { - content: "\f184"; -} -.icon-sun-o:before { - content: "\f185"; -} -.icon-moon-o:before { - content: "\f186"; -} -.icon-archive:before { - content: "\f187"; -} -.icon-bug:before { - content: "\f188"; -} -.icon-vk:before { - content: "\f189"; -} -.icon-weibo:before { - content: "\f18a"; -} -.icon-renren:before { - content: "\f18b"; -} -.icon-pagelines:before { - content: "\f18c"; -} -.icon-stack-exchange:before { - content: "\f18d"; -} -.icon-arrow-circle-o-right:before { - content: "\f18e"; -} -.icon-arrow-circle-o-left:before { - content: "\f190"; -} -.icon-caret-square-o-left:before { - content: "\f191"; -} -.icon-toggle-left:before { - content: "\f191"; -} -.icon-dot-circle-o:before { - content: "\f192"; -} -.icon-wheelchair:before { - content: "\f193"; -} -.icon-vimeo-square:before { - content: "\f194"; -} -.icon-try:before { - content: "\f195"; -} -.icon-turkish-lira:before { - content: "\f195"; -} -.icon-plus-square-o:before { - content: "\f196"; -} -.icon-space-shuttle:before { - content: "\f197"; -} -.icon-slack:before { - content: "\f198"; -} -.icon-envelope-square:before { - content: "\f199"; -} -.icon-wordpress:before { - content: "\f19a"; -} -.icon-openid:before { - content: "\f19b"; -} -.icon-bank:before { - content: "\f19c"; -} -.icon-institution:before { - content: "\f19c"; -} -.icon-university:before { - content: "\f19c"; -} -.icon-graduation-cap:before { - content: "\f19d"; -} -.icon-mortar-board:before { - content: "\f19d"; -} -.icon-yahoo:before { - content: "\f19e"; -} -.icon-google:before { - content: "\f1a0"; -} -.icon-reddit:before { - content: "\f1a1"; -} -.icon-reddit-square:before { - content: "\f1a2"; -} -.icon-stumbleupon-circle:before { - content: "\f1a3"; -} -.icon-stumbleupon:before { - content: "\f1a4"; -} -.icon-delicious:before { - content: "\f1a5"; -} -.icon-digg:before { - content: "\f1a6"; -} -.icon-pied-piper:before { - content: "\f1a7"; -} -.icon-pied-piper-alt:before { - content: "\f1a8"; -} -.icon-drupal:before { - content: "\f1a9"; -} -.icon-joomla:before { - content: "\f1aa"; -} -.icon-language:before { - content: "\f1ab"; -} -.icon-fax:before { - content: "\f1ac"; -} -.icon-building:before { - content: "\f1ad"; -} -.icon-child:before { - content: "\f1ae"; -} -.icon-paw:before { - content: "\f1b0"; -} -.icon-spoon:before { - content: "\f1b1"; -} -.icon-cube:before { - content: "\f1b2"; -} -.icon-cubes:before { - content: "\f1b3"; -} -.icon-behance:before { - content: "\f1b4"; -} -.icon-behance-square:before { - content: "\f1b5"; -} -.icon-steam:before { - content: "\f1b6"; -} -.icon-steam-square:before { - content: "\f1b7"; -} -.icon-recycle:before { - content: "\f1b8"; -} -.icon-automobile:before { - content: "\f1b9"; -} -.icon-car:before { - content: "\f1b9"; -} -.icon-cab:before { - content: "\f1ba"; -} -.icon-taxi:before { - content: "\f1ba"; -} -.icon-tree:before { - content: "\f1bb"; -} -.icon-spotify:before { - content: "\f1bc"; -} -.icon-deviantart:before { - content: "\f1bd"; -} -.icon-soundcloud:before { - content: "\f1be"; -} -.icon-database:before { - content: "\f1c0"; -} -.icon-file-pdf-o:before { - content: "\f1c1"; -} -.icon-file-word-o:before { - content: "\f1c2"; -} -.icon-file-excel-o:before { - content: "\f1c3"; -} -.icon-file-powerpoint-o:before { - content: "\f1c4"; -} -.icon-file-image-o:before { - content: "\f1c5"; -} -.icon-file-photo-o:before { - content: "\f1c5"; -} -.icon-file-picture-o:before { - content: "\f1c5"; -} -.icon-file-archive-o:before { - content: "\f1c6"; -} -.icon-file-zip-o:before { - content: "\f1c6"; -} -.icon-file-audio-o:before { - content: "\f1c7"; -} -.icon-file-sound-o:before { - content: "\f1c7"; -} -.icon-file-movie-o:before { - content: "\f1c8"; -} -.icon-file-video-o:before { - content: "\f1c8"; -} -.icon-file-code-o:before { - content: "\f1c9"; -} -.icon-vine:before { - content: "\f1ca"; -} -.icon-codepen:before { - content: "\f1cb"; -} -.icon-jsfiddle:before { - content: "\f1cc"; -} -.icon-life-bouy:before { - content: "\f1cd"; -} -.icon-life-buoy:before { - content: "\f1cd"; -} -.icon-life-ring:before { - content: "\f1cd"; -} -.icon-life-saver:before { - content: "\f1cd"; -} -.icon-support:before { - content: "\f1cd"; -} -.icon-circle-o-notch:before { - content: "\f1ce"; -} -.icon-ra:before { - content: "\f1d0"; -} -.icon-rebel:before { - content: "\f1d0"; -} -.icon-empire:before { - content: "\f1d1"; -} -.icon-ge:before { - content: "\f1d1"; -} -.icon-git-square:before { - content: "\f1d2"; -} -.icon-git:before { - content: "\f1d3"; -} -.icon-hacker-news:before { - content: "\f1d4"; -} -.icon-y-combinator-square:before { - content: "\f1d4"; -} -.icon-yc-square:before { - content: "\f1d4"; -} -.icon-tencent-weibo:before { - content: "\f1d5"; -} -.icon-qq:before { - content: "\f1d6"; -} -.icon-wechat:before { - content: "\f1d7"; -} -.icon-weixin:before { - content: "\f1d7"; -} -.icon-paper-plane:before { - content: "\f1d8"; -} -.icon-send:before { - content: "\f1d8"; -} -.icon-paper-plane-o:before { - content: "\f1d9"; -} -.icon-send-o:before { - content: "\f1d9"; -} -.icon-history:before { - content: "\f1da"; -} -.icon-circle-thin:before { - content: "\f1db"; -} -.icon-header:before { - content: "\f1dc"; -} -.icon-paragraph2:before { - content: "\f1dd"; -} -.icon-sliders:before { - content: "\f1de"; -} -.icon-share-alt:before { - content: "\f1e0"; -} -.icon-share-alt-square:before { - content: "\f1e1"; -} -.icon-bomb:before { - content: "\f1e2"; -} -.icon-futbol-o:before { - content: "\f1e3"; -} -.icon-soccer-ball-o:before { - content: "\f1e3"; -} -.icon-tty:before { - content: "\f1e4"; -} -.icon-binoculars:before { - content: "\f1e5"; -} -.icon-plug:before { - content: "\f1e6"; -} -.icon-slideshare:before { - content: "\f1e7"; -} -.icon-twitch:before { - content: "\f1e8"; -} -.icon-yelp:before { - content: "\f1e9"; -} -.icon-newspaper-o:before { - content: "\f1ea"; -} -.icon-wifi:before { - content: "\f1eb"; -} -.icon-calculator:before { - content: "\f1ec"; -} -.icon-paypal:before { - content: "\f1ed"; -} -.icon-google-wallet:before { - content: "\f1ee"; -} -.icon-cc-visa:before { - content: "\f1f0"; -} -.icon-cc-mastercard:before { - content: "\f1f1"; -} -.icon-cc-discover:before { - content: "\f1f2"; -} -.icon-cc-amex:before { - content: "\f1f3"; -} -.icon-cc-paypal:before { - content: "\f1f4"; -} -.icon-cc-stripe:before { - content: "\f1f5"; -} -.icon-bell-slash:before { - content: "\f1f6"; -} -.icon-bell-slash-o:before { - content: "\f1f7"; -} -.icon-trash:before { - content: "\f1f8"; -} -.icon-copyright:before { - content: "\f1f9"; -} -.icon-at:before { - content: "\f1fa"; -} -.icon-eyedropper:before { - content: "\f1fb"; -} -.icon-paint-brush:before { - content: "\f1fc"; -} -.icon-birthday-cake:before { - content: "\f1fd"; -} -.icon-area-chart:before { - content: "\f1fe"; -} -.icon-pie-chart:before { - content: "\f200"; -} -.icon-line-chart:before { - content: "\f201"; -} -.icon-lastfm:before { - content: "\f202"; -} -.icon-lastfm-square:before { - content: "\f203"; -} -.icon-toggle-off:before { - content: "\f204"; -} -.icon-toggle-on:before { - content: "\f205"; -} -.icon-bicycle:before { - content: "\f206"; -} -.icon-bus:before { - content: "\f207"; -} -.icon-ioxhost:before { - content: "\f208"; -} -.icon-angellist:before { - content: "\f209"; -} -.icon-cc:before { - content: "\f20a"; -} -.icon-ils:before { - content: "\f20b"; -} -.icon-shekel:before { - content: "\f20b"; -} -.icon-sheqel:before { - content: "\f20b"; -} -.icon-meanpath:before { - content: "\f20c"; -} -.icon-buysellads:before { - content: "\f20d"; -} -.icon-connectdevelop:before { - content: "\f20e"; -} -.icon-dashcube:before { - content: "\f210"; -} -.icon-forumbee:before { - content: "\f211"; -} -.icon-leanpub:before { - content: "\f212"; -} -.icon-sellsy:before { - content: "\f213"; -} -.icon-shirtsinbulk:before { - content: "\f214"; -} -.icon-simplybuilt:before { - content: "\f215"; -} -.icon-skyatlas:before { - content: "\f216"; -} -.icon-cart-plus:before { - content: "\f217"; -} -.icon-cart-arrow-down:before { - content: "\f218"; -} -.icon-diamond:before { - content: "\f219"; -} -.icon-ship:before { - content: "\f21a"; -} -.icon-user-secret:before { - content: "\f21b"; -} -.icon-motorcycle:before { - content: "\f21c"; -} -.icon-street-view:before { - content: "\f21d"; -} -.icon-heartbeat:before { - content: "\f21e"; -} -.icon-venus:before { - content: "\f221"; -} -.icon-mars:before { - content: "\f222"; -} -.icon-mercury:before { - content: "\f223"; -} -.icon-intersex:before { - content: "\f224"; -} -.icon-transgender:before { - content: "\f224"; -} -.icon-transgender-alt:before { - content: "\f225"; -} -.icon-venus-double:before { - content: "\f226"; -} -.icon-mars-double:before { - content: "\f227"; -} -.icon-venus-mars:before { - content: "\f228"; -} -.icon-mars-stroke:before { - content: "\f229"; -} -.icon-mars-stroke-v:before { - content: "\f22a"; -} -.icon-mars-stroke-h:before { - content: "\f22b"; -} -.icon-neuter:before { - content: "\f22c"; -} -.icon-genderless:before { - content: "\f22d"; -} -.icon-facebook-official:before { - content: "\f230"; -} -.icon-pinterest-p:before { - content: "\f231"; -} -.icon-whatsapp:before { - content: "\f232"; -} -.icon-server2:before { - content: "\f233"; -} -.icon-user-plus:before { - content: "\f234"; -} -.icon-user-times:before { - content: "\f235"; -} -.icon-bed:before { - content: "\f236"; -} -.icon-hotel:before { - content: "\f236"; -} -.icon-viacoin:before { - content: "\f237"; -} -.icon-train:before { - content: "\f238"; -} -.icon-subway:before { - content: "\f239"; -} -.icon-medium:before { - content: "\f23a"; -} -.icon-y-combinator:before { - content: "\f23b"; -} -.icon-yc:before { - content: "\f23b"; -} -.icon-optin-monster:before { - content: "\f23c"; -} -.icon-opencart:before { - content: "\f23d"; -} -.icon-expeditedssl:before { - content: "\f23e"; -} -.icon-battery-4:before { - content: "\f240"; -} -.icon-battery-full:before { - content: "\f240"; -} -.icon-battery-3:before { - content: "\f241"; -} -.icon-battery-three-quarters:before { - content: "\f241"; -} -.icon-battery-2:before { - content: "\f242"; -} -.icon-battery-half:before { - content: "\f242"; -} -.icon-battery-1:before { - content: "\f243"; -} -.icon-battery-quarter:before { - content: "\f243"; -} -.icon-battery-0:before { - content: "\f244"; -} -.icon-battery-empty:before { - content: "\f244"; -} -.icon-mouse-pointer:before { - content: "\f245"; -} -.icon-i-cursor:before { - content: "\f246"; -} -.icon-object-group:before { - content: "\f247"; -} -.icon-object-ungroup:before { - content: "\f248"; -} -.icon-sticky-note:before { - content: "\f249"; -} -.icon-sticky-note-o:before { - content: "\f24a"; -} -.icon-cc-jcb:before { - content: "\f24b"; -} -.icon-cc-diners-club:before { - content: "\f24c"; -} -.icon-clone:before { - content: "\f24d"; -} -.icon-balance-scale:before { - content: "\f24e"; -} -.icon-hourglass-o:before { - content: "\f250"; -} -.icon-hourglass-1:before { - content: "\f251"; -} -.icon-hourglass-start:before { - content: "\f251"; -} -.icon-hourglass-2:before { - content: "\f252"; -} -.icon-hourglass-half:before { - content: "\f252"; -} -.icon-hourglass-3:before { - content: "\f253"; -} -.icon-hourglass-end:before { - content: "\f253"; -} -.icon-hourglass:before { - content: "\f254"; -} -.icon-hand-grab-o:before { - content: "\f255"; -} -.icon-hand-rock-o:before { - content: "\f255"; -} -.icon-hand-paper-o:before { - content: "\f256"; -} -.icon-hand-stop-o:before { - content: "\f256"; -} -.icon-hand-scissors-o:before { - content: "\f257"; -} -.icon-hand-lizard-o:before { - content: "\f258"; -} -.icon-hand-spock-o:before { - content: "\f259"; -} -.icon-hand-pointer-o:before { - content: "\f25a"; -} -.icon-hand-peace-o:before { - content: "\f25b"; -} -.icon-trademark:before { - content: "\f25c"; -} -.icon-registered:before { - content: "\f25d"; -} -.icon-creative-commons:before { - content: "\f25e"; -} -.icon-gg:before { - content: "\f260"; -} -.icon-gg-circle:before { - content: "\f261"; -} -.icon-tripadvisor:before { - content: "\f262"; -} -.icon-odnoklassniki:before { - content: "\f263"; -} -.icon-odnoklassniki-square:before { - content: "\f264"; -} -.icon-get-pocket:before { - content: "\f265"; -} -.icon-wikipedia-w:before { - content: "\f266"; -} -.icon-safari:before { - content: "\f267"; -} -.icon-chrome:before { - content: "\f268"; -} -.icon-firefox:before { - content: "\f269"; -} -.icon-opera:before { - content: "\f26a"; -} -.icon-internet-explorer:before { - content: "\f26b"; -} -.icon-television:before { - content: "\f26c"; -} -.icon-tv:before { - content: "\f26c"; -} -.icon-contao:before { - content: "\f26d"; -} -.icon-500px:before { - content: "\f26e"; -} -.icon-amazon:before { - content: "\f270"; -} -.icon-calendar-plus-o:before { - content: "\f271"; -} -.icon-calendar-minus-o:before { - content: "\f272"; -} -.icon-calendar-times-o:before { - content: "\f273"; -} -.icon-calendar-check-o:before { - content: "\f274"; -} -.icon-industry:before { - content: "\f275"; -} -.icon-map-pin:before { - content: "\f276"; -} -.icon-map-signs:before { - content: "\f277"; -} -.icon-map-o:before { - content: "\f278"; -} -.icon-map:before { - content: "\f279"; -} -.icon-commenting:before { - content: "\f27a"; -} -.icon-commenting-o:before { - content: "\f27b"; -} -.icon-houzz:before { - content: "\f27c"; -} -.icon-vimeo:before { - content: "\f27d"; -} -.icon-black-tie:before { - content: "\f27e"; -} -.icon-fonticons:before { - content: "\f280"; -} -.icon-eye2:before { - content: "\e000"; -} -.icon-paper-clip:before { - content: "\e001"; -} -.icon-mail2:before { - content: "\e002"; -} -.icon-toggle:before { - content: "\e003"; -} -.icon-layout:before { - content: "\e004"; -} -.icon-link2:before { - content: "\e005"; -} -.icon-bell2:before { - content: "\e006"; -} -.icon-lock2:before { - content: "\e007"; -} -.icon-unlock:before { - content: "\e008"; -} -.icon-ribbon:before { - content: "\e009"; -} -.icon-image2:before { - content: "\e010"; -} -.icon-signal2:before { - content: "\e011"; -} -.icon-target:before { - content: "\e012"; -} -.icon-clipboard2:before { - content: "\e013"; -} -.icon-clock2:before { - content: "\e014"; -} -.icon-watch:before { - content: "\e015"; -} -.icon-air-play:before { - content: "\e016"; -} -.icon-camera2:before { - content: "\e017"; -} -.icon-video2:before { - content: "\e018"; -} -.icon-disc:before { - content: "\e019"; -} -.icon-printer:before { - content: "\e020"; -} -.icon-monitor:before { - content: "\e021"; -} -.icon-server:before { - content: "\e022"; -} -.icon-cog2:before { - content: "\e023"; -} -.icon-heart2:before { - content: "\e024"; -} -.icon-paragraph:before { - content: "\e025"; -} -.icon-align-justify:before { - content: "\e026"; -} -.icon-align-left2:before { - content: "\e027"; -} -.icon-align-center:before { - content: "\e028"; -} -.icon-align-right2:before { - content: "\e029"; -} -.icon-book2:before { - content: "\e030"; -} -.icon-layers2:before { - content: "\e031"; -} -.icon-stack:before { - content: "\e032"; -} -.icon-stack-2:before { - content: "\e033"; -} -.icon-paper:before { - content: "\e034"; -} -.icon-paper-stack:before { - content: "\e035"; -} -.icon-search:before { - content: "\e036"; -} -.icon-zoom-in:before { - content: "\e037"; -} -.icon-zoom-out:before { - content: "\e038"; -} -.icon-reply2:before { - content: "\e039"; -} -.icon-circle-plus:before { - content: "\e040"; -} -.icon-circle-minus:before { - content: "\e041"; -} -.icon-circle-check:before { - content: "\e042"; -} -.icon-circle-cross:before { - content: "\e043"; -} -.icon-square-plus:before { - content: "\e044"; -} -.icon-square-minus:before { - content: "\e045"; -} -.icon-square-check:before { - content: "\e046"; -} -.icon-square-cross:before { - content: "\e047"; -} -.icon-microphone:before { - content: "\e048"; -} -.icon-record:before { - content: "\e049"; -} -.icon-skip-back:before { - content: "\e050"; -} -.icon-rewind:before { - content: "\e051"; -} -.icon-play:before { - content: "\e052"; -} -.icon-pause:before { - content: "\e053"; -} -.icon-stop:before { - content: "\e054"; -} -.icon-fast-forward:before { - content: "\e055"; -} -.icon-skip-forward:before { - content: "\e056"; -} -.icon-shuffle2:before { - content: "\e057"; -} -.icon-repeat:before { - content: "\e058"; -} -.icon-folder2:before { - content: "\e059"; -} -.icon-umbrella:before { - content: "\e060"; -} -.icon-moon2:before { - content: "\e061"; -} -.icon-thermometer2:before { - content: "\e062"; -} -.icon-drop2:before { - content: "\e063"; -} -.icon-sun:before { - content: "\e064"; -} -.icon-cloud2:before { - content: "\e065"; -} -.icon-cloud-upload:before { - content: "\e066"; -} -.icon-cloud-download:before { - content: "\e067"; -} -.icon-upload2:before { - content: "\e068"; -} -.icon-download2:before { - content: "\e069"; -} -.icon-location2:before { - content: "\e070"; -} -.icon-location-2:before { - content: "\e071"; -} -.icon-map2:before { - content: "\e072"; -} -.icon-battery2:before { - content: "\e073"; -} -.icon-head:before { - content: "\e074"; -} -.icon-briefcase2:before { - content: "\e075"; -} -.icon-speech-bubble:before { - content: "\e076"; -} -.icon-anchor:before { - content: "\e077"; -} -.icon-globe2:before { - content: "\e078"; -} -.icon-box2:before { - content: "\e079"; -} -.icon-reload:before { - content: "\e080"; -} -.icon-share2:before { - content: "\e081"; -} -.icon-marquee:before { - content: "\e082"; -} -.icon-marquee-plus:before { - content: "\e083"; -} -.icon-marquee-minus:before { - content: "\e084"; -} -.icon-tag2:before { - content: "\e085"; -} -.icon-power:before { - content: "\e086"; -} -.icon-command:before { - content: "\e087"; -} -.icon-alt:before { - content: "\e088"; -} -.icon-esc:before { - content: "\e089"; -} -.icon-bar-graph2:before { - content: "\e090"; -} -.icon-bar-graph-2:before { - content: "\e091"; -} -.icon-pie-graph:before { - content: "\e092"; -} -.icon-star2:before { - content: "\e093"; -} -.icon-arrow-left2:before { - content: "\e094"; -} -.icon-arrow-right2:before { - content: "\e095"; -} -.icon-arrow-up2:before { - content: "\e096"; -} -.icon-arrow-down2:before { - content: "\e097"; -} -.icon-volume:before { - content: "\e098"; -} -.icon-mute:before { - content: "\e099"; -} -.icon-content-right:before { - content: "\e100"; -} -.icon-content-left:before { - content: "\e101"; -} -.icon-grid2:before { - content: "\e102"; -} -.icon-grid-2:before { - content: "\e103"; -} -.icon-columns:before { - content: "\e104"; -} -.icon-loader:before { - content: "\e105"; -} -.icon-bag:before { - content: "\e106"; -} -.icon-ban:before { - content: "\e107"; -} -.icon-flag2:before { - content: "\e108"; -} -.icon-trash2:before { - content: "\e109"; -} -.icon-expand:before { - content: "\e110"; -} -.icon-contract:before { - content: "\e111"; -} -.icon-maximize:before { - content: "\e112"; -} -.icon-minimize:before { - content: "\e113"; -} -.icon-plus2:before { - content: "\e114"; -} -.icon-minus2:before { - content: "\e115"; -} -.icon-check2:before { - content: "\e116"; -} -.icon-cross2:before { - content: "\e117"; -} -.icon-move:before { - content: "\e118"; -} -.icon-delete:before { - content: "\e119"; -} -.icon-menu2:before { - content: "\e120"; -} -.icon-archive2:before { - content: "\e121"; -} -.icon-inbox2:before { - content: "\e122"; -} -.icon-outbox:before { - content: "\e123"; -} -.icon-file:before { - content: "\e124"; -} -.icon-file-add:before { - content: "\e125"; -} -.icon-file-subtract:before { - content: "\e126"; -} -.icon-help2:before { - content: "\e127"; -} -.icon-open:before { - content: "\e128"; -} -.icon-ellipsis:before { - content: "\e129"; -} - diff --git a/html/css/iconsmind.css b/html/css/iconsmind.css deleted file mode 100644 index 36a7f808..00000000 --- a/html/css/iconsmind.css +++ /dev/null @@ -1,6280 +0,0 @@ -@font-face { - font-family: 'iconsmind'; - src:url('../fonts/iconsmind.eot?#iefix-rdmvgc') format('embedded-opentype'); - src:url('../fonts/iconsmind.woff') format('woff'), - url('../fonts/iconsmind.ttf') format('truetype'); - font-weight: normal; - font-style: normal; -} - -[class^="icon-"], [class*=" icon-"] { - font-family: 'iconsmind'; - speak: none; - font-style: normal; - font-weight: normal; - font-variant: normal; - text-transform: none; - line-height: 1; - /* Better Font Rendering =========== */ - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; -} - -.icon-A-Z:before { - content: "\e600"; -} -.icon-Aa:before { - content: "\e601"; -} -.icon-Add-Bag:before { - content: "\e602"; -} -.icon-Add-Basket:before { - content: "\e603"; -} -.icon-Add-Cart:before { - content: "\e604"; -} -.icon-Add-File:before { - content: "\e605"; -} -.icon-Add-SpaceAfterParagraph:before { - content: "\e606"; -} -.icon-Add-SpaceBeforeParagraph:before { - content: "\e607"; -} -.icon-Add-User:before { - content: "\e608"; -} -.icon-Add-UserStar:before { - content: "\e609"; -} -.icon-Add-Window:before { - content: "\e60a"; -} -.icon-Add:before { - content: "\e60b"; -} -.icon-Address-Book:before { - content: "\e60c"; -} -.icon-Address-Book2:before { - content: "\e60d"; -} -.icon-Administrator:before { - content: "\e60e"; -} -.icon-Aerobics-2:before { - content: "\e60f"; -} -.icon-Aerobics-3:before { - content: "\e610"; -} -.icon-Aerobics:before { - content: "\e611"; -} -.icon-Affiliate:before { - content: "\e612"; -} -.icon-Aim:before { - content: "\e613"; -} -.icon-Air-Balloon:before { - content: "\e614"; -} -.icon-Airbrush:before { - content: "\e615"; -} -.icon-Airship:before { - content: "\e616"; -} -.icon-Alarm-Clock:before { - content: "\e617"; -} -.icon-Alarm-Clock2:before { - content: "\e618"; -} -.icon-Alarm:before { - content: "\e619"; -} -.icon-Alien-2:before { - content: "\e61a"; -} -.icon-Alien:before { - content: "\e61b"; -} -.icon-Aligator:before { - content: "\e61c"; -} -.icon-Align-Center:before { - content: "\e61d"; -} -.icon-Align-JustifyAll:before { - content: "\e61e"; -} -.icon-Align-JustifyCenter:before { - content: "\e61f"; -} -.icon-Align-JustifyLeft:before { - content: "\e620"; -} -.icon-Align-JustifyRight:before { - content: "\e621"; -} -.icon-Align-Left:before { - content: "\e622"; -} -.icon-Align-Right:before { - content: "\e623"; -} -.icon-Alpha:before { - content: "\e624"; -} -.icon-Ambulance:before { - content: "\e625"; -} -.icon-AMX:before { - content: "\e626"; -} -.icon-Anchor-2:before { - content: "\e627"; -} -.icon-Anchor:before { - content: "\e628"; -} -.icon-Android-Store:before { - content: "\e629"; -} -.icon-Android:before { - content: "\e62a"; -} -.icon-Angel-Smiley:before { - content: "\e62b"; -} -.icon-Angel:before { - content: "\e62c"; -} -.icon-Angry:before { - content: "\e62d"; -} -.icon-Apple-Bite:before { - content: "\e62e"; -} -.icon-Apple-Store:before { - content: "\e62f"; -} -.icon-Apple:before { - content: "\e630"; -} -.icon-Approved-Window:before { - content: "\e631"; -} -.icon-Aquarius-2:before { - content: "\e632"; -} -.icon-Aquarius:before { - content: "\e633"; -} -.icon-Archery-2:before { - content: "\e634"; -} -.icon-Archery:before { - content: "\e635"; -} -.icon-Argentina:before { - content: "\e636"; -} -.icon-Aries-2:before { - content: "\e637"; -} -.icon-Aries:before { - content: "\e638"; -} -.icon-Army-Key:before { - content: "\e639"; -} -.icon-Arrow-Around:before { - content: "\e63a"; -} -.icon-Arrow-Back3:before { - content: "\e63b"; -} -.icon-Arrow-Back:before { - content: "\e63c"; -} -.icon-Arrow-Back2:before { - content: "\e63d"; -} -.icon-Arrow-Barrier:before { - content: "\e63e"; -} -.icon-Arrow-Circle:before { - content: "\e63f"; -} -.icon-Arrow-Cross:before { - content: "\e640"; -} -.icon-Arrow-Down:before { - content: "\e641"; -} -.icon-Arrow-Down2:before { - content: "\e642"; -} -.icon-Arrow-Down3:before { - content: "\e643"; -} -.icon-Arrow-DowninCircle:before { - content: "\e644"; -} -.icon-Arrow-Fork:before { - content: "\e645"; -} -.icon-Arrow-Forward:before { - content: "\e646"; -} -.icon-Arrow-Forward2:before { - content: "\e647"; -} -.icon-Arrow-From:before { - content: "\e648"; -} -.icon-Arrow-Inside:before { - content: "\e649"; -} -.icon-Arrow-Inside45:before { - content: "\e64a"; -} -.icon-Arrow-InsideGap:before { - content: "\e64b"; -} -.icon-Arrow-InsideGap45:before { - content: "\e64c"; -} -.icon-Arrow-Into:before { - content: "\e64d"; -} -.icon-Arrow-Join:before { - content: "\e64e"; -} -.icon-Arrow-Junction:before { - content: "\e64f"; -} -.icon-Arrow-Left:before { - content: "\e650"; -} -.icon-Arrow-Left2:before { - content: "\e651"; -} -.icon-Arrow-LeftinCircle:before { - content: "\e652"; -} -.icon-Arrow-Loop:before { - content: "\e653"; -} -.icon-Arrow-Merge:before { - content: "\e654"; -} -.icon-Arrow-Mix:before { - content: "\e655"; -} -.icon-Arrow-Next:before { - content: "\e656"; -} -.icon-Arrow-OutLeft:before { - content: "\e657"; -} -.icon-Arrow-OutRight:before { - content: "\e658"; -} -.icon-Arrow-Outside:before { - content: "\e659"; -} -.icon-Arrow-Outside45:before { - content: "\e65a"; -} -.icon-Arrow-OutsideGap:before { - content: "\e65b"; -} -.icon-Arrow-OutsideGap45:before { - content: "\e65c"; -} -.icon-Arrow-Over:before { - content: "\e65d"; -} -.icon-Arrow-Refresh:before { - content: "\e65e"; -} -.icon-Arrow-Refresh2:before { - content: "\e65f"; -} -.icon-Arrow-Right:before { - content: "\e660"; -} -.icon-Arrow-Right2:before { - content: "\e661"; -} -.icon-Arrow-RightinCircle:before { - content: "\e662"; -} -.icon-Arrow-Shuffle:before { - content: "\e663"; -} -.icon-Arrow-Squiggly:before { - content: "\e664"; -} -.icon-Arrow-Through:before { - content: "\e665"; -} -.icon-Arrow-To:before { - content: "\e666"; -} -.icon-Arrow-TurnLeft:before { - content: "\e667"; -} -.icon-Arrow-TurnRight:before { - content: "\e668"; -} -.icon-Arrow-Up:before { - content: "\e669"; -} -.icon-Arrow-Up2:before { - content: "\e66a"; -} -.icon-Arrow-Up3:before { - content: "\e66b"; -} -.icon-Arrow-UpinCircle:before { - content: "\e66c"; -} -.icon-Arrow-XLeft:before { - content: "\e66d"; -} -.icon-Arrow-XRight:before { - content: "\e66e"; -} -.icon-Ask:before { - content: "\e66f"; -} -.icon-Assistant:before { - content: "\e670"; -} -.icon-Astronaut:before { - content: "\e671"; -} -.icon-At-Sign:before { - content: "\e672"; -} -.icon-ATM:before { - content: "\e673"; -} -.icon-Atom:before { - content: "\e674"; -} -.icon-Audio:before { - content: "\e675"; -} -.icon-Auto-Flash:before { - content: "\e676"; -} -.icon-Autumn:before { - content: "\e677"; -} -.icon-Baby-Clothes:before { - content: "\e678"; -} -.icon-Baby-Clothes2:before { - content: "\e679"; -} -.icon-Baby-Cry:before { - content: "\e67a"; -} -.icon-Baby:before { - content: "\e67b"; -} -.icon-Back2:before { - content: "\e67c"; -} -.icon-Back-Media:before { - content: "\e67d"; -} -.icon-Back-Music:before { - content: "\e67e"; -} -.icon-Back:before { - content: "\e67f"; -} -.icon-Background:before { - content: "\e680"; -} -.icon-Bacteria:before { - content: "\e681"; -} -.icon-Bag-Coins:before { - content: "\e682"; -} -.icon-Bag-Items:before { - content: "\e683"; -} -.icon-Bag-Quantity:before { - content: "\e684"; -} -.icon-Bag:before { - content: "\e685"; -} -.icon-Bakelite:before { - content: "\e686"; -} -.icon-Ballet-Shoes:before { - content: "\e687"; -} -.icon-Balloon:before { - content: "\e688"; -} -.icon-Banana:before { - content: "\e689"; -} -.icon-Band-Aid:before { - content: "\e68a"; -} -.icon-Bank:before { - content: "\e68b"; -} -.icon-Bar-Chart:before { - content: "\e68c"; -} -.icon-Bar-Chart2:before { - content: "\e68d"; -} -.icon-Bar-Chart3:before { - content: "\e68e"; -} -.icon-Bar-Chart4:before { - content: "\e68f"; -} -.icon-Bar-Chart5:before { - content: "\e690"; -} -.icon-Bar-Code:before { - content: "\e691"; -} -.icon-Barricade-2:before { - content: "\e692"; -} -.icon-Barricade:before { - content: "\e693"; -} -.icon-Baseball:before { - content: "\e694"; -} -.icon-Basket-Ball:before { - content: "\e695"; -} -.icon-Basket-Coins:before { - content: "\e696"; -} -.icon-Basket-Items:before { - content: "\e697"; -} -.icon-Basket-Quantity:before { - content: "\e698"; -} -.icon-Bat-2:before { - content: "\e699"; -} -.icon-Bat:before { - content: "\e69a"; -} -.icon-Bathrobe:before { - content: "\e69b"; -} -.icon-Batman-Mask:before { - content: "\e69c"; -} -.icon-Battery-0:before { - content: "\e69d"; -} -.icon-Battery-25:before { - content: "\e69e"; -} -.icon-Battery-50:before { - content: "\e69f"; -} -.icon-Battery-75:before { - content: "\e6a0"; -} -.icon-Battery-100:before { - content: "\e6a1"; -} -.icon-Battery-Charge:before { - content: "\e6a2"; -} -.icon-Bear:before { - content: "\e6a3"; -} -.icon-Beard-2:before { - content: "\e6a4"; -} -.icon-Beard-3:before { - content: "\e6a5"; -} -.icon-Beard:before { - content: "\e6a6"; -} -.icon-Bebo:before { - content: "\e6a7"; -} -.icon-Bee:before { - content: "\e6a8"; -} -.icon-Beer-Glass:before { - content: "\e6a9"; -} -.icon-Beer:before { - content: "\e6aa"; -} -.icon-Bell-2:before { - content: "\e6ab"; -} -.icon-Bell:before { - content: "\e6ac"; -} -.icon-Belt-2:before { - content: "\e6ad"; -} -.icon-Belt-3:before { - content: "\e6ae"; -} -.icon-Belt:before { - content: "\e6af"; -} -.icon-Berlin-Tower:before { - content: "\e6b0"; -} -.icon-Beta:before { - content: "\e6b1"; -} -.icon-Betvibes:before { - content: "\e6b2"; -} -.icon-Bicycle-2:before { - content: "\e6b3"; -} -.icon-Bicycle-3:before { - content: "\e6b4"; -} -.icon-Bicycle:before { - content: "\e6b5"; -} -.icon-Big-Bang:before { - content: "\e6b6"; -} -.icon-Big-Data:before { - content: "\e6b7"; -} -.icon-Bike-Helmet:before { - content: "\e6b8"; -} -.icon-Bikini:before { - content: "\e6b9"; -} -.icon-Bilk-Bottle2:before { - content: "\e6ba"; -} -.icon-Billing:before { - content: "\e6bb"; -} -.icon-Bing:before { - content: "\e6bc"; -} -.icon-Binocular:before { - content: "\e6bd"; -} -.icon-Bio-Hazard:before { - content: "\e6be"; -} -.icon-Biotech:before { - content: "\e6bf"; -} -.icon-Bird-DeliveringLetter:before { - content: "\e6c0"; -} -.icon-Bird:before { - content: "\e6c1"; -} -.icon-Birthday-Cake:before { - content: "\e6c2"; -} -.icon-Bisexual:before { - content: "\e6c3"; -} -.icon-Bishop:before { - content: "\e6c4"; -} -.icon-Bitcoin:before { - content: "\e6c5"; -} -.icon-Black-Cat:before { - content: "\e6c6"; -} -.icon-Blackboard:before { - content: "\e6c7"; -} -.icon-Blinklist:before { - content: "\e6c8"; -} -.icon-Block-Cloud:before { - content: "\e6c9"; -} -.icon-Block-Window:before { - content: "\e6ca"; -} -.icon-Blogger:before { - content: "\e6cb"; -} -.icon-Blood:before { - content: "\e6cc"; -} -.icon-Blouse:before { - content: "\e6cd"; -} -.icon-Blueprint:before { - content: "\e6ce"; -} -.icon-Board:before { - content: "\e6cf"; -} -.icon-Bodybuilding:before { - content: "\e6d0"; -} -.icon-Bold-Text:before { - content: "\e6d1"; -} -.icon-Bone:before { - content: "\e6d2"; -} -.icon-Bones:before { - content: "\e6d3"; -} -.icon-Book:before { - content: "\e6d4"; -} -.icon-Bookmark:before { - content: "\e6d5"; -} -.icon-Books-2:before { - content: "\e6d6"; -} -.icon-Books:before { - content: "\e6d7"; -} -.icon-Boom:before { - content: "\e6d8"; -} -.icon-Boot-2:before { - content: "\e6d9"; -} -.icon-Boot:before { - content: "\e6da"; -} -.icon-Bottom-ToTop:before { - content: "\e6db"; -} -.icon-Bow-2:before { - content: "\e6dc"; -} -.icon-Bow-3:before { - content: "\e6dd"; -} -.icon-Bow-4:before { - content: "\e6de"; -} -.icon-Bow-5:before { - content: "\e6df"; -} -.icon-Bow-6:before { - content: "\e6e0"; -} -.icon-Bow:before { - content: "\e6e1"; -} -.icon-Bowling-2:before { - content: "\e6e2"; -} -.icon-Bowling:before { - content: "\e6e3"; -} -.icon-Box2:before { - content: "\e6e4"; -} -.icon-Box-Close:before { - content: "\e6e5"; -} -.icon-Box-Full:before { - content: "\e6e6"; -} -.icon-Box-Open:before { - content: "\e6e7"; -} -.icon-Box-withFolders:before { - content: "\e6e8"; -} -.icon-Box:before { - content: "\e6e9"; -} -.icon-Boy:before { - content: "\e6ea"; -} -.icon-Bra:before { - content: "\e6eb"; -} -.icon-Brain-2:before { - content: "\e6ec"; -} -.icon-Brain-3:before { - content: "\e6ed"; -} -.icon-Brain:before { - content: "\e6ee"; -} -.icon-Brazil:before { - content: "\e6ef"; -} -.icon-Bread-2:before { - content: "\e6f0"; -} -.icon-Bread:before { - content: "\e6f1"; -} -.icon-Bridge:before { - content: "\e6f2"; -} -.icon-Brightkite:before { - content: "\e6f3"; -} -.icon-Broke-Link2:before { - content: "\e6f4"; -} -.icon-Broken-Link:before { - content: "\e6f5"; -} -.icon-Broom:before { - content: "\e6f6"; -} -.icon-Brush:before { - content: "\e6f7"; -} -.icon-Bucket:before { - content: "\e6f8"; -} -.icon-Bug:before { - content: "\e6f9"; -} -.icon-Building:before { - content: "\e6fa"; -} -.icon-Bulleted-List:before { - content: "\e6fb"; -} -.icon-Bus-2:before { - content: "\e6fc"; -} -.icon-Bus:before { - content: "\e6fd"; -} -.icon-Business-Man:before { - content: "\e6fe"; -} -.icon-Business-ManWoman:before { - content: "\e6ff"; -} -.icon-Business-Mens:before { - content: "\e700"; -} -.icon-Business-Woman:before { - content: "\e701"; -} -.icon-Butterfly:before { - content: "\e702"; -} -.icon-Button:before { - content: "\e703"; -} -.icon-Cable-Car:before { - content: "\e704"; -} -.icon-Cake:before { - content: "\e705"; -} -.icon-Calculator-2:before { - content: "\e706"; -} -.icon-Calculator-3:before { - content: "\e707"; -} -.icon-Calculator:before { - content: "\e708"; -} -.icon-Calendar-2:before { - content: "\e709"; -} -.icon-Calendar-3:before { - content: "\e70a"; -} -.icon-Calendar-4:before { - content: "\e70b"; -} -.icon-Calendar-Clock:before { - content: "\e70c"; -} -.icon-Calendar:before { - content: "\e70d"; -} -.icon-Camel:before { - content: "\e70e"; -} -.icon-Camera-2:before { - content: "\e70f"; -} -.icon-Camera-3:before { - content: "\e710"; -} -.icon-Camera-4:before { - content: "\e711"; -} -.icon-Camera-5:before { - content: "\e712"; -} -.icon-Camera-Back:before { - content: "\e713"; -} -.icon-Camera:before { - content: "\e714"; -} -.icon-Can-2:before { - content: "\e715"; -} -.icon-Can:before { - content: "\e716"; -} -.icon-Canada:before { - content: "\e717"; -} -.icon-Cancer-2:before { - content: "\e718"; -} -.icon-Cancer-3:before { - content: "\e719"; -} -.icon-Cancer:before { - content: "\e71a"; -} -.icon-Candle:before { - content: "\e71b"; -} -.icon-Candy-Cane:before { - content: "\e71c"; -} -.icon-Candy:before { - content: "\e71d"; -} -.icon-Cannon:before { - content: "\e71e"; -} -.icon-Cap-2:before { - content: "\e71f"; -} -.icon-Cap-3:before { - content: "\e720"; -} -.icon-Cap-Smiley:before { - content: "\e721"; -} -.icon-Cap:before { - content: "\e722"; -} -.icon-Capricorn-2:before { - content: "\e723"; -} -.icon-Capricorn:before { - content: "\e724"; -} -.icon-Car-2:before { - content: "\e725"; -} -.icon-Car-3:before { - content: "\e726"; -} -.icon-Car-Coins:before { - content: "\e727"; -} -.icon-Car-Items:before { - content: "\e728"; -} -.icon-Car-Wheel:before { - content: "\e729"; -} -.icon-Car:before { - content: "\e72a"; -} -.icon-Cardigan:before { - content: "\e72b"; -} -.icon-Cardiovascular:before { - content: "\e72c"; -} -.icon-Cart-Quantity:before { - content: "\e72d"; -} -.icon-Casette-Tape:before { - content: "\e72e"; -} -.icon-Cash-Register:before { - content: "\e72f"; -} -.icon-Cash-register2:before { - content: "\e730"; -} -.icon-Castle:before { - content: "\e731"; -} -.icon-Cat:before { - content: "\e732"; -} -.icon-Cathedral:before { - content: "\e733"; -} -.icon-Cauldron:before { - content: "\e734"; -} -.icon-CD-2:before { - content: "\e735"; -} -.icon-CD-Cover:before { - content: "\e736"; -} -.icon-CD:before { - content: "\e737"; -} -.icon-Cello:before { - content: "\e738"; -} -.icon-Celsius:before { - content: "\e739"; -} -.icon-Chacked-Flag:before { - content: "\e73a"; -} -.icon-Chair:before { - content: "\e73b"; -} -.icon-Charger:before { - content: "\e73c"; -} -.icon-Check-2:before { - content: "\e73d"; -} -.icon-Check:before { - content: "\e73e"; -} -.icon-Checked-User:before { - content: "\e73f"; -} -.icon-Checkmate:before { - content: "\e740"; -} -.icon-Checkout-Bag:before { - content: "\e741"; -} -.icon-Checkout-Basket:before { - content: "\e742"; -} -.icon-Checkout:before { - content: "\e743"; -} -.icon-Cheese:before { - content: "\e744"; -} -.icon-Cheetah:before { - content: "\e745"; -} -.icon-Chef-Hat:before { - content: "\e746"; -} -.icon-Chef-Hat2:before { - content: "\e747"; -} -.icon-Chef:before { - content: "\e748"; -} -.icon-Chemical-2:before { - content: "\e749"; -} -.icon-Chemical-3:before { - content: "\e74a"; -} -.icon-Chemical-4:before { - content: "\e74b"; -} -.icon-Chemical-5:before { - content: "\e74c"; -} -.icon-Chemical:before { - content: "\e74d"; -} -.icon-Chess-Board:before { - content: "\e74e"; -} -.icon-Chess:before { - content: "\e74f"; -} -.icon-Chicken:before { - content: "\e750"; -} -.icon-Chile:before { - content: "\e751"; -} -.icon-Chimney:before { - content: "\e752"; -} -.icon-China:before { - content: "\e753"; -} -.icon-Chinese-Temple:before { - content: "\e754"; -} -.icon-Chip:before { - content: "\e755"; -} -.icon-Chopsticks-2:before { - content: "\e756"; -} -.icon-Chopsticks:before { - content: "\e757"; -} -.icon-Christmas-Ball:before { - content: "\e758"; -} -.icon-Christmas-Bell:before { - content: "\e759"; -} -.icon-Christmas-Candle:before { - content: "\e75a"; -} -.icon-Christmas-Hat:before { - content: "\e75b"; -} -.icon-Christmas-Sleigh:before { - content: "\e75c"; -} -.icon-Christmas-Snowman:before { - content: "\e75d"; -} -.icon-Christmas-Sock:before { - content: "\e75e"; -} -.icon-Christmas-Tree:before { - content: "\e75f"; -} -.icon-Christmas:before { - content: "\e760"; -} -.icon-Chrome:before { - content: "\e761"; -} -.icon-Chrysler-Building:before { - content: "\e762"; -} -.icon-Cinema:before { - content: "\e763"; -} -.icon-Circular-Point:before { - content: "\e764"; -} -.icon-City-Hall:before { - content: "\e765"; -} -.icon-Clamp:before { - content: "\e766"; -} -.icon-Clapperboard-Close:before { - content: "\e767"; -} -.icon-Clapperboard-Open:before { - content: "\e768"; -} -.icon-Claps:before { - content: "\e769"; -} -.icon-Clef:before { - content: "\e76a"; -} -.icon-Clinic:before { - content: "\e76b"; -} -.icon-Clock-2:before { - content: "\e76c"; -} -.icon-Clock-3:before { - content: "\e76d"; -} -.icon-Clock-4:before { - content: "\e76e"; -} -.icon-Clock-Back:before { - content: "\e76f"; -} -.icon-Clock-Forward:before { - content: "\e770"; -} -.icon-Clock:before { - content: "\e771"; -} -.icon-Close-Window:before { - content: "\e772"; -} -.icon-Close:before { - content: "\e773"; -} -.icon-Clothing-Store:before { - content: "\e774"; -} -.icon-Cloud--:before { - content: "\e775"; -} -.icon-Cloud-:before { - content: "\e776"; -} -.icon-Cloud-Camera:before { - content: "\e777"; -} -.icon-Cloud-Computer:before { - content: "\e778"; -} -.icon-Cloud-Email:before { - content: "\e779"; -} -.icon-Cloud-Hail:before { - content: "\e77a"; -} -.icon-Cloud-Laptop:before { - content: "\e77b"; -} -.icon-Cloud-Lock:before { - content: "\e77c"; -} -.icon-Cloud-Moon:before { - content: "\e77d"; -} -.icon-Cloud-Music:before { - content: "\e77e"; -} -.icon-Cloud-Picture:before { - content: "\e77f"; -} -.icon-Cloud-Rain:before { - content: "\e780"; -} -.icon-Cloud-Remove:before { - content: "\e781"; -} -.icon-Cloud-Secure:before { - content: "\e782"; -} -.icon-Cloud-Settings:before { - content: "\e783"; -} -.icon-Cloud-Smartphone:before { - content: "\e784"; -} -.icon-Cloud-Snow:before { - content: "\e785"; -} -.icon-Cloud-Sun:before { - content: "\e786"; -} -.icon-Cloud-Tablet:before { - content: "\e787"; -} -.icon-Cloud-Video:before { - content: "\e788"; -} -.icon-Cloud-Weather:before { - content: "\e789"; -} -.icon-Cloud:before { - content: "\e78a"; -} -.icon-Clouds-Weather:before { - content: "\e78b"; -} -.icon-Clouds:before { - content: "\e78c"; -} -.icon-Clown:before { - content: "\e78d"; -} -.icon-CMYK:before { - content: "\e78e"; -} -.icon-Coat:before { - content: "\e78f"; -} -.icon-Cocktail:before { - content: "\e790"; -} -.icon-Coconut:before { - content: "\e791"; -} -.icon-Code-Window:before { - content: "\e792"; -} -.icon-Coding:before { - content: "\e793"; -} -.icon-Coffee-2:before { - content: "\e794"; -} -.icon-Coffee-Bean:before { - content: "\e795"; -} -.icon-Coffee-Machine:before { - content: "\e796"; -} -.icon-Coffee-toGo:before { - content: "\e797"; -} -.icon-Coffee:before { - content: "\e798"; -} -.icon-Coffin:before { - content: "\e799"; -} -.icon-Coin:before { - content: "\e79a"; -} -.icon-Coins-2:before { - content: "\e79b"; -} -.icon-Coins-3:before { - content: "\e79c"; -} -.icon-Coins:before { - content: "\e79d"; -} -.icon-Colombia:before { - content: "\e79e"; -} -.icon-Colosseum:before { - content: "\e79f"; -} -.icon-Column-2:before { - content: "\e7a0"; -} -.icon-Column-3:before { - content: "\e7a1"; -} -.icon-Column:before { - content: "\e7a2"; -} -.icon-Comb-2:before { - content: "\e7a3"; -} -.icon-Comb:before { - content: "\e7a4"; -} -.icon-Communication-Tower:before { - content: "\e7a5"; -} -.icon-Communication-Tower2:before { - content: "\e7a6"; -} -.icon-Compass-2:before { - content: "\e7a7"; -} -.icon-Compass-3:before { - content: "\e7a8"; -} -.icon-Compass-4:before { - content: "\e7a9"; -} -.icon-Compass-Rose:before { - content: "\e7aa"; -} -.icon-Compass:before { - content: "\e7ab"; -} -.icon-Computer-2:before { - content: "\e7ac"; -} -.icon-Computer-3:before { - content: "\e7ad"; -} -.icon-Computer-Secure:before { - content: "\e7ae"; -} -.icon-Computer:before { - content: "\e7af"; -} -.icon-Conference:before { - content: "\e7b0"; -} -.icon-Confused:before { - content: "\e7b1"; -} -.icon-Conservation:before { - content: "\e7b2"; -} -.icon-Consulting:before { - content: "\e7b3"; -} -.icon-Contrast:before { - content: "\e7b4"; -} -.icon-Control-2:before { - content: "\e7b5"; -} -.icon-Control:before { - content: "\e7b6"; -} -.icon-Cookie-Man:before { - content: "\e7b7"; -} -.icon-Cookies:before { - content: "\e7b8"; -} -.icon-Cool-Guy:before { - content: "\e7b9"; -} -.icon-Cool:before { - content: "\e7ba"; -} -.icon-Copyright:before { - content: "\e7bb"; -} -.icon-Costume:before { - content: "\e7bc"; -} -.icon-Couple-Sign:before { - content: "\e7bd"; -} -.icon-Cow:before { - content: "\e7be"; -} -.icon-CPU:before { - content: "\e7bf"; -} -.icon-Crane:before { - content: "\e7c0"; -} -.icon-Cranium:before { - content: "\e7c1"; -} -.icon-Credit-Card:before { - content: "\e7c2"; -} -.icon-Credit-Card2:before { - content: "\e7c3"; -} -.icon-Credit-Card3:before { - content: "\e7c4"; -} -.icon-Cricket:before { - content: "\e7c5"; -} -.icon-Criminal:before { - content: "\e7c6"; -} -.icon-Croissant:before { - content: "\e7c7"; -} -.icon-Crop-2:before { - content: "\e7c8"; -} -.icon-Crop-3:before { - content: "\e7c9"; -} -.icon-Crown-2:before { - content: "\e7ca"; -} -.icon-Crown:before { - content: "\e7cb"; -} -.icon-Crying:before { - content: "\e7cc"; -} -.icon-Cube-Molecule:before { - content: "\e7cd"; -} -.icon-Cube-Molecule2:before { - content: "\e7ce"; -} -.icon-Cupcake:before { - content: "\e7cf"; -} -.icon-Cursor-Click:before { - content: "\e7d0"; -} -.icon-Cursor-Click2:before { - content: "\e7d1"; -} -.icon-Cursor-Move:before { - content: "\e7d2"; -} -.icon-Cursor-Move2:before { - content: "\e7d3"; -} -.icon-Cursor-Select:before { - content: "\e7d4"; -} -.icon-Cursor:before { - content: "\e7d5"; -} -.icon-D-Eyeglasses:before { - content: "\e7d6"; -} -.icon-D-Eyeglasses2:before { - content: "\e7d7"; -} -.icon-Dam:before { - content: "\e7d8"; -} -.icon-Danemark:before { - content: "\e7d9"; -} -.icon-Danger-2:before { - content: "\e7da"; -} -.icon-Danger:before { - content: "\e7db"; -} -.icon-Dashboard:before { - content: "\e7dc"; -} -.icon-Data-Backup:before { - content: "\e7dd"; -} -.icon-Data-Block:before { - content: "\e7de"; -} -.icon-Data-Center:before { - content: "\e7df"; -} -.icon-Data-Clock:before { - content: "\e7e0"; -} -.icon-Data-Cloud:before { - content: "\e7e1"; -} -.icon-Data-Compress:before { - content: "\e7e2"; -} -.icon-Data-Copy:before { - content: "\e7e3"; -} -.icon-Data-Download:before { - content: "\e7e4"; -} -.icon-Data-Financial:before { - content: "\e7e5"; -} -.icon-Data-Key:before { - content: "\e7e6"; -} -.icon-Data-Lock:before { - content: "\e7e7"; -} -.icon-Data-Network:before { - content: "\e7e8"; -} -.icon-Data-Password:before { - content: "\e7e9"; -} -.icon-Data-Power:before { - content: "\e7ea"; -} -.icon-Data-Refresh:before { - content: "\e7eb"; -} -.icon-Data-Save:before { - content: "\e7ec"; -} -.icon-Data-Search:before { - content: "\e7ed"; -} -.icon-Data-Security:before { - content: "\e7ee"; -} -.icon-Data-Settings:before { - content: "\e7ef"; -} -.icon-Data-Sharing:before { - content: "\e7f0"; -} -.icon-Data-Shield:before { - content: "\e7f1"; -} -.icon-Data-Signal:before { - content: "\e7f2"; -} -.icon-Data-Storage:before { - content: "\e7f3"; -} -.icon-Data-Stream:before { - content: "\e7f4"; -} -.icon-Data-Transfer:before { - content: "\e7f5"; -} -.icon-Data-Unlock:before { - content: "\e7f6"; -} -.icon-Data-Upload:before { - content: "\e7f7"; -} -.icon-Data-Yes:before { - content: "\e7f8"; -} -.icon-Data:before { - content: "\e7f9"; -} -.icon-David-Star:before { - content: "\e7fa"; -} -.icon-Daylight:before { - content: "\e7fb"; -} -.icon-Death:before { - content: "\e7fc"; -} -.icon-Debian:before { - content: "\e7fd"; -} -.icon-Dec:before { - content: "\e7fe"; -} -.icon-Decrase-Inedit:before { - content: "\e7ff"; -} -.icon-Deer-2:before { - content: "\e800"; -} -.icon-Deer:before { - content: "\e801"; -} -.icon-Delete-File:before { - content: "\e802"; -} -.icon-Delete-Window:before { - content: "\e803"; -} -.icon-Delicious:before { - content: "\e804"; -} -.icon-Depression:before { - content: "\e805"; -} -.icon-Deviantart:before { - content: "\e806"; -} -.icon-Device-SyncwithCloud:before { - content: "\e807"; -} -.icon-Diamond:before { - content: "\e808"; -} -.icon-Dice-2:before { - content: "\e809"; -} -.icon-Dice:before { - content: "\e80a"; -} -.icon-Digg:before { - content: "\e80b"; -} -.icon-Digital-Drawing:before { - content: "\e80c"; -} -.icon-Diigo:before { - content: "\e80d"; -} -.icon-Dinosaur:before { - content: "\e80e"; -} -.icon-Diploma-2:before { - content: "\e80f"; -} -.icon-Diploma:before { - content: "\e810"; -} -.icon-Direction-East:before { - content: "\e811"; -} -.icon-Direction-North:before { - content: "\e812"; -} -.icon-Direction-South:before { - content: "\e813"; -} -.icon-Direction-West:before { - content: "\e814"; -} -.icon-Director:before { - content: "\e815"; -} -.icon-Disk:before { - content: "\e816"; -} -.icon-Dj:before { - content: "\e817"; -} -.icon-DNA-2:before { - content: "\e818"; -} -.icon-DNA-Helix:before { - content: "\e819"; -} -.icon-DNA:before { - content: "\e81a"; -} -.icon-Doctor:before { - content: "\e81b"; -} -.icon-Dog:before { - content: "\e81c"; -} -.icon-Dollar-Sign:before { - content: "\e81d"; -} -.icon-Dollar-Sign2:before { - content: "\e81e"; -} -.icon-Dollar:before { - content: "\e81f"; -} -.icon-Dolphin:before { - content: "\e820"; -} -.icon-Domino:before { - content: "\e821"; -} -.icon-Door-Hanger:before { - content: "\e822"; -} -.icon-Door:before { - content: "\e823"; -} -.icon-Doplr:before { - content: "\e824"; -} -.icon-Double-Circle:before { - content: "\e825"; -} -.icon-Double-Tap:before { - content: "\e826"; -} -.icon-Doughnut:before { - content: "\e827"; -} -.icon-Dove:before { - content: "\e828"; -} -.icon-Down-2:before { - content: "\e829"; -} -.icon-Down-3:before { - content: "\e82a"; -} -.icon-Down-4:before { - content: "\e82b"; -} -.icon-Down:before { - content: "\e82c"; -} -.icon-Download-2:before { - content: "\e82d"; -} -.icon-Download-fromCloud:before { - content: "\e82e"; -} -.icon-Download-Window:before { - content: "\e82f"; -} -.icon-Download:before { - content: "\e830"; -} -.icon-Downward:before { - content: "\e831"; -} -.icon-Drag-Down:before { - content: "\e832"; -} -.icon-Drag-Left:before { - content: "\e833"; -} -.icon-Drag-Right:before { - content: "\e834"; -} -.icon-Drag-Up:before { - content: "\e835"; -} -.icon-Drag:before { - content: "\e836"; -} -.icon-Dress:before { - content: "\e837"; -} -.icon-Drill-2:before { - content: "\e838"; -} -.icon-Drill:before { - content: "\e839"; -} -.icon-Drop:before { - content: "\e83a"; -} -.icon-Dropbox:before { - content: "\e83b"; -} -.icon-Drum:before { - content: "\e83c"; -} -.icon-Dry:before { - content: "\e83d"; -} -.icon-Duck:before { - content: "\e83e"; -} -.icon-Dumbbell:before { - content: "\e83f"; -} -.icon-Duplicate-Layer:before { - content: "\e840"; -} -.icon-Duplicate-Window:before { - content: "\e841"; -} -.icon-DVD:before { - content: "\e842"; -} -.icon-Eagle:before { - content: "\e843"; -} -.icon-Ear:before { - content: "\e844"; -} -.icon-Earphones-2:before { - content: "\e845"; -} -.icon-Earphones:before { - content: "\e846"; -} -.icon-Eci-Icon:before { - content: "\e847"; -} -.icon-Edit-Map:before { - content: "\e848"; -} -.icon-Edit:before { - content: "\e849"; -} -.icon-Eggs:before { - content: "\e84a"; -} -.icon-Egypt:before { - content: "\e84b"; -} -.icon-Eifel-Tower:before { - content: "\e84c"; -} -.icon-eject-2:before { - content: "\e84d"; -} -.icon-Eject:before { - content: "\e84e"; -} -.icon-El-Castillo:before { - content: "\e84f"; -} -.icon-Elbow:before { - content: "\e850"; -} -.icon-Electric-Guitar:before { - content: "\e851"; -} -.icon-Electricity:before { - content: "\e852"; -} -.icon-Elephant:before { - content: "\e853"; -} -.icon-Email:before { - content: "\e854"; -} -.icon-Embassy:before { - content: "\e855"; -} -.icon-Empire-StateBuilding:before { - content: "\e856"; -} -.icon-Empty-Box:before { - content: "\e857"; -} -.icon-End2:before { - content: "\e858"; -} -.icon-End-2:before { - content: "\e859"; -} -.icon-End:before { - content: "\e85a"; -} -.icon-Endways:before { - content: "\e85b"; -} -.icon-Engineering:before { - content: "\e85c"; -} -.icon-Envelope-2:before { - content: "\e85d"; -} -.icon-Envelope:before { - content: "\e85e"; -} -.icon-Environmental-2:before { - content: "\e85f"; -} -.icon-Environmental-3:before { - content: "\e860"; -} -.icon-Environmental:before { - content: "\e861"; -} -.icon-Equalizer:before { - content: "\e862"; -} -.icon-Eraser-2:before { - content: "\e863"; -} -.icon-Eraser-3:before { - content: "\e864"; -} -.icon-Eraser:before { - content: "\e865"; -} -.icon-Error-404Window:before { - content: "\e866"; -} -.icon-Euro-Sign:before { - content: "\e867"; -} -.icon-Euro-Sign2:before { - content: "\e868"; -} -.icon-Euro:before { - content: "\e869"; -} -.icon-Evernote:before { - content: "\e86a"; -} -.icon-Evil:before { - content: "\e86b"; -} -.icon-Explode:before { - content: "\e86c"; -} -.icon-Eye-2:before { - content: "\e86d"; -} -.icon-Eye-Blind:before { - content: "\e86e"; -} -.icon-Eye-Invisible:before { - content: "\e86f"; -} -.icon-Eye-Scan:before { - content: "\e870"; -} -.icon-Eye-Visible:before { - content: "\e871"; -} -.icon-Eye:before { - content: "\e872"; -} -.icon-Eyebrow-2:before { - content: "\e873"; -} -.icon-Eyebrow-3:before { - content: "\e874"; -} -.icon-Eyebrow:before { - content: "\e875"; -} -.icon-Eyeglasses-Smiley:before { - content: "\e876"; -} -.icon-Eyeglasses-Smiley2:before { - content: "\e877"; -} -.icon-Face-Style:before { - content: "\e878"; -} -.icon-Face-Style2:before { - content: "\e879"; -} -.icon-Face-Style3:before { - content: "\e87a"; -} -.icon-Face-Style4:before { - content: "\e87b"; -} -.icon-Face-Style5:before { - content: "\e87c"; -} -.icon-Face-Style6:before { - content: "\e87d"; -} -.icon-Facebook-2:before { - content: "\e87e"; -} -.icon-Facebook:before { - content: "\e87f"; -} -.icon-Factory-2:before { - content: "\e880"; -} -.icon-Factory:before { - content: "\e881"; -} -.icon-Fahrenheit:before { - content: "\e882"; -} -.icon-Family-Sign:before { - content: "\e883"; -} -.icon-Fan:before { - content: "\e884"; -} -.icon-Farmer:before { - content: "\e885"; -} -.icon-Fashion:before { - content: "\e886"; -} -.icon-Favorite-Window:before { - content: "\e887"; -} -.icon-Fax:before { - content: "\e888"; -} -.icon-Feather:before { - content: "\e889"; -} -.icon-Feedburner:before { - content: "\e88a"; -} -.icon-Female-2:before { - content: "\e88b"; -} -.icon-Female-Sign:before { - content: "\e88c"; -} -.icon-Female:before { - content: "\e88d"; -} -.icon-File-Block:before { - content: "\e88e"; -} -.icon-File-Bookmark:before { - content: "\e88f"; -} -.icon-File-Chart:before { - content: "\e890"; -} -.icon-File-Clipboard:before { - content: "\e891"; -} -.icon-File-ClipboardFileText:before { - content: "\e892"; -} -.icon-File-ClipboardTextImage:before { - content: "\e893"; -} -.icon-File-Cloud:before { - content: "\e894"; -} -.icon-File-Copy:before { - content: "\e895"; -} -.icon-File-Copy2:before { - content: "\e896"; -} -.icon-File-CSV:before { - content: "\e897"; -} -.icon-File-Download:before { - content: "\e898"; -} -.icon-File-Edit:before { - content: "\e899"; -} -.icon-File-Excel:before { - content: "\e89a"; -} -.icon-File-Favorite:before { - content: "\e89b"; -} -.icon-File-Fire:before { - content: "\e89c"; -} -.icon-File-Graph:before { - content: "\e89d"; -} -.icon-File-Hide:before { - content: "\e89e"; -} -.icon-File-Horizontal:before { - content: "\e89f"; -} -.icon-File-HorizontalText:before { - content: "\e8a0"; -} -.icon-File-HTML:before { - content: "\e8a1"; -} -.icon-File-JPG:before { - content: "\e8a2"; -} -.icon-File-Link:before { - content: "\e8a3"; -} -.icon-File-Loading:before { - content: "\e8a4"; -} -.icon-File-Lock:before { - content: "\e8a5"; -} -.icon-File-Love:before { - content: "\e8a6"; -} -.icon-File-Music:before { - content: "\e8a7"; -} -.icon-File-Network:before { - content: "\e8a8"; -} -.icon-File-Pictures:before { - content: "\e8a9"; -} -.icon-File-Pie:before { - content: "\e8aa"; -} -.icon-File-Presentation:before { - content: "\e8ab"; -} -.icon-File-Refresh:before { - content: "\e8ac"; -} -.icon-File-Search:before { - content: "\e8ad"; -} -.icon-File-Settings:before { - content: "\e8ae"; -} -.icon-File-Share:before { - content: "\e8af"; -} -.icon-File-TextImage:before { - content: "\e8b0"; -} -.icon-File-Trash:before { - content: "\e8b1"; -} -.icon-File-TXT:before { - content: "\e8b2"; -} -.icon-File-Upload:before { - content: "\e8b3"; -} -.icon-File-Video:before { - content: "\e8b4"; -} -.icon-File-Word:before { - content: "\e8b5"; -} -.icon-File-Zip:before { - content: "\e8b6"; -} -.icon-File:before { - content: "\e8b7"; -} -.icon-Files:before { - content: "\e8b8"; -} -.icon-Film-Board:before { - content: "\e8b9"; -} -.icon-Film-Cartridge:before { - content: "\e8ba"; -} -.icon-Film-Strip:before { - content: "\e8bb"; -} -.icon-Film-Video:before { - content: "\e8bc"; -} -.icon-Film:before { - content: "\e8bd"; -} -.icon-Filter-2:before { - content: "\e8be"; -} -.icon-Filter:before { - content: "\e8bf"; -} -.icon-Financial:before { - content: "\e8c0"; -} -.icon-Find-User:before { - content: "\e8c1"; -} -.icon-Finger-DragFourSides:before { - content: "\e8c2"; -} -.icon-Finger-DragTwoSides:before { - content: "\e8c3"; -} -.icon-Finger-Print:before { - content: "\e8c4"; -} -.icon-Finger:before { - content: "\e8c5"; -} -.icon-Fingerprint-2:before { - content: "\e8c6"; -} -.icon-Fingerprint:before { - content: "\e8c7"; -} -.icon-Fire-Flame:before { - content: "\e8c8"; -} -.icon-Fire-Flame2:before { - content: "\e8c9"; -} -.icon-Fire-Hydrant:before { - content: "\e8ca"; -} -.icon-Fire-Staion:before { - content: "\e8cb"; -} -.icon-Firefox:before { - content: "\e8cc"; -} -.icon-Firewall:before { - content: "\e8cd"; -} -.icon-First-Aid:before { - content: "\e8ce"; -} -.icon-First:before { - content: "\e8cf"; -} -.icon-Fish-Food:before { - content: "\e8d0"; -} -.icon-Fish:before { - content: "\e8d1"; -} -.icon-Fit-To:before { - content: "\e8d2"; -} -.icon-Fit-To2:before { - content: "\e8d3"; -} -.icon-Five-Fingers:before { - content: "\e8d4"; -} -.icon-Five-FingersDrag:before { - content: "\e8d5"; -} -.icon-Five-FingersDrag2:before { - content: "\e8d6"; -} -.icon-Five-FingersTouch:before { - content: "\e8d7"; -} -.icon-Flag-2:before { - content: "\e8d8"; -} -.icon-Flag-3:before { - content: "\e8d9"; -} -.icon-Flag-4:before { - content: "\e8da"; -} -.icon-Flag-5:before { - content: "\e8db"; -} -.icon-Flag-6:before { - content: "\e8dc"; -} -.icon-Flag:before { - content: "\e8dd"; -} -.icon-Flamingo:before { - content: "\e8de"; -} -.icon-Flash-2:before { - content: "\e8df"; -} -.icon-Flash-Video:before { - content: "\e8e0"; -} -.icon-Flash:before { - content: "\e8e1"; -} -.icon-Flashlight:before { - content: "\e8e2"; -} -.icon-Flask-2:before { - content: "\e8e3"; -} -.icon-Flask:before { - content: "\e8e4"; -} -.icon-Flick:before { - content: "\e8e5"; -} -.icon-Flickr:before { - content: "\e8e6"; -} -.icon-Flowerpot:before { - content: "\e8e7"; -} -.icon-Fluorescent:before { - content: "\e8e8"; -} -.icon-Fog-Day:before { - content: "\e8e9"; -} -.icon-Fog-Night:before { - content: "\e8ea"; -} -.icon-Folder-Add:before { - content: "\e8eb"; -} -.icon-Folder-Archive:before { - content: "\e8ec"; -} -.icon-Folder-Binder:before { - content: "\e8ed"; -} -.icon-Folder-Binder2:before { - content: "\e8ee"; -} -.icon-Folder-Block:before { - content: "\e8ef"; -} -.icon-Folder-Bookmark:before { - content: "\e8f0"; -} -.icon-Folder-Close:before { - content: "\e8f1"; -} -.icon-Folder-Cloud:before { - content: "\e8f2"; -} -.icon-Folder-Delete:before { - content: "\e8f3"; -} -.icon-Folder-Download:before { - content: "\e8f4"; -} -.icon-Folder-Edit:before { - content: "\e8f5"; -} -.icon-Folder-Favorite:before { - content: "\e8f6"; -} -.icon-Folder-Fire:before { - content: "\e8f7"; -} -.icon-Folder-Hide:before { - content: "\e8f8"; -} -.icon-Folder-Link:before { - content: "\e8f9"; -} -.icon-Folder-Loading:before { - content: "\e8fa"; -} -.icon-Folder-Lock:before { - content: "\e8fb"; -} -.icon-Folder-Love:before { - content: "\e8fc"; -} -.icon-Folder-Music:before { - content: "\e8fd"; -} -.icon-Folder-Network:before { - content: "\e8fe"; -} -.icon-Folder-Open:before { - content: "\e8ff"; -} -.icon-Folder-Open2:before { - content: "\e900"; -} -.icon-Folder-Organizing:before { - content: "\e901"; -} -.icon-Folder-Pictures:before { - content: "\e902"; -} -.icon-Folder-Refresh:before { - content: "\e903"; -} -.icon-Folder-Remove-:before { - content: "\e904"; -} -.icon-Folder-Search:before { - content: "\e905"; -} -.icon-Folder-Settings:before { - content: "\e906"; -} -.icon-Folder-Share:before { - content: "\e907"; -} -.icon-Folder-Trash:before { - content: "\e908"; -} -.icon-Folder-Upload:before { - content: "\e909"; -} -.icon-Folder-Video:before { - content: "\e90a"; -} -.icon-Folder-WithDocument:before { - content: "\e90b"; -} -.icon-Folder-Zip:before { - content: "\e90c"; -} -.icon-Folder:before { - content: "\e90d"; -} -.icon-Folders:before { - content: "\e90e"; -} -.icon-Font-Color:before { - content: "\e90f"; -} -.icon-Font-Name:before { - content: "\e910"; -} -.icon-Font-Size:before { - content: "\e911"; -} -.icon-Font-Style:before { - content: "\e912"; -} -.icon-Font-StyleSubscript:before { - content: "\e913"; -} -.icon-Font-StyleSuperscript:before { - content: "\e914"; -} -.icon-Font-Window:before { - content: "\e915"; -} -.icon-Foot-2:before { - content: "\e916"; -} -.icon-Foot:before { - content: "\e917"; -} -.icon-Football-2:before { - content: "\e918"; -} -.icon-Football:before { - content: "\e919"; -} -.icon-Footprint-2:before { - content: "\e91a"; -} -.icon-Footprint-3:before { - content: "\e91b"; -} -.icon-Footprint:before { - content: "\e91c"; -} -.icon-Forest:before { - content: "\e91d"; -} -.icon-Fork:before { - content: "\e91e"; -} -.icon-Formspring:before { - content: "\e91f"; -} -.icon-Formula:before { - content: "\e920"; -} -.icon-Forsquare:before { - content: "\e921"; -} -.icon-Forward:before { - content: "\e922"; -} -.icon-Fountain-Pen:before { - content: "\e923"; -} -.icon-Four-Fingers:before { - content: "\e924"; -} -.icon-Four-FingersDrag:before { - content: "\e925"; -} -.icon-Four-FingersDrag2:before { - content: "\e926"; -} -.icon-Four-FingersTouch:before { - content: "\e927"; -} -.icon-Fox:before { - content: "\e928"; -} -.icon-Frankenstein:before { - content: "\e929"; -} -.icon-French-Fries:before { - content: "\e92a"; -} -.icon-Friendfeed:before { - content: "\e92b"; -} -.icon-Friendster:before { - content: "\e92c"; -} -.icon-Frog:before { - content: "\e92d"; -} -.icon-Fruits:before { - content: "\e92e"; -} -.icon-Fuel:before { - content: "\e92f"; -} -.icon-Full-Bag:before { - content: "\e930"; -} -.icon-Full-Basket:before { - content: "\e931"; -} -.icon-Full-Cart:before { - content: "\e932"; -} -.icon-Full-Moon:before { - content: "\e933"; -} -.icon-Full-Screen:before { - content: "\e934"; -} -.icon-Full-Screen2:before { - content: "\e935"; -} -.icon-Full-View:before { - content: "\e936"; -} -.icon-Full-View2:before { - content: "\e937"; -} -.icon-Full-ViewWindow:before { - content: "\e938"; -} -.icon-Function:before { - content: "\e939"; -} -.icon-Funky:before { - content: "\e93a"; -} -.icon-Funny-Bicycle:before { - content: "\e93b"; -} -.icon-Furl:before { - content: "\e93c"; -} -.icon-Gamepad-2:before { - content: "\e93d"; -} -.icon-Gamepad:before { - content: "\e93e"; -} -.icon-Gas-Pump:before { - content: "\e93f"; -} -.icon-Gaugage-2:before { - content: "\e940"; -} -.icon-Gaugage:before { - content: "\e941"; -} -.icon-Gay:before { - content: "\e942"; -} -.icon-Gear-2:before { - content: "\e943"; -} -.icon-Gear:before { - content: "\e944"; -} -.icon-Gears-2:before { - content: "\e945"; -} -.icon-Gears:before { - content: "\e946"; -} -.icon-Geek-2:before { - content: "\e947"; -} -.icon-Geek:before { - content: "\e948"; -} -.icon-Gemini-2:before { - content: "\e949"; -} -.icon-Gemini:before { - content: "\e94a"; -} -.icon-Genius:before { - content: "\e94b"; -} -.icon-Gentleman:before { - content: "\e94c"; -} -.icon-Geo--:before { - content: "\e94d"; -} -.icon-Geo-:before { - content: "\e94e"; -} -.icon-Geo-Close:before { - content: "\e94f"; -} -.icon-Geo-Love:before { - content: "\e950"; -} -.icon-Geo-Number:before { - content: "\e951"; -} -.icon-Geo-Star:before { - content: "\e952"; -} -.icon-Geo:before { - content: "\e953"; -} -.icon-Geo2--:before { - content: "\e954"; -} -.icon-Geo2-:before { - content: "\e955"; -} -.icon-Geo2-Close:before { - content: "\e956"; -} -.icon-Geo2-Love:before { - content: "\e957"; -} -.icon-Geo2-Number:before { - content: "\e958"; -} -.icon-Geo2-Star:before { - content: "\e959"; -} -.icon-Geo2:before { - content: "\e95a"; -} -.icon-Geo3--:before { - content: "\e95b"; -} -.icon-Geo3-:before { - content: "\e95c"; -} -.icon-Geo3-Close:before { - content: "\e95d"; -} -.icon-Geo3-Love:before { - content: "\e95e"; -} -.icon-Geo3-Number:before { - content: "\e95f"; -} -.icon-Geo3-Star:before { - content: "\e960"; -} -.icon-Geo3:before { - content: "\e961"; -} -.icon-Gey:before { - content: "\e962"; -} -.icon-Gift-Box:before { - content: "\e963"; -} -.icon-Giraffe:before { - content: "\e964"; -} -.icon-Girl:before { - content: "\e965"; -} -.icon-Glass-Water:before { - content: "\e966"; -} -.icon-Glasses-2:before { - content: "\e967"; -} -.icon-Glasses-3:before { - content: "\e968"; -} -.icon-Glasses:before { - content: "\e969"; -} -.icon-Global-Position:before { - content: "\e96a"; -} -.icon-Globe-2:before { - content: "\e96b"; -} -.icon-Globe:before { - content: "\e96c"; -} -.icon-Gloves:before { - content: "\e96d"; -} -.icon-Go-Bottom:before { - content: "\e96e"; -} -.icon-Go-Top:before { - content: "\e96f"; -} -.icon-Goggles:before { - content: "\e970"; -} -.icon-Golf-2:before { - content: "\e971"; -} -.icon-Golf:before { - content: "\e972"; -} -.icon-Google-Buzz:before { - content: "\e973"; -} -.icon-Google-Drive:before { - content: "\e974"; -} -.icon-Google-Play:before { - content: "\e975"; -} -.icon-Google-Plus:before { - content: "\e976"; -} -.icon-Google:before { - content: "\e977"; -} -.icon-Gopro:before { - content: "\e978"; -} -.icon-Gorilla:before { - content: "\e979"; -} -.icon-Gowalla:before { - content: "\e97a"; -} -.icon-Grave:before { - content: "\e97b"; -} -.icon-Graveyard:before { - content: "\e97c"; -} -.icon-Greece:before { - content: "\e97d"; -} -.icon-Green-Energy:before { - content: "\e97e"; -} -.icon-Green-House:before { - content: "\e97f"; -} -.icon-Guitar:before { - content: "\e980"; -} -.icon-Gun-2:before { - content: "\e981"; -} -.icon-Gun-3:before { - content: "\e982"; -} -.icon-Gun:before { - content: "\e983"; -} -.icon-Gymnastics:before { - content: "\e984"; -} -.icon-Hair-2:before { - content: "\e985"; -} -.icon-Hair-3:before { - content: "\e986"; -} -.icon-Hair-4:before { - content: "\e987"; -} -.icon-Hair:before { - content: "\e988"; -} -.icon-Half-Moon:before { - content: "\e989"; -} -.icon-Halloween-HalfMoon:before { - content: "\e98a"; -} -.icon-Halloween-Moon:before { - content: "\e98b"; -} -.icon-Hamburger:before { - content: "\e98c"; -} -.icon-Hammer:before { - content: "\e98d"; -} -.icon-Hand-Touch:before { - content: "\e98e"; -} -.icon-Hand-Touch2:before { - content: "\e98f"; -} -.icon-Hand-TouchSmartphone:before { - content: "\e990"; -} -.icon-Hand:before { - content: "\e991"; -} -.icon-Hands:before { - content: "\e992"; -} -.icon-Handshake:before { - content: "\e993"; -} -.icon-Hanger:before { - content: "\e994"; -} -.icon-Happy:before { - content: "\e995"; -} -.icon-Hat-2:before { - content: "\e996"; -} -.icon-Hat:before { - content: "\e997"; -} -.icon-Haunted-House:before { - content: "\e998"; -} -.icon-HD-Video:before { - content: "\e999"; -} -.icon-HD:before { - content: "\e99a"; -} -.icon-HDD:before { - content: "\e99b"; -} -.icon-Headphone:before { - content: "\e99c"; -} -.icon-Headphones:before { - content: "\e99d"; -} -.icon-Headset:before { - content: "\e99e"; -} -.icon-Heart-2:before { - content: "\e99f"; -} -.icon-Heart:before { - content: "\e9a0"; -} -.icon-Heels-2:before { - content: "\e9a1"; -} -.icon-Heels:before { - content: "\e9a2"; -} -.icon-Height-Window:before { - content: "\e9a3"; -} -.icon-Helicopter-2:before { - content: "\e9a4"; -} -.icon-Helicopter:before { - content: "\e9a5"; -} -.icon-Helix-2:before { - content: "\e9a6"; -} -.icon-Hello:before { - content: "\e9a7"; -} -.icon-Helmet-2:before { - content: "\e9a8"; -} -.icon-Helmet-3:before { - content: "\e9a9"; -} -.icon-Helmet:before { - content: "\e9aa"; -} -.icon-Hipo:before { - content: "\e9ab"; -} -.icon-Hipster-Glasses:before { - content: "\e9ac"; -} -.icon-Hipster-Glasses2:before { - content: "\e9ad"; -} -.icon-Hipster-Glasses3:before { - content: "\e9ae"; -} -.icon-Hipster-Headphones:before { - content: "\e9af"; -} -.icon-Hipster-Men:before { - content: "\e9b0"; -} -.icon-Hipster-Men2:before { - content: "\e9b1"; -} -.icon-Hipster-Men3:before { - content: "\e9b2"; -} -.icon-Hipster-Sunglasses:before { - content: "\e9b3"; -} -.icon-Hipster-Sunglasses2:before { - content: "\e9b4"; -} -.icon-Hipster-Sunglasses3:before { - content: "\e9b5"; -} -.icon-Hokey:before { - content: "\e9b6"; -} -.icon-Holly:before { - content: "\e9b7"; -} -.icon-Home-2:before { - content: "\e9b8"; -} -.icon-Home-3:before { - content: "\e9b9"; -} -.icon-Home-4:before { - content: "\e9ba"; -} -.icon-Home-5:before { - content: "\e9bb"; -} -.icon-Home-Window:before { - content: "\e9bc"; -} -.icon-Home:before { - content: "\e9bd"; -} -.icon-Homosexual:before { - content: "\e9be"; -} -.icon-Honey:before { - content: "\e9bf"; -} -.icon-Hong-Kong:before { - content: "\e9c0"; -} -.icon-Hoodie:before { - content: "\e9c1"; -} -.icon-Horror:before { - content: "\e9c2"; -} -.icon-Horse:before { - content: "\e9c3"; -} -.icon-Hospital-2:before { - content: "\e9c4"; -} -.icon-Hospital:before { - content: "\e9c5"; -} -.icon-Host:before { - content: "\e9c6"; -} -.icon-Hot-Dog:before { - content: "\e9c7"; -} -.icon-Hotel:before { - content: "\e9c8"; -} -.icon-Hour:before { - content: "\e9c9"; -} -.icon-Hub:before { - content: "\e9ca"; -} -.icon-Humor:before { - content: "\e9cb"; -} -.icon-Hurt:before { - content: "\e9cc"; -} -.icon-Ice-Cream:before { - content: "\e9cd"; -} -.icon-ICQ:before { - content: "\e9ce"; -} -.icon-ID-2:before { - content: "\e9cf"; -} -.icon-ID-3:before { - content: "\e9d0"; -} -.icon-ID-Card:before { - content: "\e9d1"; -} -.icon-Idea-2:before { - content: "\e9d2"; -} -.icon-Idea-3:before { - content: "\e9d3"; -} -.icon-Idea-4:before { - content: "\e9d4"; -} -.icon-Idea-5:before { - content: "\e9d5"; -} -.icon-Idea:before { - content: "\e9d6"; -} -.icon-Identification-Badge:before { - content: "\e9d7"; -} -.icon-ImDB:before { - content: "\e9d8"; -} -.icon-Inbox-Empty:before { - content: "\e9d9"; -} -.icon-Inbox-Forward:before { - content: "\e9da"; -} -.icon-Inbox-Full:before { - content: "\e9db"; -} -.icon-Inbox-Into:before { - content: "\e9dc"; -} -.icon-Inbox-Out:before { - content: "\e9dd"; -} -.icon-Inbox-Reply:before { - content: "\e9de"; -} -.icon-Inbox:before { - content: "\e9df"; -} -.icon-Increase-Inedit:before { - content: "\e9e0"; -} -.icon-Indent-FirstLine:before { - content: "\e9e1"; -} -.icon-Indent-LeftMargin:before { - content: "\e9e2"; -} -.icon-Indent-RightMargin:before { - content: "\e9e3"; -} -.icon-India:before { - content: "\e9e4"; -} -.icon-Info-Window:before { - content: "\e9e5"; -} -.icon-Information:before { - content: "\e9e6"; -} -.icon-Inifity:before { - content: "\e9e7"; -} -.icon-Instagram:before { - content: "\e9e8"; -} -.icon-Internet-2:before { - content: "\e9e9"; -} -.icon-Internet-Explorer:before { - content: "\e9ea"; -} -.icon-Internet-Smiley:before { - content: "\e9eb"; -} -.icon-Internet:before { - content: "\e9ec"; -} -.icon-iOS-Apple:before { - content: "\e9ed"; -} -.icon-Israel:before { - content: "\e9ee"; -} -.icon-Italic-Text:before { - content: "\e9ef"; -} -.icon-Jacket-2:before { - content: "\e9f0"; -} -.icon-Jacket:before { - content: "\e9f1"; -} -.icon-Jamaica:before { - content: "\e9f2"; -} -.icon-Japan:before { - content: "\e9f3"; -} -.icon-Japanese-Gate:before { - content: "\e9f4"; -} -.icon-Jeans:before { - content: "\e9f5"; -} -.icon-Jeep-2:before { - content: "\e9f6"; -} -.icon-Jeep:before { - content: "\e9f7"; -} -.icon-Jet:before { - content: "\e9f8"; -} -.icon-Joystick:before { - content: "\e9f9"; -} -.icon-Juice:before { - content: "\e9fa"; -} -.icon-Jump-Rope:before { - content: "\e9fb"; -} -.icon-Kangoroo:before { - content: "\e9fc"; -} -.icon-Kenya:before { - content: "\e9fd"; -} -.icon-Key-2:before { - content: "\e9fe"; -} -.icon-Key-3:before { - content: "\e9ff"; -} -.icon-Key-Lock:before { - content: "\ea00"; -} -.icon-Key:before { - content: "\ea01"; -} -.icon-Keyboard:before { - content: "\ea02"; -} -.icon-Keyboard3:before { - content: "\ea03"; -} -.icon-Keypad:before { - content: "\ea04"; -} -.icon-King-2:before { - content: "\ea05"; -} -.icon-King:before { - content: "\ea06"; -} -.icon-Kiss:before { - content: "\ea07"; -} -.icon-Knee:before { - content: "\ea08"; -} -.icon-Knife-2:before { - content: "\ea09"; -} -.icon-Knife:before { - content: "\ea0a"; -} -.icon-Knight:before { - content: "\ea0b"; -} -.icon-Koala:before { - content: "\ea0c"; -} -.icon-Korea:before { - content: "\ea0d"; -} -.icon-Lamp:before { - content: "\ea0e"; -} -.icon-Landscape-2:before { - content: "\ea0f"; -} -.icon-Landscape:before { - content: "\ea10"; -} -.icon-Lantern:before { - content: "\ea11"; -} -.icon-Laptop-2:before { - content: "\ea12"; -} -.icon-Laptop-3:before { - content: "\ea13"; -} -.icon-Laptop-Phone:before { - content: "\ea14"; -} -.icon-Laptop-Secure:before { - content: "\ea15"; -} -.icon-Laptop-Tablet:before { - content: "\ea16"; -} -.icon-Laptop:before { - content: "\ea17"; -} -.icon-Laser:before { - content: "\ea18"; -} -.icon-Last-FM:before { - content: "\ea19"; -} -.icon-Last:before { - content: "\ea1a"; -} -.icon-Laughing:before { - content: "\ea1b"; -} -.icon-Layer-1635:before { - content: "\ea1c"; -} -.icon-Layer-1646:before { - content: "\ea1d"; -} -.icon-Layer-Backward:before { - content: "\ea1e"; -} -.icon-Layer-Forward:before { - content: "\ea1f"; -} -.icon-Leafs-2:before { - content: "\ea20"; -} -.icon-Leafs:before { - content: "\ea21"; -} -.icon-Leaning-Tower:before { - content: "\ea22"; -} -.icon-Left--Right:before { - content: "\ea23"; -} -.icon-Left--Right3:before { - content: "\ea24"; -} -.icon-Left-2:before { - content: "\ea25"; -} -.icon-Left-3:before { - content: "\ea26"; -} -.icon-Left-4:before { - content: "\ea27"; -} -.icon-Left-ToRight:before { - content: "\ea28"; -} -.icon-Left:before { - content: "\ea29"; -} -.icon-Leg-2:before { - content: "\ea2a"; -} -.icon-Leg:before { - content: "\ea2b"; -} -.icon-Lego:before { - content: "\ea2c"; -} -.icon-Lemon:before { - content: "\ea2d"; -} -.icon-Len-2:before { - content: "\ea2e"; -} -.icon-Len-3:before { - content: "\ea2f"; -} -.icon-Len:before { - content: "\ea30"; -} -.icon-Leo-2:before { - content: "\ea31"; -} -.icon-Leo:before { - content: "\ea32"; -} -.icon-Leopard:before { - content: "\ea33"; -} -.icon-Lesbian:before { - content: "\ea34"; -} -.icon-Lesbians:before { - content: "\ea35"; -} -.icon-Letter-Close:before { - content: "\ea36"; -} -.icon-Letter-Open:before { - content: "\ea37"; -} -.icon-Letter-Sent:before { - content: "\ea38"; -} -.icon-Libra-2:before { - content: "\ea39"; -} -.icon-Libra:before { - content: "\ea3a"; -} -.icon-Library-2:before { - content: "\ea3b"; -} -.icon-Library:before { - content: "\ea3c"; -} -.icon-Life-Jacket:before { - content: "\ea3d"; -} -.icon-Life-Safer:before { - content: "\ea3e"; -} -.icon-Light-Bulb:before { - content: "\ea3f"; -} -.icon-Light-Bulb2:before { - content: "\ea40"; -} -.icon-Light-BulbLeaf:before { - content: "\ea41"; -} -.icon-Lighthouse:before { - content: "\ea42"; -} -.icon-Like-2:before { - content: "\ea43"; -} -.icon-Like:before { - content: "\ea44"; -} -.icon-Line-Chart:before { - content: "\ea45"; -} -.icon-Line-Chart2:before { - content: "\ea46"; -} -.icon-Line-Chart3:before { - content: "\ea47"; -} -.icon-Line-Chart4:before { - content: "\ea48"; -} -.icon-Line-Spacing:before { - content: "\ea49"; -} -.icon-Line-SpacingText:before { - content: "\ea4a"; -} -.icon-Link-2:before { - content: "\ea4b"; -} -.icon-Link:before { - content: "\ea4c"; -} -.icon-Linkedin-2:before { - content: "\ea4d"; -} -.icon-Linkedin:before { - content: "\ea4e"; -} -.icon-Linux:before { - content: "\ea4f"; -} -.icon-Lion:before { - content: "\ea50"; -} -.icon-Livejournal:before { - content: "\ea51"; -} -.icon-Loading-2:before { - content: "\ea52"; -} -.icon-Loading-3:before { - content: "\ea53"; -} -.icon-Loading-Window:before { - content: "\ea54"; -} -.icon-Loading:before { - content: "\ea55"; -} -.icon-Location-2:before { - content: "\ea56"; -} -.icon-Location:before { - content: "\ea57"; -} -.icon-Lock-2:before { - content: "\ea58"; -} -.icon-Lock-3:before { - content: "\ea59"; -} -.icon-Lock-User:before { - content: "\ea5a"; -} -.icon-Lock-Window:before { - content: "\ea5b"; -} -.icon-Lock:before { - content: "\ea5c"; -} -.icon-Lollipop-2:before { - content: "\ea5d"; -} -.icon-Lollipop-3:before { - content: "\ea5e"; -} -.icon-Lollipop:before { - content: "\ea5f"; -} -.icon-Loop:before { - content: "\ea60"; -} -.icon-Loud:before { - content: "\ea61"; -} -.icon-Loudspeaker:before { - content: "\ea62"; -} -.icon-Love-2:before { - content: "\ea63"; -} -.icon-Love-User:before { - content: "\ea64"; -} -.icon-Love-Window:before { - content: "\ea65"; -} -.icon-Love:before { - content: "\ea66"; -} -.icon-Lowercase-Text:before { - content: "\ea67"; -} -.icon-Luggafe-Front:before { - content: "\ea68"; -} -.icon-Luggage-2:before { - content: "\ea69"; -} -.icon-Macro:before { - content: "\ea6a"; -} -.icon-Magic-Wand:before { - content: "\ea6b"; -} -.icon-Magnet:before { - content: "\ea6c"; -} -.icon-Magnifi-Glass-:before { - content: "\ea6d"; -} -.icon-Magnifi-Glass:before { - content: "\ea6e"; -} -.icon-Magnifi-Glass2:before { - content: "\ea6f"; -} -.icon-Mail-2:before { - content: "\ea70"; -} -.icon-Mail-3:before { - content: "\ea71"; -} -.icon-Mail-Add:before { - content: "\ea72"; -} -.icon-Mail-Attachement:before { - content: "\ea73"; -} -.icon-Mail-Block:before { - content: "\ea74"; -} -.icon-Mail-Delete:before { - content: "\ea75"; -} -.icon-Mail-Favorite:before { - content: "\ea76"; -} -.icon-Mail-Forward:before { - content: "\ea77"; -} -.icon-Mail-Gallery:before { - content: "\ea78"; -} -.icon-Mail-Inbox:before { - content: "\ea79"; -} -.icon-Mail-Link:before { - content: "\ea7a"; -} -.icon-Mail-Lock:before { - content: "\ea7b"; -} -.icon-Mail-Love:before { - content: "\ea7c"; -} -.icon-Mail-Money:before { - content: "\ea7d"; -} -.icon-Mail-Open:before { - content: "\ea7e"; -} -.icon-Mail-Outbox:before { - content: "\ea7f"; -} -.icon-Mail-Password:before { - content: "\ea80"; -} -.icon-Mail-Photo:before { - content: "\ea81"; -} -.icon-Mail-Read:before { - content: "\ea82"; -} -.icon-Mail-Removex:before { - content: "\ea83"; -} -.icon-Mail-Reply:before { - content: "\ea84"; -} -.icon-Mail-ReplyAll:before { - content: "\ea85"; -} -.icon-Mail-Search:before { - content: "\ea86"; -} -.icon-Mail-Send:before { - content: "\ea87"; -} -.icon-Mail-Settings:before { - content: "\ea88"; -} -.icon-Mail-Unread:before { - content: "\ea89"; -} -.icon-Mail-Video:before { - content: "\ea8a"; -} -.icon-Mail-withAtSign:before { - content: "\ea8b"; -} -.icon-Mail-WithCursors:before { - content: "\ea8c"; -} -.icon-Mail:before { - content: "\ea8d"; -} -.icon-Mailbox-Empty:before { - content: "\ea8e"; -} -.icon-Mailbox-Full:before { - content: "\ea8f"; -} -.icon-Male-2:before { - content: "\ea90"; -} -.icon-Male-Sign:before { - content: "\ea91"; -} -.icon-Male:before { - content: "\ea92"; -} -.icon-MaleFemale:before { - content: "\ea93"; -} -.icon-Man-Sign:before { - content: "\ea94"; -} -.icon-Management:before { - content: "\ea95"; -} -.icon-Mans-Underwear:before { - content: "\ea96"; -} -.icon-Mans-Underwear2:before { - content: "\ea97"; -} -.icon-Map-Marker:before { - content: "\ea98"; -} -.icon-Map-Marker2:before { - content: "\ea99"; -} -.icon-Map-Marker3:before { - content: "\ea9a"; -} -.icon-Map:before { - content: "\ea9b"; -} -.icon-Map2:before { - content: "\ea9c"; -} -.icon-Marker-2:before { - content: "\ea9d"; -} -.icon-Marker-3:before { - content: "\ea9e"; -} -.icon-Marker:before { - content: "\ea9f"; -} -.icon-Martini-Glass:before { - content: "\eaa0"; -} -.icon-Mask:before { - content: "\eaa1"; -} -.icon-Master-Card:before { - content: "\eaa2"; -} -.icon-Maximize-Window:before { - content: "\eaa3"; -} -.icon-Maximize:before { - content: "\eaa4"; -} -.icon-Medal-2:before { - content: "\eaa5"; -} -.icon-Medal-3:before { - content: "\eaa6"; -} -.icon-Medal:before { - content: "\eaa7"; -} -.icon-Medical-Sign:before { - content: "\eaa8"; -} -.icon-Medicine-2:before { - content: "\eaa9"; -} -.icon-Medicine-3:before { - content: "\eaaa"; -} -.icon-Medicine:before { - content: "\eaab"; -} -.icon-Megaphone:before { - content: "\eaac"; -} -.icon-Memory-Card:before { - content: "\eaad"; -} -.icon-Memory-Card2:before { - content: "\eaae"; -} -.icon-Memory-Card3:before { - content: "\eaaf"; -} -.icon-Men:before { - content: "\eab0"; -} -.icon-Menorah:before { - content: "\eab1"; -} -.icon-Mens:before { - content: "\eab2"; -} -.icon-Metacafe:before { - content: "\eab3"; -} -.icon-Mexico:before { - content: "\eab4"; -} -.icon-Mic:before { - content: "\eab5"; -} -.icon-Microphone-2:before { - content: "\eab6"; -} -.icon-Microphone-3:before { - content: "\eab7"; -} -.icon-Microphone-4:before { - content: "\eab8"; -} -.icon-Microphone-5:before { - content: "\eab9"; -} -.icon-Microphone-6:before { - content: "\eaba"; -} -.icon-Microphone-7:before { - content: "\eabb"; -} -.icon-Microphone:before { - content: "\eabc"; -} -.icon-Microscope:before { - content: "\eabd"; -} -.icon-Milk-Bottle:before { - content: "\eabe"; -} -.icon-Mine:before { - content: "\eabf"; -} -.icon-Minimize-Maximize-Close-Window:before { - content: "\eac0"; -} -.icon-Minimize-Window:before { - content: "\eac1"; -} -.icon-Minimize:before { - content: "\eac2"; -} -.icon-Mirror:before { - content: "\eac3"; -} -.icon-Mixer:before { - content: "\eac4"; -} -.icon-Mixx:before { - content: "\eac5"; -} -.icon-Money-2:before { - content: "\eac6"; -} -.icon-Money-Bag:before { - content: "\eac7"; -} -.icon-Money-Smiley:before { - content: "\eac8"; -} -.icon-Money:before { - content: "\eac9"; -} -.icon-Monitor-2:before { - content: "\eaca"; -} -.icon-Monitor-3:before { - content: "\eacb"; -} -.icon-Monitor-4:before { - content: "\eacc"; -} -.icon-Monitor-5:before { - content: "\eacd"; -} -.icon-Monitor-Analytics:before { - content: "\eace"; -} -.icon-Monitor-Laptop:before { - content: "\eacf"; -} -.icon-Monitor-phone:before { - content: "\ead0"; -} -.icon-Monitor-Tablet:before { - content: "\ead1"; -} -.icon-Monitor-Vertical:before { - content: "\ead2"; -} -.icon-Monitor:before { - content: "\ead3"; -} -.icon-Monitoring:before { - content: "\ead4"; -} -.icon-Monkey:before { - content: "\ead5"; -} -.icon-Monster:before { - content: "\ead6"; -} -.icon-Morocco:before { - content: "\ead7"; -} -.icon-Motorcycle:before { - content: "\ead8"; -} -.icon-Mouse-2:before { - content: "\ead9"; -} -.icon-Mouse-3:before { - content: "\eada"; -} -.icon-Mouse-4:before { - content: "\eadb"; -} -.icon-Mouse-Pointer:before { - content: "\eadc"; -} -.icon-Mouse:before { - content: "\eadd"; -} -.icon-Moustache-Smiley:before { - content: "\eade"; -} -.icon-Movie-Ticket:before { - content: "\eadf"; -} -.icon-Movie:before { - content: "\eae0"; -} -.icon-Mp3-File:before { - content: "\eae1"; -} -.icon-Museum:before { - content: "\eae2"; -} -.icon-Mushroom:before { - content: "\eae3"; -} -.icon-Music-Note:before { - content: "\eae4"; -} -.icon-Music-Note2:before { - content: "\eae5"; -} -.icon-Music-Note3:before { - content: "\eae6"; -} -.icon-Music-Note4:before { - content: "\eae7"; -} -.icon-Music-Player:before { - content: "\eae8"; -} -.icon-Mustache-2:before { - content: "\eae9"; -} -.icon-Mustache-3:before { - content: "\eaea"; -} -.icon-Mustache-4:before { - content: "\eaeb"; -} -.icon-Mustache-5:before { - content: "\eaec"; -} -.icon-Mustache-6:before { - content: "\eaed"; -} -.icon-Mustache-7:before { - content: "\eaee"; -} -.icon-Mustache-8:before { - content: "\eaef"; -} -.icon-Mustache:before { - content: "\eaf0"; -} -.icon-Mute:before { - content: "\eaf1"; -} -.icon-Myspace:before { - content: "\eaf2"; -} -.icon-Navigat-Start:before { - content: "\eaf3"; -} -.icon-Navigate-End:before { - content: "\eaf4"; -} -.icon-Navigation-LeftWindow:before { - content: "\eaf5"; -} -.icon-Navigation-RightWindow:before { - content: "\eaf6"; -} -.icon-Nepal:before { - content: "\eaf7"; -} -.icon-Netscape:before { - content: "\eaf8"; -} -.icon-Network-Window:before { - content: "\eaf9"; -} -.icon-Network:before { - content: "\eafa"; -} -.icon-Neutron:before { - content: "\eafb"; -} -.icon-New-Mail:before { - content: "\eafc"; -} -.icon-New-Tab:before { - content: "\eafd"; -} -.icon-Newspaper-2:before { - content: "\eafe"; -} -.icon-Newspaper:before { - content: "\eaff"; -} -.icon-Newsvine:before { - content: "\eb00"; -} -.icon-Next2:before { - content: "\eb01"; -} -.icon-Next-3:before { - content: "\eb02"; -} -.icon-Next-Music:before { - content: "\eb03"; -} -.icon-Next:before { - content: "\eb04"; -} -.icon-No-Battery:before { - content: "\eb05"; -} -.icon-No-Drop:before { - content: "\eb06"; -} -.icon-No-Flash:before { - content: "\eb07"; -} -.icon-No-Smoking:before { - content: "\eb08"; -} -.icon-Noose:before { - content: "\eb09"; -} -.icon-Normal-Text:before { - content: "\eb0a"; -} -.icon-Note:before { - content: "\eb0b"; -} -.icon-Notepad-2:before { - content: "\eb0c"; -} -.icon-Notepad:before { - content: "\eb0d"; -} -.icon-Nuclear:before { - content: "\eb0e"; -} -.icon-Numbering-List:before { - content: "\eb0f"; -} -.icon-Nurse:before { - content: "\eb10"; -} -.icon-Office-Lamp:before { - content: "\eb11"; -} -.icon-Office:before { - content: "\eb12"; -} -.icon-Oil:before { - content: "\eb13"; -} -.icon-Old-Camera:before { - content: "\eb14"; -} -.icon-Old-Cassette:before { - content: "\eb15"; -} -.icon-Old-Clock:before { - content: "\eb16"; -} -.icon-Old-Radio:before { - content: "\eb17"; -} -.icon-Old-Sticky:before { - content: "\eb18"; -} -.icon-Old-Sticky2:before { - content: "\eb19"; -} -.icon-Old-Telephone:before { - content: "\eb1a"; -} -.icon-Old-TV:before { - content: "\eb1b"; -} -.icon-On-Air:before { - content: "\eb1c"; -} -.icon-On-Off-2:before { - content: "\eb1d"; -} -.icon-On-Off-3:before { - content: "\eb1e"; -} -.icon-On-off:before { - content: "\eb1f"; -} -.icon-One-Finger:before { - content: "\eb20"; -} -.icon-One-FingerTouch:before { - content: "\eb21"; -} -.icon-One-Window:before { - content: "\eb22"; -} -.icon-Open-Banana:before { - content: "\eb23"; -} -.icon-Open-Book:before { - content: "\eb24"; -} -.icon-Opera-House:before { - content: "\eb25"; -} -.icon-Opera:before { - content: "\eb26"; -} -.icon-Optimization:before { - content: "\eb27"; -} -.icon-Orientation-2:before { - content: "\eb28"; -} -.icon-Orientation-3:before { - content: "\eb29"; -} -.icon-Orientation:before { - content: "\eb2a"; -} -.icon-Orkut:before { - content: "\eb2b"; -} -.icon-Ornament:before { - content: "\eb2c"; -} -.icon-Over-Time:before { - content: "\eb2d"; -} -.icon-Over-Time2:before { - content: "\eb2e"; -} -.icon-Owl:before { - content: "\eb2f"; -} -.icon-Pac-Man:before { - content: "\eb30"; -} -.icon-Paint-Brush:before { - content: "\eb31"; -} -.icon-Paint-Bucket:before { - content: "\eb32"; -} -.icon-Paintbrush:before { - content: "\eb33"; -} -.icon-Palette:before { - content: "\eb34"; -} -.icon-Palm-Tree:before { - content: "\eb35"; -} -.icon-Panda:before { - content: "\eb36"; -} -.icon-Panorama:before { - content: "\eb37"; -} -.icon-Pantheon:before { - content: "\eb38"; -} -.icon-Pantone:before { - content: "\eb39"; -} -.icon-Pants:before { - content: "\eb3a"; -} -.icon-Paper-Plane:before { - content: "\eb3b"; -} -.icon-Paper:before { - content: "\eb3c"; -} -.icon-Parasailing:before { - content: "\eb3d"; -} -.icon-Parrot:before { - content: "\eb3e"; -} -.icon-Password-2shopping:before { - content: "\eb3f"; -} -.icon-Password-Field:before { - content: "\eb40"; -} -.icon-Password-shopping:before { - content: "\eb41"; -} -.icon-Password:before { - content: "\eb42"; -} -.icon-pause-2:before { - content: "\eb43"; -} -.icon-Pause:before { - content: "\eb44"; -} -.icon-Paw:before { - content: "\eb45"; -} -.icon-Pawn:before { - content: "\eb46"; -} -.icon-Paypal:before { - content: "\eb47"; -} -.icon-Pen-2:before { - content: "\eb48"; -} -.icon-Pen-3:before { - content: "\eb49"; -} -.icon-Pen-4:before { - content: "\eb4a"; -} -.icon-Pen-5:before { - content: "\eb4b"; -} -.icon-Pen-6:before { - content: "\eb4c"; -} -.icon-Pen:before { - content: "\eb4d"; -} -.icon-Pencil-Ruler:before { - content: "\eb4e"; -} -.icon-Pencil:before { - content: "\eb4f"; -} -.icon-Penguin:before { - content: "\eb50"; -} -.icon-Pentagon:before { - content: "\eb51"; -} -.icon-People-onCloud:before { - content: "\eb52"; -} -.icon-Pepper-withFire:before { - content: "\eb53"; -} -.icon-Pepper:before { - content: "\eb54"; -} -.icon-Petrol:before { - content: "\eb55"; -} -.icon-Petronas-Tower:before { - content: "\eb56"; -} -.icon-Philipines:before { - content: "\eb57"; -} -.icon-Phone-2:before { - content: "\eb58"; -} -.icon-Phone-3:before { - content: "\eb59"; -} -.icon-Phone-3G:before { - content: "\eb5a"; -} -.icon-Phone-4G:before { - content: "\eb5b"; -} -.icon-Phone-Simcard:before { - content: "\eb5c"; -} -.icon-Phone-SMS:before { - content: "\eb5d"; -} -.icon-Phone-Wifi:before { - content: "\eb5e"; -} -.icon-Phone:before { - content: "\eb5f"; -} -.icon-Photo-2:before { - content: "\eb60"; -} -.icon-Photo-3:before { - content: "\eb61"; -} -.icon-Photo-Album:before { - content: "\eb62"; -} -.icon-Photo-Album2:before { - content: "\eb63"; -} -.icon-Photo-Album3:before { - content: "\eb64"; -} -.icon-Photo:before { - content: "\eb65"; -} -.icon-Photos:before { - content: "\eb66"; -} -.icon-Physics:before { - content: "\eb67"; -} -.icon-Pi:before { - content: "\eb68"; -} -.icon-Piano:before { - content: "\eb69"; -} -.icon-Picasa:before { - content: "\eb6a"; -} -.icon-Pie-Chart:before { - content: "\eb6b"; -} -.icon-Pie-Chart2:before { - content: "\eb6c"; -} -.icon-Pie-Chart3:before { - content: "\eb6d"; -} -.icon-Pilates-2:before { - content: "\eb6e"; -} -.icon-Pilates-3:before { - content: "\eb6f"; -} -.icon-Pilates:before { - content: "\eb70"; -} -.icon-Pilot:before { - content: "\eb71"; -} -.icon-Pinch:before { - content: "\eb72"; -} -.icon-Ping-Pong:before { - content: "\eb73"; -} -.icon-Pinterest:before { - content: "\eb74"; -} -.icon-Pipe:before { - content: "\eb75"; -} -.icon-Pipette:before { - content: "\eb76"; -} -.icon-Piramids:before { - content: "\eb77"; -} -.icon-Pisces-2:before { - content: "\eb78"; -} -.icon-Pisces:before { - content: "\eb79"; -} -.icon-Pizza-Slice:before { - content: "\eb7a"; -} -.icon-Pizza:before { - content: "\eb7b"; -} -.icon-Plane-2:before { - content: "\eb7c"; -} -.icon-Plane:before { - content: "\eb7d"; -} -.icon-Plant:before { - content: "\eb7e"; -} -.icon-Plasmid:before { - content: "\eb7f"; -} -.icon-Plaster:before { - content: "\eb80"; -} -.icon-Plastic-CupPhone:before { - content: "\eb81"; -} -.icon-Plastic-CupPhone2:before { - content: "\eb82"; -} -.icon-Plate:before { - content: "\eb83"; -} -.icon-Plates:before { - content: "\eb84"; -} -.icon-Plaxo:before { - content: "\eb85"; -} -.icon-Play-Music:before { - content: "\eb86"; -} -.icon-Plug-In:before { - content: "\eb87"; -} -.icon-Plug-In2:before { - content: "\eb88"; -} -.icon-Plurk:before { - content: "\eb89"; -} -.icon-Pointer:before { - content: "\eb8a"; -} -.icon-Poland:before { - content: "\eb8b"; -} -.icon-Police-Man:before { - content: "\eb8c"; -} -.icon-Police-Station:before { - content: "\eb8d"; -} -.icon-Police-Woman:before { - content: "\eb8e"; -} -.icon-Police:before { - content: "\eb8f"; -} -.icon-Polo-Shirt:before { - content: "\eb90"; -} -.icon-Portrait:before { - content: "\eb91"; -} -.icon-Portugal:before { - content: "\eb92"; -} -.icon-Post-Mail:before { - content: "\eb93"; -} -.icon-Post-Mail2:before { - content: "\eb94"; -} -.icon-Post-Office:before { - content: "\eb95"; -} -.icon-Post-Sign:before { - content: "\eb96"; -} -.icon-Post-Sign2ways:before { - content: "\eb97"; -} -.icon-Posterous:before { - content: "\eb98"; -} -.icon-Pound-Sign:before { - content: "\eb99"; -} -.icon-Pound-Sign2:before { - content: "\eb9a"; -} -.icon-Pound:before { - content: "\eb9b"; -} -.icon-Power-2:before { - content: "\eb9c"; -} -.icon-Power-3:before { - content: "\eb9d"; -} -.icon-Power-Cable:before { - content: "\eb9e"; -} -.icon-Power-Station:before { - content: "\eb9f"; -} -.icon-Power:before { - content: "\eba0"; -} -.icon-Prater:before { - content: "\eba1"; -} -.icon-Present:before { - content: "\eba2"; -} -.icon-Presents:before { - content: "\eba3"; -} -.icon-Press:before { - content: "\eba4"; -} -.icon-Preview:before { - content: "\eba5"; -} -.icon-Previous:before { - content: "\eba6"; -} -.icon-Pricing:before { - content: "\eba7"; -} -.icon-Printer:before { - content: "\eba8"; -} -.icon-Professor:before { - content: "\eba9"; -} -.icon-Profile:before { - content: "\ebaa"; -} -.icon-Project:before { - content: "\ebab"; -} -.icon-Projector-2:before { - content: "\ebac"; -} -.icon-Projector:before { - content: "\ebad"; -} -.icon-Pulse:before { - content: "\ebae"; -} -.icon-Pumpkin:before { - content: "\ebaf"; -} -.icon-Punk:before { - content: "\ebb0"; -} -.icon-Punker:before { - content: "\ebb1"; -} -.icon-Puzzle:before { - content: "\ebb2"; -} -.icon-QIK:before { - content: "\ebb3"; -} -.icon-QR-Code:before { - content: "\ebb4"; -} -.icon-Queen-2:before { - content: "\ebb5"; -} -.icon-Queen:before { - content: "\ebb6"; -} -.icon-Quill-2:before { - content: "\ebb7"; -} -.icon-Quill-3:before { - content: "\ebb8"; -} -.icon-Quill:before { - content: "\ebb9"; -} -.icon-Quotes-2:before { - content: "\ebba"; -} -.icon-Quotes:before { - content: "\ebbb"; -} -.icon-Radio:before { - content: "\ebbc"; -} -.icon-Radioactive:before { - content: "\ebbd"; -} -.icon-Rafting:before { - content: "\ebbe"; -} -.icon-Rain-Drop:before { - content: "\ebbf"; -} -.icon-Rainbow-2:before { - content: "\ebc0"; -} -.icon-Rainbow:before { - content: "\ebc1"; -} -.icon-Ram:before { - content: "\ebc2"; -} -.icon-Razzor-Blade:before { - content: "\ebc3"; -} -.icon-Receipt-2:before { - content: "\ebc4"; -} -.icon-Receipt-3:before { - content: "\ebc5"; -} -.icon-Receipt-4:before { - content: "\ebc6"; -} -.icon-Receipt:before { - content: "\ebc7"; -} -.icon-Record2:before { - content: "\ebc8"; -} -.icon-Record-3:before { - content: "\ebc9"; -} -.icon-Record-Music:before { - content: "\ebca"; -} -.icon-Record:before { - content: "\ebcb"; -} -.icon-Recycling-2:before { - content: "\ebcc"; -} -.icon-Recycling:before { - content: "\ebcd"; -} -.icon-Reddit:before { - content: "\ebce"; -} -.icon-Redhat:before { - content: "\ebcf"; -} -.icon-Redirect:before { - content: "\ebd0"; -} -.icon-Redo:before { - content: "\ebd1"; -} -.icon-Reel:before { - content: "\ebd2"; -} -.icon-Refinery:before { - content: "\ebd3"; -} -.icon-Refresh-Window:before { - content: "\ebd4"; -} -.icon-Refresh:before { - content: "\ebd5"; -} -.icon-Reload-2:before { - content: "\ebd6"; -} -.icon-Reload-3:before { - content: "\ebd7"; -} -.icon-Reload:before { - content: "\ebd8"; -} -.icon-Remote-Controll:before { - content: "\ebd9"; -} -.icon-Remote-Controll2:before { - content: "\ebda"; -} -.icon-Remove-Bag:before { - content: "\ebdb"; -} -.icon-Remove-Basket:before { - content: "\ebdc"; -} -.icon-Remove-Cart:before { - content: "\ebdd"; -} -.icon-Remove-File:before { - content: "\ebde"; -} -.icon-Remove-User:before { - content: "\ebdf"; -} -.icon-Remove-Window:before { - content: "\ebe0"; -} -.icon-Remove:before { - content: "\ebe1"; -} -.icon-Rename:before { - content: "\ebe2"; -} -.icon-Repair:before { - content: "\ebe3"; -} -.icon-Repeat-2:before { - content: "\ebe4"; -} -.icon-Repeat-3:before { - content: "\ebe5"; -} -.icon-Repeat-4:before { - content: "\ebe6"; -} -.icon-Repeat-5:before { - content: "\ebe7"; -} -.icon-Repeat-6:before { - content: "\ebe8"; -} -.icon-Repeat-7:before { - content: "\ebe9"; -} -.icon-Repeat:before { - content: "\ebea"; -} -.icon-Reset:before { - content: "\ebeb"; -} -.icon-Resize:before { - content: "\ebec"; -} -.icon-Restore-Window:before { - content: "\ebed"; -} -.icon-Retouching:before { - content: "\ebee"; -} -.icon-Retro-Camera:before { - content: "\ebef"; -} -.icon-Retro:before { - content: "\ebf0"; -} -.icon-Retweet:before { - content: "\ebf1"; -} -.icon-Reverbnation:before { - content: "\ebf2"; -} -.icon-Rewind:before { - content: "\ebf3"; -} -.icon-RGB:before { - content: "\ebf4"; -} -.icon-Ribbon-2:before { - content: "\ebf5"; -} -.icon-Ribbon-3:before { - content: "\ebf6"; -} -.icon-Ribbon:before { - content: "\ebf7"; -} -.icon-Right-2:before { - content: "\ebf8"; -} -.icon-Right-3:before { - content: "\ebf9"; -} -.icon-Right-4:before { - content: "\ebfa"; -} -.icon-Right-ToLeft:before { - content: "\ebfb"; -} -.icon-Right:before { - content: "\ebfc"; -} -.icon-Road-2:before { - content: "\ebfd"; -} -.icon-Road-3:before { - content: "\ebfe"; -} -.icon-Road:before { - content: "\ebff"; -} -.icon-Robot-2:before { - content: "\ec00"; -} -.icon-Robot:before { - content: "\ec01"; -} -.icon-Rock-andRoll:before { - content: "\ec02"; -} -.icon-Rocket:before { - content: "\ec03"; -} -.icon-Roller:before { - content: "\ec04"; -} -.icon-Roof:before { - content: "\ec05"; -} -.icon-Rook:before { - content: "\ec06"; -} -.icon-Rotate-Gesture:before { - content: "\ec07"; -} -.icon-Rotate-Gesture2:before { - content: "\ec08"; -} -.icon-Rotate-Gesture3:before { - content: "\ec09"; -} -.icon-Rotation-390:before { - content: "\ec0a"; -} -.icon-Rotation:before { - content: "\ec0b"; -} -.icon-Router-2:before { - content: "\ec0c"; -} -.icon-Router:before { - content: "\ec0d"; -} -.icon-RSS:before { - content: "\ec0e"; -} -.icon-Ruler-2:before { - content: "\ec0f"; -} -.icon-Ruler:before { - content: "\ec10"; -} -.icon-Running-Shoes:before { - content: "\ec11"; -} -.icon-Running:before { - content: "\ec12"; -} -.icon-Safari:before { - content: "\ec13"; -} -.icon-Safe-Box:before { - content: "\ec14"; -} -.icon-Safe-Box2:before { - content: "\ec15"; -} -.icon-Safety-PinClose:before { - content: "\ec16"; -} -.icon-Safety-PinOpen:before { - content: "\ec17"; -} -.icon-Sagittarus-2:before { - content: "\ec18"; -} -.icon-Sagittarus:before { - content: "\ec19"; -} -.icon-Sailing-Ship:before { - content: "\ec1a"; -} -.icon-Sand-watch:before { - content: "\ec1b"; -} -.icon-Sand-watch2:before { - content: "\ec1c"; -} -.icon-Santa-Claus:before { - content: "\ec1d"; -} -.icon-Santa-Claus2:before { - content: "\ec1e"; -} -.icon-Santa-onSled:before { - content: "\ec1f"; -} -.icon-Satelite-2:before { - content: "\ec20"; -} -.icon-Satelite:before { - content: "\ec21"; -} -.icon-Save-Window:before { - content: "\ec22"; -} -.icon-Save:before { - content: "\ec23"; -} -.icon-Saw:before { - content: "\ec24"; -} -.icon-Saxophone:before { - content: "\ec25"; -} -.icon-Scale:before { - content: "\ec26"; -} -.icon-Scarf:before { - content: "\ec27"; -} -.icon-Scissor:before { - content: "\ec28"; -} -.icon-Scooter-Front:before { - content: "\ec29"; -} -.icon-Scooter:before { - content: "\ec2a"; -} -.icon-Scorpio-2:before { - content: "\ec2b"; -} -.icon-Scorpio:before { - content: "\ec2c"; -} -.icon-Scotland:before { - content: "\ec2d"; -} -.icon-Screwdriver:before { - content: "\ec2e"; -} -.icon-Scroll-Fast:before { - content: "\ec2f"; -} -.icon-Scroll:before { - content: "\ec30"; -} -.icon-Scroller-2:before { - content: "\ec31"; -} -.icon-Scroller:before { - content: "\ec32"; -} -.icon-Sea-Dog:before { - content: "\ec33"; -} -.icon-Search-onCloud:before { - content: "\ec34"; -} -.icon-Search-People:before { - content: "\ec35"; -} -.icon-secound:before { - content: "\ec36"; -} -.icon-secound2:before { - content: "\ec37"; -} -.icon-Security-Block:before { - content: "\ec38"; -} -.icon-Security-Bug:before { - content: "\ec39"; -} -.icon-Security-Camera:before { - content: "\ec3a"; -} -.icon-Security-Check:before { - content: "\ec3b"; -} -.icon-Security-Settings:before { - content: "\ec3c"; -} -.icon-Security-Smiley:before { - content: "\ec3d"; -} -.icon-Securiy-Remove:before { - content: "\ec3e"; -} -.icon-Seed:before { - content: "\ec3f"; -} -.icon-Selfie:before { - content: "\ec40"; -} -.icon-Serbia:before { - content: "\ec41"; -} -.icon-Server-2:before { - content: "\ec42"; -} -.icon-Server:before { - content: "\ec43"; -} -.icon-Servers:before { - content: "\ec44"; -} -.icon-Settings-Window:before { - content: "\ec45"; -} -.icon-Sewing-Machine:before { - content: "\ec46"; -} -.icon-Sexual:before { - content: "\ec47"; -} -.icon-Share-onCloud:before { - content: "\ec48"; -} -.icon-Share-Window:before { - content: "\ec49"; -} -.icon-Share:before { - content: "\ec4a"; -} -.icon-Sharethis:before { - content: "\ec4b"; -} -.icon-Shark:before { - content: "\ec4c"; -} -.icon-Sheep:before { - content: "\ec4d"; -} -.icon-Sheriff-Badge:before { - content: "\ec4e"; -} -.icon-Shield:before { - content: "\ec4f"; -} -.icon-Ship-2:before { - content: "\ec50"; -} -.icon-Ship:before { - content: "\ec51"; -} -.icon-Shirt:before { - content: "\ec52"; -} -.icon-Shoes-2:before { - content: "\ec53"; -} -.icon-Shoes-3:before { - content: "\ec54"; -} -.icon-Shoes:before { - content: "\ec55"; -} -.icon-Shop-2:before { - content: "\ec56"; -} -.icon-Shop-3:before { - content: "\ec57"; -} -.icon-Shop-4:before { - content: "\ec58"; -} -.icon-Shop:before { - content: "\ec59"; -} -.icon-Shopping-Bag:before { - content: "\ec5a"; -} -.icon-Shopping-Basket:before { - content: "\ec5b"; -} -.icon-Shopping-Cart:before { - content: "\ec5c"; -} -.icon-Short-Pants:before { - content: "\ec5d"; -} -.icon-Shoutwire:before { - content: "\ec5e"; -} -.icon-Shovel:before { - content: "\ec5f"; -} -.icon-Shuffle-2:before { - content: "\ec60"; -} -.icon-Shuffle-3:before { - content: "\ec61"; -} -.icon-Shuffle-4:before { - content: "\ec62"; -} -.icon-Shuffle:before { - content: "\ec63"; -} -.icon-Shutter:before { - content: "\ec64"; -} -.icon-Sidebar-Window:before { - content: "\ec65"; -} -.icon-Signal:before { - content: "\ec66"; -} -.icon-Singapore:before { - content: "\ec67"; -} -.icon-Skate-Shoes:before { - content: "\ec68"; -} -.icon-Skateboard-2:before { - content: "\ec69"; -} -.icon-Skateboard:before { - content: "\ec6a"; -} -.icon-Skeleton:before { - content: "\ec6b"; -} -.icon-Ski:before { - content: "\ec6c"; -} -.icon-Skirt:before { - content: "\ec6d"; -} -.icon-Skrill:before { - content: "\ec6e"; -} -.icon-Skull:before { - content: "\ec6f"; -} -.icon-Skydiving:before { - content: "\ec70"; -} -.icon-Skype:before { - content: "\ec71"; -} -.icon-Sled-withGifts:before { - content: "\ec72"; -} -.icon-Sled:before { - content: "\ec73"; -} -.icon-Sleeping:before { - content: "\ec74"; -} -.icon-Sleet:before { - content: "\ec75"; -} -.icon-Slippers:before { - content: "\ec76"; -} -.icon-Smart:before { - content: "\ec77"; -} -.icon-Smartphone-2:before { - content: "\ec78"; -} -.icon-Smartphone-3:before { - content: "\ec79"; -} -.icon-Smartphone-4:before { - content: "\ec7a"; -} -.icon-Smartphone-Secure:before { - content: "\ec7b"; -} -.icon-Smartphone:before { - content: "\ec7c"; -} -.icon-Smile:before { - content: "\ec7d"; -} -.icon-Smoking-Area:before { - content: "\ec7e"; -} -.icon-Smoking-Pipe:before { - content: "\ec7f"; -} -.icon-Snake:before { - content: "\ec80"; -} -.icon-Snorkel:before { - content: "\ec81"; -} -.icon-Snow-2:before { - content: "\ec82"; -} -.icon-Snow-Dome:before { - content: "\ec83"; -} -.icon-Snow-Storm:before { - content: "\ec84"; -} -.icon-Snow:before { - content: "\ec85"; -} -.icon-Snowflake-2:before { - content: "\ec86"; -} -.icon-Snowflake-3:before { - content: "\ec87"; -} -.icon-Snowflake-4:before { - content: "\ec88"; -} -.icon-Snowflake:before { - content: "\ec89"; -} -.icon-Snowman:before { - content: "\ec8a"; -} -.icon-Soccer-Ball:before { - content: "\ec8b"; -} -.icon-Soccer-Shoes:before { - content: "\ec8c"; -} -.icon-Socks:before { - content: "\ec8d"; -} -.icon-Solar:before { - content: "\ec8e"; -} -.icon-Sound-Wave:before { - content: "\ec8f"; -} -.icon-Sound:before { - content: "\ec90"; -} -.icon-Soundcloud:before { - content: "\ec91"; -} -.icon-Soup:before { - content: "\ec92"; -} -.icon-South-Africa:before { - content: "\ec93"; -} -.icon-Space-Needle:before { - content: "\ec94"; -} -.icon-Spain:before { - content: "\ec95"; -} -.icon-Spam-Mail:before { - content: "\ec96"; -} -.icon-Speach-Bubble:before { - content: "\ec97"; -} -.icon-Speach-Bubble2:before { - content: "\ec98"; -} -.icon-Speach-Bubble3:before { - content: "\ec99"; -} -.icon-Speach-Bubble4:before { - content: "\ec9a"; -} -.icon-Speach-Bubble5:before { - content: "\ec9b"; -} -.icon-Speach-Bubble6:before { - content: "\ec9c"; -} -.icon-Speach-Bubble7:before { - content: "\ec9d"; -} -.icon-Speach-Bubble8:before { - content: "\ec9e"; -} -.icon-Speach-Bubble9:before { - content: "\ec9f"; -} -.icon-Speach-Bubble10:before { - content: "\eca0"; -} -.icon-Speach-Bubble11:before { - content: "\eca1"; -} -.icon-Speach-Bubble12:before { - content: "\eca2"; -} -.icon-Speach-Bubble13:before { - content: "\eca3"; -} -.icon-Speach-BubbleAsking:before { - content: "\eca4"; -} -.icon-Speach-BubbleComic:before { - content: "\eca5"; -} -.icon-Speach-BubbleComic2:before { - content: "\eca6"; -} -.icon-Speach-BubbleComic3:before { - content: "\eca7"; -} -.icon-Speach-BubbleComic4:before { - content: "\eca8"; -} -.icon-Speach-BubbleDialog:before { - content: "\eca9"; -} -.icon-Speach-Bubbles:before { - content: "\ecaa"; -} -.icon-Speak-2:before { - content: "\ecab"; -} -.icon-Speak:before { - content: "\ecac"; -} -.icon-Speaker-2:before { - content: "\ecad"; -} -.icon-Speaker:before { - content: "\ecae"; -} -.icon-Spell-Check:before { - content: "\ecaf"; -} -.icon-Spell-CheckABC:before { - content: "\ecb0"; -} -.icon-Spermium:before { - content: "\ecb1"; -} -.icon-Spider:before { - content: "\ecb2"; -} -.icon-Spiderweb:before { - content: "\ecb3"; -} -.icon-Split-FourSquareWindow:before { - content: "\ecb4"; -} -.icon-Split-Horizontal:before { - content: "\ecb5"; -} -.icon-Split-Horizontal2Window:before { - content: "\ecb6"; -} -.icon-Split-Vertical:before { - content: "\ecb7"; -} -.icon-Split-Vertical2:before { - content: "\ecb8"; -} -.icon-Split-Window:before { - content: "\ecb9"; -} -.icon-Spoder:before { - content: "\ecba"; -} -.icon-Spoon:before { - content: "\ecbb"; -} -.icon-Sport-Mode:before { - content: "\ecbc"; -} -.icon-Sports-Clothings1:before { - content: "\ecbd"; -} -.icon-Sports-Clothings2:before { - content: "\ecbe"; -} -.icon-Sports-Shirt:before { - content: "\ecbf"; -} -.icon-Spot:before { - content: "\ecc0"; -} -.icon-Spray:before { - content: "\ecc1"; -} -.icon-Spread:before { - content: "\ecc2"; -} -.icon-Spring:before { - content: "\ecc3"; -} -.icon-Spurl:before { - content: "\ecc4"; -} -.icon-Spy:before { - content: "\ecc5"; -} -.icon-Squirrel:before { - content: "\ecc6"; -} -.icon-SSL:before { - content: "\ecc7"; -} -.icon-St-BasilsCathedral:before { - content: "\ecc8"; -} -.icon-St-PaulsCathedral:before { - content: "\ecc9"; -} -.icon-Stamp-2:before { - content: "\ecca"; -} -.icon-Stamp:before { - content: "\eccb"; -} -.icon-Stapler:before { - content: "\eccc"; -} -.icon-Star-Track:before { - content: "\eccd"; -} -.icon-Star:before { - content: "\ecce"; -} -.icon-Starfish:before { - content: "\eccf"; -} -.icon-Start2:before { - content: "\ecd0"; -} -.icon-Start-3:before { - content: "\ecd1"; -} -.icon-Start-ways:before { - content: "\ecd2"; -} -.icon-Start:before { - content: "\ecd3"; -} -.icon-Statistic:before { - content: "\ecd4"; -} -.icon-Stethoscope:before { - content: "\ecd5"; -} -.icon-stop--2:before { - content: "\ecd6"; -} -.icon-Stop-Music:before { - content: "\ecd7"; -} -.icon-Stop:before { - content: "\ecd8"; -} -.icon-Stopwatch-2:before { - content: "\ecd9"; -} -.icon-Stopwatch:before { - content: "\ecda"; -} -.icon-Storm:before { - content: "\ecdb"; -} -.icon-Street-View:before { - content: "\ecdc"; -} -.icon-Street-View2:before { - content: "\ecdd"; -} -.icon-Strikethrough-Text:before { - content: "\ecde"; -} -.icon-Stroller:before { - content: "\ecdf"; -} -.icon-Structure:before { - content: "\ece0"; -} -.icon-Student-Female:before { - content: "\ece1"; -} -.icon-Student-Hat:before { - content: "\ece2"; -} -.icon-Student-Hat2:before { - content: "\ece3"; -} -.icon-Student-Male:before { - content: "\ece4"; -} -.icon-Student-MaleFemale:before { - content: "\ece5"; -} -.icon-Students:before { - content: "\ece6"; -} -.icon-Studio-Flash:before { - content: "\ece7"; -} -.icon-Studio-Lightbox:before { - content: "\ece8"; -} -.icon-Stumbleupon:before { - content: "\ece9"; -} -.icon-Suit:before { - content: "\ecea"; -} -.icon-Suitcase:before { - content: "\eceb"; -} -.icon-Sum-2:before { - content: "\ecec"; -} -.icon-Sum:before { - content: "\eced"; -} -.icon-Summer:before { - content: "\ecee"; -} -.icon-Sun-CloudyRain:before { - content: "\ecef"; -} -.icon-Sun:before { - content: "\ecf0"; -} -.icon-Sunglasses-2:before { - content: "\ecf1"; -} -.icon-Sunglasses-3:before { - content: "\ecf2"; -} -.icon-Sunglasses-Smiley:before { - content: "\ecf3"; -} -.icon-Sunglasses-Smiley2:before { - content: "\ecf4"; -} -.icon-Sunglasses-W:before { - content: "\ecf5"; -} -.icon-Sunglasses-W2:before { - content: "\ecf6"; -} -.icon-Sunglasses-W3:before { - content: "\ecf7"; -} -.icon-Sunglasses:before { - content: "\ecf8"; -} -.icon-Sunrise:before { - content: "\ecf9"; -} -.icon-Sunset:before { - content: "\ecfa"; -} -.icon-Superman:before { - content: "\ecfb"; -} -.icon-Support:before { - content: "\ecfc"; -} -.icon-Surprise:before { - content: "\ecfd"; -} -.icon-Sushi:before { - content: "\ecfe"; -} -.icon-Sweden:before { - content: "\ecff"; -} -.icon-Swimming-Short:before { - content: "\ed00"; -} -.icon-Swimming:before { - content: "\ed01"; -} -.icon-Swimmwear:before { - content: "\ed02"; -} -.icon-Switch:before { - content: "\ed03"; -} -.icon-Switzerland:before { - content: "\ed04"; -} -.icon-Sync-Cloud:before { - content: "\ed05"; -} -.icon-Sync:before { - content: "\ed06"; -} -.icon-Synchronize-2:before { - content: "\ed07"; -} -.icon-Synchronize:before { - content: "\ed08"; -} -.icon-T-Shirt:before { - content: "\ed09"; -} -.icon-Tablet-2:before { - content: "\ed0a"; -} -.icon-Tablet-3:before { - content: "\ed0b"; -} -.icon-Tablet-Orientation:before { - content: "\ed0c"; -} -.icon-Tablet-Phone:before { - content: "\ed0d"; -} -.icon-Tablet-Secure:before { - content: "\ed0e"; -} -.icon-Tablet-Vertical:before { - content: "\ed0f"; -} -.icon-Tablet:before { - content: "\ed10"; -} -.icon-Tactic:before { - content: "\ed11"; -} -.icon-Tag-2:before { - content: "\ed12"; -} -.icon-Tag-3:before { - content: "\ed13"; -} -.icon-Tag-4:before { - content: "\ed14"; -} -.icon-Tag-5:before { - content: "\ed15"; -} -.icon-Tag:before { - content: "\ed16"; -} -.icon-Taj-Mahal:before { - content: "\ed17"; -} -.icon-Talk-Man:before { - content: "\ed18"; -} -.icon-Tap:before { - content: "\ed19"; -} -.icon-Target-Market:before { - content: "\ed1a"; -} -.icon-Target:before { - content: "\ed1b"; -} -.icon-Taurus-2:before { - content: "\ed1c"; -} -.icon-Taurus:before { - content: "\ed1d"; -} -.icon-Taxi-2:before { - content: "\ed1e"; -} -.icon-Taxi-Sign:before { - content: "\ed1f"; -} -.icon-Taxi:before { - content: "\ed20"; -} -.icon-Teacher:before { - content: "\ed21"; -} -.icon-Teapot:before { - content: "\ed22"; -} -.icon-Technorati:before { - content: "\ed23"; -} -.icon-Teddy-Bear:before { - content: "\ed24"; -} -.icon-Tee-Mug:before { - content: "\ed25"; -} -.icon-Telephone-2:before { - content: "\ed26"; -} -.icon-Telephone:before { - content: "\ed27"; -} -.icon-Telescope:before { - content: "\ed28"; -} -.icon-Temperature-2:before { - content: "\ed29"; -} -.icon-Temperature-3:before { - content: "\ed2a"; -} -.icon-Temperature:before { - content: "\ed2b"; -} -.icon-Temple:before { - content: "\ed2c"; -} -.icon-Tennis-Ball:before { - content: "\ed2d"; -} -.icon-Tennis:before { - content: "\ed2e"; -} -.icon-Tent:before { - content: "\ed2f"; -} -.icon-Test-Tube:before { - content: "\ed30"; -} -.icon-Test-Tube2:before { - content: "\ed31"; -} -.icon-Testimonal:before { - content: "\ed32"; -} -.icon-Text-Box:before { - content: "\ed33"; -} -.icon-Text-Effect:before { - content: "\ed34"; -} -.icon-Text-HighlightColor:before { - content: "\ed35"; -} -.icon-Text-Paragraph:before { - content: "\ed36"; -} -.icon-Thailand:before { - content: "\ed37"; -} -.icon-The-WhiteHouse:before { - content: "\ed38"; -} -.icon-This-SideUp:before { - content: "\ed39"; -} -.icon-Thread:before { - content: "\ed3a"; -} -.icon-Three-ArrowFork:before { - content: "\ed3b"; -} -.icon-Three-Fingers:before { - content: "\ed3c"; -} -.icon-Three-FingersDrag:before { - content: "\ed3d"; -} -.icon-Three-FingersDrag2:before { - content: "\ed3e"; -} -.icon-Three-FingersTouch:before { - content: "\ed3f"; -} -.icon-Thumb:before { - content: "\ed40"; -} -.icon-Thumbs-DownSmiley:before { - content: "\ed41"; -} -.icon-Thumbs-UpSmiley:before { - content: "\ed42"; -} -.icon-Thunder:before { - content: "\ed43"; -} -.icon-Thunderstorm:before { - content: "\ed44"; -} -.icon-Ticket:before { - content: "\ed45"; -} -.icon-Tie-2:before { - content: "\ed46"; -} -.icon-Tie-3:before { - content: "\ed47"; -} -.icon-Tie-4:before { - content: "\ed48"; -} -.icon-Tie:before { - content: "\ed49"; -} -.icon-Tiger:before { - content: "\ed4a"; -} -.icon-Time-Backup:before { - content: "\ed4b"; -} -.icon-Time-Bomb:before { - content: "\ed4c"; -} -.icon-Time-Clock:before { - content: "\ed4d"; -} -.icon-Time-Fire:before { - content: "\ed4e"; -} -.icon-Time-Machine:before { - content: "\ed4f"; -} -.icon-Time-Window:before { - content: "\ed50"; -} -.icon-Timer-2:before { - content: "\ed51"; -} -.icon-Timer:before { - content: "\ed52"; -} -.icon-To-Bottom:before { - content: "\ed53"; -} -.icon-To-Bottom2:before { - content: "\ed54"; -} -.icon-To-Left:before { - content: "\ed55"; -} -.icon-To-Right:before { - content: "\ed56"; -} -.icon-To-Top:before { - content: "\ed57"; -} -.icon-To-Top2:before { - content: "\ed58"; -} -.icon-Token-:before { - content: "\ed59"; -} -.icon-Tomato:before { - content: "\ed5a"; -} -.icon-Tongue:before { - content: "\ed5b"; -} -.icon-Tooth-2:before { - content: "\ed5c"; -} -.icon-Tooth:before { - content: "\ed5d"; -} -.icon-Top-ToBottom:before { - content: "\ed5e"; -} -.icon-Touch-Window:before { - content: "\ed5f"; -} -.icon-Tourch:before { - content: "\ed60"; -} -.icon-Tower-2:before { - content: "\ed61"; -} -.icon-Tower-Bridge:before { - content: "\ed62"; -} -.icon-Tower:before { - content: "\ed63"; -} -.icon-Trace:before { - content: "\ed64"; -} -.icon-Tractor:before { - content: "\ed65"; -} -.icon-traffic-Light:before { - content: "\ed66"; -} -.icon-Traffic-Light2:before { - content: "\ed67"; -} -.icon-Train-2:before { - content: "\ed68"; -} -.icon-Train:before { - content: "\ed69"; -} -.icon-Tram:before { - content: "\ed6a"; -} -.icon-Transform-2:before { - content: "\ed6b"; -} -.icon-Transform-3:before { - content: "\ed6c"; -} -.icon-Transform-4:before { - content: "\ed6d"; -} -.icon-Transform:before { - content: "\ed6e"; -} -.icon-Trash-withMen:before { - content: "\ed6f"; -} -.icon-Tree-2:before { - content: "\ed70"; -} -.icon-Tree-3:before { - content: "\ed71"; -} -.icon-Tree-4:before { - content: "\ed72"; -} -.icon-Tree-5:before { - content: "\ed73"; -} -.icon-Tree:before { - content: "\ed74"; -} -.icon-Trekking:before { - content: "\ed75"; -} -.icon-Triangle-ArrowDown:before { - content: "\ed76"; -} -.icon-Triangle-ArrowLeft:before { - content: "\ed77"; -} -.icon-Triangle-ArrowRight:before { - content: "\ed78"; -} -.icon-Triangle-ArrowUp:before { - content: "\ed79"; -} -.icon-Tripod-2:before { - content: "\ed7a"; -} -.icon-Tripod-andVideo:before { - content: "\ed7b"; -} -.icon-Tripod-withCamera:before { - content: "\ed7c"; -} -.icon-Tripod-withGopro:before { - content: "\ed7d"; -} -.icon-Trophy-2:before { - content: "\ed7e"; -} -.icon-Trophy:before { - content: "\ed7f"; -} -.icon-Truck:before { - content: "\ed80"; -} -.icon-Trumpet:before { - content: "\ed81"; -} -.icon-Tumblr:before { - content: "\ed82"; -} -.icon-Turkey:before { - content: "\ed83"; -} -.icon-Turn-Down:before { - content: "\ed84"; -} -.icon-Turn-Down2:before { - content: "\ed85"; -} -.icon-Turn-DownFromLeft:before { - content: "\ed86"; -} -.icon-Turn-DownFromRight:before { - content: "\ed87"; -} -.icon-Turn-Left:before { - content: "\ed88"; -} -.icon-Turn-Left3:before { - content: "\ed89"; -} -.icon-Turn-Right:before { - content: "\ed8a"; -} -.icon-Turn-Right3:before { - content: "\ed8b"; -} -.icon-Turn-Up:before { - content: "\ed8c"; -} -.icon-Turn-Up2:before { - content: "\ed8d"; -} -.icon-Turtle:before { - content: "\ed8e"; -} -.icon-Tuxedo:before { - content: "\ed8f"; -} -.icon-TV:before { - content: "\ed90"; -} -.icon-Twister:before { - content: "\ed91"; -} -.icon-Twitter-2:before { - content: "\ed92"; -} -.icon-Twitter:before { - content: "\ed93"; -} -.icon-Two-Fingers:before { - content: "\ed94"; -} -.icon-Two-FingersDrag:before { - content: "\ed95"; -} -.icon-Two-FingersDrag2:before { - content: "\ed96"; -} -.icon-Two-FingersScroll:before { - content: "\ed97"; -} -.icon-Two-FingersTouch:before { - content: "\ed98"; -} -.icon-Two-Windows:before { - content: "\ed99"; -} -.icon-Type-Pass:before { - content: "\ed9a"; -} -.icon-Ukraine:before { - content: "\ed9b"; -} -.icon-Umbrela:before { - content: "\ed9c"; -} -.icon-Umbrella-2:before { - content: "\ed9d"; -} -.icon-Umbrella-3:before { - content: "\ed9e"; -} -.icon-Under-LineText:before { - content: "\ed9f"; -} -.icon-Undo:before { - content: "\eda0"; -} -.icon-United-Kingdom:before { - content: "\eda1"; -} -.icon-United-States:before { - content: "\eda2"; -} -.icon-University-2:before { - content: "\eda3"; -} -.icon-University:before { - content: "\eda4"; -} -.icon-Unlike-2:before { - content: "\eda5"; -} -.icon-Unlike:before { - content: "\eda6"; -} -.icon-Unlock-2:before { - content: "\eda7"; -} -.icon-Unlock-3:before { - content: "\eda8"; -} -.icon-Unlock:before { - content: "\eda9"; -} -.icon-Up--Down:before { - content: "\edaa"; -} -.icon-Up--Down3:before { - content: "\edab"; -} -.icon-Up-2:before { - content: "\edac"; -} -.icon-Up-3:before { - content: "\edad"; -} -.icon-Up-4:before { - content: "\edae"; -} -.icon-Up:before { - content: "\edaf"; -} -.icon-Upgrade:before { - content: "\edb0"; -} -.icon-Upload-2:before { - content: "\edb1"; -} -.icon-Upload-toCloud:before { - content: "\edb2"; -} -.icon-Upload-Window:before { - content: "\edb3"; -} -.icon-Upload:before { - content: "\edb4"; -} -.icon-Uppercase-Text:before { - content: "\edb5"; -} -.icon-Upward:before { - content: "\edb6"; -} -.icon-URL-Window:before { - content: "\edb7"; -} -.icon-Usb-2:before { - content: "\edb8"; -} -.icon-Usb-Cable:before { - content: "\edb9"; -} -.icon-Usb:before { - content: "\edba"; -} -.icon-User:before { - content: "\edbb"; -} -.icon-Ustream:before { - content: "\edbc"; -} -.icon-Vase:before { - content: "\edbd"; -} -.icon-Vector-2:before { - content: "\edbe"; -} -.icon-Vector-3:before { - content: "\edbf"; -} -.icon-Vector-4:before { - content: "\edc0"; -} -.icon-Vector-5:before { - content: "\edc1"; -} -.icon-Vector:before { - content: "\edc2"; -} -.icon-Venn-Diagram:before { - content: "\edc3"; -} -.icon-Vest-2:before { - content: "\edc4"; -} -.icon-Vest:before { - content: "\edc5"; -} -.icon-Viddler:before { - content: "\edc6"; -} -.icon-Video-2:before { - content: "\edc7"; -} -.icon-Video-3:before { - content: "\edc8"; -} -.icon-Video-4:before { - content: "\edc9"; -} -.icon-Video-5:before { - content: "\edca"; -} -.icon-Video-6:before { - content: "\edcb"; -} -.icon-Video-GameController:before { - content: "\edcc"; -} -.icon-Video-Len:before { - content: "\edcd"; -} -.icon-Video-Len2:before { - content: "\edce"; -} -.icon-Video-Photographer:before { - content: "\edcf"; -} -.icon-Video-Tripod:before { - content: "\edd0"; -} -.icon-Video:before { - content: "\edd1"; -} -.icon-Vietnam:before { - content: "\edd2"; -} -.icon-View-Height:before { - content: "\edd3"; -} -.icon-View-Width:before { - content: "\edd4"; -} -.icon-Vimeo:before { - content: "\edd5"; -} -.icon-Virgo-2:before { - content: "\edd6"; -} -.icon-Virgo:before { - content: "\edd7"; -} -.icon-Virus-2:before { - content: "\edd8"; -} -.icon-Virus-3:before { - content: "\edd9"; -} -.icon-Virus:before { - content: "\edda"; -} -.icon-Visa:before { - content: "\eddb"; -} -.icon-Voice:before { - content: "\eddc"; -} -.icon-Voicemail:before { - content: "\eddd"; -} -.icon-Volleyball:before { - content: "\edde"; -} -.icon-Volume-Down:before { - content: "\eddf"; -} -.icon-Volume-Up:before { - content: "\ede0"; -} -.icon-VPN:before { - content: "\ede1"; -} -.icon-Wacom-Tablet:before { - content: "\ede2"; -} -.icon-Waiter:before { - content: "\ede3"; -} -.icon-Walkie-Talkie:before { - content: "\ede4"; -} -.icon-Wallet-2:before { - content: "\ede5"; -} -.icon-Wallet-3:before { - content: "\ede6"; -} -.icon-Wallet:before { - content: "\ede7"; -} -.icon-Warehouse:before { - content: "\ede8"; -} -.icon-Warning-Window:before { - content: "\ede9"; -} -.icon-Watch-2:before { - content: "\edea"; -} -.icon-Watch-3:before { - content: "\edeb"; -} -.icon-Watch:before { - content: "\edec"; -} -.icon-Wave-2:before { - content: "\eded"; -} -.icon-Wave:before { - content: "\edee"; -} -.icon-Webcam:before { - content: "\edef"; -} -.icon-weight-Lift:before { - content: "\edf0"; -} -.icon-Wheelbarrow:before { - content: "\edf1"; -} -.icon-Wheelchair:before { - content: "\edf2"; -} -.icon-Width-Window:before { - content: "\edf3"; -} -.icon-Wifi-2:before { - content: "\edf4"; -} -.icon-Wifi-Keyboard:before { - content: "\edf5"; -} -.icon-Wifi:before { - content: "\edf6"; -} -.icon-Wind-Turbine:before { - content: "\edf7"; -} -.icon-Windmill:before { - content: "\edf8"; -} -.icon-Window-2:before { - content: "\edf9"; -} -.icon-Window:before { - content: "\edfa"; -} -.icon-Windows-2:before { - content: "\edfb"; -} -.icon-Windows-Microsoft:before { - content: "\edfc"; -} -.icon-Windows:before { - content: "\edfd"; -} -.icon-Windsock:before { - content: "\edfe"; -} -.icon-Windy:before { - content: "\edff"; -} -.icon-Wine-Bottle:before { - content: "\ee00"; -} -.icon-Wine-Glass:before { - content: "\ee01"; -} -.icon-Wink:before { - content: "\ee02"; -} -.icon-Winter-2:before { - content: "\ee03"; -} -.icon-Winter:before { - content: "\ee04"; -} -.icon-Wireless:before { - content: "\ee05"; -} -.icon-Witch-Hat:before { - content: "\ee06"; -} -.icon-Witch:before { - content: "\ee07"; -} -.icon-Wizard:before { - content: "\ee08"; -} -.icon-Wolf:before { - content: "\ee09"; -} -.icon-Woman-Sign:before { - content: "\ee0a"; -} -.icon-WomanMan:before { - content: "\ee0b"; -} -.icon-Womans-Underwear:before { - content: "\ee0c"; -} -.icon-Womans-Underwear2:before { - content: "\ee0d"; -} -.icon-Women:before { - content: "\ee0e"; -} -.icon-Wonder-Woman:before { - content: "\ee0f"; -} -.icon-Wordpress:before { - content: "\ee10"; -} -.icon-Worker-Clothes:before { - content: "\ee11"; -} -.icon-Worker:before { - content: "\ee12"; -} -.icon-Wrap-Text:before { - content: "\ee13"; -} -.icon-Wreath:before { - content: "\ee14"; -} -.icon-Wrench:before { - content: "\ee15"; -} -.icon-X-Box:before { - content: "\ee16"; -} -.icon-X-ray:before { - content: "\ee17"; -} -.icon-Xanga:before { - content: "\ee18"; -} -.icon-Xing:before { - content: "\ee19"; -} -.icon-Yacht:before { - content: "\ee1a"; -} -.icon-Yahoo-Buzz:before { - content: "\ee1b"; -} -.icon-Yahoo:before { - content: "\ee1c"; -} -.icon-Yelp:before { - content: "\ee1d"; -} -.icon-Yes:before { - content: "\ee1e"; -} -.icon-Ying-Yang:before { - content: "\ee1f"; -} -.icon-Youtube:before { - content: "\ee20"; -} -.icon-Z-A:before { - content: "\ee21"; -} -.icon-Zebra:before { - content: "\ee22"; -} -.icon-Zombie:before { - content: "\ee23"; -} -.icon-Zoom-Gesture:before { - content: "\ee24"; -} -.icon-Zootool:before { - content: "\ee25"; -} diff --git a/html/css/jquery.steps.css b/html/css/jquery.steps.css deleted file mode 100644 index 2b59b588..00000000 --- a/html/css/jquery.steps.css +++ /dev/null @@ -1,382 +0,0 @@ -/* - Common -*/ - -.wizard, -.tabcontrol -{ - display: block; - width: 100%; - overflow: hidden; -} - -.wizard a, -.tabcontrol a -{ - outline: 0; -} - -.wizard ul, -.tabcontrol ul -{ - list-style: none !important; - padding: 0; - margin: 0; -} - -.wizard ul > li, -.tabcontrol ul > li -{ - display: block; - padding: 0; -} - -/* Accessibility */ -.wizard > .steps .current-info, -.tabcontrol > .steps .current-info -{ - position: absolute; - left: -999em; -} - -.wizard > .content > .title, -.tabcontrol > .content > .title -{ - position: absolute; - left: -999em; -} - - - -/* - Wizard -*/ - -.wizard > .steps -{ - position: relative; - display: block; - width: 100%; -} - -.wizard.vertical > .steps -{ - display: inline; - float: left; - width: 30%; -} - -.wizard > .steps .number -{ - font-size: 1.429em; -} - -.wizard > .steps > ul > li -{ - width: 25%; -} - -.wizard > .steps > ul > li, -.wizard > .actions > ul > li -{ - float: left; -} - -.wizard.vertical > .steps > ul > li -{ - float: none; - width: 100%; -} - -.wizard > .steps a, -.wizard > .steps a:hover, -.wizard > .steps a:active -{ - display: block; - width: auto; - margin: 0 0.5em 0.5em; - padding: 1em 1em; - text-decoration: none; - - -webkit-border-radius: 5px; - -moz-border-radius: 5px; - border-radius: 5px; -} - -.wizard > .steps .disabled a, -.wizard > .steps .disabled a:hover, -.wizard > .steps .disabled a:active -{ - background: #eee; - color: #aaa; - cursor: default; -} - -.wizard > .steps .current a, -.wizard > .steps .current a:hover, -.wizard > .steps .current a:active -{ - background: #2184be; - color: #fff; - cursor: default; -} - -.wizard > .steps .done a, -.wizard > .steps .done a:hover, -.wizard > .steps .done a:active -{ - background: #9dc8e2; - color: #fff; -} - -.wizard > .steps .error a, -.wizard > .steps .error a:hover, -.wizard > .steps .error a:active -{ - background: #ff3111; - color: #fff; -} - -.wizard > .content -{ - background: #eee; - display: block; - margin: 0.5em; - min-height: 35em; - overflow: hidden; - position: relative; - width: auto; - - -webkit-border-radius: 5px; - -moz-border-radius: 5px; - border-radius: 5px; -} - -.wizard.vertical > .content -{ - display: inline; - float: left; - margin: 0 2.5% 0.5em 2.5%; - width: 65%; -} - -.wizard > .content > .body -{ - float: left; - position: absolute; - width: 95%; - height: 95%; - padding: 2.5%; -} - -.wizard > .content > .body ul -{ - list-style: disc !important; -} - -.wizard > .content > .body ul > li -{ - display: list-item; -} - -.wizard > .content > .body > iframe -{ - border: 0 none; - width: 100%; - height: 100%; -} - -.wizard > .content > .body input -{ - display: block; - border: 1px solid #ccc; -} - -.wizard > .content > .body input[type="checkbox"] -{ - display: inline-block; -} - -.wizard > .content > .body input.error -{ - background: rgb(251, 227, 228); - border: 1px solid #fbc2c4; - color: #8a1f11; -} - -.wizard > .content > .body label -{ - display: inline-block; - margin-bottom: 0.5em; -} - -.wizard > .content > .body label.error -{ - color: #8a1f11; - display: inline-block; - margin-left: 1.5em; -} - -.wizard > .actions -{ - position: relative; - display: block; - text-align: right; - width: 100%; -} - -.wizard.vertical > .actions -{ - display: inline; - float: right; - margin: 0 2.5%; - width: 95%; -} - -.wizard > .actions > ul -{ - display: inline-block; - text-align: right; -} - -.wizard > .actions > ul > li -{ - margin: 0 0.5em; -} - -.wizard.vertical > .actions > ul > li -{ - margin: 0 0 0 1em; -} - -.wizard > .actions a, -.wizard > .actions a:hover, -.wizard > .actions a:active -{ - background: #2184be; - color: #fff; - display: block; - padding: 0.5em 1em; - text-decoration: none; - - -webkit-border-radius: 5px; - -moz-border-radius: 5px; - border-radius: 5px; -} - -.wizard > .actions .disabled a, -.wizard > .actions .disabled a:hover, -.wizard > .actions .disabled a:active -{ - background: #eee; - color: #aaa; -} - -.wizard > .loading -{ -} - -.wizard > .loading .spinner -{ -} - - - -/* - Tabcontrol -*/ - -.tabcontrol > .steps -{ - position: relative; - display: block; - width: 100%; -} - -.tabcontrol > .steps > ul -{ - position: relative; - margin: 6px 0 0 0; - top: 1px; - z-index: 1; -} - -.tabcontrol > .steps > ul > li -{ - float: left; - margin: 5px 2px 0 0; - padding: 1px; - - -webkit-border-top-left-radius: 5px; - -webkit-border-top-right-radius: 5px; - -moz-border-radius-topleft: 5px; - -moz-border-radius-topright: 5px; - border-top-left-radius: 5px; - border-top-right-radius: 5px; -} - -.tabcontrol > .steps > ul > li:hover -{ - background: #edecec; - border: 1px solid #bbb; - padding: 0; -} - -.tabcontrol > .steps > ul > li.current -{ - background: #fff; - border: 1px solid #bbb; - border-bottom: 0 none; - padding: 0 0 1px 0; - margin-top: 0; -} - -.tabcontrol > .steps > ul > li > a -{ - color: #5f5f5f; - display: inline-block; - border: 0 none; - margin: 0; - padding: 10px 30px; - text-decoration: none; -} - -.tabcontrol > .steps > ul > li > a:hover -{ - text-decoration: none; -} - -.tabcontrol > .steps > ul > li.current > a -{ - padding: 15px 30px 10px 30px; -} - -.tabcontrol > .content -{ - position: relative; - display: inline-block; - width: 100%; - height: 35em; - overflow: hidden; - border-top: 1px solid #bbb; - padding-top: 20px; -} - -.tabcontrol > .content > .body -{ - float: left; - position: absolute; - width: 95%; - height: 95%; - padding: 2.5%; -} - -.tabcontrol > .content > .body ul -{ - list-style: disc !important; -} - -.tabcontrol > .content > .body ul > li -{ - display: list-item; -} \ No newline at end of file diff --git a/html/css/lang.css b/html/css/lang.css deleted file mode 100644 index 4e6ac416..00000000 --- a/html/css/lang.css +++ /dev/null @@ -1,39 +0,0 @@ -/* - * Styles specific to the language menu - */ - -.lang-menu { - float: left; - position: relative; - min-height: 1px; - width: auto !important; -} - -.lang-menu .menu-vertical { - min-width: 150px; - width: auto !important; -} - -.menu-vertical li:last-child { - margin-bottom: 0.30952381em; -} - -@media (min-width: 768px) { - .menu-vertical { - display: inline-block; - float: left; - } - - .menu-vertical li:last-child { - margin-bottom: 0; - } - - .menu-horizontal li:last-child > span { - border-left: 2px solid #929292; - padding-left: 1.4em; - } - - .menu-horizontal li:not(:last-child) { - margin-right: 0.6em; - } -} diff --git a/html/css/lightbox.min.css b/html/css/lightbox.min.css deleted file mode 100644 index 665f9342..00000000 --- a/html/css/lightbox.min.css +++ /dev/null @@ -1,222 +0,0 @@ -body:after { - display: none -} - -.lightboxOverlay { - position: absolute; - top: 0; - left: 0; - z-index: 9999; - background-color: #000; - filter: alpha(Opacity=80); - opacity: .8; - display: none -} - -.lightbox { - position: fixed; - top: 50% !important; - transform: translate3d(0,-50%,0); - left: 0; - width: 100%; - z-index: 10000; - text-align: center; - line-height: 0; - font-weight: 400 -} - -.lightbox .lb-image { - display: block; - height: auto; - max-width: inherit; - -webkit-border-radius: 3px; - -moz-border-radius: 3px; - -ms-border-radius: 3px; - -o-border-radius: 3px; - border-radius: 3px -} - -.lightbox a img { - border: none -} - -.lb-outerContainer { - position: relative; - background-color: #222; - *zoom: 1; - width: 250px; - height: 250px; - margin: 0 auto; - -webkit-border-radius: 4px; - -moz-border-radius: 4px; - -ms-border-radius: 4px; - -o-border-radius: 4px; - border-radius: 4px -} - -.lb-outerContainer:after { - content: ""; - display: table; - clear: both -} - -.lb-container { - padding: 4px -} - -.lb-loader { - position: absolute; - top: 43%; - left: 0; - height: 25%; - width: 100%; - text-align: center; - line-height: 0 -} - -.lb-cancel { - display: block; - width: 32px; - height: 32px; - margin: 0 auto; -} - -.lb-nav { - position: absolute; - top: 0; - left: 0; - height: 100%; - width: 100%; - z-index: 10 -} - -.lb-container>.nav { - left: 0 -} - -.lb-nav a { - outline: 0; -} - -.lb-next, -.lb-prev { - height: 100%; - cursor: pointer; - display: block -} - -.lb-nav a.lb-prev { - width: 34%; - left: 0; - float: left; - filter: alpha(Opacity=0); - opacity: .5; - -webkit-transition: opacity .6s; - -moz-transition: opacity .6s; - -o-transition: opacity .6s; - transition: opacity .6s -} - -.lb-nav a.lb-prev:hover { - filter: alpha(Opacity=100); - opacity: 1 -} - -.lb-nav a.lb-next { - width: 64%; - right: 0; - float: right; - filter: alpha(Opacity=0); - opacity: .5; - -webkit-transition: opacity .6s; - -moz-transition: opacity .6s; - -o-transition: opacity .6s; - transition: opacity .6s -} - -.lb-nav a.lb-next:hover { - filter: alpha(Opacity=100); - opacity: 1 -} - -.lb-prev:after,.lb-next:after{ - content: '\2190'; - position: absolute; - top: 50%; - color: #fff; - font-size: 24px; -} -.lb-prev:after{ - left: -60px; -} -.lb-next:after{ - right: -60px; - content: '\2192'; -} - -.lb-dataContainer { - margin: 0 auto; - padding-top: 5px; - min-height: 35px; - *zoom: 1; - width: 100%; - -moz-border-radius-bottomleft: 4px; - -webkit-border-bottom-left-radius: 4px; - border-bottom-left-radius: 4px; - -moz-border-radius-bottomright: 4px; - -webkit-border-bottom-right-radius: 4px; - border-bottom-right-radius: 4px -} - -.lb-dataContainer:after { - content: ""; - display: table; - clear: both -} - -.lb-data { - padding: 0 4px; - color: #ccc -} - -.lb-data .lb-details { - width: 85%; - float: left; - text-align: left; - line-height: 1.1em -} - -.lb-data .lb-caption { - font-size: 13px; - font-weight: 700; - line-height: 1em -} - -.lb-data .lb-number { - display: block; - clear: left; - padding-bottom: 1em; - font-size: 12px; - color: #999 -} - -.lb-data .lb-close { - display: block; - float: right; - width: 30px; - height: 30px; - text-align: right; - outline: 0; - filter: alpha(Opacity=70); - opacity: .7; - -webkit-transition: opacity .2s; - -moz-transition: opacity .2s; - -o-transition: opacity .2s; - transition: opacity .2s -} - -.lb-data .lb-close:hover { - cursor: pointer; - filter: alpha(Opacity=100); - opacity: 1 -} \ No newline at end of file diff --git a/html/css/socicon.css b/html/css/socicon.css deleted file mode 100644 index fd887bf1..00000000 --- a/html/css/socicon.css +++ /dev/null @@ -1,555 +0,0 @@ -@font-face { - font-family: 'Socicon'; - src: url('../fonts/socicon.eot?a93r5t'); - src: url('../fonts/socicon.eot?a93r5t#iefix') format('embedded-opentype'), - url('../fonts/socicon.ttf?a93r5t') format('truetype'), - url('../fonts/socicon.woff?a93r5t') format('woff'), - url('../fonts/socicon.svg?a93r5t#Socicon') format('svg'); - font-weight: normal; - font-style: normal; -} - -[class^="socicon-"], [class*=" socicon-"] { - /* use !important to prevent issues with browser extensions that change fonts */ - font-family: 'Socicon' !important; - speak: none; - font-style: normal; - font-weight: normal; - font-variant: normal; - text-transform: none; - line-height: 1; - - /* Better Font Rendering =========== */ - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; -} - -.socicon-gamewisp:before { - content: "\e905"; -} -.socicon-bloglovin:before { - content: "\e904"; -} -.socicon-tunein:before { - content: "\e903"; -} -.socicon-gamejolt:before { - content: "\e901"; -} -.socicon-trello:before { - content: "\e902"; -} -.socicon-spreadshirt:before { - content: "\e900"; -} -.socicon-500px:before { - content: "\e000"; -} -.socicon-8tracks:before { - content: "\e001"; -} -.socicon-airbnb:before { - content: "\e002"; -} -.socicon-alliance:before { - content: "\e003"; -} -.socicon-amazon:before { - content: "\e004"; -} -.socicon-amplement:before { - content: "\e005"; -} -.socicon-android:before { - content: "\e006"; -} -.socicon-angellist:before { - content: "\e007"; -} -.socicon-apple:before { - content: "\e008"; -} -.socicon-appnet:before { - content: "\e009"; -} -.socicon-baidu:before { - content: "\e00a"; -} -.socicon-bandcamp:before { - content: "\e00b"; -} -.socicon-battlenet:before { - content: "\e00c"; -} -.socicon-beam:before { - content: "\e00d"; -} -.socicon-bebee:before { - content: "\e00e"; -} -.socicon-bebo:before { - content: "\e00f"; -} -.socicon-behance:before { - content: "\e010"; -} -.socicon-blizzard:before { - content: "\e011"; -} -.socicon-blogger:before { - content: "\e012"; -} -.socicon-buffer:before { - content: "\e013"; -} -.socicon-chrome:before { - content: "\e014"; -} -.socicon-coderwall:before { - content: "\e015"; -} -.socicon-curse:before { - content: "\e016"; -} -.socicon-dailymotion:before { - content: "\e017"; -} -.socicon-deezer:before { - content: "\e018"; -} -.socicon-delicious:before { - content: "\e019"; -} -.socicon-deviantart:before { - content: "\e01a"; -} -.socicon-diablo:before { - content: "\e01b"; -} -.socicon-digg:before { - content: "\e01c"; -} -.socicon-discord:before { - content: "\e01d"; -} -.socicon-disqus:before { - content: "\e01e"; -} -.socicon-douban:before { - content: "\e01f"; -} -.socicon-draugiem:before { - content: "\e020"; -} -.socicon-dribbble:before { - content: "\e021"; -} -.socicon-drupal:before { - content: "\e022"; -} -.socicon-ebay:before { - content: "\e023"; -} -.socicon-ello:before { - content: "\e024"; -} -.socicon-endomodo:before { - content: "\e025"; -} -.socicon-envato:before { - content: "\e026"; -} -.socicon-etsy:before { - content: "\e027"; -} -.socicon-facebook:before { - content: "\e028"; -} -.socicon-feedburner:before { - content: "\e029"; -} -.socicon-filmweb:before { - content: "\e02a"; -} -.socicon-firefox:before { - content: "\e02b"; -} -.socicon-flattr:before { - content: "\e02c"; -} -.socicon-flickr:before { - content: "\e02d"; -} -.socicon-formulr:before { - content: "\e02e"; -} -.socicon-forrst:before { - content: "\e02f"; -} -.socicon-foursquare:before { - content: "\e030"; -} -.socicon-friendfeed:before { - content: "\e031"; -} -.socicon-github:before { - content: "\e032"; -} -.socicon-goodreads:before { - content: "\e033"; -} -.socicon-google:before { - content: "\e034"; -} -.socicon-googlescholar:before { - content: "\e035"; -} -.socicon-googlegroups:before { - content: "\e036"; -} -.socicon-googlephotos:before { - content: "\e037"; -} -.socicon-googleplus:before { - content: "\e038"; -} -.socicon-grooveshark:before { - content: "\e039"; -} -.socicon-hackerrank:before { - content: "\e03a"; -} -.socicon-hearthstone:before { - content: "\e03b"; -} -.socicon-hellocoton:before { - content: "\e03c"; -} -.socicon-heroes:before { - content: "\e03d"; -} -.socicon-hitbox:before { - content: "\e03e"; -} -.socicon-horde:before { - content: "\e03f"; -} -.socicon-houzz:before { - content: "\e040"; -} -.socicon-icq:before { - content: "\e041"; -} -.socicon-identica:before { - content: "\e042"; -} -.socicon-imdb:before { - content: "\e043"; -} -.socicon-instagram:before { - content: "\e044"; -} -.socicon-issuu:before { - content: "\e045"; -} -.socicon-istock:before { - content: "\e046"; -} -.socicon-itunes:before { - content: "\e047"; -} -.socicon-keybase:before { - content: "\e048"; -} -.socicon-lanyrd:before { - content: "\e049"; -} -.socicon-lastfm:before { - content: "\e04a"; -} -.socicon-line:before { - content: "\e04b"; -} -.socicon-linkedin:before { - content: "\e04c"; -} -.socicon-livejournal:before { - content: "\e04d"; -} -.socicon-lyft:before { - content: "\e04e"; -} -.socicon-macos:before { - content: "\e04f"; -} -.socicon-mail:before { - content: "\e050"; -} -.socicon-medium:before { - content: "\e051"; -} -.socicon-meetup:before { - content: "\e052"; -} -.socicon-mixcloud:before { - content: "\e053"; -} -.socicon-modelmayhem:before { - content: "\e054"; -} -.socicon-mumble:before { - content: "\e055"; -} -.socicon-myspace:before { - content: "\e056"; -} -.socicon-newsvine:before { - content: "\e057"; -} -.socicon-nintendo:before { - content: "\e058"; -} -.socicon-npm:before { - content: "\e059"; -} -.socicon-odnoklassniki:before { - content: "\e05a"; -} -.socicon-openid:before { - content: "\e05b"; -} -.socicon-opera:before { - content: "\e05c"; -} -.socicon-outlook:before { - content: "\e05d"; -} -.socicon-overwatch:before { - content: "\e05e"; -} -.socicon-patreon:before { - content: "\e05f"; -} -.socicon-paypal:before { - content: "\e060"; -} -.socicon-periscope:before { - content: "\e061"; -} -.socicon-persona:before { - content: "\e062"; -} -.socicon-pinterest:before { - content: "\e063"; -} -.socicon-play:before { - content: "\e064"; -} -.socicon-player:before { - content: "\e065"; -} -.socicon-playstation:before { - content: "\e066"; -} -.socicon-pocket:before { - content: "\e067"; -} -.socicon-qq:before { - content: "\e068"; -} -.socicon-quora:before { - content: "\e069"; -} -.socicon-raidcall:before { - content: "\e06a"; -} -.socicon-ravelry:before { - content: "\e06b"; -} -.socicon-reddit:before { - content: "\e06c"; -} -.socicon-renren:before { - content: "\e06d"; -} -.socicon-researchgate:before { - content: "\e06e"; -} -.socicon-residentadvisor:before { - content: "\e06f"; -} -.socicon-reverbnation:before { - content: "\e070"; -} -.socicon-rss:before { - content: "\e071"; -} -.socicon-sharethis:before { - content: "\e072"; -} -.socicon-skype:before { - content: "\e073"; -} -.socicon-slideshare:before { - content: "\e074"; -} -.socicon-smugmug:before { - content: "\e075"; -} -.socicon-snapchat:before { - content: "\e076"; -} -.socicon-songkick:before { - content: "\e077"; -} -.socicon-soundcloud:before { - content: "\e078"; -} -.socicon-spotify:before { - content: "\e079"; -} -.socicon-stackexchange:before { - content: "\e07a"; -} -.socicon-stackoverflow:before { - content: "\e07b"; -} -.socicon-starcraft:before { - content: "\e07c"; -} -.socicon-stayfriends:before { - content: "\e07d"; -} -.socicon-steam:before { - content: "\e07e"; -} -.socicon-storehouse:before { - content: "\e07f"; -} -.socicon-strava:before { - content: "\e080"; -} -.socicon-streamjar:before { - content: "\e081"; -} -.socicon-stumbleupon:before { - content: "\e082"; -} -.socicon-swarm:before { - content: "\e083"; -} -.socicon-teamspeak:before { - content: "\e084"; -} -.socicon-teamviewer:before { - content: "\e085"; -} -.socicon-technorati:before { - content: "\e086"; -} -.socicon-telegram:before { - content: "\e087"; -} -.socicon-tripadvisor:before { - content: "\e088"; -} -.socicon-tripit:before { - content: "\e089"; -} -.socicon-triplej:before { - content: "\e08a"; -} -.socicon-tumblr:before { - content: "\e08b"; -} -.socicon-twitch:before { - content: "\e08c"; -} -.socicon-twitter:before { - content: "\e08d"; -} -.socicon-uber:before { - content: "\e08e"; -} -.socicon-ventrilo:before { - content: "\e08f"; -} -.socicon-viadeo:before { - content: "\e090"; -} -.socicon-viber:before { - content: "\e091"; -} -.socicon-viewbug:before { - content: "\e092"; -} -.socicon-vimeo:before { - content: "\e093"; -} -.socicon-vine:before { - content: "\e094"; -} -.socicon-vkontakte:before { - content: "\e095"; -} -.socicon-warcraft:before { - content: "\e096"; -} -.socicon-wechat:before { - content: "\e097"; -} -.socicon-weibo:before { - content: "\e098"; -} -.socicon-whatsapp:before { - content: "\e099"; -} -.socicon-wikipedia:before { - content: "\e09a"; -} -.socicon-windows:before { - content: "\e09b"; -} -.socicon-wordpress:before { - content: "\e09c"; -} -.socicon-wykop:before { - content: "\e09d"; -} -.socicon-xbox:before { - content: "\e09e"; -} -.socicon-xing:before { - content: "\e09f"; -} -.socicon-yahoo:before { - content: "\e0a0"; -} -.socicon-yammer:before { - content: "\e0a1"; -} -.socicon-yandex:before { - content: "\e0a2"; -} -.socicon-yelp:before { - content: "\e0a3"; -} -.socicon-younow:before { - content: "\e0a4"; -} -.socicon-youtube:before { - content: "\e0a5"; -} -.socicon-zapier:before { - content: "\e0a6"; -} -.socicon-zerply:before { - content: "\e0a7"; -} -.socicon-zomato:before { - content: "\e0a8"; -} -.socicon-zynga:before { - content: "\e0a9"; -} - diff --git a/html/css/stack-interface.css b/html/css/stack-interface.css deleted file mode 100644 index 93a13797..00000000 --- a/html/css/stack-interface.css +++ /dev/null @@ -1,79 +0,0 @@ -@font-face { - font-family: 'stack-interface'; - src: url('../fonts/stack-interface.eot?33839631'); - src: url('../fonts/stack-interface.eot?33839631#iefix') format('embedded-opentype'), - url('../fonts/stack-interface.woff2?33839631') format('woff2'), - url('../fonts/stack-interface.woff?33839631') format('woff'), - url('../fonts/stack-interface.ttf?33839631') format('truetype'), - url('../fonts/stack-interface.svg?33839631#stack-interface') format('svg'); - font-weight: normal; - font-style: normal; -} -/* Chrome hack: SVG is rendered more smooth in Windozze. 100% magic, uncomment if you need it. */ -/* Note, that will break hinting! In other OS-es font will be not as sharp as it could be */ -/* -@media screen and (-webkit-min-device-pixel-ratio:0) { - @font-face { - font-family: 'stack-interface'; - src: url('../font/stack-interface.svg?34857618#stack-interface') format('svg'); - } -} -*/ - - [class^="stack-"]:before, [class*=" stack-"]:before { - font-family: "stack-interface"; - font-style: normal; - font-weight: normal; - speak: none; - - display: inline-block; - text-decoration: inherit; - width: 1em; - margin-right: .2em; - text-align: center; - /* opacity: .8; */ - - /* For safety - reset parent styles, that can break glyph codes*/ - font-variant: normal; - text-transform: none; - - /* fix buttons height, for twitter bootstrap */ - line-height: 1em; - - /* Animation center compensation - margins should be symmetric */ - /* remove if not needed */ - margin-left: .2em; - - /* you can be more comfortable with increased icons size */ - /* font-size: 120%; */ - - /* Font smoothing. That was taken from TWBS */ - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; - - /* Uncomment for 3D effect */ - /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */ -} - -.stack-down-open-big:before { content: '\e800'; } /* '' */ -.stack-left-open-big:before { content: '\e801'; } /* '' */ -.stack-right-open-big:before { content: '\e802'; } /* '' */ -.stack-up-open-big:before { content: '\e803'; } /* '' */ -.stack-basket:before { content: '\e804'; } /* '' */ -.stack-search:before { content: '\e805'; } /* '' */ -.stack-down-dir:before { content: '\e806'; } /* '' */ -.stack-left-dir:before { content: '\e807'; } /* '' */ -.stack-right-dir:before { content: '\e808'; } /* '' */ -.stack-up-dir:before { content: '\e809'; } /* '' */ -.stack-down-open:before { content: '\e80a'; } /* '' */ -.stack-left-open:before { content: '\e80b'; } /* '' */ -.stack-right-open:before { content: '\e80c'; } /* '' */ -.stack-up-open:before { content: '\e80d'; } /* '' */ -.stack-menu:before { content: '\e80e'; } /* '' */ -.stack-users:before { content: '\e80f'; } /* '' */ -.stack-publish:before { content: '\e810'; } /* '' */ -.stack-trash:before { content: '\e811'; } /* '' */ -.stack-bell:before { content: '\e812'; } /* '' */ -.stack-cog:before { content: '\e813'; } /* '' */ -.stack-plus-circled:before { content: '\e814'; } /* '' */ -.stack-dot-3:before { content: '\e815'; } /* '' */ \ No newline at end of file diff --git a/html/css/theme-aqua.css b/html/css/theme-aqua.css deleted file mode 100644 index 9678c8e0..00000000 --- a/html/css/theme-aqua.css +++ /dev/null @@ -1,9016 +0,0 @@ -/**!**************/ -/**! Contents **/ -/**! 01. Reset **/ -/**! 02. Typography **/ -/**! 03. Position **/ -/**! 04. Element Size **/ -/**! 05. Images **/ -/**! 06. Buttons **/ -/**! 07. Icons **/ -/**! 08. Lists **/ -/**! 09. Lightbox **/ -/**! 10. Menus **/ -/**! 11. Dropdowns **/ -/**! 12. Form Elements **/ -/**! 13. Accordions **/ -/**! 14. Breadcrumbs **/ -/**! 15. Radials **/ -/**! 16. Tabs **/ -/**! 17. Boxes **/ -/**! 18. Sliders Flickity **/ -/**! 19. Hover Elements **/ -/**! 20. Masonry **/ -/**! 21. Modals **/ -/**! 22. Maps **/ -/**! 23. Parallax **/ -/**! 24. Notifications **/ -/**! 25. Video **/ -/**! 26. Colors **/ -/**! 27. Image Blocks **/ -/**! 28. MailChimp & Campaign Monitor **/ -/**! 29. Twitter **/ -/**! 30. Transitions **/ -/**! 31. Switchable Sections **/ -/**! 32. Typed Effect **/ -/**! 33. Gradient BG **/ -/**! 34. Bars **/ -/**! 35. Navigation In Page **/ -/**! 36. Helper Classes **/ -/**! 37. Spacing **/ -/**! 38. Boxed Layout **/ -/**! 39. Wizard **/ -/**! 40. Alerts **/ -/**! 41. Progress - Horizontal **/ -/**! 42. Theme Overrides **/ -/**!**************/ -/**!**************/ -/**!**************/ -/**! 01. Reset **/ -*, -h1, -h2, -h3, -h4, -h5, -h6, -p, -ul, -a { - margin: 0; - padding: 0; -} -/**! 02. Typography **/ -html { - font-size: 87.5%; -} -@media all and (max-width: 768px) { - html { - font-size: 81.25%; - } -} -body { - font-size: 1em; - line-height: 1.85714286em; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; - font-family: 'Open Sans', 'Helvetica', 'Arial', sans-serif; - color: #666666; - font-weight: 400; -} -h1, -h2, -h3, -h4, -h5, -h6, -.h1, -.h2, -.h3, -.h4, -.h5, -.h6 { - font-family: 'Open Sans', 'Helvetica', 'Arial', sans-serif; - color: #252525; - font-weight: 300; - font-variant-ligatures: common-ligatures; - margin-top: 0; - margin-bottom: 0; -} -h1, -.h1 { - font-size: 3.14285714em; - line-height: 1.31818182em; -} -h2, -.h2 { - font-size: 2.35714286em; - line-height: 1.36363636em; -} -h3, -.h3 { - font-size: 1.78571429em; - line-height: 1.5em; -} -h4, -.h4 { - font-size: 1.35714286em; - line-height: 1.36842105em; -} -h5, -.h5 { - font-size: 1em; - line-height: 1.85714286em; -} -h6, -.h6 { - font-size: 0.85714286em; - line-height: 2.16666667em; -} -.lead { - font-size: 1.35714286em; - line-height: 1.68421053em; -} -@media all and (max-width: 767px) { - h1, - .h1 { - font-size: 2.35714286em; - line-height: 1.36363636em; - } - h2, - .h2 { - font-size: 1.78571429em; - line-height: 1.5em; - } - h3, - .h3 { - font-size: 1.35714286em; - line-height: 1.85714286em; - } - .lead { - font-size: 1.35714286em; - line-height: 1.36842105em; - } -} -p, -ul, -ol, -pre, -table, -blockquote { - margin-bottom: 1.85714286em; -} -ul, -ol { - list-style: none; - line-height: 1.85714286em; -} -ul.bullets { - list-style: inside; -} -ol { - list-style-type: upper-roman; - list-style-position: inside; -} -blockquote { - font-size: 1.78571429em; - line-height: 1.5em; - padding: 0; - margin: 0; - border-left: 0; -} -strong { - font-weight: 600; -} -hr { - margin: 1.85714286em 0; - border-color: #fafafa; -} -a:hover, -a:focus, -a:active { - text-decoration: none; - outline: none; -} -/*! Typography -- Helpers */ -.type--fade { - opacity: .5; -} -.type--uppercase { - text-transform: uppercase; -} -.type--bold { - font-weight: bold; -} -.type--italic { - font-style: italic; -} -.type--fine-print { - font-size: 0.85714286em; -} -.type--strikethrough { - text-decoration: line-through; - opacity: .5; -} -.type--underline { - text-decoration: underline; -} -.type--body-font { - font-family: 'Open Sans', 'Helvetica'; -} -/**! 03. Position **/ -body { - overflow-x: hidden; -} -.pos-relative { - position: relative; -} -.pos-absolute { - position: absolute; -} -.pos-absolute.container { - left: 0; - right: 0; -} -.pos-top { - top: 0; -} -.pos-bottom { - bottom: 0; -} -.pos-right { - right: 0; -} -.pos-left { - left: 0; -} -.float-left { - float: left; -} -.float-right { - float: right; -} -@media all and (max-width: 767px) { - .float-left, - .float-right { - float: none; - } - .float-left-xs { - float: left; - } - .float-right-xs { - float: right; - } -} -.pos-vertical-center { - position: relative; - top: 50%; - transform: translateY(-50%); - -webkit-transform: translateY(-50%); -} -@media all and (max-width: 767px) { - .pos-vertical-center { - top: 0; - transform: none; - -webkit-transform: none; - } -} -@media all and (max-height: 600px) { - .pos-vertical-center { - top: 0; - transform: none; - -webkit-transform: none; - } -} -.pos-vertical-align-columns { - display: table; - table-layout: fixed; - width: 100%; -} -.pos-vertical-align-columns > div[class*='col-'] { - display: table-cell; - float: none; - vertical-align: middle; -} -@media all and (max-width: 990px) { - .pos-vertical-align-columns { - display: block; - width: auto; - } - .pos-vertical-align-columns > div[class*='col-'] { - display: block; - } -} -.inline-block { - display: inline-block; -} -.block { - display: block; -} -@media all and (max-width: 767px) { - .block--xs { - display: block; - } -} -@media all and (max-width: 990px) { - .text-center-md { - text-align: center; - } - .text-left-md { - text-align: left; - } - .text-right-md { - text-align: right; - } -} -@media all and (max-width: 767px) { - .text-center-xs { - text-align: center; - } - .text-left-xs { - text-align: left; - } - .text-right-xs { - text-align: right; - } -} -/**! 04. Element Size **/ -.height-100, -.height-90, -.height-80, -.height-70, -.height-60, -.height-50, -.height-40, -.height-30, -.height-20, -.height-10 { - height: auto; - padding: 5em 0; -} -@media all and (max-width: 767px) { - .height-100, - .height-90, - .height-80, - .height-70, - .height-60, - .height-50, - .height-40, - .height-30, - .height-20, - .height-10 { - height: auto; - padding: 4em 0; - } -} -@media all and (min-height: 600px) and (min-width: 767px) { - .height-10 { - height: 10vh; - } - .height-20 { - height: 20vh; - } - .height-30 { - height: 30vh; - } - .height-40 { - height: 40vh; - } - .height-50 { - height: 50vh; - } - .height-60 { - height: 60vh; - } - .height-70 { - height: 70vh; - } - .height-80 { - height: 80vh; - } - .height-90 { - height: 90vh; - } - .height-100 { - height: 100vh; - } -} -section.height-auto { - height: auto; -} -section.height-auto .pos-vertical-center { - top: 0; - position: relative; - transform: none; -} -@media all and (max-width: 767px) { - div[class*='col-'][class*='height-'] { - padding-top: 5.57142857em !important; - padding-bottom: 5.57142857em !important; - } -} -/**! 05. Images **/ -img { - max-width: 100%; - margin-bottom: 1.85714286em; -} -/*p+img, img:last-child{ - margin-bottom: 0; -}*/ -.img--fullwidth { - width: 100%; -} -[data-grid="2"].masonry { - -webkit-column-count: 2; - -webkit-column-gap: 0; - -moz-column-count: 2; - -moz-column-gap: 0; - column-count: 2; - column-gap: 0; -} -[data-grid="2"].masonry li { - width: 100%; - float: none; -} -[data-grid="2"] li { - width: 50%; - display: inline-block; -} -[data-grid="3"].masonry { - -webkit-column-count: 3; - -webkit-column-gap: 0; - -moz-column-count: 3; - -moz-column-gap: 0; - column-count: 3; - column-gap: 0; -} -[data-grid="3"].masonry li { - width: 100%; - float: none; -} -[data-grid="3"] li { - width: 33.33333333%; - display: inline-block; -} -[data-grid="4"].masonry { - -webkit-column-count: 4; - -webkit-column-gap: 0; - -moz-column-count: 4; - -moz-column-gap: 0; - column-count: 4; - column-gap: 0; -} -[data-grid="4"].masonry li { - width: 100%; - float: none; -} -[data-grid="4"] li { - width: 25%; - display: inline-block; -} -[data-grid="5"].masonry { - -webkit-column-count: 5; - -webkit-column-gap: 0; - -moz-column-count: 5; - -moz-column-gap: 0; - column-count: 5; - column-gap: 0; -} -[data-grid="5"].masonry li { - width: 100%; - float: none; -} -[data-grid="5"] li { - width: 20%; - display: inline-block; -} -[data-grid="6"].masonry { - -webkit-column-count: 6; - -webkit-column-gap: 0; - -moz-column-count: 6; - -moz-column-gap: 0; - column-count: 6; - column-gap: 0; -} -[data-grid="6"].masonry li { - width: 100%; - float: none; -} -[data-grid="6"] li { - width: 16.66666667%; - display: inline-block; -} -[data-grid="7"].masonry { - -webkit-column-count: 7; - -webkit-column-gap: 0; - -moz-column-count: 7; - -moz-column-gap: 0; - column-count: 7; - column-gap: 0; -} -[data-grid="7"].masonry li { - width: 100%; - float: none; -} -[data-grid="7"] li { - width: 14.28571429%; - display: inline-block; -} -[data-grid="8"].masonry { - -webkit-column-count: 8; - -webkit-column-gap: 0; - -moz-column-count: 8; - -moz-column-gap: 0; - column-count: 8; - column-gap: 0; -} -[data-grid="8"].masonry li { - width: 100%; - float: none; -} -[data-grid="8"] li { - width: 12.5%; - display: inline-block; -} -@media all and (max-width: 767px) { - [data-grid]:not(.masonry) li { - width: 33.333333%; - } - [data-grid="2"]:not(.masonry) li { - width: 50%; - } - [data-grid].masonry { - -webkit-column-count: 1; - -moz-column-count: 1; - column-count: 1; - } -} -.background-image-holder { - position: absolute; - height: 100%; - top: 0; - left: 0; - background-size: cover !important; - background-position: 50% 50% !important; - z-index: 0; - transition: opacity .3s linear; - -webkit-transition: opacity .3s linear; - opacity: 0; - background: #252525; -} -.background-image-holder:not([class*='col-']) { - width: 100%; -} -.background-image-holder.background--bottom { - background-position: 50% 100% !important; -} -.background-image-holder.background--top { - background-position: 50% 0% !important; -} -.image--light .background-image-holder { - background: none; -} -.background-image-holder img { - display: none; -} -[data-overlay] { - position: relative; -} -[data-overlay]:before { - position: absolute; - content: ''; - background: #252525; - width: 100%; - height: 100%; - top: 0; - left: 0; - z-index: 1; -} -[data-overlay] *:not(.container):not(.background-image-holder) { - z-index: 2; -} -[data-overlay].image--light:before { - background: #fff; -} -[data-overlay].bg--primary:before { - background: #7adfbb; -} -[data-overlay="1"]:before { - opacity: 0.1; -} -[data-overlay="2"]:before { - opacity: 0.2; -} -[data-overlay="3"]:before { - opacity: 0.3; -} -[data-overlay="4"]:before { - opacity: 0.4; -} -[data-overlay="5"]:before { - opacity: 0.5; -} -[data-overlay="6"]:before { - opacity: 0.6; -} -[data-overlay="7"]:before { - opacity: 0.7; -} -[data-overlay="8"]:before { - opacity: 0.8; -} -[data-overlay="9"]:before { - opacity: 0.9; -} -[data-overlay="10"]:before { - opacity: 1; -} -[data-overlay="0"]:before { - opacity: 0; -} -[data-scrim-bottom] { - position: relative; -} -[data-scrim-bottom]:before { - position: absolute; - content: ''; - width: 100%; - height: 80%; - background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, #252525 100%); - /* FF3.6+ */ - background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(0, 0, 0, 0)), color-stop(100%, #252525)); - /* Chrome,Safari4+ */ - background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, #252525 100%); - /* Chrome10+,Safari5.1+ */ - background: -o-linear-gradient(top, rgba(0, 0, 0, 0) 0%, #252525 100%); - /* Opera 11.10+ */ - background: -ms-linear-gradient(top, rgba(0, 0, 0, 0) 0%, #252525 100%); - /* IE10+ */ - background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, #252525 100%); - bottom: 0; - left: 0; - z-index: 1; - backface-visibility: hidden; -} -[data-scrim-bottom]:not(.image--light) h1, -[data-scrim-bottom]:not(.image--light) h2, -[data-scrim-bottom]:not(.image--light) h3, -[data-scrim-bottom]:not(.image--light) h4, -[data-scrim-bottom]:not(.image--light) h5, -[data-scrim-bottom]:not(.image--light) h6 { - color: #a5a5a5; - color: #f1f1f1; -} -[data-scrim-bottom]:not(.image--light) p, -[data-scrim-bottom]:not(.image--light) span, -[data-scrim-bottom]:not(.image--light) ul { - color: #e6e6e6; -} -[data-scrim-bottom].image--light:before { - background: #fff; -} -[data-scrim-bottom="1"]:before { - opacity: 0.1; -} -[data-scrim-bottom="2"]:before { - opacity: 0.2; -} -[data-scrim-bottom="3"]:before { - opacity: 0.3; -} -[data-scrim-bottom="4"]:before { - opacity: 0.4; -} -[data-scrim-bottom="5"]:before { - opacity: 0.5; -} -[data-scrim-bottom="6"]:before { - opacity: 0.6; -} -[data-scrim-bottom="7"]:before { - opacity: 0.7; -} -[data-scrim-bottom="8"]:before { - opacity: 0.8; -} -[data-scrim-bottom="9"]:before { - opacity: 0.9; -} -[data-scrim-bottom="10"]:before { - opacity: 1; -} -[data-scrim-top] { - position: relative; -} -[data-scrim-top]:before { - position: absolute; - content: ''; - width: 100%; - height: 80%; - background: -moz-linear-gradient(bottom, #252525 0%, rgba(0, 0, 0, 0) 100%); - /* FF3.6+ */ - background: -webkit-gradient(linear, left bottom, left bottom, color-stop(0%, #252525), color-stop(100%, rgba(0, 0, 0, 0))); - /* Chrome,Safari4+ */ - background: -webkit-linear-gradient(bottom, #252525 0%, rgba(0, 0, 0, 0) 100%); - /* Chrome10+,Safari5.1+ */ - background: -o-linear-gradient(bottom, #252525 0%, rgba(0, 0, 0, 0) 100%); - /* Opera 11.10+ */ - background: -ms-linear-gradient(bottom, #252525 0%, rgba(0, 0, 0, 0) 100%); - /* IE10+ */ - background: linear-gradient(to bottom, #252525 0%, rgba(0, 0, 0, 0) 100%); - top: 0; - left: 0; - z-index: 1; -} -[data-scrim-top]:not(.image--light) h1, -[data-scrim-top]:not(.image--light) h2, -[data-scrim-top]:not(.image--light) h3, -[data-scrim-top]:not(.image--light) h4, -[data-scrim-top]:not(.image--light) h5, -[data-scrim-top]:not(.image--light) h6 { - color: #fff; -} -[data-scrim-top]:not(.image--light) p, -[data-scrim-top]:not(.image--light) span, -[data-scrim-top]:not(.image--light) ul { - color: #e6e6e6; -} -[data-scrim-top].image--light:before { - background: #fff; -} -[data-scrim-top="1"]:before { - opacity: 0.1; -} -[data-scrim-top="2"]:before { - opacity: 0.2; -} -[data-scrim-top="3"]:before { - opacity: 0.3; -} -[data-scrim-top="4"]:before { - opacity: 0.4; -} -[data-scrim-top="5"]:before { - opacity: 0.5; -} -[data-scrim-top="6"]:before { - opacity: 0.6; -} -[data-scrim-top="7"]:before { - opacity: 0.7; -} -[data-scrim-top="8"]:before { - opacity: 0.8; -} -[data-scrim-top="9"]:before { - opacity: 0.9; -} -[data-scrim-top="10"]:before { - opacity: 1; -} -.imagebg { - position: relative; -} -.imagebg .container { - z-index: 2; -} -.imagebg .container:not(.pos-absolute) { - position: relative; -} -.imagebg:not(.image--light) h1, -.imagebg:not(.image--light) h2, -.imagebg:not(.image--light) h3, -.imagebg:not(.image--light) h4, -.imagebg:not(.image--light) h5, -.imagebg:not(.image--light) h6, -.imagebg:not(.image--light) p, -.imagebg:not(.image--light) ul, -.imagebg:not(.image--light) blockquote { - color: #fff; -} -.imagebg:not(.image--light) .bg--white h1, -.imagebg:not(.image--light) .bg--white h2, -.imagebg:not(.image--light) .bg--white h3, -.imagebg:not(.image--light) .bg--white h4, -.imagebg:not(.image--light) .bg--white h5, -.imagebg:not(.image--light) .bg--white h6 { - color: #252525; -} -.imagebg:not(.image--light) .bg--white p, -.imagebg:not(.image--light) .bg--white ul { - color: #666666; -} -div[data-overlay] h1, -div[data-overlay] h2, -div[data-overlay] h3, -div[data-overlay] h4, -div[data-overlay] h5, -div[data-overlay] h6 { - color: #fff; -} -div[data-overlay] p, -div[data-overlay] ul { - color: #fff; -} -.parallax { - overflow: hidden; -} -.parallax .background-image-holder { - transition: none !important; - -webkit-transition: none !important; - -moz-transition: none !important; -} -.image--xxs { - max-height: 1.85714286em; -} -.image--xs { - max-height: 3.71428571em; -} -.image--sm { - max-height: 5.57142857em; -} -.image--md { - max-height: 7.42857143em; -} -/**! 06. Buttons **/ -.btn { - font-family: 'Open Sans', 'Helvetica', 'Arial', sans-serif; - transition: 0.1s linear; - -webkit-transition: 0.1s linear; - -moz-transition: 0.1s linear; - border-radius: 6px; - padding-top: 0.46428571em; - padding-bottom: 0.46428571em; - padding-right: 2.78571429em; - padding-left: 2.78571429em; - border: 1px solid #252525; - border-width: 1px; - font-size: inherit; - line-height: 1.85714286em; -} -.btn .btn__text, -.btn i { - color: #252525; - border-color: #252525; - font-weight: 700; - font-size: 0.85714286em; -} -.btn[class*='col-'] { - margin-left: 0; - margin-right: 0; -} -.btn:active { - box-shadow: none; - -webkit-box-shadow: none; -} -.btn.bg--facebook, -.btn.bg--twitter, -.btn.bg--instagram, -.btn.bg--googleplus, -.btn.bg--pinterest, -.btn.bg--dribbble, -.btn.bg--behance, -.btn.bg--dark { - border-color: rgba(0, 0, 0, 0) !important; -} -.btn.bg--facebook .btn__text, -.btn.bg--twitter .btn__text, -.btn.bg--instagram .btn__text, -.btn.bg--googleplus .btn__text, -.btn.bg--pinterest .btn__text, -.btn.bg--dribbble .btn__text, -.btn.bg--behance .btn__text, -.btn.bg--dark .btn__text { - color: #fff; -} -.btn.bg--facebook .btn__text i, -.btn.bg--twitter .btn__text i, -.btn.bg--instagram .btn__text i, -.btn.bg--googleplus .btn__text i, -.btn.bg--pinterest .btn__text i, -.btn.bg--dribbble .btn__text i, -.btn.bg--behance .btn__text i, -.btn.bg--dark .btn__text i { - color: #fff; -} -.btn.bg--facebook:hover, -.btn.bg--twitter:hover, -.btn.bg--instagram:hover, -.btn.bg--googleplus:hover, -.btn.bg--pinterest:hover, -.btn.bg--dribbble:hover, -.btn.bg--behance:hover, -.btn.bg--dark:hover { - opacity: .9; -} -.btn.bg--error { - background: #e23636; - border-color: #e23636 !important; -} -.btn.bg--error:hover { - background: #e54c4c; - border-color: #e54c4c !important; - color: #fff !important; -} -.btn.bg--error .btn__text { - color: #fff; -} -.btn.bg--error .btn__text i { - color: #fff; -} -@media all and (min-width: 768px) { - .btn + .btn { - margin-left: 1.85714286em; - } -} -.btn:first-child { - margin-left: 0; -} -.btn:last-child { - margin-right: 0; -} -.btn--xs { - padding-top: 0; - padding-bottom: 0; - padding-right: 1.39285714em; - padding-left: 1.39285714em; -} -.btn--sm { - padding-top: 0.30952381em; - padding-bottom: 0.30952381em; - padding-right: 1.85714286em; - padding-left: 1.85714286em; -} -.btn--lg { - padding-top: 0.58035714em; - padding-bottom: 0.58035714em; - padding-right: 3.48214286em; - padding-left: 3.48214286em; -} -.btn--lg .btn__text { - font-size: 1.07142857em; -} -.btn--primary, -.btn--primary:visited { - background: #7adfbb; - border-color: #7adfbb; -} -.btn--primary .btn__text, -.btn--primary:visited .btn__text { - color: #fff; -} -.btn--primary .btn__text i, -.btn--primary:visited .btn__text i { - color: #fff; -} -.btn--primary:hover { - background: #8fe4c6; -} -.btn--primary:active { - background: #65dab0; -} -.btn--primary-1, -.btn--primary-1:visited { - background: #4c8577; - border-color: #4c8577; -} -.btn--primary-1 .btn__text, -.btn--primary-1:visited .btn__text { - color: #fff; -} -.btn--primary-1:hover { - background: #559586; -} -.btn--primary-1:active { - background: #437568; -} -.btn--primary-2, -.btn--primary-2:visited { - background: #493843; - border-color: #493843; -} -.btn--primary-2 .btn__text, -.btn--primary-2:visited .btn__text { - color: #fff; -} -.btn--primary-2:hover { - background: #574350; -} -.btn--primary-2:active { - background: #3b2d36; -} -.btn--secondary { - background: #fafafa; - border-color: #fafafa; -} -.btn--secondary:hover { - background: #ffffff; -} -.btn--secondary:active { - background: #f5f5f5; -} -.btn--white { - background: #fff; - color: #252525; - border-color: #fff; -} -.btn--white i { - color: #252525; -} -.btn--transparent { - background: none; - border-color: rgba(0, 0, 0, 0); - padding-left: 0; - padding-right: 0; -} -.btn--transparent.btn--white .btn__text { - color: #fff; -} -.btn--unfilled { - background: none; -} -.btn--unfilled.btn--white .btn__text { - color: #fff; -} -.btn--unfilled.btn--white i { - color: #fff; -} -.btn--floating { - position: fixed; - bottom: 3.71428571em; - right: 3.71428571em; - z-index: 10; -} -/**! 07. Icons **/ -.icon { - line-height: 1em; - font-size: 3.14285714em; -} -.icon--xs { - font-size: 1em; -} -.icon--sm { - font-size: 2.35714286em; -} -.icon--lg { - font-size: 5.57142857em; -} -/**! 08. Lists **/ -ul:last-child { - margin: 0; -} -.list-inline li { - padding: 0 1em; - margin-left: 0; -} -.list-inline li:first-child { - padding-left: 0; -} -.list-inline li:last-child { - padding-right: 0; -} -.list-inline.list-inline--narrow li { - padding: 0 .5em; -} -.list-inline.list-inline--wide li { - padding: 0 2em; -} -/**! 09. Lightbox **/ -.lb-outerContainer { - border-radius: 0; -} -.lb-outerContainer .lb-container { - padding: 0; -} -.lb-outerContainer .lb-container img { - margin: 0; -} -.lightbox-gallery { - overflow: hidden; -} -.lightbox-gallery li { - float: left; -} -.lightbox-gallery li img { - margin: 0; - width: 100%; -} -.lightbox-gallery.gallery--gaps li { - padding: 0.46428571em; -} -/**! 10. Menus **/ -.menu-horizontal > li:not(:hover) > a, -.menu-horizontal > li:not(:hover) > span, -.menu-horizontal > li:not(:hover) > .modal-instance > .modal-trigger { - opacity: .5; -} -.menu-horizontal > li > a, -.menu-horizontal > li > span, -.menu-horizontal > li > .modal-instance > .modal-trigger { - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; - color: #252525; -} -.menu-horizontal > li > a:hover, -.menu-horizontal > li > span:hover, -.menu-horizontal > li > .modal-instance > .modal-trigger:hover { - color: #252525; -} -.bg--dark .menu-horizontal > li > a, -.bg--dark .menu-horizontal > li > span { - color: #fff; -} -.bg--dark .menu-horizontal > li > a:hover, -.bg--dark .menu-horizontal > li > span:hover { - color: #fff; -} -.menu-vertical { - width: 100%; -} -.menu-vertical li { - width: 100%; -} -.menu-vertical li a { - font-weight: normal; -} -@media all and (min-width: 990px) { - .menu-horizontal { - display: inline-block; - } - .menu-horizontal > li { - display: inline-block; - } - .menu-horizontal > li:not(:last-child) { - margin-right: 1.85714286em; - } - .menu-vertical { - display: inline-block; - } - .menu-vertical li { - white-space: nowrap; - } - .menu-vertical .dropdown__container { - top: 0; - } - .menu-vertical .dropdown__container .dropdown__content:not([class*='bg-']) { - background: #ffffff; - } - .menu-vertical .dropdown__container .dropdown__content { - transform: translateX(75%); - } -} -/**! 11. Dropdowns **/ -.dropdown { - position: relative; -} -.dropdown .dropdown__container { - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; - opacity: 0; - pointer-events: none; - position: absolute; - z-index: 999; -} -.dropdown .dropdown__container .dropdown__container:before { - height: 0; -} -.dropdown .dropdown__content { - padding: 1.85714286em; -} -.dropdown .dropdown__content:not([class*='col-']) { - width: 18.57142857em; -} -.dropdown .dropdown__content:not([class*='bg-']) { - background: #ffffff; -} -.dropdown .dropdown__content:not([class='bg--dark']) .menu-vertical a { - color: #666666; -} -.dropdown .dropdown__trigger { - cursor: pointer; - user-select: none; -} -.dropdown.dropdown--active > .dropdown__container { - opacity: 1; -} -.dropdown.dropdown--active > .dropdown__container > .container > .row > .dropdown__content { - pointer-events: all; -} -@media all and (min-width: 991px) { - .dropdown .dropdown__container:before { - height: 0.92857143em; - width: 100%; - content: ''; - display: block; - } - .dropdown .dropdown__content.dropdown__content--md { - padding: 2.78571429em; - } - .dropdown .dropdown__content.dropdown__content--lg { - padding: 3.71428571em; - } - .dropdown .dropdown__content.dropdown__content--xlg { - padding: 4.64285714em; - } -} -@media all and (max-width: 767px) { - .dropdown .dropdown__container { - min-width: 100%; - position: relative; - display: none; - } - .dropdown .dropdown__content { - padding: 1.85714286em; - left: 0 !important; - } - .dropdown.dropdown--active > .dropdown__container { - display: block; - } -} -body.dropdowns--hover .dropdown:not(.dropdown--click):hover > .dropdown__container { - opacity: 1; -} -body.dropdowns--hover .dropdown:not(.dropdown--click):hover > .dropdown__container:before { - pointer-events: all; -} -body.dropdowns--hover .dropdown:not(.dropdown--click):hover > .dropdown__container .dropdown__content { - pointer-events: all; -} -body:not(.dropdowns--hover) .dropdown.dropdown--hover:hover > .dropdown__container { - opacity: 1; -} -body:not(.dropdowns--hover) .dropdown.dropdown--hover:hover > .dropdown__container:before { - pointer-events: all; -} -body:not(.dropdowns--hover) .dropdown.dropdown--hover:hover > .dropdown__container .dropdown__content { - pointer-events: all; -} -@media all and (max-width: 990px) { - body.dropdowns--hover .dropdown:not(.dropdown--click).dropdown--active > .dropdown__container { - display: block; - } - body.dropdowns--hover .dropdown:not(.dropdown--click).dropdown--active > .dropdown__container:before { - pointer-events: all; - } -} -@media all and (max-width: 767px) { - .dropdown.dropdown--absolute .dropdown__container { - position: absolute; - } -} -/**! 12. Form Elements **/ -form { - max-width: 100%; -} -form + form { - margin-top: 30px; -} -form:before, -form:after { - content: "."; - display: block; - height: 0; - overflow: hidden; -} -form:after { - clear: both; -} -label { - margin: 0; - font-size: 1.14285714em; - font-weight: 400; -} -input[type], -textarea, -select { - -webkit-appearance: none; - background: #fcfcfc; - padding: 0.46428571em; - border-radius: 6px; - border: 1px solid #ececec; -} -input[type]:focus, -textarea:focus, -select:focus { - outline: none; -} -input[type]:active, -textarea:active, -select:active { - outline: none; -} -input[type]::-webkit-input-placeholder, -textarea::-webkit-input-placeholder, -select::-webkit-input-placeholder { - color: #b3b3b3; - font-size: 1.14285714em; -} -input[type]:-moz-placeholder, -textarea:-moz-placeholder, -select:-moz-placeholder { - /* Firefox 18- */ - color: #b3b3b3; - font-size: 1.14285714em; -} -input[type]::-moz-placeholder, -textarea::-moz-placeholder, -select::-moz-placeholder { - /* Firefox 19+ */ - color: #b3b3b3; - font-size: 1.14285714em; -} -input[type]:-ms-input-placeholder, -textarea:-ms-input-placeholder, -select:-ms-input-placeholder { - color: #b3b3b3; - font-size: 1.14285714em; -} -input[type="image"] { - border: none; - padding: none; - width: auto; -} -textarea { - display: block; - width: 100%; - max-width: 100%; -} -select { - cursor: pointer; - padding-right: 1.85714286em; - -webkit-appearance: none; -} -select::ms-expand { - display: none; -} -input[type="submit"] { - background: none; - outline: none; - border: none; - background: #7adfbb; - padding: 0.46428571em 2.78571429em 0.46428571em 2.78571429em; - color: #fff; -} -@keyframes load { - 0% { - opacity: 0; - width: 0; - } - 50% { - width: 100%; - opacity: .8; - left: 0; - } - 100% { - left: 100%; - opacity: 0; - } -} -button { - background: none; -} -button[type="submit"].btn--loading { - position: relative; - overflow: hidden; - pointer-events: none; - color: rgba(0, 0, 0, 0); -} -button[type="submit"].btn--loading * { - opacity: 0; -} -button[type="submit"].btn--loading:after { - content: ''; - position: absolute; - width: 0; - height: 100%; - background: #ddd; - animation: load 1.5s ease-out infinite; - left: 0; - top: 0; -} -button[type="submit"].btn--loading .btn__text { - opacity: 0; -} -button:focus { - outline: none !important; -} -button.bg--error { - color: #fff; -} -.input-icon { - position: relative; -} -.input-icon i { - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; - cursor: default; - position: absolute; -} -.input-checkbox, -.input-radio, -.input-select { - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; - display: inline-block; -} -.input-checkbox input, -.input-radio input, -.input-select input { - opacity: 0 !important; - height: 0 !important; - width: 0 !important; - position: absolute !important; -} -.input-checkbox label, -.input-radio label, -.input-select label { - display: block !important; - cursor: pointer; -} -.input-checkbox { - padding: 0; -} -.input-checkbox label { - width: 1.85714286em; - height: 1.85714286em; - border-radius: 6px; - background: #000; -} -.input-radio { - padding: 0; -} -.input-radio label { - width: 1.85714286em; - height: 1.85714286em; - border-radius: 50%; - background: #000; -} -.input-select { - position: relative; -} -.input-select i { - position: absolute; - top: 50%; - transform: translateY(-50%); - -webkit-transform: translateY(-50%); - right: 1em; - font-size: .87em; -} -.input-file { - position: relative; - display: inline-block; -} -.input-file input { - display: none; -} -.form-error { - margin-top: 1.5625em; - padding: 0.78125em; - background: #D84D4D; - color: #fff; - position: fixed; - min-width: 350px; - left: 50%; - bottom: 1.5625em; - transform: translate3d(-50%, 0, 0); - -webkit-transform: translate3d(-50%, 0, 0); - z-index: 999; - box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); - box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1); -} -.form-success { - margin-top: 1.5625em; - padding: 0.78125em; - background: #1DC020; - color: #fff; - position: fixed; - min-width: 350px; - left: 50%; - bottom: 1.5625em; - transform: translate3d(-50%, 0, 0); - -webkit-transform: translate3d(-50%, 0, 0); - z-index: 999; - box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); - box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1); -} -.attempted-submit .field-error { - border-color: #D84D4D !important; -} -.attempted-submit div.recaptcha.field-error { - border-color: #D84D4D !important; - border-style: solid; - border: 1px solid; - border-radius: 5px; - padding: 5px; -} -div.recaptcha iframe { - min-height: 0; -} -/**! 13. Accordions **/ -.accordion li .accordion__title, -.accordion li .accordion__content, -.accordion li .accordion__content * { - transition: 0.3s linear; - -webkit-transition: 0.3s linear; - -moz-transition: 0.3s linear; -} -.accordion li .accordion__title { - cursor: pointer; - padding: 0.46428571em 0.92857143em; - border: 1px solid #ececec; - border-bottom: none; - background: none; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; -} -.accordion li:last-child .accordion__title { - border-bottom: 1px solid #ececec; -} -.accordion li .accordion__content { - opacity: 0; - visibility: hidden; - max-height: 0; -} -.accordion li .accordion__content > * { - display: none; -} -.accordion li .accordion__content > *:first-child { - padding-top: 0; -} -.accordion li .accordion__content > *:last-child { - padding-bottom: 0; -} -.accordion li.active .accordion__title { - background: #7adfbb; - border-bottom: 1px solid #ececec; -} -.accordion li.active .accordion__content { - opacity: 1; - visibility: visible; - max-height: 500px; -} -.accordion li.active .accordion__content > * { - display: inline-block; -} -/**! 14. Breadcrumbs **/ -.breadcrumb { - padding: 0; - margin: 0; - background: none; - display: inline-block; -} -.breadcrumb li { - font-size: 1em; -} -.breadcrumb li + li:before { - padding: 0 0.46428571em; -} -/**! 15. Pie Charts **/ -.radial { - position: relative; -} -.radial .radial__label { - position: absolute; - top: 50%; - left: 50%; - transform: translateX(-50%) translateY(-50%); - -webkit-transform: translateX(-50%) translateY(-50%); - margin-bottom: 0; -} -/**! 16. Tabs **/ -.tabs { - display: block; - margin-bottom: 0; -} -.tabs > li { - display: inline-block; - opacity: .5; - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; -} -.tabs > .active, -.tabs:hover { - opacity: 1; -} -.tabs .tab__title { - cursor: pointer; -} -.tabs .tab__title:not(.btn) { - padding: 0 1.85714286em; -} -.tabs li:first-child .tab__title:not(.btn) { - padding-left: 0; -} -.tabs .tab__content { - display: none; -} -.tabs-content { - margin-top: 1em; -} -.tabs-content li > .tab__content { - width: 100%; - display: none; -} -.tabs-content > .active > .tab__content { - display: block; -} -.tabs-container[data-content-align="left"] .tabs-content { - text-align: left; -} -@media all and (max-width: 767px) { - .tabs-content > li:not(.active) .tab__content { - display: none !important; - } -} -/**! 17. Boxes **/ -.boxed { - position: relative; - overflow: hidden; - padding: 1.85714286em; - margin-bottom: 30px; -} -.boxed.boxed--lg { - padding: 2.78571429em; -} -.boxed.boxed--sm { - padding: 1.23809524em; -} -.boxed.boxed--border { - border: 1px solid #ececec; -} -.boxed > div[class*='col-']:first-child:not(.boxed) { - padding-left: 0; -} -.boxed > div[class*='col-']:last-child:not(.boxed) { - padding-right: 0; -} -img + .boxed { - margin-top: -1.85714286em; -} -@media all and (max-width: 767px) { - .boxed { - padding: 1.23809524em; - margin-bottom: 15px; - } - .boxed.boxed--lg { - padding: 1.23809524em; - } - .boxed div[class*='col-']:not(.boxed) { - padding: 0; - } - .boxed:last-child { - margin-bottom: 15px; - } -} -/**! 18. Sliders Flickity **/ -.slides:not(.flickity-enabled) li.imagebg:not(:first-child) { - display: none; -} -.slides:not(.flickity-enabled) li.imagebg:first-child { - background: #252525; - animation: backgroundLoad .5s ease alternate infinite; -} -.slides:not(.flickity-enabled) li.imagebg:first-child .container { - opacity: 0; -} -@keyframes backgroundLoad { - 0% { - background: #252525; - } - 100% { - background: #3f3f3f; - } -} -.slider.height-10 { - height: auto; -} -.slider.height-10 .slides .flickity-slider > li { - height: 10vh; - padding: 0; -} -@media all and (min-width: 768px) { - .slider.height-10 .slides li.imagebg { - min-height: 10vh; - } -} -.slider.height-20 { - height: auto; -} -.slider.height-20 .slides .flickity-slider > li { - height: 20vh; - padding: 0; -} -@media all and (min-width: 768px) { - .slider.height-20 .slides li.imagebg { - min-height: 20vh; - } -} -.slider.height-30 { - height: auto; -} -.slider.height-30 .slides .flickity-slider > li { - height: 30vh; - padding: 0; -} -@media all and (min-width: 768px) { - .slider.height-30 .slides li.imagebg { - min-height: 30vh; - } -} -.slider.height-40 { - height: auto; -} -.slider.height-40 .slides .flickity-slider > li { - height: 40vh; - padding: 0; -} -@media all and (min-width: 768px) { - .slider.height-40 .slides li.imagebg { - min-height: 40vh; - } -} -.slider.height-50 { - height: auto; -} -.slider.height-50 .slides .flickity-slider > li { - height: 50vh; - padding: 0; -} -@media all and (min-width: 768px) { - .slider.height-50 .slides li.imagebg { - min-height: 50vh; - } -} -.slider.height-60 { - height: auto; -} -.slider.height-60 .slides .flickity-slider > li { - height: 60vh; - padding: 0; -} -@media all and (min-width: 768px) { - .slider.height-60 .slides li.imagebg { - min-height: 60vh; - } -} -.slider.height-70 { - height: auto; -} -.slider.height-70 .slides .flickity-slider > li { - height: 70vh; - padding: 0; -} -@media all and (min-width: 768px) { - .slider.height-70 .slides li.imagebg { - min-height: 70vh; - } -} -.slider.height-80 { - height: auto; -} -.slider.height-80 .slides .flickity-slider > li { - height: 80vh; - padding: 0; -} -@media all and (min-width: 768px) { - .slider.height-80 .slides li.imagebg { - min-height: 80vh; - } -} -.slider.height-90 { - height: auto; -} -.slider.height-90 .slides .flickity-slider > li { - height: 90vh; - padding: 0; -} -@media all and (min-width: 768px) { - .slider.height-90 .slides li.imagebg { - min-height: 90vh; - } -} -.slider.height-100 { - height: auto; -} -.slider.height-100 .slides .flickity-slider > li { - height: 100vh; - padding: 0; -} -@media all and (min-width: 768px) { - .slider.height-100 .slides li.imagebg { - min-height: 100vh; - } -} -.slider .slides .flickity-slider > li:not([class*='col-']) { - width: 100%; -} -.slider .slides.slides--gapless li[class*='col-'] { - padding-left: 0; - padding-right: 0; -} -.slider[data-arrows="true"].slider--arrows-hover:not(:hover) .flickity-prev-next-button { - opacity: 0; -} -.slider[data-paging="true"]:not(section) { - margin-bottom: 3.71428571em; -} -.slider[data-paging="true"]:not(section) .flickity-page-dots { - bottom: -3.71428571em; -} -.slider[data-paging="true"]:not([class*='text-']) .flickity-page-dots { - text-align: center; -} -.slider[data-children="1"] .flickity-prev-next-button { - display: none; -} -.slider:not([data-paging="true"]) .slides { - margin: 0; -} -.slider.controls--dark .flickity-page-dots .dot { - background: #252525; -} -.slider.controls--dark .flickity-prev-next-button:before { - color: #252525; -} -section.slider { - padding: 0; -} -section.slider.height-10 { - height: auto; -} -section.slider.height-10 .slides .flickity-slider > li { - height: 10vh; - padding: 0; -} -@media all and (min-width: 768px) { - section.slider.height-10 .slides li.imagebg { - min-height: 10vh; - } -} -section.slider.height-20 { - height: auto; -} -section.slider.height-20 .slides .flickity-slider > li { - height: 20vh; - padding: 0; -} -@media all and (min-width: 768px) { - section.slider.height-20 .slides li.imagebg { - min-height: 20vh; - } -} -section.slider.height-30 { - height: auto; -} -section.slider.height-30 .slides .flickity-slider > li { - height: 30vh; - padding: 0; -} -@media all and (min-width: 768px) { - section.slider.height-30 .slides li.imagebg { - min-height: 30vh; - } -} -section.slider.height-40 { - height: auto; -} -section.slider.height-40 .slides .flickity-slider > li { - height: 40vh; - padding: 0; -} -@media all and (min-width: 768px) { - section.slider.height-40 .slides li.imagebg { - min-height: 40vh; - } -} -section.slider.height-50 { - height: auto; -} -section.slider.height-50 .slides .flickity-slider > li { - height: 50vh; - padding: 0; -} -@media all and (min-width: 768px) { - section.slider.height-50 .slides li.imagebg { - min-height: 50vh; - } -} -section.slider.height-60 { - height: auto; -} -section.slider.height-60 .slides .flickity-slider > li { - height: 60vh; - padding: 0; -} -@media all and (min-width: 768px) { - section.slider.height-60 .slides li.imagebg { - min-height: 60vh; - } -} -section.slider.height-70 { - height: auto; -} -section.slider.height-70 .slides .flickity-slider > li { - height: 70vh; - padding: 0; -} -@media all and (min-width: 768px) { - section.slider.height-70 .slides li.imagebg { - min-height: 70vh; - } -} -section.slider.height-80 { - height: auto; -} -section.slider.height-80 .slides .flickity-slider > li { - height: 80vh; - padding: 0; -} -@media all and (min-width: 768px) { - section.slider.height-80 .slides li.imagebg { - min-height: 80vh; - } -} -section.slider.height-90 { - height: auto; -} -section.slider.height-90 .slides .flickity-slider > li { - height: 90vh; - padding: 0; -} -@media all and (min-width: 768px) { - section.slider.height-90 .slides li.imagebg { - min-height: 90vh; - } -} -section.slider.height-100 { - height: auto; -} -section.slider.height-100 .slides .flickity-slider > li { - height: 100vh; - padding: 0; -} -@media all and (min-width: 768px) { - section.slider.height-100 .slides li.imagebg { - min-height: 100vh; - } -} -section.slider[data-paging="true"] .flickity-page-dots { - bottom: 1.85714286em; -} -section.slider:not(.image--light)[data-paging="true"] .flickity-page-dots .dot { - background: #fff; -} -section.slider .slides { - margin: 0; -} -@media all and (max-width: 767px) { - section.slider[class*='height-'] .slides .flickity-slider > li { - height: auto; - padding: 7.42857143em 0; - } - section.slider.space--lg .slides .flickity-slider > li { - padding: 11.14285714em 0; - } - section.slider.space--xlg .slides .flickity-slider > li { - padding: 11.14285714em 0; - } -} -section.bg--dark .slider[data-paging="true"] .flickity-page-dots .dot, -section.bg--primary .slider[data-paging="true"] .flickity-page-dots .dot { - background: #fff; -} -.flickity-page-dots .dot { - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; - width: 8px; - height: 8px; - border-radius: 50%; - background: #252525; - border: none; - margin: 0 0.46428571em; -} -.flickity-page-dots .dot:hover:not(.is-selected) { - opacity: .6; -} -.text-center .flickity-page-dots, -section.slider .flickity-page-dots { - text-align: center; -} -.flickity-prev-next-button svg { - display: none; -} -.flickity-prev-next-button:before { - font-family: 'stack-interface'; - content: "\e80c"; - font-size: 1em; - font-weight: normal; -} -.flickity-prev-next-button.previous:before { - content: "\e80b"; -} -.imagebg:not(.image--light) .flickity-page-dots .dot, -.bg--dark .flickity-page-dots .dot { - background: #fff; -} -/**! 19. Hover Elements **/ -.hover-element { - position: relative; - overflow: hidden; - margin-bottom: 30px; -} -.hover-element * { - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; -} -.hover-element .hover-element__reveal { - position: absolute; - top: 0; - left: 0; - opacity: 0; - width: 100%; - height: 100%; -} -.hover-element .hover-element__reveal .boxed { - height: 100%; -} -.hover-element:hover .hover-element__reveal, -.hover-element.hover--active .hover-element__reveal { - opacity: 1; -} -.hover-element img { - margin-bottom: 0; -} -@media all and (max-width: 1024px) { - .hover-element { - cursor: pointer; - } -} -.row:last-child div[class*='col-']:last-child .hover-element { - margin-bottom: 0; -} -/**! 20. Masonry **/ -.masonry .masonry__container.masonry--active .masonry__item { - opacity: 1; - pointer-events: initial; -} -.masonry .masonry__container .masonry__item { - opacity: 0; - pointer-events: none; -} -.masonry .masonry__filters li { - display: inline-block; - cursor: pointer; - text-transform: capitalize; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; -} -.masonry .masonry__filters li.active { - cursor: default; -} -.masonry.masonry--gapless .masonry__item { - padding: 0 !important; - margin-bottom: 0; -} -/**! 21. Modals **/ -.modal-instance .modal-body { - display: none; -} -.modal-container { - transition: 0.3s linear; - -webkit-transition: 0.3s linear; - -moz-transition: 0.3s linear; - padding: 0; - visibility: hidden; - opacity: 0; - z-index: 999; - pointer-events: none; - position: fixed; - width: 100%; - height: 100%; - top: 0; - left: 0; -} -.modal-container.modal-active { - opacity: 1; - visibility: visible; - pointer-events: all; -} -.modal-container:before { - background: rgba(0, 0, 0, 0.85); - content: ''; - position: fixed; - width: 100%; - height: 100%; - top: 0; - left: 0; - z-index: 1; -} -.modal-container .modal-content { - backface-visibility: hidden; - position: fixed; - z-index: 2; - top: 50%; - left: 50%; - max-height: 100%; - overflow-y: scroll; - border: none; - transform: translate3d(-50%, -50%, 0); - -webkit-transform: translate3d(-50%, -50%, 0); - padding: 0; - border-radius: 0; - box-shadow: none; -} -.modal-container .modal-content:not(.height--natural) { - width: 50%; - height: 50%; -} -.modal-container .modal-content .modal-close-cross { - cursor: pointer; - position: absolute; - opacity: .5; - transition: 0.1s linear; - -webkit-transition: 0.1s linear; - -moz-transition: 0.1s linear; - top: 1em; - right: 1em; - z-index: 99; -} -.modal-container .modal-content .modal-close-cross:before { - content: '\00D7'; - font-size: 1.5em; -} -.modal-container .modal-content .modal-close-cross:hover { - opacity: 1; -} -.modal-container .modal-content.imagebg:not(.image--light) .modal-close-cross:before { - color: #fff; -} -.modal-container .modal-content iframe { - width: 100%; - outline: none; - border: none; - height: 100%; - backface-visibility: hidden; -} -.modal-container .modal-content iframe:first-child + .modal-close-cross:last-child { - top: -3.71428571em; -} -@media all and (max-width: 767px) { - .modal-container .modal-content { - width: 97% !important; - height: auto !important; - padding-top: 2em; - padding-bottom: 2em; - } -} -/**! 22. Maps **/ -.map-container { - position: relative; - overflow: hidden; -} -.map-container iframe, -.map-container .map-canvas { - position: absolute; - width: 100%; - height: 100%; - top: 0; -} -/**! 23. Parallax **/ -.parallax > .background-image-holder, -.parallax .slides li > .background-image-holder { - height: 100%; - min-height: 100vh; - top: -50vh; - transition: opacity 0.3s ease !important; - -webkit-transition: opacity 0.3s ease !important; - -webkit-transform-style: preserve-3d; -} -.parallax:first-child .slides li > .background-image-holder, -.parallax:first-child .background-image-holder { - top: 0; -} -.main-container > a:first-child + .parallax .background-image-holder { - top: 0; -} -@media all and (max-width: 1024px) { - .parallax > .background-image-holder, - .parallax .slides li > .background-image-holder { - -webkit-transition: transform 0.016s linear !important; - transition: transform 0.016s linear !important; - } - .parallax.parallax-disable-mobile .background-image-holder, - .parallax.parallax-disable-mobile .slides li > .background-image-holder { - top: 0 !important; - transform: none !important; - } -} -/**! 24. Notifications **/ -.notification { - max-width: 100%; - box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); - position: fixed; - z-index: 99; - pointer-events: none; - padding: 0; - margin: 1em; - opacity: 0; - transition: 0.3s linear; - -webkit-transition: 0.3s linear; - -moz-transition: 0.3s linear; -} -.notification:not([class*='bg-']) { - background: #fff; -} -.notification[class*='col-'] { - min-width: 400px; -} -.notification .notification-close-cross { - position: absolute; - top: 1em; - z-index: 99; - right: 1em; - cursor: pointer; - transition: 0.1s linear; - -webkit-transition: 0.1s linear; - -moz-transition: 0.1s linear; - opacity: .7; -} -.notification .notification-close-cross:before { - content: '\00D7'; - font-size: 1.5em; -} -.notification .notification-close-cross:hover { - opacity: 1; -} -.notification.notification--reveal { - z-index: 99; - pointer-events: initial; -} -.notification.notification--reveal[data-animation="from-bottom"] { - animation: from-bottom 0.3s linear 0s forwards; - -webkit-animation: from-bottom 0.3s linear 0s forwards; - -moz-animation: from-bottom 0.3s linear 0s forwards; -} -.notification.notification--reveal[data-animation="from-top"] { - animation: from-top 0.3s linear 0s forwards; - -webkit-animation: from-top 0.3s linear 0s forwards; - -moz-animation: from-top 0.3s linear 0s forwards; -} -.notification.notification--reveal[data-animation="from-left"] { - animation: from-left 0.3s linear 0s forwards; - -webkit-animation: from-left 0.3s linear 0s forwards; - -moz-animation: from-left 0.3s linear 0s forwards; -} -.notification.notification--reveal[data-animation="from-right"] { - animation: from-right 0.3s linear 0s forwards; - -webkit-animation: from-right 0.3s linear 0s forwards; - -moz-animation: from-right 0.3s linear 0s forwards; -} -.notification.notification--dismissed { - animation: fade-out 0.4s linear 0s forwards !important; - -webkit-animation: fade-out 0.4s linear 0s forwards !important; - -moz-animation: fade-out 0.4s linear 0s forwards !important; - pointer-events: none; -} -.bg--dark + .notification-close-cross:before { - color: #fff; -} -a[data-notification-link] { - text-decoration: none; -} -a[data-notification-link]:hover { - text-decoration: none; -} -@media all and (max-width: 767px) { - .notification[class*='col-'] { - min-width: 0; - } -} -@keyframes from-bottom { - from { - transform: translate3d(0, 100%, 0); - -webkit-transform: translate3d(0, 100%, 0); - opacity: 0; - } - to { - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); - opacity: 1; - } -} -@-moz-keyframes from-bottom { - from { - transform: translate3d(0, 100%, 0); - -webkit-transform: translate3d(0, 100%, 0); - opacity: 0; - } - to { - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); - opacity: 1; - } -} -@-webkit-keyframes from-bottom { - from { - transform: translate3d(0, 100%, 0); - -webkit-transform: translate3d(0, 100%, 0); - opacity: 0; - } - to { - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); - opacity: 1; - } -} -@keyframes from-top { - from { - transform: translate3d(0, -100%, 0); - -webkit-transform: translate3d(0, -100%, 0); - opacity: 0; - } - to { - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); - opacity: 1; - } -} -@-moz-keyframes from-top { - from { - transform: translate3d(0, -100%, 0); - -webkit-transform: translate3d(0, -100%, 0); - opacity: 0; - } - to { - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); - opacity: 1; - } -} -@-webkit-keyframes from-top { - from { - transform: translate3d(0, -100%, 0); - -webkit-transform: translate3d(0, -100%, 0); - opacity: 0; - } - to { - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); - opacity: 1; - } -} -@keyframes from-left { - from { - transform: translate3d(-100%, 0, 0); - -webkit-transform: translate3d(-100%, 0, 0); - opacity: 0; - } - to { - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); - opacity: 1; - } -} -@-moz-keyframes from-left { - from { - transform: translate3d(-100%, 0, 0); - -webkit-transform: translate3d(-100%, 0, 0); - opacity: 0; - } - to { - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); - opacity: 1; - } -} -@-webkit-keyframes from-left { - from { - transform: translate3d(-100%, 0, 0); - -webkit-transform: translate3d(-100%, 0, 0); - opacity: 0; - } - to { - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); - opacity: 1; - } -} -@keyframes from-right { - from { - transform: translate3d(100%, 0, 0); - -webkit-transform: translate3d(100%, 0, 0); - opacity: 1; - } - to { - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); - opacity: 1; - } -} -@-moz-keyframes from-right { - from { - transform: translate3d(100%, 0, 0); - -webkit-transform: translate3d(100%, 0, 0); - opacity: 0; - } - to { - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); - opacity: 1; - } -} -@-webkit-keyframes from-right { - from { - transform: translate3d(100%, 0, 0); - -webkit-transform: translate3d(100%, 0, 0); - opacity: 0; - } - to { - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); - opacity: 1; - } -} -@keyframes fade-out { - 0% { - opacity: 1; - } - 100% { - opacity: 0; - } -} -@-webkit-keyframes fade-out { - 0% { - opacity: 1; - } - 100% { - opacity: 0; - } -} -@-moz-keyframes fade-out { - 0% { - opacity: 1; - } - 100% { - opacity: 0; - } -} -/**! 25. Video **/ -iframe { - width: 100%; - min-height: 350px; - border: none; -} -@media all and (max-width: 767px) { - iframe { - min-height: 220px; - } -} -.videobg { - background: #252525; - position: relative; - overflow: hidden; -} -.videobg .container, -.videobg .background-image-holder { - opacity: 0; - transition: 0.3s linear; - -webkit-transition: 0.3s linear; - -moz-transition: 0.3s linear; -} -.videobg .background-image-holder { - opacity: 0 !important; -} -.videobg.video-active .container { - opacity: 1; -} -.videobg.video-active .loading-indicator { - opacity: 0; - visibility: hidden; -} -.videobg video { - object-fit: cover; - height: 100%; - min-width: 100%; - position: absolute; - top: 0; - z-index: 0 !important; - left: 0; -} -@media all and (max-width: 1024px) { - .videobg .background-image-holder, - .videobg .container { - opacity: 1 !important; - } - .videobg .loading-indicator { - display: none; - } - .videobg video { - display: none; - } -} -.youtube-background { - position: absolute; - height: 100%; - width: 100%; - top: 0; - z-index: 0 !important; -} -.youtube-background .mb_YTPBar { - opacity: 0; - height: 0; - visibility: hidden; -} -@media all and (max-width: 1024px) { - .youtube-background { - display: none; - } -} -.loading-indicator { - position: absolute !important; - top: 50%; - left: 50%; - z-index: 99 !important; - width: 50px; - height: 50px; - margin-top: -25px; - margin-left: -25px; - background-color: #fff; - border-radius: 100%; - -webkit-animation: loading-spinner 1s infinite ease-in-out; - animation: loading-spinner 1s infinite ease-in-out; - transition: 0.3s linear; - -webkit-transition: 0.3s linear; - -moz-transition: 0.3s linear; -} -@-webkit-keyframes loading-spinner { - 0% { - -webkit-transform: scale(0); - } - 100% { - -webkit-transform: scale(1); - opacity: 0; - } -} -@keyframes loading-spinner { - 0% { - -webkit-transform: scale(0); - transform: scale(0); - } - 100% { - -webkit-transform: scale(1); - transform: scale(1); - opacity: 0; - } -} -.video-cover { - position: relative; -} -.video-cover video { - max-width: 100%; -} -.video-cover iframe { - background: #252525; -} -.video-cover .background-image-holder { - z-index: 3; -} -.video-cover .video-play-icon { - position: absolute; - top: 50%; - left: 50%; - transform: translate3d(-50%, -50%, 0); - -webkit-transform: translate3d(-50%, -50%, 0); -} -.video-cover .video-play-icon, -.video-cover .background-image-holder { - transition: 0.3s linear; - -webkit-transition: 0.3s linear; - -moz-transition: 0.3s linear; -} -.video-cover.reveal-video .video-play-icon, -.video-cover.reveal-video .background-image-holder { - opacity: 0 !important; - pointer-events: none; -} -.video-cover[data-scrim-bottom]:before, -.video-cover[data-overlay]:before, -.video-cover[data-scrim-top]:before { - transition: 0.3s linear; - -webkit-transition: 0.3s linear; - -moz-transition: 0.3s linear; - z-index: 4; -} -.video-cover.reveal-video[data-scrim-bottom]:before, -.video-cover.reveal-video[data-overlay]:before, -.video-cover.reveal-video[data-scrim-top]:before { - opacity: 0; - pointer-events: none; -} -.video-play-icon { - width: 7.42857143em; - height: 7.42857143em; - border-radius: 50%; - position: relative; - z-index: 4; - display: inline-block; - border: 2px solid #ffffff; - cursor: pointer; - background: #ffffff; -} -.video-play-icon.video-play-icon--sm { - width: 3.71428571em; - height: 3.71428571em; -} -.video-play-icon.video-play-icon--sm:before { - border-width: 4px 0 4px 9px; -} -.video-play-icon.video-play-icon--xs { - width: 1.85714286em; - height: 1.85714286em; -} -.video-play-icon.video-play-icon--xs:before { - border-width: 3px 0 3px 6px; - margin-left: -3px; -} -.video-play-icon.bg--primary:before { - border-color: transparent transparent transparent #fff; -} -.video-play-icon:before { - position: absolute; - top: 50%; - margin-top: -5px; - left: 50%; - margin-left: -4px; - content: ''; - width: 0; - height: 0; - border-style: solid; - border-width: 6px 0 6px 12px; - border-color: transparent transparent transparent #ffffff; - border-color: transparent transparent transparent #808080; -} -.video-play-icon.video-play-icon--dark { - border-color: #252525; - background: #252525; -} -.video-play-icon.video-play-icon--dark:before { - border-color: transparent transparent transparent #252525; -} -.video-play-icon.video-play-icon--dark:before { - border-color: transparent transparent transparent #fff; -} -@media all and (max-width: 767px) { - .video-play-icon { - width: 4.95238095em; - height: 4.95238095em; - } -} -div[class*='col-'][class*='-12']:not([class*='xs-12']) .video-cover iframe { - min-height: 550px; -} -@media all and (max-width: 990px) { - div[class*='col-'][class*='-12']:not([class*='xs-12']) .video-cover iframe { - min-height: 350px; - } -} -div[class*='col-'][class*='-10'] .video-cover iframe { - min-height: 450px; -} -div[class*='col-'][class*='-8'] .video-cover iframe { - min-height: 400px; -} -div[class*='col-'][class*='-6'] .video-cover iframe { - min-height: 350px; -} -@media all and (max-width: 1200px) { - div[class*='col-'][class*='-6'] .video-cover iframe { - min-height: 300px; - } -} -@media all and (max-width: 990px) { - div[class*='col-'][class*='-6'] .video-cover iframe { - min-height: 220px; - } -} -@media all and (max-width: 767px) { - div[class*='col-'] .video-cover iframe { - min-height: 220px !important; - } -} -.modal-container video { - max-width: 100%; -} -/**! 26. Colors **/ -body { - background: #ffffff; -} -.color--primary { - color: #7adfbb !important; -} -a { - color: #7adfbb; -} -.color--primary-1 { - color: #4c8577 !important; -} -.color--primary-2 { - color: #493843 !important; -} -.color--white { - color: #fff; -} -.color--dark { - color: #252525; -} -.color--success { - color: #4ebf56; -} -.color--error { - color: #e23636; -} -.bg--dark { - background: #252525; -} -.bg--dark:not(.nav-bar):not(.bar) { - color: #ffffff; -} -.bg--dark:not(.nav-bar):not(.bar) h1, -.bg--dark:not(.nav-bar):not(.bar) h2, -.bg--dark:not(.nav-bar):not(.bar) h3, -.bg--dark:not(.nav-bar):not(.bar) h4, -.bg--dark:not(.nav-bar):not(.bar) h5, -.bg--dark:not(.nav-bar):not(.bar) h6, -.bg--dark:not(.nav-bar):not(.bar) i, -.bg--dark:not(.nav-bar):not(.bar) span:not(.btn__text), -.bg--dark:not(.nav-bar):not(.bar) p { - color: #ffffff; -} -.bg--dark:not(.nav-bar):not(.bar) a:not(.btn) { - color: #fff; -} -.bg--site { - background: #ffffff; -} -.bg--secondary { - background: #fafafa; -} -.bg--primary { - background: #7adfbb; -} -.bg--primary p, -.bg--primary span, -.bg--primary ul, -.bg--primary a:not(.btn) { - color: #fff; -} -.bg--primary h1, -.bg--primary h2, -.bg--primary h3, -.bg--primary h4, -.bg--primary h5, -.bg--primary h6, -.bg--primary i { - color: #fff; -} -.bg--primary .color--primary { - color: #fff !important; -} -.bg--white { - background: #fff; -} -.bg--white p, -.bg--white span, -.bg--white ul, -.bg--white a:not(.btn) { - color: #666666; -} -.bg--white h1, -.bg--white h2, -.bg--white h3, -.bg--white h4, -.bg--white h5, -.bg--white h6, -.bg--white i { - color: #252525; -} -.bg--error { - background: #e23636; -} -.bg--success { - background: #4ebf56; -} -.imagebg:not(.image--light) .bg--white p, -.imagebg:not(.image--light) .bg--white span, -.imagebg:not(.image--light) .bg--white ul, -.imagebg:not(.image--light) .bg--white a:not(.btn) { - color: #666666; -} -.imagebg:not(.image--light) .bg--white h1, -.imagebg:not(.image--light) .bg--white h2, -.imagebg:not(.image--light) .bg--white h3, -.imagebg:not(.image--light) .bg--white h4, -.imagebg:not(.image--light) .bg--white h5, -.imagebg:not(.image--light) .bg--white h6, -.imagebg:not(.image--light) .bg--white i { - color: #252525; -} -.imagebg:not(.image--light) .bg--secondary { - background: rgba(250, 250, 250, 0.2); -} -.bg--primary-1 { - background: #4c8577; -} -.bg--primary-1 p, -.bg--primary-1 span, -.bg--primary-1 ul, -.bg--primary-1 a:not(.btn) { - color: #fff; -} -.bg--primary-1 h1, -.bg--primary-1 h2, -.bg--primary-1 h3, -.bg--primary-1 h4, -.bg--primary-1 h5, -.bg--primary-1 h6, -.bg--primary-1 i { - color: #fff; -} -.bg--primary-2 { - background: #493843; -} -.bg--primary-2 p, -.bg--primary-2 span, -.bg--primary-2 ul, -.bg--primary-2 a:not(.btn) { - color: #fff; -} -.bg--primary-2 h1, -.bg--primary-2 h2, -.bg--primary-2 h3, -.bg--primary-2 h4, -.bg--primary-2 h5, -.bg--primary-2 h6, -.bg--primary-2 i { - color: #fff; -} -.image-bg:not(.image-light) *:not(a) { - color: #fff; -} -.color--facebook { - color: #3b5998; -} -.color--twitter { - color: #00aced; -} -.color--googleplus { - color: #dd4b39; -} -.color--instagram { - color: #125688; -} -.color--pinterest { - color: #cb2027; -} -.color--dribbble { - color: #ea4c89; -} -.color--behance { - color: #053eff; -} -.bg--facebook { - background: #3b5998; - color: #fff; -} -.bg--twitter { - background: #00aced; - color: #fff; -} -.bg--googleplus { - background: #dd4b39; - color: #fff; -} -.bg--instagram { - background: #125688; - color: #fff; -} -.bg--pinterest { - background: #cb2027; - color: #fff; -} -.bg--dribbble { - background: #ea4c89; - color: #fff; -} -.bg--behance { - background: #053eff; - color: #fff; -} -/**! 27. Image Blocks **/ -.imageblock { - position: relative; - padding: 0; -} -.imageblock > .container, -.imageblock > div[class*='col-']:not(.imageblock__content) { - padding-top: 7.42857143em; - padding-bottom: 7.42857143em; - float: none; - overflow: hidden; -} -.imageblock.imageblock--lg > .container, -.imageblock.imageblock--lg > div[class*='col-']:not(.imageblock__content) { - padding-top: 9.28571429em; - padding-bottom: 9.28571429em; - float: none; - overflow: hidden; -} -.imageblock .imageblock__content { - position: absolute; - height: 100%; - top: 0; - z-index: 2; - padding: 0; -} -.imageblock .imageblock__content .slider { - position: absolute; - width: 100%; - height: 100%; - top: 0; -} -.imageblock .imageblock__content .slider .slides > li { - padding: 0; - min-height: 100%; - position: absolute !important; -} -.imageblock.allow-overflow .imageblock__content { - overflow: visible; -} -@media all and (max-height: 728px) { - .imageblock > .container, - .imageblock > div[class*='col-']:not(.imageblock__content) { - padding-top: 3.71428571em; - padding-bottom: 3.71428571em; - } -} -@media all and (max-width: 767px) { - .imageblock[class*='space-'] { - padding-bottom: 0; - padding-top: 0; - } - .imageblock .imageblock__content { - position: relative; - min-height: 18.57142857em; - } - .imageblock > .container, - .imageblock > div[class*='col-']:not(.imageblock__content) { - padding-top: 5.57142857em; - padding-bottom: 5.57142857em; - float: none; - overflow: hidden; - } - .imageblock.imageblock--lg > .container, - .imageblock.imageblock--lg > div[class*='col-']:not(.imageblock__content) { - padding-top: 5.57142857em; - padding-bottom: 5.57142857em; - float: none; - overflow: hidden; - } -} -/**! 28. MailChimp & Campaign Monitor **/ -form[action*='createsend.com'] * { - transition: 0.3s linear; - -webkit-transition: 0.3s linear; - -moz-transition: 0.3s linear; - opacity: 0; -} -form[action*='createsend.com'].form--active * { - opacity: 1; -} -form[action*='createsend.com'] .input-checkbox + br { - display: none; -} -form[action*='createsend.com'].no-labels label { - display: none; -} -form[action*='createsend.com'] br { - display: none; -} -form[action*='createsend.com'] p > label:first-child { - margin-bottom: 0.92857143em; -} -form[action*='list-manage.com'] h2 { - font-family: 'Open Sans', 'Helvetica', 'Arial', sans-serif; - color: #252525; - font-weight: 300; - font-variant-ligatures: common-ligatures; - margin-top: 0; - margin-bottom: 0; - font-size: 1.35714286em; - line-height: 1.36842105em; - margin-bottom: 1.36842105263158em; - font-weight: 400; -} -form[action*='list-manage.com'] h2.inline-block + .h4.inline-block:not(.typed-text) { - margin-left: 0.68421052631579em; -} -form[action*='list-manage.com'] .input-group ul { - overflow: hidden; -} -form[action*='list-manage.com'] .input-group ul li { - float: left; -} -form[action*='list-manage.com'] * { - transition: 0.3s linear; - -webkit-transition: 0.3s linear; - -moz-transition: 0.3s linear; - opacity: 0; -} -form[action*='list-manage.com'].form--active * { - opacity: 1; -} -form[action*='list-manage.com'].no-labels label { - display: none; -} -form[action*='list-manage.com'] .small-meta { - font-size: 0.5em; -} -/**! 29. Twitter **/ -.twitter-feed .user { - display: none; -} -.twitter-feed .interact { - display: none; -} -.twitter-feed .timePosted { - font-size: .87em; -} -/**! 30. Transitions **/ -[class*='transition--'] { - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; - opacity: 0; -} -[class*='transition--'].transition--active { - opacity: 1; -} -.transition--scale { - transform: scale(0.98); - -webkit-transform: scale(0.98); -} -.transition--scale.transition--active { - opacity: 1; - transform: scale(1); - -webkit-transform: scale(1); -} -.transition--slide { - transform: translate3d(200px, 0, 0); - -webkit-transform: translate3d(200px, 0, 0); - transform: translate3d(30vw, 0, 0); - -webkit-transform: translate3d(30vw, 0, 0); -} -.transition--slide.transition--active { - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); -} -/**! 31. Switchable Sections **/ -.switchable { - position: relative; -} -.switchable div[class*='col-']:first-child { - float: left; - right: auto; -} -.switchable div[class*='col-']:first-child:not([class*='pull']):not([class*='push']) { - left: 0; -} -.switchable div[class*='col-']:last-child { - float: right; - left: auto; -} -.switchable div[class*='col-']:last-child:not([class*='pull']):not([class*='push']) { - right: 0; -} -.switchable.switchable--switch div[class*='col-']:first-child { - float: right; - right: 0; - left: auto; -} -.switchable.switchable--switch div[class*='col-']:first-child:not([class*='pull']):not([class*='push']) { - left: auto; -} -.switchable.switchable--switch div[class*='col-']:last-child { - float: left; - left: 0; - right: auto; -} -.switchable .switchable__text { - margin-top: 3.71428571em; -} -.switchable > div[class*='col-'] { - padding: 0; -} -/**! 32. Typed Effect **/ -.typed-text { - display: inline-block; -} -.typed-text.typed-text--cursor:after { - content: '|'; - font-size: 1.2em; - -webkit-animation: blink 0.7s infinite; - animation: blink 0.7s infinite; - position: relative; - right: 6px; -} -@keyframes blink { - 0% { - opacity: 1; - } - 50% { - opacity: 0; - } - 100% { - opacity: 1; - } -} -@-webkit-keyframes blink { - 0% { - opacity: 1; - } - 50% { - opacity: 0; - } - 100% { - opacity: 1; - } -} -/**! 33. Gradient BG **/ -[data-gradient-bg] { - position: relative; - background: #252525; -} -[data-gradient-bg] > canvas { - position: absolute; - width: 100%; - height: 100%; - top: 0; - left: 0; -} -[data-gradient-bg] > canvas + .background-image-holder { - opacity: .2 !important; -} -/**! 34. Bars **/ -.bar { - padding: 1.85714286em 0; -} -.bar .logo { - margin: 0; - position: relative; - top: 4px; -} -.bar .menu-horizontal { - position: relative; - top: 6px; -} -.bar:not([class*='visible-']) + .bar { - margin-top: 0.92857143em; -} -.bar.bar--xs { - padding: 0.46428571em 0; -} -.bar.bar--sm { - padding: 0.92857143em 0; -} -.bar.bar--lg { - padding: 2.78571429em 0; -} -.bar.bar--lg .logo { - top: 0; -} -.bar.bar--xlg { - padding: 4.64285714em 0; -} -.bar.bar--xlg .logo { - top: 0; -} -.bar.bg--dark .logo-dark { - display: none; -} -.bar:not(.bg--dark):not(.bar--transparent) .logo-light { - display: none; -} -@media all and (max-width: 767px) { - .bar.bar--mobile-sticky[data-scroll-class*='fixed'].pos-fixed { - position: fixed; - width: 100%; - background: #fff; - z-index: 999; - } - .bar.bar--mobile-sticky[data-scroll-class*='fixed'] + .bar.pos-fixed { - top: 3.71428571em; - position: fixed; - width: 100%; - background: #fff; - z-index: 999; - } -} -@media all and (min-width: 991px) { - .bar__module:not(:only-child) { - display: inline-block; - } - .bar__module:not(:last-child) { - margin-right: 0.92857143em; - } - .bar--transparent:not(.bar--dark) { - background: none; - } - .bar--transparent:not(.bar--dark) .logo-dark { - display: none; - } - .bar--transparent:not(.bar--dark) .logo-light { - display: inline-block; - } - .bar--transparent:not(.bar--dark):not(.pos-fixed) .menu-horizontal > li > a, - .bar--transparent:not(.bar--dark):not(.pos-fixed) .menu-horizontal > li > span { - color: #fff; - } - .bar--transparent:not(.bar--dark):not(.pos-fixed) .btn:not([class*='primary']) { - border-color: rgba(255, 255, 255, 0.3); - } - .bar--transparent:not(.bar--dark):not(.pos-fixed) .btn:not([class*='primary']) .btn__text { - color: #fff; - } - .bar--transparent:not(.bar--dark):not(.pos-fixed) .btn:not([class*='primary']):hover { - border-color: rgba(255, 255, 255, 0.7); - } - .bar--absolute { - position: absolute; - } - .bar--absolute, - .pos-fixed { - z-index: 99; - width: 100%; - } - .bar.pos-fixed { - position: fixed; - top: 0; - animation: fadeInDown 0.3s ease-out forwards; - box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); - box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.04); - } - .bar.pos-fixed:not([class*='bg-']) { - background: #ffffff; - } - .bar.pos-fixed:not([class*='bg-']) .logo-dark { - display: inline-block; - } - .bar.pos-fixed:not([class*='bg-']) .logo-light { - display: none; - } - .bar.pos-fixed.bg--dark { - background: #252525; - } -} -@media all and (max-width: 767px) { - .bar__module { - margin-bottom: 0.92857143em; - } - .bar__module + .bar__module { - margin-top: 1.85714286em; - } - .bar__module .btn { - display: block; - } - .bar__module .btn + .btn { - margin-left: 0 !important; - } - .bar__module .btn:not(:last-child) { - margin-bottom: 0.92857143em; - } - .bar + nav.bar { - padding-top: 0; - } -} -/**! 35. Navigation InPage **/ -.page-navigator { - position: fixed; - padding: 0; - top: 50%; - transform: translateY(-50%); - right: 1.85714286em; - z-index: 10; -} -.page-navigator ul { - display: inline-block; - padding: 0.92857143em; - background: rgba(0, 0, 0, 0.4); - border-radius: 1.85714286em; - transition: all .2s ease; -} -.page-navigator ul:hover { - background: rgba(0, 0, 0, 0.6); -} -.page-navigator ul li:not(:last-child) { - margin-bottom: 1.85714286em; -} -@media all and (max-width: 767px) { - .page-navigator { - right: 0; - } - .page-navigator ul { - border-radius: 1.85714286em 0 0 1.85714286em; - padding: 1.85714286em 0.92857143em; - } -} -.page-navigator li a { - width: 8px; - height: 8px; - background: #fff; - border-radius: 50%; - transition: all .2s ease; - display: block; - position: relative; -} -.page-navigator li a:not(:hover) { - opacity: .5; -} -.page-navigator li a.inner-link--active { - opacity: 1; - animation: bulge .5s ease; - -webkit-animation: bulge .5s ease; -} -@keyframes bulge { - 0% { - transform: scale(1); - } - 50% { - transform: scale(1.3); - } - 100% { - transform: scale(1); - } -} -@-webkit-keyframes bulge { - 0% { - transform: scale(1); - } - 50% { - transform: scale(1.3); - } - 100% { - transform: scale(1); - } -} -.page-navigator li a[data-title]:before { - content: attr(data-title); - position: absolute; - right: 12px; - top: -14px; - background: #222; - color: #fff; - border-radius: 6px; - padding: 4px 8px; - display: inline-block; - transition: all .2s ease; - white-space: nowrap; -} -.page-navigator li a[data-title]:not(:hover):before { - opacity: 0; - transform: translateX(-20px); -} -/**! 36. Helper Classes **/ -.clearfix { - overflow: hidden; -} -.clearfix-after:after { - content: ""; - display: table; - clear: both; -} -.allow-overflow { - overflow: visible; -} -.container .row--gapless { - padding-left: 15px; - padding-right: 15px; -} -.container .row--gapless > div[class*='col-'] { - padding: 0; -} -@media all and (max-width: 767px) { - .text-left-xs { - text-align: left; - } -} -@media all and (max-width: 991px) { - .text-left-sm { - text-align: left; - } -} -section > .row--gapless { - padding-left: 0; - padding-right: 0; -} -section > .row--gapless > div[class*='col-'] { - padding: 0; -} -div.right { - float: right; -} -div.left { - float: left; -} -section.text-right > .container:last-child > .row:only-child > div[class*='col-']:only-child { - float: right; -} -/**! 37. Spacing **/ -section, -footer { - padding-top: 7.42857143em; - padding-bottom: 7.42857143em; -} -section.space--xxs, -footer.space--xxs { - padding-top: 1.85714286em; - padding-bottom: 1.85714286em; -} -section.space--xs, -footer.space--xs { - padding-top: 3.71428571em; - padding-bottom: 3.71428571em; -} -section.space--sm, -footer.space--sm { - padding-top: 4.95238095em; - padding-bottom: 4.95238095em; -} -section.space--md, -footer.space--md { - padding-top: 11.14285714em; - padding-bottom: 11.14285714em; -} -section.space--lg, -footer.space--lg { - padding-top: 14.85714286em; - padding-bottom: 14.85714286em; -} -section.space--xlg, -footer.space--xlg { - padding-top: 29.71428571em; - padding-bottom: 29.71428571em; -} -section.space--0, -footer.space--0 { - padding: 0; -} -section.section--even, -footer.section--even { - padding-top: 7.42857143em; - padding-bottom: 7.42857143em; -} -section.space-bottom--sm, -footer.space-bottom--sm { - padding-bottom: 4.95238095em; -} -@media all and (max-width: 767px) { - section, - footer, - section.section--even { - padding: 5.57142857em 0; - } - section.space--lg, - footer.space--lg, - section.section--even.space--lg, - section.space--md, - footer.space--md, - section.section--even.space--md { - padding: 5.57142857em 0; - } - section.space--xlg, - footer.space--xlg, - section.section--even.space--xlg { - padding: 8.35714286em 0; - } -} -div[class*='col-'] > div[class*='col-']:first-child { - padding-left: 0; -} -div[class*='col-'] > div[class*='col-']:last-child { - padding-right: 0; -} -@media all and (max-width: 767px) { - .col-xs-6:nth-child(odd) { - padding-right: 7.5px; - } - .col-xs-6:nth-child(even) { - padding-left: 7.5px; - } -} -@media all and (min-width: 768px) { - .mt--1 { - margin-top: 1.85714286em; - } - .mt--2 { - margin-top: 3.71428571em; - } - .mt--3 { - margin-top: 5.57142857em; - } - .mb--1 { - margin-bottom: 1.85714286em; - } - .mb--2 { - margin-bottom: 3.71428571em; - } - .mb--3 { - margin-bottom: 5.57142857em; - } -} -@media all and (max-width: 990px) { - .mt--1, - .mt--2 { - margin-top: 1.85714286em; - } - .mt--3 { - margin-top: 2.78571429em; - } -} -.unpad { - padding: 0; -} -.unpad--bottom { - padding-bottom: 0; -} -.unpad--top { - padding-top: 0; -} -section.unpad--bottom { - padding-bottom: 0; -} -section.unpad { - padding: 0; -} -section.unpad--top { - padding-top: 0; -} -.unmarg--bottom { - margin-bottom: 0; -} -.unmarg { - margin: 0; -} -.unmarg--top { - margin-top: 0; -} -/**! 38. Boxed Layout **/ -@media all and (min-width: 1280px) { - body.boxed-layout { - padding: 3.71428571em 0; - background: #ededed; - } - body.boxed-layout section:not([class*='bg-']):not(.imagebg), - body.boxed-layout footer:not([class*='bg-']):not(.imagebg), - body.boxed-layout nav:not([class*='bg-']):not(.bar--transparent):not(.bar--absolute), - body.boxed-layout .tabs-container:not([class*='bg-']):not(.imagebg) { - background: #ffffff; - } - body.boxed-layout .nav-container, - body.boxed-layout .main-container, - body.boxed-layout > section, - body.boxed-layout nav { - max-width: 1280px; - margin: 0 auto; - } -} -/**! 39. Wizard **/ -.wizard__body { - list-style: none; -} -.wizard__step:not(.active) { - display: none; -} -.wizard__step .wizard__title { - display: none; -} -.wizard__controls { - overflow: hidden; -} -.wizard__controls .wizard-prev { - float: left; -} -.wizard__controls .wizard-next { - float: right; -} -.wizard__controls .wizard-prev:hover, -.wizard__controls .wizard-next:hover { - transform: none !important; -} -.wizard__controls .wizard-prev.inactive, -.wizard__controls .wizard-next.inactive { - pointer-events: none; - opacity: .3; - cursor: not-allowed; -} -/**! 40. Alerts **/ -.alert { - overflow: hidden; - border: 1px solid #e6e6e6; - padding: 0.92857143em; -} -.alert .alert__body, -.alert .alert__close { - display: inline-block; - user-select: none; -} -.alert .alert__body { - float: left; -} -.alert .alert__close { - float: right; - cursor: pointer; -} -.alert.bg--error { - background: #fce8e8; - border-color: #e23636; -} -.alert.bg--error .alert__close { - color: #e23636; -} -.alert.bg--success { - background: #e4f5e5; - border-color: #4ebf56; -} -.alert.bg--success .alert__close { - color: #4ebf56; -} -.alert.bg--primary { - background: #ffffff; - border-color: #7adfbb; -} -.alert.bg--primary .alert__body > span { - color: #666666; -} -.alert.bg--primary .alert__close { - color: #7adfbb; -} -.alert.alert--dismissed { - display: none; -} -/**! 41. Progress - Horizontal **/ -.progress-horizontal:after { - content: ""; - display: table; - clear: both; -} -.progress-horizontal .progress-horizontal__bar { - position: relative; - overflow: hidden; -} -.progress-horizontal .progress-horizontal__progress { - position: absolute; - top: 0; - left: 0; - height: 100%; -} -/**! 42. Theme Overrides **/ -/*! -- Stack Customizers -- */ -.box-shadow { - box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.04); -} -.box-shadow-shallow { - box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.06); -} -.box-shadow-wide { - box-shadow: 0 23px 40px rgba(0, 0, 0, 0.2); -} -.border--round { - border-radius: 6px; -} -.border--round:before { - border-radius: 6px; -} -.border--round .background-image-holder { - border-radius: 6px; -} -.border--round [data-scrim-top]:before, -.border--round [data-scrim-bottom]:before, -.border--round [data-overlay]:before { - border-radius: 6px; -} -.imageblock.border--round .background-image-holder { - border-radius: 6px 0 0 6px; -} -@media all and (max-width: 767px) { - .imageblock.border--round .background-image-holder { - border-radius: 6px 6px 0 0; - } -} -.theme--square .border--round, -.theme--square .btn { - border-radius: 0px; -} -.theme--bordered { - border: 0.92857143em solid #252525; -} -.main-container.transition--fade:not(.transition--active) { - cursor: wait; -} -@media all and (min-width: 1280px) { - body.boxed-layout > section.bar-3:first-of-type { - border-radius: 6px 6px 0 0; - } - body.boxed-layout .main-container > footer:last-child { - border-radius: 0 0 6px 6px; - } -} -body.boxed-layout .modal-container section:not([class*='bg-']) { - background: none; -} -/*! -- Stack Helpers -- */ -@media all and (max-width: 767px) { - .block--xs { - margin-top: 0.92857143em; - } -} -.container .container { - max-width: 100%; -} -.switchable-toggle { - cursor: pointer; - user-select: none; - -webkit-user-select: none; -} -.back-to-top { - position: fixed; - width: 3.71428571em; - height: 3.71428571em; - background: #fff; - border-radius: 50%; - text-align: center; - right: 1.85714286em; - bottom: 3.71428571em; - padding-top: 12px; - box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); - box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.04); - z-index: 99; - border: 1px solid #ececec; - transition: 0.2s ease-out; - -webkit-transition: 0.2s ease-out; - -moz-transition: 0.2s ease-out; -} -.back-to-top i { - color: #252525; -} -.back-to-top:not(.active) { - opacity: 0; - transform: translate3d(0, 20px, 0); - -webkit-transform: translate3d(0, 20px, 0); - pointer-events: none; -} -.back-to-top.active:hover { - transform: translate3d(0, -5px, 0); - -webkit-transform: translate3d(0, -5px, 0); -} -.disable-scroll-bars { - -ms-overflow-style: none; -} -.disable-scroll-bars::-webkit-scrollbar { - display: none; -} -/*! -- Stack Animations -- */ -@keyframes fadeInUp { - from { - opacity: 0; - transform: translate3d(0, 50px, 0); - -webkit-transform: translate3d(0, 50px, 0); - } - to { - opacity: 1; - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); - -webkit-font-smoothing: antialiased; - } -} -@-webkit-keyframes fadeInUp { - from { - opacity: 0; - transform: translate3d(0, 50px, 0); - -webkit-transform: translate3d(0, 50px, 0); - } - to { - opacity: 1; - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); - -webkit-font-smoothing: antialiased; - } -} -@keyframes fadeInDown { - from { - opacity: 0; - transform: translate3d(0, -100px, 0); - -webkit-transform: translate3d(0, -100px, 0); - } - to { - opacity: 1; - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); - -webkit-font-smoothing: antialiased; - } -} -@-webkit-keyframes fadeInDown { - from { - opacity: 0; - transform: translate3d(0, -100px, 0); - -webkit-transform: translate3d(0, -100px, 0); - } - to { - opacity: 1; - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); - -webkit-font-smoothing: antialiased; - } -} -@keyframes fadeOutUp { - from { - opacity: 1; - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); - } - to { - opacity: 0; - transform: translate3d(0, -50px, 0); - -webkit-transform: translate3d(0, -50px, 0); - -webkit-font-smoothing: antialiased; - } -} -@-webkit-keyframes fadeOutUp { - from { - opacity: 1; - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); - } - to { - opacity: 0; - transform: translate3d(0, -50px, 0); - -webkit-transform: translate3d(0, -50px, 0); - -webkit-font-smoothing: antialiased; - } -} -@keyframes fadeOutRight { - from { - opacity: 1; - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); - } - to { - opacity: 0; - transform: translate3d(50px, 0, 0); - -webkit-transform: translate3d(50px, 0, 0); - -webkit-font-smoothing: antialiased; - } -} -@-webkit-keyframes fadeOutRight { - from { - opacity: 1; - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); - } - to { - opacity: 0; - transform: translate3d(50px, 0, 0); - -webkit-transform: translate3d(50px, 0, 0); - -webkit-font-smoothing: antialiased; - } -} -@keyframes fadeInLeft { - from { - opacity: 0; - transform: translate3d(-50px, 0, 0); - -webkit-transform: translate3d(-50px, 0, 0); - } - to { - opacity: 1; - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); - -webkit-font-smoothing: antialiased; - } -} -@-webkit-keyframes fadeInLeft { - from { - opacity: 0; - transform: translate3d(-50px, 0, 0); - -webkit-transform: translate3d(-50px, 0, 0); - } - to { - opacity: 1; - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); - -webkit-font-smoothing: antialiased; - } -} -@keyframes pulse { - 0% { - opacity: 0; - transform: scale(1); - -webkit-transform: scale(1); - } - 50% { - opacity: 1; - } - 100% { - opacity: 0; - transform: scale(2); - -webkit-transform: scale(2); - } -} -@-webkit-keyframes pulse { - 0% { - opacity: 0; - transform: scale(1); - -webkit-transform: scale(1); - } - 50% { - opacity: 1; - } - 100% { - opacity: 0; - transform: scale(2); - -webkit-transform: scale(2); - } -} -@keyframes kenBurns { - 0% { - transform: scale(1); - } - 100% { - transform: scale(1.1); - } -} -@-webkit-keyframes kenBurns { - 0% { - transform: scale(1); - } - 100% { - transform: scale(1.1); - } -} -/*! -- Stack Sections -- */ -section:not(.unpad):not(.imagebg):not([class*='bg--']):not(.imageblock):not(.unpad--bottom):not(.border--bottom):not(.space--xxs) + section:not(.unpad):not(.imagebg):not([class*='bg--']):not(.imageblock):not(.border--bottom):not(.space--xxs) { - padding-top: 0; -} -section:not(.unpad):not(.imagebg):not([class*='bg--']):not(.imageblock):not(.unpad--bottom):not(.border--bottom) + footer:not(.unpad):not(.imagebg):not([class*='bg--']):not(.imageblock):not(.unpad--bottom):not(.border--bottom) { - padding-top: 0; -} -section:not(.imagebg):not([class*='bg-']) + section.bg--secondary { - border-top: 1px solid #ebebeb; -} -section.bg--secondary:not(.imagebg) + section:not(.imagebg):not([class*='bg-']) { - border-top: 1px solid #ebebeb; -} -section.bg--secondary:not(.unpad):not(.imageblock):not(.unpad--bottom):not(.border--bottom) + section.bg--secondary { - padding-top: 0; -} -section.bg--secondary + footer:not(.bg--dark):not(.bg--secondary) { - border-top: 1px solid #ebebeb; -} -section.bg--dark + section.bg--dark { - padding-top: 0; -} -section.bg--dark:last-of-type + footer.bg--dark { - background: #1b1b1b; -} -section.border--bottom:not([data-gradient-bg]) { - border-bottom: 1px solid #ececec; -} -section.unpad { - overflow: hidden; -} -section:not([class*='bg--']) + footer.bg--secondary { - border-top: 1px solid #ebebeb; -} -section.text-center div[class*='col-']:first-child:last-child { - margin: 0 auto; - float: none; -} -.section--overlap { - z-index: 2; - position: relative; -} -/*! -- Stack Typography -- */ -@media all and (max-width: 1024px) { - html { - font-size: 80%; - } -} -h1, -.h1 { - letter-spacing: -0.01em; -} -h1:not(:last-child), -.h1:not(:last-child) { - margin-bottom: 0.59090909090909em; -} -@media all and (min-width: 768px) { - h1.h1--large, - .h1.h1--large { - font-weight: 200; - font-size: 4.428571428571429em; - line-height: 1.048387096774194em; - } - h1.h1--large:not(:last-child), - .h1.h1--large:not(:last-child) { - margin-bottom: 0.419354838709677em; - } - h1.h1--large.type--uppercase, - .h1.h1--large.type--uppercase { - letter-spacing: 10px; - margin-right: -10px; - } - h1.h1--large + p.lead, - .h1.h1--large + p.lead { - margin-top: 2.052631578947368em; - } -} -h2, -.h2 { - margin-bottom: 0.78787878787879em; -} -h3, -.h3 { - margin-bottom: 1.04em; -} -h3 strong, -.h3 strong { - font-weight: 400; -} -blockquote { - font-family: 'Merriweather', serif; - font-style: italic; - font-weight: 300; -} -blockquote:not(:last-child) { - margin-bottom: 1.04em; -} -blockquote > p { - font-size: 1em !important; -} -h4, -.h4 { - margin-bottom: 1.36842105263158em; - font-weight: 400; -} -h4.inline-block + .h4.inline-block:not(.typed-text), -.h4.inline-block + .h4.inline-block:not(.typed-text) { - margin-left: 0.68421052631579em; -} -h5, -.h5 { - font-weight: 600; -} -h5:not(:last-child), -.h5:not(:last-child) { - margin-bottom: 1.85714286em; -} -h6, -.h6 { - font-weight: 700; -} -h6:not(:last-child), -.h6:not(:last-child) { - margin-bottom: 2.16666666666667em; -} -h6.type--uppercase, -.h6.type--uppercase { - letter-spacing: 1px; - margin-right: -1px; -} -span.h1:not(.inline-block), -span.h2:not(.inline-block), -span.h3:not(.inline-block), -span.h4:not(.inline-block), -span.h5:not(.inline-block), -span.h6:not(.inline-block) { - display: block; -} -b { - font-weight: 600; -} -hr { - border-color: #ECECEC; -} -.bg--dark hr { - border-color: #585858; -} -[class*='bg-']:not(.bg--white):not(.bg--secondary) p, -[class*='imagebg']:not(.image--light) p { - opacity: .9; -} -.lead { - font-weight: 400; - color: #808080; -} -.lead:not(:last-child) { - margin-bottom: 1.36842105263158em; -} -.lead + .btn:last-child { - margin-top: 0.92857143em; -} -p:last-child { - margin-bottom: 0; -} -p strong { - color: #252525; -} -pre { - padding: 0.92857143em; - background: #fafafa; - border: 1px solid #ececec; - border-radius: 6px; - line-height: 20px; - max-height: 500px; -} -.bg--secondary > pre { - background: #f5f5f5; - border-color: #ddd; -} -.text-block:not(:last-child) { - margin-bottom: 1.85714286em; -} -.text-block h2, -.text-block .h2 { - margin-bottom: 0.3939393939394em; -} -.text-block h5, -.text-block .h5 { - margin: 0; -} -.text-block h4:not(:last-child), -.text-block .h4:not(:last-child) { - margin-bottom: 0.3421052631579em; -} -.text-block h3, -.text-block .h3 { - margin-bottom: 0.52em; -} -@media all and (min-width: 768px) { - div[class*='col-'] .text-block + .text-block { - margin-top: 3.71428571em; - } -} -.heading-block { - margin-bottom: 3.71428571em; -} -.heading-block h1, -.heading-block h2, -.heading-block h3, -.heading-block h4, -.heading-block h5, -.heading-block h6, -.heading-block .h1, -.heading-block .h2, -.heading-block .h3, -.heading-block .h4, -.heading-block .h5, -.heading-block .h6 { - margin-bottom: 0; -} -/*! -- Stack Colours -- */ -.bg--dark .bg--secondary { - background: #343434; -} -/*! -- Stack Links -- */ -a { - color: #7adfbb; - font-weight: 700; -} -a:hover { - color: #51d5a6; - text-decoration: underline; -} -a.block { - font-weight: normal; - text-decoration: none; - color: #666666; -} -p a, -span a, -label a { - font-size: 1em; - text-decoration: underline; - font-weight: 400; - line-height: 1.85714286em; -} -p + a:not(.btn) { - font-size: 0.85714286em; - line-height: 2.16666667em; -} -.imagebg:not(.image--light) a { - color: #fff; - font-weight: 600; -} -/*! -- Stack Tables -- */ -table { - width: 100%; - border-collapse: separate; -} -table th, -table td { - padding: 0.92857143em; -} -table th { - background: #fafafa; - color: #252525; -} -table tr:not(:last-of-type) { - border-bottom: 1px solid #ececec; -} -table.border--round { - border-radius: 6px; - border: 1px solid #ececec; -} -.table--alternate-column th:nth-child(odd) { - background: none; -} -.table--alternate-column td:nth-child(even) { - background: #fafafa; -} -.table--alternate-row tbody tr:nth-child(even) { - background: #fafafa; -} -.bg--dark table.border--round { - border-radius: 6px; - border: 1px solid #3f3f3f; -} -.bg--dark table th { - background: #3f3f3f; - color: #fff; -} -.bg--dark .table--alternate-row tbody tr:nth-child(even) { - background: #323232; -} -/*! -- Stack Lists -- */ -ul:not([class*='menu']) li > a { - font-weight: normal; -} -ul:not([class*='menu']) li > a:hover { - text-decoration: none; -} -ol { - list-style-position: outside; - list-style-type: decimal; -} -ol li:not(:last-child) { - margin-bottom: 1.85714286em; -} -ol.lead li:not(:last-child) { - margin-bottom: 1.26315789473684em; -} -.list-inline { - margin-left: 0; - display: inline-block; -} -.list-inline li { - padding: 0; -} -.list-inline li:not(:last-child) { - margin-right: 1.85714286em; -} -.list-inline:not(:last-child) { - margin-right: 1.85714286em; -} -.list-inline--images img { - max-height: 2.78571429em; -} -@media all and (min-width: 768px) { - .list-inline--images li:not(:last-child) { - margin-right: 5.57142857em; - } -} -@media all and (max-width: 767px) { - .list-inline--images li:not(:last-child) { - margin-bottom: 1.85714286em; - } -} -.list--loose > li:not(:last-child) { - margin-bottom: 0.46428571em; -} -.list--hover li { - transition: 0.2s ease; - -webkit-transition: 0.2s ease; - -moz-transition: 0.2s ease; -} -.list--hover li:not(:hover) { - opacity: .6; -} -.social-list a { - color: #252525; -} -.imagebg:not(.image--light) .social-list a { - color: #fff; -} -.results-list > li > a:first-child { - display: flex; - align-items: center; - margin-bottom: 0.92857143em; -} -.results-list > li > a:first-child span { - display: inline-block; - margin-left: 0.46428571em; -} -.results-list > li > a:first-child h4 { - display: inline-block; - margin-bottom: 0; -} -.results-list > li > a:first-child:hover h4, -.results-list > li > a:first-child:hover span { - text-decoration: underline; -} -.results-list > li:not(:last-child) { - margin-bottom: 1.85714286em; - padding-bottom: 1.85714286em; - border-bottom: 1px solid rgba(0, 0, 0, 0.1); -} -@media all and (max-width: 767px) { - .list-inline:not(.social-list):not(.list-inline--images) { - display: block; - } - .list-inline:not(.social-list):not(.list-inline--images) li { - display: block; - margin: 0; - } - .list-inline:not(.social-list):not(.list-inline--images) li:not(:last-child) { - margin-bottom: 0.46428571em; - } -} -@media all and (max-width: 767px) { - .list-inline { - min-width: 100%; - } -} -.row--list span.h6 { - margin-bottom: 0; -} -.row--list span.h3:last-child { - margin-bottom: 0; -} -@media all and (max-width: 767px) { - .row--list > li { - margin-bottom: 0.92857143em; - } -} -/*! -- Stack Rules -- */ -hr:first-child { - margin-top: 0; -} -hr.short { - width: 2.78571429em; - border-color: #7adfbb; -} -hr[data-title] { - margin: 2.78571429em 0; - text-align: center; -} -hr[data-title]:before { - content: attr(data-title); - background: #ffffff; - position: relative; - bottom: 14px; - padding: 0.92857143em; - font-style: italic; -} -.bg--dark hr:not(.short), -.imagebg hr:not(.short), -.bg--primary hr:not(.short) { - opacity: .3; -} -/*! -- Stack Buttons -- */ -.btn { - position: relative; -} -.btn:not([class*='primary']) { - border-color: #d3d3d3; -} -.btn:not([class*='primary']):hover { - border-color: #252525; -} -.btn.type--uppercase { - letter-spacing: .5px; -} -.btn.type--uppercase .btn__text { - letter-spacing: .5px; - margin-right: -0.5px; -} -.btn .label { - top: -0.92857143em; - right: -3.71428571em; -} -.btn.btn--lg .btn__text { - font-weight: 600; -} -.btn.btn--lg.type--uppercase .btn__text { - letter-spacing: 1px; -} -.btn + p.type--fine-print, -.btn + span.type--fine-print { - margin-top: 1.08333333333334em; -} -.btn.block { - margin-left: 0; -} -.btn.block + .btn.block { - margin-top: 0.92857143em; -} -.btn:hover { - transform: translate3d(0, -2px, 0); - -webkit-transform: translate3d(0, -2px, 0); -} -.btn.btn--sm + .btn--sm { - margin-left: 0.92857143em; -} -p > .btn { - text-decoration: none; -} -@media all and (max-width: 767px) { - .btn:not(:last-child) { - margin-bottom: 1.85714286em; - } -} -.btn--icon { - padding-left: 5.57142857em; -} -.btn--icon i { - position: absolute; - height: 100%; - left: 0; - top: 0; - background: rgba(0, 0, 0, 0.1); - padding: 0 13px; - border-radius: 6px 0 0 6px; - font-size: 16px; - line-height: 41px; -} -.btn--icon i.socicon { - line-height: 42px; -} -.btn--cart { - width: 3.71428571em; - height: 3.71428571em; - border: 2px solid #252525; - display: block; - text-align: center; - border-radius: 6px; - opacity: .4; - padding: 0; -} -.btn--cart:hover { - opacity: 1; -} -.btn--cart .btn__text { - position: absolute; - width: 100%; - left: 0; - top: 50%; - transform: translateY(-50%); - font-size: 1.142857142857143em; -} -.imagebg:not(.image--light) .btn--icon:not([class*='bg']):not([class*='primary']) i { - color: #fff; - background: rgba(255, 255, 255, 0.2); -} -@media all and (min-width: 768px) { - .btn-group .btn { - margin-bottom: 0 !important; - margin-left: 0; - } - .btn-group .btn + .btn { - margin-left: 0; - } - .btn-group .btn:not(:first-child):not(:last-child) { - border-radius: 0; - } - .btn-group .btn:first-child { - border-radius: 6px 0 0 6px; - } - .btn-group .btn:last-child { - border-radius: 0 6px 6px 0; - } - .btn-group .btn:first-child:nth-last-child(2), - .btn-group .btn:last-child:nth-child(2) { - width: 50%; - } -} -.btn-group { - border: none; - padding: 0; -} -@media all and (max-width: 767px) { - .btn-group .btn { - display: block; - } -} -.bg--primary div:not([class*='feature']) .btn--primary { - background: #fff; - border-color: #fff; -} -.bg--primary div:not([class*='feature']) .btn--primary .btn__text { - color: #7adfbb; -} -.bg--primary > .btn--primary { - background: #fff; - border-color: #fff; -} -.bg--primary > .btn--primary .btn__text { - color: #7adfbb; -} -.bg--dark .btn:not(.btn--primary) { - border-color: #3f3f3f; -} -.bg--dark .btn:not(.btn--primary):hover { - border-color: #656565; -} -.bg--dark .btn .btn__text { - color: #fff; -} -.imagebg:not(.image--light) .btn:not([class*='primary']) { - border-color: rgba(255, 255, 255, 0.3); -} -.imagebg:not(.image--light) .btn:not([class*='primary']):hover { - border-color: #fff; -} -.imagebg.image--light .btn:not([class*='primary']) { - border-color: #252525; - background: rgba(255, 255, 255, 0.3); -} -.imagebg.image--light .btn:not([class*='primary']):hover { - background: rgba(255, 255, 255, 0.5); -} -h1 + .btn, -.h1 + .btn { - margin-top: 1.85714286em; -} -h2 + .btn, -.h2 + .btn { - margin-top: 0.92857143em; -} -/*! -- Stack Images -- */ -img:last-child { - margin-bottom: 0; -} -img.flag { - max-height: 1.85714286em; -} -img.image--sm:not(:last-child) { - margin-bottom: 0.92857143em; -} -img.promo.border--round { - border: 1px solid #ececec; -} -p.lead img { - max-height: 1.68421053em; -} -.imagebg h1, -.imagebg h2, -.imagebg h3, -.imagebg h4, -.imagebg h5, -.imagebg h6 { - position: relative; -} -.imagebg:not(.image--light) span { - color: #fff; -} -.imagebg.border--round { - overflow: hidden; -} -section.parallax .row .background-image-holder { - transform: none !important; - top: 0 !important; -} -.triptych.border--round img { - position: relative; - border-radius: 6px; - width: 33.333333%; - float: left; - margin: 0; -} -.triptych.border--round img:nth-child(2) { - transform: scale(1.2); - -webkit-transform: scale(1.2); - z-index: 2; - box-shadow: 0 23px 40px rgba(0, 0, 0, 0.2); -} -.gallery > div[class*='col-'] { - margin-bottom: 30px; -} -.gallery-1 { - overflow: hidden; - position: relative; -} -.gallery-1 .gallery__image:not(:last-child) { - margin-bottom: 30px; -} -.gallery-1 > div[class*='col-']:first-child > .gallery__image { - height: 800px; -} -.gallery-1 > div[class*='col-']:last-child > .gallery__image { - height: calc(385px); -} -.gallery__image { - position: relative; - overflow: hidden; -} -@media all and (max-width: 767px) { - .gallery-1 .gallery__image { - max-height: 300px; - margin-bottom: 15px; - } - .gallery-1 .gallery__image:not(:last-child) { - margin-bottom: 15px; - } -} -.section--ken-burns { - overflow: hidden; -} -.section--ken-burns > .background-image-holder, -.section--ken-burns > img:only-child { - animation: kenBurns 15s ease alternate infinite; - -webkit-animation: kenBurns 15s ease alternate infinite; -} -/*! -- Stack Titles -- */ -.breadcrumbs { - list-style: none; -} -.breadcrumbs li { - font-size: 0.85714285714286em; - display: inline-block; -} -.breadcrumbs li:not(:last-child) { - margin-right: 1.08333333333334em; -} -.breadcrumbs li:not(:last-child):after { - content: '\00bb'; - margin-left: 1.08333333333334em; -} -.breadcrumbs li a { - font-weight: normal; -} -.imagebg .breadcrumbs, -.bg--primary .breadcrumbs { - color: #fff; -} -.imagebg .breadcrumbs a, -.bg--primary .breadcrumbs a { - color: #fff; - font-weight: 600; -} -.elements-title { - border-top: none !important; -} -.elements-title + .tabs-container:not( :nth-last-child(2)), -.elements-title + section:not( :nth-last-child(2)) { - margin-bottom: 9.28571429em; -} -.elements-title + section:not(.imagebg):not([class*='bg-']):not(.unpad) { - padding-top: 1.85714286em; -} -/*! -- Stack Labels -- */ -.label { - display: inline-block; - font-size: 9px; - font-weight: 700; - letter-spacing: .5px; - color: #fff; - text-transform: uppercase; - height: 26px; - min-width: 65px; - padding: 0 10px; - text-align: center; - border-radius: 50px; - position: absolute; - z-index: 3; - top: 1.23809524em; - right: 1.23809524em; -} -.label:not([class*='bg--']) { - background: #4c8577; -} -.label.label--inline { - position: relative; - top: 0; - right: 0; -} -.label.label--inline:not(:last-child) { - margin-right: 0.92857143em; -} -.label.label--inline + span, -.label.label--inline + p { - position: relative; - top: 1px; -} -.label.switchable-toggle { - left: 50%; - right: auto; - transform: translate3d(-50%, 0, 0); - -webkit-transform: translate3d(-50%, 0, 0); - box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.06); -} -.bg--primary-1 .label:not([class*='bg--']) { - background: #493843; -} -/*! -- Stack Bars -- */ -.menu-horizontal > li, -.menu-vertical > li { - font-family: 'Open Sans', 'Roboto', 'Helvetica', Sans-Serif; -} -.bar .logo { - max-height: 1.85714286em; - max-width: none; -} -.menu-horizontal > li > a, -.menu-horizontal > li > .modal-instance > a { - font-weight: 500; -} -.menu-horizontal > li a:hover { - text-decoration: none; -} -.hamburger-toggle i { - color: #252525; -} -@media all and (min-width: 990px) { - .menu-horizontal li:not(:last-child) { - margin-right: 1.23809524em; - } - .bar__module:not(:only-child) .menu-horizontal { - top: 0; - } -} -@media all and (min-width: 768px) and (max-width: 1023px) { - .bar-2 .menu-horizontal > li, - .bar-1 .menu-horizontal > li { - display: inline-block; - } - .bar-2 .menu-horizontal > li:not(:first-child), - .bar-1 .menu-horizontal > li:not(:first-child) { - margin-left: 0.92857143em; - } - .bar-2 .bar__module, - .bar-1 .bar__module { - margin-bottom: 1.85714286em; - } - .bar-2 .row div[class*='col-']:last-child .bar__module:last-child, - .bar-1 .row div[class*='col-']:last-child .bar__module:last-child { - margin-bottom: 0; - } -} -.bar-1 .menu-horizontal > li > .dropdown__trigger, -.bar-1 .menu-horizontal > li > a { - font-size: 0.857142857142857em; - line-height: 2.166666666666667em; - text-transform: uppercase; - font-weight: 600; - letter-spacing: .5px; -} -@media all and (min-width: 1024px) { - .bar-1 .bar__module + .bar__module { - margin-left: 1.85714286em; - } -} -@media all and (min-width: 991px) { - .bar-2 .logo { - position: absolute; - left: 50%; - transform: translateX(-50%); - } -} -.bar-3 { - font-size: 0.85714286em; -} -.bar-3 .menu-horizontal { - top: 0; -} -@media all and (max-width: 990px) { - .bar-3 .menu-horizontal li { - display: inline-block; - } - .bar-3 .menu-horizontal li:not(:last-child) { - margin-right: 0.92857143em; - } -} -@media all and (min-width: 990px) { - .bar-toggle .col-md-1 .logo { - top: 10px; - } -} -@media all and (max-width: 767px) { - .bar-4 .logo-light { - display: none; - } - .bar-4 .logo-dark { - margin-bottom: 1.85714286em; - } - .bar.bg--dark { - background: #252525; - } - .bar.bg--dark .hamburger-toggle i { - color: #fff; - } -} -/*! -- Stack Alerts -- */ -.alert { - border-radius: 6px; -} -.alert:not(:last-child) { - margin-bottom: 1.85714286em; -} -.alert .alert__close { - font-size: 1.35714286em; -} -/*! -- Stack Menu Toggle -- */ -.menu-toggle { - box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); - box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.04); - width: 3.71428571em; - height: 3.71428571em; - border-radius: 50%; - text-align: center; - background: #fff; - display: inline-block; - transition: 0.2s ease; - -webkit-transition: 0.2s ease; - -moz-transition: 0.2s ease; -} -.menu-toggle i { - font-size: 1.78571429em; - position: relative; - top: 13px; - color: #252525; -} -.menu-toggle:hover { - box-shadow: 0 23px 40px rgba(0, 0, 0, 0.2); - transform: translate3d(0, -2px, 0); - -webkit-transform: translate3d(0, -2px, 0); -} -/*! -- Stack Nav Utility -- */ -.nav-utility { - padding: 0.92857143em 0; -} -.nav-utility .nav-utility__module { - font-size: 0.85714285714286em; -} -.nav-utility .nav-utility__module a { - color: #666666; - font-weight: normal; -} -.nav-utility .nav-utility__module a i { - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; - display: inline-block; -} -.nav-utility .nav-utility__module a:hover i { - transform: scale(1.5); - -webkit-transform: scale(1.5); -} -.nav-utility .nav-utility__module.right:not(:last-child) { - margin-left: 2.16666666666667em; -} -.utility-toggle { - display: inline-block; - cursor: pointer; - width: 3px; - height: 3px; - position: relative; - bottom: 8px; - border-radius: 50%; - background: #252525; -} -.utility-toggle:before, -.utility-toggle:after { - content: ''; - width: 3px; - height: 3px; - border-radius: 50%; - position: absolute; - background: #252525; -} -.utility-toggle:before { - top: 6px; -} -.utility-toggle:after { - top: 12px; -} -/*! -- Stack Nav Stacked -- */ -.bar-stacked .logo { - margin-bottom: 3.71428571em; -} -/*! -- Stack Nav Side Menu -- */ -.notification.side-menu { - z-index: 9999; - background: #ffffff; - padding-top: 1.85714286em; - margin: 0; - height: 100%; - box-shadow: 0 23px 40px rgba(0, 0, 0, 0.2); - width: 27.85714286em; -} -.notification.side-menu .side-menu__module { - overflow: hidden; - padding: 2.78571429em; -} -.notification.side-menu .side-menu__module + hr:not(:last-child) { - margin: 0; -} -.notification.side-menu .menu-vertical li a { - font-size: 1.35714286em; - line-height: 1.36842105em; -} -.notification.side-menu .menu-vertical li a:hover { - text-decoration: none; -} -.notification.side-menu .btn:not(:last-child) { - margin-bottom: 1.85714286em; -} -.notification.side-menu .btn + ul.list--loose { - margin-top: 0.92857143em; -} -.notification.side-menu .notification-close-cross { - top: 0.92857143em; - right: 2.78571429em; - margin-top: 8px; -} -.notification.side-menu .social-list:not(:first-child) { - margin-top: 1.85714286em; -} -.menu-toggle.pos-fixed { - position: fixed; - right: 5.57142857em; - animation: fadeInDown .3s ease forwards; -} -@media all and (min-width: 768px) { - .side-menu .side-menu__module span.type--fine-print { - position: relative; - top: 8px; - } -} -@media all and (max-width: 767px) { - .side-menu { - width: 100%; - } - .side-menu .side-menu__module .float-right, - .side-menu .side-menu__module .float-left { - display: block; - } -} -/*! -- Stack Nav Sidebar Column -- */ -.nav-container.nav-container--sidebar + .main-container { - width: calc(100vw - 20.428571428571463em); - float: right; -} -.nav-container.nav-container--sidebar + .main-container .container { - max-width: 100%; -} -.nav-sidebar-column { - position: fixed; - z-index: 3; - left: 0; - width: 20.42857143em; - border-right: 1px solid #ececec; - height: 100vh; - overflow-y: scroll; - -ms-overflow-style: none; - padding: 2.78571429em 1.85714286em; -} -.nav-sidebar-column:not([class*='bg-']) { - background: #ffffff; -} -.nav-sidebar-column.bg--dark { - border-right: 1px solid #3f3f3f; -} -.nav-sidebar-column::-webkit-scrollbar { - display: none; -} -.nav-sidebar-column .logo { - max-height: 2.32142857em; - margin-bottom: 0.92857143em; -} -.nav-sidebar-column .text-block > p { - margin-bottom: 0.92857143em; -} -.nav-sidebar-column .menu-vertical li.dropdown:not(:hover):after { - opacity: .35; -} -.nav-sidebar-column .menu-vertical a:hover { - text-decoration: none; -} -.nav-sidebar-column .dropdown .dropdown__container, -.nav-sidebar-column .dropdown .dropdown__content { - left: 0 !important; - position: relative; - pointer-events: all; -} -.nav-sidebar-column .dropdown .dropdown__container:before { - height: 0; -} -.nav-sidebar-column .dropdown .dropdown__content { - transform: none !important; - box-shadow: none; - -webkit-box-shadow: none; - padding-top: 0.46428571em; - padding-right: 0; - padding-left: 0.46428571em; - background: none !important; -} -.nav-sidebar-column .dropdown .menu-vertical li.dropdown:after { - right: 1.85714286em; -} -.nav-sidebar-column .dropdown:not(.dropdown--active) .dropdown__container { - display: none; -} -.nav-sidebar-column .dropdown.dropdown--hover:hover > .dropdown__container { - display: block; -} -.nav-sidebar-column .social-list { - margin-bottom: 0.92857143em; -} -body.dropdowns--hover .nav-sidebar-column .dropdown:hover > .dropdown__container { - display: block; -} -.nav-sidebar-column-toggle { - transition: all .3s ease; - left: 0; - width: 3.71428571em; - height: 3.71428571em; - background: #ffffff; - text-align: center; - position: fixed; - z-index: 4; - cursor: pointer; - border-radius: 0 0 6px 0; - box-shadow: 2px 1px 4px rgba(0, 0, 0, 0.1); -} -.nav-sidebar-column-toggle > i { - transition: all .3s ease; - font-size: 1.78571429em; - position: relative; - top: 11px; -} -.nav-sidebar-column-toggle:not(.toggled-class) > i { - opacity: .5; -} -.nav-sidebar-column-toggle.toggled-class i:before { - content: '\e80b'; -} -@media all and (max-width: 990px) { - .nav-sidebar-column { - transition: all .3s ease; - left: -20.42857143em; - box-shadow: 2px 0px 4px rgba(0, 0, 0, 0); - } - .nav-sidebar-column.active { - left: 0; - box-shadow: 2px 0px 4px rgba(0, 0, 0, 0.1); - } - .nav-sidebar-column-toggle.toggled-class { - left: 20.42857143em; - } - .nav-container.nav-container--sidebar + .main-container { - width: 100%; - float: none; - } -} -.nav-container.nav-container--right .nav-sidebar-column { - right: 0; - left: auto; -} -.nav-container.nav-container--right + .main-container { - float: left; -} -.nav-container.nav-container--right .nav-sidebar-column-toggle { - left: auto; - right: 0; - border-radius: 0 0 0 6px; - box-shadow: -2px 1px 4px rgba(0, 0, 0, 0.1); -} -@media all and (max-width: 990px) { - .nav-container.nav-container--right .nav-sidebar-column { - right: -20.42857143em; - left: auto; - } - .nav-container.nav-container--right .nav-sidebar-column.active { - left: auto; - right: 0; - box-shadow: -2px 0px 4px rgba(0, 0, 0, 0.1); - } - .nav-container.nav-container--right .nav-sidebar-column-toggle.toggled-class { - left: auto; - right: 20.42857143em; - } -} -/*! -- Stack Nav Fullscreen -- */ -.menu-fullscreen { - color: #fff; -} -.menu-fullscreen .pos-absolute { - width: 100%; -} -.menu-fullscreen a { - color: #fff; -} -.menu-fullscreen a:hover { - text-decoration: none; -} -.menu-fullscreen .social-list { - margin-right: 0; -} -.menu-fullscreen:before { - background: rgba(0, 0, 0, 0.9); -} -.menu-fullscreen .modal-content .modal-close-cross { - right: 3.71428571em; - top: 1em; -} -@media all and (max-width: 767px) { - .menu-fullscreen .pos-bottom { - position: relative; - } -} -/*! -- Stack Dropdowns -- */ -.dropdown > .dropdown__trigger:after { - font-family: "stack-interface"; - display: inline-block; - font-size: 8px; - position: relative; - bottom: 2px; -} -.dropdown > .dropdown__trigger .image--xxs { - margin-right: 0.46428571em; -} -.dropdown .dropdown__content { - border-radius: 6px; - box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.08); - -webkit-box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.08); - padding: 1.23809524em 1.85714286em; -} -.dropdown .dropdown__content h5:not(:last-child) { - margin-bottom: 0.92857143em; -} -.dropdown .dropdown__content .background-image-holder { - border-radius: 6px 0 0 6px; -} -.dropdown .dropdown__content > .pos-absolute[class*='col-'] { - left: 0; - top: 0; - height: 100%; - position: absolute !important; -} -.dropdown .dropdown__content > .pos-absolute[class*='col-'][data-overlay]:before { - border-radius: 6px 0 0 6px; -} -.menu-horizontal > .dropdown > .dropdown__trigger:after { - content: '\e80a'; - margin-left: 4px; -} -.menu-vertical > .dropdown > .dropdown__trigger { - display: inline-block; - width: 100%; -} -@media all and (max-width: 767px) { - .dropdown [class*='col-'] + [class*='col-'] { - margin-top: 0.92857143em; - } - .dropdown .dropdown__content:not([class*='bg-']) { - border: none; - box-shadow: none; - } -} -@media all and (max-width: 767px) { - .dropdown__container { - left: 0 !important; - } -} -.menu-vertical li { - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; -} -.menu-vertical li:not(:hover):not(.dropdown--active) { - opacity: .75; -} -.menu-vertical li:not(:last-child) { - margin-bottom: 0.30952381em; -} -.menu-vertical li.dropdown { - position: relative; -} -.menu-vertical li.dropdown:after { - content: '\e80c'; - font-family: 'stack-interface'; - right: 0; - top: 0; - position: absolute; - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; - display: inline-block; - transform: translate3d(-10px, 0, 0); - -webkit-transform: translate3d(-10px, 0, 0); -} -.menu-vertical li.dropdown:hover:after { - transform: translate3d(-5px, 0, 0); - -webkit-transform: translate3d(-5px, 0, 0); -} -.menu-vertical li.separate { - border-top: 1px solid #e6e6e6; - margin-top: 0.92857143em; - padding-top: 0.92857143em; -} -.menu-vertical li.separate.dropdown:after { - top: .92857143em; -} -.menu-vertical + h5 { - margin-top: 1.85714286em; -} -@media all and (max-width: 990px) { - .menu-vertical .dropdown.dropdown--active:after { - opacity: 0; - } -} -@media all and (min-width: 991px) { - .dropdown .dropdown__container:before { - height: 18px; - } -} -/*! -- Stack Twitter Feeds -- */ -.tweets-feed .interact { - display: none; -} -.tweets-feed .user a:hover { - text-decoration: none; -} -.tweets-feed .user img { - border-radius: 50%; -} -.tweets-feed-1 { - border-radius: 6px; - border: 1px solid #ececec; - overflow: hidden; -} -.tweets-feed-1 li { - overflow: hidden; - padding: 1.85714286em; - padding-bottom: 0; -} -.tweets-feed-1 li:not(:last-child) { - border-bottom: 1px solid #ececec; -} -.tweets-feed-1 .user { - width: 20%; - float: left; - margin-bottom: 0.92857143em; -} -.tweets-feed-1 .user img { - max-height: 3.71428571em; - margin-right: 0.46428571em; -} -.tweets-feed-1 .user [data-scribe="element:name"], -.tweets-feed-1 .user [data-scribe="element:screen_name"] { - display: none; -} -.tweets-feed-1 .tweet, -.tweets-feed-1 .timePosted { - width: 80%; - float: right; -} -.tweets-feed-1 .tweet { - margin-bottom: 0.46428571em; -} -.tweets-feed-1 .timePosted { - font-size: 0.85714286em; - line-height: 2.16666667em; -} -.tweets-feed-1:not(:last-child) + .btn { - margin-top: 2.78571429em; -} -.imagebg .tweets-feed-1, -.bg--dark .tweets-feed-1 { - border-color: rgba(255, 255, 255, 0.1); -} -.imagebg .tweets-feed-1 li:not(:last-child), -.bg--dark .tweets-feed-1 li:not(:last-child) { - border-color: rgba(255, 255, 255, 0.1); -} -.tweets-feed-2 .user { - display: none; -} -.tweets-feed-2 .timePosted { - display: none; -} -.tweets-feed-2 li { - overflow: hidden; -} -.tweets-feed-2 li:before { - font-family: 'socicon'; - content: "\e08d"; -} -.tweets-feed-2 li .tweet { - width: 85%; - float: right; -} -.tweets-feed.slider .user img { - display: inline-block; - clear: both; - margin-bottom: 0.92857143em; -} -.tweets-feed.slider .user [data-scribe="element:name"] { - display: none; -} -.tweets-feed.slider .user [data-scribe="element:screen_name"] { - display: block; - font-size: 1.35714286em; - line-height: 1.36842105em; - font-weight: normal; -} -.tweets-feed.slider .tweet { - margin-top: 1.36842105263158em; - margin-bottom: 0.68421052631579em; - font-size: 1.35714286em; - line-height: 1.36842105em; -} -.tweets-feed.slider .timePosted { - margin: 0; -} -.tweets-feed.slider:not(:last-child) + .btn { - margin-top: 2.78571429em; -} -/*! -- Stack Instagram -- */ -.instafeed a { - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; -} -.instafeed a:hover { - opacity: .75; -} -.instafeed:not(.instafeed--gapless) li { - padding: 0.46428571em; -} -.instafeed.instafeed--gapless li { - margin-bottom: -1px; -} -.instafeed + .btn { - margin-top: 2.78571429em; -} -.instafeed[data-grid="1"][data-amount="8"] li { - display: inline-block; - width: 12.5%; -} -.instagram { - position: relative; -} -.instagram.unpad .btn { - position: absolute; - z-index: 2; - top: 50%; - transform: translate3d(-50%, -50%, 0); - -webkit-transform: translate3d(-50%, -50%, 0); - margin: 0; -} -/*! -- Stack Cards -- */ -.card__top { - position: relative; - overflow: hidden; -} -.card__action a { - color: #666666; - text-decoration: none; - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; -} -.card__action a i { - color: #252525; - font-size: 1em; -} -.card__action a span { - position: relative; - bottom: 2px; -} -.card__action a:not(:hover) { - opacity: .5; -} -.card p a { - text-decoration: none; -} -.masonry__item .card.boxed { - margin-bottom: 0; -} -.card-1 .card__avatar { - margin-bottom: 0.92857143em; -} -.card-1 .card__avatar img { - max-height: 2.78571429em; - margin-right: 0.46428571em; - margin-bottom: 0; -} -.card-1 .card__avatar, -.card-1 .card__meta { - display: inline-block; -} -.card-1 .card__meta { - float: right; -} -.card-1 .card__body { - border-bottom: 1px solid #ececec; - padding-bottom: 0.92857143em; - margin-bottom: 0.92857143em; -} -.card-1 .card__body img { - margin-bottom: 0.92857143em; -} -.card-1 .card__body h4 { - margin-bottom: 0.342105263157895em; -} -.bg--dark .card-1 .card__body { - border-color: #3f3f3f; -} -@media all and (max-width: 767px) { - .card .list-inline:not(.social-list) li { - display: inline-block; - } - .card .list-inline:not(.social-list) li:not(:first-child) { - margin-left: 0.92857143em; - } -} -.card-2 .card__top img { - border-radius: 6px 6px 0 0; -} -.card-2 .card__body { - border-bottom: 1px solid #ececec; - padding-bottom: 1.85714286em; -} -.card-2 .card__body h4 { - margin: 0; -} -.card-2 .card__body p { - margin-top: 0.92857143em; -} -.card-2 .card__bottom { - overflow: hidden; -} -.card-2 .card__bottom > div { - display: inline-block; - width: 50%; - float: left; -} -.card-2 .card__bottom .h6 { - margin-bottom: 0.541666666666667em; -} -.card-2 .card__body, -.card-2 .card__bottom { - padding: 1.85714286em; - border: 1px solid #ececec; -} -.card-2 .card__body { - border-bottom: none; - border-top: none; -} -.card-2 .card__bottom { - border-radius: 0 0 6px 6px; - padding: 0.92857143em 1.85714286em; -} -.card-2 .card__action i { - font-size: 1.78571429em; -} -.bg--dark .card-2 .card__body, -.bg--dark .card-2 .card__bottom { - border-color: #3f3f3f; -} -/*! -- Stack Checkmarks & Crosses -- */ -.checkmark { - display: inline-block; - position: relative; - width: 1.23809524em; - height: 1.23809524em; - border-radius: 50%; - text-align: center; -} -.checkmark:not([class*='bg-']) { - background: #7adfbb; -} -.checkmark:before { - content: '\2713'; - color: #fff; - font-size: 11px; - position: absolute; - width: 100%; - left: 0; - top: -4px; -} -.checkmark.checkmark--cross:before { - content: '\2717'; -} -.checkmark:not(:last-child) { - margin-right: 13px; -} -/*! -- Stack Icons -- */ -.icon:not(.block) { - display: inline-block; -} -.icon.icon--xs { - font-size: 1.14285714285714em; -} -.text-block .icon + h4 { - margin-top: 0.6842105263158em; -} -.imagebg .icon { - color: #fff; -} -p .material-icons { - font-size: 1em; -} -p .material-icons:first-child { - margin-right: 0.30952381em; -} -.material-icons { - font-family: 'Material Icons' !important; -} -.icon-circle { - position: relative; - display: inline-block; - width: 3.71428571em; - height: 3.71428571em; - border-radius: 50%; - border: 1px solid #ececec; - background: #fafafa; - text-align: center; -} -.icon-circle i { - font-size: 24px; - position: absolute; - top: 50%; - transform: translateY(-50%); - width: 100%; - left: 0; -} -/*! -- Stack Tooltips -- */ -.tooltip { - position: relative; - top: 3px; - display: inline-block; - width: 1.23809524em; - height: 1.23809524em; - border-radius: 50%; - background: #252525; - text-align: center; - cursor: pointer; -} -.tooltip .tooltip__anchor { - color: #fff; - font-weight: 700; - font-size: 11px; - position: absolute; - top: -5px; - left: 6px; -} -.tooltip .tooltip__text { - transition: 0.2s ease; - -webkit-transition: 0.2s ease; - -moz-transition: 0.2s ease; - text-align: left; - z-index: 10; - position: absolute; - width: 280px; - background: #fafafa; - border: 1px solid #ececec; - padding: 0.61904762em; - left: 1.48571429em; - top: -0.92857143em; - opacity: 0; - pointer-events: none; - cursor: default; - box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); - box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.04); - line-height: 20px; -} -.tooltip:hover .tooltip__text { - opacity: 1; -} -.tooltip:last-child { - margin-left: 0.92857143em; -} -[data-tooltip] { - position: relative; - overflow: visible; -} -[data-tooltip]:after { - transition: all .2s ease; - content: attr(data-tooltip); - position: absolute; - top: -24px; - left: 50%; - transform: translateX(-50%); - background: #252525; - color: #fff; - border: 1px solid #e7e7e7; - padding: 2px 12px; - pointer-events: none; - white-space: nowrap; - font-size: 11px; - line-height: 18px; - font-weight: 600; - border-radius: 2px; - z-index: 2; - font-family: 'Open Sans'; -} -[data-tooltip]:not(:hover):after { - opacity: 0; -} -/*! -- Stack Boxes -- */ -.boxed { - border-radius: 6px; -} -.boxed .background-image-holder { - border-radius: 6px; -} -.boxed:before { - border-radius: 6px; -} -.boxed:not(:last-child) { - margin-bottom: 30px; -} -.boxed:not([class*='bg-']) { - background: #ffffff; -} -.boxed.bg--secondary .boxed { - background: #fafafa; -} -@media all and (min-width: 768px) { - .switchable .imagebg .boxed { - padding-left: 5.57142857em; - } -} -.bg--dark .boxed:not([class*='bg-']), -.imagebg:not(.image--light) .boxed:not([class*='bg-']) { - background: none; - color: #fff; -} -.bg--dark .boxed:not([class*='bg-']).boxed--border, -.imagebg:not(.image--light) .boxed:not([class*='bg-']).boxed--border { - border-color: #3f3f3f; -} -.bg--dark .boxed[class*='bg-'].boxed--border, -.imagebg:not(.image--light) .boxed[class*='bg-'].boxed--border { - border: none; -} -.imagebg:not(.image--light) .boxed:not(.bg--white):not(.bg--none) { - background: rgba(20, 20, 20, 0.3); -} -.imagebg:not(.image--light) .boxed:not(.bg--white):not(.bg--none).boxed--border { - border: none; -} -.imagebg:not(.image--light) .boxed:not(.bg--white):not(.bg--none) .boxed { - background: none; -} -.bg--primary .boxed:not(.imagebg) { - color: #666666; -} -.bg--primary .boxed:not(.imagebg) p { - color: #666666; -} -.bg--primary .boxed:not(.imagebg) h1, -.bg--primary .boxed:not(.imagebg) h2, -.bg--primary .boxed:not(.imagebg) h3, -.bg--primary .boxed:not(.imagebg) h4, -.bg--primary .boxed:not(.imagebg) h5, -.bg--primary .boxed:not(.imagebg) h6, -.bg--primary .boxed:not(.imagebg) .h1, -.bg--primary .boxed:not(.imagebg) .h2, -.bg--primary .boxed:not(.imagebg) .h3, -.bg--primary .boxed:not(.imagebg) .h4, -.bg--primary .boxed:not(.imagebg) .h5, -.bg--primary .boxed:not(.imagebg) .h6, -.bg--primary .boxed:not(.imagebg) i { - color: #252525; -} -.bg--primary .boxed:not(.imagebg) a { - color: #7adfbb; -} -.bg--primary .boxed:not(.imagebg) .color--primary { - color: #7adfbb !important; -} -@media all and (min-width: 768px) { - .boxed.boxed--emphasis { - transform: scale(1.075); - -webkit-transform: scale(1.075); - } -} -/*! -- Stack Features Small -- */ -.feature:not(.boxed) { - margin-bottom: 60px; -} -.feature.feature--featured:after { - content: ''; - position: absolute; - bottom: 0; - width: 100%; - height: 4px; - background: #7adfbb; - left: 0; -} -.feature h5 { - margin: 0; -} -.feature h4 { - margin-bottom: 0.342105263157895em; -} -.feature h4 + p { - max-width: 22.28571429em; -} -.feature i + h5 { - margin-top: 1.85714286em; -} -.feature i + h4 { - margin-top: 0.68421052631579em; -} -.feature i.icon--lg + h4 { - margin-top: 1.36842105263158em; -} -.feature i.icon--lg + .h5 { - margin-top: 0.92857143em; -} -.feature img + .boxed { - border-radius: 0 0 6px 6px; - border-top: none; -} -.imagebg:not(.image--light) .feature.bg--white a:not(.btn) { - color: #7adfbb; -} -.imagebg:not(.image--light) .feature.bg--white .label { - color: #fff; -} -@media all and (max-width: 767px) { - .feature .feature__body form .row { - margin-left: 0; - margin-right: 0; - } -} -section.text-center .feature-6 h4 + p { - margin: 0 auto; -} -@media all and (min-width: 768px) { - .row div[class*='col-']:nth-child(1):nth-last-child(3) .feature, - .row div[class*='col-']:nth-child(2):nth-last-child(2) .feature, - .row div[class*='col-']:nth-child(3):last-child .feature { - margin-bottom: 0; - } -} -a.block > .feature { - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; -} -a.block:hover > .feature { - box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); - box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.04); -} -.feature-1 { - min-height: 11.14285714em; -} -.feature-1 p { - margin: 0; -} -.feature-1 p.lead { - min-height: 5.05263157894737em; -} -.feature-1 > img:first-child { - border-radius: 6px 6px 0 0; -} -.feature-1 > a.block img { - border-radius: 6px 6px 0 0; -} -.feature-1 > a.block + .feature__body { - border-radius: 0 0 6px 6px; -} -.feature-1[class*='box-shadow'] { - border-radius: 6px; - transition: 0.35s ease-out; - -webkit-transition: 0.35s ease-out; - -moz-transition: 0.35s ease-out; -} -.feature-1[class*='box-shadow']:hover { - transform: translate3d(0, -10px, 0); - -webkit-transform: translate3d(0, -10px, 0); - box-shadow: 0 23px 40px rgba(0, 0, 0, 0.2); -} -.hover-shadow { - border-radius: 6px; - backface-visibility: hidden; - overflow: hidden; - border: 1px solid #ececec; - transition: 0.35s ease-out; - -webkit-transition: 0.35s ease-out; - -moz-transition: 0.35s ease-out; -} -.hover-shadow:hover { - transform: translate3d(0, -10px, 0); - -webkit-transform: translate3d(0, -10px, 0); - box-shadow: 0 23px 40px rgba(0, 0, 0, 0.2); -} -.bg--dark .hover-shadow { - border-color: #222; -} -.bg--dark .hover-shadow:hover { - box-shadow: 0 23px 40px #000000; -} -.feature-2 { - overflow: hidden; -} -.feature-2 .feature__body { - width: 75%; - float: right; -} -.feature-2 h5 { - margin-bottom: 0.46428571em; -} -.feature-2 p:last-child { - margin: 0; -} -.feature-2 i { - width: 25%; - float: left; -} -.feature-large .feature-2 + .feature-2:last-child { - margin-bottom: 0; -} -@media all and (max-width: 990px) { - .feature-2 .feature__body, - .feature-2 i { - width: 100%; - float: none; - } - .feature-2 p:first-of-type { - margin-top: 0.92857143em; - } -} -.feature-3 i { - margin-bottom: 0.16666666666667em; -} -.feature-3 p { - min-height: 7.42857143em; -} -.feature-4 .btn { - position: absolute; - width: 100%; - bottom: 0; - left: 0; - border-radius: 0; - padding: 0.92857143em; -} -.feature-4 .btn:hover { - transform: none; -} -.feature-4 p { - min-height: 9.28571429em; -} -.feature-4 p:last-of-type { - margin-bottom: 3.71428571em; -} -.feature-5 i { - width: 25%; - float: left; -} -.feature-5 .feature__body { - width: 75%; - float: right; -} -.feature-5 p { - min-height: 5.57142857em; -} -.feature-5 p:last-of-type { - margin-bottom: 0.92857143em; -} -.feature-5:not([class*='bg-']) { - color: #252525; -} -.feature-6 p { - min-height: 9.28571429em; -} -.feature-6 p:last-child { - margin: 0; -} -.feature-7 { - height: 13em; - margin-bottom: 30px; -} -.feature-7[data-overlay]:before { - border-radius: 6px; - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; -} -.feature-7[data-overlay]:hover:before { - opacity: .75; -} -.feature-7 .background-image-holder { - border-radius: 6px; -} -.feature-7 h3 { - margin: 0; -} -.row--gapless .feature-7 { - margin: 0; - border-radius: 0; -} -.row--gapless .feature-7 .background-image-holder { - border-radius: 0; -} -.row--gapless .feature-7:before { - border-radius: 0; -} -@media all and (max-width: 767px) { - .feature-7 .pos-vertical-center { - top: 50%; - transform: translate3d(0, -50%, 0); - -webkit-transform: translate3d(0, -50%, 0); - } -} -.feature-8 { - padding: 2.78571429em 0 3.71428571em 0; -} -.feature-8:not(.boxed) { - margin-bottom: 0; -} -.feature-8 .feature__body { - max-width: 70%; - margin: 0 auto; -} -.feature-8 p { - min-height: 5.57142857em; -} -@media all and (max-width: 990px) { - .feature-8 .feature__body { - max-width: 85%; - } -} -@media all and (max-width: 767px) { - .feature p { - min-height: auto; - margin-left: auto; - margin-right: auto; - } - .feature.boxed { - margin-bottom: 15px; - } - .feature:not(.boxed) { - margin-bottom: 30px; - } - .feature.feature-8 { - margin-bottom: 0; - } -} -.feature-8 img { - max-height: 14.85714286em; -} -.feature-9 h4 { - margin: 0; -} -.feature-9:not(.boxed) { - margin-bottom: 30px; -} -@media all and (min-width: 768px) { - .features-small-14 .text-block { - margin-bottom: 3.71428571em; - } - .features-small-14 h4 { - min-height: 2.736842105263158em; - } -} -/*! -- Stack Features Large -- */ -@media all and (min-width: 768px) { - .staggered div[class*='col-']:nth-child(2):last-child { - margin-top: 13em; - } - .staggered div[class*='col-']:nth-child(2):last-child:not(:last-child) { - margin-bottom: 9.28571429em; - } - .staggered div[class*='col-'] .feature:not(:last-child) { - margin-bottom: 9.28571429em; - } -} -.feature-large h4:first-child { - margin-bottom: 0.68421052631579em; -} -.feature-large .feature:not(.boxed) { - margin-bottom: 30px; -} -.feature-large .feature-3.text-center p { - margin: 0 auto; -} -.feature-large .lead + .feature-large__group { - margin-top: 3.71428571em; -} -.feature-large .feature-large__group { - overflow: hidden; -} -.feature-large-1 .lead { - margin-bottom: 2.73684210526316em; -} -@media all and (min-width: 768px) { - .feature-large-2 div[class*='col-']:first-child { - margin-top: 5.57142857em; - } - .feature-large-2 div[class*='col-']:last-child { - margin-top: 7.42857143em; - } -} -@media all and (max-width: 767px) { - .feature-large-2 img { - margin: 1.85714286em 0; - } -} -.feature-large-7.switchable .boxed div[class*='col-']:only-child { - float: none; -} -.feature-large-13 p.lead + .text-block { - margin-top: 3.71428571em; -} -.feature-large-13 div[class*='col-'] .text-block + .text-block { - margin-top: 2.78571429em; -} -@media all and (min-width: 1200px) { - .feature-large-13:not(.text-center) .text-block p { - max-width: 26em; - } -} -.feature-large-14 h5 { - margin-bottom: 0.46428571em; -} -.feature-large-14 .boxed { - margin-bottom: 0; -} -.feature-large-14 .boxed.boxed--border img { - border-radius: 6px; -} -@media all and (min-width: 768px) { - .feature-large-14.switchable .switchable__text { - margin-top: 5.57142857em; - } -} -/*! -- Stack Accordions -- */ -.accordion .accordion__title { - transition: 0.5s ease; - -webkit-transition: 0.5s ease; - -moz-transition: 0.5s ease; - opacity: .5; - margin-bottom: 0.92857143em; -} -.accordion .accordion__title:hover { - opacity: 1; -} -.accordion .accordion__title:before { - font-family: "stack-interface"; - content: '\e80d'; - margin-right: 6px; - color: #252525; -} -.accordion .accordion__title span { - display: inline-block; -} -.accordion li.active { - margin-bottom: 0.92857143em; -} -.accordion li.active .accordion__title { - opacity: 1; -} -.accordion li.active .accordion__title:before { - content: '\e80a'; -} -.accordion li.active .accordion__content { - animation: fadeUp .5s ease forwards; - -webkit-animation: fadeUp .5s ease forwards; -} -.accordion-1 li.active .accordion__title { - border-color: #7adfbb; -} -.accordion-1 li.active .accordion__title span { - color: #fff; -} -.accordion-1 li.active .accordion__title:before { - color: #fff; -} -.accordion-1 li .accordion__title { - border-radius: 6px; - border-bottom: 1px solid #ECECEC; -} -.accordion-2 li .accordion__title { - border-left: none; - border-right: none; - border-top: none; - border-bottom: 1px solid #ECECEC; - padding-left: 0; -} -.accordion-2 li.active .accordion__title { - background: none; - border-bottom: 1px solid rgba(0, 0, 0, 0); -} -.bg--dark .accordion-2 li .accordion__title, -.imagebg:not(.image--light) .accordion-2 li .accordion__title, -.bg--primary .accordion-2 li .accordion__title, -.bg--dark .accordion-1 li .accordion__title, -.imagebg:not(.image--light) .accordion-1 li .accordion__title, -.bg--primary .accordion-1 li .accordion__title { - border-color: #4b4b4b; -} -.bg--dark .accordion-2 li .accordion__title:before, -.imagebg:not(.image--light) .accordion-2 li .accordion__title:before, -.bg--primary .accordion-2 li .accordion__title:before, -.bg--dark .accordion-1 li .accordion__title:before, -.imagebg:not(.image--light) .accordion-1 li .accordion__title:before, -.bg--primary .accordion-1 li .accordion__title:before { - color: #fff; -} -.imagebg:not(.image--light) .accordion li .accordion__title, -.bg--primary .accordion li .accordion__title { - border-color: rgba(255, 255, 255, 0.3); -} -/*! -- Stack Tabs -- */ -.tabs-container.tabs--vertical { - overflow: hidden; -} -.tabs-container.tabs--vertical .tabs { - width: 25%; - float: left; -} -.tabs-container.tabs--vertical .tabs li { - display: block; -} -.tabs-container.tabs--vertical .tabs li:not(:last-child) { - border-right: none; - border-bottom: 1px solid #ECECEC; -} -.tabs-container.tabs--vertical .tabs-content { - width: 70%; - float: right; - margin-top: 0; -} -.tabs-container.tabs--vertical .tabs-content > li:not(.active) .tab__content { - animation: fadeOutUp .5s ease forwards; - -webkit-animation: fadeOutUp .5s ease forwards; -} -.tabs-container.tabs--vertical .tabs-content > li.active .tab__content { - animation: fadeInUp .5s ease forwards; - -webkit-animation: fadeInUp .5s ease forwards; - backface-visibility: hidden; -} -.tabs-container.tabs--vertical.tabs--icons .tabs { - width: 15%; - text-align: center; -} -.tabs-container.tabs--vertical.tabs--icons .tabs-content { - width: 80%; -} -@media all and (max-width: 767px) { - .tabs-container.tabs--vertical .tabs, - .tabs-container.tabs--vertical .tabs-content { - width: 100%; - float: none; - } - .tabs-container.tabs--vertical .tabs { - margin-bottom: 1.85714286em; - } - .tabs-container.tabs--vertical .tabs-content > li:not(.active) .tab__content { - animation: fadeOutRight .5s ease forwards; - -webkit-animation: fadeOutRight .5s ease forwards; - } - .tabs-container.tabs--vertical .tabs-content > li.active .tab__content { - animation: fadeInLeft .5s ease forwards; - -webkit-animation: fadeInLeft .5s ease forwards; - backface-visibility: hidden; - } -} -.tabs { - display: inline-block; - border: 1px solid #ECECEC; - border-radius: 6px; - margin-bottom: 1.85714286em; -} -.tabs li { - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; - padding: 0.92857143em 1.85714286em; -} -.tabs li:not(:last-child) { - border-right: 1px solid #ECECEC; -} -.tabs li.active { - opacity: 1; -} -.tabs li.active .tab__title { - color: #7adfbb; -} -.tabs li.active .tab__title span { - color: #7adfbb; -} -.tabs li:not(.active) { - opacity: .5; -} -.tabs li:hover { - opacity: 1; - cursor: pointer; -} -.tabs .tab__title { - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; -} -.tabs .tab__title:not(.btn) { - padding-right: 0; - padding-left: 0; -} -.tabs .tab__title i + span { - margin-top: 0.46428571em; - display: inline-block; - margin-bottom: 0; -} -.bg--primary .tabs { - border-color: #fff; -} -.bg--primary .tabs li.active .tab__title { - color: #fff; -} -.bg--primary .tabs li.active .tab__title span { - color: #fff; -} -.bg--primary .tabs li:not(:last-child) { - border-color: #fff; -} -@media all and (min-width: 768px) { - .tabs.tabs--spaced { - margin-bottom: 3.71428571em; - } -} -.tabs-content { - position: relative; -} -.tabs-content > li:not(.active) .tab__content { - position: absolute; - left: 0; - top: 0; - display: block; - opacity: 0; - pointer-events: none; - animation: fadeOutRight .5s ease forwards; - -webkit-animation: fadeOutRight .5s ease forwards; -} -.tabs-content > li.active { - animation: fadeInLeft .5s ease forwards; - -webkit-animation: fadeInLeft .5s ease forwards; - backface-visibility: hidden; -} -@media all and (max-width: 767px) { - .tabs li { - display: block; - } - .tabs li:not(:last-child) { - border-bottom: 1px solid #ECECEC; - border-right: none; - } -} -.tabs--folder .tabs { - overflow: hidden; - margin-bottom: 0; - border-radius: 6px 6px 0 0; - border-bottom: none; -} -.tabs--folder .tabs > li { - border-top: 3px solid rgba(0, 0, 0, 0); -} -.tabs--folder .tabs > li.active { - border-top: 3px solid #7adfbb; -} -.tabs--folder .tabs-content { - overflow: hidden; - position: relative; - bottom: 8px; - padding: 1.85714286em; - border: 1px solid #ECECEC; - border-radius: 0 0 6px 6px; -} -.tabs--folder .tabs-content > li:not(.active) .tab__content { - top: 1.85714286em; - left: 1.85714286em; -} -.tabs--folder .tab__title .h5 { - margin: 0; - display: inline-block; -} -.tabs--folder .tab__title .label { - position: relative; - color: #fff !important; - top: -2px; - right: 0; - margin-left: 0.46428571em; - min-width: 0; -} -/*! -- Stack Switchable Sections -- */ -.switchable .switchable__text { - margin-top: 1.85714286em; -} -.switchable [class*='col-']:first-child .switchable__text { - margin-bottom: 2.78571429em; -} -.section--overlap .row { - position: relative; - margin-top: -13em; -} -@media all and (max-width: 990px) { - .switchable .switchable__text { - margin-top: 0; - } -} -@media all and (max-width: 767px) { - .switchable .switchable__text { - margin-top: 1.85714286em; - } - .switchable .imageblock__content[class*='col-'] { - float: none !important; - } - .switchable .row > div[class*='col-'] { - float: none !important; - } - .switchable .row > div[class*='col-']:last-child:not(:only-child) { - margin-top: 1.85714286em; - } -} -/*! -- Stack CTA -- */ -.cta .btn:first-child:not(:last-child) { - margin-bottom: 1.85714286em; -} -.cta.boxed:last-child { - margin-bottom: 0; -} -@media all and (min-width: 768px) { - .cta--horizontal h4, - .cta--horizontal .lead, - .cta--horizontal .btn { - margin: 0; - } - .cta--horizontal h4, - .cta--horizontal .lead { - position: relative; - top: 4px; - } - .bg--dark .cta-1 > div[class*='col-']:last-child, - .imagebg .cta-1 > div[class*='col-']:last-child { - border-left: none; - } -} -@media all and (min-width: 1200px) { - .cta-1.boxed--border { - padding: 0; - } - .cta-1 > div[class*='col-'] { - padding: 1.23809524em 15px; - } - .cta-1 > div[class*='col-']:last-child { - border-left: 1px solid #ECECEC; - } -} -@media all and (max-width: 990px) { - .cta-1 { - text-align: center; - } - .cta-1 > div[class*='col-'] { - padding-left: 0; - padding-right: 0; - } - .cta-1 > div[class*='col-']:not(:last-child) { - margin-bottom: 0.92857143em; - } - .cta-1 > div[class*='col-']:last-child { - margin-top: 1.85714286em; - } -} -@media all and (max-width: 767px) { - .cta .lead { - margin: 1.36842105263158em 0; - } -} -.cta-2 { - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; -} -.cta-2 h2 { - margin: 1.57575757575758em 0; -} -.cta-2.bg--primary:hover { - background: #86e2c1; -} -.cta-2:hover { - background: #ffffff; -} -@media all and (min-width: 768px) { - .cta-3 .switchable__text { - margin-top: 5.57142857em; - } -} -/*! -- Stack Videos -- */ -.video-play-icon:before { - border-color: transparent transparent transparent #252525; - margin-top: -3px; -} -.modal-instance .video-play-icon + span { - position: relative; - display: inline-block; - margin-left: 0.92857143em; - white-space: nowrap; - bottom: 22px; -} -.modal-instance .video-play-icon.video-play-icon--xs + span { - bottom: 8px; - margin-left: 0.46428571em; -} -.video-cover { - background: #252525; -} -.video-cover.border--round { - overflow: hidden; -} -.video-cover.border--round iframe { - border-radius: 6px; -} -.video-cover:not(:last-child) { - margin-bottom: 1.85714286em; -} -.video-cover + span.h4 + span { - display: inline-block; - margin-left: 0.92857143em; -} -.video-cover .video-play-icon { - transition: 0.2s ease-out; - -webkit-transition: 0.2s ease-out; - -moz-transition: 0.2s ease-out; -} -.video-cover .video-play-icon:hover { - box-shadow: 0 23px 40px rgba(0, 0, 0, 0.2); - transform: translate3d(-50%, -52%, 0); - -webkit-transform: translate3d(-50%, -52%, 0); -} -.imagebg .video-cover .video-play-icon { - z-index: 10; -} -@media all and (min-width: 768px) { - h2 + .video-cover { - margin-top: 3.71428571em; - } -} -@media all and (min-width: 768px) { - .video-1 .video-play-icon { - margin-right: 1.85714286em; - } - .video-1 h2 { - display: inline-block; - position: relative; - bottom: 14px; - } - div[class*='col-sm-6'] .video-1 h2 { - bottom: 0; - display: block; - } - div[class*='col-sm-6'] .video-1 .video-play-icon { - margin-bottom: 0.46428571em; - } -} -.video-1 h2 { - margin: 0; -} -.imageblock__content .modal-instance { - position: absolute; - top: 50%; - left: 50%; - transform: translate3d(-50%, -50%, 0); - -webkit-transform: translate3d(-50%, -50%, 0); -} -/*! -- Stack Modals -- */ -.modal-container .modal-content:not(.height--natural) { - height: auto; - width: auto; -} -.modal-instance:not(.block) { - display: inline-block; -} -.modal-instance.block > .btn { - display: block; -} -@media all and (min-width: 768px) { - .modal-instance + span:last-child { - display: inline-block; - margin-left: 0.92857143em; - } -} -.modal-container .modal-content { - max-height: 95%; - transform: translateX(-50%) translateY(-50%); - -webkit-transform: translateX(-50%) translateY(-50%); -} -.modal-container .modal-content .feature:only-child { - margin-bottom: 0; -} -.modal-container .modal-content .feature:only-child .boxed { - margin-bottom: 0; -} -.modal-container .modal-content .imagebg:not(.image--light) .modal-close-cross:before { - color: #fff; -} -@media all and (max-width: 767px) { - .modal-container .modal-content > .modal-close-cross { - top: 3em; - background: #222; - width: 2em; - height: 2em; - text-align: center; - border-radius: 50%; - color: #fff; - } -} -.modal-content { - -ms-overflow-style: none; -} -.modal-content::-webkit-scrollbar { - display: none; -} -/*! -- Stack Notifications -- */ -.notification { - margin: 1.85714286em; - box-shadow: none; -} -.notification:not([class*='bg--']) { - background: none; -} -.notification > .boxed { - margin: 0; -} -.notification > .feature, -.notification .feature__body { - margin-bottom: 0; -} -.search-box { - width: 100%; - margin: 0; - padding: 1.85714286em; - box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); - box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.04); -} -.search-box.notification--reveal { - z-index: 9999; -} -.search-box .notification-close-cross { - top: 2.32142857em; - right: 1.85714286em; -} -.notification-close-cross.notification-close-cross--circle { - background: #222; - width: 2em; - height: 2em; - text-align: center; - border-radius: 50%; - color: #fff; -} -/*! -- Stack Loader -- */ -.loader { - border: 3px solid #7adfbb; - border-radius: 30px; - height: 30px; - left: 50%; - margin: -15px 0 0 -15px; - opacity: 0; - position: fixed; - z-index: 10; - top: 50%; - width: 30px; - animation: pulsate 0.7s ease-out infinite; -} -.loader.loader--fade { - opacity: 0; - animation: none; -} -@keyframes pulsate { - 0% { - transform: scale(0.1); - opacity: 0.0; - } - 50% { - opacity: 1; - } - 100% { - transform: scale(1.2); - opacity: 0; - } -} -/*! -- Stack Lightboxes -- */ -.lb-close { - position: relative; - top: 10px; -} -.lb-close:before { - content: '\00D7'; - color: #fff; - font-size: 2.5em; - font-weight: 400; -} -.lb-close:hover { - text-decoration: none; -} -.lb-prev:after, -.lb-next:after { - font-family: 'stack-interface'; - position: fixed; -} -.lb-prev:after { - content: '\e801'; - left: 1.85714286em; -} -.lb-next:after { - content: '\e802'; - right: 1.85714286em; -} -.lb-data { - overflow: hidden; - min-height: 30px; -} -a[data-lightbox] { - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; -} -a[data-lightbox]:hover { - opacity: .8; - cursor: zoom-in; -} -/*! -- Stack Covers -- */ -.cover .typed-headline { - margin-bottom: 3.71428571em; -} -.cover .typed-headline .type--bold { - font-weight: 400; -} -.cover .triptych { - margin-top: 3.71428571em; -} -.cover .btn + .modal-instance { - margin-top: 1.85714286em; -} -.cover h3 + form, -.cover .h3 + form { - margin-top: 2.78571429em; -} -.cover .lead + .boxed { - margin-top: 3.71428571em; -} -.cover.unpad--bottom { - overflow: hidden; -} -.cover .modal-instance.block:not(:first-child):not(:last-child) { - margin: 2.78571429em 0; -} -.cover .pos-bottom { - margin-bottom: 1.85714286em; -} -@media all and (min-width: 768px) { - .cover .row .row:last-child { - margin-top: 5.57142857em; - } -} -@media all and (max-width: 767px) { - .cover .pos-bottom.pos-absolute { - position: relative; - margin-top: 1.85714286em; - } -} -@media all and (max-width: 990px) { - .cover .mt--3 { - margin-top: 0; - } -} -@media all and (min-width: 768px) { - .cover .triptych { - margin-top: 7.42857143em; - } -} -.cover-fullscreen { - min-height: 100vh; -} -.cover-fullscreen.slider[data-paging="true"] .slides .flickity-slider > li { - height: 100vh; -} -.cover-fullscreen.slider[data-paging="true"] .pos-bottom { - bottom: 5.57142857em; - width: 100%; -} -.cover-fullscreen.slider[data-paging="true"] h4 { - margin: 0; -} -.cover-slider { - overflow: hidden; -} -.cover-slider .slider { - position: relative; - width: 100%; - pointer-events: none; -} -.cover-slider .slider:nth-child(1) { - transform: translateY(-30%); -} -.cover-slider .slider:nth-child(2) { - transform: translateY(-25%); -} -.cover-slider .slider:nth-child(3) { - transform: translateY(-20%); -} -.cover-slider .slider .slide { - opacity: .05; -} -.cover-slider .typed-headline { - margin: 0; -} -.cover-slider .typed-headline + .btn { - margin-top: 0.92857143em; -} -.cover-slider .slider-container { - transform: rotateZ(-30deg) translateY(-10%); - -webkit-transform: rotateZ(-30deg) translateY(-10%); - position: absolute; - width: 100%; - height: 100%; - top: 0; -} -@media all and (min-width: 768px) { - .cover-slider + .cta-4 { - position: absolute; - background: none; - color: #fff; - border-bottom: none !important; - width: 100%; - transform: translate3d(0, -100%, 0); - -webkit-transform: translate3d(0, -100%, 0); - } - .cover-slider + .cta-4 a { - color: #fff; - font-weight: 600; - } -} -.cover-features.space--lg { - padding-bottom: 3.71428571em; -} -.cover-features .row:nth-child(2) { - margin-top: 11.14285714em; -} -@media all and (max-width: 767px) { - .cover-features.space--lg { - padding-bottom: 1.85714286em; - } - .cover-features .row:nth-child(2) { - margin-top: 3.71428571em; - } -} -/*! -- Stack Processes -- */ -.process-1 { - padding: 3.71428571em 0; - position: relative; - overflow: hidden; -} -.process-1 .process__item { - width: 50%; -} -.process-1 .process__item:not(:last-child) { - margin-bottom: 1.85714286em; -} -.process-1:before { - content: ''; - position: absolute; - width: 2px; - height: 100%; - left: 50%; - top: 0; - background: #7adfbb; -} -.process__item { - position: relative; -} -.process__item:after { - content: ''; - width: 1.85714286em; - height: 1.85714286em; - background: #fff; - border: 2px solid #7adfbb; - border-radius: 50%; - position: absolute; - top: 0; - margin-left: 1px; -} -@media all and (min-width: 768px) { - .process-1 .process__item:nth-child(odd) { - text-align: right; - padding-right: 3.71428571em; - } - .process-1 .process__item:nth-child(odd):after { - right: -0.92857143em; - } - .process-1 .process__item:nth-child(even) { - margin-left: 50%; - padding-left: 3.71428571em; - } - .process-1 .process__item:nth-child(even):after { - left: -0.92857143em; - } -} -@media all and (max-width: 767px) { - .process-1:before, - .process-2:before { - left: 0.92857143em; - } - .process-1 .process__item, - .process-2 .process__item { - width: 100%; - padding-left: 3.71428571em; - } - .process-1 .process__item:after, - .process-2 .process__item:after { - left: 0; - } -} -.bg--dark .process-1:before, -.imagebg .process-1:before, -.bg--dark .process-2:before, -.imagebg .process-2:before { - background: #fff; -} -.bg--dark .process-1 .process__item:after, -.imagebg .process-1 .process__item:after, -.bg--dark .process-2 .process__item:after, -.imagebg .process-2 .process__item:after { - background: #fff; -} -.bg--dark .process-1 .process__item:after, -.bg--dark .process-2 .process__item:after { - border-color: #252525; -} -.process-2 { - position: relative; -} -.process-2 .process__item { - padding-top: 3.71428571em; -} -.process-2 .process__item:after { - display: inline-block; - text-align: center; -} -.process-2:before { - content: ''; - position: absolute; - width: 100%; - height: 2px; - top: 0.92857143em; - left: 0; - background: #7adfbb; -} -@media all and (max-width: 767px) { - .process-2:before { - height: 100%; - width: 2px; - left: 1.85714286em; - margin-left: 2px; - } - .process-2 .process__item:after { - top: 3.71428571em; - } -} -.process-3 { - list-style: none; - position: relative; -} -.process-3 li { - position: relative; - z-index: 1; - overflow: hidden; -} -.process-3 li .process__number { - float: left; - width: 15%; - width: 3.71428571em; - height: 3.71428571em; - border-radius: 50%; - border: 2px solid #7adfbb; - background: #fff; - text-align: center; -} -.process-3 li .process__number span { - font-size: 1.35714286em; - font-weight: bold; - color: #7adfbb; - position: relative; - top: 12px; -} -.process-3 li .process__body { - width: 80%; - float: right; -} -.process-3 li .process__body h4 { - margin-bottom: 0.342105263157895em; -} -.process-3 li:not(:last-child) { - margin-bottom: 3.71428571em; -} -.process-3:before { - content: ''; - position: absolute; - height: 100%; - width: 1px; - left: 1.85714286em; - top: 0; - border-left: 1px dashed #ddd; -} -.bg--dark .process-3 li .process__number { - background: #252525; -} -.bg--dark .process-3:before { - border-color: #aaa; -} -.process-stepper > li { - transition: all .3s ease; - display: inline-block; - float: left; - text-align: center; - position: relative; -} -.process-stepper > li:before { - transition: all .3s ease; - content: ''; - width: 0.92857143em; - height: 0.92857143em; - background: #ccc; - border-radius: 50%; - display: block; - margin: 0 auto; - margin-bottom: 0.92857143em; -} -.process-stepper > li:after { - transition: all .3s ease; - content: ''; - width: 100%; - height: 2px; - position: absolute; - background: #ccc; - top: 5px; - left: 0; -} -.process-stepper > li:first-child:after, -.process-stepper > li:last-child:after { - width: 50%; -} -.process-stepper > li:first-child:after { - left: 50%; -} -.process-stepper > li.active:before, -.process-stepper > li.active:after { - background: #7adfbb; -} -.process-stepper > li > span { - cursor: default; -} -.process-stepper[data-process-steps="6"] > li { - width: 16.666666666666667%; -} -.process-stepper[data-process-steps="5"] > li { - width: 20%; -} -.process-stepper[data-process-steps="4"] > li { - width: 25%; -} -.process-stepper[data-process-steps="3"] > li { - width: 33.33333333%; -} -.process-stepper[data-process-steps="2"] > li { - width: 50%; -} -.bg--dark .process-stepper li:not(.active):before, -.bg--dark .process-stepper li:not(.active):after { - background: #585858; -} -/*! -- Stack Typed Text -- */ -span + .typed-text.h2 { - margin-left: 4px; -} -span + .typed-text.h1 { - margin-left: 6px; -} -@media all and (max-width: 767px) { - .typed-text { - display: block; - } - .typed-headline { - margin-bottom: 1.85714286em; - } - .typed-headline h1, - .typed-headline .h1 { - margin-bottom: 0; - } -} -/*! -- Stack Forms -- */ -.bg--dark input, -.imagebg:not(.image--light) input, -.bg--dark textarea, -.imagebg:not(.image--light) textarea, -.bg--dark select, -.imagebg:not(.image--light) select, -.bg--dark .input-select:after, -.imagebg:not(.image--light) .input-select:after { - color: #666666; -} -.bg--dark label, -.imagebg:not(.image--light) label { - color: #fff; -} -.bg--dark form.attempted-submit input.field-error { - background: #D84D4D; - color: #fff; -} -form { - position: relative; -} -form > div[class*='col-']:not(:last-child), -form > .row > div[class*='col-']:not(:last-child) { - margin-bottom: 0.92857143em; -} -form .boxed:last-child { - margin: 0; -} -form.form--clearfix { - margin-left: -15px; -} -@media all and (min-width: 768px) { - div[class*='col-'] > form div[class*='col-']:last-child:nth-child(2) { - padding-right: 0; - } - div[class*='col-'] > form div[class*='col-']:first-child:nth-last-child(2) { - padding-left: 0; - } - form.form--horizontal > div[class*='col-'] { - margin: 0; - } -} -@media all and (max-width: 767px) { - .row form > .row { - margin-left: 0; - margin-right: 0; - } -} -h2 + form, -.h2 + form { - margin-top: 2.78571429em; -} -h3 + form, -.h3 + form, -.lead + form { - margin-top: 2.78571429em; -} -.cover .lead + form { - margin-top: 3.71428571em; -} -form + span.type--fine-print { - margin-top: 1.08333333333334em; - display: inline-block; -} -.form--inline > span.h4 { - color: #666666; -} -.form--inline input, -.form--inline [class*='input-'] { - display: inline-block; - max-width: 200px; -} -.form--inline > span:not(:last-child), -.form--inline input:not(:last-child), -.form--inline [class*='input-']:not(:last-child) { - margin-right: 0.92857143em; -} -.form--inline button { - max-width: 200px; -} -.bg--dark .form--inline > span.h4, -.imagebg:not(.image--light) .form--inline > span.h4 { - color: #fff; -} -button, -input[type="submit"] { - height: 3.25000000000001em; -} -button.btn, -input[type="submit"].btn { - font-size: 0.85714286em; - font-weight: 700; - padding-left: 0; - padding-right: 0; -} -button.btn.btn--primary, -input[type="submit"].btn.btn--primary { - color: #fff; -} -button.btn.type--uppercase, -input[type="submit"].btn.type--uppercase { - letter-spacing: .5px; - margin-right: -0.5px; -} -button.checkmark.checkmark--cross, -input[type="submit"].checkmark.checkmark--cross { - width: 1.85714286em; - height: 1.85714286em; - border: none; - background: #e23636; -} -button.checkmark.checkmark--cross:before, -input[type="submit"].checkmark.checkmark--cross:before { - content: '\00d7'; - font-size: 18px; - top: -1px; -} -button[type="submit"].btn--loading:after, -input[type="submit"][type="submit"].btn--loading:after { - background: #7adfbb; -} -.bg--primary button.btn { - border-color: rgba(255, 255, 255, 0.5); - color: #fff; -} -.bg--primary button.btn:hover { - border-color: #fff; -} -.bg--primary button.btn.btn--primary { - color: #7adfbb; - border-color: #7adfbb; -} -.bg--primary button.btn.btn--primary-1 { - border-color: #4c8577; -} -input, -select { - height: 2.78571429em; -} -input.field-error { - border-color: #EBA8A8; -} -input[type] + input[type], -input[type] + .input-checkbox, -input[type] + button, -input[type] + .input-select { - margin-top: 0.92857143em; -} -input, -[class*='input-'] label, -select, -textarea { - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; -} -input:not([class*='col-']), -select:not([class*='col-']), -.input-select:not([class*='col-']), -textarea:not([class*='col-']), -button[type="submit"]:not([class*='col-']) { - width: 100%; -} -input[type], -select, -textarea { - padding-left: 0.92857143em; -} -input[type]:focus, -select:focus, -textarea:focus { - border-color: #a3e9d0; -} -input[type="image"] { - border: none; - padding: none; - width: auto; -} -label { - font-size: .85714286em; -} -.bg--primary label, -.bg--primary-1 label { - color: #fff; -} -.input-icon i { - top: 8px; - left: 8px; -} -.input-icon input { - padding-left: 2.78571429em; -} -.text-center .input-checkbox label, -.text-center .input-radio label { - margin: 0 auto; -} -.input-checkbox label, -.input-radio label { - font-size: 1em; -} -.input-checkbox { - margin-top: 0.46428571em; -} -.input-checkbox.field-error label { - border-color: #EBA8A8; -} -.input-checkbox label { - background: none; - border: 1px solid #d3d3d3; - text-align: center; - position: relative; -} -.input-checkbox label:not(:last-child) { - margin-right: 0.46428571em; -} -.input-checkbox label:hover { - border-color: #7adfbb; -} -.input-checkbox label:before { - content: ''; - left: 0; - border-radius: 6px; - position: absolute; - width: 100%; - height: 100%; - border: 1px solid #7adfbb; - opacity: 0; - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; -} -.input-checkbox input:checked + label { - border-color: #7adfbb; - background: #7adfbb; -} -.input-checkbox input:checked + label:after { - content: 'L'; - transform: rotateY(180deg) rotateZ(-45deg); - color: #fff; - position: absolute; - width: 100%; - left: 0; - top: -2px; - font-weight: 700; -} -.input-checkbox input:checked + label:before { - animation: pulse .45s ease forwards; - -webkit-animation: pulse .45s ease forwards; -} -.input-checkbox + span { - display: inline-block; - position: relative; - bottom: 10px; - margin-left: 0.92857143em; - font-size: 0.85714286em; - white-space: nowrap; -} -.input-checkbox + button[type] { - margin-top: 0.92857143em; -} -.input-checkbox + span + button[type] { - margin-top: 0.92857143em; -} -.bg--dark .input-checkbox:not(.checked) label { - border-color: #a5a5a5; -} -.bg--dark .input-checkbox + span { - opacity: .75; -} -.input-checkbox.input-checkbox--switch label { - width: 3.71428571em; - border-radius: 60px; -} -.input-checkbox.input-checkbox--switch label:before { - width: 20px; - height: 20px; - border-radius: 50%; - border-color: #d3d3d3; - opacity: 1; - left: 2px; - top: 2px; -} -.input-checkbox.input-checkbox--switch label:hover:before { - border-color: #7adfbb; -} -.input-checkbox.input-checkbox--switch input:checked + label { - background: none; -} -.input-checkbox.input-checkbox--switch input:checked + label:before { - animation: none !important; - background: #7adfbb; - border-color: #7adfbb; - transform: translateX(1.85714286em); -} -.input-checkbox.input-checkbox--switch input:checked + label:after { - display: none; -} -.input-radio.field-error label { - border-color: #EBA8A8; -} -.input-radio .input__label { - font-size: .85714286em; - display: inline-block; -} -.input-radio .input__label + label { - margin-top: 0.92857143em; -} -.input-radio label { - position: relative; - background: none; - border: 1px solid #d3d3d3; -} -.input-radio label:hover { - border-color: #7adfbb; -} -.input-radio label:before { - content: ''; - position: absolute; - width: 100%; - height: 100%; - border-radius: 50%; - border: 1px solid #7adfbb; - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; - opacity: 0; - left: 0; -} -.input-radio input:checked + label { - border-color: #7adfbb; - background-color: #7adfbb; -} -.input-radio input:checked + label:after { - content: ''; - position: absolute; - width: 10px; - height: 10px; - left: 7px; - top: 7px; - background-color: #fff; - border-radius: 50%; -} -.input-radio input:checked + label:before { - animation: pulse .4s ease forwards; -} -.input-radio--innerlabel label { - transition: all .3s ease; - height: 2.78571429em; - line-height: 2.50714286em; - padding: 0 0.92857143em; - border: 1px solid #ececec; - border-radius: 6px; - cursor: pointer; - width: 100%; - text-align: center; -} -.input-radio--innerlabel:hover { - border-color: #7adfbb; -} -.input-radio--innerlabel input:checked + label { - border-color: #7adfbb; - background: #7adfbb; - color: #fff; -} -.input-radio--innerlabel input:checked + label:after { - display: none; -} -.input-radio--innerlabel input:checked + label:before { - animation: none; -} -@media all and (max-width: 1024px) { - .input-radio input:checked + label:after { - top: 6px; - left: 6px; - } -} -.bg--primary .input-radio--innerlabel { - border-color: #a3e9d0; -} -.bg--primary .input-radio--innerlabel:hover { - border-color: #fff; -} -.bg--primary .input-radio--innerlabel.checked { - background: #fff; - border-color: #fff; -} -.bg--primary .input-radio--innerlabel.checked label { - color: #7adfbb; -} -.bg--primary-1 .input-radio--innerlabel { - border-color: #60a493; -} -.bg--primary-1 .input-radio--innerlabel:hover { - border-color: #fff; -} -.bg--primary-1 .input-radio--innerlabel.checked { - background: #fff; - border-color: #fff; -} -.bg--primary-1 .input-radio--innerlabel.checked label { - color: #4c8577; -} -.input-select { - position: relative; -} -.input-select select { - -moz-appearance: none; - -webkit-appearance: none; -} -.input-select select::-ms-expand { - display: none; -} -.input-select:not(:last-child) { - margin-bottom: 0.92857143em; -} -.input-select:after { - position: absolute; - right: 0; - height: 100%; - top: 0; - font-size: 30px; - content: '\2263'; - pointer-events: none; - padding: 0 13px; - border-left: 1px solid #ececec; - line-height: 31px; -} -.input-select:focus:after { - border-color: #7adfbb; -} -.input-select select:focus { - border-color: #7adfbb; -} -.input-number { - position: relative; -} -.input-number > input[type="number"] { - padding-left: .46428571em; - -moz-appearance: textfield; - width: 100%; - text-align: center; -} -.input-number > input[type="number"]::-webkit-inner-spin-button { - display: none; -} -.input-number .input-number__controls { - position: absolute; - height: 100%; - width: 100%; - right: 0; - top: 0; - padding: 0 0.92857143em; -} -.input-number .input-number__controls > span { - position: absolute; - display: block; - width: 10%; - min-width: 3.71428571em; - height: 100%; - cursor: pointer; - -webkit-user-select: none; - user-select: none; - text-align: center; - padding-top: 6px; - transition: all .3s ease; -} -.input-number .input-number__controls > span:hover { - color: #7adfbb; -} -.input-number .input-number__controls .input-number__increase { - right: 0; - border-left: 1px solid #ececec; -} -.input-number .input-number__controls .input-number__decrease { - left: 0; - border-right: 1px solid #ececec; -} -/*! -- Stack Subscribe Forms -- */ -.subscribe-form-1 h3 { - margin-bottom: 0.52em; -} -.subscribe-form-1.boxed form { - margin: 1.85714286em; -} -@media all and (min-width: 991px) { - .subscribe-form-2 p { - top: 2px; - position: relative; - } - .subscribe-form-2 input { - margin: 0; - } - .subscribe-form-2 form [class*='col-'] { - margin: 0 !important; - } -} -@media all and (max-width: 990px) { - .subscribe-form-2 { - text-align: center; - } - .subscribe-form-2 form { - margin-top: 1.85714286em; - } -} -/*! -- Stack Elaborate Forms -- */ -@media all and (max-width: 767px) { - .elaborate-form-1 .pos-vertical-center { - padding-left: 15px; - padding-right: 15px; - } - .elaborate-form-1 form .col-xs-6:nth-child(even) { - padding-left: 15px; - } - .elaborate-form-1 form .col-xs-6:nth-child(odd) { - padding-right: 15px; - } - .elaborate-form-1 .row form > .row { - margin-left: -15px; - margin-right: -15px; - } -} -/* Stack Boxed Forms */ -.boxed-form h4 { - margin-bottom: 0.684210526315789em; -} -.boxed-form:last-child { - margin-bottom: 0; -} -/* Stack Datepicker Form */ -.datepicker { - cursor: pointer; -} -.picker { - transition: all .3s ease; - z-index: 10; - max-width: 100%; - -webkit-transition: all .3s ease; - margin-top: 0.46428571em; - position: absolute; - background: #ffffff; - border: 1px solid #ececec; - border-radius: 6px; - padding: 0.92857143em; - box-shadow: 0 23px 40px rgba(0, 0, 0, 0.2); -} -.picker .picker__header { - text-align: center; - margin-bottom: 0.92857143em; -} -.picker .picker__header > div { - font-weight: 600; - display: inline-block; - color: #252525; -} -.picker .picker__header > div:not(:last-child) { - margin-right: 0.46428571em; -} -.picker .picker__header .picker__nav--prev, -.picker .picker__header .picker__nav--next { - height: 10px; - width: 10px; - cursor: pointer; -} -.picker .picker__header .picker__nav--prev:after, -.picker .picker__header .picker__nav--next:after { - font-family: 'stack-interface'; -} -.picker .picker__header .picker__nav--next { - float: right; -} -.picker .picker__header .picker__nav--next:after { - content: '\e80c'; -} -.picker .picker__header .picker__nav--prev { - float: left; -} -.picker .picker__header .picker__nav--prev:after { - content: '\e80b'; -} -.picker .picker__day { - transition: all .3s ease; - cursor: pointer; -} -.picker .picker__day.picker__day--highlighted { - color: #7adfbb; - font-weight: 600; -} -.picker .picker__day:hover { - color: #7adfbb; -} -.picker:not(.picker--opened) { - opacity: 0; - visibility: hidden; - pointer-events: none; - transform: scale(0); -} -.picker .picker__holder { - outline: none !important; - border: none !important; -} -.picker table td { - padding: 0.46428571em; - padding-top: 0; -} -.picker .picker__footer { - text-align: center; -} -.picker .picker__button--today { - float: left; -} -.picker .picker__button--close { - float: right; -} -.picker button { - transition: all .3s ease; - height: auto; - border: none; - display: inline-block; -} -.picker button:not(:hover) { - opacity: .5; -} -/*! -- Stack Sliders -- */ -.flickity-prev-next-button { - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; - border-radius: 0; - background: #252525; - width: 2.78571429em; - height: 5.57142857em; -} -.flickity-prev-next-button:not(:hover) { - opacity: .5; -} -.flickity-prev-next-button:hover { - background: #252525; -} -.flickity-prev-next-button.previous { - left: 0; -} -.flickity-prev-next-button.next { - right: 0; -} -.flickity-prev-next-button:before { - color: #fff; -} -.slider.slider--inline-arrows .flickity-prev-next-button { - background: none; -} -.slider.slider--inline-arrows .flickity-prev-next-button:before { - font-size: 1.78571429em; - color: #252525; - content: '\e802'; -} -.slider.slider--inline-arrows .flickity-prev-next-button.previous:before { - content: '\e801'; -} -.slider.slider--columns .previous { - left: 15px; -} -.slider.slider--columns .next { - right: 15px; -} -.slider.border--round .slides li { - border-radius: 6px; - overflow: hidden; -} -.slider.boxed--border .slides li { - border: 1px solid #ececec; -} -.slider .slides li .feature:not(.feature-9) { - margin-bottom: 0; -} -.slide .boxed:last-child { - margin-bottom: 0; -} -.slide:not([class*='col-']) > img:only-child { - width: 100%; -} -.bg--dark .slider.slider--inline-arrows .flickity-prev-next-button:before, -.bg--primary .slider.slider--inline-arrows .flickity-prev-next-button:before, -.imagebg:not(.image--light) .slider.slider--inline-arrows .flickity-prev-next-button:before { - color: #fff; -} -@media all and (max-width: 990px) { - .flickity-prev-next-button { - display: none; - } -} -@media all and (min-width: 768px) { - h2 + .slider, - .h2 + .slider { - margin-top: 3.71428571em; - } -} -.slider.slider--ken-burns:not(.parallax) .slide.is-selected > .background-image-holder, -.slider.slider--ken-burns:not(.parallax) .slide.is-selected > img:only-child { - animation: kenBurns 15s ease alternate infinite; - -webkit-animation: kenBurns 15s ease alternate infinite; -} -.radial { - margin-left: auto; - margin-right: auto; -} -.radial .radial__label { - transition: opacity .3s ease; - -webkit-transition: opacity .3s ease; -} -.radial:not(.radial--active) .radial__label { - opacity: 0; -} -.radial:not(:last-child) { - margin-bottom: 1.85714286em; -} -@media all and (max-width: 767px) { - .radial { - margin-bottom: 1.85714286em; - } -} -/*! -- Stack Pricing -- */ -.pricing { - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; - position: relative; -} -.pricing h3:first-child { - margin: 0; -} -.pricing .label { - top: 2.78571429em; - right: 2.78571429em; -} -.pricing .h2 { - margin-bottom: 0.3939393939394em; -} -.pricing ul li:not(:last-child) { - margin-bottom: 0.46428571em; -} -.pricing ul li .checkmark + span { - position: relative; - bottom: 3px; -} -.pricing:hover { - box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); - box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.04); -} -.pricing .h1 { - font-size: 4.21428571428571em; - line-height: 1.10169491525424em; - margin-bottom: 0.22033898305085em; -} -.pricing .h1 .pricing__dollar { - font-size: 0.51020408163265em; - position: relative; - bottom: 20px; -} -.pricing .feature-6 p { - min-height: 5.57142857em; -} -.pricing-1 .btn:last-child { - position: absolute; - width: 100%; - bottom: 0; - left: 0; - border-radius: 0 0 6px 6px; - padding: 0.92857143em 0; - margin: 0; -} -.pricing-1 .btn:last-child:hover { - transform: none !important; -} -.pricing-1 ul { - margin-bottom: 5.57142857em; -} -.pricing-1 p { - min-height: 5.57142857em; -} -.pricing-1 p:first-of-type { - margin-top: 1.85714286em; -} -.pricing-1 p:last-of-type { - margin-bottom: 5.57142857em; -} -.pricing-1 img + p:first-of-type { - margin-top: 0; -} -@media all and (min-width: 991px) { - .pricing-2 ul:first-child { - margin-top: 4.64285714em; - } -} -@media all and (max-width: 990px) { - .pricing-2 { - text-align: center; - } - .pricing-2 ul:first-child { - margin-top: 1.85714286em; - } -} -.pricing-3 { - border: 1px solid #ececec; - border-radius: 6px; -} -.pricing-3 .pricing__head { - margin: 0; - border-bottom: 1px solid #ececec; -} -.pricing-3 .pricing__head + .btn { - display: block; - border-radius: 0; - padding: 0.92857143em 0; -} -.pricing-3 ul { - border-radius: 0 0 6px 6px; -} -.pricing-3 ul li { - padding: 0.92857143em 0; -} -.pricing-3 ul li:not(:last-child) { - border-bottom: 1px solid #ececec; - margin: 0; -} -.pricing-3 ul:last-child { - margin: 0; -} -@media all and (max-width: 990px) { - .pricing-3 { - margin-bottom: 1.85714286em; - } -} -@media all and (min-width: 768px) { - .pricing-section-1 .pricing:not(.boxed--emphasis) { - left: 0.92857143em; - } - .pricing-section-1 .pricing.boxed--emphasis { - right: 0.92857143em; - } -} -@media all and (min-width: 990px) { - .pricing-section-2 div[class*='col-'] { - padding: 0; - } - .pricing-section-2 div[class*='col-']:not(:first-child):not(:last-child) .pricing__head { - border-radius: 0; - } - .pricing-section-2 div[class*='col-']:first-child .pricing { - border-radius: 6px 0 0 6px; - } - .pricing-section-2 div[class*='col-']:first-child .pricing .pricing__head { - border-radius: 6px 0 0 0; - } - .pricing-section-2 div[class*='col-']:last-child .pricing { - border-radius: 0 6px 6px 6px; - border-right: 1px solid #ececec; - } - .pricing-section-2 div[class*='col-']:last-child .pricing .pricing__head { - border-radius: 0 6px 0 0; - } - .pricing-section-2 .pricing { - border: 1px solid #ececec; - border-radius: 0 0 0 6px; - border-right: none; - } - .pricing-section-2 .pricing:hover { - box-shadow: none; - } - .pricing-section-2 .pricing ul { - margin: 0; - } -} -.pricing-section-2.bg--dark .pricing, -.pricing-section-2.bg--dark .pricing .pricing__head, -.pricing-section-2.bg--dark .pricing ul li:not(:last-child), -.pricing-section-2.bg--dark div[class*='col-']:last-child .pricing { - border-color: #3f3f3f; -} -.pricing-section-2.imagebg .pricing, -.pricing-section-2.imagebg .pricing .pricing__head, -.pricing-section-2.imagebg .pricing ul li:not(:last-child), -.pricing-section-2.imagebg div[class*='col-']:last-child .pricing { - border-color: rgba(255, 255, 255, 0.2); -} -/*! -- Stack Progress Horizontal -- */ -.progress-horizontal:not(:last-child) { - margin-bottom: 1.85714286em; -} -.progress-horizontal.progress-horizontal--lg .progress-horizontal__bar { - height: 1.85714286em; -} -.progress-horizontal.progress-horizontal--sm .progress-horizontal__bar { - height: 0.46428571em; -} -.progress-horizontal__bar { - height: 0.92857143em; - border-radius: 100px; - background: #fafafa; - border: 1px solid rgba(0, 0, 0, 0.1); -} -.progress-horizontal__bar:not(:last-child) { - margin-bottom: 0.46428571em; -} -.progress-horizontal__progress { - background: #7adfbb; - border-radius: 100px; -} -/*! -- Stack Maps -- */ -iframe[src*='google.com/maps'] { - border: none; -} -.map-container { - min-height: 400px; -} -.map-container:not(:last-child) { - margin-bottom: 1.85714286em; -} -.map-container.border--round { - overflow: hidden; - z-index: 2; -} -.map-container.border--round .gm-style { - border-radius: 6px; -} -.map-container iframe { - left: 0; -} -@media all and (min-width: 768px) { - .background-image-holder .map-container, - .imageblock__content .map-container { - position: absolute; - width: 100%; - height: 100%; - top: 0; - left: 0; - } - .map-container + div[class*='col-'] { - margin-top: 3.71428571em; - } -} -/*! -- Stack Testimonials -- */ -.testimonial { - position: relative; - overflow: hidden; -} -.testimonial h5:nth-last-child(2) { - margin: 0; -} -.testimonial .testimonial__image { - margin-bottom: 1.85714286em; -} -@media all and (min-width: 1025px) { - .testimonial-1 .switchable__text { - margin-top: 7.42857143em; - } -} -.testimonial-2 { - float: none; - width: 100%; -} -.testimonial-2 .testimonial__image img { - max-height: 3.71428571em; - float: left; - margin-right: 1.85714286em; -} -.testimonial-2 .boxed { - width: 100%; -} -@media all and (max-width: 990px) { - .testimonial-2 p { - min-height: 7.42857143em; - } -} -@media all and (max-width: 767px) { - .testimonial-2 p { - min-height: 0; - } -} -@media all and (min-width: 768px) { - .lead + .testimonial-2 { - margin-top: 3.71428571em; - } -} -@media all and (min-width: 768px) { - .testimonials-1 .list-inline { - position: relative; - top: 0.92857143em; - } - .testimonials-1 .list-inline li:not(:last-child) { - margin-right: 3.71428571em; - } -} -@media all and (max-width: 767px) { - .testimonials-1 .list-inline { - margin-top: 1.85714286em; - } - .testimonials-1 .list-inline li { - margin-bottom: 1.85714286em; - } -} -/*! -- Stack Masonry -- */ -.masonry__item:not(:empty) { - margin-bottom: 30px; - transform-style: preserve-3d; -} -.masonry__item:not(:empty) article { - margin: 0; -} -.masonry__item:not(:empty) article .boxed { - margin: 0; -} -.masonry__item:empty { - height: 0; - min-height: 0; -} -.masonry hr + .masonry__container, -.masonry hr + .row { - margin-top: 4.64285714em; -} -.masonry-filter-holder:not(.masonry-filters--horizontal) { - display: inline-block; - cursor: pointer; - height: 3.71428571em; - position: relative; - z-index: 9; - min-width: 143px; -} -.masonry-filter-holder:not(.masonry-filters--horizontal) .masonry__filters { - cursor: pointer; - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; - z-index: 2; - display: inline-block; - position: absolute; - left: 0; - text-align: left; - padding: 0.92857143em 1.85714286em; - border: 1px solid #ececec; - background: #ffffff; - border-radius: 6px; -} -.masonry-filter-holder:not(.masonry-filters--horizontal) .masonry__filters ul { - margin: 0; - cursor: pointer; -} -.masonry-filter-holder:not(.masonry-filters--horizontal) .masonry__filters ul li { - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; - display: block; - color: #666666; - white-space: nowrap; -} -.masonry-filter-holder:not(.masonry-filters--horizontal) .masonry__filters ul li:not(:last-child) { - margin-bottom: 0.92857143em; -} -.masonry-filter-holder:not(.masonry-filters--horizontal) .masonry__filters ul li.active { - color: #7adfbb; - cursor: pointer; -} -.masonry-filter-holder:not(.masonry-filters--horizontal) .masonry__filters ul li.active:after { - content: '\25bc'; - font-size: 8px; - margin-left: 6px; - position: relative; - bottom: 2px; - display: inline-block; - transform: scaleX(1.4) scaleY(0.9); - transition: 0.2s linear; - -webkit-transition: 0.2s linear; - -moz-transition: 0.2s linear; -} -.masonry-filter-holder:not(.masonry-filters--horizontal) .masonry__filters ul li:hover { - color: #7adfbb; -} -.masonry-filter-holder:not(.masonry-filters--horizontal) .masonry__filters ul:hover li.active:after { - opacity: 0; -} -.masonry-filter-holder:not(.masonry-filters--horizontal):not(:hover) .masonry__filters ul { - max-height: 1.85714286em; - overflow: hidden; -} -.masonry-filter-holder:not(.masonry-filters--horizontal):not(:hover) .masonry__filters ul li:not(.active) { - display: none; -} -.masonry-filter-holder:not(.masonry-filters--horizontal):hover .masonry__filters { - box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); - box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.04); -} -.masonry-filter-holder:not(.masonry-filters--horizontal):hover .masonry__filters ul li.active { - cursor: default; -} -.masonry-filters--horizontal { - display: inline-block; -} -.masonry-filters--horizontal .masonry__filters { - display: inline-block; - position: relative; - bottom: 20px; - margin-left: 0.92857143em; -} -.masonry-filters--horizontal .masonry__filters ul li { - transition: all .3s ease; - cursor: pointer; - display: inline-block; -} -.masonry-filters--horizontal .masonry__filters ul li:not(:last-child) { - margin-right: 1.85714286em; -} -.masonry-filters--horizontal .masonry__filters ul li.active { - color: #7adfbb; -} -.masonry-filters--horizontal .masonry__filters ul li:not(.active) { - opacity: .5; -} -.masonry-filters--horizontal .masonry__filters ul li:hover { - opacity: 1; -} -.masonry-filter-holder + .masonry__container { - margin-top: 3.71428571em; -} -.bg--dark .masonry-filter-holder .masonry__filters { - background: #2a2a2a; - border-color: #3f3f3f; -} -.bg--dark .masonry-filter-holder .masonry__filters li { - color: #fff; -} -.masonry.masonry-demos .masonry__item:not(:empty) { - margin-bottom: 3.71428571em; -} -.masonry.masonry-demos .masonry__item h5 { - margin-bottom: 0; -} -.masonry.masonry-demos .masonry__item:not([style]) .hover-item { - min-height: 450px; - background: #323232; - border: 1px solid #3f3f3f; -} -.masonry.masonry-demos .hover-item { - transition: 0.35s ease-out; - -webkit-transition: 0.35s ease-out; - -moz-transition: 0.35s ease-out; - border-radius: 6px; - overflow: hidden; -} -.masonry.masonry-demos .hover-item:hover { - transform: translateY(-10px); -} -.masonry.masonry-demos .masonry__container { - margin-top: 3.71428571em; -} -/*! -- Stack Blog -- */ -article .article__title { - margin-bottom: 3.71428571em; -} -article .article__title > a { - display: block; -} -article .article__title > a:hover { - text-decoration: none; - opacity: .75; -} -article .article__title h2 { - margin-bottom: 0.3939393939394em; -} -article .article__title h1 { - margin-bottom: 0.29545454545455em; -} -article .article__body img, -article .article__body iframe, -article .article__body .video-cover { - border-radius: 6px; -} -article .article__body img:not(:last-child), -article .article__body iframe:not(:last-child), -article .article__body .video-cover:not(:last-child) { - margin-bottom: 1.85714286em; -} -article .article__body > a:first-child > img { - margin-bottom: 1.85714286em; -} -article .article__body p, -article .article__body ul { - font-size: 1.35714286em; - line-height: 1.68421053em; - font-weight: 400; - color: #808080; -} -article .article__body p:not(:last-child), -article .article__body ul:not(:last-child) { - margin-bottom: 1.36842105263158em; -} -article .article__body p + .btn:last-child, -article .article__body ul + .btn:last-child { - margin-top: 0.92857143em; -} -article .article__body p + h5, -article .article__body ul + h5 { - margin-top: 2.78571429em; -} -article .article__body blockquote { - text-align: center; -} -article .article__body blockquote:not(:last-child) { - margin-top: 2.08em; - margin-bottom: 2.08em; -} -article .article__share { - margin-top: 5.57142857em; -} -article.imagebg { - padding: 1.85714286em; - overflow: hidden; -} -article.imagebg:before { - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; -} -article.imagebg:hover:before { - opacity: .6; -} -article.imagebg .article__title { - margin: 0; - position: absolute; - bottom: 0; - z-index: 2; - max-width: 90%; -} -article.imagebg .article__title span { - font-size: 0.85714286em; -} -article.imagebg .label { - z-index: 2; - top: 1.85714286em; - right: 1.85714286em; -} -article.feature-1 h5 { - min-height: 3.71428571em; -} -article.feature-1 a img { - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; -} -article.feature-1 a:hover img { - opacity: .85; -} -figure[class*='col-'] { - padding: 0 !important; -} -figure.pull-right { - margin-left: 2.78571429em; -} -figure.pull-left { - margin-right: 2.78571429em; -} -figure img:not(:last-child) { - margin-bottom: 0.46428571em !important; -} -figure figcaption { - font-size: 0.85714286em; - font-style: italic; -} -section.unpad > article .imagebg + div { - padding: 5.57142857em 0; -} -.article__author { - padding-bottom: 1.85714286em; -} -.article__author img { - max-height: 3.71428571em; - margin-bottom: 0.46428571em; -} -.slides--gapless article.imagebg { - height: 27.85714286em; -} -.masonry-blog-magazine article, -.masonry-blog-magazine .masonry__promo { - height: 338px; -} -.masonry-blog-magazine .height--tall { - height: calc(706px); -} -@media all and (min-width: 991px) { - .masonry__promo.boxed--lg { - padding: 7.42857143em; - } -} -@media all and (max-width: 990px) { - .masonry-blog-magazine .height--tall { - height: 338px; - } - .masonry__promo .pos-vertical-center { - top: 0; - transform: none; - } -} -@media all and (max-width: 1200px) { - .masonry__promo.boxed--lg { - padding: 3.71428571em; - } -} -.pagination { - text-align: center; - margin-top: 1.85714286em; -} -.pagination:after { - content: ""; - display: table; - clear: both; -} -.pagination a { - font-weight: normal; -} -.pagination div[class*='col-'] { - padding: 0; -} -.pagination ol { - margin-bottom: 0; - display: inline-block; -} -.pagination ol li { - display: inline-block; - margin: 0; - font-weight: 700; - line-height: 23px; - width: 1.85714286em; - height: 1.85714286em; - border-radius: 50%; - border: 1px solid #ececec; -} -.pagination ol li > a { - font-weight: 700; -} -.pagination ol li:not(:last-child) { - margin-right: 0.46428571em; -} -.pagination ol li.pagination__current { - cursor: default; - background: #ececec; - color: #aaa; -} -.pagination__prev, -.pagination__next { - display: inline-block; -} -.pagination__next { - float: right; -} -.pagination__prev { - float: left; -} -.blog-article-wide:not(:last-child) { - border-bottom: 1px solid #ececec; - margin-bottom: 3.71428571em; -} -.masonry-blog-list hr + .masonry__container { - margin-top: 0; -} -.masonry-blog-list article { - border-bottom: 1px solid #ececec; - padding-top: 2.78571429em; - margin-bottom: 5.57142857em; -} -.masonry-blog-list article .article__body { - padding-bottom: 5.57142857em; -} -.masonry-blog-magazine .masonry__item a { - font-weight: normal; -} -.masonry-blog-magazine .masonry__item a:hover { - text-decoration: none; -} -.masonry-filter-container { - margin-bottom: 1.85714286em; -} -.masonry-filter-container > span { - position: relative; - bottom: 20px; -} -.masonry-filter-container > span + .masonry-filter-holder { - margin-left: 0.92857143em; -} -.comments__list li { - padding: 1.85714286em; - border: 1px solid #ececec; - border-bottom: none; -} -.comments__list li:last-child { - border-bottom: 1px solid #ececec; -} -.comments__list li:nth-child(odd) { - background: #fcfcfc; -} -.comments__list li:nth-child(even) { - background: #f9f9f9; -} -.comments__list li:first-child { - border-radius: 6px 6px 0 0; -} -.comments__list li:last-child { - border-radius: 0 0 6px 6px; -} -.bg--secondary .comments__list li:nth-child(even) { - background: #fff; -} -@media all and (min-width: 768px) { - .comments__list li { - padding: 2.78571429em; - } -} -.comment { - overflow: hidden; -} -.comment:not(:last-child) { - border-bottom: 1px solid #ececec; - padding-bottom: 1.85714286em; -} -.comment .comment__avatar { - width: 15%; - float: left; -} -.comment .comment__avatar img { - max-height: 3.71428571em; -} -.comment .comment__meta { - font-size: 0.85714286em; -} -.comment .comment__meta a { - display: inline-block; -} -.comment .comment__meta a:not(:first-child) { - margin-left: 1.08333333333334em; -} -.comment .comment__meta + p { - margin-top: 0.92857143em; -} -.comment .comment__body { - width: 85%; - float: right; -} -.comment .comment__body h5.type--fine-print { - margin: 0; -} -.comment + .comment { - margin-top: 1.85714286em; - padding-left: 15%; -} -@media all and (min-width: 768px) { - .comments + .comments-form { - margin-top: 3.71428571em; - } -} -@media all and (min-width: 768px) { - h3 + .related-blog-list { - margin-top: 3.71428571em; - } -} -.related-blog-list li:not(:last-child) { - margin-bottom: 1.85714286em; -} -.related-blog-list article img { - border-radius: 6px; -} -.related-blog-list article .article__title { - margin-top: 0.92857143em; - margin-bottom: 0; -} -.related-blog-list article .article__title .h4 { - margin-bottom: 0.68421052631579em; -} -@media all and (min-width: 991px) { - .sidebar { - margin-top: 7.42857143em; - position: relative; - bottom: 18px; - } -} -.sidebar__widget > h5:first-child { - margin-bottom: 0.92857143em; -} -.sidebar__widget:not(:last-child) { - margin-bottom: 3.71428571em; -} -.tag-cloud li { - display: inline-block; -} -.tag-cloud li:not(:last-child) { - margin-right: 0.46428571em; -} -.tag-cloud li:not(:last-child):after { - content: ','; -} -.conversation__head { - border-radius: 6px 6px 0 0; -} -.conversation__head.boxed:not(:last-child) { - margin: 0; -} -.conversation__head h4 { - margin: 0; -} -.conversation__head .conversation__avatar { - margin-top: 0.92857143em; -} -.conversation__head .conversation__avatar img { - max-height: 1.85714286em; - display: inline-block; - margin-right: 0.46428571em; - margin-bottom: 0; -} -@media all and (min-width: 768px) { - .conversation__avatar { - position: absolute; - top: 1.85714286em; - right: 2.78571429em; - } -} -.conversation__reply { - border-top: none !important; - border-bottom: none; - border-radius: 0; -} -.conversation__reply.boxed:not(:last-child) { - margin-bottom: 0; -} -.conversation__reply + .conversation__comments .comments__list li:first-child { - border-radius: 0; - border-top: none; -} -/*! -- Stack Portfolio -- */ -.project-thumb > a { - display: block; -} -.project-thumb:not(.hover-element) > a { - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; - margin-bottom: 1.85714286em; -} -.project-thumb:not(.hover-element) > a:hover { - opacity: .85; -} -.project-thumb.hover-element { - margin: 0; -} -.project-thumb.hover-element > a { - height: 24.14285714em; - text-decoration: none; - font-weight: normal; -} -.project-thumb.hover-element .background-image-holder { - transition: 0.5s ease-out; - -webkit-transition: 0.5s ease-out; - -moz-transition: 0.5s ease-out; -} -.project-thumb.hover-element .hover-element__reveal .project-thumb__title { - padding: 1.85714286em; - z-index: 2; - position: relative; - color: #fff; -} -.project-thumb.hover-element .hover-element__reveal .project-thumb__title h5 { - margin: 0; -} -.project-thumb.hover-element.hover--active { - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; -} -.project-thumb.hover-element.hover--active:hover { - opacity: .85; -} -.project-thumb.hover-element:not(.hover--active)[data-scrim-top] .hover-element__reveal { - transition: 0.5s ease; - -webkit-transition: 0.5s ease; - -moz-transition: 0.5s ease; - transform: translate3d(0, -100px, 0); - -webkit-transform: translate3d(0, -100px, 0); -} -.project-thumb.hover-element:not(.hover--active)[data-scrim-top]:hover .hover-element__reveal { - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); -} -.project-thumb.hover-element [data-scrim-top]:before { - height: 100%; -} -.project-thumb h4 { - margin-bottom: 0; -} -.project-thumb.height-40 { - min-height: 350px; -} -@media all and (max-width: 767px) { - .project-thumb.height-40 { - height: 350px; - min-width: 100%; - } -} -@media all and (min-width: 768px) { - .col-xs-12:not(.col-sm-6) .project-thumb.hover-element > a { - height: 46.42857143em; - } -} -.project-thumb.border--round .background-image-holder { - border-radius: 6px; -} -.project-thumb.border--round > a { - border-radius: 6px; - overflow: hidden; -} -.project-thumb.border--round:before { - border-radius: 6px; - overflow: hidden; -} -.col-md-4 .project-thumb > a:not(.imagebg) { - margin-bottom: 0.92857143em; -} -/*! -- Stack Shop -- */ -.cart-form button[type="submit"] { - margin-top: 1.85714286em; -} -.cart-total > div { - overflow: hidden; -} -@media all and (min-width: 768px) { - .cart-total { - margin-top: 3.71428571em; - } - .cart-customer-details { - margin-top: 7.42857143em; - } -} -@media all and (max-width: 767px) { - .cart-total { - margin-top: 1.85714286em; - } -} -.cart-customer-details div[class*='col-'] { - margin-top: 0.46428571em; -} -.cart-customer-details .input-checkbox { - margin: 1.85714286em 0; -} -.cart-customer-details .input-checkbox + span { - bottom: 38px; -} -.product { - margin-bottom: 0.92857143em; -} -.product img { - margin-bottom: 0.92857143em; - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; - backface-visibility: hidden; -} -.product a:hover img { - transform: translate3d(0, -5px, 0); - -webkit-transform: translate3d(0, -5px, 0); -} -.product .label + img { - margin-top: 2.78571429em; -} -.product h5 { - display: inline-block; - margin-bottom: 0; - margin-right: 0.46428571em; -} -.product .h4 { - margin-bottom: 0; -} -.product .h4:first-child { - clear: left; -} -.product .product__controls { - overflow: hidden; - margin-bottom: 0.92857143em; -} -.product .product__controls label, -.product .product__controls button { - position: relative; - top: 6px; -} -.product.product--tile { - padding: 1.85714286em; - border-radius: 6px; -} -@media all and (min-width: 1200px) { - .product .btn--cart { - position: absolute; - right: 1.85714286em; - bottom: 1.85714286em; - } -} -.col-sm-6:not(.col-md-3) .product { - text-align: center; -} -.col-md-3 .product--tile h5 { - display: block; -} -.masonry--tiles { - padding: 10px; -} -.masonry--tiles .masonry__item:not(:empty) { - padding: 0 6px; - margin-bottom: 12px; -} -.masonry--tiles .masonry__item:not(:empty) .product--tile { - margin: 0; -} -.masonry--tiles .masonry__item:not(:empty) .product--tile .label { - top: 1.85714286em; - right: 2.78571429em; -} -/*! -- Stack Wizard -- */ -.wizard { - transition: opacity .3s ease; - opacity: 0; -} -.wizard.active { - opacity: 1; -} -.wizard > .actions a, -.wizard > .actions a:hover, -.wizard > .actions a:active { - background: #7adfbb; - transition: all .3s ease; - padding: 0.46428571em 1.85714286em; - font-size: 12px; - text-transform: uppercase; - font-weight: 700; - letter-spacing: 1px; - color: #fff; -} -.wizard > .steps .current a, -.wizard > .steps .current a:hover, -.wizard > .steps .current a:active { - background: none; - color: #252525; -} -.wizard > .steps a { - position: relative; -} -.wizard > .steps a:before { - content: ''; - width: 15px; - height: 15px; - border-radius: 50%; - position: absolute; - left: 50%; - margin-left: -10px; - background: #eee; - display: block; - bottom: 0; - transition: all .2s ease; -} -.wizard > .steps a:after { - content: ''; - position: absolute; - width: 100%; - bottom: 7px; - height: 2px; - background: #eee; - left: 0; - transition: all .2s ease; -} -.wizard > .steps li:first-child a:after { - width: 50%; - left: 50%; -} -.wizard > .steps li:last-child a:after { - width: 50%; -} -.wizard > .steps li.current a:after, -.wizard > .steps li.current a:before { - background-color: #7adfbb; -} -.wizard > .steps a, -.wizard > .steps a:hover { - padding-bottom: 2.78571429em; -} -.wizard > .steps .done a, -.wizard > .steps .done a:hover, -.wizard > .steps .done a:active, -.wizard > .steps .disabled a, -.wizard > .steps .disabled a:hover, -.wizard > .steps .disabled a:active { - background: none; - color: #252525; -} -.wizard > .steps a, -.wizard > .steps a:hover, -.wizard > .steps a:active { - margin: 0; -} -.wizard > .actions a, -.wizard > .actions a:hover, -.wizard > .actions a:active { - user-select: none; - -moz-user-select: none; - -webkit-user-select: none; -} -.wizard > .steps > ul, -.wizard > .actions { - text-align: center; -} -.wizard > .steps > ul > li, -.wizard > .actions > ul > li { - float: none; - display: inline-block; -} -.wizard > section { - padding: 0; -} -.wizard > .content { - background: #fafafa; - margin-top: 1.85714286em; - margin-bottom: 1.85714286em; - border: 1px solid #ececec; -} -.wizard > .content > .body { - padding: 1.85714286em; - width: 100%; - height: 100%; -} -.wizard > .steps .number { - font-size: 1em; -} -@media all and (max-width: 767px) { - .wizard > .steps .number { - display: block; - } - .wizard > .content { - min-height: 25em; - } - .wizard .pos-vertical-center { - top: 50%; - transform: translateY(-50%); - -wekbit-transform: translateY(-50%); - } -} -.wizard.bg--white { - background: none !important; -} -.wizard.bg--white > .content { - background: #fff; -} -.wizard > .content img { - max-height: 240px; -} -@media all and (max-width: 767px) { - .wizard > .content img { - max-height: 120px; - margin-bottom: 0.92857143em; - } -} -/*! -- Stack Footers -- */ -footer .type--fine-print:not(p) { - opacity: .5; -} -footer a { - font-weight: normal; -} -footer:not(.bg--primary):not(.bg--dark) a { - color: #666666; -} -footer a.type--fine-print:not(:first-child) { - margin-left: 1.85714286em; -} -footer .logo { - max-height: 1.67142857em; -} -footer ul:not(.list-inline):not(.slides) > li { - line-height: 2.32142857em !important; -} -footer.footer-2 .row:last-child { - margin-top: 3.71428571em; -} -footer.footer-5 .row [class*='col-'] > div:nth-last-child(2) { - margin: 0.92857143em; -} -footer.footer-5 .row [class*='col-'] > div:nth-last-child(2) .type--fine-print { - opacity: 1; -} -footer.footer-6 .footer__lower { - background: #fafafa; - margin-top: 1.85714286em; - padding: 1.85714286em 0; -} -footer.footer-6.bg--dark .footer__lower { - background: #181818; -} -footer.footer-6.bg--secondary .footer__lower { - background: #f5f5f5; -} -footer.footer-6.bg--primary .footer__lower { - background: #65dab0; -} -footer.footer-7 { - padding: 1.85714286em 0; -} -@media all and (min-width: 768px) { - footer .list-inline + .btn { - position: relative; - bottom: 4px; - } - footer .logo { - margin: 0; - } - footer .logo:not(:last-child) { - margin-right: 1.85714286em; - } - footer.footer-3 .logo + ul { - position: relative; - top: 5px; - } - footer.footer-3 .logo + ul a { - color: #252525; - } - footer.footer-3 .social-list { - position: relative; - top: 9px; - } - footer.footer-3 .row:last-child { - margin-top: 1.85714286em; - } - footer.footer-4 .logo + span { - position: relative; - top: 8px; - } - footer.footer-4 form { - position: relative; - bottom: 4px; - } - footer.footer-4 .row:last-child { - margin-top: 1.85714286em; - } - footer.imagebg:not(.image--light) span, - footer.imagebg:not(.image--light) p, - footer.imagebg:not(.image--light) a { - color: #fff; - } - .footer-1 .type--fine-print { - position: relative; - top: 2px; - } -} -@media all and (max-width: 767px) { - footer .social-list { - margin: 1.85714286em 0; - } - .footer-4 form { - margin: 1.85714286em 0; - } - .footer-4 .logo { - margin: 0; - } - .footer-6 .footer__lower .social-list { - margin-top: 1.85714286em; - } - .footer-7 .social-list { - margin-top: 1.85714286em; - } - .footer-1 .social-list { - margin-top: 1.85714286em; - } - .footer-1 .logo { - display: block; - margin-top: 1.85714286em; - margin-bottom: 0.92857143em; - margin-left: auto; - margin-right: auto; - } -} diff --git a/html/css/theme-cedar.css b/html/css/theme-cedar.css deleted file mode 100644 index 8b3f1167..00000000 --- a/html/css/theme-cedar.css +++ /dev/null @@ -1,9016 +0,0 @@ -/**!**************/ -/**! Contents **/ -/**! 01. Reset **/ -/**! 02. Typography **/ -/**! 03. Position **/ -/**! 04. Element Size **/ -/**! 05. Images **/ -/**! 06. Buttons **/ -/**! 07. Icons **/ -/**! 08. Lists **/ -/**! 09. Lightbox **/ -/**! 10. Menus **/ -/**! 11. Dropdowns **/ -/**! 12. Form Elements **/ -/**! 13. Accordions **/ -/**! 14. Breadcrumbs **/ -/**! 15. Radials **/ -/**! 16. Tabs **/ -/**! 17. Boxes **/ -/**! 18. Sliders Flickity **/ -/**! 19. Hover Elements **/ -/**! 20. Masonry **/ -/**! 21. Modals **/ -/**! 22. Maps **/ -/**! 23. Parallax **/ -/**! 24. Notifications **/ -/**! 25. Video **/ -/**! 26. Colors **/ -/**! 27. Image Blocks **/ -/**! 28. MailChimp & Campaign Monitor **/ -/**! 29. Twitter **/ -/**! 30. Transitions **/ -/**! 31. Switchable Sections **/ -/**! 32. Typed Effect **/ -/**! 33. Gradient BG **/ -/**! 34. Bars **/ -/**! 35. Navigation In Page **/ -/**! 36. Helper Classes **/ -/**! 37. Spacing **/ -/**! 38. Boxed Layout **/ -/**! 39. Wizard **/ -/**! 40. Alerts **/ -/**! 41. Progress - Horizontal **/ -/**! 42. Theme Overrides **/ -/**!**************/ -/**!**************/ -/**!**************/ -/**! 01. Reset **/ -*, -h1, -h2, -h3, -h4, -h5, -h6, -p, -ul, -a { - margin: 0; - padding: 0; -} -/**! 02. Typography **/ -html { - font-size: 87.5%; -} -@media all and (max-width: 768px) { - html { - font-size: 81.25%; - } -} -body { - font-size: 1em; - line-height: 1.85714286em; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; - font-family: 'Open Sans', 'Helvetica', 'Arial', sans-serif; - color: #666666; - font-weight: 400; -} -h1, -h2, -h3, -h4, -h5, -h6, -.h1, -.h2, -.h3, -.h4, -.h5, -.h6 { - font-family: 'Open Sans', 'Helvetica', 'Arial', sans-serif; - color: #252525; - font-weight: 300; - font-variant-ligatures: common-ligatures; - margin-top: 0; - margin-bottom: 0; -} -h1, -.h1 { - font-size: 3.14285714em; - line-height: 1.31818182em; -} -h2, -.h2 { - font-size: 2.35714286em; - line-height: 1.36363636em; -} -h3, -.h3 { - font-size: 1.78571429em; - line-height: 1.5em; -} -h4, -.h4 { - font-size: 1.35714286em; - line-height: 1.36842105em; -} -h5, -.h5 { - font-size: 1em; - line-height: 1.85714286em; -} -h6, -.h6 { - font-size: 0.85714286em; - line-height: 2.16666667em; -} -.lead { - font-size: 1.35714286em; - line-height: 1.68421053em; -} -@media all and (max-width: 767px) { - h1, - .h1 { - font-size: 2.35714286em; - line-height: 1.36363636em; - } - h2, - .h2 { - font-size: 1.78571429em; - line-height: 1.5em; - } - h3, - .h3 { - font-size: 1.35714286em; - line-height: 1.85714286em; - } - .lead { - font-size: 1.35714286em; - line-height: 1.36842105em; - } -} -p, -ul, -ol, -pre, -table, -blockquote { - margin-bottom: 1.85714286em; -} -ul, -ol { - list-style: none; - line-height: 1.85714286em; -} -ul.bullets { - list-style: inside; -} -ol { - list-style-type: upper-roman; - list-style-position: inside; -} -blockquote { - font-size: 1.78571429em; - line-height: 1.5em; - padding: 0; - margin: 0; - border-left: 0; -} -strong { - font-weight: 600; -} -hr { - margin: 1.85714286em 0; - border-color: #fafafa; -} -a:hover, -a:focus, -a:active { - text-decoration: none; - outline: none; -} -/*! Typography -- Helpers */ -.type--fade { - opacity: .5; -} -.type--uppercase { - text-transform: uppercase; -} -.type--bold { - font-weight: bold; -} -.type--italic { - font-style: italic; -} -.type--fine-print { - font-size: 0.85714286em; -} -.type--strikethrough { - text-decoration: line-through; - opacity: .5; -} -.type--underline { - text-decoration: underline; -} -.type--body-font { - font-family: 'Open Sans', 'Helvetica'; -} -/**! 03. Position **/ -body { - overflow-x: hidden; -} -.pos-relative { - position: relative; -} -.pos-absolute { - position: absolute; -} -.pos-absolute.container { - left: 0; - right: 0; -} -.pos-top { - top: 0; -} -.pos-bottom { - bottom: 0; -} -.pos-right { - right: 0; -} -.pos-left { - left: 0; -} -.float-left { - float: left; -} -.float-right { - float: right; -} -@media all and (max-width: 767px) { - .float-left, - .float-right { - float: none; - } - .float-left-xs { - float: left; - } - .float-right-xs { - float: right; - } -} -.pos-vertical-center { - position: relative; - top: 50%; - transform: translateY(-50%); - -webkit-transform: translateY(-50%); -} -@media all and (max-width: 767px) { - .pos-vertical-center { - top: 0; - transform: none; - -webkit-transform: none; - } -} -@media all and (max-height: 600px) { - .pos-vertical-center { - top: 0; - transform: none; - -webkit-transform: none; - } -} -.pos-vertical-align-columns { - display: table; - table-layout: fixed; - width: 100%; -} -.pos-vertical-align-columns > div[class*='col-'] { - display: table-cell; - float: none; - vertical-align: middle; -} -@media all and (max-width: 990px) { - .pos-vertical-align-columns { - display: block; - width: auto; - } - .pos-vertical-align-columns > div[class*='col-'] { - display: block; - } -} -.inline-block { - display: inline-block; -} -.block { - display: block; -} -@media all and (max-width: 767px) { - .block--xs { - display: block; - } -} -@media all and (max-width: 990px) { - .text-center-md { - text-align: center; - } - .text-left-md { - text-align: left; - } - .text-right-md { - text-align: right; - } -} -@media all and (max-width: 767px) { - .text-center-xs { - text-align: center; - } - .text-left-xs { - text-align: left; - } - .text-right-xs { - text-align: right; - } -} -/**! 04. Element Size **/ -.height-100, -.height-90, -.height-80, -.height-70, -.height-60, -.height-50, -.height-40, -.height-30, -.height-20, -.height-10 { - height: auto; - padding: 5em 0; -} -@media all and (max-width: 767px) { - .height-100, - .height-90, - .height-80, - .height-70, - .height-60, - .height-50, - .height-40, - .height-30, - .height-20, - .height-10 { - height: auto; - padding: 4em 0; - } -} -@media all and (min-height: 600px) and (min-width: 767px) { - .height-10 { - height: 10vh; - } - .height-20 { - height: 20vh; - } - .height-30 { - height: 30vh; - } - .height-40 { - height: 40vh; - } - .height-50 { - height: 50vh; - } - .height-60 { - height: 60vh; - } - .height-70 { - height: 70vh; - } - .height-80 { - height: 80vh; - } - .height-90 { - height: 90vh; - } - .height-100 { - height: 100vh; - } -} -section.height-auto { - height: auto; -} -section.height-auto .pos-vertical-center { - top: 0; - position: relative; - transform: none; -} -@media all and (max-width: 767px) { - div[class*='col-'][class*='height-'] { - padding-top: 5.57142857em !important; - padding-bottom: 5.57142857em !important; - } -} -/**! 05. Images **/ -img { - max-width: 100%; - margin-bottom: 1.85714286em; -} -/*p+img, img:last-child{ - margin-bottom: 0; -}*/ -.img--fullwidth { - width: 100%; -} -[data-grid="2"].masonry { - -webkit-column-count: 2; - -webkit-column-gap: 0; - -moz-column-count: 2; - -moz-column-gap: 0; - column-count: 2; - column-gap: 0; -} -[data-grid="2"].masonry li { - width: 100%; - float: none; -} -[data-grid="2"] li { - width: 50%; - display: inline-block; -} -[data-grid="3"].masonry { - -webkit-column-count: 3; - -webkit-column-gap: 0; - -moz-column-count: 3; - -moz-column-gap: 0; - column-count: 3; - column-gap: 0; -} -[data-grid="3"].masonry li { - width: 100%; - float: none; -} -[data-grid="3"] li { - width: 33.33333333%; - display: inline-block; -} -[data-grid="4"].masonry { - -webkit-column-count: 4; - -webkit-column-gap: 0; - -moz-column-count: 4; - -moz-column-gap: 0; - column-count: 4; - column-gap: 0; -} -[data-grid="4"].masonry li { - width: 100%; - float: none; -} -[data-grid="4"] li { - width: 25%; - display: inline-block; -} -[data-grid="5"].masonry { - -webkit-column-count: 5; - -webkit-column-gap: 0; - -moz-column-count: 5; - -moz-column-gap: 0; - column-count: 5; - column-gap: 0; -} -[data-grid="5"].masonry li { - width: 100%; - float: none; -} -[data-grid="5"] li { - width: 20%; - display: inline-block; -} -[data-grid="6"].masonry { - -webkit-column-count: 6; - -webkit-column-gap: 0; - -moz-column-count: 6; - -moz-column-gap: 0; - column-count: 6; - column-gap: 0; -} -[data-grid="6"].masonry li { - width: 100%; - float: none; -} -[data-grid="6"] li { - width: 16.66666667%; - display: inline-block; -} -[data-grid="7"].masonry { - -webkit-column-count: 7; - -webkit-column-gap: 0; - -moz-column-count: 7; - -moz-column-gap: 0; - column-count: 7; - column-gap: 0; -} -[data-grid="7"].masonry li { - width: 100%; - float: none; -} -[data-grid="7"] li { - width: 14.28571429%; - display: inline-block; -} -[data-grid="8"].masonry { - -webkit-column-count: 8; - -webkit-column-gap: 0; - -moz-column-count: 8; - -moz-column-gap: 0; - column-count: 8; - column-gap: 0; -} -[data-grid="8"].masonry li { - width: 100%; - float: none; -} -[data-grid="8"] li { - width: 12.5%; - display: inline-block; -} -@media all and (max-width: 767px) { - [data-grid]:not(.masonry) li { - width: 33.333333%; - } - [data-grid="2"]:not(.masonry) li { - width: 50%; - } - [data-grid].masonry { - -webkit-column-count: 1; - -moz-column-count: 1; - column-count: 1; - } -} -.background-image-holder { - position: absolute; - height: 100%; - top: 0; - left: 0; - background-size: cover !important; - background-position: 50% 50% !important; - z-index: 0; - transition: opacity .3s linear; - -webkit-transition: opacity .3s linear; - opacity: 0; - background: #252525; -} -.background-image-holder:not([class*='col-']) { - width: 100%; -} -.background-image-holder.background--bottom { - background-position: 50% 100% !important; -} -.background-image-holder.background--top { - background-position: 50% 0% !important; -} -.image--light .background-image-holder { - background: none; -} -.background-image-holder img { - display: none; -} -[data-overlay] { - position: relative; -} -[data-overlay]:before { - position: absolute; - content: ''; - background: #252525; - width: 100%; - height: 100%; - top: 0; - left: 0; - z-index: 1; -} -[data-overlay] *:not(.container):not(.background-image-holder) { - z-index: 2; -} -[data-overlay].image--light:before { - background: #fff; -} -[data-overlay].bg--primary:before { - background: #c75146; -} -[data-overlay="1"]:before { - opacity: 0.1; -} -[data-overlay="2"]:before { - opacity: 0.2; -} -[data-overlay="3"]:before { - opacity: 0.3; -} -[data-overlay="4"]:before { - opacity: 0.4; -} -[data-overlay="5"]:before { - opacity: 0.5; -} -[data-overlay="6"]:before { - opacity: 0.6; -} -[data-overlay="7"]:before { - opacity: 0.7; -} -[data-overlay="8"]:before { - opacity: 0.8; -} -[data-overlay="9"]:before { - opacity: 0.9; -} -[data-overlay="10"]:before { - opacity: 1; -} -[data-overlay="0"]:before { - opacity: 0; -} -[data-scrim-bottom] { - position: relative; -} -[data-scrim-bottom]:before { - position: absolute; - content: ''; - width: 100%; - height: 80%; - background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, #252525 100%); - /* FF3.6+ */ - background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(0, 0, 0, 0)), color-stop(100%, #252525)); - /* Chrome,Safari4+ */ - background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, #252525 100%); - /* Chrome10+,Safari5.1+ */ - background: -o-linear-gradient(top, rgba(0, 0, 0, 0) 0%, #252525 100%); - /* Opera 11.10+ */ - background: -ms-linear-gradient(top, rgba(0, 0, 0, 0) 0%, #252525 100%); - /* IE10+ */ - background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, #252525 100%); - bottom: 0; - left: 0; - z-index: 1; - backface-visibility: hidden; -} -[data-scrim-bottom]:not(.image--light) h1, -[data-scrim-bottom]:not(.image--light) h2, -[data-scrim-bottom]:not(.image--light) h3, -[data-scrim-bottom]:not(.image--light) h4, -[data-scrim-bottom]:not(.image--light) h5, -[data-scrim-bottom]:not(.image--light) h6 { - color: #a5a5a5; - color: #f1f1f1; -} -[data-scrim-bottom]:not(.image--light) p, -[data-scrim-bottom]:not(.image--light) span, -[data-scrim-bottom]:not(.image--light) ul { - color: #e6e6e6; -} -[data-scrim-bottom].image--light:before { - background: #fff; -} -[data-scrim-bottom="1"]:before { - opacity: 0.1; -} -[data-scrim-bottom="2"]:before { - opacity: 0.2; -} -[data-scrim-bottom="3"]:before { - opacity: 0.3; -} -[data-scrim-bottom="4"]:before { - opacity: 0.4; -} -[data-scrim-bottom="5"]:before { - opacity: 0.5; -} -[data-scrim-bottom="6"]:before { - opacity: 0.6; -} -[data-scrim-bottom="7"]:before { - opacity: 0.7; -} -[data-scrim-bottom="8"]:before { - opacity: 0.8; -} -[data-scrim-bottom="9"]:before { - opacity: 0.9; -} -[data-scrim-bottom="10"]:before { - opacity: 1; -} -[data-scrim-top] { - position: relative; -} -[data-scrim-top]:before { - position: absolute; - content: ''; - width: 100%; - height: 80%; - background: -moz-linear-gradient(bottom, #252525 0%, rgba(0, 0, 0, 0) 100%); - /* FF3.6+ */ - background: -webkit-gradient(linear, left bottom, left bottom, color-stop(0%, #252525), color-stop(100%, rgba(0, 0, 0, 0))); - /* Chrome,Safari4+ */ - background: -webkit-linear-gradient(bottom, #252525 0%, rgba(0, 0, 0, 0) 100%); - /* Chrome10+,Safari5.1+ */ - background: -o-linear-gradient(bottom, #252525 0%, rgba(0, 0, 0, 0) 100%); - /* Opera 11.10+ */ - background: -ms-linear-gradient(bottom, #252525 0%, rgba(0, 0, 0, 0) 100%); - /* IE10+ */ - background: linear-gradient(to bottom, #252525 0%, rgba(0, 0, 0, 0) 100%); - top: 0; - left: 0; - z-index: 1; -} -[data-scrim-top]:not(.image--light) h1, -[data-scrim-top]:not(.image--light) h2, -[data-scrim-top]:not(.image--light) h3, -[data-scrim-top]:not(.image--light) h4, -[data-scrim-top]:not(.image--light) h5, -[data-scrim-top]:not(.image--light) h6 { - color: #fff; -} -[data-scrim-top]:not(.image--light) p, -[data-scrim-top]:not(.image--light) span, -[data-scrim-top]:not(.image--light) ul { - color: #e6e6e6; -} -[data-scrim-top].image--light:before { - background: #fff; -} -[data-scrim-top="1"]:before { - opacity: 0.1; -} -[data-scrim-top="2"]:before { - opacity: 0.2; -} -[data-scrim-top="3"]:before { - opacity: 0.3; -} -[data-scrim-top="4"]:before { - opacity: 0.4; -} -[data-scrim-top="5"]:before { - opacity: 0.5; -} -[data-scrim-top="6"]:before { - opacity: 0.6; -} -[data-scrim-top="7"]:before { - opacity: 0.7; -} -[data-scrim-top="8"]:before { - opacity: 0.8; -} -[data-scrim-top="9"]:before { - opacity: 0.9; -} -[data-scrim-top="10"]:before { - opacity: 1; -} -.imagebg { - position: relative; -} -.imagebg .container { - z-index: 2; -} -.imagebg .container:not(.pos-absolute) { - position: relative; -} -.imagebg:not(.image--light) h1, -.imagebg:not(.image--light) h2, -.imagebg:not(.image--light) h3, -.imagebg:not(.image--light) h4, -.imagebg:not(.image--light) h5, -.imagebg:not(.image--light) h6, -.imagebg:not(.image--light) p, -.imagebg:not(.image--light) ul, -.imagebg:not(.image--light) blockquote { - color: #fff; -} -.imagebg:not(.image--light) .bg--white h1, -.imagebg:not(.image--light) .bg--white h2, -.imagebg:not(.image--light) .bg--white h3, -.imagebg:not(.image--light) .bg--white h4, -.imagebg:not(.image--light) .bg--white h5, -.imagebg:not(.image--light) .bg--white h6 { - color: #252525; -} -.imagebg:not(.image--light) .bg--white p, -.imagebg:not(.image--light) .bg--white ul { - color: #666666; -} -div[data-overlay] h1, -div[data-overlay] h2, -div[data-overlay] h3, -div[data-overlay] h4, -div[data-overlay] h5, -div[data-overlay] h6 { - color: #fff; -} -div[data-overlay] p, -div[data-overlay] ul { - color: #fff; -} -.parallax { - overflow: hidden; -} -.parallax .background-image-holder { - transition: none !important; - -webkit-transition: none !important; - -moz-transition: none !important; -} -.image--xxs { - max-height: 1.85714286em; -} -.image--xs { - max-height: 3.71428571em; -} -.image--sm { - max-height: 5.57142857em; -} -.image--md { - max-height: 7.42857143em; -} -/**! 06. Buttons **/ -.btn { - font-family: 'Open Sans', 'Helvetica', 'Arial', sans-serif; - transition: 0.1s linear; - -webkit-transition: 0.1s linear; - -moz-transition: 0.1s linear; - border-radius: 6px; - padding-top: 0.46428571em; - padding-bottom: 0.46428571em; - padding-right: 2.78571429em; - padding-left: 2.78571429em; - border: 1px solid #252525; - border-width: 1px; - font-size: inherit; - line-height: 1.85714286em; -} -.btn .btn__text, -.btn i { - color: #252525; - border-color: #252525; - font-weight: 700; - font-size: 0.85714286em; -} -.btn[class*='col-'] { - margin-left: 0; - margin-right: 0; -} -.btn:active { - box-shadow: none; - -webkit-box-shadow: none; -} -.btn.bg--facebook, -.btn.bg--twitter, -.btn.bg--instagram, -.btn.bg--googleplus, -.btn.bg--pinterest, -.btn.bg--dribbble, -.btn.bg--behance, -.btn.bg--dark { - border-color: rgba(0, 0, 0, 0) !important; -} -.btn.bg--facebook .btn__text, -.btn.bg--twitter .btn__text, -.btn.bg--instagram .btn__text, -.btn.bg--googleplus .btn__text, -.btn.bg--pinterest .btn__text, -.btn.bg--dribbble .btn__text, -.btn.bg--behance .btn__text, -.btn.bg--dark .btn__text { - color: #fff; -} -.btn.bg--facebook .btn__text i, -.btn.bg--twitter .btn__text i, -.btn.bg--instagram .btn__text i, -.btn.bg--googleplus .btn__text i, -.btn.bg--pinterest .btn__text i, -.btn.bg--dribbble .btn__text i, -.btn.bg--behance .btn__text i, -.btn.bg--dark .btn__text i { - color: #fff; -} -.btn.bg--facebook:hover, -.btn.bg--twitter:hover, -.btn.bg--instagram:hover, -.btn.bg--googleplus:hover, -.btn.bg--pinterest:hover, -.btn.bg--dribbble:hover, -.btn.bg--behance:hover, -.btn.bg--dark:hover { - opacity: .9; -} -.btn.bg--error { - background: #e23636; - border-color: #e23636 !important; -} -.btn.bg--error:hover { - background: #e54c4c; - border-color: #e54c4c !important; - color: #fff !important; -} -.btn.bg--error .btn__text { - color: #fff; -} -.btn.bg--error .btn__text i { - color: #fff; -} -@media all and (min-width: 768px) { - .btn + .btn { - margin-left: 1.85714286em; - } -} -.btn:first-child { - margin-left: 0; -} -.btn:last-child { - margin-right: 0; -} -.btn--xs { - padding-top: 0; - padding-bottom: 0; - padding-right: 1.39285714em; - padding-left: 1.39285714em; -} -.btn--sm { - padding-top: 0.30952381em; - padding-bottom: 0.30952381em; - padding-right: 1.85714286em; - padding-left: 1.85714286em; -} -.btn--lg { - padding-top: 0.58035714em; - padding-bottom: 0.58035714em; - padding-right: 3.48214286em; - padding-left: 3.48214286em; -} -.btn--lg .btn__text { - font-size: 1.07142857em; -} -.btn--primary, -.btn--primary:visited { - background: #c75146; - border-color: #c75146; -} -.btn--primary .btn__text, -.btn--primary:visited .btn__text { - color: #fff; -} -.btn--primary .btn__text i, -.btn--primary:visited .btn__text i { - color: #fff; -} -.btn--primary:hover { - background: #cd635a; -} -.btn--primary:active { - background: #bb4439; -} -.btn--primary-1, -.btn--primary-1:visited { - background: #ad2e24; - border-color: #ad2e24; -} -.btn--primary-1 .btn__text, -.btn--primary-1:visited .btn__text { - color: #fff; -} -.btn--primary-1:hover { - background: #c23428; -} -.btn--primary-1:active { - background: #982820; -} -.btn--primary-2, -.btn--primary-2:visited { - background: #54494b; - border-color: #54494b; -} -.btn--primary-2 .btn__text, -.btn--primary-2:visited .btn__text { - color: #fff; -} -.btn--primary-2:hover { - background: #625557; -} -.btn--primary-2:active { - background: #463d3f; -} -.btn--secondary { - background: #fafafa; - border-color: #fafafa; -} -.btn--secondary:hover { - background: #ffffff; -} -.btn--secondary:active { - background: #f5f5f5; -} -.btn--white { - background: #fff; - color: #252525; - border-color: #fff; -} -.btn--white i { - color: #252525; -} -.btn--transparent { - background: none; - border-color: rgba(0, 0, 0, 0); - padding-left: 0; - padding-right: 0; -} -.btn--transparent.btn--white .btn__text { - color: #fff; -} -.btn--unfilled { - background: none; -} -.btn--unfilled.btn--white .btn__text { - color: #fff; -} -.btn--unfilled.btn--white i { - color: #fff; -} -.btn--floating { - position: fixed; - bottom: 3.71428571em; - right: 3.71428571em; - z-index: 10; -} -/**! 07. Icons **/ -.icon { - line-height: 1em; - font-size: 3.14285714em; -} -.icon--xs { - font-size: 1em; -} -.icon--sm { - font-size: 2.35714286em; -} -.icon--lg { - font-size: 5.57142857em; -} -/**! 08. Lists **/ -ul:last-child { - margin: 0; -} -.list-inline li { - padding: 0 1em; - margin-left: 0; -} -.list-inline li:first-child { - padding-left: 0; -} -.list-inline li:last-child { - padding-right: 0; -} -.list-inline.list-inline--narrow li { - padding: 0 .5em; -} -.list-inline.list-inline--wide li { - padding: 0 2em; -} -/**! 09. Lightbox **/ -.lb-outerContainer { - border-radius: 0; -} -.lb-outerContainer .lb-container { - padding: 0; -} -.lb-outerContainer .lb-container img { - margin: 0; -} -.lightbox-gallery { - overflow: hidden; -} -.lightbox-gallery li { - float: left; -} -.lightbox-gallery li img { - margin: 0; - width: 100%; -} -.lightbox-gallery.gallery--gaps li { - padding: 0.46428571em; -} -/**! 10. Menus **/ -.menu-horizontal > li:not(:hover) > a, -.menu-horizontal > li:not(:hover) > span, -.menu-horizontal > li:not(:hover) > .modal-instance > .modal-trigger { - opacity: .5; -} -.menu-horizontal > li > a, -.menu-horizontal > li > span, -.menu-horizontal > li > .modal-instance > .modal-trigger { - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; - color: #252525; -} -.menu-horizontal > li > a:hover, -.menu-horizontal > li > span:hover, -.menu-horizontal > li > .modal-instance > .modal-trigger:hover { - color: #252525; -} -.bg--dark .menu-horizontal > li > a, -.bg--dark .menu-horizontal > li > span { - color: #fff; -} -.bg--dark .menu-horizontal > li > a:hover, -.bg--dark .menu-horizontal > li > span:hover { - color: #fff; -} -.menu-vertical { - width: 100%; -} -.menu-vertical li { - width: 100%; -} -.menu-vertical li a { - font-weight: normal; -} -@media all and (min-width: 990px) { - .menu-horizontal { - display: inline-block; - } - .menu-horizontal > li { - display: inline-block; - } - .menu-horizontal > li:not(:last-child) { - margin-right: 1.85714286em; - } - .menu-vertical { - display: inline-block; - } - .menu-vertical li { - white-space: nowrap; - } - .menu-vertical .dropdown__container { - top: 0; - } - .menu-vertical .dropdown__container .dropdown__content:not([class*='bg-']) { - background: #ffffff; - } - .menu-vertical .dropdown__container .dropdown__content { - transform: translateX(75%); - } -} -/**! 11. Dropdowns **/ -.dropdown { - position: relative; -} -.dropdown .dropdown__container { - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; - opacity: 0; - pointer-events: none; - position: absolute; - z-index: 999; -} -.dropdown .dropdown__container .dropdown__container:before { - height: 0; -} -.dropdown .dropdown__content { - padding: 1.85714286em; -} -.dropdown .dropdown__content:not([class*='col-']) { - width: 18.57142857em; -} -.dropdown .dropdown__content:not([class*='bg-']) { - background: #ffffff; -} -.dropdown .dropdown__content:not([class='bg--dark']) .menu-vertical a { - color: #666666; -} -.dropdown .dropdown__trigger { - cursor: pointer; - user-select: none; -} -.dropdown.dropdown--active > .dropdown__container { - opacity: 1; -} -.dropdown.dropdown--active > .dropdown__container > .container > .row > .dropdown__content { - pointer-events: all; -} -@media all and (min-width: 991px) { - .dropdown .dropdown__container:before { - height: 0.92857143em; - width: 100%; - content: ''; - display: block; - } - .dropdown .dropdown__content.dropdown__content--md { - padding: 2.78571429em; - } - .dropdown .dropdown__content.dropdown__content--lg { - padding: 3.71428571em; - } - .dropdown .dropdown__content.dropdown__content--xlg { - padding: 4.64285714em; - } -} -@media all and (max-width: 767px) { - .dropdown .dropdown__container { - min-width: 100%; - position: relative; - display: none; - } - .dropdown .dropdown__content { - padding: 1.85714286em; - left: 0 !important; - } - .dropdown.dropdown--active > .dropdown__container { - display: block; - } -} -body.dropdowns--hover .dropdown:not(.dropdown--click):hover > .dropdown__container { - opacity: 1; -} -body.dropdowns--hover .dropdown:not(.dropdown--click):hover > .dropdown__container:before { - pointer-events: all; -} -body.dropdowns--hover .dropdown:not(.dropdown--click):hover > .dropdown__container .dropdown__content { - pointer-events: all; -} -body:not(.dropdowns--hover) .dropdown.dropdown--hover:hover > .dropdown__container { - opacity: 1; -} -body:not(.dropdowns--hover) .dropdown.dropdown--hover:hover > .dropdown__container:before { - pointer-events: all; -} -body:not(.dropdowns--hover) .dropdown.dropdown--hover:hover > .dropdown__container .dropdown__content { - pointer-events: all; -} -@media all and (max-width: 990px) { - body.dropdowns--hover .dropdown:not(.dropdown--click).dropdown--active > .dropdown__container { - display: block; - } - body.dropdowns--hover .dropdown:not(.dropdown--click).dropdown--active > .dropdown__container:before { - pointer-events: all; - } -} -@media all and (max-width: 767px) { - .dropdown.dropdown--absolute .dropdown__container { - position: absolute; - } -} -/**! 12. Form Elements **/ -form { - max-width: 100%; -} -form + form { - margin-top: 30px; -} -form:before, -form:after { - content: "."; - display: block; - height: 0; - overflow: hidden; -} -form:after { - clear: both; -} -label { - margin: 0; - font-size: 1.14285714em; - font-weight: 400; -} -input[type], -textarea, -select { - -webkit-appearance: none; - background: #fcfcfc; - padding: 0.46428571em; - border-radius: 6px; - border: 1px solid #ececec; -} -input[type]:focus, -textarea:focus, -select:focus { - outline: none; -} -input[type]:active, -textarea:active, -select:active { - outline: none; -} -input[type]::-webkit-input-placeholder, -textarea::-webkit-input-placeholder, -select::-webkit-input-placeholder { - color: #b3b3b3; - font-size: 1.14285714em; -} -input[type]:-moz-placeholder, -textarea:-moz-placeholder, -select:-moz-placeholder { - /* Firefox 18- */ - color: #b3b3b3; - font-size: 1.14285714em; -} -input[type]::-moz-placeholder, -textarea::-moz-placeholder, -select::-moz-placeholder { - /* Firefox 19+ */ - color: #b3b3b3; - font-size: 1.14285714em; -} -input[type]:-ms-input-placeholder, -textarea:-ms-input-placeholder, -select:-ms-input-placeholder { - color: #b3b3b3; - font-size: 1.14285714em; -} -input[type="image"] { - border: none; - padding: none; - width: auto; -} -textarea { - display: block; - width: 100%; - max-width: 100%; -} -select { - cursor: pointer; - padding-right: 1.85714286em; - -webkit-appearance: none; -} -select::ms-expand { - display: none; -} -input[type="submit"] { - background: none; - outline: none; - border: none; - background: #c75146; - padding: 0.46428571em 2.78571429em 0.46428571em 2.78571429em; - color: #fff; -} -@keyframes load { - 0% { - opacity: 0; - width: 0; - } - 50% { - width: 100%; - opacity: .8; - left: 0; - } - 100% { - left: 100%; - opacity: 0; - } -} -button { - background: none; -} -button[type="submit"].btn--loading { - position: relative; - overflow: hidden; - pointer-events: none; - color: rgba(0, 0, 0, 0); -} -button[type="submit"].btn--loading * { - opacity: 0; -} -button[type="submit"].btn--loading:after { - content: ''; - position: absolute; - width: 0; - height: 100%; - background: #ddd; - animation: load 1.5s ease-out infinite; - left: 0; - top: 0; -} -button[type="submit"].btn--loading .btn__text { - opacity: 0; -} -button:focus { - outline: none !important; -} -button.bg--error { - color: #fff; -} -.input-icon { - position: relative; -} -.input-icon i { - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; - cursor: default; - position: absolute; -} -.input-checkbox, -.input-radio, -.input-select { - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; - display: inline-block; -} -.input-checkbox input, -.input-radio input, -.input-select input { - opacity: 0 !important; - height: 0 !important; - width: 0 !important; - position: absolute !important; -} -.input-checkbox label, -.input-radio label, -.input-select label { - display: block !important; - cursor: pointer; -} -.input-checkbox { - padding: 0; -} -.input-checkbox label { - width: 1.85714286em; - height: 1.85714286em; - border-radius: 6px; - background: #000; -} -.input-radio { - padding: 0; -} -.input-radio label { - width: 1.85714286em; - height: 1.85714286em; - border-radius: 50%; - background: #000; -} -.input-select { - position: relative; -} -.input-select i { - position: absolute; - top: 50%; - transform: translateY(-50%); - -webkit-transform: translateY(-50%); - right: 1em; - font-size: .87em; -} -.input-file { - position: relative; - display: inline-block; -} -.input-file input { - display: none; -} -.form-error { - margin-top: 1.5625em; - padding: 0.78125em; - background: #D84D4D; - color: #fff; - position: fixed; - min-width: 350px; - left: 50%; - bottom: 1.5625em; - transform: translate3d(-50%, 0, 0); - -webkit-transform: translate3d(-50%, 0, 0); - z-index: 999; - box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); - box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1); -} -.form-success { - margin-top: 1.5625em; - padding: 0.78125em; - background: #1DC020; - color: #fff; - position: fixed; - min-width: 350px; - left: 50%; - bottom: 1.5625em; - transform: translate3d(-50%, 0, 0); - -webkit-transform: translate3d(-50%, 0, 0); - z-index: 999; - box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); - box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1); -} -.attempted-submit .field-error { - border-color: #D84D4D !important; -} -.attempted-submit div.recaptcha.field-error { - border-color: #D84D4D !important; - border-style: solid; - border: 1px solid; - border-radius: 5px; - padding: 5px; -} -div.recaptcha iframe { - min-height: 0; -} -/**! 13. Accordions **/ -.accordion li .accordion__title, -.accordion li .accordion__content, -.accordion li .accordion__content * { - transition: 0.3s linear; - -webkit-transition: 0.3s linear; - -moz-transition: 0.3s linear; -} -.accordion li .accordion__title { - cursor: pointer; - padding: 0.46428571em 0.92857143em; - border: 1px solid #ececec; - border-bottom: none; - background: none; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; -} -.accordion li:last-child .accordion__title { - border-bottom: 1px solid #ececec; -} -.accordion li .accordion__content { - opacity: 0; - visibility: hidden; - max-height: 0; -} -.accordion li .accordion__content > * { - display: none; -} -.accordion li .accordion__content > *:first-child { - padding-top: 0; -} -.accordion li .accordion__content > *:last-child { - padding-bottom: 0; -} -.accordion li.active .accordion__title { - background: #c75146; - border-bottom: 1px solid #ececec; -} -.accordion li.active .accordion__content { - opacity: 1; - visibility: visible; - max-height: 500px; -} -.accordion li.active .accordion__content > * { - display: inline-block; -} -/**! 14. Breadcrumbs **/ -.breadcrumb { - padding: 0; - margin: 0; - background: none; - display: inline-block; -} -.breadcrumb li { - font-size: 1em; -} -.breadcrumb li + li:before { - padding: 0 0.46428571em; -} -/**! 15. Pie Charts **/ -.radial { - position: relative; -} -.radial .radial__label { - position: absolute; - top: 50%; - left: 50%; - transform: translateX(-50%) translateY(-50%); - -webkit-transform: translateX(-50%) translateY(-50%); - margin-bottom: 0; -} -/**! 16. Tabs **/ -.tabs { - display: block; - margin-bottom: 0; -} -.tabs > li { - display: inline-block; - opacity: .5; - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; -} -.tabs > .active, -.tabs:hover { - opacity: 1; -} -.tabs .tab__title { - cursor: pointer; -} -.tabs .tab__title:not(.btn) { - padding: 0 1.85714286em; -} -.tabs li:first-child .tab__title:not(.btn) { - padding-left: 0; -} -.tabs .tab__content { - display: none; -} -.tabs-content { - margin-top: 1em; -} -.tabs-content li > .tab__content { - width: 100%; - display: none; -} -.tabs-content > .active > .tab__content { - display: block; -} -.tabs-container[data-content-align="left"] .tabs-content { - text-align: left; -} -@media all and (max-width: 767px) { - .tabs-content > li:not(.active) .tab__content { - display: none !important; - } -} -/**! 17. Boxes **/ -.boxed { - position: relative; - overflow: hidden; - padding: 1.85714286em; - margin-bottom: 30px; -} -.boxed.boxed--lg { - padding: 2.78571429em; -} -.boxed.boxed--sm { - padding: 1.23809524em; -} -.boxed.boxed--border { - border: 1px solid #ececec; -} -.boxed > div[class*='col-']:first-child:not(.boxed) { - padding-left: 0; -} -.boxed > div[class*='col-']:last-child:not(.boxed) { - padding-right: 0; -} -img + .boxed { - margin-top: -1.85714286em; -} -@media all and (max-width: 767px) { - .boxed { - padding: 1.23809524em; - margin-bottom: 15px; - } - .boxed.boxed--lg { - padding: 1.23809524em; - } - .boxed div[class*='col-']:not(.boxed) { - padding: 0; - } - .boxed:last-child { - margin-bottom: 15px; - } -} -/**! 18. Sliders Flickity **/ -.slides:not(.flickity-enabled) li.imagebg:not(:first-child) { - display: none; -} -.slides:not(.flickity-enabled) li.imagebg:first-child { - background: #252525; - animation: backgroundLoad .5s ease alternate infinite; -} -.slides:not(.flickity-enabled) li.imagebg:first-child .container { - opacity: 0; -} -@keyframes backgroundLoad { - 0% { - background: #252525; - } - 100% { - background: #3f3f3f; - } -} -.slider.height-10 { - height: auto; -} -.slider.height-10 .slides .flickity-slider > li { - height: 10vh; - padding: 0; -} -@media all and (min-width: 768px) { - .slider.height-10 .slides li.imagebg { - min-height: 10vh; - } -} -.slider.height-20 { - height: auto; -} -.slider.height-20 .slides .flickity-slider > li { - height: 20vh; - padding: 0; -} -@media all and (min-width: 768px) { - .slider.height-20 .slides li.imagebg { - min-height: 20vh; - } -} -.slider.height-30 { - height: auto; -} -.slider.height-30 .slides .flickity-slider > li { - height: 30vh; - padding: 0; -} -@media all and (min-width: 768px) { - .slider.height-30 .slides li.imagebg { - min-height: 30vh; - } -} -.slider.height-40 { - height: auto; -} -.slider.height-40 .slides .flickity-slider > li { - height: 40vh; - padding: 0; -} -@media all and (min-width: 768px) { - .slider.height-40 .slides li.imagebg { - min-height: 40vh; - } -} -.slider.height-50 { - height: auto; -} -.slider.height-50 .slides .flickity-slider > li { - height: 50vh; - padding: 0; -} -@media all and (min-width: 768px) { - .slider.height-50 .slides li.imagebg { - min-height: 50vh; - } -} -.slider.height-60 { - height: auto; -} -.slider.height-60 .slides .flickity-slider > li { - height: 60vh; - padding: 0; -} -@media all and (min-width: 768px) { - .slider.height-60 .slides li.imagebg { - min-height: 60vh; - } -} -.slider.height-70 { - height: auto; -} -.slider.height-70 .slides .flickity-slider > li { - height: 70vh; - padding: 0; -} -@media all and (min-width: 768px) { - .slider.height-70 .slides li.imagebg { - min-height: 70vh; - } -} -.slider.height-80 { - height: auto; -} -.slider.height-80 .slides .flickity-slider > li { - height: 80vh; - padding: 0; -} -@media all and (min-width: 768px) { - .slider.height-80 .slides li.imagebg { - min-height: 80vh; - } -} -.slider.height-90 { - height: auto; -} -.slider.height-90 .slides .flickity-slider > li { - height: 90vh; - padding: 0; -} -@media all and (min-width: 768px) { - .slider.height-90 .slides li.imagebg { - min-height: 90vh; - } -} -.slider.height-100 { - height: auto; -} -.slider.height-100 .slides .flickity-slider > li { - height: 100vh; - padding: 0; -} -@media all and (min-width: 768px) { - .slider.height-100 .slides li.imagebg { - min-height: 100vh; - } -} -.slider .slides .flickity-slider > li:not([class*='col-']) { - width: 100%; -} -.slider .slides.slides--gapless li[class*='col-'] { - padding-left: 0; - padding-right: 0; -} -.slider[data-arrows="true"].slider--arrows-hover:not(:hover) .flickity-prev-next-button { - opacity: 0; -} -.slider[data-paging="true"]:not(section) { - margin-bottom: 3.71428571em; -} -.slider[data-paging="true"]:not(section) .flickity-page-dots { - bottom: -3.71428571em; -} -.slider[data-paging="true"]:not([class*='text-']) .flickity-page-dots { - text-align: center; -} -.slider[data-children="1"] .flickity-prev-next-button { - display: none; -} -.slider:not([data-paging="true"]) .slides { - margin: 0; -} -.slider.controls--dark .flickity-page-dots .dot { - background: #252525; -} -.slider.controls--dark .flickity-prev-next-button:before { - color: #252525; -} -section.slider { - padding: 0; -} -section.slider.height-10 { - height: auto; -} -section.slider.height-10 .slides .flickity-slider > li { - height: 10vh; - padding: 0; -} -@media all and (min-width: 768px) { - section.slider.height-10 .slides li.imagebg { - min-height: 10vh; - } -} -section.slider.height-20 { - height: auto; -} -section.slider.height-20 .slides .flickity-slider > li { - height: 20vh; - padding: 0; -} -@media all and (min-width: 768px) { - section.slider.height-20 .slides li.imagebg { - min-height: 20vh; - } -} -section.slider.height-30 { - height: auto; -} -section.slider.height-30 .slides .flickity-slider > li { - height: 30vh; - padding: 0; -} -@media all and (min-width: 768px) { - section.slider.height-30 .slides li.imagebg { - min-height: 30vh; - } -} -section.slider.height-40 { - height: auto; -} -section.slider.height-40 .slides .flickity-slider > li { - height: 40vh; - padding: 0; -} -@media all and (min-width: 768px) { - section.slider.height-40 .slides li.imagebg { - min-height: 40vh; - } -} -section.slider.height-50 { - height: auto; -} -section.slider.height-50 .slides .flickity-slider > li { - height: 50vh; - padding: 0; -} -@media all and (min-width: 768px) { - section.slider.height-50 .slides li.imagebg { - min-height: 50vh; - } -} -section.slider.height-60 { - height: auto; -} -section.slider.height-60 .slides .flickity-slider > li { - height: 60vh; - padding: 0; -} -@media all and (min-width: 768px) { - section.slider.height-60 .slides li.imagebg { - min-height: 60vh; - } -} -section.slider.height-70 { - height: auto; -} -section.slider.height-70 .slides .flickity-slider > li { - height: 70vh; - padding: 0; -} -@media all and (min-width: 768px) { - section.slider.height-70 .slides li.imagebg { - min-height: 70vh; - } -} -section.slider.height-80 { - height: auto; -} -section.slider.height-80 .slides .flickity-slider > li { - height: 80vh; - padding: 0; -} -@media all and (min-width: 768px) { - section.slider.height-80 .slides li.imagebg { - min-height: 80vh; - } -} -section.slider.height-90 { - height: auto; -} -section.slider.height-90 .slides .flickity-slider > li { - height: 90vh; - padding: 0; -} -@media all and (min-width: 768px) { - section.slider.height-90 .slides li.imagebg { - min-height: 90vh; - } -} -section.slider.height-100 { - height: auto; -} -section.slider.height-100 .slides .flickity-slider > li { - height: 100vh; - padding: 0; -} -@media all and (min-width: 768px) { - section.slider.height-100 .slides li.imagebg { - min-height: 100vh; - } -} -section.slider[data-paging="true"] .flickity-page-dots { - bottom: 1.85714286em; -} -section.slider:not(.image--light)[data-paging="true"] .flickity-page-dots .dot { - background: #fff; -} -section.slider .slides { - margin: 0; -} -@media all and (max-width: 767px) { - section.slider[class*='height-'] .slides .flickity-slider > li { - height: auto; - padding: 7.42857143em 0; - } - section.slider.space--lg .slides .flickity-slider > li { - padding: 11.14285714em 0; - } - section.slider.space--xlg .slides .flickity-slider > li { - padding: 11.14285714em 0; - } -} -section.bg--dark .slider[data-paging="true"] .flickity-page-dots .dot, -section.bg--primary .slider[data-paging="true"] .flickity-page-dots .dot { - background: #fff; -} -.flickity-page-dots .dot { - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; - width: 8px; - height: 8px; - border-radius: 50%; - background: #252525; - border: none; - margin: 0 0.46428571em; -} -.flickity-page-dots .dot:hover:not(.is-selected) { - opacity: .6; -} -.text-center .flickity-page-dots, -section.slider .flickity-page-dots { - text-align: center; -} -.flickity-prev-next-button svg { - display: none; -} -.flickity-prev-next-button:before { - font-family: 'stack-interface'; - content: "\e80c"; - font-size: 1em; - font-weight: normal; -} -.flickity-prev-next-button.previous:before { - content: "\e80b"; -} -.imagebg:not(.image--light) .flickity-page-dots .dot, -.bg--dark .flickity-page-dots .dot { - background: #fff; -} -/**! 19. Hover Elements **/ -.hover-element { - position: relative; - overflow: hidden; - margin-bottom: 30px; -} -.hover-element * { - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; -} -.hover-element .hover-element__reveal { - position: absolute; - top: 0; - left: 0; - opacity: 0; - width: 100%; - height: 100%; -} -.hover-element .hover-element__reveal .boxed { - height: 100%; -} -.hover-element:hover .hover-element__reveal, -.hover-element.hover--active .hover-element__reveal { - opacity: 1; -} -.hover-element img { - margin-bottom: 0; -} -@media all and (max-width: 1024px) { - .hover-element { - cursor: pointer; - } -} -.row:last-child div[class*='col-']:last-child .hover-element { - margin-bottom: 0; -} -/**! 20. Masonry **/ -.masonry .masonry__container.masonry--active .masonry__item { - opacity: 1; - pointer-events: initial; -} -.masonry .masonry__container .masonry__item { - opacity: 0; - pointer-events: none; -} -.masonry .masonry__filters li { - display: inline-block; - cursor: pointer; - text-transform: capitalize; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; -} -.masonry .masonry__filters li.active { - cursor: default; -} -.masonry.masonry--gapless .masonry__item { - padding: 0 !important; - margin-bottom: 0; -} -/**! 21. Modals **/ -.modal-instance .modal-body { - display: none; -} -.modal-container { - transition: 0.3s linear; - -webkit-transition: 0.3s linear; - -moz-transition: 0.3s linear; - padding: 0; - visibility: hidden; - opacity: 0; - z-index: 999; - pointer-events: none; - position: fixed; - width: 100%; - height: 100%; - top: 0; - left: 0; -} -.modal-container.modal-active { - opacity: 1; - visibility: visible; - pointer-events: all; -} -.modal-container:before { - background: rgba(0, 0, 0, 0.85); - content: ''; - position: fixed; - width: 100%; - height: 100%; - top: 0; - left: 0; - z-index: 1; -} -.modal-container .modal-content { - backface-visibility: hidden; - position: fixed; - z-index: 2; - top: 50%; - left: 50%; - max-height: 100%; - overflow-y: scroll; - border: none; - transform: translate3d(-50%, -50%, 0); - -webkit-transform: translate3d(-50%, -50%, 0); - padding: 0; - border-radius: 0; - box-shadow: none; -} -.modal-container .modal-content:not(.height--natural) { - width: 50%; - height: 50%; -} -.modal-container .modal-content .modal-close-cross { - cursor: pointer; - position: absolute; - opacity: .5; - transition: 0.1s linear; - -webkit-transition: 0.1s linear; - -moz-transition: 0.1s linear; - top: 1em; - right: 1em; - z-index: 99; -} -.modal-container .modal-content .modal-close-cross:before { - content: '\00D7'; - font-size: 1.5em; -} -.modal-container .modal-content .modal-close-cross:hover { - opacity: 1; -} -.modal-container .modal-content.imagebg:not(.image--light) .modal-close-cross:before { - color: #fff; -} -.modal-container .modal-content iframe { - width: 100%; - outline: none; - border: none; - height: 100%; - backface-visibility: hidden; -} -.modal-container .modal-content iframe:first-child + .modal-close-cross:last-child { - top: -3.71428571em; -} -@media all and (max-width: 767px) { - .modal-container .modal-content { - width: 97% !important; - height: auto !important; - padding-top: 2em; - padding-bottom: 2em; - } -} -/**! 22. Maps **/ -.map-container { - position: relative; - overflow: hidden; -} -.map-container iframe, -.map-container .map-canvas { - position: absolute; - width: 100%; - height: 100%; - top: 0; -} -/**! 23. Parallax **/ -.parallax > .background-image-holder, -.parallax .slides li > .background-image-holder { - height: 100%; - min-height: 100vh; - top: -50vh; - transition: opacity 0.3s ease !important; - -webkit-transition: opacity 0.3s ease !important; - -webkit-transform-style: preserve-3d; -} -.parallax:first-child .slides li > .background-image-holder, -.parallax:first-child .background-image-holder { - top: 0; -} -.main-container > a:first-child + .parallax .background-image-holder { - top: 0; -} -@media all and (max-width: 1024px) { - .parallax > .background-image-holder, - .parallax .slides li > .background-image-holder { - -webkit-transition: transform 0.016s linear !important; - transition: transform 0.016s linear !important; - } - .parallax.parallax-disable-mobile .background-image-holder, - .parallax.parallax-disable-mobile .slides li > .background-image-holder { - top: 0 !important; - transform: none !important; - } -} -/**! 24. Notifications **/ -.notification { - max-width: 100%; - box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); - position: fixed; - z-index: 99; - pointer-events: none; - padding: 0; - margin: 1em; - opacity: 0; - transition: 0.3s linear; - -webkit-transition: 0.3s linear; - -moz-transition: 0.3s linear; -} -.notification:not([class*='bg-']) { - background: #fff; -} -.notification[class*='col-'] { - min-width: 400px; -} -.notification .notification-close-cross { - position: absolute; - top: 1em; - z-index: 99; - right: 1em; - cursor: pointer; - transition: 0.1s linear; - -webkit-transition: 0.1s linear; - -moz-transition: 0.1s linear; - opacity: .7; -} -.notification .notification-close-cross:before { - content: '\00D7'; - font-size: 1.5em; -} -.notification .notification-close-cross:hover { - opacity: 1; -} -.notification.notification--reveal { - z-index: 99; - pointer-events: initial; -} -.notification.notification--reveal[data-animation="from-bottom"] { - animation: from-bottom 0.3s linear 0s forwards; - -webkit-animation: from-bottom 0.3s linear 0s forwards; - -moz-animation: from-bottom 0.3s linear 0s forwards; -} -.notification.notification--reveal[data-animation="from-top"] { - animation: from-top 0.3s linear 0s forwards; - -webkit-animation: from-top 0.3s linear 0s forwards; - -moz-animation: from-top 0.3s linear 0s forwards; -} -.notification.notification--reveal[data-animation="from-left"] { - animation: from-left 0.3s linear 0s forwards; - -webkit-animation: from-left 0.3s linear 0s forwards; - -moz-animation: from-left 0.3s linear 0s forwards; -} -.notification.notification--reveal[data-animation="from-right"] { - animation: from-right 0.3s linear 0s forwards; - -webkit-animation: from-right 0.3s linear 0s forwards; - -moz-animation: from-right 0.3s linear 0s forwards; -} -.notification.notification--dismissed { - animation: fade-out 0.4s linear 0s forwards !important; - -webkit-animation: fade-out 0.4s linear 0s forwards !important; - -moz-animation: fade-out 0.4s linear 0s forwards !important; - pointer-events: none; -} -.bg--dark + .notification-close-cross:before { - color: #fff; -} -a[data-notification-link] { - text-decoration: none; -} -a[data-notification-link]:hover { - text-decoration: none; -} -@media all and (max-width: 767px) { - .notification[class*='col-'] { - min-width: 0; - } -} -@keyframes from-bottom { - from { - transform: translate3d(0, 100%, 0); - -webkit-transform: translate3d(0, 100%, 0); - opacity: 0; - } - to { - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); - opacity: 1; - } -} -@-moz-keyframes from-bottom { - from { - transform: translate3d(0, 100%, 0); - -webkit-transform: translate3d(0, 100%, 0); - opacity: 0; - } - to { - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); - opacity: 1; - } -} -@-webkit-keyframes from-bottom { - from { - transform: translate3d(0, 100%, 0); - -webkit-transform: translate3d(0, 100%, 0); - opacity: 0; - } - to { - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); - opacity: 1; - } -} -@keyframes from-top { - from { - transform: translate3d(0, -100%, 0); - -webkit-transform: translate3d(0, -100%, 0); - opacity: 0; - } - to { - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); - opacity: 1; - } -} -@-moz-keyframes from-top { - from { - transform: translate3d(0, -100%, 0); - -webkit-transform: translate3d(0, -100%, 0); - opacity: 0; - } - to { - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); - opacity: 1; - } -} -@-webkit-keyframes from-top { - from { - transform: translate3d(0, -100%, 0); - -webkit-transform: translate3d(0, -100%, 0); - opacity: 0; - } - to { - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); - opacity: 1; - } -} -@keyframes from-left { - from { - transform: translate3d(-100%, 0, 0); - -webkit-transform: translate3d(-100%, 0, 0); - opacity: 0; - } - to { - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); - opacity: 1; - } -} -@-moz-keyframes from-left { - from { - transform: translate3d(-100%, 0, 0); - -webkit-transform: translate3d(-100%, 0, 0); - opacity: 0; - } - to { - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); - opacity: 1; - } -} -@-webkit-keyframes from-left { - from { - transform: translate3d(-100%, 0, 0); - -webkit-transform: translate3d(-100%, 0, 0); - opacity: 0; - } - to { - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); - opacity: 1; - } -} -@keyframes from-right { - from { - transform: translate3d(100%, 0, 0); - -webkit-transform: translate3d(100%, 0, 0); - opacity: 1; - } - to { - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); - opacity: 1; - } -} -@-moz-keyframes from-right { - from { - transform: translate3d(100%, 0, 0); - -webkit-transform: translate3d(100%, 0, 0); - opacity: 0; - } - to { - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); - opacity: 1; - } -} -@-webkit-keyframes from-right { - from { - transform: translate3d(100%, 0, 0); - -webkit-transform: translate3d(100%, 0, 0); - opacity: 0; - } - to { - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); - opacity: 1; - } -} -@keyframes fade-out { - 0% { - opacity: 1; - } - 100% { - opacity: 0; - } -} -@-webkit-keyframes fade-out { - 0% { - opacity: 1; - } - 100% { - opacity: 0; - } -} -@-moz-keyframes fade-out { - 0% { - opacity: 1; - } - 100% { - opacity: 0; - } -} -/**! 25. Video **/ -iframe { - width: 100%; - min-height: 350px; - border: none; -} -@media all and (max-width: 767px) { - iframe { - min-height: 220px; - } -} -.videobg { - background: #252525; - position: relative; - overflow: hidden; -} -.videobg .container, -.videobg .background-image-holder { - opacity: 0; - transition: 0.3s linear; - -webkit-transition: 0.3s linear; - -moz-transition: 0.3s linear; -} -.videobg .background-image-holder { - opacity: 0 !important; -} -.videobg.video-active .container { - opacity: 1; -} -.videobg.video-active .loading-indicator { - opacity: 0; - visibility: hidden; -} -.videobg video { - object-fit: cover; - height: 100%; - min-width: 100%; - position: absolute; - top: 0; - z-index: 0 !important; - left: 0; -} -@media all and (max-width: 1024px) { - .videobg .background-image-holder, - .videobg .container { - opacity: 1 !important; - } - .videobg .loading-indicator { - display: none; - } - .videobg video { - display: none; - } -} -.youtube-background { - position: absolute; - height: 100%; - width: 100%; - top: 0; - z-index: 0 !important; -} -.youtube-background .mb_YTPBar { - opacity: 0; - height: 0; - visibility: hidden; -} -@media all and (max-width: 1024px) { - .youtube-background { - display: none; - } -} -.loading-indicator { - position: absolute !important; - top: 50%; - left: 50%; - z-index: 99 !important; - width: 50px; - height: 50px; - margin-top: -25px; - margin-left: -25px; - background-color: #fff; - border-radius: 100%; - -webkit-animation: loading-spinner 1s infinite ease-in-out; - animation: loading-spinner 1s infinite ease-in-out; - transition: 0.3s linear; - -webkit-transition: 0.3s linear; - -moz-transition: 0.3s linear; -} -@-webkit-keyframes loading-spinner { - 0% { - -webkit-transform: scale(0); - } - 100% { - -webkit-transform: scale(1); - opacity: 0; - } -} -@keyframes loading-spinner { - 0% { - -webkit-transform: scale(0); - transform: scale(0); - } - 100% { - -webkit-transform: scale(1); - transform: scale(1); - opacity: 0; - } -} -.video-cover { - position: relative; -} -.video-cover video { - max-width: 100%; -} -.video-cover iframe { - background: #252525; -} -.video-cover .background-image-holder { - z-index: 3; -} -.video-cover .video-play-icon { - position: absolute; - top: 50%; - left: 50%; - transform: translate3d(-50%, -50%, 0); - -webkit-transform: translate3d(-50%, -50%, 0); -} -.video-cover .video-play-icon, -.video-cover .background-image-holder { - transition: 0.3s linear; - -webkit-transition: 0.3s linear; - -moz-transition: 0.3s linear; -} -.video-cover.reveal-video .video-play-icon, -.video-cover.reveal-video .background-image-holder { - opacity: 0 !important; - pointer-events: none; -} -.video-cover[data-scrim-bottom]:before, -.video-cover[data-overlay]:before, -.video-cover[data-scrim-top]:before { - transition: 0.3s linear; - -webkit-transition: 0.3s linear; - -moz-transition: 0.3s linear; - z-index: 4; -} -.video-cover.reveal-video[data-scrim-bottom]:before, -.video-cover.reveal-video[data-overlay]:before, -.video-cover.reveal-video[data-scrim-top]:before { - opacity: 0; - pointer-events: none; -} -.video-play-icon { - width: 7.42857143em; - height: 7.42857143em; - border-radius: 50%; - position: relative; - z-index: 4; - display: inline-block; - border: 2px solid #ffffff; - cursor: pointer; - background: #ffffff; -} -.video-play-icon.video-play-icon--sm { - width: 3.71428571em; - height: 3.71428571em; -} -.video-play-icon.video-play-icon--sm:before { - border-width: 4px 0 4px 9px; -} -.video-play-icon.video-play-icon--xs { - width: 1.85714286em; - height: 1.85714286em; -} -.video-play-icon.video-play-icon--xs:before { - border-width: 3px 0 3px 6px; - margin-left: -3px; -} -.video-play-icon.bg--primary:before { - border-color: transparent transparent transparent #fff; -} -.video-play-icon:before { - position: absolute; - top: 50%; - margin-top: -5px; - left: 50%; - margin-left: -4px; - content: ''; - width: 0; - height: 0; - border-style: solid; - border-width: 6px 0 6px 12px; - border-color: transparent transparent transparent #ffffff; - border-color: transparent transparent transparent #808080; -} -.video-play-icon.video-play-icon--dark { - border-color: #252525; - background: #252525; -} -.video-play-icon.video-play-icon--dark:before { - border-color: transparent transparent transparent #252525; -} -.video-play-icon.video-play-icon--dark:before { - border-color: transparent transparent transparent #fff; -} -@media all and (max-width: 767px) { - .video-play-icon { - width: 4.95238095em; - height: 4.95238095em; - } -} -div[class*='col-'][class*='-12']:not([class*='xs-12']) .video-cover iframe { - min-height: 550px; -} -@media all and (max-width: 990px) { - div[class*='col-'][class*='-12']:not([class*='xs-12']) .video-cover iframe { - min-height: 350px; - } -} -div[class*='col-'][class*='-10'] .video-cover iframe { - min-height: 450px; -} -div[class*='col-'][class*='-8'] .video-cover iframe { - min-height: 400px; -} -div[class*='col-'][class*='-6'] .video-cover iframe { - min-height: 350px; -} -@media all and (max-width: 1200px) { - div[class*='col-'][class*='-6'] .video-cover iframe { - min-height: 300px; - } -} -@media all and (max-width: 990px) { - div[class*='col-'][class*='-6'] .video-cover iframe { - min-height: 220px; - } -} -@media all and (max-width: 767px) { - div[class*='col-'] .video-cover iframe { - min-height: 220px !important; - } -} -.modal-container video { - max-width: 100%; -} -/**! 26. Colors **/ -body { - background: #ffffff; -} -.color--primary { - color: #c75146 !important; -} -a { - color: #c75146; -} -.color--primary-1 { - color: #ad2e24 !important; -} -.color--primary-2 { - color: #54494b !important; -} -.color--white { - color: #fff; -} -.color--dark { - color: #252525; -} -.color--success { - color: #4ebf56; -} -.color--error { - color: #e23636; -} -.bg--dark { - background: #252525; -} -.bg--dark:not(.nav-bar):not(.bar) { - color: #ffffff; -} -.bg--dark:not(.nav-bar):not(.bar) h1, -.bg--dark:not(.nav-bar):not(.bar) h2, -.bg--dark:not(.nav-bar):not(.bar) h3, -.bg--dark:not(.nav-bar):not(.bar) h4, -.bg--dark:not(.nav-bar):not(.bar) h5, -.bg--dark:not(.nav-bar):not(.bar) h6, -.bg--dark:not(.nav-bar):not(.bar) i, -.bg--dark:not(.nav-bar):not(.bar) span:not(.btn__text), -.bg--dark:not(.nav-bar):not(.bar) p { - color: #ffffff; -} -.bg--dark:not(.nav-bar):not(.bar) a:not(.btn) { - color: #fff; -} -.bg--site { - background: #ffffff; -} -.bg--secondary { - background: #fafafa; -} -.bg--primary { - background: #c75146; -} -.bg--primary p, -.bg--primary span, -.bg--primary ul, -.bg--primary a:not(.btn) { - color: #fff; -} -.bg--primary h1, -.bg--primary h2, -.bg--primary h3, -.bg--primary h4, -.bg--primary h5, -.bg--primary h6, -.bg--primary i { - color: #fff; -} -.bg--primary .color--primary { - color: #fff !important; -} -.bg--white { - background: #fff; -} -.bg--white p, -.bg--white span, -.bg--white ul, -.bg--white a:not(.btn) { - color: #666666; -} -.bg--white h1, -.bg--white h2, -.bg--white h3, -.bg--white h4, -.bg--white h5, -.bg--white h6, -.bg--white i { - color: #252525; -} -.bg--error { - background: #e23636; -} -.bg--success { - background: #4ebf56; -} -.imagebg:not(.image--light) .bg--white p, -.imagebg:not(.image--light) .bg--white span, -.imagebg:not(.image--light) .bg--white ul, -.imagebg:not(.image--light) .bg--white a:not(.btn) { - color: #666666; -} -.imagebg:not(.image--light) .bg--white h1, -.imagebg:not(.image--light) .bg--white h2, -.imagebg:not(.image--light) .bg--white h3, -.imagebg:not(.image--light) .bg--white h4, -.imagebg:not(.image--light) .bg--white h5, -.imagebg:not(.image--light) .bg--white h6, -.imagebg:not(.image--light) .bg--white i { - color: #252525; -} -.imagebg:not(.image--light) .bg--secondary { - background: rgba(250, 250, 250, 0.2); -} -.bg--primary-1 { - background: #ad2e24; -} -.bg--primary-1 p, -.bg--primary-1 span, -.bg--primary-1 ul, -.bg--primary-1 a:not(.btn) { - color: #fff; -} -.bg--primary-1 h1, -.bg--primary-1 h2, -.bg--primary-1 h3, -.bg--primary-1 h4, -.bg--primary-1 h5, -.bg--primary-1 h6, -.bg--primary-1 i { - color: #fff; -} -.bg--primary-2 { - background: #54494b; -} -.bg--primary-2 p, -.bg--primary-2 span, -.bg--primary-2 ul, -.bg--primary-2 a:not(.btn) { - color: #fff; -} -.bg--primary-2 h1, -.bg--primary-2 h2, -.bg--primary-2 h3, -.bg--primary-2 h4, -.bg--primary-2 h5, -.bg--primary-2 h6, -.bg--primary-2 i { - color: #fff; -} -.image-bg:not(.image-light) *:not(a) { - color: #fff; -} -.color--facebook { - color: #3b5998; -} -.color--twitter { - color: #00aced; -} -.color--googleplus { - color: #dd4b39; -} -.color--instagram { - color: #125688; -} -.color--pinterest { - color: #cb2027; -} -.color--dribbble { - color: #ea4c89; -} -.color--behance { - color: #053eff; -} -.bg--facebook { - background: #3b5998; - color: #fff; -} -.bg--twitter { - background: #00aced; - color: #fff; -} -.bg--googleplus { - background: #dd4b39; - color: #fff; -} -.bg--instagram { - background: #125688; - color: #fff; -} -.bg--pinterest { - background: #cb2027; - color: #fff; -} -.bg--dribbble { - background: #ea4c89; - color: #fff; -} -.bg--behance { - background: #053eff; - color: #fff; -} -/**! 27. Image Blocks **/ -.imageblock { - position: relative; - padding: 0; -} -.imageblock > .container, -.imageblock > div[class*='col-']:not(.imageblock__content) { - padding-top: 7.42857143em; - padding-bottom: 7.42857143em; - float: none; - overflow: hidden; -} -.imageblock.imageblock--lg > .container, -.imageblock.imageblock--lg > div[class*='col-']:not(.imageblock__content) { - padding-top: 9.28571429em; - padding-bottom: 9.28571429em; - float: none; - overflow: hidden; -} -.imageblock .imageblock__content { - position: absolute; - height: 100%; - top: 0; - z-index: 2; - padding: 0; -} -.imageblock .imageblock__content .slider { - position: absolute; - width: 100%; - height: 100%; - top: 0; -} -.imageblock .imageblock__content .slider .slides > li { - padding: 0; - min-height: 100%; - position: absolute !important; -} -.imageblock.allow-overflow .imageblock__content { - overflow: visible; -} -@media all and (max-height: 728px) { - .imageblock > .container, - .imageblock > div[class*='col-']:not(.imageblock__content) { - padding-top: 3.71428571em; - padding-bottom: 3.71428571em; - } -} -@media all and (max-width: 767px) { - .imageblock[class*='space-'] { - padding-bottom: 0; - padding-top: 0; - } - .imageblock .imageblock__content { - position: relative; - min-height: 18.57142857em; - } - .imageblock > .container, - .imageblock > div[class*='col-']:not(.imageblock__content) { - padding-top: 5.57142857em; - padding-bottom: 5.57142857em; - float: none; - overflow: hidden; - } - .imageblock.imageblock--lg > .container, - .imageblock.imageblock--lg > div[class*='col-']:not(.imageblock__content) { - padding-top: 5.57142857em; - padding-bottom: 5.57142857em; - float: none; - overflow: hidden; - } -} -/**! 28. MailChimp & Campaign Monitor **/ -form[action*='createsend.com'] * { - transition: 0.3s linear; - -webkit-transition: 0.3s linear; - -moz-transition: 0.3s linear; - opacity: 0; -} -form[action*='createsend.com'].form--active * { - opacity: 1; -} -form[action*='createsend.com'] .input-checkbox + br { - display: none; -} -form[action*='createsend.com'].no-labels label { - display: none; -} -form[action*='createsend.com'] br { - display: none; -} -form[action*='createsend.com'] p > label:first-child { - margin-bottom: 0.92857143em; -} -form[action*='list-manage.com'] h2 { - font-family: 'Open Sans', 'Helvetica', 'Arial', sans-serif; - color: #252525; - font-weight: 300; - font-variant-ligatures: common-ligatures; - margin-top: 0; - margin-bottom: 0; - font-size: 1.35714286em; - line-height: 1.36842105em; - margin-bottom: 1.36842105263158em; - font-weight: 400; -} -form[action*='list-manage.com'] h2.inline-block + .h4.inline-block:not(.typed-text) { - margin-left: 0.68421052631579em; -} -form[action*='list-manage.com'] .input-group ul { - overflow: hidden; -} -form[action*='list-manage.com'] .input-group ul li { - float: left; -} -form[action*='list-manage.com'] * { - transition: 0.3s linear; - -webkit-transition: 0.3s linear; - -moz-transition: 0.3s linear; - opacity: 0; -} -form[action*='list-manage.com'].form--active * { - opacity: 1; -} -form[action*='list-manage.com'].no-labels label { - display: none; -} -form[action*='list-manage.com'] .small-meta { - font-size: 0.5em; -} -/**! 29. Twitter **/ -.twitter-feed .user { - display: none; -} -.twitter-feed .interact { - display: none; -} -.twitter-feed .timePosted { - font-size: .87em; -} -/**! 30. Transitions **/ -[class*='transition--'] { - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; - opacity: 0; -} -[class*='transition--'].transition--active { - opacity: 1; -} -.transition--scale { - transform: scale(0.98); - -webkit-transform: scale(0.98); -} -.transition--scale.transition--active { - opacity: 1; - transform: scale(1); - -webkit-transform: scale(1); -} -.transition--slide { - transform: translate3d(200px, 0, 0); - -webkit-transform: translate3d(200px, 0, 0); - transform: translate3d(30vw, 0, 0); - -webkit-transform: translate3d(30vw, 0, 0); -} -.transition--slide.transition--active { - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); -} -/**! 31. Switchable Sections **/ -.switchable { - position: relative; -} -.switchable div[class*='col-']:first-child { - float: left; - right: auto; -} -.switchable div[class*='col-']:first-child:not([class*='pull']):not([class*='push']) { - left: 0; -} -.switchable div[class*='col-']:last-child { - float: right; - left: auto; -} -.switchable div[class*='col-']:last-child:not([class*='pull']):not([class*='push']) { - right: 0; -} -.switchable.switchable--switch div[class*='col-']:first-child { - float: right; - right: 0; - left: auto; -} -.switchable.switchable--switch div[class*='col-']:first-child:not([class*='pull']):not([class*='push']) { - left: auto; -} -.switchable.switchable--switch div[class*='col-']:last-child { - float: left; - left: 0; - right: auto; -} -.switchable .switchable__text { - margin-top: 3.71428571em; -} -.switchable > div[class*='col-'] { - padding: 0; -} -/**! 32. Typed Effect **/ -.typed-text { - display: inline-block; -} -.typed-text.typed-text--cursor:after { - content: '|'; - font-size: 1.2em; - -webkit-animation: blink 0.7s infinite; - animation: blink 0.7s infinite; - position: relative; - right: 6px; -} -@keyframes blink { - 0% { - opacity: 1; - } - 50% { - opacity: 0; - } - 100% { - opacity: 1; - } -} -@-webkit-keyframes blink { - 0% { - opacity: 1; - } - 50% { - opacity: 0; - } - 100% { - opacity: 1; - } -} -/**! 33. Gradient BG **/ -[data-gradient-bg] { - position: relative; - background: #252525; -} -[data-gradient-bg] > canvas { - position: absolute; - width: 100%; - height: 100%; - top: 0; - left: 0; -} -[data-gradient-bg] > canvas + .background-image-holder { - opacity: .2 !important; -} -/**! 34. Bars **/ -.bar { - padding: 1.85714286em 0; -} -.bar .logo { - margin: 0; - position: relative; - top: 4px; -} -.bar .menu-horizontal { - position: relative; - top: 6px; -} -.bar:not([class*='visible-']) + .bar { - margin-top: 0.92857143em; -} -.bar.bar--xs { - padding: 0.46428571em 0; -} -.bar.bar--sm { - padding: 0.92857143em 0; -} -.bar.bar--lg { - padding: 2.78571429em 0; -} -.bar.bar--lg .logo { - top: 0; -} -.bar.bar--xlg { - padding: 4.64285714em 0; -} -.bar.bar--xlg .logo { - top: 0; -} -.bar.bg--dark .logo-dark { - display: none; -} -.bar:not(.bg--dark):not(.bar--transparent) .logo-light { - display: none; -} -@media all and (max-width: 767px) { - .bar.bar--mobile-sticky[data-scroll-class*='fixed'].pos-fixed { - position: fixed; - width: 100%; - background: #fff; - z-index: 999; - } - .bar.bar--mobile-sticky[data-scroll-class*='fixed'] + .bar.pos-fixed { - top: 3.71428571em; - position: fixed; - width: 100%; - background: #fff; - z-index: 999; - } -} -@media all and (min-width: 991px) { - .bar__module:not(:only-child) { - display: inline-block; - } - .bar__module:not(:last-child) { - margin-right: 0.92857143em; - } - .bar--transparent:not(.bar--dark) { - background: none; - } - .bar--transparent:not(.bar--dark) .logo-dark { - display: none; - } - .bar--transparent:not(.bar--dark) .logo-light { - display: inline-block; - } - .bar--transparent:not(.bar--dark):not(.pos-fixed) .menu-horizontal > li > a, - .bar--transparent:not(.bar--dark):not(.pos-fixed) .menu-horizontal > li > span { - color: #fff; - } - .bar--transparent:not(.bar--dark):not(.pos-fixed) .btn:not([class*='primary']) { - border-color: rgba(255, 255, 255, 0.3); - } - .bar--transparent:not(.bar--dark):not(.pos-fixed) .btn:not([class*='primary']) .btn__text { - color: #fff; - } - .bar--transparent:not(.bar--dark):not(.pos-fixed) .btn:not([class*='primary']):hover { - border-color: rgba(255, 255, 255, 0.7); - } - .bar--absolute { - position: absolute; - } - .bar--absolute, - .pos-fixed { - z-index: 99; - width: 100%; - } - .bar.pos-fixed { - position: fixed; - top: 0; - animation: fadeInDown 0.3s ease-out forwards; - box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); - box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.04); - } - .bar.pos-fixed:not([class*='bg-']) { - background: #ffffff; - } - .bar.pos-fixed:not([class*='bg-']) .logo-dark { - display: inline-block; - } - .bar.pos-fixed:not([class*='bg-']) .logo-light { - display: none; - } - .bar.pos-fixed.bg--dark { - background: #252525; - } -} -@media all and (max-width: 767px) { - .bar__module { - margin-bottom: 0.92857143em; - } - .bar__module + .bar__module { - margin-top: 1.85714286em; - } - .bar__module .btn { - display: block; - } - .bar__module .btn + .btn { - margin-left: 0 !important; - } - .bar__module .btn:not(:last-child) { - margin-bottom: 0.92857143em; - } - .bar + nav.bar { - padding-top: 0; - } -} -/**! 35. Navigation InPage **/ -.page-navigator { - position: fixed; - padding: 0; - top: 50%; - transform: translateY(-50%); - right: 1.85714286em; - z-index: 10; -} -.page-navigator ul { - display: inline-block; - padding: 0.92857143em; - background: rgba(0, 0, 0, 0.4); - border-radius: 1.85714286em; - transition: all .2s ease; -} -.page-navigator ul:hover { - background: rgba(0, 0, 0, 0.6); -} -.page-navigator ul li:not(:last-child) { - margin-bottom: 1.85714286em; -} -@media all and (max-width: 767px) { - .page-navigator { - right: 0; - } - .page-navigator ul { - border-radius: 1.85714286em 0 0 1.85714286em; - padding: 1.85714286em 0.92857143em; - } -} -.page-navigator li a { - width: 8px; - height: 8px; - background: #fff; - border-radius: 50%; - transition: all .2s ease; - display: block; - position: relative; -} -.page-navigator li a:not(:hover) { - opacity: .5; -} -.page-navigator li a.inner-link--active { - opacity: 1; - animation: bulge .5s ease; - -webkit-animation: bulge .5s ease; -} -@keyframes bulge { - 0% { - transform: scale(1); - } - 50% { - transform: scale(1.3); - } - 100% { - transform: scale(1); - } -} -@-webkit-keyframes bulge { - 0% { - transform: scale(1); - } - 50% { - transform: scale(1.3); - } - 100% { - transform: scale(1); - } -} -.page-navigator li a[data-title]:before { - content: attr(data-title); - position: absolute; - right: 12px; - top: -14px; - background: #222; - color: #fff; - border-radius: 6px; - padding: 4px 8px; - display: inline-block; - transition: all .2s ease; - white-space: nowrap; -} -.page-navigator li a[data-title]:not(:hover):before { - opacity: 0; - transform: translateX(-20px); -} -/**! 36. Helper Classes **/ -.clearfix { - overflow: hidden; -} -.clearfix-after:after { - content: ""; - display: table; - clear: both; -} -.allow-overflow { - overflow: visible; -} -.container .row--gapless { - padding-left: 15px; - padding-right: 15px; -} -.container .row--gapless > div[class*='col-'] { - padding: 0; -} -@media all and (max-width: 767px) { - .text-left-xs { - text-align: left; - } -} -@media all and (max-width: 991px) { - .text-left-sm { - text-align: left; - } -} -section > .row--gapless { - padding-left: 0; - padding-right: 0; -} -section > .row--gapless > div[class*='col-'] { - padding: 0; -} -div.right { - float: right; -} -div.left { - float: left; -} -section.text-right > .container:last-child > .row:only-child > div[class*='col-']:only-child { - float: right; -} -/**! 37. Spacing **/ -section, -footer { - padding-top: 7.42857143em; - padding-bottom: 7.42857143em; -} -section.space--xxs, -footer.space--xxs { - padding-top: 1.85714286em; - padding-bottom: 1.85714286em; -} -section.space--xs, -footer.space--xs { - padding-top: 3.71428571em; - padding-bottom: 3.71428571em; -} -section.space--sm, -footer.space--sm { - padding-top: 4.95238095em; - padding-bottom: 4.95238095em; -} -section.space--md, -footer.space--md { - padding-top: 11.14285714em; - padding-bottom: 11.14285714em; -} -section.space--lg, -footer.space--lg { - padding-top: 14.85714286em; - padding-bottom: 14.85714286em; -} -section.space--xlg, -footer.space--xlg { - padding-top: 29.71428571em; - padding-bottom: 29.71428571em; -} -section.space--0, -footer.space--0 { - padding: 0; -} -section.section--even, -footer.section--even { - padding-top: 7.42857143em; - padding-bottom: 7.42857143em; -} -section.space-bottom--sm, -footer.space-bottom--sm { - padding-bottom: 4.95238095em; -} -@media all and (max-width: 767px) { - section, - footer, - section.section--even { - padding: 5.57142857em 0; - } - section.space--lg, - footer.space--lg, - section.section--even.space--lg, - section.space--md, - footer.space--md, - section.section--even.space--md { - padding: 5.57142857em 0; - } - section.space--xlg, - footer.space--xlg, - section.section--even.space--xlg { - padding: 8.35714286em 0; - } -} -div[class*='col-'] > div[class*='col-']:first-child { - padding-left: 0; -} -div[class*='col-'] > div[class*='col-']:last-child { - padding-right: 0; -} -@media all and (max-width: 767px) { - .col-xs-6:nth-child(odd) { - padding-right: 7.5px; - } - .col-xs-6:nth-child(even) { - padding-left: 7.5px; - } -} -@media all and (min-width: 768px) { - .mt--1 { - margin-top: 1.85714286em; - } - .mt--2 { - margin-top: 3.71428571em; - } - .mt--3 { - margin-top: 5.57142857em; - } - .mb--1 { - margin-bottom: 1.85714286em; - } - .mb--2 { - margin-bottom: 3.71428571em; - } - .mb--3 { - margin-bottom: 5.57142857em; - } -} -@media all and (max-width: 990px) { - .mt--1, - .mt--2 { - margin-top: 1.85714286em; - } - .mt--3 { - margin-top: 2.78571429em; - } -} -.unpad { - padding: 0; -} -.unpad--bottom { - padding-bottom: 0; -} -.unpad--top { - padding-top: 0; -} -section.unpad--bottom { - padding-bottom: 0; -} -section.unpad { - padding: 0; -} -section.unpad--top { - padding-top: 0; -} -.unmarg--bottom { - margin-bottom: 0; -} -.unmarg { - margin: 0; -} -.unmarg--top { - margin-top: 0; -} -/**! 38. Boxed Layout **/ -@media all and (min-width: 1280px) { - body.boxed-layout { - padding: 3.71428571em 0; - background: #ededed; - } - body.boxed-layout section:not([class*='bg-']):not(.imagebg), - body.boxed-layout footer:not([class*='bg-']):not(.imagebg), - body.boxed-layout nav:not([class*='bg-']):not(.bar--transparent):not(.bar--absolute), - body.boxed-layout .tabs-container:not([class*='bg-']):not(.imagebg) { - background: #ffffff; - } - body.boxed-layout .nav-container, - body.boxed-layout .main-container, - body.boxed-layout > section, - body.boxed-layout nav { - max-width: 1280px; - margin: 0 auto; - } -} -/**! 39. Wizard **/ -.wizard__body { - list-style: none; -} -.wizard__step:not(.active) { - display: none; -} -.wizard__step .wizard__title { - display: none; -} -.wizard__controls { - overflow: hidden; -} -.wizard__controls .wizard-prev { - float: left; -} -.wizard__controls .wizard-next { - float: right; -} -.wizard__controls .wizard-prev:hover, -.wizard__controls .wizard-next:hover { - transform: none !important; -} -.wizard__controls .wizard-prev.inactive, -.wizard__controls .wizard-next.inactive { - pointer-events: none; - opacity: .3; - cursor: not-allowed; -} -/**! 40. Alerts **/ -.alert { - overflow: hidden; - border: 1px solid #e6e6e6; - padding: 0.92857143em; -} -.alert .alert__body, -.alert .alert__close { - display: inline-block; - user-select: none; -} -.alert .alert__body { - float: left; -} -.alert .alert__close { - float: right; - cursor: pointer; -} -.alert.bg--error { - background: #fce8e8; - border-color: #e23636; -} -.alert.bg--error .alert__close { - color: #e23636; -} -.alert.bg--success { - background: #e4f5e5; - border-color: #4ebf56; -} -.alert.bg--success .alert__close { - color: #4ebf56; -} -.alert.bg--primary { - background: #f6e4e3; - border-color: #c75146; -} -.alert.bg--primary .alert__body > span { - color: #666666; -} -.alert.bg--primary .alert__close { - color: #c75146; -} -.alert.alert--dismissed { - display: none; -} -/**! 41. Progress - Horizontal **/ -.progress-horizontal:after { - content: ""; - display: table; - clear: both; -} -.progress-horizontal .progress-horizontal__bar { - position: relative; - overflow: hidden; -} -.progress-horizontal .progress-horizontal__progress { - position: absolute; - top: 0; - left: 0; - height: 100%; -} -/**! 42. Theme Overrides **/ -/*! -- Stack Customizers -- */ -.box-shadow { - box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.04); -} -.box-shadow-shallow { - box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.06); -} -.box-shadow-wide { - box-shadow: 0 23px 40px rgba(0, 0, 0, 0.2); -} -.border--round { - border-radius: 6px; -} -.border--round:before { - border-radius: 6px; -} -.border--round .background-image-holder { - border-radius: 6px; -} -.border--round [data-scrim-top]:before, -.border--round [data-scrim-bottom]:before, -.border--round [data-overlay]:before { - border-radius: 6px; -} -.imageblock.border--round .background-image-holder { - border-radius: 6px 0 0 6px; -} -@media all and (max-width: 767px) { - .imageblock.border--round .background-image-holder { - border-radius: 6px 6px 0 0; - } -} -.theme--square .border--round, -.theme--square .btn { - border-radius: 0px; -} -.theme--bordered { - border: 0.92857143em solid #252525; -} -.main-container.transition--fade:not(.transition--active) { - cursor: wait; -} -@media all and (min-width: 1280px) { - body.boxed-layout > section.bar-3:first-of-type { - border-radius: 6px 6px 0 0; - } - body.boxed-layout .main-container > footer:last-child { - border-radius: 0 0 6px 6px; - } -} -body.boxed-layout .modal-container section:not([class*='bg-']) { - background: none; -} -/*! -- Stack Helpers -- */ -@media all and (max-width: 767px) { - .block--xs { - margin-top: 0.92857143em; - } -} -.container .container { - max-width: 100%; -} -.switchable-toggle { - cursor: pointer; - user-select: none; - -webkit-user-select: none; -} -.back-to-top { - position: fixed; - width: 3.71428571em; - height: 3.71428571em; - background: #fff; - border-radius: 50%; - text-align: center; - right: 1.85714286em; - bottom: 3.71428571em; - padding-top: 12px; - box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); - box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.04); - z-index: 99; - border: 1px solid #ececec; - transition: 0.2s ease-out; - -webkit-transition: 0.2s ease-out; - -moz-transition: 0.2s ease-out; -} -.back-to-top i { - color: #252525; -} -.back-to-top:not(.active) { - opacity: 0; - transform: translate3d(0, 20px, 0); - -webkit-transform: translate3d(0, 20px, 0); - pointer-events: none; -} -.back-to-top.active:hover { - transform: translate3d(0, -5px, 0); - -webkit-transform: translate3d(0, -5px, 0); -} -.disable-scroll-bars { - -ms-overflow-style: none; -} -.disable-scroll-bars::-webkit-scrollbar { - display: none; -} -/*! -- Stack Animations -- */ -@keyframes fadeInUp { - from { - opacity: 0; - transform: translate3d(0, 50px, 0); - -webkit-transform: translate3d(0, 50px, 0); - } - to { - opacity: 1; - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); - -webkit-font-smoothing: antialiased; - } -} -@-webkit-keyframes fadeInUp { - from { - opacity: 0; - transform: translate3d(0, 50px, 0); - -webkit-transform: translate3d(0, 50px, 0); - } - to { - opacity: 1; - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); - -webkit-font-smoothing: antialiased; - } -} -@keyframes fadeInDown { - from { - opacity: 0; - transform: translate3d(0, -100px, 0); - -webkit-transform: translate3d(0, -100px, 0); - } - to { - opacity: 1; - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); - -webkit-font-smoothing: antialiased; - } -} -@-webkit-keyframes fadeInDown { - from { - opacity: 0; - transform: translate3d(0, -100px, 0); - -webkit-transform: translate3d(0, -100px, 0); - } - to { - opacity: 1; - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); - -webkit-font-smoothing: antialiased; - } -} -@keyframes fadeOutUp { - from { - opacity: 1; - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); - } - to { - opacity: 0; - transform: translate3d(0, -50px, 0); - -webkit-transform: translate3d(0, -50px, 0); - -webkit-font-smoothing: antialiased; - } -} -@-webkit-keyframes fadeOutUp { - from { - opacity: 1; - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); - } - to { - opacity: 0; - transform: translate3d(0, -50px, 0); - -webkit-transform: translate3d(0, -50px, 0); - -webkit-font-smoothing: antialiased; - } -} -@keyframes fadeOutRight { - from { - opacity: 1; - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); - } - to { - opacity: 0; - transform: translate3d(50px, 0, 0); - -webkit-transform: translate3d(50px, 0, 0); - -webkit-font-smoothing: antialiased; - } -} -@-webkit-keyframes fadeOutRight { - from { - opacity: 1; - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); - } - to { - opacity: 0; - transform: translate3d(50px, 0, 0); - -webkit-transform: translate3d(50px, 0, 0); - -webkit-font-smoothing: antialiased; - } -} -@keyframes fadeInLeft { - from { - opacity: 0; - transform: translate3d(-50px, 0, 0); - -webkit-transform: translate3d(-50px, 0, 0); - } - to { - opacity: 1; - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); - -webkit-font-smoothing: antialiased; - } -} -@-webkit-keyframes fadeInLeft { - from { - opacity: 0; - transform: translate3d(-50px, 0, 0); - -webkit-transform: translate3d(-50px, 0, 0); - } - to { - opacity: 1; - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); - -webkit-font-smoothing: antialiased; - } -} -@keyframes pulse { - 0% { - opacity: 0; - transform: scale(1); - -webkit-transform: scale(1); - } - 50% { - opacity: 1; - } - 100% { - opacity: 0; - transform: scale(2); - -webkit-transform: scale(2); - } -} -@-webkit-keyframes pulse { - 0% { - opacity: 0; - transform: scale(1); - -webkit-transform: scale(1); - } - 50% { - opacity: 1; - } - 100% { - opacity: 0; - transform: scale(2); - -webkit-transform: scale(2); - } -} -@keyframes kenBurns { - 0% { - transform: scale(1); - } - 100% { - transform: scale(1.1); - } -} -@-webkit-keyframes kenBurns { - 0% { - transform: scale(1); - } - 100% { - transform: scale(1.1); - } -} -/*! -- Stack Sections -- */ -section:not(.unpad):not(.imagebg):not([class*='bg--']):not(.imageblock):not(.unpad--bottom):not(.border--bottom):not(.space--xxs) + section:not(.unpad):not(.imagebg):not([class*='bg--']):not(.imageblock):not(.border--bottom):not(.space--xxs) { - padding-top: 0; -} -section:not(.unpad):not(.imagebg):not([class*='bg--']):not(.imageblock):not(.unpad--bottom):not(.border--bottom) + footer:not(.unpad):not(.imagebg):not([class*='bg--']):not(.imageblock):not(.unpad--bottom):not(.border--bottom) { - padding-top: 0; -} -section:not(.imagebg):not([class*='bg-']) + section.bg--secondary { - border-top: 1px solid #ebebeb; -} -section.bg--secondary:not(.imagebg) + section:not(.imagebg):not([class*='bg-']) { - border-top: 1px solid #ebebeb; -} -section.bg--secondary:not(.unpad):not(.imageblock):not(.unpad--bottom):not(.border--bottom) + section.bg--secondary { - padding-top: 0; -} -section.bg--secondary + footer:not(.bg--dark):not(.bg--secondary) { - border-top: 1px solid #ebebeb; -} -section.bg--dark + section.bg--dark { - padding-top: 0; -} -section.bg--dark:last-of-type + footer.bg--dark { - background: #1b1b1b; -} -section.border--bottom:not([data-gradient-bg]) { - border-bottom: 1px solid #ececec; -} -section.unpad { - overflow: hidden; -} -section:not([class*='bg--']) + footer.bg--secondary { - border-top: 1px solid #ebebeb; -} -section.text-center div[class*='col-']:first-child:last-child { - margin: 0 auto; - float: none; -} -.section--overlap { - z-index: 2; - position: relative; -} -/*! -- Stack Typography -- */ -@media all and (max-width: 1024px) { - html { - font-size: 80%; - } -} -h1, -.h1 { - letter-spacing: -0.01em; -} -h1:not(:last-child), -.h1:not(:last-child) { - margin-bottom: 0.59090909090909em; -} -@media all and (min-width: 768px) { - h1.h1--large, - .h1.h1--large { - font-weight: 200; - font-size: 4.428571428571429em; - line-height: 1.048387096774194em; - } - h1.h1--large:not(:last-child), - .h1.h1--large:not(:last-child) { - margin-bottom: 0.419354838709677em; - } - h1.h1--large.type--uppercase, - .h1.h1--large.type--uppercase { - letter-spacing: 10px; - margin-right: -10px; - } - h1.h1--large + p.lead, - .h1.h1--large + p.lead { - margin-top: 2.052631578947368em; - } -} -h2, -.h2 { - margin-bottom: 0.78787878787879em; -} -h3, -.h3 { - margin-bottom: 1.04em; -} -h3 strong, -.h3 strong { - font-weight: 400; -} -blockquote { - font-family: 'Merriweather', serif; - font-style: italic; - font-weight: 300; -} -blockquote:not(:last-child) { - margin-bottom: 1.04em; -} -blockquote > p { - font-size: 1em !important; -} -h4, -.h4 { - margin-bottom: 1.36842105263158em; - font-weight: 400; -} -h4.inline-block + .h4.inline-block:not(.typed-text), -.h4.inline-block + .h4.inline-block:not(.typed-text) { - margin-left: 0.68421052631579em; -} -h5, -.h5 { - font-weight: 600; -} -h5:not(:last-child), -.h5:not(:last-child) { - margin-bottom: 1.85714286em; -} -h6, -.h6 { - font-weight: 700; -} -h6:not(:last-child), -.h6:not(:last-child) { - margin-bottom: 2.16666666666667em; -} -h6.type--uppercase, -.h6.type--uppercase { - letter-spacing: 1px; - margin-right: -1px; -} -span.h1:not(.inline-block), -span.h2:not(.inline-block), -span.h3:not(.inline-block), -span.h4:not(.inline-block), -span.h5:not(.inline-block), -span.h6:not(.inline-block) { - display: block; -} -b { - font-weight: 600; -} -hr { - border-color: #ECECEC; -} -.bg--dark hr { - border-color: #585858; -} -[class*='bg-']:not(.bg--white):not(.bg--secondary) p, -[class*='imagebg']:not(.image--light) p { - opacity: .9; -} -.lead { - font-weight: 400; - color: #808080; -} -.lead:not(:last-child) { - margin-bottom: 1.36842105263158em; -} -.lead + .btn:last-child { - margin-top: 0.92857143em; -} -p:last-child { - margin-bottom: 0; -} -p strong { - color: #252525; -} -pre { - padding: 0.92857143em; - background: #fafafa; - border: 1px solid #ececec; - border-radius: 6px; - line-height: 20px; - max-height: 500px; -} -.bg--secondary > pre { - background: #f5f5f5; - border-color: #ddd; -} -.text-block:not(:last-child) { - margin-bottom: 1.85714286em; -} -.text-block h2, -.text-block .h2 { - margin-bottom: 0.3939393939394em; -} -.text-block h5, -.text-block .h5 { - margin: 0; -} -.text-block h4:not(:last-child), -.text-block .h4:not(:last-child) { - margin-bottom: 0.3421052631579em; -} -.text-block h3, -.text-block .h3 { - margin-bottom: 0.52em; -} -@media all and (min-width: 768px) { - div[class*='col-'] .text-block + .text-block { - margin-top: 3.71428571em; - } -} -.heading-block { - margin-bottom: 3.71428571em; -} -.heading-block h1, -.heading-block h2, -.heading-block h3, -.heading-block h4, -.heading-block h5, -.heading-block h6, -.heading-block .h1, -.heading-block .h2, -.heading-block .h3, -.heading-block .h4, -.heading-block .h5, -.heading-block .h6 { - margin-bottom: 0; -} -/*! -- Stack Colours -- */ -.bg--dark .bg--secondary { - background: #343434; -} -/*! -- Stack Links -- */ -a { - color: #c75146; - font-weight: 700; -} -a:hover { - color: #a73d33; - text-decoration: underline; -} -a.block { - font-weight: normal; - text-decoration: none; - color: #666666; -} -p a, -span a, -label a { - font-size: 1em; - text-decoration: underline; - font-weight: 400; - line-height: 1.85714286em; -} -p + a:not(.btn) { - font-size: 0.85714286em; - line-height: 2.16666667em; -} -.imagebg:not(.image--light) a { - color: #fff; - font-weight: 600; -} -/*! -- Stack Tables -- */ -table { - width: 100%; - border-collapse: separate; -} -table th, -table td { - padding: 0.92857143em; -} -table th { - background: #fafafa; - color: #252525; -} -table tr:not(:last-of-type) { - border-bottom: 1px solid #ececec; -} -table.border--round { - border-radius: 6px; - border: 1px solid #ececec; -} -.table--alternate-column th:nth-child(odd) { - background: none; -} -.table--alternate-column td:nth-child(even) { - background: #fafafa; -} -.table--alternate-row tbody tr:nth-child(even) { - background: #fafafa; -} -.bg--dark table.border--round { - border-radius: 6px; - border: 1px solid #3f3f3f; -} -.bg--dark table th { - background: #3f3f3f; - color: #fff; -} -.bg--dark .table--alternate-row tbody tr:nth-child(even) { - background: #323232; -} -/*! -- Stack Lists -- */ -ul:not([class*='menu']) li > a { - font-weight: normal; -} -ul:not([class*='menu']) li > a:hover { - text-decoration: none; -} -ol { - list-style-position: outside; - list-style-type: decimal; -} -ol li:not(:last-child) { - margin-bottom: 1.85714286em; -} -ol.lead li:not(:last-child) { - margin-bottom: 1.26315789473684em; -} -.list-inline { - margin-left: 0; - display: inline-block; -} -.list-inline li { - padding: 0; -} -.list-inline li:not(:last-child) { - margin-right: 1.85714286em; -} -.list-inline:not(:last-child) { - margin-right: 1.85714286em; -} -.list-inline--images img { - max-height: 2.78571429em; -} -@media all and (min-width: 768px) { - .list-inline--images li:not(:last-child) { - margin-right: 5.57142857em; - } -} -@media all and (max-width: 767px) { - .list-inline--images li:not(:last-child) { - margin-bottom: 1.85714286em; - } -} -.list--loose > li:not(:last-child) { - margin-bottom: 0.46428571em; -} -.list--hover li { - transition: 0.2s ease; - -webkit-transition: 0.2s ease; - -moz-transition: 0.2s ease; -} -.list--hover li:not(:hover) { - opacity: .6; -} -.social-list a { - color: #252525; -} -.imagebg:not(.image--light) .social-list a { - color: #fff; -} -.results-list > li > a:first-child { - display: flex; - align-items: center; - margin-bottom: 0.92857143em; -} -.results-list > li > a:first-child span { - display: inline-block; - margin-left: 0.46428571em; -} -.results-list > li > a:first-child h4 { - display: inline-block; - margin-bottom: 0; -} -.results-list > li > a:first-child:hover h4, -.results-list > li > a:first-child:hover span { - text-decoration: underline; -} -.results-list > li:not(:last-child) { - margin-bottom: 1.85714286em; - padding-bottom: 1.85714286em; - border-bottom: 1px solid rgba(0, 0, 0, 0.1); -} -@media all and (max-width: 767px) { - .list-inline:not(.social-list):not(.list-inline--images) { - display: block; - } - .list-inline:not(.social-list):not(.list-inline--images) li { - display: block; - margin: 0; - } - .list-inline:not(.social-list):not(.list-inline--images) li:not(:last-child) { - margin-bottom: 0.46428571em; - } -} -@media all and (max-width: 767px) { - .list-inline { - min-width: 100%; - } -} -.row--list span.h6 { - margin-bottom: 0; -} -.row--list span.h3:last-child { - margin-bottom: 0; -} -@media all and (max-width: 767px) { - .row--list > li { - margin-bottom: 0.92857143em; - } -} -/*! -- Stack Rules -- */ -hr:first-child { - margin-top: 0; -} -hr.short { - width: 2.78571429em; - border-color: #c75146; -} -hr[data-title] { - margin: 2.78571429em 0; - text-align: center; -} -hr[data-title]:before { - content: attr(data-title); - background: #ffffff; - position: relative; - bottom: 14px; - padding: 0.92857143em; - font-style: italic; -} -.bg--dark hr:not(.short), -.imagebg hr:not(.short), -.bg--primary hr:not(.short) { - opacity: .3; -} -/*! -- Stack Buttons -- */ -.btn { - position: relative; -} -.btn:not([class*='primary']) { - border-color: #d3d3d3; -} -.btn:not([class*='primary']):hover { - border-color: #252525; -} -.btn.type--uppercase { - letter-spacing: .5px; -} -.btn.type--uppercase .btn__text { - letter-spacing: .5px; - margin-right: -0.5px; -} -.btn .label { - top: -0.92857143em; - right: -3.71428571em; -} -.btn.btn--lg .btn__text { - font-weight: 600; -} -.btn.btn--lg.type--uppercase .btn__text { - letter-spacing: 1px; -} -.btn + p.type--fine-print, -.btn + span.type--fine-print { - margin-top: 1.08333333333334em; -} -.btn.block { - margin-left: 0; -} -.btn.block + .btn.block { - margin-top: 0.92857143em; -} -.btn:hover { - transform: translate3d(0, -2px, 0); - -webkit-transform: translate3d(0, -2px, 0); -} -.btn.btn--sm + .btn--sm { - margin-left: 0.92857143em; -} -p > .btn { - text-decoration: none; -} -@media all and (max-width: 767px) { - .btn:not(:last-child) { - margin-bottom: 1.85714286em; - } -} -.btn--icon { - padding-left: 5.57142857em; -} -.btn--icon i { - position: absolute; - height: 100%; - left: 0; - top: 0; - background: rgba(0, 0, 0, 0.1); - padding: 0 13px; - border-radius: 6px 0 0 6px; - font-size: 16px; - line-height: 41px; -} -.btn--icon i.socicon { - line-height: 42px; -} -.btn--cart { - width: 3.71428571em; - height: 3.71428571em; - border: 2px solid #252525; - display: block; - text-align: center; - border-radius: 6px; - opacity: .4; - padding: 0; -} -.btn--cart:hover { - opacity: 1; -} -.btn--cart .btn__text { - position: absolute; - width: 100%; - left: 0; - top: 50%; - transform: translateY(-50%); - font-size: 1.142857142857143em; -} -.imagebg:not(.image--light) .btn--icon:not([class*='bg']):not([class*='primary']) i { - color: #fff; - background: rgba(255, 255, 255, 0.2); -} -@media all and (min-width: 768px) { - .btn-group .btn { - margin-bottom: 0 !important; - margin-left: 0; - } - .btn-group .btn + .btn { - margin-left: 0; - } - .btn-group .btn:not(:first-child):not(:last-child) { - border-radius: 0; - } - .btn-group .btn:first-child { - border-radius: 6px 0 0 6px; - } - .btn-group .btn:last-child { - border-radius: 0 6px 6px 0; - } - .btn-group .btn:first-child:nth-last-child(2), - .btn-group .btn:last-child:nth-child(2) { - width: 50%; - } -} -.btn-group { - border: none; - padding: 0; -} -@media all and (max-width: 767px) { - .btn-group .btn { - display: block; - } -} -.bg--primary div:not([class*='feature']) .btn--primary { - background: #fff; - border-color: #fff; -} -.bg--primary div:not([class*='feature']) .btn--primary .btn__text { - color: #c75146; -} -.bg--primary > .btn--primary { - background: #fff; - border-color: #fff; -} -.bg--primary > .btn--primary .btn__text { - color: #c75146; -} -.bg--dark .btn:not(.btn--primary) { - border-color: #3f3f3f; -} -.bg--dark .btn:not(.btn--primary):hover { - border-color: #656565; -} -.bg--dark .btn .btn__text { - color: #fff; -} -.imagebg:not(.image--light) .btn:not([class*='primary']) { - border-color: rgba(255, 255, 255, 0.3); -} -.imagebg:not(.image--light) .btn:not([class*='primary']):hover { - border-color: #fff; -} -.imagebg.image--light .btn:not([class*='primary']) { - border-color: #252525; - background: rgba(255, 255, 255, 0.3); -} -.imagebg.image--light .btn:not([class*='primary']):hover { - background: rgba(255, 255, 255, 0.5); -} -h1 + .btn, -.h1 + .btn { - margin-top: 1.85714286em; -} -h2 + .btn, -.h2 + .btn { - margin-top: 0.92857143em; -} -/*! -- Stack Images -- */ -img:last-child { - margin-bottom: 0; -} -img.flag { - max-height: 1.85714286em; -} -img.image--sm:not(:last-child) { - margin-bottom: 0.92857143em; -} -img.promo.border--round { - border: 1px solid #ececec; -} -p.lead img { - max-height: 1.68421053em; -} -.imagebg h1, -.imagebg h2, -.imagebg h3, -.imagebg h4, -.imagebg h5, -.imagebg h6 { - position: relative; -} -.imagebg:not(.image--light) span { - color: #fff; -} -.imagebg.border--round { - overflow: hidden; -} -section.parallax .row .background-image-holder { - transform: none !important; - top: 0 !important; -} -.triptych.border--round img { - position: relative; - border-radius: 6px; - width: 33.333333%; - float: left; - margin: 0; -} -.triptych.border--round img:nth-child(2) { - transform: scale(1.2); - -webkit-transform: scale(1.2); - z-index: 2; - box-shadow: 0 23px 40px rgba(0, 0, 0, 0.2); -} -.gallery > div[class*='col-'] { - margin-bottom: 30px; -} -.gallery-1 { - overflow: hidden; - position: relative; -} -.gallery-1 .gallery__image:not(:last-child) { - margin-bottom: 30px; -} -.gallery-1 > div[class*='col-']:first-child > .gallery__image { - height: 800px; -} -.gallery-1 > div[class*='col-']:last-child > .gallery__image { - height: calc(385px); -} -.gallery__image { - position: relative; - overflow: hidden; -} -@media all and (max-width: 767px) { - .gallery-1 .gallery__image { - max-height: 300px; - margin-bottom: 15px; - } - .gallery-1 .gallery__image:not(:last-child) { - margin-bottom: 15px; - } -} -.section--ken-burns { - overflow: hidden; -} -.section--ken-burns > .background-image-holder, -.section--ken-burns > img:only-child { - animation: kenBurns 15s ease alternate infinite; - -webkit-animation: kenBurns 15s ease alternate infinite; -} -/*! -- Stack Titles -- */ -.breadcrumbs { - list-style: none; -} -.breadcrumbs li { - font-size: 0.85714285714286em; - display: inline-block; -} -.breadcrumbs li:not(:last-child) { - margin-right: 1.08333333333334em; -} -.breadcrumbs li:not(:last-child):after { - content: '\00bb'; - margin-left: 1.08333333333334em; -} -.breadcrumbs li a { - font-weight: normal; -} -.imagebg .breadcrumbs, -.bg--primary .breadcrumbs { - color: #fff; -} -.imagebg .breadcrumbs a, -.bg--primary .breadcrumbs a { - color: #fff; - font-weight: 600; -} -.elements-title { - border-top: none !important; -} -.elements-title + .tabs-container:not( :nth-last-child(2)), -.elements-title + section:not( :nth-last-child(2)) { - margin-bottom: 9.28571429em; -} -.elements-title + section:not(.imagebg):not([class*='bg-']):not(.unpad) { - padding-top: 1.85714286em; -} -/*! -- Stack Labels -- */ -.label { - display: inline-block; - font-size: 9px; - font-weight: 700; - letter-spacing: .5px; - color: #fff; - text-transform: uppercase; - height: 26px; - min-width: 65px; - padding: 0 10px; - text-align: center; - border-radius: 50px; - position: absolute; - z-index: 3; - top: 1.23809524em; - right: 1.23809524em; -} -.label:not([class*='bg--']) { - background: #ad2e24; -} -.label.label--inline { - position: relative; - top: 0; - right: 0; -} -.label.label--inline:not(:last-child) { - margin-right: 0.92857143em; -} -.label.label--inline + span, -.label.label--inline + p { - position: relative; - top: 1px; -} -.label.switchable-toggle { - left: 50%; - right: auto; - transform: translate3d(-50%, 0, 0); - -webkit-transform: translate3d(-50%, 0, 0); - box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.06); -} -.bg--primary-1 .label:not([class*='bg--']) { - background: #54494b; -} -/*! -- Stack Bars -- */ -.menu-horizontal > li, -.menu-vertical > li { - font-family: 'Open Sans', 'Roboto', 'Helvetica', Sans-Serif; -} -.bar .logo { - max-height: 1.85714286em; - max-width: none; -} -.menu-horizontal > li > a, -.menu-horizontal > li > .modal-instance > a { - font-weight: 500; -} -.menu-horizontal > li a:hover { - text-decoration: none; -} -.hamburger-toggle i { - color: #252525; -} -@media all and (min-width: 990px) { - .menu-horizontal li:not(:last-child) { - margin-right: 1.23809524em; - } - .bar__module:not(:only-child) .menu-horizontal { - top: 0; - } -} -@media all and (min-width: 768px) and (max-width: 1023px) { - .bar-2 .menu-horizontal > li, - .bar-1 .menu-horizontal > li { - display: inline-block; - } - .bar-2 .menu-horizontal > li:not(:first-child), - .bar-1 .menu-horizontal > li:not(:first-child) { - margin-left: 0.92857143em; - } - .bar-2 .bar__module, - .bar-1 .bar__module { - margin-bottom: 1.85714286em; - } - .bar-2 .row div[class*='col-']:last-child .bar__module:last-child, - .bar-1 .row div[class*='col-']:last-child .bar__module:last-child { - margin-bottom: 0; - } -} -.bar-1 .menu-horizontal > li > .dropdown__trigger, -.bar-1 .menu-horizontal > li > a { - font-size: 0.857142857142857em; - line-height: 2.166666666666667em; - text-transform: uppercase; - font-weight: 600; - letter-spacing: .5px; -} -@media all and (min-width: 1024px) { - .bar-1 .bar__module + .bar__module { - margin-left: 1.85714286em; - } -} -@media all and (min-width: 991px) { - .bar-2 .logo { - position: absolute; - left: 50%; - transform: translateX(-50%); - } -} -.bar-3 { - font-size: 0.85714286em; -} -.bar-3 .menu-horizontal { - top: 0; -} -@media all and (max-width: 990px) { - .bar-3 .menu-horizontal li { - display: inline-block; - } - .bar-3 .menu-horizontal li:not(:last-child) { - margin-right: 0.92857143em; - } -} -@media all and (min-width: 990px) { - .bar-toggle .col-md-1 .logo { - top: 10px; - } -} -@media all and (max-width: 767px) { - .bar-4 .logo-light { - display: none; - } - .bar-4 .logo-dark { - margin-bottom: 1.85714286em; - } - .bar.bg--dark { - background: #252525; - } - .bar.bg--dark .hamburger-toggle i { - color: #fff; - } -} -/*! -- Stack Alerts -- */ -.alert { - border-radius: 6px; -} -.alert:not(:last-child) { - margin-bottom: 1.85714286em; -} -.alert .alert__close { - font-size: 1.35714286em; -} -/*! -- Stack Menu Toggle -- */ -.menu-toggle { - box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); - box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.04); - width: 3.71428571em; - height: 3.71428571em; - border-radius: 50%; - text-align: center; - background: #fff; - display: inline-block; - transition: 0.2s ease; - -webkit-transition: 0.2s ease; - -moz-transition: 0.2s ease; -} -.menu-toggle i { - font-size: 1.78571429em; - position: relative; - top: 13px; - color: #252525; -} -.menu-toggle:hover { - box-shadow: 0 23px 40px rgba(0, 0, 0, 0.2); - transform: translate3d(0, -2px, 0); - -webkit-transform: translate3d(0, -2px, 0); -} -/*! -- Stack Nav Utility -- */ -.nav-utility { - padding: 0.92857143em 0; -} -.nav-utility .nav-utility__module { - font-size: 0.85714285714286em; -} -.nav-utility .nav-utility__module a { - color: #666666; - font-weight: normal; -} -.nav-utility .nav-utility__module a i { - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; - display: inline-block; -} -.nav-utility .nav-utility__module a:hover i { - transform: scale(1.5); - -webkit-transform: scale(1.5); -} -.nav-utility .nav-utility__module.right:not(:last-child) { - margin-left: 2.16666666666667em; -} -.utility-toggle { - display: inline-block; - cursor: pointer; - width: 3px; - height: 3px; - position: relative; - bottom: 8px; - border-radius: 50%; - background: #252525; -} -.utility-toggle:before, -.utility-toggle:after { - content: ''; - width: 3px; - height: 3px; - border-radius: 50%; - position: absolute; - background: #252525; -} -.utility-toggle:before { - top: 6px; -} -.utility-toggle:after { - top: 12px; -} -/*! -- Stack Nav Stacked -- */ -.bar-stacked .logo { - margin-bottom: 3.71428571em; -} -/*! -- Stack Nav Side Menu -- */ -.notification.side-menu { - z-index: 9999; - background: #ffffff; - padding-top: 1.85714286em; - margin: 0; - height: 100%; - box-shadow: 0 23px 40px rgba(0, 0, 0, 0.2); - width: 27.85714286em; -} -.notification.side-menu .side-menu__module { - overflow: hidden; - padding: 2.78571429em; -} -.notification.side-menu .side-menu__module + hr:not(:last-child) { - margin: 0; -} -.notification.side-menu .menu-vertical li a { - font-size: 1.35714286em; - line-height: 1.36842105em; -} -.notification.side-menu .menu-vertical li a:hover { - text-decoration: none; -} -.notification.side-menu .btn:not(:last-child) { - margin-bottom: 1.85714286em; -} -.notification.side-menu .btn + ul.list--loose { - margin-top: 0.92857143em; -} -.notification.side-menu .notification-close-cross { - top: 0.92857143em; - right: 2.78571429em; - margin-top: 8px; -} -.notification.side-menu .social-list:not(:first-child) { - margin-top: 1.85714286em; -} -.menu-toggle.pos-fixed { - position: fixed; - right: 5.57142857em; - animation: fadeInDown .3s ease forwards; -} -@media all and (min-width: 768px) { - .side-menu .side-menu__module span.type--fine-print { - position: relative; - top: 8px; - } -} -@media all and (max-width: 767px) { - .side-menu { - width: 100%; - } - .side-menu .side-menu__module .float-right, - .side-menu .side-menu__module .float-left { - display: block; - } -} -/*! -- Stack Nav Sidebar Column -- */ -.nav-container.nav-container--sidebar + .main-container { - width: calc(100vw - 20.428571428571463em); - float: right; -} -.nav-container.nav-container--sidebar + .main-container .container { - max-width: 100%; -} -.nav-sidebar-column { - position: fixed; - z-index: 3; - left: 0; - width: 20.42857143em; - border-right: 1px solid #ececec; - height: 100vh; - overflow-y: scroll; - -ms-overflow-style: none; - padding: 2.78571429em 1.85714286em; -} -.nav-sidebar-column:not([class*='bg-']) { - background: #ffffff; -} -.nav-sidebar-column.bg--dark { - border-right: 1px solid #3f3f3f; -} -.nav-sidebar-column::-webkit-scrollbar { - display: none; -} -.nav-sidebar-column .logo { - max-height: 2.32142857em; - margin-bottom: 0.92857143em; -} -.nav-sidebar-column .text-block > p { - margin-bottom: 0.92857143em; -} -.nav-sidebar-column .menu-vertical li.dropdown:not(:hover):after { - opacity: .35; -} -.nav-sidebar-column .menu-vertical a:hover { - text-decoration: none; -} -.nav-sidebar-column .dropdown .dropdown__container, -.nav-sidebar-column .dropdown .dropdown__content { - left: 0 !important; - position: relative; - pointer-events: all; -} -.nav-sidebar-column .dropdown .dropdown__container:before { - height: 0; -} -.nav-sidebar-column .dropdown .dropdown__content { - transform: none !important; - box-shadow: none; - -webkit-box-shadow: none; - padding-top: 0.46428571em; - padding-right: 0; - padding-left: 0.46428571em; - background: none !important; -} -.nav-sidebar-column .dropdown .menu-vertical li.dropdown:after { - right: 1.85714286em; -} -.nav-sidebar-column .dropdown:not(.dropdown--active) .dropdown__container { - display: none; -} -.nav-sidebar-column .dropdown.dropdown--hover:hover > .dropdown__container { - display: block; -} -.nav-sidebar-column .social-list { - margin-bottom: 0.92857143em; -} -body.dropdowns--hover .nav-sidebar-column .dropdown:hover > .dropdown__container { - display: block; -} -.nav-sidebar-column-toggle { - transition: all .3s ease; - left: 0; - width: 3.71428571em; - height: 3.71428571em; - background: #ffffff; - text-align: center; - position: fixed; - z-index: 4; - cursor: pointer; - border-radius: 0 0 6px 0; - box-shadow: 2px 1px 4px rgba(0, 0, 0, 0.1); -} -.nav-sidebar-column-toggle > i { - transition: all .3s ease; - font-size: 1.78571429em; - position: relative; - top: 11px; -} -.nav-sidebar-column-toggle:not(.toggled-class) > i { - opacity: .5; -} -.nav-sidebar-column-toggle.toggled-class i:before { - content: '\e80b'; -} -@media all and (max-width: 990px) { - .nav-sidebar-column { - transition: all .3s ease; - left: -20.42857143em; - box-shadow: 2px 0px 4px rgba(0, 0, 0, 0); - } - .nav-sidebar-column.active { - left: 0; - box-shadow: 2px 0px 4px rgba(0, 0, 0, 0.1); - } - .nav-sidebar-column-toggle.toggled-class { - left: 20.42857143em; - } - .nav-container.nav-container--sidebar + .main-container { - width: 100%; - float: none; - } -} -.nav-container.nav-container--right .nav-sidebar-column { - right: 0; - left: auto; -} -.nav-container.nav-container--right + .main-container { - float: left; -} -.nav-container.nav-container--right .nav-sidebar-column-toggle { - left: auto; - right: 0; - border-radius: 0 0 0 6px; - box-shadow: -2px 1px 4px rgba(0, 0, 0, 0.1); -} -@media all and (max-width: 990px) { - .nav-container.nav-container--right .nav-sidebar-column { - right: -20.42857143em; - left: auto; - } - .nav-container.nav-container--right .nav-sidebar-column.active { - left: auto; - right: 0; - box-shadow: -2px 0px 4px rgba(0, 0, 0, 0.1); - } - .nav-container.nav-container--right .nav-sidebar-column-toggle.toggled-class { - left: auto; - right: 20.42857143em; - } -} -/*! -- Stack Nav Fullscreen -- */ -.menu-fullscreen { - color: #fff; -} -.menu-fullscreen .pos-absolute { - width: 100%; -} -.menu-fullscreen a { - color: #fff; -} -.menu-fullscreen a:hover { - text-decoration: none; -} -.menu-fullscreen .social-list { - margin-right: 0; -} -.menu-fullscreen:before { - background: rgba(0, 0, 0, 0.9); -} -.menu-fullscreen .modal-content .modal-close-cross { - right: 3.71428571em; - top: 1em; -} -@media all and (max-width: 767px) { - .menu-fullscreen .pos-bottom { - position: relative; - } -} -/*! -- Stack Dropdowns -- */ -.dropdown > .dropdown__trigger:after { - font-family: "stack-interface"; - display: inline-block; - font-size: 8px; - position: relative; - bottom: 2px; -} -.dropdown > .dropdown__trigger .image--xxs { - margin-right: 0.46428571em; -} -.dropdown .dropdown__content { - border-radius: 6px; - box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.08); - -webkit-box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.08); - padding: 1.23809524em 1.85714286em; -} -.dropdown .dropdown__content h5:not(:last-child) { - margin-bottom: 0.92857143em; -} -.dropdown .dropdown__content .background-image-holder { - border-radius: 6px 0 0 6px; -} -.dropdown .dropdown__content > .pos-absolute[class*='col-'] { - left: 0; - top: 0; - height: 100%; - position: absolute !important; -} -.dropdown .dropdown__content > .pos-absolute[class*='col-'][data-overlay]:before { - border-radius: 6px 0 0 6px; -} -.menu-horizontal > .dropdown > .dropdown__trigger:after { - content: '\e80a'; - margin-left: 4px; -} -.menu-vertical > .dropdown > .dropdown__trigger { - display: inline-block; - width: 100%; -} -@media all and (max-width: 767px) { - .dropdown [class*='col-'] + [class*='col-'] { - margin-top: 0.92857143em; - } - .dropdown .dropdown__content:not([class*='bg-']) { - border: none; - box-shadow: none; - } -} -@media all and (max-width: 767px) { - .dropdown__container { - left: 0 !important; - } -} -.menu-vertical li { - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; -} -.menu-vertical li:not(:hover):not(.dropdown--active) { - opacity: .75; -} -.menu-vertical li:not(:last-child) { - margin-bottom: 0.30952381em; -} -.menu-vertical li.dropdown { - position: relative; -} -.menu-vertical li.dropdown:after { - content: '\e80c'; - font-family: 'stack-interface'; - right: 0; - top: 0; - position: absolute; - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; - display: inline-block; - transform: translate3d(-10px, 0, 0); - -webkit-transform: translate3d(-10px, 0, 0); -} -.menu-vertical li.dropdown:hover:after { - transform: translate3d(-5px, 0, 0); - -webkit-transform: translate3d(-5px, 0, 0); -} -.menu-vertical li.separate { - border-top: 1px solid #e6e6e6; - margin-top: 0.92857143em; - padding-top: 0.92857143em; -} -.menu-vertical li.separate.dropdown:after { - top: .92857143em; -} -.menu-vertical + h5 { - margin-top: 1.85714286em; -} -@media all and (max-width: 990px) { - .menu-vertical .dropdown.dropdown--active:after { - opacity: 0; - } -} -@media all and (min-width: 991px) { - .dropdown .dropdown__container:before { - height: 18px; - } -} -/*! -- Stack Twitter Feeds -- */ -.tweets-feed .interact { - display: none; -} -.tweets-feed .user a:hover { - text-decoration: none; -} -.tweets-feed .user img { - border-radius: 50%; -} -.tweets-feed-1 { - border-radius: 6px; - border: 1px solid #ececec; - overflow: hidden; -} -.tweets-feed-1 li { - overflow: hidden; - padding: 1.85714286em; - padding-bottom: 0; -} -.tweets-feed-1 li:not(:last-child) { - border-bottom: 1px solid #ececec; -} -.tweets-feed-1 .user { - width: 20%; - float: left; - margin-bottom: 0.92857143em; -} -.tweets-feed-1 .user img { - max-height: 3.71428571em; - margin-right: 0.46428571em; -} -.tweets-feed-1 .user [data-scribe="element:name"], -.tweets-feed-1 .user [data-scribe="element:screen_name"] { - display: none; -} -.tweets-feed-1 .tweet, -.tweets-feed-1 .timePosted { - width: 80%; - float: right; -} -.tweets-feed-1 .tweet { - margin-bottom: 0.46428571em; -} -.tweets-feed-1 .timePosted { - font-size: 0.85714286em; - line-height: 2.16666667em; -} -.tweets-feed-1:not(:last-child) + .btn { - margin-top: 2.78571429em; -} -.imagebg .tweets-feed-1, -.bg--dark .tweets-feed-1 { - border-color: rgba(255, 255, 255, 0.1); -} -.imagebg .tweets-feed-1 li:not(:last-child), -.bg--dark .tweets-feed-1 li:not(:last-child) { - border-color: rgba(255, 255, 255, 0.1); -} -.tweets-feed-2 .user { - display: none; -} -.tweets-feed-2 .timePosted { - display: none; -} -.tweets-feed-2 li { - overflow: hidden; -} -.tweets-feed-2 li:before { - font-family: 'socicon'; - content: "\e08d"; -} -.tweets-feed-2 li .tweet { - width: 85%; - float: right; -} -.tweets-feed.slider .user img { - display: inline-block; - clear: both; - margin-bottom: 0.92857143em; -} -.tweets-feed.slider .user [data-scribe="element:name"] { - display: none; -} -.tweets-feed.slider .user [data-scribe="element:screen_name"] { - display: block; - font-size: 1.35714286em; - line-height: 1.36842105em; - font-weight: normal; -} -.tweets-feed.slider .tweet { - margin-top: 1.36842105263158em; - margin-bottom: 0.68421052631579em; - font-size: 1.35714286em; - line-height: 1.36842105em; -} -.tweets-feed.slider .timePosted { - margin: 0; -} -.tweets-feed.slider:not(:last-child) + .btn { - margin-top: 2.78571429em; -} -/*! -- Stack Instagram -- */ -.instafeed a { - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; -} -.instafeed a:hover { - opacity: .75; -} -.instafeed:not(.instafeed--gapless) li { - padding: 0.46428571em; -} -.instafeed.instafeed--gapless li { - margin-bottom: -1px; -} -.instafeed + .btn { - margin-top: 2.78571429em; -} -.instafeed[data-grid="1"][data-amount="8"] li { - display: inline-block; - width: 12.5%; -} -.instagram { - position: relative; -} -.instagram.unpad .btn { - position: absolute; - z-index: 2; - top: 50%; - transform: translate3d(-50%, -50%, 0); - -webkit-transform: translate3d(-50%, -50%, 0); - margin: 0; -} -/*! -- Stack Cards -- */ -.card__top { - position: relative; - overflow: hidden; -} -.card__action a { - color: #666666; - text-decoration: none; - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; -} -.card__action a i { - color: #252525; - font-size: 1em; -} -.card__action a span { - position: relative; - bottom: 2px; -} -.card__action a:not(:hover) { - opacity: .5; -} -.card p a { - text-decoration: none; -} -.masonry__item .card.boxed { - margin-bottom: 0; -} -.card-1 .card__avatar { - margin-bottom: 0.92857143em; -} -.card-1 .card__avatar img { - max-height: 2.78571429em; - margin-right: 0.46428571em; - margin-bottom: 0; -} -.card-1 .card__avatar, -.card-1 .card__meta { - display: inline-block; -} -.card-1 .card__meta { - float: right; -} -.card-1 .card__body { - border-bottom: 1px solid #ececec; - padding-bottom: 0.92857143em; - margin-bottom: 0.92857143em; -} -.card-1 .card__body img { - margin-bottom: 0.92857143em; -} -.card-1 .card__body h4 { - margin-bottom: 0.342105263157895em; -} -.bg--dark .card-1 .card__body { - border-color: #3f3f3f; -} -@media all and (max-width: 767px) { - .card .list-inline:not(.social-list) li { - display: inline-block; - } - .card .list-inline:not(.social-list) li:not(:first-child) { - margin-left: 0.92857143em; - } -} -.card-2 .card__top img { - border-radius: 6px 6px 0 0; -} -.card-2 .card__body { - border-bottom: 1px solid #ececec; - padding-bottom: 1.85714286em; -} -.card-2 .card__body h4 { - margin: 0; -} -.card-2 .card__body p { - margin-top: 0.92857143em; -} -.card-2 .card__bottom { - overflow: hidden; -} -.card-2 .card__bottom > div { - display: inline-block; - width: 50%; - float: left; -} -.card-2 .card__bottom .h6 { - margin-bottom: 0.541666666666667em; -} -.card-2 .card__body, -.card-2 .card__bottom { - padding: 1.85714286em; - border: 1px solid #ececec; -} -.card-2 .card__body { - border-bottom: none; - border-top: none; -} -.card-2 .card__bottom { - border-radius: 0 0 6px 6px; - padding: 0.92857143em 1.85714286em; -} -.card-2 .card__action i { - font-size: 1.78571429em; -} -.bg--dark .card-2 .card__body, -.bg--dark .card-2 .card__bottom { - border-color: #3f3f3f; -} -/*! -- Stack Checkmarks & Crosses -- */ -.checkmark { - display: inline-block; - position: relative; - width: 1.23809524em; - height: 1.23809524em; - border-radius: 50%; - text-align: center; -} -.checkmark:not([class*='bg-']) { - background: #c75146; -} -.checkmark:before { - content: '\2713'; - color: #fff; - font-size: 11px; - position: absolute; - width: 100%; - left: 0; - top: -4px; -} -.checkmark.checkmark--cross:before { - content: '\2717'; -} -.checkmark:not(:last-child) { - margin-right: 13px; -} -/*! -- Stack Icons -- */ -.icon:not(.block) { - display: inline-block; -} -.icon.icon--xs { - font-size: 1.14285714285714em; -} -.text-block .icon + h4 { - margin-top: 0.6842105263158em; -} -.imagebg .icon { - color: #fff; -} -p .material-icons { - font-size: 1em; -} -p .material-icons:first-child { - margin-right: 0.30952381em; -} -.material-icons { - font-family: 'Material Icons' !important; -} -.icon-circle { - position: relative; - display: inline-block; - width: 3.71428571em; - height: 3.71428571em; - border-radius: 50%; - border: 1px solid #ececec; - background: #fafafa; - text-align: center; -} -.icon-circle i { - font-size: 24px; - position: absolute; - top: 50%; - transform: translateY(-50%); - width: 100%; - left: 0; -} -/*! -- Stack Tooltips -- */ -.tooltip { - position: relative; - top: 3px; - display: inline-block; - width: 1.23809524em; - height: 1.23809524em; - border-radius: 50%; - background: #252525; - text-align: center; - cursor: pointer; -} -.tooltip .tooltip__anchor { - color: #fff; - font-weight: 700; - font-size: 11px; - position: absolute; - top: -5px; - left: 6px; -} -.tooltip .tooltip__text { - transition: 0.2s ease; - -webkit-transition: 0.2s ease; - -moz-transition: 0.2s ease; - text-align: left; - z-index: 10; - position: absolute; - width: 280px; - background: #fafafa; - border: 1px solid #ececec; - padding: 0.61904762em; - left: 1.48571429em; - top: -0.92857143em; - opacity: 0; - pointer-events: none; - cursor: default; - box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); - box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.04); - line-height: 20px; -} -.tooltip:hover .tooltip__text { - opacity: 1; -} -.tooltip:last-child { - margin-left: 0.92857143em; -} -[data-tooltip] { - position: relative; - overflow: visible; -} -[data-tooltip]:after { - transition: all .2s ease; - content: attr(data-tooltip); - position: absolute; - top: -24px; - left: 50%; - transform: translateX(-50%); - background: #252525; - color: #fff; - border: 1px solid #e7e7e7; - padding: 2px 12px; - pointer-events: none; - white-space: nowrap; - font-size: 11px; - line-height: 18px; - font-weight: 600; - border-radius: 2px; - z-index: 2; - font-family: 'Open Sans'; -} -[data-tooltip]:not(:hover):after { - opacity: 0; -} -/*! -- Stack Boxes -- */ -.boxed { - border-radius: 6px; -} -.boxed .background-image-holder { - border-radius: 6px; -} -.boxed:before { - border-radius: 6px; -} -.boxed:not(:last-child) { - margin-bottom: 30px; -} -.boxed:not([class*='bg-']) { - background: #ffffff; -} -.boxed.bg--secondary .boxed { - background: #fafafa; -} -@media all and (min-width: 768px) { - .switchable .imagebg .boxed { - padding-left: 5.57142857em; - } -} -.bg--dark .boxed:not([class*='bg-']), -.imagebg:not(.image--light) .boxed:not([class*='bg-']) { - background: none; - color: #fff; -} -.bg--dark .boxed:not([class*='bg-']).boxed--border, -.imagebg:not(.image--light) .boxed:not([class*='bg-']).boxed--border { - border-color: #3f3f3f; -} -.bg--dark .boxed[class*='bg-'].boxed--border, -.imagebg:not(.image--light) .boxed[class*='bg-'].boxed--border { - border: none; -} -.imagebg:not(.image--light) .boxed:not(.bg--white):not(.bg--none) { - background: rgba(20, 20, 20, 0.3); -} -.imagebg:not(.image--light) .boxed:not(.bg--white):not(.bg--none).boxed--border { - border: none; -} -.imagebg:not(.image--light) .boxed:not(.bg--white):not(.bg--none) .boxed { - background: none; -} -.bg--primary .boxed:not(.imagebg) { - color: #666666; -} -.bg--primary .boxed:not(.imagebg) p { - color: #666666; -} -.bg--primary .boxed:not(.imagebg) h1, -.bg--primary .boxed:not(.imagebg) h2, -.bg--primary .boxed:not(.imagebg) h3, -.bg--primary .boxed:not(.imagebg) h4, -.bg--primary .boxed:not(.imagebg) h5, -.bg--primary .boxed:not(.imagebg) h6, -.bg--primary .boxed:not(.imagebg) .h1, -.bg--primary .boxed:not(.imagebg) .h2, -.bg--primary .boxed:not(.imagebg) .h3, -.bg--primary .boxed:not(.imagebg) .h4, -.bg--primary .boxed:not(.imagebg) .h5, -.bg--primary .boxed:not(.imagebg) .h6, -.bg--primary .boxed:not(.imagebg) i { - color: #252525; -} -.bg--primary .boxed:not(.imagebg) a { - color: #c75146; -} -.bg--primary .boxed:not(.imagebg) .color--primary { - color: #c75146 !important; -} -@media all and (min-width: 768px) { - .boxed.boxed--emphasis { - transform: scale(1.075); - -webkit-transform: scale(1.075); - } -} -/*! -- Stack Features Small -- */ -.feature:not(.boxed) { - margin-bottom: 60px; -} -.feature.feature--featured:after { - content: ''; - position: absolute; - bottom: 0; - width: 100%; - height: 4px; - background: #c75146; - left: 0; -} -.feature h5 { - margin: 0; -} -.feature h4 { - margin-bottom: 0.342105263157895em; -} -.feature h4 + p { - max-width: 22.28571429em; -} -.feature i + h5 { - margin-top: 1.85714286em; -} -.feature i + h4 { - margin-top: 0.68421052631579em; -} -.feature i.icon--lg + h4 { - margin-top: 1.36842105263158em; -} -.feature i.icon--lg + .h5 { - margin-top: 0.92857143em; -} -.feature img + .boxed { - border-radius: 0 0 6px 6px; - border-top: none; -} -.imagebg:not(.image--light) .feature.bg--white a:not(.btn) { - color: #c75146; -} -.imagebg:not(.image--light) .feature.bg--white .label { - color: #fff; -} -@media all and (max-width: 767px) { - .feature .feature__body form .row { - margin-left: 0; - margin-right: 0; - } -} -section.text-center .feature-6 h4 + p { - margin: 0 auto; -} -@media all and (min-width: 768px) { - .row div[class*='col-']:nth-child(1):nth-last-child(3) .feature, - .row div[class*='col-']:nth-child(2):nth-last-child(2) .feature, - .row div[class*='col-']:nth-child(3):last-child .feature { - margin-bottom: 0; - } -} -a.block > .feature { - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; -} -a.block:hover > .feature { - box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); - box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.04); -} -.feature-1 { - min-height: 11.14285714em; -} -.feature-1 p { - margin: 0; -} -.feature-1 p.lead { - min-height: 5.05263157894737em; -} -.feature-1 > img:first-child { - border-radius: 6px 6px 0 0; -} -.feature-1 > a.block img { - border-radius: 6px 6px 0 0; -} -.feature-1 > a.block + .feature__body { - border-radius: 0 0 6px 6px; -} -.feature-1[class*='box-shadow'] { - border-radius: 6px; - transition: 0.35s ease-out; - -webkit-transition: 0.35s ease-out; - -moz-transition: 0.35s ease-out; -} -.feature-1[class*='box-shadow']:hover { - transform: translate3d(0, -10px, 0); - -webkit-transform: translate3d(0, -10px, 0); - box-shadow: 0 23px 40px rgba(0, 0, 0, 0.2); -} -.hover-shadow { - border-radius: 6px; - backface-visibility: hidden; - overflow: hidden; - border: 1px solid #ececec; - transition: 0.35s ease-out; - -webkit-transition: 0.35s ease-out; - -moz-transition: 0.35s ease-out; -} -.hover-shadow:hover { - transform: translate3d(0, -10px, 0); - -webkit-transform: translate3d(0, -10px, 0); - box-shadow: 0 23px 40px rgba(0, 0, 0, 0.2); -} -.bg--dark .hover-shadow { - border-color: #222; -} -.bg--dark .hover-shadow:hover { - box-shadow: 0 23px 40px #000000; -} -.feature-2 { - overflow: hidden; -} -.feature-2 .feature__body { - width: 75%; - float: right; -} -.feature-2 h5 { - margin-bottom: 0.46428571em; -} -.feature-2 p:last-child { - margin: 0; -} -.feature-2 i { - width: 25%; - float: left; -} -.feature-large .feature-2 + .feature-2:last-child { - margin-bottom: 0; -} -@media all and (max-width: 990px) { - .feature-2 .feature__body, - .feature-2 i { - width: 100%; - float: none; - } - .feature-2 p:first-of-type { - margin-top: 0.92857143em; - } -} -.feature-3 i { - margin-bottom: 0.16666666666667em; -} -.feature-3 p { - min-height: 7.42857143em; -} -.feature-4 .btn { - position: absolute; - width: 100%; - bottom: 0; - left: 0; - border-radius: 0; - padding: 0.92857143em; -} -.feature-4 .btn:hover { - transform: none; -} -.feature-4 p { - min-height: 9.28571429em; -} -.feature-4 p:last-of-type { - margin-bottom: 3.71428571em; -} -.feature-5 i { - width: 25%; - float: left; -} -.feature-5 .feature__body { - width: 75%; - float: right; -} -.feature-5 p { - min-height: 5.57142857em; -} -.feature-5 p:last-of-type { - margin-bottom: 0.92857143em; -} -.feature-5:not([class*='bg-']) { - color: #252525; -} -.feature-6 p { - min-height: 9.28571429em; -} -.feature-6 p:last-child { - margin: 0; -} -.feature-7 { - height: 13em; - margin-bottom: 30px; -} -.feature-7[data-overlay]:before { - border-radius: 6px; - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; -} -.feature-7[data-overlay]:hover:before { - opacity: .75; -} -.feature-7 .background-image-holder { - border-radius: 6px; -} -.feature-7 h3 { - margin: 0; -} -.row--gapless .feature-7 { - margin: 0; - border-radius: 0; -} -.row--gapless .feature-7 .background-image-holder { - border-radius: 0; -} -.row--gapless .feature-7:before { - border-radius: 0; -} -@media all and (max-width: 767px) { - .feature-7 .pos-vertical-center { - top: 50%; - transform: translate3d(0, -50%, 0); - -webkit-transform: translate3d(0, -50%, 0); - } -} -.feature-8 { - padding: 2.78571429em 0 3.71428571em 0; -} -.feature-8:not(.boxed) { - margin-bottom: 0; -} -.feature-8 .feature__body { - max-width: 70%; - margin: 0 auto; -} -.feature-8 p { - min-height: 5.57142857em; -} -@media all and (max-width: 990px) { - .feature-8 .feature__body { - max-width: 85%; - } -} -@media all and (max-width: 767px) { - .feature p { - min-height: auto; - margin-left: auto; - margin-right: auto; - } - .feature.boxed { - margin-bottom: 15px; - } - .feature:not(.boxed) { - margin-bottom: 30px; - } - .feature.feature-8 { - margin-bottom: 0; - } -} -.feature-8 img { - max-height: 14.85714286em; -} -.feature-9 h4 { - margin: 0; -} -.feature-9:not(.boxed) { - margin-bottom: 30px; -} -@media all and (min-width: 768px) { - .features-small-14 .text-block { - margin-bottom: 3.71428571em; - } - .features-small-14 h4 { - min-height: 2.736842105263158em; - } -} -/*! -- Stack Features Large -- */ -@media all and (min-width: 768px) { - .staggered div[class*='col-']:nth-child(2):last-child { - margin-top: 13em; - } - .staggered div[class*='col-']:nth-child(2):last-child:not(:last-child) { - margin-bottom: 9.28571429em; - } - .staggered div[class*='col-'] .feature:not(:last-child) { - margin-bottom: 9.28571429em; - } -} -.feature-large h4:first-child { - margin-bottom: 0.68421052631579em; -} -.feature-large .feature:not(.boxed) { - margin-bottom: 30px; -} -.feature-large .feature-3.text-center p { - margin: 0 auto; -} -.feature-large .lead + .feature-large__group { - margin-top: 3.71428571em; -} -.feature-large .feature-large__group { - overflow: hidden; -} -.feature-large-1 .lead { - margin-bottom: 2.73684210526316em; -} -@media all and (min-width: 768px) { - .feature-large-2 div[class*='col-']:first-child { - margin-top: 5.57142857em; - } - .feature-large-2 div[class*='col-']:last-child { - margin-top: 7.42857143em; - } -} -@media all and (max-width: 767px) { - .feature-large-2 img { - margin: 1.85714286em 0; - } -} -.feature-large-7.switchable .boxed div[class*='col-']:only-child { - float: none; -} -.feature-large-13 p.lead + .text-block { - margin-top: 3.71428571em; -} -.feature-large-13 div[class*='col-'] .text-block + .text-block { - margin-top: 2.78571429em; -} -@media all and (min-width: 1200px) { - .feature-large-13:not(.text-center) .text-block p { - max-width: 26em; - } -} -.feature-large-14 h5 { - margin-bottom: 0.46428571em; -} -.feature-large-14 .boxed { - margin-bottom: 0; -} -.feature-large-14 .boxed.boxed--border img { - border-radius: 6px; -} -@media all and (min-width: 768px) { - .feature-large-14.switchable .switchable__text { - margin-top: 5.57142857em; - } -} -/*! -- Stack Accordions -- */ -.accordion .accordion__title { - transition: 0.5s ease; - -webkit-transition: 0.5s ease; - -moz-transition: 0.5s ease; - opacity: .5; - margin-bottom: 0.92857143em; -} -.accordion .accordion__title:hover { - opacity: 1; -} -.accordion .accordion__title:before { - font-family: "stack-interface"; - content: '\e80d'; - margin-right: 6px; - color: #252525; -} -.accordion .accordion__title span { - display: inline-block; -} -.accordion li.active { - margin-bottom: 0.92857143em; -} -.accordion li.active .accordion__title { - opacity: 1; -} -.accordion li.active .accordion__title:before { - content: '\e80a'; -} -.accordion li.active .accordion__content { - animation: fadeUp .5s ease forwards; - -webkit-animation: fadeUp .5s ease forwards; -} -.accordion-1 li.active .accordion__title { - border-color: #c75146; -} -.accordion-1 li.active .accordion__title span { - color: #fff; -} -.accordion-1 li.active .accordion__title:before { - color: #fff; -} -.accordion-1 li .accordion__title { - border-radius: 6px; - border-bottom: 1px solid #ECECEC; -} -.accordion-2 li .accordion__title { - border-left: none; - border-right: none; - border-top: none; - border-bottom: 1px solid #ECECEC; - padding-left: 0; -} -.accordion-2 li.active .accordion__title { - background: none; - border-bottom: 1px solid rgba(0, 0, 0, 0); -} -.bg--dark .accordion-2 li .accordion__title, -.imagebg:not(.image--light) .accordion-2 li .accordion__title, -.bg--primary .accordion-2 li .accordion__title, -.bg--dark .accordion-1 li .accordion__title, -.imagebg:not(.image--light) .accordion-1 li .accordion__title, -.bg--primary .accordion-1 li .accordion__title { - border-color: #4b4b4b; -} -.bg--dark .accordion-2 li .accordion__title:before, -.imagebg:not(.image--light) .accordion-2 li .accordion__title:before, -.bg--primary .accordion-2 li .accordion__title:before, -.bg--dark .accordion-1 li .accordion__title:before, -.imagebg:not(.image--light) .accordion-1 li .accordion__title:before, -.bg--primary .accordion-1 li .accordion__title:before { - color: #fff; -} -.imagebg:not(.image--light) .accordion li .accordion__title, -.bg--primary .accordion li .accordion__title { - border-color: rgba(255, 255, 255, 0.3); -} -/*! -- Stack Tabs -- */ -.tabs-container.tabs--vertical { - overflow: hidden; -} -.tabs-container.tabs--vertical .tabs { - width: 25%; - float: left; -} -.tabs-container.tabs--vertical .tabs li { - display: block; -} -.tabs-container.tabs--vertical .tabs li:not(:last-child) { - border-right: none; - border-bottom: 1px solid #ECECEC; -} -.tabs-container.tabs--vertical .tabs-content { - width: 70%; - float: right; - margin-top: 0; -} -.tabs-container.tabs--vertical .tabs-content > li:not(.active) .tab__content { - animation: fadeOutUp .5s ease forwards; - -webkit-animation: fadeOutUp .5s ease forwards; -} -.tabs-container.tabs--vertical .tabs-content > li.active .tab__content { - animation: fadeInUp .5s ease forwards; - -webkit-animation: fadeInUp .5s ease forwards; - backface-visibility: hidden; -} -.tabs-container.tabs--vertical.tabs--icons .tabs { - width: 15%; - text-align: center; -} -.tabs-container.tabs--vertical.tabs--icons .tabs-content { - width: 80%; -} -@media all and (max-width: 767px) { - .tabs-container.tabs--vertical .tabs, - .tabs-container.tabs--vertical .tabs-content { - width: 100%; - float: none; - } - .tabs-container.tabs--vertical .tabs { - margin-bottom: 1.85714286em; - } - .tabs-container.tabs--vertical .tabs-content > li:not(.active) .tab__content { - animation: fadeOutRight .5s ease forwards; - -webkit-animation: fadeOutRight .5s ease forwards; - } - .tabs-container.tabs--vertical .tabs-content > li.active .tab__content { - animation: fadeInLeft .5s ease forwards; - -webkit-animation: fadeInLeft .5s ease forwards; - backface-visibility: hidden; - } -} -.tabs { - display: inline-block; - border: 1px solid #ECECEC; - border-radius: 6px; - margin-bottom: 1.85714286em; -} -.tabs li { - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; - padding: 0.92857143em 1.85714286em; -} -.tabs li:not(:last-child) { - border-right: 1px solid #ECECEC; -} -.tabs li.active { - opacity: 1; -} -.tabs li.active .tab__title { - color: #c75146; -} -.tabs li.active .tab__title span { - color: #c75146; -} -.tabs li:not(.active) { - opacity: .5; -} -.tabs li:hover { - opacity: 1; - cursor: pointer; -} -.tabs .tab__title { - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; -} -.tabs .tab__title:not(.btn) { - padding-right: 0; - padding-left: 0; -} -.tabs .tab__title i + span { - margin-top: 0.46428571em; - display: inline-block; - margin-bottom: 0; -} -.bg--primary .tabs { - border-color: #fff; -} -.bg--primary .tabs li.active .tab__title { - color: #fff; -} -.bg--primary .tabs li.active .tab__title span { - color: #fff; -} -.bg--primary .tabs li:not(:last-child) { - border-color: #fff; -} -@media all and (min-width: 768px) { - .tabs.tabs--spaced { - margin-bottom: 3.71428571em; - } -} -.tabs-content { - position: relative; -} -.tabs-content > li:not(.active) .tab__content { - position: absolute; - left: 0; - top: 0; - display: block; - opacity: 0; - pointer-events: none; - animation: fadeOutRight .5s ease forwards; - -webkit-animation: fadeOutRight .5s ease forwards; -} -.tabs-content > li.active { - animation: fadeInLeft .5s ease forwards; - -webkit-animation: fadeInLeft .5s ease forwards; - backface-visibility: hidden; -} -@media all and (max-width: 767px) { - .tabs li { - display: block; - } - .tabs li:not(:last-child) { - border-bottom: 1px solid #ECECEC; - border-right: none; - } -} -.tabs--folder .tabs { - overflow: hidden; - margin-bottom: 0; - border-radius: 6px 6px 0 0; - border-bottom: none; -} -.tabs--folder .tabs > li { - border-top: 3px solid rgba(0, 0, 0, 0); -} -.tabs--folder .tabs > li.active { - border-top: 3px solid #c75146; -} -.tabs--folder .tabs-content { - overflow: hidden; - position: relative; - bottom: 8px; - padding: 1.85714286em; - border: 1px solid #ECECEC; - border-radius: 0 0 6px 6px; -} -.tabs--folder .tabs-content > li:not(.active) .tab__content { - top: 1.85714286em; - left: 1.85714286em; -} -.tabs--folder .tab__title .h5 { - margin: 0; - display: inline-block; -} -.tabs--folder .tab__title .label { - position: relative; - color: #fff !important; - top: -2px; - right: 0; - margin-left: 0.46428571em; - min-width: 0; -} -/*! -- Stack Switchable Sections -- */ -.switchable .switchable__text { - margin-top: 1.85714286em; -} -.switchable [class*='col-']:first-child .switchable__text { - margin-bottom: 2.78571429em; -} -.section--overlap .row { - position: relative; - margin-top: -13em; -} -@media all and (max-width: 990px) { - .switchable .switchable__text { - margin-top: 0; - } -} -@media all and (max-width: 767px) { - .switchable .switchable__text { - margin-top: 1.85714286em; - } - .switchable .imageblock__content[class*='col-'] { - float: none !important; - } - .switchable .row > div[class*='col-'] { - float: none !important; - } - .switchable .row > div[class*='col-']:last-child:not(:only-child) { - margin-top: 1.85714286em; - } -} -/*! -- Stack CTA -- */ -.cta .btn:first-child:not(:last-child) { - margin-bottom: 1.85714286em; -} -.cta.boxed:last-child { - margin-bottom: 0; -} -@media all and (min-width: 768px) { - .cta--horizontal h4, - .cta--horizontal .lead, - .cta--horizontal .btn { - margin: 0; - } - .cta--horizontal h4, - .cta--horizontal .lead { - position: relative; - top: 4px; - } - .bg--dark .cta-1 > div[class*='col-']:last-child, - .imagebg .cta-1 > div[class*='col-']:last-child { - border-left: none; - } -} -@media all and (min-width: 1200px) { - .cta-1.boxed--border { - padding: 0; - } - .cta-1 > div[class*='col-'] { - padding: 1.23809524em 15px; - } - .cta-1 > div[class*='col-']:last-child { - border-left: 1px solid #ECECEC; - } -} -@media all and (max-width: 990px) { - .cta-1 { - text-align: center; - } - .cta-1 > div[class*='col-'] { - padding-left: 0; - padding-right: 0; - } - .cta-1 > div[class*='col-']:not(:last-child) { - margin-bottom: 0.92857143em; - } - .cta-1 > div[class*='col-']:last-child { - margin-top: 1.85714286em; - } -} -@media all and (max-width: 767px) { - .cta .lead { - margin: 1.36842105263158em 0; - } -} -.cta-2 { - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; -} -.cta-2 h2 { - margin: 1.57575757575758em 0; -} -.cta-2.bg--primary:hover { - background: #cb5c52; -} -.cta-2:hover { - background: #ffffff; -} -@media all and (min-width: 768px) { - .cta-3 .switchable__text { - margin-top: 5.57142857em; - } -} -/*! -- Stack Videos -- */ -.video-play-icon:before { - border-color: transparent transparent transparent #252525; - margin-top: -3px; -} -.modal-instance .video-play-icon + span { - position: relative; - display: inline-block; - margin-left: 0.92857143em; - white-space: nowrap; - bottom: 22px; -} -.modal-instance .video-play-icon.video-play-icon--xs + span { - bottom: 8px; - margin-left: 0.46428571em; -} -.video-cover { - background: #252525; -} -.video-cover.border--round { - overflow: hidden; -} -.video-cover.border--round iframe { - border-radius: 6px; -} -.video-cover:not(:last-child) { - margin-bottom: 1.85714286em; -} -.video-cover + span.h4 + span { - display: inline-block; - margin-left: 0.92857143em; -} -.video-cover .video-play-icon { - transition: 0.2s ease-out; - -webkit-transition: 0.2s ease-out; - -moz-transition: 0.2s ease-out; -} -.video-cover .video-play-icon:hover { - box-shadow: 0 23px 40px rgba(0, 0, 0, 0.2); - transform: translate3d(-50%, -52%, 0); - -webkit-transform: translate3d(-50%, -52%, 0); -} -.imagebg .video-cover .video-play-icon { - z-index: 10; -} -@media all and (min-width: 768px) { - h2 + .video-cover { - margin-top: 3.71428571em; - } -} -@media all and (min-width: 768px) { - .video-1 .video-play-icon { - margin-right: 1.85714286em; - } - .video-1 h2 { - display: inline-block; - position: relative; - bottom: 14px; - } - div[class*='col-sm-6'] .video-1 h2 { - bottom: 0; - display: block; - } - div[class*='col-sm-6'] .video-1 .video-play-icon { - margin-bottom: 0.46428571em; - } -} -.video-1 h2 { - margin: 0; -} -.imageblock__content .modal-instance { - position: absolute; - top: 50%; - left: 50%; - transform: translate3d(-50%, -50%, 0); - -webkit-transform: translate3d(-50%, -50%, 0); -} -/*! -- Stack Modals -- */ -.modal-container .modal-content:not(.height--natural) { - height: auto; - width: auto; -} -.modal-instance:not(.block) { - display: inline-block; -} -.modal-instance.block > .btn { - display: block; -} -@media all and (min-width: 768px) { - .modal-instance + span:last-child { - display: inline-block; - margin-left: 0.92857143em; - } -} -.modal-container .modal-content { - max-height: 95%; - transform: translateX(-50%) translateY(-50%); - -webkit-transform: translateX(-50%) translateY(-50%); -} -.modal-container .modal-content .feature:only-child { - margin-bottom: 0; -} -.modal-container .modal-content .feature:only-child .boxed { - margin-bottom: 0; -} -.modal-container .modal-content .imagebg:not(.image--light) .modal-close-cross:before { - color: #fff; -} -@media all and (max-width: 767px) { - .modal-container .modal-content > .modal-close-cross { - top: 3em; - background: #222; - width: 2em; - height: 2em; - text-align: center; - border-radius: 50%; - color: #fff; - } -} -.modal-content { - -ms-overflow-style: none; -} -.modal-content::-webkit-scrollbar { - display: none; -} -/*! -- Stack Notifications -- */ -.notification { - margin: 1.85714286em; - box-shadow: none; -} -.notification:not([class*='bg--']) { - background: none; -} -.notification > .boxed { - margin: 0; -} -.notification > .feature, -.notification .feature__body { - margin-bottom: 0; -} -.search-box { - width: 100%; - margin: 0; - padding: 1.85714286em; - box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); - box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.04); -} -.search-box.notification--reveal { - z-index: 9999; -} -.search-box .notification-close-cross { - top: 2.32142857em; - right: 1.85714286em; -} -.notification-close-cross.notification-close-cross--circle { - background: #222; - width: 2em; - height: 2em; - text-align: center; - border-radius: 50%; - color: #fff; -} -/*! -- Stack Loader -- */ -.loader { - border: 3px solid #c75146; - border-radius: 30px; - height: 30px; - left: 50%; - margin: -15px 0 0 -15px; - opacity: 0; - position: fixed; - z-index: 10; - top: 50%; - width: 30px; - animation: pulsate 0.7s ease-out infinite; -} -.loader.loader--fade { - opacity: 0; - animation: none; -} -@keyframes pulsate { - 0% { - transform: scale(0.1); - opacity: 0.0; - } - 50% { - opacity: 1; - } - 100% { - transform: scale(1.2); - opacity: 0; - } -} -/*! -- Stack Lightboxes -- */ -.lb-close { - position: relative; - top: 10px; -} -.lb-close:before { - content: '\00D7'; - color: #fff; - font-size: 2.5em; - font-weight: 400; -} -.lb-close:hover { - text-decoration: none; -} -.lb-prev:after, -.lb-next:after { - font-family: 'stack-interface'; - position: fixed; -} -.lb-prev:after { - content: '\e801'; - left: 1.85714286em; -} -.lb-next:after { - content: '\e802'; - right: 1.85714286em; -} -.lb-data { - overflow: hidden; - min-height: 30px; -} -a[data-lightbox] { - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; -} -a[data-lightbox]:hover { - opacity: .8; - cursor: zoom-in; -} -/*! -- Stack Covers -- */ -.cover .typed-headline { - margin-bottom: 3.71428571em; -} -.cover .typed-headline .type--bold { - font-weight: 400; -} -.cover .triptych { - margin-top: 3.71428571em; -} -.cover .btn + .modal-instance { - margin-top: 1.85714286em; -} -.cover h3 + form, -.cover .h3 + form { - margin-top: 2.78571429em; -} -.cover .lead + .boxed { - margin-top: 3.71428571em; -} -.cover.unpad--bottom { - overflow: hidden; -} -.cover .modal-instance.block:not(:first-child):not(:last-child) { - margin: 2.78571429em 0; -} -.cover .pos-bottom { - margin-bottom: 1.85714286em; -} -@media all and (min-width: 768px) { - .cover .row .row:last-child { - margin-top: 5.57142857em; - } -} -@media all and (max-width: 767px) { - .cover .pos-bottom.pos-absolute { - position: relative; - margin-top: 1.85714286em; - } -} -@media all and (max-width: 990px) { - .cover .mt--3 { - margin-top: 0; - } -} -@media all and (min-width: 768px) { - .cover .triptych { - margin-top: 7.42857143em; - } -} -.cover-fullscreen { - min-height: 100vh; -} -.cover-fullscreen.slider[data-paging="true"] .slides .flickity-slider > li { - height: 100vh; -} -.cover-fullscreen.slider[data-paging="true"] .pos-bottom { - bottom: 5.57142857em; - width: 100%; -} -.cover-fullscreen.slider[data-paging="true"] h4 { - margin: 0; -} -.cover-slider { - overflow: hidden; -} -.cover-slider .slider { - position: relative; - width: 100%; - pointer-events: none; -} -.cover-slider .slider:nth-child(1) { - transform: translateY(-30%); -} -.cover-slider .slider:nth-child(2) { - transform: translateY(-25%); -} -.cover-slider .slider:nth-child(3) { - transform: translateY(-20%); -} -.cover-slider .slider .slide { - opacity: .05; -} -.cover-slider .typed-headline { - margin: 0; -} -.cover-slider .typed-headline + .btn { - margin-top: 0.92857143em; -} -.cover-slider .slider-container { - transform: rotateZ(-30deg) translateY(-10%); - -webkit-transform: rotateZ(-30deg) translateY(-10%); - position: absolute; - width: 100%; - height: 100%; - top: 0; -} -@media all and (min-width: 768px) { - .cover-slider + .cta-4 { - position: absolute; - background: none; - color: #fff; - border-bottom: none !important; - width: 100%; - transform: translate3d(0, -100%, 0); - -webkit-transform: translate3d(0, -100%, 0); - } - .cover-slider + .cta-4 a { - color: #fff; - font-weight: 600; - } -} -.cover-features.space--lg { - padding-bottom: 3.71428571em; -} -.cover-features .row:nth-child(2) { - margin-top: 11.14285714em; -} -@media all and (max-width: 767px) { - .cover-features.space--lg { - padding-bottom: 1.85714286em; - } - .cover-features .row:nth-child(2) { - margin-top: 3.71428571em; - } -} -/*! -- Stack Processes -- */ -.process-1 { - padding: 3.71428571em 0; - position: relative; - overflow: hidden; -} -.process-1 .process__item { - width: 50%; -} -.process-1 .process__item:not(:last-child) { - margin-bottom: 1.85714286em; -} -.process-1:before { - content: ''; - position: absolute; - width: 2px; - height: 100%; - left: 50%; - top: 0; - background: #c75146; -} -.process__item { - position: relative; -} -.process__item:after { - content: ''; - width: 1.85714286em; - height: 1.85714286em; - background: #fff; - border: 2px solid #c75146; - border-radius: 50%; - position: absolute; - top: 0; - margin-left: 1px; -} -@media all and (min-width: 768px) { - .process-1 .process__item:nth-child(odd) { - text-align: right; - padding-right: 3.71428571em; - } - .process-1 .process__item:nth-child(odd):after { - right: -0.92857143em; - } - .process-1 .process__item:nth-child(even) { - margin-left: 50%; - padding-left: 3.71428571em; - } - .process-1 .process__item:nth-child(even):after { - left: -0.92857143em; - } -} -@media all and (max-width: 767px) { - .process-1:before, - .process-2:before { - left: 0.92857143em; - } - .process-1 .process__item, - .process-2 .process__item { - width: 100%; - padding-left: 3.71428571em; - } - .process-1 .process__item:after, - .process-2 .process__item:after { - left: 0; - } -} -.bg--dark .process-1:before, -.imagebg .process-1:before, -.bg--dark .process-2:before, -.imagebg .process-2:before { - background: #fff; -} -.bg--dark .process-1 .process__item:after, -.imagebg .process-1 .process__item:after, -.bg--dark .process-2 .process__item:after, -.imagebg .process-2 .process__item:after { - background: #fff; -} -.bg--dark .process-1 .process__item:after, -.bg--dark .process-2 .process__item:after { - border-color: #252525; -} -.process-2 { - position: relative; -} -.process-2 .process__item { - padding-top: 3.71428571em; -} -.process-2 .process__item:after { - display: inline-block; - text-align: center; -} -.process-2:before { - content: ''; - position: absolute; - width: 100%; - height: 2px; - top: 0.92857143em; - left: 0; - background: #c75146; -} -@media all and (max-width: 767px) { - .process-2:before { - height: 100%; - width: 2px; - left: 1.85714286em; - margin-left: 2px; - } - .process-2 .process__item:after { - top: 3.71428571em; - } -} -.process-3 { - list-style: none; - position: relative; -} -.process-3 li { - position: relative; - z-index: 1; - overflow: hidden; -} -.process-3 li .process__number { - float: left; - width: 15%; - width: 3.71428571em; - height: 3.71428571em; - border-radius: 50%; - border: 2px solid #c75146; - background: #fff; - text-align: center; -} -.process-3 li .process__number span { - font-size: 1.35714286em; - font-weight: bold; - color: #c75146; - position: relative; - top: 12px; -} -.process-3 li .process__body { - width: 80%; - float: right; -} -.process-3 li .process__body h4 { - margin-bottom: 0.342105263157895em; -} -.process-3 li:not(:last-child) { - margin-bottom: 3.71428571em; -} -.process-3:before { - content: ''; - position: absolute; - height: 100%; - width: 1px; - left: 1.85714286em; - top: 0; - border-left: 1px dashed #ddd; -} -.bg--dark .process-3 li .process__number { - background: #252525; -} -.bg--dark .process-3:before { - border-color: #aaa; -} -.process-stepper > li { - transition: all .3s ease; - display: inline-block; - float: left; - text-align: center; - position: relative; -} -.process-stepper > li:before { - transition: all .3s ease; - content: ''; - width: 0.92857143em; - height: 0.92857143em; - background: #ccc; - border-radius: 50%; - display: block; - margin: 0 auto; - margin-bottom: 0.92857143em; -} -.process-stepper > li:after { - transition: all .3s ease; - content: ''; - width: 100%; - height: 2px; - position: absolute; - background: #ccc; - top: 5px; - left: 0; -} -.process-stepper > li:first-child:after, -.process-stepper > li:last-child:after { - width: 50%; -} -.process-stepper > li:first-child:after { - left: 50%; -} -.process-stepper > li.active:before, -.process-stepper > li.active:after { - background: #c75146; -} -.process-stepper > li > span { - cursor: default; -} -.process-stepper[data-process-steps="6"] > li { - width: 16.666666666666667%; -} -.process-stepper[data-process-steps="5"] > li { - width: 20%; -} -.process-stepper[data-process-steps="4"] > li { - width: 25%; -} -.process-stepper[data-process-steps="3"] > li { - width: 33.33333333%; -} -.process-stepper[data-process-steps="2"] > li { - width: 50%; -} -.bg--dark .process-stepper li:not(.active):before, -.bg--dark .process-stepper li:not(.active):after { - background: #585858; -} -/*! -- Stack Typed Text -- */ -span + .typed-text.h2 { - margin-left: 4px; -} -span + .typed-text.h1 { - margin-left: 6px; -} -@media all and (max-width: 767px) { - .typed-text { - display: block; - } - .typed-headline { - margin-bottom: 1.85714286em; - } - .typed-headline h1, - .typed-headline .h1 { - margin-bottom: 0; - } -} -/*! -- Stack Forms -- */ -.bg--dark input, -.imagebg:not(.image--light) input, -.bg--dark textarea, -.imagebg:not(.image--light) textarea, -.bg--dark select, -.imagebg:not(.image--light) select, -.bg--dark .input-select:after, -.imagebg:not(.image--light) .input-select:after { - color: #666666; -} -.bg--dark label, -.imagebg:not(.image--light) label { - color: #fff; -} -.bg--dark form.attempted-submit input.field-error { - background: #D84D4D; - color: #fff; -} -form { - position: relative; -} -form > div[class*='col-']:not(:last-child), -form > .row > div[class*='col-']:not(:last-child) { - margin-bottom: 0.92857143em; -} -form .boxed:last-child { - margin: 0; -} -form.form--clearfix { - margin-left: -15px; -} -@media all and (min-width: 768px) { - div[class*='col-'] > form div[class*='col-']:last-child:nth-child(2) { - padding-right: 0; - } - div[class*='col-'] > form div[class*='col-']:first-child:nth-last-child(2) { - padding-left: 0; - } - form.form--horizontal > div[class*='col-'] { - margin: 0; - } -} -@media all and (max-width: 767px) { - .row form > .row { - margin-left: 0; - margin-right: 0; - } -} -h2 + form, -.h2 + form { - margin-top: 2.78571429em; -} -h3 + form, -.h3 + form, -.lead + form { - margin-top: 2.78571429em; -} -.cover .lead + form { - margin-top: 3.71428571em; -} -form + span.type--fine-print { - margin-top: 1.08333333333334em; - display: inline-block; -} -.form--inline > span.h4 { - color: #666666; -} -.form--inline input, -.form--inline [class*='input-'] { - display: inline-block; - max-width: 200px; -} -.form--inline > span:not(:last-child), -.form--inline input:not(:last-child), -.form--inline [class*='input-']:not(:last-child) { - margin-right: 0.92857143em; -} -.form--inline button { - max-width: 200px; -} -.bg--dark .form--inline > span.h4, -.imagebg:not(.image--light) .form--inline > span.h4 { - color: #fff; -} -button, -input[type="submit"] { - height: 3.25000000000001em; -} -button.btn, -input[type="submit"].btn { - font-size: 0.85714286em; - font-weight: 700; - padding-left: 0; - padding-right: 0; -} -button.btn.btn--primary, -input[type="submit"].btn.btn--primary { - color: #fff; -} -button.btn.type--uppercase, -input[type="submit"].btn.type--uppercase { - letter-spacing: .5px; - margin-right: -0.5px; -} -button.checkmark.checkmark--cross, -input[type="submit"].checkmark.checkmark--cross { - width: 1.85714286em; - height: 1.85714286em; - border: none; - background: #e23636; -} -button.checkmark.checkmark--cross:before, -input[type="submit"].checkmark.checkmark--cross:before { - content: '\00d7'; - font-size: 18px; - top: -1px; -} -button[type="submit"].btn--loading:after, -input[type="submit"][type="submit"].btn--loading:after { - background: #c75146; -} -.bg--primary button.btn { - border-color: rgba(255, 255, 255, 0.5); - color: #fff; -} -.bg--primary button.btn:hover { - border-color: #fff; -} -.bg--primary button.btn.btn--primary { - color: #c75146; - border-color: #c75146; -} -.bg--primary button.btn.btn--primary-1 { - border-color: #ad2e24; -} -input, -select { - height: 2.78571429em; -} -input.field-error { - border-color: #EBA8A8; -} -input[type] + input[type], -input[type] + .input-checkbox, -input[type] + button, -input[type] + .input-select { - margin-top: 0.92857143em; -} -input, -[class*='input-'] label, -select, -textarea { - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; -} -input:not([class*='col-']), -select:not([class*='col-']), -.input-select:not([class*='col-']), -textarea:not([class*='col-']), -button[type="submit"]:not([class*='col-']) { - width: 100%; -} -input[type], -select, -textarea { - padding-left: 0.92857143em; -} -input[type]:focus, -select:focus, -textarea:focus { - border-color: #d3766d; -} -input[type="image"] { - border: none; - padding: none; - width: auto; -} -label { - font-size: .85714286em; -} -.bg--primary label, -.bg--primary-1 label { - color: #fff; -} -.input-icon i { - top: 8px; - left: 8px; -} -.input-icon input { - padding-left: 2.78571429em; -} -.text-center .input-checkbox label, -.text-center .input-radio label { - margin: 0 auto; -} -.input-checkbox label, -.input-radio label { - font-size: 1em; -} -.input-checkbox { - margin-top: 0.46428571em; -} -.input-checkbox.field-error label { - border-color: #EBA8A8; -} -.input-checkbox label { - background: none; - border: 1px solid #d3d3d3; - text-align: center; - position: relative; -} -.input-checkbox label:not(:last-child) { - margin-right: 0.46428571em; -} -.input-checkbox label:hover { - border-color: #c75146; -} -.input-checkbox label:before { - content: ''; - left: 0; - border-radius: 6px; - position: absolute; - width: 100%; - height: 100%; - border: 1px solid #c75146; - opacity: 0; - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; -} -.input-checkbox input:checked + label { - border-color: #c75146; - background: #c75146; -} -.input-checkbox input:checked + label:after { - content: 'L'; - transform: rotateY(180deg) rotateZ(-45deg); - color: #fff; - position: absolute; - width: 100%; - left: 0; - top: -2px; - font-weight: 700; -} -.input-checkbox input:checked + label:before { - animation: pulse .45s ease forwards; - -webkit-animation: pulse .45s ease forwards; -} -.input-checkbox + span { - display: inline-block; - position: relative; - bottom: 10px; - margin-left: 0.92857143em; - font-size: 0.85714286em; - white-space: nowrap; -} -.input-checkbox + button[type] { - margin-top: 0.92857143em; -} -.input-checkbox + span + button[type] { - margin-top: 0.92857143em; -} -.bg--dark .input-checkbox:not(.checked) label { - border-color: #a5a5a5; -} -.bg--dark .input-checkbox + span { - opacity: .75; -} -.input-checkbox.input-checkbox--switch label { - width: 3.71428571em; - border-radius: 60px; -} -.input-checkbox.input-checkbox--switch label:before { - width: 20px; - height: 20px; - border-radius: 50%; - border-color: #d3d3d3; - opacity: 1; - left: 2px; - top: 2px; -} -.input-checkbox.input-checkbox--switch label:hover:before { - border-color: #c75146; -} -.input-checkbox.input-checkbox--switch input:checked + label { - background: none; -} -.input-checkbox.input-checkbox--switch input:checked + label:before { - animation: none !important; - background: #c75146; - border-color: #c75146; - transform: translateX(1.85714286em); -} -.input-checkbox.input-checkbox--switch input:checked + label:after { - display: none; -} -.input-radio.field-error label { - border-color: #EBA8A8; -} -.input-radio .input__label { - font-size: .85714286em; - display: inline-block; -} -.input-radio .input__label + label { - margin-top: 0.92857143em; -} -.input-radio label { - position: relative; - background: none; - border: 1px solid #d3d3d3; -} -.input-radio label:hover { - border-color: #c75146; -} -.input-radio label:before { - content: ''; - position: absolute; - width: 100%; - height: 100%; - border-radius: 50%; - border: 1px solid #c75146; - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; - opacity: 0; - left: 0; -} -.input-radio input:checked + label { - border-color: #c75146; - background-color: #c75146; -} -.input-radio input:checked + label:after { - content: ''; - position: absolute; - width: 10px; - height: 10px; - left: 7px; - top: 7px; - background-color: #fff; - border-radius: 50%; -} -.input-radio input:checked + label:before { - animation: pulse .4s ease forwards; -} -.input-radio--innerlabel label { - transition: all .3s ease; - height: 2.78571429em; - line-height: 2.50714286em; - padding: 0 0.92857143em; - border: 1px solid #ececec; - border-radius: 6px; - cursor: pointer; - width: 100%; - text-align: center; -} -.input-radio--innerlabel:hover { - border-color: #c75146; -} -.input-radio--innerlabel input:checked + label { - border-color: #c75146; - background: #c75146; - color: #fff; -} -.input-radio--innerlabel input:checked + label:after { - display: none; -} -.input-radio--innerlabel input:checked + label:before { - animation: none; -} -@media all and (max-width: 1024px) { - .input-radio input:checked + label:after { - top: 6px; - left: 6px; - } -} -.bg--primary .input-radio--innerlabel { - border-color: #d3766d; -} -.bg--primary .input-radio--innerlabel:hover { - border-color: #fff; -} -.bg--primary .input-radio--innerlabel.checked { - background: #fff; - border-color: #fff; -} -.bg--primary .input-radio--innerlabel.checked label { - color: #c75146; -} -.bg--primary-1 .input-radio--innerlabel { - border-color: #d43c30; -} -.bg--primary-1 .input-radio--innerlabel:hover { - border-color: #fff; -} -.bg--primary-1 .input-radio--innerlabel.checked { - background: #fff; - border-color: #fff; -} -.bg--primary-1 .input-radio--innerlabel.checked label { - color: #ad2e24; -} -.input-select { - position: relative; -} -.input-select select { - -moz-appearance: none; - -webkit-appearance: none; -} -.input-select select::-ms-expand { - display: none; -} -.input-select:not(:last-child) { - margin-bottom: 0.92857143em; -} -.input-select:after { - position: absolute; - right: 0; - height: 100%; - top: 0; - font-size: 30px; - content: '\2263'; - pointer-events: none; - padding: 0 13px; - border-left: 1px solid #ececec; - line-height: 31px; -} -.input-select:focus:after { - border-color: #c75146; -} -.input-select select:focus { - border-color: #c75146; -} -.input-number { - position: relative; -} -.input-number > input[type="number"] { - padding-left: .46428571em; - -moz-appearance: textfield; - width: 100%; - text-align: center; -} -.input-number > input[type="number"]::-webkit-inner-spin-button { - display: none; -} -.input-number .input-number__controls { - position: absolute; - height: 100%; - width: 100%; - right: 0; - top: 0; - padding: 0 0.92857143em; -} -.input-number .input-number__controls > span { - position: absolute; - display: block; - width: 10%; - min-width: 3.71428571em; - height: 100%; - cursor: pointer; - -webkit-user-select: none; - user-select: none; - text-align: center; - padding-top: 6px; - transition: all .3s ease; -} -.input-number .input-number__controls > span:hover { - color: #c75146; -} -.input-number .input-number__controls .input-number__increase { - right: 0; - border-left: 1px solid #ececec; -} -.input-number .input-number__controls .input-number__decrease { - left: 0; - border-right: 1px solid #ececec; -} -/*! -- Stack Subscribe Forms -- */ -.subscribe-form-1 h3 { - margin-bottom: 0.52em; -} -.subscribe-form-1.boxed form { - margin: 1.85714286em; -} -@media all and (min-width: 991px) { - .subscribe-form-2 p { - top: 2px; - position: relative; - } - .subscribe-form-2 input { - margin: 0; - } - .subscribe-form-2 form [class*='col-'] { - margin: 0 !important; - } -} -@media all and (max-width: 990px) { - .subscribe-form-2 { - text-align: center; - } - .subscribe-form-2 form { - margin-top: 1.85714286em; - } -} -/*! -- Stack Elaborate Forms -- */ -@media all and (max-width: 767px) { - .elaborate-form-1 .pos-vertical-center { - padding-left: 15px; - padding-right: 15px; - } - .elaborate-form-1 form .col-xs-6:nth-child(even) { - padding-left: 15px; - } - .elaborate-form-1 form .col-xs-6:nth-child(odd) { - padding-right: 15px; - } - .elaborate-form-1 .row form > .row { - margin-left: -15px; - margin-right: -15px; - } -} -/* Stack Boxed Forms */ -.boxed-form h4 { - margin-bottom: 0.684210526315789em; -} -.boxed-form:last-child { - margin-bottom: 0; -} -/* Stack Datepicker Form */ -.datepicker { - cursor: pointer; -} -.picker { - transition: all .3s ease; - z-index: 10; - max-width: 100%; - -webkit-transition: all .3s ease; - margin-top: 0.46428571em; - position: absolute; - background: #ffffff; - border: 1px solid #ececec; - border-radius: 6px; - padding: 0.92857143em; - box-shadow: 0 23px 40px rgba(0, 0, 0, 0.2); -} -.picker .picker__header { - text-align: center; - margin-bottom: 0.92857143em; -} -.picker .picker__header > div { - font-weight: 600; - display: inline-block; - color: #252525; -} -.picker .picker__header > div:not(:last-child) { - margin-right: 0.46428571em; -} -.picker .picker__header .picker__nav--prev, -.picker .picker__header .picker__nav--next { - height: 10px; - width: 10px; - cursor: pointer; -} -.picker .picker__header .picker__nav--prev:after, -.picker .picker__header .picker__nav--next:after { - font-family: 'stack-interface'; -} -.picker .picker__header .picker__nav--next { - float: right; -} -.picker .picker__header .picker__nav--next:after { - content: '\e80c'; -} -.picker .picker__header .picker__nav--prev { - float: left; -} -.picker .picker__header .picker__nav--prev:after { - content: '\e80b'; -} -.picker .picker__day { - transition: all .3s ease; - cursor: pointer; -} -.picker .picker__day.picker__day--highlighted { - color: #c75146; - font-weight: 600; -} -.picker .picker__day:hover { - color: #c75146; -} -.picker:not(.picker--opened) { - opacity: 0; - visibility: hidden; - pointer-events: none; - transform: scale(0); -} -.picker .picker__holder { - outline: none !important; - border: none !important; -} -.picker table td { - padding: 0.46428571em; - padding-top: 0; -} -.picker .picker__footer { - text-align: center; -} -.picker .picker__button--today { - float: left; -} -.picker .picker__button--close { - float: right; -} -.picker button { - transition: all .3s ease; - height: auto; - border: none; - display: inline-block; -} -.picker button:not(:hover) { - opacity: .5; -} -/*! -- Stack Sliders -- */ -.flickity-prev-next-button { - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; - border-radius: 0; - background: #252525; - width: 2.78571429em; - height: 5.57142857em; -} -.flickity-prev-next-button:not(:hover) { - opacity: .5; -} -.flickity-prev-next-button:hover { - background: #252525; -} -.flickity-prev-next-button.previous { - left: 0; -} -.flickity-prev-next-button.next { - right: 0; -} -.flickity-prev-next-button:before { - color: #fff; -} -.slider.slider--inline-arrows .flickity-prev-next-button { - background: none; -} -.slider.slider--inline-arrows .flickity-prev-next-button:before { - font-size: 1.78571429em; - color: #252525; - content: '\e802'; -} -.slider.slider--inline-arrows .flickity-prev-next-button.previous:before { - content: '\e801'; -} -.slider.slider--columns .previous { - left: 15px; -} -.slider.slider--columns .next { - right: 15px; -} -.slider.border--round .slides li { - border-radius: 6px; - overflow: hidden; -} -.slider.boxed--border .slides li { - border: 1px solid #ececec; -} -.slider .slides li .feature:not(.feature-9) { - margin-bottom: 0; -} -.slide .boxed:last-child { - margin-bottom: 0; -} -.slide:not([class*='col-']) > img:only-child { - width: 100%; -} -.bg--dark .slider.slider--inline-arrows .flickity-prev-next-button:before, -.bg--primary .slider.slider--inline-arrows .flickity-prev-next-button:before, -.imagebg:not(.image--light) .slider.slider--inline-arrows .flickity-prev-next-button:before { - color: #fff; -} -@media all and (max-width: 990px) { - .flickity-prev-next-button { - display: none; - } -} -@media all and (min-width: 768px) { - h2 + .slider, - .h2 + .slider { - margin-top: 3.71428571em; - } -} -.slider.slider--ken-burns:not(.parallax) .slide.is-selected > .background-image-holder, -.slider.slider--ken-burns:not(.parallax) .slide.is-selected > img:only-child { - animation: kenBurns 15s ease alternate infinite; - -webkit-animation: kenBurns 15s ease alternate infinite; -} -.radial { - margin-left: auto; - margin-right: auto; -} -.radial .radial__label { - transition: opacity .3s ease; - -webkit-transition: opacity .3s ease; -} -.radial:not(.radial--active) .radial__label { - opacity: 0; -} -.radial:not(:last-child) { - margin-bottom: 1.85714286em; -} -@media all and (max-width: 767px) { - .radial { - margin-bottom: 1.85714286em; - } -} -/*! -- Stack Pricing -- */ -.pricing { - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; - position: relative; -} -.pricing h3:first-child { - margin: 0; -} -.pricing .label { - top: 2.78571429em; - right: 2.78571429em; -} -.pricing .h2 { - margin-bottom: 0.3939393939394em; -} -.pricing ul li:not(:last-child) { - margin-bottom: 0.46428571em; -} -.pricing ul li .checkmark + span { - position: relative; - bottom: 3px; -} -.pricing:hover { - box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); - box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.04); -} -.pricing .h1 { - font-size: 4.21428571428571em; - line-height: 1.10169491525424em; - margin-bottom: 0.22033898305085em; -} -.pricing .h1 .pricing__dollar { - font-size: 0.51020408163265em; - position: relative; - bottom: 20px; -} -.pricing .feature-6 p { - min-height: 5.57142857em; -} -.pricing-1 .btn:last-child { - position: absolute; - width: 100%; - bottom: 0; - left: 0; - border-radius: 0 0 6px 6px; - padding: 0.92857143em 0; - margin: 0; -} -.pricing-1 .btn:last-child:hover { - transform: none !important; -} -.pricing-1 ul { - margin-bottom: 5.57142857em; -} -.pricing-1 p { - min-height: 5.57142857em; -} -.pricing-1 p:first-of-type { - margin-top: 1.85714286em; -} -.pricing-1 p:last-of-type { - margin-bottom: 5.57142857em; -} -.pricing-1 img + p:first-of-type { - margin-top: 0; -} -@media all and (min-width: 991px) { - .pricing-2 ul:first-child { - margin-top: 4.64285714em; - } -} -@media all and (max-width: 990px) { - .pricing-2 { - text-align: center; - } - .pricing-2 ul:first-child { - margin-top: 1.85714286em; - } -} -.pricing-3 { - border: 1px solid #ececec; - border-radius: 6px; -} -.pricing-3 .pricing__head { - margin: 0; - border-bottom: 1px solid #ececec; -} -.pricing-3 .pricing__head + .btn { - display: block; - border-radius: 0; - padding: 0.92857143em 0; -} -.pricing-3 ul { - border-radius: 0 0 6px 6px; -} -.pricing-3 ul li { - padding: 0.92857143em 0; -} -.pricing-3 ul li:not(:last-child) { - border-bottom: 1px solid #ececec; - margin: 0; -} -.pricing-3 ul:last-child { - margin: 0; -} -@media all and (max-width: 990px) { - .pricing-3 { - margin-bottom: 1.85714286em; - } -} -@media all and (min-width: 768px) { - .pricing-section-1 .pricing:not(.boxed--emphasis) { - left: 0.92857143em; - } - .pricing-section-1 .pricing.boxed--emphasis { - right: 0.92857143em; - } -} -@media all and (min-width: 990px) { - .pricing-section-2 div[class*='col-'] { - padding: 0; - } - .pricing-section-2 div[class*='col-']:not(:first-child):not(:last-child) .pricing__head { - border-radius: 0; - } - .pricing-section-2 div[class*='col-']:first-child .pricing { - border-radius: 6px 0 0 6px; - } - .pricing-section-2 div[class*='col-']:first-child .pricing .pricing__head { - border-radius: 6px 0 0 0; - } - .pricing-section-2 div[class*='col-']:last-child .pricing { - border-radius: 0 6px 6px 6px; - border-right: 1px solid #ececec; - } - .pricing-section-2 div[class*='col-']:last-child .pricing .pricing__head { - border-radius: 0 6px 0 0; - } - .pricing-section-2 .pricing { - border: 1px solid #ececec; - border-radius: 0 0 0 6px; - border-right: none; - } - .pricing-section-2 .pricing:hover { - box-shadow: none; - } - .pricing-section-2 .pricing ul { - margin: 0; - } -} -.pricing-section-2.bg--dark .pricing, -.pricing-section-2.bg--dark .pricing .pricing__head, -.pricing-section-2.bg--dark .pricing ul li:not(:last-child), -.pricing-section-2.bg--dark div[class*='col-']:last-child .pricing { - border-color: #3f3f3f; -} -.pricing-section-2.imagebg .pricing, -.pricing-section-2.imagebg .pricing .pricing__head, -.pricing-section-2.imagebg .pricing ul li:not(:last-child), -.pricing-section-2.imagebg div[class*='col-']:last-child .pricing { - border-color: rgba(255, 255, 255, 0.2); -} -/*! -- Stack Progress Horizontal -- */ -.progress-horizontal:not(:last-child) { - margin-bottom: 1.85714286em; -} -.progress-horizontal.progress-horizontal--lg .progress-horizontal__bar { - height: 1.85714286em; -} -.progress-horizontal.progress-horizontal--sm .progress-horizontal__bar { - height: 0.46428571em; -} -.progress-horizontal__bar { - height: 0.92857143em; - border-radius: 100px; - background: #fafafa; - border: 1px solid rgba(0, 0, 0, 0.1); -} -.progress-horizontal__bar:not(:last-child) { - margin-bottom: 0.46428571em; -} -.progress-horizontal__progress { - background: #c75146; - border-radius: 100px; -} -/*! -- Stack Maps -- */ -iframe[src*='google.com/maps'] { - border: none; -} -.map-container { - min-height: 400px; -} -.map-container:not(:last-child) { - margin-bottom: 1.85714286em; -} -.map-container.border--round { - overflow: hidden; - z-index: 2; -} -.map-container.border--round .gm-style { - border-radius: 6px; -} -.map-container iframe { - left: 0; -} -@media all and (min-width: 768px) { - .background-image-holder .map-container, - .imageblock__content .map-container { - position: absolute; - width: 100%; - height: 100%; - top: 0; - left: 0; - } - .map-container + div[class*='col-'] { - margin-top: 3.71428571em; - } -} -/*! -- Stack Testimonials -- */ -.testimonial { - position: relative; - overflow: hidden; -} -.testimonial h5:nth-last-child(2) { - margin: 0; -} -.testimonial .testimonial__image { - margin-bottom: 1.85714286em; -} -@media all and (min-width: 1025px) { - .testimonial-1 .switchable__text { - margin-top: 7.42857143em; - } -} -.testimonial-2 { - float: none; - width: 100%; -} -.testimonial-2 .testimonial__image img { - max-height: 3.71428571em; - float: left; - margin-right: 1.85714286em; -} -.testimonial-2 .boxed { - width: 100%; -} -@media all and (max-width: 990px) { - .testimonial-2 p { - min-height: 7.42857143em; - } -} -@media all and (max-width: 767px) { - .testimonial-2 p { - min-height: 0; - } -} -@media all and (min-width: 768px) { - .lead + .testimonial-2 { - margin-top: 3.71428571em; - } -} -@media all and (min-width: 768px) { - .testimonials-1 .list-inline { - position: relative; - top: 0.92857143em; - } - .testimonials-1 .list-inline li:not(:last-child) { - margin-right: 3.71428571em; - } -} -@media all and (max-width: 767px) { - .testimonials-1 .list-inline { - margin-top: 1.85714286em; - } - .testimonials-1 .list-inline li { - margin-bottom: 1.85714286em; - } -} -/*! -- Stack Masonry -- */ -.masonry__item:not(:empty) { - margin-bottom: 30px; - transform-style: preserve-3d; -} -.masonry__item:not(:empty) article { - margin: 0; -} -.masonry__item:not(:empty) article .boxed { - margin: 0; -} -.masonry__item:empty { - height: 0; - min-height: 0; -} -.masonry hr + .masonry__container, -.masonry hr + .row { - margin-top: 4.64285714em; -} -.masonry-filter-holder:not(.masonry-filters--horizontal) { - display: inline-block; - cursor: pointer; - height: 3.71428571em; - position: relative; - z-index: 9; - min-width: 143px; -} -.masonry-filter-holder:not(.masonry-filters--horizontal) .masonry__filters { - cursor: pointer; - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; - z-index: 2; - display: inline-block; - position: absolute; - left: 0; - text-align: left; - padding: 0.92857143em 1.85714286em; - border: 1px solid #ececec; - background: #ffffff; - border-radius: 6px; -} -.masonry-filter-holder:not(.masonry-filters--horizontal) .masonry__filters ul { - margin: 0; - cursor: pointer; -} -.masonry-filter-holder:not(.masonry-filters--horizontal) .masonry__filters ul li { - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; - display: block; - color: #666666; - white-space: nowrap; -} -.masonry-filter-holder:not(.masonry-filters--horizontal) .masonry__filters ul li:not(:last-child) { - margin-bottom: 0.92857143em; -} -.masonry-filter-holder:not(.masonry-filters--horizontal) .masonry__filters ul li.active { - color: #c75146; - cursor: pointer; -} -.masonry-filter-holder:not(.masonry-filters--horizontal) .masonry__filters ul li.active:after { - content: '\25bc'; - font-size: 8px; - margin-left: 6px; - position: relative; - bottom: 2px; - display: inline-block; - transform: scaleX(1.4) scaleY(0.9); - transition: 0.2s linear; - -webkit-transition: 0.2s linear; - -moz-transition: 0.2s linear; -} -.masonry-filter-holder:not(.masonry-filters--horizontal) .masonry__filters ul li:hover { - color: #c75146; -} -.masonry-filter-holder:not(.masonry-filters--horizontal) .masonry__filters ul:hover li.active:after { - opacity: 0; -} -.masonry-filter-holder:not(.masonry-filters--horizontal):not(:hover) .masonry__filters ul { - max-height: 1.85714286em; - overflow: hidden; -} -.masonry-filter-holder:not(.masonry-filters--horizontal):not(:hover) .masonry__filters ul li:not(.active) { - display: none; -} -.masonry-filter-holder:not(.masonry-filters--horizontal):hover .masonry__filters { - box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); - box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.04); -} -.masonry-filter-holder:not(.masonry-filters--horizontal):hover .masonry__filters ul li.active { - cursor: default; -} -.masonry-filters--horizontal { - display: inline-block; -} -.masonry-filters--horizontal .masonry__filters { - display: inline-block; - position: relative; - bottom: 20px; - margin-left: 0.92857143em; -} -.masonry-filters--horizontal .masonry__filters ul li { - transition: all .3s ease; - cursor: pointer; - display: inline-block; -} -.masonry-filters--horizontal .masonry__filters ul li:not(:last-child) { - margin-right: 1.85714286em; -} -.masonry-filters--horizontal .masonry__filters ul li.active { - color: #c75146; -} -.masonry-filters--horizontal .masonry__filters ul li:not(.active) { - opacity: .5; -} -.masonry-filters--horizontal .masonry__filters ul li:hover { - opacity: 1; -} -.masonry-filter-holder + .masonry__container { - margin-top: 3.71428571em; -} -.bg--dark .masonry-filter-holder .masonry__filters { - background: #2a2a2a; - border-color: #3f3f3f; -} -.bg--dark .masonry-filter-holder .masonry__filters li { - color: #fff; -} -.masonry.masonry-demos .masonry__item:not(:empty) { - margin-bottom: 3.71428571em; -} -.masonry.masonry-demos .masonry__item h5 { - margin-bottom: 0; -} -.masonry.masonry-demos .masonry__item:not([style]) .hover-item { - min-height: 450px; - background: #323232; - border: 1px solid #3f3f3f; -} -.masonry.masonry-demos .hover-item { - transition: 0.35s ease-out; - -webkit-transition: 0.35s ease-out; - -moz-transition: 0.35s ease-out; - border-radius: 6px; - overflow: hidden; -} -.masonry.masonry-demos .hover-item:hover { - transform: translateY(-10px); -} -.masonry.masonry-demos .masonry__container { - margin-top: 3.71428571em; -} -/*! -- Stack Blog -- */ -article .article__title { - margin-bottom: 3.71428571em; -} -article .article__title > a { - display: block; -} -article .article__title > a:hover { - text-decoration: none; - opacity: .75; -} -article .article__title h2 { - margin-bottom: 0.3939393939394em; -} -article .article__title h1 { - margin-bottom: 0.29545454545455em; -} -article .article__body img, -article .article__body iframe, -article .article__body .video-cover { - border-radius: 6px; -} -article .article__body img:not(:last-child), -article .article__body iframe:not(:last-child), -article .article__body .video-cover:not(:last-child) { - margin-bottom: 1.85714286em; -} -article .article__body > a:first-child > img { - margin-bottom: 1.85714286em; -} -article .article__body p, -article .article__body ul { - font-size: 1.35714286em; - line-height: 1.68421053em; - font-weight: 400; - color: #808080; -} -article .article__body p:not(:last-child), -article .article__body ul:not(:last-child) { - margin-bottom: 1.36842105263158em; -} -article .article__body p + .btn:last-child, -article .article__body ul + .btn:last-child { - margin-top: 0.92857143em; -} -article .article__body p + h5, -article .article__body ul + h5 { - margin-top: 2.78571429em; -} -article .article__body blockquote { - text-align: center; -} -article .article__body blockquote:not(:last-child) { - margin-top: 2.08em; - margin-bottom: 2.08em; -} -article .article__share { - margin-top: 5.57142857em; -} -article.imagebg { - padding: 1.85714286em; - overflow: hidden; -} -article.imagebg:before { - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; -} -article.imagebg:hover:before { - opacity: .6; -} -article.imagebg .article__title { - margin: 0; - position: absolute; - bottom: 0; - z-index: 2; - max-width: 90%; -} -article.imagebg .article__title span { - font-size: 0.85714286em; -} -article.imagebg .label { - z-index: 2; - top: 1.85714286em; - right: 1.85714286em; -} -article.feature-1 h5 { - min-height: 3.71428571em; -} -article.feature-1 a img { - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; -} -article.feature-1 a:hover img { - opacity: .85; -} -figure[class*='col-'] { - padding: 0 !important; -} -figure.pull-right { - margin-left: 2.78571429em; -} -figure.pull-left { - margin-right: 2.78571429em; -} -figure img:not(:last-child) { - margin-bottom: 0.46428571em !important; -} -figure figcaption { - font-size: 0.85714286em; - font-style: italic; -} -section.unpad > article .imagebg + div { - padding: 5.57142857em 0; -} -.article__author { - padding-bottom: 1.85714286em; -} -.article__author img { - max-height: 3.71428571em; - margin-bottom: 0.46428571em; -} -.slides--gapless article.imagebg { - height: 27.85714286em; -} -.masonry-blog-magazine article, -.masonry-blog-magazine .masonry__promo { - height: 338px; -} -.masonry-blog-magazine .height--tall { - height: calc(706px); -} -@media all and (min-width: 991px) { - .masonry__promo.boxed--lg { - padding: 7.42857143em; - } -} -@media all and (max-width: 990px) { - .masonry-blog-magazine .height--tall { - height: 338px; - } - .masonry__promo .pos-vertical-center { - top: 0; - transform: none; - } -} -@media all and (max-width: 1200px) { - .masonry__promo.boxed--lg { - padding: 3.71428571em; - } -} -.pagination { - text-align: center; - margin-top: 1.85714286em; -} -.pagination:after { - content: ""; - display: table; - clear: both; -} -.pagination a { - font-weight: normal; -} -.pagination div[class*='col-'] { - padding: 0; -} -.pagination ol { - margin-bottom: 0; - display: inline-block; -} -.pagination ol li { - display: inline-block; - margin: 0; - font-weight: 700; - line-height: 23px; - width: 1.85714286em; - height: 1.85714286em; - border-radius: 50%; - border: 1px solid #ececec; -} -.pagination ol li > a { - font-weight: 700; -} -.pagination ol li:not(:last-child) { - margin-right: 0.46428571em; -} -.pagination ol li.pagination__current { - cursor: default; - background: #ececec; - color: #aaa; -} -.pagination__prev, -.pagination__next { - display: inline-block; -} -.pagination__next { - float: right; -} -.pagination__prev { - float: left; -} -.blog-article-wide:not(:last-child) { - border-bottom: 1px solid #ececec; - margin-bottom: 3.71428571em; -} -.masonry-blog-list hr + .masonry__container { - margin-top: 0; -} -.masonry-blog-list article { - border-bottom: 1px solid #ececec; - padding-top: 2.78571429em; - margin-bottom: 5.57142857em; -} -.masonry-blog-list article .article__body { - padding-bottom: 5.57142857em; -} -.masonry-blog-magazine .masonry__item a { - font-weight: normal; -} -.masonry-blog-magazine .masonry__item a:hover { - text-decoration: none; -} -.masonry-filter-container { - margin-bottom: 1.85714286em; -} -.masonry-filter-container > span { - position: relative; - bottom: 20px; -} -.masonry-filter-container > span + .masonry-filter-holder { - margin-left: 0.92857143em; -} -.comments__list li { - padding: 1.85714286em; - border: 1px solid #ececec; - border-bottom: none; -} -.comments__list li:last-child { - border-bottom: 1px solid #ececec; -} -.comments__list li:nth-child(odd) { - background: #fcfcfc; -} -.comments__list li:nth-child(even) { - background: #f9f9f9; -} -.comments__list li:first-child { - border-radius: 6px 6px 0 0; -} -.comments__list li:last-child { - border-radius: 0 0 6px 6px; -} -.bg--secondary .comments__list li:nth-child(even) { - background: #fff; -} -@media all and (min-width: 768px) { - .comments__list li { - padding: 2.78571429em; - } -} -.comment { - overflow: hidden; -} -.comment:not(:last-child) { - border-bottom: 1px solid #ececec; - padding-bottom: 1.85714286em; -} -.comment .comment__avatar { - width: 15%; - float: left; -} -.comment .comment__avatar img { - max-height: 3.71428571em; -} -.comment .comment__meta { - font-size: 0.85714286em; -} -.comment .comment__meta a { - display: inline-block; -} -.comment .comment__meta a:not(:first-child) { - margin-left: 1.08333333333334em; -} -.comment .comment__meta + p { - margin-top: 0.92857143em; -} -.comment .comment__body { - width: 85%; - float: right; -} -.comment .comment__body h5.type--fine-print { - margin: 0; -} -.comment + .comment { - margin-top: 1.85714286em; - padding-left: 15%; -} -@media all and (min-width: 768px) { - .comments + .comments-form { - margin-top: 3.71428571em; - } -} -@media all and (min-width: 768px) { - h3 + .related-blog-list { - margin-top: 3.71428571em; - } -} -.related-blog-list li:not(:last-child) { - margin-bottom: 1.85714286em; -} -.related-blog-list article img { - border-radius: 6px; -} -.related-blog-list article .article__title { - margin-top: 0.92857143em; - margin-bottom: 0; -} -.related-blog-list article .article__title .h4 { - margin-bottom: 0.68421052631579em; -} -@media all and (min-width: 991px) { - .sidebar { - margin-top: 7.42857143em; - position: relative; - bottom: 18px; - } -} -.sidebar__widget > h5:first-child { - margin-bottom: 0.92857143em; -} -.sidebar__widget:not(:last-child) { - margin-bottom: 3.71428571em; -} -.tag-cloud li { - display: inline-block; -} -.tag-cloud li:not(:last-child) { - margin-right: 0.46428571em; -} -.tag-cloud li:not(:last-child):after { - content: ','; -} -.conversation__head { - border-radius: 6px 6px 0 0; -} -.conversation__head.boxed:not(:last-child) { - margin: 0; -} -.conversation__head h4 { - margin: 0; -} -.conversation__head .conversation__avatar { - margin-top: 0.92857143em; -} -.conversation__head .conversation__avatar img { - max-height: 1.85714286em; - display: inline-block; - margin-right: 0.46428571em; - margin-bottom: 0; -} -@media all and (min-width: 768px) { - .conversation__avatar { - position: absolute; - top: 1.85714286em; - right: 2.78571429em; - } -} -.conversation__reply { - border-top: none !important; - border-bottom: none; - border-radius: 0; -} -.conversation__reply.boxed:not(:last-child) { - margin-bottom: 0; -} -.conversation__reply + .conversation__comments .comments__list li:first-child { - border-radius: 0; - border-top: none; -} -/*! -- Stack Portfolio -- */ -.project-thumb > a { - display: block; -} -.project-thumb:not(.hover-element) > a { - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; - margin-bottom: 1.85714286em; -} -.project-thumb:not(.hover-element) > a:hover { - opacity: .85; -} -.project-thumb.hover-element { - margin: 0; -} -.project-thumb.hover-element > a { - height: 24.14285714em; - text-decoration: none; - font-weight: normal; -} -.project-thumb.hover-element .background-image-holder { - transition: 0.5s ease-out; - -webkit-transition: 0.5s ease-out; - -moz-transition: 0.5s ease-out; -} -.project-thumb.hover-element .hover-element__reveal .project-thumb__title { - padding: 1.85714286em; - z-index: 2; - position: relative; - color: #fff; -} -.project-thumb.hover-element .hover-element__reveal .project-thumb__title h5 { - margin: 0; -} -.project-thumb.hover-element.hover--active { - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; -} -.project-thumb.hover-element.hover--active:hover { - opacity: .85; -} -.project-thumb.hover-element:not(.hover--active)[data-scrim-top] .hover-element__reveal { - transition: 0.5s ease; - -webkit-transition: 0.5s ease; - -moz-transition: 0.5s ease; - transform: translate3d(0, -100px, 0); - -webkit-transform: translate3d(0, -100px, 0); -} -.project-thumb.hover-element:not(.hover--active)[data-scrim-top]:hover .hover-element__reveal { - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); -} -.project-thumb.hover-element [data-scrim-top]:before { - height: 100%; -} -.project-thumb h4 { - margin-bottom: 0; -} -.project-thumb.height-40 { - min-height: 350px; -} -@media all and (max-width: 767px) { - .project-thumb.height-40 { - height: 350px; - min-width: 100%; - } -} -@media all and (min-width: 768px) { - .col-xs-12:not(.col-sm-6) .project-thumb.hover-element > a { - height: 46.42857143em; - } -} -.project-thumb.border--round .background-image-holder { - border-radius: 6px; -} -.project-thumb.border--round > a { - border-radius: 6px; - overflow: hidden; -} -.project-thumb.border--round:before { - border-radius: 6px; - overflow: hidden; -} -.col-md-4 .project-thumb > a:not(.imagebg) { - margin-bottom: 0.92857143em; -} -/*! -- Stack Shop -- */ -.cart-form button[type="submit"] { - margin-top: 1.85714286em; -} -.cart-total > div { - overflow: hidden; -} -@media all and (min-width: 768px) { - .cart-total { - margin-top: 3.71428571em; - } - .cart-customer-details { - margin-top: 7.42857143em; - } -} -@media all and (max-width: 767px) { - .cart-total { - margin-top: 1.85714286em; - } -} -.cart-customer-details div[class*='col-'] { - margin-top: 0.46428571em; -} -.cart-customer-details .input-checkbox { - margin: 1.85714286em 0; -} -.cart-customer-details .input-checkbox + span { - bottom: 38px; -} -.product { - margin-bottom: 0.92857143em; -} -.product img { - margin-bottom: 0.92857143em; - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; - backface-visibility: hidden; -} -.product a:hover img { - transform: translate3d(0, -5px, 0); - -webkit-transform: translate3d(0, -5px, 0); -} -.product .label + img { - margin-top: 2.78571429em; -} -.product h5 { - display: inline-block; - margin-bottom: 0; - margin-right: 0.46428571em; -} -.product .h4 { - margin-bottom: 0; -} -.product .h4:first-child { - clear: left; -} -.product .product__controls { - overflow: hidden; - margin-bottom: 0.92857143em; -} -.product .product__controls label, -.product .product__controls button { - position: relative; - top: 6px; -} -.product.product--tile { - padding: 1.85714286em; - border-radius: 6px; -} -@media all and (min-width: 1200px) { - .product .btn--cart { - position: absolute; - right: 1.85714286em; - bottom: 1.85714286em; - } -} -.col-sm-6:not(.col-md-3) .product { - text-align: center; -} -.col-md-3 .product--tile h5 { - display: block; -} -.masonry--tiles { - padding: 10px; -} -.masonry--tiles .masonry__item:not(:empty) { - padding: 0 6px; - margin-bottom: 12px; -} -.masonry--tiles .masonry__item:not(:empty) .product--tile { - margin: 0; -} -.masonry--tiles .masonry__item:not(:empty) .product--tile .label { - top: 1.85714286em; - right: 2.78571429em; -} -/*! -- Stack Wizard -- */ -.wizard { - transition: opacity .3s ease; - opacity: 0; -} -.wizard.active { - opacity: 1; -} -.wizard > .actions a, -.wizard > .actions a:hover, -.wizard > .actions a:active { - background: #c75146; - transition: all .3s ease; - padding: 0.46428571em 1.85714286em; - font-size: 12px; - text-transform: uppercase; - font-weight: 700; - letter-spacing: 1px; - color: #fff; -} -.wizard > .steps .current a, -.wizard > .steps .current a:hover, -.wizard > .steps .current a:active { - background: none; - color: #252525; -} -.wizard > .steps a { - position: relative; -} -.wizard > .steps a:before { - content: ''; - width: 15px; - height: 15px; - border-radius: 50%; - position: absolute; - left: 50%; - margin-left: -10px; - background: #eee; - display: block; - bottom: 0; - transition: all .2s ease; -} -.wizard > .steps a:after { - content: ''; - position: absolute; - width: 100%; - bottom: 7px; - height: 2px; - background: #eee; - left: 0; - transition: all .2s ease; -} -.wizard > .steps li:first-child a:after { - width: 50%; - left: 50%; -} -.wizard > .steps li:last-child a:after { - width: 50%; -} -.wizard > .steps li.current a:after, -.wizard > .steps li.current a:before { - background-color: #c75146; -} -.wizard > .steps a, -.wizard > .steps a:hover { - padding-bottom: 2.78571429em; -} -.wizard > .steps .done a, -.wizard > .steps .done a:hover, -.wizard > .steps .done a:active, -.wizard > .steps .disabled a, -.wizard > .steps .disabled a:hover, -.wizard > .steps .disabled a:active { - background: none; - color: #252525; -} -.wizard > .steps a, -.wizard > .steps a:hover, -.wizard > .steps a:active { - margin: 0; -} -.wizard > .actions a, -.wizard > .actions a:hover, -.wizard > .actions a:active { - user-select: none; - -moz-user-select: none; - -webkit-user-select: none; -} -.wizard > .steps > ul, -.wizard > .actions { - text-align: center; -} -.wizard > .steps > ul > li, -.wizard > .actions > ul > li { - float: none; - display: inline-block; -} -.wizard > section { - padding: 0; -} -.wizard > .content { - background: #fafafa; - margin-top: 1.85714286em; - margin-bottom: 1.85714286em; - border: 1px solid #ececec; -} -.wizard > .content > .body { - padding: 1.85714286em; - width: 100%; - height: 100%; -} -.wizard > .steps .number { - font-size: 1em; -} -@media all and (max-width: 767px) { - .wizard > .steps .number { - display: block; - } - .wizard > .content { - min-height: 25em; - } - .wizard .pos-vertical-center { - top: 50%; - transform: translateY(-50%); - -wekbit-transform: translateY(-50%); - } -} -.wizard.bg--white { - background: none !important; -} -.wizard.bg--white > .content { - background: #fff; -} -.wizard > .content img { - max-height: 240px; -} -@media all and (max-width: 767px) { - .wizard > .content img { - max-height: 120px; - margin-bottom: 0.92857143em; - } -} -/*! -- Stack Footers -- */ -footer .type--fine-print:not(p) { - opacity: .5; -} -footer a { - font-weight: normal; -} -footer:not(.bg--primary):not(.bg--dark) a { - color: #666666; -} -footer a.type--fine-print:not(:first-child) { - margin-left: 1.85714286em; -} -footer .logo { - max-height: 1.67142857em; -} -footer ul:not(.list-inline):not(.slides) > li { - line-height: 2.32142857em !important; -} -footer.footer-2 .row:last-child { - margin-top: 3.71428571em; -} -footer.footer-5 .row [class*='col-'] > div:nth-last-child(2) { - margin: 0.92857143em; -} -footer.footer-5 .row [class*='col-'] > div:nth-last-child(2) .type--fine-print { - opacity: 1; -} -footer.footer-6 .footer__lower { - background: #fafafa; - margin-top: 1.85714286em; - padding: 1.85714286em 0; -} -footer.footer-6.bg--dark .footer__lower { - background: #181818; -} -footer.footer-6.bg--secondary .footer__lower { - background: #f5f5f5; -} -footer.footer-6.bg--primary .footer__lower { - background: #bb4439; -} -footer.footer-7 { - padding: 1.85714286em 0; -} -@media all and (min-width: 768px) { - footer .list-inline + .btn { - position: relative; - bottom: 4px; - } - footer .logo { - margin: 0; - } - footer .logo:not(:last-child) { - margin-right: 1.85714286em; - } - footer.footer-3 .logo + ul { - position: relative; - top: 5px; - } - footer.footer-3 .logo + ul a { - color: #252525; - } - footer.footer-3 .social-list { - position: relative; - top: 9px; - } - footer.footer-3 .row:last-child { - margin-top: 1.85714286em; - } - footer.footer-4 .logo + span { - position: relative; - top: 8px; - } - footer.footer-4 form { - position: relative; - bottom: 4px; - } - footer.footer-4 .row:last-child { - margin-top: 1.85714286em; - } - footer.imagebg:not(.image--light) span, - footer.imagebg:not(.image--light) p, - footer.imagebg:not(.image--light) a { - color: #fff; - } - .footer-1 .type--fine-print { - position: relative; - top: 2px; - } -} -@media all and (max-width: 767px) { - footer .social-list { - margin: 1.85714286em 0; - } - .footer-4 form { - margin: 1.85714286em 0; - } - .footer-4 .logo { - margin: 0; - } - .footer-6 .footer__lower .social-list { - margin-top: 1.85714286em; - } - .footer-7 .social-list { - margin-top: 1.85714286em; - } - .footer-1 .social-list { - margin-top: 1.85714286em; - } - .footer-1 .logo { - display: block; - margin-top: 1.85714286em; - margin-bottom: 0.92857143em; - margin-left: auto; - margin-right: auto; - } -} diff --git a/html/css/theme-charcoal.css b/html/css/theme-charcoal.css deleted file mode 100644 index d9dab30b..00000000 --- a/html/css/theme-charcoal.css +++ /dev/null @@ -1,9016 +0,0 @@ -/**!**************/ -/**! Contents **/ -/**! 01. Reset **/ -/**! 02. Typography **/ -/**! 03. Position **/ -/**! 04. Element Size **/ -/**! 05. Images **/ -/**! 06. Buttons **/ -/**! 07. Icons **/ -/**! 08. Lists **/ -/**! 09. Lightbox **/ -/**! 10. Menus **/ -/**! 11. Dropdowns **/ -/**! 12. Form Elements **/ -/**! 13. Accordions **/ -/**! 14. Breadcrumbs **/ -/**! 15. Radials **/ -/**! 16. Tabs **/ -/**! 17. Boxes **/ -/**! 18. Sliders Flickity **/ -/**! 19. Hover Elements **/ -/**! 20. Masonry **/ -/**! 21. Modals **/ -/**! 22. Maps **/ -/**! 23. Parallax **/ -/**! 24. Notifications **/ -/**! 25. Video **/ -/**! 26. Colors **/ -/**! 27. Image Blocks **/ -/**! 28. MailChimp & Campaign Monitor **/ -/**! 29. Twitter **/ -/**! 30. Transitions **/ -/**! 31. Switchable Sections **/ -/**! 32. Typed Effect **/ -/**! 33. Gradient BG **/ -/**! 34. Bars **/ -/**! 35. Navigation In Page **/ -/**! 36. Helper Classes **/ -/**! 37. Spacing **/ -/**! 38. Boxed Layout **/ -/**! 39. Wizard **/ -/**! 40. Alerts **/ -/**! 41. Progress - Horizontal **/ -/**! 42. Theme Overrides **/ -/**!**************/ -/**!**************/ -/**!**************/ -/**! 01. Reset **/ -*, -h1, -h2, -h3, -h4, -h5, -h6, -p, -ul, -a { - margin: 0; - padding: 0; -} -/**! 02. Typography **/ -html { - font-size: 87.5%; -} -@media all and (max-width: 768px) { - html { - font-size: 81.25%; - } -} -body { - font-size: 1em; - line-height: 1.85714286em; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; - font-family: 'Open Sans', 'Helvetica', 'Arial', sans-serif; - color: #666666; - font-weight: 400; -} -h1, -h2, -h3, -h4, -h5, -h6, -.h1, -.h2, -.h3, -.h4, -.h5, -.h6 { - font-family: 'Open Sans', 'Helvetica', 'Arial', sans-serif; - color: #252525; - font-weight: 300; - font-variant-ligatures: common-ligatures; - margin-top: 0; - margin-bottom: 0; -} -h1, -.h1 { - font-size: 3.14285714em; - line-height: 1.31818182em; -} -h2, -.h2 { - font-size: 2.35714286em; - line-height: 1.36363636em; -} -h3, -.h3 { - font-size: 1.78571429em; - line-height: 1.5em; -} -h4, -.h4 { - font-size: 1.35714286em; - line-height: 1.36842105em; -} -h5, -.h5 { - font-size: 1em; - line-height: 1.85714286em; -} -h6, -.h6 { - font-size: 0.85714286em; - line-height: 2.16666667em; -} -.lead { - font-size: 1.35714286em; - line-height: 1.68421053em; -} -@media all and (max-width: 767px) { - h1, - .h1 { - font-size: 2.35714286em; - line-height: 1.36363636em; - } - h2, - .h2 { - font-size: 1.78571429em; - line-height: 1.5em; - } - h3, - .h3 { - font-size: 1.35714286em; - line-height: 1.85714286em; - } - .lead { - font-size: 1.35714286em; - line-height: 1.36842105em; - } -} -p, -ul, -ol, -pre, -table, -blockquote { - margin-bottom: 1.85714286em; -} -ul, -ol { - list-style: none; - line-height: 1.85714286em; -} -ul.bullets { - list-style: inside; -} -ol { - list-style-type: upper-roman; - list-style-position: inside; -} -blockquote { - font-size: 1.78571429em; - line-height: 1.5em; - padding: 0; - margin: 0; - border-left: 0; -} -strong { - font-weight: 600; -} -hr { - margin: 1.85714286em 0; - border-color: #fafafa; -} -a:hover, -a:focus, -a:active { - text-decoration: none; - outline: none; -} -/*! Typography -- Helpers */ -.type--fade { - opacity: .5; -} -.type--uppercase { - text-transform: uppercase; -} -.type--bold { - font-weight: bold; -} -.type--italic { - font-style: italic; -} -.type--fine-print { - font-size: 0.85714286em; -} -.type--strikethrough { - text-decoration: line-through; - opacity: .5; -} -.type--underline { - text-decoration: underline; -} -.type--body-font { - font-family: 'Open Sans', 'Helvetica'; -} -/**! 03. Position **/ -body { - overflow-x: hidden; -} -.pos-relative { - position: relative; -} -.pos-absolute { - position: absolute; -} -.pos-absolute.container { - left: 0; - right: 0; -} -.pos-top { - top: 0; -} -.pos-bottom { - bottom: 0; -} -.pos-right { - right: 0; -} -.pos-left { - left: 0; -} -.float-left { - float: left; -} -.float-right { - float: right; -} -@media all and (max-width: 767px) { - .float-left, - .float-right { - float: none; - } - .float-left-xs { - float: left; - } - .float-right-xs { - float: right; - } -} -.pos-vertical-center { - position: relative; - top: 50%; - transform: translateY(-50%); - -webkit-transform: translateY(-50%); -} -@media all and (max-width: 767px) { - .pos-vertical-center { - top: 0; - transform: none; - -webkit-transform: none; - } -} -@media all and (max-height: 600px) { - .pos-vertical-center { - top: 0; - transform: none; - -webkit-transform: none; - } -} -.pos-vertical-align-columns { - display: table; - table-layout: fixed; - width: 100%; -} -.pos-vertical-align-columns > div[class*='col-'] { - display: table-cell; - float: none; - vertical-align: middle; -} -@media all and (max-width: 990px) { - .pos-vertical-align-columns { - display: block; - width: auto; - } - .pos-vertical-align-columns > div[class*='col-'] { - display: block; - } -} -.inline-block { - display: inline-block; -} -.block { - display: block; -} -@media all and (max-width: 767px) { - .block--xs { - display: block; - } -} -@media all and (max-width: 990px) { - .text-center-md { - text-align: center; - } - .text-left-md { - text-align: left; - } - .text-right-md { - text-align: right; - } -} -@media all and (max-width: 767px) { - .text-center-xs { - text-align: center; - } - .text-left-xs { - text-align: left; - } - .text-right-xs { - text-align: right; - } -} -/**! 04. Element Size **/ -.height-100, -.height-90, -.height-80, -.height-70, -.height-60, -.height-50, -.height-40, -.height-30, -.height-20, -.height-10 { - height: auto; - padding: 5em 0; -} -@media all and (max-width: 767px) { - .height-100, - .height-90, - .height-80, - .height-70, - .height-60, - .height-50, - .height-40, - .height-30, - .height-20, - .height-10 { - height: auto; - padding: 4em 0; - } -} -@media all and (min-height: 600px) and (min-width: 767px) { - .height-10 { - height: 10vh; - } - .height-20 { - height: 20vh; - } - .height-30 { - height: 30vh; - } - .height-40 { - height: 40vh; - } - .height-50 { - height: 50vh; - } - .height-60 { - height: 60vh; - } - .height-70 { - height: 70vh; - } - .height-80 { - height: 80vh; - } - .height-90 { - height: 90vh; - } - .height-100 { - height: 100vh; - } -} -section.height-auto { - height: auto; -} -section.height-auto .pos-vertical-center { - top: 0; - position: relative; - transform: none; -} -@media all and (max-width: 767px) { - div[class*='col-'][class*='height-'] { - padding-top: 5.57142857em !important; - padding-bottom: 5.57142857em !important; - } -} -/**! 05. Images **/ -img { - max-width: 100%; - margin-bottom: 1.85714286em; -} -/*p+img, img:last-child{ - margin-bottom: 0; -}*/ -.img--fullwidth { - width: 100%; -} -[data-grid="2"].masonry { - -webkit-column-count: 2; - -webkit-column-gap: 0; - -moz-column-count: 2; - -moz-column-gap: 0; - column-count: 2; - column-gap: 0; -} -[data-grid="2"].masonry li { - width: 100%; - float: none; -} -[data-grid="2"] li { - width: 50%; - display: inline-block; -} -[data-grid="3"].masonry { - -webkit-column-count: 3; - -webkit-column-gap: 0; - -moz-column-count: 3; - -moz-column-gap: 0; - column-count: 3; - column-gap: 0; -} -[data-grid="3"].masonry li { - width: 100%; - float: none; -} -[data-grid="3"] li { - width: 33.33333333%; - display: inline-block; -} -[data-grid="4"].masonry { - -webkit-column-count: 4; - -webkit-column-gap: 0; - -moz-column-count: 4; - -moz-column-gap: 0; - column-count: 4; - column-gap: 0; -} -[data-grid="4"].masonry li { - width: 100%; - float: none; -} -[data-grid="4"] li { - width: 25%; - display: inline-block; -} -[data-grid="5"].masonry { - -webkit-column-count: 5; - -webkit-column-gap: 0; - -moz-column-count: 5; - -moz-column-gap: 0; - column-count: 5; - column-gap: 0; -} -[data-grid="5"].masonry li { - width: 100%; - float: none; -} -[data-grid="5"] li { - width: 20%; - display: inline-block; -} -[data-grid="6"].masonry { - -webkit-column-count: 6; - -webkit-column-gap: 0; - -moz-column-count: 6; - -moz-column-gap: 0; - column-count: 6; - column-gap: 0; -} -[data-grid="6"].masonry li { - width: 100%; - float: none; -} -[data-grid="6"] li { - width: 16.66666667%; - display: inline-block; -} -[data-grid="7"].masonry { - -webkit-column-count: 7; - -webkit-column-gap: 0; - -moz-column-count: 7; - -moz-column-gap: 0; - column-count: 7; - column-gap: 0; -} -[data-grid="7"].masonry li { - width: 100%; - float: none; -} -[data-grid="7"] li { - width: 14.28571429%; - display: inline-block; -} -[data-grid="8"].masonry { - -webkit-column-count: 8; - -webkit-column-gap: 0; - -moz-column-count: 8; - -moz-column-gap: 0; - column-count: 8; - column-gap: 0; -} -[data-grid="8"].masonry li { - width: 100%; - float: none; -} -[data-grid="8"] li { - width: 12.5%; - display: inline-block; -} -@media all and (max-width: 767px) { - [data-grid]:not(.masonry) li { - width: 33.333333%; - } - [data-grid="2"]:not(.masonry) li { - width: 50%; - } - [data-grid].masonry { - -webkit-column-count: 1; - -moz-column-count: 1; - column-count: 1; - } -} -.background-image-holder { - position: absolute; - height: 100%; - top: 0; - left: 0; - background-size: cover !important; - background-position: 50% 50% !important; - z-index: 0; - transition: opacity .3s linear; - -webkit-transition: opacity .3s linear; - opacity: 0; - background: #252525; -} -.background-image-holder:not([class*='col-']) { - width: 100%; -} -.background-image-holder.background--bottom { - background-position: 50% 100% !important; -} -.background-image-holder.background--top { - background-position: 50% 0% !important; -} -.image--light .background-image-holder { - background: none; -} -.background-image-holder img { - display: none; -} -[data-overlay] { - position: relative; -} -[data-overlay]:before { - position: absolute; - content: ''; - background: #252525; - width: 100%; - height: 100%; - top: 0; - left: 0; - z-index: 1; -} -[data-overlay] *:not(.container):not(.background-image-holder) { - z-index: 2; -} -[data-overlay].image--light:before { - background: #fff; -} -[data-overlay].bg--primary:before { - background: #2374ab; -} -[data-overlay="1"]:before { - opacity: 0.1; -} -[data-overlay="2"]:before { - opacity: 0.2; -} -[data-overlay="3"]:before { - opacity: 0.3; -} -[data-overlay="4"]:before { - opacity: 0.4; -} -[data-overlay="5"]:before { - opacity: 0.5; -} -[data-overlay="6"]:before { - opacity: 0.6; -} -[data-overlay="7"]:before { - opacity: 0.7; -} -[data-overlay="8"]:before { - opacity: 0.8; -} -[data-overlay="9"]:before { - opacity: 0.9; -} -[data-overlay="10"]:before { - opacity: 1; -} -[data-overlay="0"]:before { - opacity: 0; -} -[data-scrim-bottom] { - position: relative; -} -[data-scrim-bottom]:before { - position: absolute; - content: ''; - width: 100%; - height: 80%; - background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, #252525 100%); - /* FF3.6+ */ - background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(0, 0, 0, 0)), color-stop(100%, #252525)); - /* Chrome,Safari4+ */ - background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, #252525 100%); - /* Chrome10+,Safari5.1+ */ - background: -o-linear-gradient(top, rgba(0, 0, 0, 0) 0%, #252525 100%); - /* Opera 11.10+ */ - background: -ms-linear-gradient(top, rgba(0, 0, 0, 0) 0%, #252525 100%); - /* IE10+ */ - background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, #252525 100%); - bottom: 0; - left: 0; - z-index: 1; - backface-visibility: hidden; -} -[data-scrim-bottom]:not(.image--light) h1, -[data-scrim-bottom]:not(.image--light) h2, -[data-scrim-bottom]:not(.image--light) h3, -[data-scrim-bottom]:not(.image--light) h4, -[data-scrim-bottom]:not(.image--light) h5, -[data-scrim-bottom]:not(.image--light) h6 { - color: #a5a5a5; - color: #f1f1f1; -} -[data-scrim-bottom]:not(.image--light) p, -[data-scrim-bottom]:not(.image--light) span, -[data-scrim-bottom]:not(.image--light) ul { - color: #e6e6e6; -} -[data-scrim-bottom].image--light:before { - background: #fff; -} -[data-scrim-bottom="1"]:before { - opacity: 0.1; -} -[data-scrim-bottom="2"]:before { - opacity: 0.2; -} -[data-scrim-bottom="3"]:before { - opacity: 0.3; -} -[data-scrim-bottom="4"]:before { - opacity: 0.4; -} -[data-scrim-bottom="5"]:before { - opacity: 0.5; -} -[data-scrim-bottom="6"]:before { - opacity: 0.6; -} -[data-scrim-bottom="7"]:before { - opacity: 0.7; -} -[data-scrim-bottom="8"]:before { - opacity: 0.8; -} -[data-scrim-bottom="9"]:before { - opacity: 0.9; -} -[data-scrim-bottom="10"]:before { - opacity: 1; -} -[data-scrim-top] { - position: relative; -} -[data-scrim-top]:before { - position: absolute; - content: ''; - width: 100%; - height: 80%; - background: -moz-linear-gradient(bottom, #252525 0%, rgba(0, 0, 0, 0) 100%); - /* FF3.6+ */ - background: -webkit-gradient(linear, left bottom, left bottom, color-stop(0%, #252525), color-stop(100%, rgba(0, 0, 0, 0))); - /* Chrome,Safari4+ */ - background: -webkit-linear-gradient(bottom, #252525 0%, rgba(0, 0, 0, 0) 100%); - /* Chrome10+,Safari5.1+ */ - background: -o-linear-gradient(bottom, #252525 0%, rgba(0, 0, 0, 0) 100%); - /* Opera 11.10+ */ - background: -ms-linear-gradient(bottom, #252525 0%, rgba(0, 0, 0, 0) 100%); - /* IE10+ */ - background: linear-gradient(to bottom, #252525 0%, rgba(0, 0, 0, 0) 100%); - top: 0; - left: 0; - z-index: 1; -} -[data-scrim-top]:not(.image--light) h1, -[data-scrim-top]:not(.image--light) h2, -[data-scrim-top]:not(.image--light) h3, -[data-scrim-top]:not(.image--light) h4, -[data-scrim-top]:not(.image--light) h5, -[data-scrim-top]:not(.image--light) h6 { - color: #fff; -} -[data-scrim-top]:not(.image--light) p, -[data-scrim-top]:not(.image--light) span, -[data-scrim-top]:not(.image--light) ul { - color: #e6e6e6; -} -[data-scrim-top].image--light:before { - background: #fff; -} -[data-scrim-top="1"]:before { - opacity: 0.1; -} -[data-scrim-top="2"]:before { - opacity: 0.2; -} -[data-scrim-top="3"]:before { - opacity: 0.3; -} -[data-scrim-top="4"]:before { - opacity: 0.4; -} -[data-scrim-top="5"]:before { - opacity: 0.5; -} -[data-scrim-top="6"]:before { - opacity: 0.6; -} -[data-scrim-top="7"]:before { - opacity: 0.7; -} -[data-scrim-top="8"]:before { - opacity: 0.8; -} -[data-scrim-top="9"]:before { - opacity: 0.9; -} -[data-scrim-top="10"]:before { - opacity: 1; -} -.imagebg { - position: relative; -} -.imagebg .container { - z-index: 2; -} -.imagebg .container:not(.pos-absolute) { - position: relative; -} -.imagebg:not(.image--light) h1, -.imagebg:not(.image--light) h2, -.imagebg:not(.image--light) h3, -.imagebg:not(.image--light) h4, -.imagebg:not(.image--light) h5, -.imagebg:not(.image--light) h6, -.imagebg:not(.image--light) p, -.imagebg:not(.image--light) ul, -.imagebg:not(.image--light) blockquote { - color: #fff; -} -.imagebg:not(.image--light) .bg--white h1, -.imagebg:not(.image--light) .bg--white h2, -.imagebg:not(.image--light) .bg--white h3, -.imagebg:not(.image--light) .bg--white h4, -.imagebg:not(.image--light) .bg--white h5, -.imagebg:not(.image--light) .bg--white h6 { - color: #252525; -} -.imagebg:not(.image--light) .bg--white p, -.imagebg:not(.image--light) .bg--white ul { - color: #666666; -} -div[data-overlay] h1, -div[data-overlay] h2, -div[data-overlay] h3, -div[data-overlay] h4, -div[data-overlay] h5, -div[data-overlay] h6 { - color: #fff; -} -div[data-overlay] p, -div[data-overlay] ul { - color: #fff; -} -.parallax { - overflow: hidden; -} -.parallax .background-image-holder { - transition: none !important; - -webkit-transition: none !important; - -moz-transition: none !important; -} -.image--xxs { - max-height: 1.85714286em; -} -.image--xs { - max-height: 3.71428571em; -} -.image--sm { - max-height: 5.57142857em; -} -.image--md { - max-height: 7.42857143em; -} -/**! 06. Buttons **/ -.btn { - font-family: 'Open Sans', 'Helvetica', 'Arial', sans-serif; - transition: 0.1s linear; - -webkit-transition: 0.1s linear; - -moz-transition: 0.1s linear; - border-radius: 6px; - padding-top: 0.46428571em; - padding-bottom: 0.46428571em; - padding-right: 2.78571429em; - padding-left: 2.78571429em; - border: 1px solid #252525; - border-width: 1px; - font-size: inherit; - line-height: 1.85714286em; -} -.btn .btn__text, -.btn i { - color: #252525; - border-color: #252525; - font-weight: 700; - font-size: 0.85714286em; -} -.btn[class*='col-'] { - margin-left: 0; - margin-right: 0; -} -.btn:active { - box-shadow: none; - -webkit-box-shadow: none; -} -.btn.bg--facebook, -.btn.bg--twitter, -.btn.bg--instagram, -.btn.bg--googleplus, -.btn.bg--pinterest, -.btn.bg--dribbble, -.btn.bg--behance, -.btn.bg--dark { - border-color: rgba(0, 0, 0, 0) !important; -} -.btn.bg--facebook .btn__text, -.btn.bg--twitter .btn__text, -.btn.bg--instagram .btn__text, -.btn.bg--googleplus .btn__text, -.btn.bg--pinterest .btn__text, -.btn.bg--dribbble .btn__text, -.btn.bg--behance .btn__text, -.btn.bg--dark .btn__text { - color: #fff; -} -.btn.bg--facebook .btn__text i, -.btn.bg--twitter .btn__text i, -.btn.bg--instagram .btn__text i, -.btn.bg--googleplus .btn__text i, -.btn.bg--pinterest .btn__text i, -.btn.bg--dribbble .btn__text i, -.btn.bg--behance .btn__text i, -.btn.bg--dark .btn__text i { - color: #fff; -} -.btn.bg--facebook:hover, -.btn.bg--twitter:hover, -.btn.bg--instagram:hover, -.btn.bg--googleplus:hover, -.btn.bg--pinterest:hover, -.btn.bg--dribbble:hover, -.btn.bg--behance:hover, -.btn.bg--dark:hover { - opacity: .9; -} -.btn.bg--error { - background: #e23636; - border-color: #e23636 !important; -} -.btn.bg--error:hover { - background: #e54c4c; - border-color: #e54c4c !important; - color: #fff !important; -} -.btn.bg--error .btn__text { - color: #fff; -} -.btn.bg--error .btn__text i { - color: #fff; -} -@media all and (min-width: 768px) { - .btn + .btn { - margin-left: 1.85714286em; - } -} -.btn:first-child { - margin-left: 0; -} -.btn:last-child { - margin-right: 0; -} -.btn--xs { - padding-top: 0; - padding-bottom: 0; - padding-right: 1.39285714em; - padding-left: 1.39285714em; -} -.btn--sm { - padding-top: 0.30952381em; - padding-bottom: 0.30952381em; - padding-right: 1.85714286em; - padding-left: 1.85714286em; -} -.btn--lg { - padding-top: 0.58035714em; - padding-bottom: 0.58035714em; - padding-right: 3.48214286em; - padding-left: 3.48214286em; -} -.btn--lg .btn__text { - font-size: 1.07142857em; -} -.btn--primary, -.btn--primary:visited { - background: #2374ab; - border-color: #2374ab; -} -.btn--primary .btn__text, -.btn--primary:visited .btn__text { - color: #fff; -} -.btn--primary .btn__text i, -.btn--primary:visited .btn__text i { - color: #fff; -} -.btn--primary:hover { - background: #2782c0; -} -.btn--primary:active { - background: #1f6696; -} -.btn--primary-1, -.btn--primary-1:visited { - background: #2c3d55; - border-color: #2c3d55; -} -.btn--primary-1 .btn__text, -.btn--primary-1:visited .btn__text { - color: #fff; -} -.btn--primary-1:hover { - background: #354966; -} -.btn--primary-1:active { - background: #233144; -} -.btn--primary-2, -.btn--primary-2:visited { - background: #ff8484; - border-color: #ff8484; -} -.btn--primary-2 .btn__text, -.btn--primary-2:visited .btn__text { - color: #fff; -} -.btn--primary-2:hover { - background: #ff9e9e; -} -.btn--primary-2:active { - background: #ff6a6a; -} -.btn--secondary { - background: #fafafa; - border-color: #fafafa; -} -.btn--secondary:hover { - background: #ffffff; -} -.btn--secondary:active { - background: #f5f5f5; -} -.btn--white { - background: #fff; - color: #252525; - border-color: #fff; -} -.btn--white i { - color: #252525; -} -.btn--transparent { - background: none; - border-color: rgba(0, 0, 0, 0); - padding-left: 0; - padding-right: 0; -} -.btn--transparent.btn--white .btn__text { - color: #fff; -} -.btn--unfilled { - background: none; -} -.btn--unfilled.btn--white .btn__text { - color: #fff; -} -.btn--unfilled.btn--white i { - color: #fff; -} -.btn--floating { - position: fixed; - bottom: 3.71428571em; - right: 3.71428571em; - z-index: 10; -} -/**! 07. Icons **/ -.icon { - line-height: 1em; - font-size: 3.14285714em; -} -.icon--xs { - font-size: 1em; -} -.icon--sm { - font-size: 2.35714286em; -} -.icon--lg { - font-size: 5.57142857em; -} -/**! 08. Lists **/ -ul:last-child { - margin: 0; -} -.list-inline li { - padding: 0 1em; - margin-left: 0; -} -.list-inline li:first-child { - padding-left: 0; -} -.list-inline li:last-child { - padding-right: 0; -} -.list-inline.list-inline--narrow li { - padding: 0 .5em; -} -.list-inline.list-inline--wide li { - padding: 0 2em; -} -/**! 09. Lightbox **/ -.lb-outerContainer { - border-radius: 0; -} -.lb-outerContainer .lb-container { - padding: 0; -} -.lb-outerContainer .lb-container img { - margin: 0; -} -.lightbox-gallery { - overflow: hidden; -} -.lightbox-gallery li { - float: left; -} -.lightbox-gallery li img { - margin: 0; - width: 100%; -} -.lightbox-gallery.gallery--gaps li { - padding: 0.46428571em; -} -/**! 10. Menus **/ -.menu-horizontal > li:not(:hover) > a, -.menu-horizontal > li:not(:hover) > span, -.menu-horizontal > li:not(:hover) > .modal-instance > .modal-trigger { - opacity: .5; -} -.menu-horizontal > li > a, -.menu-horizontal > li > span, -.menu-horizontal > li > .modal-instance > .modal-trigger { - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; - color: #252525; -} -.menu-horizontal > li > a:hover, -.menu-horizontal > li > span:hover, -.menu-horizontal > li > .modal-instance > .modal-trigger:hover { - color: #252525; -} -.bg--dark .menu-horizontal > li > a, -.bg--dark .menu-horizontal > li > span { - color: #fff; -} -.bg--dark .menu-horizontal > li > a:hover, -.bg--dark .menu-horizontal > li > span:hover { - color: #fff; -} -.menu-vertical { - width: 100%; -} -.menu-vertical li { - width: 100%; -} -.menu-vertical li a { - font-weight: normal; -} -@media all and (min-width: 990px) { - .menu-horizontal { - display: inline-block; - } - .menu-horizontal > li { - display: inline-block; - } - .menu-horizontal > li:not(:last-child) { - margin-right: 1.85714286em; - } - .menu-vertical { - display: inline-block; - } - .menu-vertical li { - white-space: nowrap; - } - .menu-vertical .dropdown__container { - top: 0; - } - .menu-vertical .dropdown__container .dropdown__content:not([class*='bg-']) { - background: #ffffff; - } - .menu-vertical .dropdown__container .dropdown__content { - transform: translateX(75%); - } -} -/**! 11. Dropdowns **/ -.dropdown { - position: relative; -} -.dropdown .dropdown__container { - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; - opacity: 0; - pointer-events: none; - position: absolute; - z-index: 999; -} -.dropdown .dropdown__container .dropdown__container:before { - height: 0; -} -.dropdown .dropdown__content { - padding: 1.85714286em; -} -.dropdown .dropdown__content:not([class*='col-']) { - width: 18.57142857em; -} -.dropdown .dropdown__content:not([class*='bg-']) { - background: #ffffff; -} -.dropdown .dropdown__content:not([class='bg--dark']) .menu-vertical a { - color: #666666; -} -.dropdown .dropdown__trigger { - cursor: pointer; - user-select: none; -} -.dropdown.dropdown--active > .dropdown__container { - opacity: 1; -} -.dropdown.dropdown--active > .dropdown__container > .container > .row > .dropdown__content { - pointer-events: all; -} -@media all and (min-width: 991px) { - .dropdown .dropdown__container:before { - height: 0.92857143em; - width: 100%; - content: ''; - display: block; - } - .dropdown .dropdown__content.dropdown__content--md { - padding: 2.78571429em; - } - .dropdown .dropdown__content.dropdown__content--lg { - padding: 3.71428571em; - } - .dropdown .dropdown__content.dropdown__content--xlg { - padding: 4.64285714em; - } -} -@media all and (max-width: 767px) { - .dropdown .dropdown__container { - min-width: 100%; - position: relative; - display: none; - } - .dropdown .dropdown__content { - padding: 1.85714286em; - left: 0 !important; - } - .dropdown.dropdown--active > .dropdown__container { - display: block; - } -} -body.dropdowns--hover .dropdown:not(.dropdown--click):hover > .dropdown__container { - opacity: 1; -} -body.dropdowns--hover .dropdown:not(.dropdown--click):hover > .dropdown__container:before { - pointer-events: all; -} -body.dropdowns--hover .dropdown:not(.dropdown--click):hover > .dropdown__container .dropdown__content { - pointer-events: all; -} -body:not(.dropdowns--hover) .dropdown.dropdown--hover:hover > .dropdown__container { - opacity: 1; -} -body:not(.dropdowns--hover) .dropdown.dropdown--hover:hover > .dropdown__container:before { - pointer-events: all; -} -body:not(.dropdowns--hover) .dropdown.dropdown--hover:hover > .dropdown__container .dropdown__content { - pointer-events: all; -} -@media all and (max-width: 990px) { - body.dropdowns--hover .dropdown:not(.dropdown--click).dropdown--active > .dropdown__container { - display: block; - } - body.dropdowns--hover .dropdown:not(.dropdown--click).dropdown--active > .dropdown__container:before { - pointer-events: all; - } -} -@media all and (max-width: 767px) { - .dropdown.dropdown--absolute .dropdown__container { - position: absolute; - } -} -/**! 12. Form Elements **/ -form { - max-width: 100%; -} -form + form { - margin-top: 30px; -} -form:before, -form:after { - content: "."; - display: block; - height: 0; - overflow: hidden; -} -form:after { - clear: both; -} -label { - margin: 0; - font-size: 1.14285714em; - font-weight: 400; -} -input[type], -textarea, -select { - -webkit-appearance: none; - background: #fcfcfc; - padding: 0.46428571em; - border-radius: 6px; - border: 1px solid #ececec; -} -input[type]:focus, -textarea:focus, -select:focus { - outline: none; -} -input[type]:active, -textarea:active, -select:active { - outline: none; -} -input[type]::-webkit-input-placeholder, -textarea::-webkit-input-placeholder, -select::-webkit-input-placeholder { - color: #b3b3b3; - font-size: 1.14285714em; -} -input[type]:-moz-placeholder, -textarea:-moz-placeholder, -select:-moz-placeholder { - /* Firefox 18- */ - color: #b3b3b3; - font-size: 1.14285714em; -} -input[type]::-moz-placeholder, -textarea::-moz-placeholder, -select::-moz-placeholder { - /* Firefox 19+ */ - color: #b3b3b3; - font-size: 1.14285714em; -} -input[type]:-ms-input-placeholder, -textarea:-ms-input-placeholder, -select:-ms-input-placeholder { - color: #b3b3b3; - font-size: 1.14285714em; -} -input[type="image"] { - border: none; - padding: none; - width: auto; -} -textarea { - display: block; - width: 100%; - max-width: 100%; -} -select { - cursor: pointer; - padding-right: 1.85714286em; - -webkit-appearance: none; -} -select::ms-expand { - display: none; -} -input[type="submit"] { - background: none; - outline: none; - border: none; - background: #2374ab; - padding: 0.46428571em 2.78571429em 0.46428571em 2.78571429em; - color: #fff; -} -@keyframes load { - 0% { - opacity: 0; - width: 0; - } - 50% { - width: 100%; - opacity: .8; - left: 0; - } - 100% { - left: 100%; - opacity: 0; - } -} -button { - background: none; -} -button[type="submit"].btn--loading { - position: relative; - overflow: hidden; - pointer-events: none; - color: rgba(0, 0, 0, 0); -} -button[type="submit"].btn--loading * { - opacity: 0; -} -button[type="submit"].btn--loading:after { - content: ''; - position: absolute; - width: 0; - height: 100%; - background: #ddd; - animation: load 1.5s ease-out infinite; - left: 0; - top: 0; -} -button[type="submit"].btn--loading .btn__text { - opacity: 0; -} -button:focus { - outline: none !important; -} -button.bg--error { - color: #fff; -} -.input-icon { - position: relative; -} -.input-icon i { - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; - cursor: default; - position: absolute; -} -.input-checkbox, -.input-radio, -.input-select { - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; - display: inline-block; -} -.input-checkbox input, -.input-radio input, -.input-select input { - opacity: 0 !important; - height: 0 !important; - width: 0 !important; - position: absolute !important; -} -.input-checkbox label, -.input-radio label, -.input-select label { - display: block !important; - cursor: pointer; -} -.input-checkbox { - padding: 0; -} -.input-checkbox label { - width: 1.85714286em; - height: 1.85714286em; - border-radius: 6px; - background: #000; -} -.input-radio { - padding: 0; -} -.input-radio label { - width: 1.85714286em; - height: 1.85714286em; - border-radius: 50%; - background: #000; -} -.input-select { - position: relative; -} -.input-select i { - position: absolute; - top: 50%; - transform: translateY(-50%); - -webkit-transform: translateY(-50%); - right: 1em; - font-size: .87em; -} -.input-file { - position: relative; - display: inline-block; -} -.input-file input { - display: none; -} -.form-error { - margin-top: 1.5625em; - padding: 0.78125em; - background: #D84D4D; - color: #fff; - position: fixed; - min-width: 350px; - left: 50%; - bottom: 1.5625em; - transform: translate3d(-50%, 0, 0); - -webkit-transform: translate3d(-50%, 0, 0); - z-index: 999; - box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); - box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1); -} -.form-success { - margin-top: 1.5625em; - padding: 0.78125em; - background: #1DC020; - color: #fff; - position: fixed; - min-width: 350px; - left: 50%; - bottom: 1.5625em; - transform: translate3d(-50%, 0, 0); - -webkit-transform: translate3d(-50%, 0, 0); - z-index: 999; - box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); - box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1); -} -.attempted-submit .field-error { - border-color: #D84D4D !important; -} -.attempted-submit div.recaptcha.field-error { - border-color: #D84D4D !important; - border-style: solid; - border: 1px solid; - border-radius: 5px; - padding: 5px; -} -div.recaptcha iframe { - min-height: 0; -} -/**! 13. Accordions **/ -.accordion li .accordion__title, -.accordion li .accordion__content, -.accordion li .accordion__content * { - transition: 0.3s linear; - -webkit-transition: 0.3s linear; - -moz-transition: 0.3s linear; -} -.accordion li .accordion__title { - cursor: pointer; - padding: 0.46428571em 0.92857143em; - border: 1px solid #ececec; - border-bottom: none; - background: none; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; -} -.accordion li:last-child .accordion__title { - border-bottom: 1px solid #ececec; -} -.accordion li .accordion__content { - opacity: 0; - visibility: hidden; - max-height: 0; -} -.accordion li .accordion__content > * { - display: none; -} -.accordion li .accordion__content > *:first-child { - padding-top: 0; -} -.accordion li .accordion__content > *:last-child { - padding-bottom: 0; -} -.accordion li.active .accordion__title { - background: #2374ab; - border-bottom: 1px solid #ececec; -} -.accordion li.active .accordion__content { - opacity: 1; - visibility: visible; - max-height: 500px; -} -.accordion li.active .accordion__content > * { - display: inline-block; -} -/**! 14. Breadcrumbs **/ -.breadcrumb { - padding: 0; - margin: 0; - background: none; - display: inline-block; -} -.breadcrumb li { - font-size: 1em; -} -.breadcrumb li + li:before { - padding: 0 0.46428571em; -} -/**! 15. Pie Charts **/ -.radial { - position: relative; -} -.radial .radial__label { - position: absolute; - top: 50%; - left: 50%; - transform: translateX(-50%) translateY(-50%); - -webkit-transform: translateX(-50%) translateY(-50%); - margin-bottom: 0; -} -/**! 16. Tabs **/ -.tabs { - display: block; - margin-bottom: 0; -} -.tabs > li { - display: inline-block; - opacity: .5; - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; -} -.tabs > .active, -.tabs:hover { - opacity: 1; -} -.tabs .tab__title { - cursor: pointer; -} -.tabs .tab__title:not(.btn) { - padding: 0 1.85714286em; -} -.tabs li:first-child .tab__title:not(.btn) { - padding-left: 0; -} -.tabs .tab__content { - display: none; -} -.tabs-content { - margin-top: 1em; -} -.tabs-content li > .tab__content { - width: 100%; - display: none; -} -.tabs-content > .active > .tab__content { - display: block; -} -.tabs-container[data-content-align="left"] .tabs-content { - text-align: left; -} -@media all and (max-width: 767px) { - .tabs-content > li:not(.active) .tab__content { - display: none !important; - } -} -/**! 17. Boxes **/ -.boxed { - position: relative; - overflow: hidden; - padding: 1.85714286em; - margin-bottom: 30px; -} -.boxed.boxed--lg { - padding: 2.78571429em; -} -.boxed.boxed--sm { - padding: 1.23809524em; -} -.boxed.boxed--border { - border: 1px solid #ececec; -} -.boxed > div[class*='col-']:first-child:not(.boxed) { - padding-left: 0; -} -.boxed > div[class*='col-']:last-child:not(.boxed) { - padding-right: 0; -} -img + .boxed { - margin-top: -1.85714286em; -} -@media all and (max-width: 767px) { - .boxed { - padding: 1.23809524em; - margin-bottom: 15px; - } - .boxed.boxed--lg { - padding: 1.23809524em; - } - .boxed div[class*='col-']:not(.boxed) { - padding: 0; - } - .boxed:last-child { - margin-bottom: 15px; - } -} -/**! 18. Sliders Flickity **/ -.slides:not(.flickity-enabled) li.imagebg:not(:first-child) { - display: none; -} -.slides:not(.flickity-enabled) li.imagebg:first-child { - background: #252525; - animation: backgroundLoad .5s ease alternate infinite; -} -.slides:not(.flickity-enabled) li.imagebg:first-child .container { - opacity: 0; -} -@keyframes backgroundLoad { - 0% { - background: #252525; - } - 100% { - background: #3f3f3f; - } -} -.slider.height-10 { - height: auto; -} -.slider.height-10 .slides .flickity-slider > li { - height: 10vh; - padding: 0; -} -@media all and (min-width: 768px) { - .slider.height-10 .slides li.imagebg { - min-height: 10vh; - } -} -.slider.height-20 { - height: auto; -} -.slider.height-20 .slides .flickity-slider > li { - height: 20vh; - padding: 0; -} -@media all and (min-width: 768px) { - .slider.height-20 .slides li.imagebg { - min-height: 20vh; - } -} -.slider.height-30 { - height: auto; -} -.slider.height-30 .slides .flickity-slider > li { - height: 30vh; - padding: 0; -} -@media all and (min-width: 768px) { - .slider.height-30 .slides li.imagebg { - min-height: 30vh; - } -} -.slider.height-40 { - height: auto; -} -.slider.height-40 .slides .flickity-slider > li { - height: 40vh; - padding: 0; -} -@media all and (min-width: 768px) { - .slider.height-40 .slides li.imagebg { - min-height: 40vh; - } -} -.slider.height-50 { - height: auto; -} -.slider.height-50 .slides .flickity-slider > li { - height: 50vh; - padding: 0; -} -@media all and (min-width: 768px) { - .slider.height-50 .slides li.imagebg { - min-height: 50vh; - } -} -.slider.height-60 { - height: auto; -} -.slider.height-60 .slides .flickity-slider > li { - height: 60vh; - padding: 0; -} -@media all and (min-width: 768px) { - .slider.height-60 .slides li.imagebg { - min-height: 60vh; - } -} -.slider.height-70 { - height: auto; -} -.slider.height-70 .slides .flickity-slider > li { - height: 70vh; - padding: 0; -} -@media all and (min-width: 768px) { - .slider.height-70 .slides li.imagebg { - min-height: 70vh; - } -} -.slider.height-80 { - height: auto; -} -.slider.height-80 .slides .flickity-slider > li { - height: 80vh; - padding: 0; -} -@media all and (min-width: 768px) { - .slider.height-80 .slides li.imagebg { - min-height: 80vh; - } -} -.slider.height-90 { - height: auto; -} -.slider.height-90 .slides .flickity-slider > li { - height: 90vh; - padding: 0; -} -@media all and (min-width: 768px) { - .slider.height-90 .slides li.imagebg { - min-height: 90vh; - } -} -.slider.height-100 { - height: auto; -} -.slider.height-100 .slides .flickity-slider > li { - height: 100vh; - padding: 0; -} -@media all and (min-width: 768px) { - .slider.height-100 .slides li.imagebg { - min-height: 100vh; - } -} -.slider .slides .flickity-slider > li:not([class*='col-']) { - width: 100%; -} -.slider .slides.slides--gapless li[class*='col-'] { - padding-left: 0; - padding-right: 0; -} -.slider[data-arrows="true"].slider--arrows-hover:not(:hover) .flickity-prev-next-button { - opacity: 0; -} -.slider[data-paging="true"]:not(section) { - margin-bottom: 3.71428571em; -} -.slider[data-paging="true"]:not(section) .flickity-page-dots { - bottom: -3.71428571em; -} -.slider[data-paging="true"]:not([class*='text-']) .flickity-page-dots { - text-align: center; -} -.slider[data-children="1"] .flickity-prev-next-button { - display: none; -} -.slider:not([data-paging="true"]) .slides { - margin: 0; -} -.slider.controls--dark .flickity-page-dots .dot { - background: #252525; -} -.slider.controls--dark .flickity-prev-next-button:before { - color: #252525; -} -section.slider { - padding: 0; -} -section.slider.height-10 { - height: auto; -} -section.slider.height-10 .slides .flickity-slider > li { - height: 10vh; - padding: 0; -} -@media all and (min-width: 768px) { - section.slider.height-10 .slides li.imagebg { - min-height: 10vh; - } -} -section.slider.height-20 { - height: auto; -} -section.slider.height-20 .slides .flickity-slider > li { - height: 20vh; - padding: 0; -} -@media all and (min-width: 768px) { - section.slider.height-20 .slides li.imagebg { - min-height: 20vh; - } -} -section.slider.height-30 { - height: auto; -} -section.slider.height-30 .slides .flickity-slider > li { - height: 30vh; - padding: 0; -} -@media all and (min-width: 768px) { - section.slider.height-30 .slides li.imagebg { - min-height: 30vh; - } -} -section.slider.height-40 { - height: auto; -} -section.slider.height-40 .slides .flickity-slider > li { - height: 40vh; - padding: 0; -} -@media all and (min-width: 768px) { - section.slider.height-40 .slides li.imagebg { - min-height: 40vh; - } -} -section.slider.height-50 { - height: auto; -} -section.slider.height-50 .slides .flickity-slider > li { - height: 50vh; - padding: 0; -} -@media all and (min-width: 768px) { - section.slider.height-50 .slides li.imagebg { - min-height: 50vh; - } -} -section.slider.height-60 { - height: auto; -} -section.slider.height-60 .slides .flickity-slider > li { - height: 60vh; - padding: 0; -} -@media all and (min-width: 768px) { - section.slider.height-60 .slides li.imagebg { - min-height: 60vh; - } -} -section.slider.height-70 { - height: auto; -} -section.slider.height-70 .slides .flickity-slider > li { - height: 70vh; - padding: 0; -} -@media all and (min-width: 768px) { - section.slider.height-70 .slides li.imagebg { - min-height: 70vh; - } -} -section.slider.height-80 { - height: auto; -} -section.slider.height-80 .slides .flickity-slider > li { - height: 80vh; - padding: 0; -} -@media all and (min-width: 768px) { - section.slider.height-80 .slides li.imagebg { - min-height: 80vh; - } -} -section.slider.height-90 { - height: auto; -} -section.slider.height-90 .slides .flickity-slider > li { - height: 90vh; - padding: 0; -} -@media all and (min-width: 768px) { - section.slider.height-90 .slides li.imagebg { - min-height: 90vh; - } -} -section.slider.height-100 { - height: auto; -} -section.slider.height-100 .slides .flickity-slider > li { - height: 100vh; - padding: 0; -} -@media all and (min-width: 768px) { - section.slider.height-100 .slides li.imagebg { - min-height: 100vh; - } -} -section.slider[data-paging="true"] .flickity-page-dots { - bottom: 1.85714286em; -} -section.slider:not(.image--light)[data-paging="true"] .flickity-page-dots .dot { - background: #fff; -} -section.slider .slides { - margin: 0; -} -@media all and (max-width: 767px) { - section.slider[class*='height-'] .slides .flickity-slider > li { - height: auto; - padding: 7.42857143em 0; - } - section.slider.space--lg .slides .flickity-slider > li { - padding: 11.14285714em 0; - } - section.slider.space--xlg .slides .flickity-slider > li { - padding: 11.14285714em 0; - } -} -section.bg--dark .slider[data-paging="true"] .flickity-page-dots .dot, -section.bg--primary .slider[data-paging="true"] .flickity-page-dots .dot { - background: #fff; -} -.flickity-page-dots .dot { - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; - width: 8px; - height: 8px; - border-radius: 50%; - background: #252525; - border: none; - margin: 0 0.46428571em; -} -.flickity-page-dots .dot:hover:not(.is-selected) { - opacity: .6; -} -.text-center .flickity-page-dots, -section.slider .flickity-page-dots { - text-align: center; -} -.flickity-prev-next-button svg { - display: none; -} -.flickity-prev-next-button:before { - font-family: 'stack-interface'; - content: "\e80c"; - font-size: 1em; - font-weight: normal; -} -.flickity-prev-next-button.previous:before { - content: "\e80b"; -} -.imagebg:not(.image--light) .flickity-page-dots .dot, -.bg--dark .flickity-page-dots .dot { - background: #fff; -} -/**! 19. Hover Elements **/ -.hover-element { - position: relative; - overflow: hidden; - margin-bottom: 30px; -} -.hover-element * { - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; -} -.hover-element .hover-element__reveal { - position: absolute; - top: 0; - left: 0; - opacity: 0; - width: 100%; - height: 100%; -} -.hover-element .hover-element__reveal .boxed { - height: 100%; -} -.hover-element:hover .hover-element__reveal, -.hover-element.hover--active .hover-element__reveal { - opacity: 1; -} -.hover-element img { - margin-bottom: 0; -} -@media all and (max-width: 1024px) { - .hover-element { - cursor: pointer; - } -} -.row:last-child div[class*='col-']:last-child .hover-element { - margin-bottom: 0; -} -/**! 20. Masonry **/ -.masonry .masonry__container.masonry--active .masonry__item { - opacity: 1; - pointer-events: initial; -} -.masonry .masonry__container .masonry__item { - opacity: 0; - pointer-events: none; -} -.masonry .masonry__filters li { - display: inline-block; - cursor: pointer; - text-transform: capitalize; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; -} -.masonry .masonry__filters li.active { - cursor: default; -} -.masonry.masonry--gapless .masonry__item { - padding: 0 !important; - margin-bottom: 0; -} -/**! 21. Modals **/ -.modal-instance .modal-body { - display: none; -} -.modal-container { - transition: 0.3s linear; - -webkit-transition: 0.3s linear; - -moz-transition: 0.3s linear; - padding: 0; - visibility: hidden; - opacity: 0; - z-index: 999; - pointer-events: none; - position: fixed; - width: 100%; - height: 100%; - top: 0; - left: 0; -} -.modal-container.modal-active { - opacity: 1; - visibility: visible; - pointer-events: all; -} -.modal-container:before { - background: rgba(0, 0, 0, 0.85); - content: ''; - position: fixed; - width: 100%; - height: 100%; - top: 0; - left: 0; - z-index: 1; -} -.modal-container .modal-content { - backface-visibility: hidden; - position: fixed; - z-index: 2; - top: 50%; - left: 50%; - max-height: 100%; - overflow-y: scroll; - border: none; - transform: translate3d(-50%, -50%, 0); - -webkit-transform: translate3d(-50%, -50%, 0); - padding: 0; - border-radius: 0; - box-shadow: none; -} -.modal-container .modal-content:not(.height--natural) { - width: 50%; - height: 50%; -} -.modal-container .modal-content .modal-close-cross { - cursor: pointer; - position: absolute; - opacity: .5; - transition: 0.1s linear; - -webkit-transition: 0.1s linear; - -moz-transition: 0.1s linear; - top: 1em; - right: 1em; - z-index: 99; -} -.modal-container .modal-content .modal-close-cross:before { - content: '\00D7'; - font-size: 1.5em; -} -.modal-container .modal-content .modal-close-cross:hover { - opacity: 1; -} -.modal-container .modal-content.imagebg:not(.image--light) .modal-close-cross:before { - color: #fff; -} -.modal-container .modal-content iframe { - width: 100%; - outline: none; - border: none; - height: 100%; - backface-visibility: hidden; -} -.modal-container .modal-content iframe:first-child + .modal-close-cross:last-child { - top: -3.71428571em; -} -@media all and (max-width: 767px) { - .modal-container .modal-content { - width: 97% !important; - height: auto !important; - padding-top: 2em; - padding-bottom: 2em; - } -} -/**! 22. Maps **/ -.map-container { - position: relative; - overflow: hidden; -} -.map-container iframe, -.map-container .map-canvas { - position: absolute; - width: 100%; - height: 100%; - top: 0; -} -/**! 23. Parallax **/ -.parallax > .background-image-holder, -.parallax .slides li > .background-image-holder { - height: 100%; - min-height: 100vh; - top: -50vh; - transition: opacity 0.3s ease !important; - -webkit-transition: opacity 0.3s ease !important; - -webkit-transform-style: preserve-3d; -} -.parallax:first-child .slides li > .background-image-holder, -.parallax:first-child .background-image-holder { - top: 0; -} -.main-container > a:first-child + .parallax .background-image-holder { - top: 0; -} -@media all and (max-width: 1024px) { - .parallax > .background-image-holder, - .parallax .slides li > .background-image-holder { - -webkit-transition: transform 0.016s linear !important; - transition: transform 0.016s linear !important; - } - .parallax.parallax-disable-mobile .background-image-holder, - .parallax.parallax-disable-mobile .slides li > .background-image-holder { - top: 0 !important; - transform: none !important; - } -} -/**! 24. Notifications **/ -.notification { - max-width: 100%; - box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); - position: fixed; - z-index: 99; - pointer-events: none; - padding: 0; - margin: 1em; - opacity: 0; - transition: 0.3s linear; - -webkit-transition: 0.3s linear; - -moz-transition: 0.3s linear; -} -.notification:not([class*='bg-']) { - background: #fff; -} -.notification[class*='col-'] { - min-width: 400px; -} -.notification .notification-close-cross { - position: absolute; - top: 1em; - z-index: 99; - right: 1em; - cursor: pointer; - transition: 0.1s linear; - -webkit-transition: 0.1s linear; - -moz-transition: 0.1s linear; - opacity: .7; -} -.notification .notification-close-cross:before { - content: '\00D7'; - font-size: 1.5em; -} -.notification .notification-close-cross:hover { - opacity: 1; -} -.notification.notification--reveal { - z-index: 99; - pointer-events: initial; -} -.notification.notification--reveal[data-animation="from-bottom"] { - animation: from-bottom 0.3s linear 0s forwards; - -webkit-animation: from-bottom 0.3s linear 0s forwards; - -moz-animation: from-bottom 0.3s linear 0s forwards; -} -.notification.notification--reveal[data-animation="from-top"] { - animation: from-top 0.3s linear 0s forwards; - -webkit-animation: from-top 0.3s linear 0s forwards; - -moz-animation: from-top 0.3s linear 0s forwards; -} -.notification.notification--reveal[data-animation="from-left"] { - animation: from-left 0.3s linear 0s forwards; - -webkit-animation: from-left 0.3s linear 0s forwards; - -moz-animation: from-left 0.3s linear 0s forwards; -} -.notification.notification--reveal[data-animation="from-right"] { - animation: from-right 0.3s linear 0s forwards; - -webkit-animation: from-right 0.3s linear 0s forwards; - -moz-animation: from-right 0.3s linear 0s forwards; -} -.notification.notification--dismissed { - animation: fade-out 0.4s linear 0s forwards !important; - -webkit-animation: fade-out 0.4s linear 0s forwards !important; - -moz-animation: fade-out 0.4s linear 0s forwards !important; - pointer-events: none; -} -.bg--dark + .notification-close-cross:before { - color: #fff; -} -a[data-notification-link] { - text-decoration: none; -} -a[data-notification-link]:hover { - text-decoration: none; -} -@media all and (max-width: 767px) { - .notification[class*='col-'] { - min-width: 0; - } -} -@keyframes from-bottom { - from { - transform: translate3d(0, 100%, 0); - -webkit-transform: translate3d(0, 100%, 0); - opacity: 0; - } - to { - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); - opacity: 1; - } -} -@-moz-keyframes from-bottom { - from { - transform: translate3d(0, 100%, 0); - -webkit-transform: translate3d(0, 100%, 0); - opacity: 0; - } - to { - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); - opacity: 1; - } -} -@-webkit-keyframes from-bottom { - from { - transform: translate3d(0, 100%, 0); - -webkit-transform: translate3d(0, 100%, 0); - opacity: 0; - } - to { - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); - opacity: 1; - } -} -@keyframes from-top { - from { - transform: translate3d(0, -100%, 0); - -webkit-transform: translate3d(0, -100%, 0); - opacity: 0; - } - to { - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); - opacity: 1; - } -} -@-moz-keyframes from-top { - from { - transform: translate3d(0, -100%, 0); - -webkit-transform: translate3d(0, -100%, 0); - opacity: 0; - } - to { - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); - opacity: 1; - } -} -@-webkit-keyframes from-top { - from { - transform: translate3d(0, -100%, 0); - -webkit-transform: translate3d(0, -100%, 0); - opacity: 0; - } - to { - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); - opacity: 1; - } -} -@keyframes from-left { - from { - transform: translate3d(-100%, 0, 0); - -webkit-transform: translate3d(-100%, 0, 0); - opacity: 0; - } - to { - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); - opacity: 1; - } -} -@-moz-keyframes from-left { - from { - transform: translate3d(-100%, 0, 0); - -webkit-transform: translate3d(-100%, 0, 0); - opacity: 0; - } - to { - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); - opacity: 1; - } -} -@-webkit-keyframes from-left { - from { - transform: translate3d(-100%, 0, 0); - -webkit-transform: translate3d(-100%, 0, 0); - opacity: 0; - } - to { - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); - opacity: 1; - } -} -@keyframes from-right { - from { - transform: translate3d(100%, 0, 0); - -webkit-transform: translate3d(100%, 0, 0); - opacity: 1; - } - to { - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); - opacity: 1; - } -} -@-moz-keyframes from-right { - from { - transform: translate3d(100%, 0, 0); - -webkit-transform: translate3d(100%, 0, 0); - opacity: 0; - } - to { - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); - opacity: 1; - } -} -@-webkit-keyframes from-right { - from { - transform: translate3d(100%, 0, 0); - -webkit-transform: translate3d(100%, 0, 0); - opacity: 0; - } - to { - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); - opacity: 1; - } -} -@keyframes fade-out { - 0% { - opacity: 1; - } - 100% { - opacity: 0; - } -} -@-webkit-keyframes fade-out { - 0% { - opacity: 1; - } - 100% { - opacity: 0; - } -} -@-moz-keyframes fade-out { - 0% { - opacity: 1; - } - 100% { - opacity: 0; - } -} -/**! 25. Video **/ -iframe { - width: 100%; - min-height: 350px; - border: none; -} -@media all and (max-width: 767px) { - iframe { - min-height: 220px; - } -} -.videobg { - background: #252525; - position: relative; - overflow: hidden; -} -.videobg .container, -.videobg .background-image-holder { - opacity: 0; - transition: 0.3s linear; - -webkit-transition: 0.3s linear; - -moz-transition: 0.3s linear; -} -.videobg .background-image-holder { - opacity: 0 !important; -} -.videobg.video-active .container { - opacity: 1; -} -.videobg.video-active .loading-indicator { - opacity: 0; - visibility: hidden; -} -.videobg video { - object-fit: cover; - height: 100%; - min-width: 100%; - position: absolute; - top: 0; - z-index: 0 !important; - left: 0; -} -@media all and (max-width: 1024px) { - .videobg .background-image-holder, - .videobg .container { - opacity: 1 !important; - } - .videobg .loading-indicator { - display: none; - } - .videobg video { - display: none; - } -} -.youtube-background { - position: absolute; - height: 100%; - width: 100%; - top: 0; - z-index: 0 !important; -} -.youtube-background .mb_YTPBar { - opacity: 0; - height: 0; - visibility: hidden; -} -@media all and (max-width: 1024px) { - .youtube-background { - display: none; - } -} -.loading-indicator { - position: absolute !important; - top: 50%; - left: 50%; - z-index: 99 !important; - width: 50px; - height: 50px; - margin-top: -25px; - margin-left: -25px; - background-color: #fff; - border-radius: 100%; - -webkit-animation: loading-spinner 1s infinite ease-in-out; - animation: loading-spinner 1s infinite ease-in-out; - transition: 0.3s linear; - -webkit-transition: 0.3s linear; - -moz-transition: 0.3s linear; -} -@-webkit-keyframes loading-spinner { - 0% { - -webkit-transform: scale(0); - } - 100% { - -webkit-transform: scale(1); - opacity: 0; - } -} -@keyframes loading-spinner { - 0% { - -webkit-transform: scale(0); - transform: scale(0); - } - 100% { - -webkit-transform: scale(1); - transform: scale(1); - opacity: 0; - } -} -.video-cover { - position: relative; -} -.video-cover video { - max-width: 100%; -} -.video-cover iframe { - background: #252525; -} -.video-cover .background-image-holder { - z-index: 3; -} -.video-cover .video-play-icon { - position: absolute; - top: 50%; - left: 50%; - transform: translate3d(-50%, -50%, 0); - -webkit-transform: translate3d(-50%, -50%, 0); -} -.video-cover .video-play-icon, -.video-cover .background-image-holder { - transition: 0.3s linear; - -webkit-transition: 0.3s linear; - -moz-transition: 0.3s linear; -} -.video-cover.reveal-video .video-play-icon, -.video-cover.reveal-video .background-image-holder { - opacity: 0 !important; - pointer-events: none; -} -.video-cover[data-scrim-bottom]:before, -.video-cover[data-overlay]:before, -.video-cover[data-scrim-top]:before { - transition: 0.3s linear; - -webkit-transition: 0.3s linear; - -moz-transition: 0.3s linear; - z-index: 4; -} -.video-cover.reveal-video[data-scrim-bottom]:before, -.video-cover.reveal-video[data-overlay]:before, -.video-cover.reveal-video[data-scrim-top]:before { - opacity: 0; - pointer-events: none; -} -.video-play-icon { - width: 7.42857143em; - height: 7.42857143em; - border-radius: 50%; - position: relative; - z-index: 4; - display: inline-block; - border: 2px solid #ffffff; - cursor: pointer; - background: #ffffff; -} -.video-play-icon.video-play-icon--sm { - width: 3.71428571em; - height: 3.71428571em; -} -.video-play-icon.video-play-icon--sm:before { - border-width: 4px 0 4px 9px; -} -.video-play-icon.video-play-icon--xs { - width: 1.85714286em; - height: 1.85714286em; -} -.video-play-icon.video-play-icon--xs:before { - border-width: 3px 0 3px 6px; - margin-left: -3px; -} -.video-play-icon.bg--primary:before { - border-color: transparent transparent transparent #fff; -} -.video-play-icon:before { - position: absolute; - top: 50%; - margin-top: -5px; - left: 50%; - margin-left: -4px; - content: ''; - width: 0; - height: 0; - border-style: solid; - border-width: 6px 0 6px 12px; - border-color: transparent transparent transparent #ffffff; - border-color: transparent transparent transparent #808080; -} -.video-play-icon.video-play-icon--dark { - border-color: #252525; - background: #252525; -} -.video-play-icon.video-play-icon--dark:before { - border-color: transparent transparent transparent #252525; -} -.video-play-icon.video-play-icon--dark:before { - border-color: transparent transparent transparent #fff; -} -@media all and (max-width: 767px) { - .video-play-icon { - width: 4.95238095em; - height: 4.95238095em; - } -} -div[class*='col-'][class*='-12']:not([class*='xs-12']) .video-cover iframe { - min-height: 550px; -} -@media all and (max-width: 990px) { - div[class*='col-'][class*='-12']:not([class*='xs-12']) .video-cover iframe { - min-height: 350px; - } -} -div[class*='col-'][class*='-10'] .video-cover iframe { - min-height: 450px; -} -div[class*='col-'][class*='-8'] .video-cover iframe { - min-height: 400px; -} -div[class*='col-'][class*='-6'] .video-cover iframe { - min-height: 350px; -} -@media all and (max-width: 1200px) { - div[class*='col-'][class*='-6'] .video-cover iframe { - min-height: 300px; - } -} -@media all and (max-width: 990px) { - div[class*='col-'][class*='-6'] .video-cover iframe { - min-height: 220px; - } -} -@media all and (max-width: 767px) { - div[class*='col-'] .video-cover iframe { - min-height: 220px !important; - } -} -.modal-container video { - max-width: 100%; -} -/**! 26. Colors **/ -body { - background: #ffffff; -} -.color--primary { - color: #2374ab !important; -} -a { - color: #2374ab; -} -.color--primary-1 { - color: #2c3d55 !important; -} -.color--primary-2 { - color: #ff8484 !important; -} -.color--white { - color: #fff; -} -.color--dark { - color: #252525; -} -.color--success { - color: #4ebf56; -} -.color--error { - color: #e23636; -} -.bg--dark { - background: #252525; -} -.bg--dark:not(.nav-bar):not(.bar) { - color: #ffffff; -} -.bg--dark:not(.nav-bar):not(.bar) h1, -.bg--dark:not(.nav-bar):not(.bar) h2, -.bg--dark:not(.nav-bar):not(.bar) h3, -.bg--dark:not(.nav-bar):not(.bar) h4, -.bg--dark:not(.nav-bar):not(.bar) h5, -.bg--dark:not(.nav-bar):not(.bar) h6, -.bg--dark:not(.nav-bar):not(.bar) i, -.bg--dark:not(.nav-bar):not(.bar) span:not(.btn__text), -.bg--dark:not(.nav-bar):not(.bar) p { - color: #ffffff; -} -.bg--dark:not(.nav-bar):not(.bar) a:not(.btn) { - color: #fff; -} -.bg--site { - background: #ffffff; -} -.bg--secondary { - background: #fafafa; -} -.bg--primary { - background: #2374ab; -} -.bg--primary p, -.bg--primary span, -.bg--primary ul, -.bg--primary a:not(.btn) { - color: #fff; -} -.bg--primary h1, -.bg--primary h2, -.bg--primary h3, -.bg--primary h4, -.bg--primary h5, -.bg--primary h6, -.bg--primary i { - color: #fff; -} -.bg--primary .color--primary { - color: #fff !important; -} -.bg--white { - background: #fff; -} -.bg--white p, -.bg--white span, -.bg--white ul, -.bg--white a:not(.btn) { - color: #666666; -} -.bg--white h1, -.bg--white h2, -.bg--white h3, -.bg--white h4, -.bg--white h5, -.bg--white h6, -.bg--white i { - color: #252525; -} -.bg--error { - background: #e23636; -} -.bg--success { - background: #4ebf56; -} -.imagebg:not(.image--light) .bg--white p, -.imagebg:not(.image--light) .bg--white span, -.imagebg:not(.image--light) .bg--white ul, -.imagebg:not(.image--light) .bg--white a:not(.btn) { - color: #666666; -} -.imagebg:not(.image--light) .bg--white h1, -.imagebg:not(.image--light) .bg--white h2, -.imagebg:not(.image--light) .bg--white h3, -.imagebg:not(.image--light) .bg--white h4, -.imagebg:not(.image--light) .bg--white h5, -.imagebg:not(.image--light) .bg--white h6, -.imagebg:not(.image--light) .bg--white i { - color: #252525; -} -.imagebg:not(.image--light) .bg--secondary { - background: rgba(250, 250, 250, 0.2); -} -.bg--primary-1 { - background: #2c3d55; -} -.bg--primary-1 p, -.bg--primary-1 span, -.bg--primary-1 ul, -.bg--primary-1 a:not(.btn) { - color: #fff; -} -.bg--primary-1 h1, -.bg--primary-1 h2, -.bg--primary-1 h3, -.bg--primary-1 h4, -.bg--primary-1 h5, -.bg--primary-1 h6, -.bg--primary-1 i { - color: #fff; -} -.bg--primary-2 { - background: #ff8484; -} -.bg--primary-2 p, -.bg--primary-2 span, -.bg--primary-2 ul, -.bg--primary-2 a:not(.btn) { - color: #fff; -} -.bg--primary-2 h1, -.bg--primary-2 h2, -.bg--primary-2 h3, -.bg--primary-2 h4, -.bg--primary-2 h5, -.bg--primary-2 h6, -.bg--primary-2 i { - color: #fff; -} -.image-bg:not(.image-light) *:not(a) { - color: #fff; -} -.color--facebook { - color: #3b5998; -} -.color--twitter { - color: #00aced; -} -.color--googleplus { - color: #dd4b39; -} -.color--instagram { - color: #125688; -} -.color--pinterest { - color: #cb2027; -} -.color--dribbble { - color: #ea4c89; -} -.color--behance { - color: #053eff; -} -.bg--facebook { - background: #3b5998; - color: #fff; -} -.bg--twitter { - background: #00aced; - color: #fff; -} -.bg--googleplus { - background: #dd4b39; - color: #fff; -} -.bg--instagram { - background: #125688; - color: #fff; -} -.bg--pinterest { - background: #cb2027; - color: #fff; -} -.bg--dribbble { - background: #ea4c89; - color: #fff; -} -.bg--behance { - background: #053eff; - color: #fff; -} -/**! 27. Image Blocks **/ -.imageblock { - position: relative; - padding: 0; -} -.imageblock > .container, -.imageblock > div[class*='col-']:not(.imageblock__content) { - padding-top: 7.42857143em; - padding-bottom: 7.42857143em; - float: none; - overflow: hidden; -} -.imageblock.imageblock--lg > .container, -.imageblock.imageblock--lg > div[class*='col-']:not(.imageblock__content) { - padding-top: 9.28571429em; - padding-bottom: 9.28571429em; - float: none; - overflow: hidden; -} -.imageblock .imageblock__content { - position: absolute; - height: 100%; - top: 0; - z-index: 2; - padding: 0; -} -.imageblock .imageblock__content .slider { - position: absolute; - width: 100%; - height: 100%; - top: 0; -} -.imageblock .imageblock__content .slider .slides > li { - padding: 0; - min-height: 100%; - position: absolute !important; -} -.imageblock.allow-overflow .imageblock__content { - overflow: visible; -} -@media all and (max-height: 728px) { - .imageblock > .container, - .imageblock > div[class*='col-']:not(.imageblock__content) { - padding-top: 3.71428571em; - padding-bottom: 3.71428571em; - } -} -@media all and (max-width: 767px) { - .imageblock[class*='space-'] { - padding-bottom: 0; - padding-top: 0; - } - .imageblock .imageblock__content { - position: relative; - min-height: 18.57142857em; - } - .imageblock > .container, - .imageblock > div[class*='col-']:not(.imageblock__content) { - padding-top: 5.57142857em; - padding-bottom: 5.57142857em; - float: none; - overflow: hidden; - } - .imageblock.imageblock--lg > .container, - .imageblock.imageblock--lg > div[class*='col-']:not(.imageblock__content) { - padding-top: 5.57142857em; - padding-bottom: 5.57142857em; - float: none; - overflow: hidden; - } -} -/**! 28. MailChimp & Campaign Monitor **/ -form[action*='createsend.com'] * { - transition: 0.3s linear; - -webkit-transition: 0.3s linear; - -moz-transition: 0.3s linear; - opacity: 0; -} -form[action*='createsend.com'].form--active * { - opacity: 1; -} -form[action*='createsend.com'] .input-checkbox + br { - display: none; -} -form[action*='createsend.com'].no-labels label { - display: none; -} -form[action*='createsend.com'] br { - display: none; -} -form[action*='createsend.com'] p > label:first-child { - margin-bottom: 0.92857143em; -} -form[action*='list-manage.com'] h2 { - font-family: 'Open Sans', 'Helvetica', 'Arial', sans-serif; - color: #252525; - font-weight: 300; - font-variant-ligatures: common-ligatures; - margin-top: 0; - margin-bottom: 0; - font-size: 1.35714286em; - line-height: 1.36842105em; - margin-bottom: 1.36842105263158em; - font-weight: 400; -} -form[action*='list-manage.com'] h2.inline-block + .h4.inline-block:not(.typed-text) { - margin-left: 0.68421052631579em; -} -form[action*='list-manage.com'] .input-group ul { - overflow: hidden; -} -form[action*='list-manage.com'] .input-group ul li { - float: left; -} -form[action*='list-manage.com'] * { - transition: 0.3s linear; - -webkit-transition: 0.3s linear; - -moz-transition: 0.3s linear; - opacity: 0; -} -form[action*='list-manage.com'].form--active * { - opacity: 1; -} -form[action*='list-manage.com'].no-labels label { - display: none; -} -form[action*='list-manage.com'] .small-meta { - font-size: 0.5em; -} -/**! 29. Twitter **/ -.twitter-feed .user { - display: none; -} -.twitter-feed .interact { - display: none; -} -.twitter-feed .timePosted { - font-size: .87em; -} -/**! 30. Transitions **/ -[class*='transition--'] { - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; - opacity: 0; -} -[class*='transition--'].transition--active { - opacity: 1; -} -.transition--scale { - transform: scale(0.98); - -webkit-transform: scale(0.98); -} -.transition--scale.transition--active { - opacity: 1; - transform: scale(1); - -webkit-transform: scale(1); -} -.transition--slide { - transform: translate3d(200px, 0, 0); - -webkit-transform: translate3d(200px, 0, 0); - transform: translate3d(30vw, 0, 0); - -webkit-transform: translate3d(30vw, 0, 0); -} -.transition--slide.transition--active { - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); -} -/**! 31. Switchable Sections **/ -.switchable { - position: relative; -} -.switchable div[class*='col-']:first-child { - float: left; - right: auto; -} -.switchable div[class*='col-']:first-child:not([class*='pull']):not([class*='push']) { - left: 0; -} -.switchable div[class*='col-']:last-child { - float: right; - left: auto; -} -.switchable div[class*='col-']:last-child:not([class*='pull']):not([class*='push']) { - right: 0; -} -.switchable.switchable--switch div[class*='col-']:first-child { - float: right; - right: 0; - left: auto; -} -.switchable.switchable--switch div[class*='col-']:first-child:not([class*='pull']):not([class*='push']) { - left: auto; -} -.switchable.switchable--switch div[class*='col-']:last-child { - float: left; - left: 0; - right: auto; -} -.switchable .switchable__text { - margin-top: 3.71428571em; -} -.switchable > div[class*='col-'] { - padding: 0; -} -/**! 32. Typed Effect **/ -.typed-text { - display: inline-block; -} -.typed-text.typed-text--cursor:after { - content: '|'; - font-size: 1.2em; - -webkit-animation: blink 0.7s infinite; - animation: blink 0.7s infinite; - position: relative; - right: 6px; -} -@keyframes blink { - 0% { - opacity: 1; - } - 50% { - opacity: 0; - } - 100% { - opacity: 1; - } -} -@-webkit-keyframes blink { - 0% { - opacity: 1; - } - 50% { - opacity: 0; - } - 100% { - opacity: 1; - } -} -/**! 33. Gradient BG **/ -[data-gradient-bg] { - position: relative; - background: #252525; -} -[data-gradient-bg] > canvas { - position: absolute; - width: 100%; - height: 100%; - top: 0; - left: 0; -} -[data-gradient-bg] > canvas + .background-image-holder { - opacity: .2 !important; -} -/**! 34. Bars **/ -.bar { - padding: 1.85714286em 0; -} -.bar .logo { - margin: 0; - position: relative; - top: 4px; -} -.bar .menu-horizontal { - position: relative; - top: 6px; -} -.bar:not([class*='visible-']) + .bar { - margin-top: 0.92857143em; -} -.bar.bar--xs { - padding: 0.46428571em 0; -} -.bar.bar--sm { - padding: 0.92857143em 0; -} -.bar.bar--lg { - padding: 2.78571429em 0; -} -.bar.bar--lg .logo { - top: 0; -} -.bar.bar--xlg { - padding: 4.64285714em 0; -} -.bar.bar--xlg .logo { - top: 0; -} -.bar.bg--dark .logo-dark { - display: none; -} -.bar:not(.bg--dark):not(.bar--transparent) .logo-light { - display: none; -} -@media all and (max-width: 767px) { - .bar.bar--mobile-sticky[data-scroll-class*='fixed'].pos-fixed { - position: fixed; - width: 100%; - background: #fff; - z-index: 999; - } - .bar.bar--mobile-sticky[data-scroll-class*='fixed'] + .bar.pos-fixed { - top: 3.71428571em; - position: fixed; - width: 100%; - background: #fff; - z-index: 999; - } -} -@media all and (min-width: 991px) { - .bar__module:not(:only-child) { - display: inline-block; - } - .bar__module:not(:last-child) { - margin-right: 0.92857143em; - } - .bar--transparent:not(.bar--dark) { - background: none; - } - .bar--transparent:not(.bar--dark) .logo-dark { - display: none; - } - .bar--transparent:not(.bar--dark) .logo-light { - display: inline-block; - } - .bar--transparent:not(.bar--dark):not(.pos-fixed) .menu-horizontal > li > a, - .bar--transparent:not(.bar--dark):not(.pos-fixed) .menu-horizontal > li > span { - color: #fff; - } - .bar--transparent:not(.bar--dark):not(.pos-fixed) .btn:not([class*='primary']) { - border-color: rgba(255, 255, 255, 0.3); - } - .bar--transparent:not(.bar--dark):not(.pos-fixed) .btn:not([class*='primary']) .btn__text { - color: #fff; - } - .bar--transparent:not(.bar--dark):not(.pos-fixed) .btn:not([class*='primary']):hover { - border-color: rgba(255, 255, 255, 0.7); - } - .bar--absolute { - position: absolute; - } - .bar--absolute, - .pos-fixed { - z-index: 99; - width: 100%; - } - .bar.pos-fixed { - position: fixed; - top: 0; - animation: fadeInDown 0.3s ease-out forwards; - box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); - box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.04); - } - .bar.pos-fixed:not([class*='bg-']) { - background: #ffffff; - } - .bar.pos-fixed:not([class*='bg-']) .logo-dark { - display: inline-block; - } - .bar.pos-fixed:not([class*='bg-']) .logo-light { - display: none; - } - .bar.pos-fixed.bg--dark { - background: #252525; - } -} -@media all and (max-width: 767px) { - .bar__module { - margin-bottom: 0.92857143em; - } - .bar__module + .bar__module { - margin-top: 1.85714286em; - } - .bar__module .btn { - display: block; - } - .bar__module .btn + .btn { - margin-left: 0 !important; - } - .bar__module .btn:not(:last-child) { - margin-bottom: 0.92857143em; - } - .bar + nav.bar { - padding-top: 0; - } -} -/**! 35. Navigation InPage **/ -.page-navigator { - position: fixed; - padding: 0; - top: 50%; - transform: translateY(-50%); - right: 1.85714286em; - z-index: 10; -} -.page-navigator ul { - display: inline-block; - padding: 0.92857143em; - background: rgba(0, 0, 0, 0.4); - border-radius: 1.85714286em; - transition: all .2s ease; -} -.page-navigator ul:hover { - background: rgba(0, 0, 0, 0.6); -} -.page-navigator ul li:not(:last-child) { - margin-bottom: 1.85714286em; -} -@media all and (max-width: 767px) { - .page-navigator { - right: 0; - } - .page-navigator ul { - border-radius: 1.85714286em 0 0 1.85714286em; - padding: 1.85714286em 0.92857143em; - } -} -.page-navigator li a { - width: 8px; - height: 8px; - background: #fff; - border-radius: 50%; - transition: all .2s ease; - display: block; - position: relative; -} -.page-navigator li a:not(:hover) { - opacity: .5; -} -.page-navigator li a.inner-link--active { - opacity: 1; - animation: bulge .5s ease; - -webkit-animation: bulge .5s ease; -} -@keyframes bulge { - 0% { - transform: scale(1); - } - 50% { - transform: scale(1.3); - } - 100% { - transform: scale(1); - } -} -@-webkit-keyframes bulge { - 0% { - transform: scale(1); - } - 50% { - transform: scale(1.3); - } - 100% { - transform: scale(1); - } -} -.page-navigator li a[data-title]:before { - content: attr(data-title); - position: absolute; - right: 12px; - top: -14px; - background: #222; - color: #fff; - border-radius: 6px; - padding: 4px 8px; - display: inline-block; - transition: all .2s ease; - white-space: nowrap; -} -.page-navigator li a[data-title]:not(:hover):before { - opacity: 0; - transform: translateX(-20px); -} -/**! 36. Helper Classes **/ -.clearfix { - overflow: hidden; -} -.clearfix-after:after { - content: ""; - display: table; - clear: both; -} -.allow-overflow { - overflow: visible; -} -.container .row--gapless { - padding-left: 15px; - padding-right: 15px; -} -.container .row--gapless > div[class*='col-'] { - padding: 0; -} -@media all and (max-width: 767px) { - .text-left-xs { - text-align: left; - } -} -@media all and (max-width: 991px) { - .text-left-sm { - text-align: left; - } -} -section > .row--gapless { - padding-left: 0; - padding-right: 0; -} -section > .row--gapless > div[class*='col-'] { - padding: 0; -} -div.right { - float: right; -} -div.left { - float: left; -} -section.text-right > .container:last-child > .row:only-child > div[class*='col-']:only-child { - float: right; -} -/**! 37. Spacing **/ -section, -footer { - padding-top: 7.42857143em; - padding-bottom: 7.42857143em; -} -section.space--xxs, -footer.space--xxs { - padding-top: 1.85714286em; - padding-bottom: 1.85714286em; -} -section.space--xs, -footer.space--xs { - padding-top: 3.71428571em; - padding-bottom: 3.71428571em; -} -section.space--sm, -footer.space--sm { - padding-top: 4.95238095em; - padding-bottom: 4.95238095em; -} -section.space--md, -footer.space--md { - padding-top: 11.14285714em; - padding-bottom: 11.14285714em; -} -section.space--lg, -footer.space--lg { - padding-top: 14.85714286em; - padding-bottom: 14.85714286em; -} -section.space--xlg, -footer.space--xlg { - padding-top: 29.71428571em; - padding-bottom: 29.71428571em; -} -section.space--0, -footer.space--0 { - padding: 0; -} -section.section--even, -footer.section--even { - padding-top: 7.42857143em; - padding-bottom: 7.42857143em; -} -section.space-bottom--sm, -footer.space-bottom--sm { - padding-bottom: 4.95238095em; -} -@media all and (max-width: 767px) { - section, - footer, - section.section--even { - padding: 5.57142857em 0; - } - section.space--lg, - footer.space--lg, - section.section--even.space--lg, - section.space--md, - footer.space--md, - section.section--even.space--md { - padding: 5.57142857em 0; - } - section.space--xlg, - footer.space--xlg, - section.section--even.space--xlg { - padding: 8.35714286em 0; - } -} -div[class*='col-'] > div[class*='col-']:first-child { - padding-left: 0; -} -div[class*='col-'] > div[class*='col-']:last-child { - padding-right: 0; -} -@media all and (max-width: 767px) { - .col-xs-6:nth-child(odd) { - padding-right: 7.5px; - } - .col-xs-6:nth-child(even) { - padding-left: 7.5px; - } -} -@media all and (min-width: 768px) { - .mt--1 { - margin-top: 1.85714286em; - } - .mt--2 { - margin-top: 3.71428571em; - } - .mt--3 { - margin-top: 5.57142857em; - } - .mb--1 { - margin-bottom: 1.85714286em; - } - .mb--2 { - margin-bottom: 3.71428571em; - } - .mb--3 { - margin-bottom: 5.57142857em; - } -} -@media all and (max-width: 990px) { - .mt--1, - .mt--2 { - margin-top: 1.85714286em; - } - .mt--3 { - margin-top: 2.78571429em; - } -} -.unpad { - padding: 0; -} -.unpad--bottom { - padding-bottom: 0; -} -.unpad--top { - padding-top: 0; -} -section.unpad--bottom { - padding-bottom: 0; -} -section.unpad { - padding: 0; -} -section.unpad--top { - padding-top: 0; -} -.unmarg--bottom { - margin-bottom: 0; -} -.unmarg { - margin: 0; -} -.unmarg--top { - margin-top: 0; -} -/**! 38. Boxed Layout **/ -@media all and (min-width: 1280px) { - body.boxed-layout { - padding: 3.71428571em 0; - background: #ededed; - } - body.boxed-layout section:not([class*='bg-']):not(.imagebg), - body.boxed-layout footer:not([class*='bg-']):not(.imagebg), - body.boxed-layout nav:not([class*='bg-']):not(.bar--transparent):not(.bar--absolute), - body.boxed-layout .tabs-container:not([class*='bg-']):not(.imagebg) { - background: #ffffff; - } - body.boxed-layout .nav-container, - body.boxed-layout .main-container, - body.boxed-layout > section, - body.boxed-layout nav { - max-width: 1280px; - margin: 0 auto; - } -} -/**! 39. Wizard **/ -.wizard__body { - list-style: none; -} -.wizard__step:not(.active) { - display: none; -} -.wizard__step .wizard__title { - display: none; -} -.wizard__controls { - overflow: hidden; -} -.wizard__controls .wizard-prev { - float: left; -} -.wizard__controls .wizard-next { - float: right; -} -.wizard__controls .wizard-prev:hover, -.wizard__controls .wizard-next:hover { - transform: none !important; -} -.wizard__controls .wizard-prev.inactive, -.wizard__controls .wizard-next.inactive { - pointer-events: none; - opacity: .3; - cursor: not-allowed; -} -/**! 40. Alerts **/ -.alert { - overflow: hidden; - border: 1px solid #e6e6e6; - padding: 0.92857143em; -} -.alert .alert__body, -.alert .alert__close { - display: inline-block; - user-select: none; -} -.alert .alert__body { - float: left; -} -.alert .alert__close { - float: right; - cursor: pointer; -} -.alert.bg--error { - background: #fce8e8; - border-color: #e23636; -} -.alert.bg--error .alert__close { - color: #e23636; -} -.alert.bg--success { - background: #e4f5e5; - border-color: #4ebf56; -} -.alert.bg--success .alert__close { - color: #4ebf56; -} -.alert.bg--primary { - background: #acd3ee; - border-color: #2374ab; -} -.alert.bg--primary .alert__body > span { - color: #666666; -} -.alert.bg--primary .alert__close { - color: #2374ab; -} -.alert.alert--dismissed { - display: none; -} -/**! 41. Progress - Horizontal **/ -.progress-horizontal:after { - content: ""; - display: table; - clear: both; -} -.progress-horizontal .progress-horizontal__bar { - position: relative; - overflow: hidden; -} -.progress-horizontal .progress-horizontal__progress { - position: absolute; - top: 0; - left: 0; - height: 100%; -} -/**! 42. Theme Overrides **/ -/*! -- Stack Customizers -- */ -.box-shadow { - box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.04); -} -.box-shadow-shallow { - box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.06); -} -.box-shadow-wide { - box-shadow: 0 23px 40px rgba(0, 0, 0, 0.2); -} -.border--round { - border-radius: 6px; -} -.border--round:before { - border-radius: 6px; -} -.border--round .background-image-holder { - border-radius: 6px; -} -.border--round [data-scrim-top]:before, -.border--round [data-scrim-bottom]:before, -.border--round [data-overlay]:before { - border-radius: 6px; -} -.imageblock.border--round .background-image-holder { - border-radius: 6px 0 0 6px; -} -@media all and (max-width: 767px) { - .imageblock.border--round .background-image-holder { - border-radius: 6px 6px 0 0; - } -} -.theme--square .border--round, -.theme--square .btn { - border-radius: 0px; -} -.theme--bordered { - border: 0.92857143em solid #252525; -} -.main-container.transition--fade:not(.transition--active) { - cursor: wait; -} -@media all and (min-width: 1280px) { - body.boxed-layout > section.bar-3:first-of-type { - border-radius: 6px 6px 0 0; - } - body.boxed-layout .main-container > footer:last-child { - border-radius: 0 0 6px 6px; - } -} -body.boxed-layout .modal-container section:not([class*='bg-']) { - background: none; -} -/*! -- Stack Helpers -- */ -@media all and (max-width: 767px) { - .block--xs { - margin-top: 0.92857143em; - } -} -.container .container { - max-width: 100%; -} -.switchable-toggle { - cursor: pointer; - user-select: none; - -webkit-user-select: none; -} -.back-to-top { - position: fixed; - width: 3.71428571em; - height: 3.71428571em; - background: #fff; - border-radius: 50%; - text-align: center; - right: 1.85714286em; - bottom: 3.71428571em; - padding-top: 12px; - box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); - box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.04); - z-index: 99; - border: 1px solid #ececec; - transition: 0.2s ease-out; - -webkit-transition: 0.2s ease-out; - -moz-transition: 0.2s ease-out; -} -.back-to-top i { - color: #252525; -} -.back-to-top:not(.active) { - opacity: 0; - transform: translate3d(0, 20px, 0); - -webkit-transform: translate3d(0, 20px, 0); - pointer-events: none; -} -.back-to-top.active:hover { - transform: translate3d(0, -5px, 0); - -webkit-transform: translate3d(0, -5px, 0); -} -.disable-scroll-bars { - -ms-overflow-style: none; -} -.disable-scroll-bars::-webkit-scrollbar { - display: none; -} -/*! -- Stack Animations -- */ -@keyframes fadeInUp { - from { - opacity: 0; - transform: translate3d(0, 50px, 0); - -webkit-transform: translate3d(0, 50px, 0); - } - to { - opacity: 1; - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); - -webkit-font-smoothing: antialiased; - } -} -@-webkit-keyframes fadeInUp { - from { - opacity: 0; - transform: translate3d(0, 50px, 0); - -webkit-transform: translate3d(0, 50px, 0); - } - to { - opacity: 1; - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); - -webkit-font-smoothing: antialiased; - } -} -@keyframes fadeInDown { - from { - opacity: 0; - transform: translate3d(0, -100px, 0); - -webkit-transform: translate3d(0, -100px, 0); - } - to { - opacity: 1; - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); - -webkit-font-smoothing: antialiased; - } -} -@-webkit-keyframes fadeInDown { - from { - opacity: 0; - transform: translate3d(0, -100px, 0); - -webkit-transform: translate3d(0, -100px, 0); - } - to { - opacity: 1; - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); - -webkit-font-smoothing: antialiased; - } -} -@keyframes fadeOutUp { - from { - opacity: 1; - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); - } - to { - opacity: 0; - transform: translate3d(0, -50px, 0); - -webkit-transform: translate3d(0, -50px, 0); - -webkit-font-smoothing: antialiased; - } -} -@-webkit-keyframes fadeOutUp { - from { - opacity: 1; - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); - } - to { - opacity: 0; - transform: translate3d(0, -50px, 0); - -webkit-transform: translate3d(0, -50px, 0); - -webkit-font-smoothing: antialiased; - } -} -@keyframes fadeOutRight { - from { - opacity: 1; - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); - } - to { - opacity: 0; - transform: translate3d(50px, 0, 0); - -webkit-transform: translate3d(50px, 0, 0); - -webkit-font-smoothing: antialiased; - } -} -@-webkit-keyframes fadeOutRight { - from { - opacity: 1; - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); - } - to { - opacity: 0; - transform: translate3d(50px, 0, 0); - -webkit-transform: translate3d(50px, 0, 0); - -webkit-font-smoothing: antialiased; - } -} -@keyframes fadeInLeft { - from { - opacity: 0; - transform: translate3d(-50px, 0, 0); - -webkit-transform: translate3d(-50px, 0, 0); - } - to { - opacity: 1; - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); - -webkit-font-smoothing: antialiased; - } -} -@-webkit-keyframes fadeInLeft { - from { - opacity: 0; - transform: translate3d(-50px, 0, 0); - -webkit-transform: translate3d(-50px, 0, 0); - } - to { - opacity: 1; - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); - -webkit-font-smoothing: antialiased; - } -} -@keyframes pulse { - 0% { - opacity: 0; - transform: scale(1); - -webkit-transform: scale(1); - } - 50% { - opacity: 1; - } - 100% { - opacity: 0; - transform: scale(2); - -webkit-transform: scale(2); - } -} -@-webkit-keyframes pulse { - 0% { - opacity: 0; - transform: scale(1); - -webkit-transform: scale(1); - } - 50% { - opacity: 1; - } - 100% { - opacity: 0; - transform: scale(2); - -webkit-transform: scale(2); - } -} -@keyframes kenBurns { - 0% { - transform: scale(1); - } - 100% { - transform: scale(1.1); - } -} -@-webkit-keyframes kenBurns { - 0% { - transform: scale(1); - } - 100% { - transform: scale(1.1); - } -} -/*! -- Stack Sections -- */ -section:not(.unpad):not(.imagebg):not([class*='bg--']):not(.imageblock):not(.unpad--bottom):not(.border--bottom):not(.space--xxs) + section:not(.unpad):not(.imagebg):not([class*='bg--']):not(.imageblock):not(.border--bottom):not(.space--xxs) { - padding-top: 0; -} -section:not(.unpad):not(.imagebg):not([class*='bg--']):not(.imageblock):not(.unpad--bottom):not(.border--bottom) + footer:not(.unpad):not(.imagebg):not([class*='bg--']):not(.imageblock):not(.unpad--bottom):not(.border--bottom) { - padding-top: 0; -} -section:not(.imagebg):not([class*='bg-']) + section.bg--secondary { - border-top: 1px solid #ebebeb; -} -section.bg--secondary:not(.imagebg) + section:not(.imagebg):not([class*='bg-']) { - border-top: 1px solid #ebebeb; -} -section.bg--secondary:not(.unpad):not(.imageblock):not(.unpad--bottom):not(.border--bottom) + section.bg--secondary { - padding-top: 0; -} -section.bg--secondary + footer:not(.bg--dark):not(.bg--secondary) { - border-top: 1px solid #ebebeb; -} -section.bg--dark + section.bg--dark { - padding-top: 0; -} -section.bg--dark:last-of-type + footer.bg--dark { - background: #1b1b1b; -} -section.border--bottom:not([data-gradient-bg]) { - border-bottom: 1px solid #ececec; -} -section.unpad { - overflow: hidden; -} -section:not([class*='bg--']) + footer.bg--secondary { - border-top: 1px solid #ebebeb; -} -section.text-center div[class*='col-']:first-child:last-child { - margin: 0 auto; - float: none; -} -.section--overlap { - z-index: 2; - position: relative; -} -/*! -- Stack Typography -- */ -@media all and (max-width: 1024px) { - html { - font-size: 80%; - } -} -h1, -.h1 { - letter-spacing: -0.01em; -} -h1:not(:last-child), -.h1:not(:last-child) { - margin-bottom: 0.59090909090909em; -} -@media all and (min-width: 768px) { - h1.h1--large, - .h1.h1--large { - font-weight: 200; - font-size: 4.428571428571429em; - line-height: 1.048387096774194em; - } - h1.h1--large:not(:last-child), - .h1.h1--large:not(:last-child) { - margin-bottom: 0.419354838709677em; - } - h1.h1--large.type--uppercase, - .h1.h1--large.type--uppercase { - letter-spacing: 10px; - margin-right: -10px; - } - h1.h1--large + p.lead, - .h1.h1--large + p.lead { - margin-top: 2.052631578947368em; - } -} -h2, -.h2 { - margin-bottom: 0.78787878787879em; -} -h3, -.h3 { - margin-bottom: 1.04em; -} -h3 strong, -.h3 strong { - font-weight: 400; -} -blockquote { - font-family: 'Merriweather', serif; - font-style: italic; - font-weight: 300; -} -blockquote:not(:last-child) { - margin-bottom: 1.04em; -} -blockquote > p { - font-size: 1em !important; -} -h4, -.h4 { - margin-bottom: 1.36842105263158em; - font-weight: 400; -} -h4.inline-block + .h4.inline-block:not(.typed-text), -.h4.inline-block + .h4.inline-block:not(.typed-text) { - margin-left: 0.68421052631579em; -} -h5, -.h5 { - font-weight: 600; -} -h5:not(:last-child), -.h5:not(:last-child) { - margin-bottom: 1.85714286em; -} -h6, -.h6 { - font-weight: 700; -} -h6:not(:last-child), -.h6:not(:last-child) { - margin-bottom: 2.16666666666667em; -} -h6.type--uppercase, -.h6.type--uppercase { - letter-spacing: 1px; - margin-right: -1px; -} -span.h1:not(.inline-block), -span.h2:not(.inline-block), -span.h3:not(.inline-block), -span.h4:not(.inline-block), -span.h5:not(.inline-block), -span.h6:not(.inline-block) { - display: block; -} -b { - font-weight: 600; -} -hr { - border-color: #ECECEC; -} -.bg--dark hr { - border-color: #585858; -} -[class*='bg-']:not(.bg--white):not(.bg--secondary) p, -[class*='imagebg']:not(.image--light) p { - opacity: .9; -} -.lead { - font-weight: 400; - color: #808080; -} -.lead:not(:last-child) { - margin-bottom: 1.36842105263158em; -} -.lead + .btn:last-child { - margin-top: 0.92857143em; -} -p:last-child { - margin-bottom: 0; -} -p strong { - color: #252525; -} -pre { - padding: 0.92857143em; - background: #fafafa; - border: 1px solid #ececec; - border-radius: 6px; - line-height: 20px; - max-height: 500px; -} -.bg--secondary > pre { - background: #f5f5f5; - border-color: #ddd; -} -.text-block:not(:last-child) { - margin-bottom: 1.85714286em; -} -.text-block h2, -.text-block .h2 { - margin-bottom: 0.3939393939394em; -} -.text-block h5, -.text-block .h5 { - margin: 0; -} -.text-block h4:not(:last-child), -.text-block .h4:not(:last-child) { - margin-bottom: 0.3421052631579em; -} -.text-block h3, -.text-block .h3 { - margin-bottom: 0.52em; -} -@media all and (min-width: 768px) { - div[class*='col-'] .text-block + .text-block { - margin-top: 3.71428571em; - } -} -.heading-block { - margin-bottom: 3.71428571em; -} -.heading-block h1, -.heading-block h2, -.heading-block h3, -.heading-block h4, -.heading-block h5, -.heading-block h6, -.heading-block .h1, -.heading-block .h2, -.heading-block .h3, -.heading-block .h4, -.heading-block .h5, -.heading-block .h6 { - margin-bottom: 0; -} -/*! -- Stack Colours -- */ -.bg--dark .bg--secondary { - background: #343434; -} -/*! -- Stack Links -- */ -a { - color: #2374ab; - font-weight: 700; -} -a:hover { - color: #1a5781; - text-decoration: underline; -} -a.block { - font-weight: normal; - text-decoration: none; - color: #666666; -} -p a, -span a, -label a { - font-size: 1em; - text-decoration: underline; - font-weight: 400; - line-height: 1.85714286em; -} -p + a:not(.btn) { - font-size: 0.85714286em; - line-height: 2.16666667em; -} -.imagebg:not(.image--light) a { - color: #fff; - font-weight: 600; -} -/*! -- Stack Tables -- */ -table { - width: 100%; - border-collapse: separate; -} -table th, -table td { - padding: 0.92857143em; -} -table th { - background: #fafafa; - color: #252525; -} -table tr:not(:last-of-type) { - border-bottom: 1px solid #ececec; -} -table.border--round { - border-radius: 6px; - border: 1px solid #ececec; -} -.table--alternate-column th:nth-child(odd) { - background: none; -} -.table--alternate-column td:nth-child(even) { - background: #fafafa; -} -.table--alternate-row tbody tr:nth-child(even) { - background: #fafafa; -} -.bg--dark table.border--round { - border-radius: 6px; - border: 1px solid #3f3f3f; -} -.bg--dark table th { - background: #3f3f3f; - color: #fff; -} -.bg--dark .table--alternate-row tbody tr:nth-child(even) { - background: #323232; -} -/*! -- Stack Lists -- */ -ul:not([class*='menu']) li > a { - font-weight: normal; -} -ul:not([class*='menu']) li > a:hover { - text-decoration: none; -} -ol { - list-style-position: outside; - list-style-type: decimal; -} -ol li:not(:last-child) { - margin-bottom: 1.85714286em; -} -ol.lead li:not(:last-child) { - margin-bottom: 1.26315789473684em; -} -.list-inline { - margin-left: 0; - display: inline-block; -} -.list-inline li { - padding: 0; -} -.list-inline li:not(:last-child) { - margin-right: 1.85714286em; -} -.list-inline:not(:last-child) { - margin-right: 1.85714286em; -} -.list-inline--images img { - max-height: 2.78571429em; -} -@media all and (min-width: 768px) { - .list-inline--images li:not(:last-child) { - margin-right: 5.57142857em; - } -} -@media all and (max-width: 767px) { - .list-inline--images li:not(:last-child) { - margin-bottom: 1.85714286em; - } -} -.list--loose > li:not(:last-child) { - margin-bottom: 0.46428571em; -} -.list--hover li { - transition: 0.2s ease; - -webkit-transition: 0.2s ease; - -moz-transition: 0.2s ease; -} -.list--hover li:not(:hover) { - opacity: .6; -} -.social-list a { - color: #252525; -} -.imagebg:not(.image--light) .social-list a { - color: #fff; -} -.results-list > li > a:first-child { - display: flex; - align-items: center; - margin-bottom: 0.92857143em; -} -.results-list > li > a:first-child span { - display: inline-block; - margin-left: 0.46428571em; -} -.results-list > li > a:first-child h4 { - display: inline-block; - margin-bottom: 0; -} -.results-list > li > a:first-child:hover h4, -.results-list > li > a:first-child:hover span { - text-decoration: underline; -} -.results-list > li:not(:last-child) { - margin-bottom: 1.85714286em; - padding-bottom: 1.85714286em; - border-bottom: 1px solid rgba(0, 0, 0, 0.1); -} -@media all and (max-width: 767px) { - .list-inline:not(.social-list):not(.list-inline--images) { - display: block; - } - .list-inline:not(.social-list):not(.list-inline--images) li { - display: block; - margin: 0; - } - .list-inline:not(.social-list):not(.list-inline--images) li:not(:last-child) { - margin-bottom: 0.46428571em; - } -} -@media all and (max-width: 767px) { - .list-inline { - min-width: 100%; - } -} -.row--list span.h6 { - margin-bottom: 0; -} -.row--list span.h3:last-child { - margin-bottom: 0; -} -@media all and (max-width: 767px) { - .row--list > li { - margin-bottom: 0.92857143em; - } -} -/*! -- Stack Rules -- */ -hr:first-child { - margin-top: 0; -} -hr.short { - width: 2.78571429em; - border-color: #2374ab; -} -hr[data-title] { - margin: 2.78571429em 0; - text-align: center; -} -hr[data-title]:before { - content: attr(data-title); - background: #ffffff; - position: relative; - bottom: 14px; - padding: 0.92857143em; - font-style: italic; -} -.bg--dark hr:not(.short), -.imagebg hr:not(.short), -.bg--primary hr:not(.short) { - opacity: .3; -} -/*! -- Stack Buttons -- */ -.btn { - position: relative; -} -.btn:not([class*='primary']) { - border-color: #d3d3d3; -} -.btn:not([class*='primary']):hover { - border-color: #252525; -} -.btn.type--uppercase { - letter-spacing: .5px; -} -.btn.type--uppercase .btn__text { - letter-spacing: .5px; - margin-right: -0.5px; -} -.btn .label { - top: -0.92857143em; - right: -3.71428571em; -} -.btn.btn--lg .btn__text { - font-weight: 600; -} -.btn.btn--lg.type--uppercase .btn__text { - letter-spacing: 1px; -} -.btn + p.type--fine-print, -.btn + span.type--fine-print { - margin-top: 1.08333333333334em; -} -.btn.block { - margin-left: 0; -} -.btn.block + .btn.block { - margin-top: 0.92857143em; -} -.btn:hover { - transform: translate3d(0, -2px, 0); - -webkit-transform: translate3d(0, -2px, 0); -} -.btn.btn--sm + .btn--sm { - margin-left: 0.92857143em; -} -p > .btn { - text-decoration: none; -} -@media all and (max-width: 767px) { - .btn:not(:last-child) { - margin-bottom: 1.85714286em; - } -} -.btn--icon { - padding-left: 5.57142857em; -} -.btn--icon i { - position: absolute; - height: 100%; - left: 0; - top: 0; - background: rgba(0, 0, 0, 0.1); - padding: 0 13px; - border-radius: 6px 0 0 6px; - font-size: 16px; - line-height: 41px; -} -.btn--icon i.socicon { - line-height: 42px; -} -.btn--cart { - width: 3.71428571em; - height: 3.71428571em; - border: 2px solid #252525; - display: block; - text-align: center; - border-radius: 6px; - opacity: .4; - padding: 0; -} -.btn--cart:hover { - opacity: 1; -} -.btn--cart .btn__text { - position: absolute; - width: 100%; - left: 0; - top: 50%; - transform: translateY(-50%); - font-size: 1.142857142857143em; -} -.imagebg:not(.image--light) .btn--icon:not([class*='bg']):not([class*='primary']) i { - color: #fff; - background: rgba(255, 255, 255, 0.2); -} -@media all and (min-width: 768px) { - .btn-group .btn { - margin-bottom: 0 !important; - margin-left: 0; - } - .btn-group .btn + .btn { - margin-left: 0; - } - .btn-group .btn:not(:first-child):not(:last-child) { - border-radius: 0; - } - .btn-group .btn:first-child { - border-radius: 6px 0 0 6px; - } - .btn-group .btn:last-child { - border-radius: 0 6px 6px 0; - } - .btn-group .btn:first-child:nth-last-child(2), - .btn-group .btn:last-child:nth-child(2) { - width: 50%; - } -} -.btn-group { - border: none; - padding: 0; -} -@media all and (max-width: 767px) { - .btn-group .btn { - display: block; - } -} -.bg--primary div:not([class*='feature']) .btn--primary { - background: #fff; - border-color: #fff; -} -.bg--primary div:not([class*='feature']) .btn--primary .btn__text { - color: #2374ab; -} -.bg--primary > .btn--primary { - background: #fff; - border-color: #fff; -} -.bg--primary > .btn--primary .btn__text { - color: #2374ab; -} -.bg--dark .btn:not(.btn--primary) { - border-color: #3f3f3f; -} -.bg--dark .btn:not(.btn--primary):hover { - border-color: #656565; -} -.bg--dark .btn .btn__text { - color: #fff; -} -.imagebg:not(.image--light) .btn:not([class*='primary']) { - border-color: rgba(255, 255, 255, 0.3); -} -.imagebg:not(.image--light) .btn:not([class*='primary']):hover { - border-color: #fff; -} -.imagebg.image--light .btn:not([class*='primary']) { - border-color: #252525; - background: rgba(255, 255, 255, 0.3); -} -.imagebg.image--light .btn:not([class*='primary']):hover { - background: rgba(255, 255, 255, 0.5); -} -h1 + .btn, -.h1 + .btn { - margin-top: 1.85714286em; -} -h2 + .btn, -.h2 + .btn { - margin-top: 0.92857143em; -} -/*! -- Stack Images -- */ -img:last-child { - margin-bottom: 0; -} -img.flag { - max-height: 1.85714286em; -} -img.image--sm:not(:last-child) { - margin-bottom: 0.92857143em; -} -img.promo.border--round { - border: 1px solid #ececec; -} -p.lead img { - max-height: 1.68421053em; -} -.imagebg h1, -.imagebg h2, -.imagebg h3, -.imagebg h4, -.imagebg h5, -.imagebg h6 { - position: relative; -} -.imagebg:not(.image--light) span { - color: #fff; -} -.imagebg.border--round { - overflow: hidden; -} -section.parallax .row .background-image-holder { - transform: none !important; - top: 0 !important; -} -.triptych.border--round img { - position: relative; - border-radius: 6px; - width: 33.333333%; - float: left; - margin: 0; -} -.triptych.border--round img:nth-child(2) { - transform: scale(1.2); - -webkit-transform: scale(1.2); - z-index: 2; - box-shadow: 0 23px 40px rgba(0, 0, 0, 0.2); -} -.gallery > div[class*='col-'] { - margin-bottom: 30px; -} -.gallery-1 { - overflow: hidden; - position: relative; -} -.gallery-1 .gallery__image:not(:last-child) { - margin-bottom: 30px; -} -.gallery-1 > div[class*='col-']:first-child > .gallery__image { - height: 800px; -} -.gallery-1 > div[class*='col-']:last-child > .gallery__image { - height: calc(385px); -} -.gallery__image { - position: relative; - overflow: hidden; -} -@media all and (max-width: 767px) { - .gallery-1 .gallery__image { - max-height: 300px; - margin-bottom: 15px; - } - .gallery-1 .gallery__image:not(:last-child) { - margin-bottom: 15px; - } -} -.section--ken-burns { - overflow: hidden; -} -.section--ken-burns > .background-image-holder, -.section--ken-burns > img:only-child { - animation: kenBurns 15s ease alternate infinite; - -webkit-animation: kenBurns 15s ease alternate infinite; -} -/*! -- Stack Titles -- */ -.breadcrumbs { - list-style: none; -} -.breadcrumbs li { - font-size: 0.85714285714286em; - display: inline-block; -} -.breadcrumbs li:not(:last-child) { - margin-right: 1.08333333333334em; -} -.breadcrumbs li:not(:last-child):after { - content: '\00bb'; - margin-left: 1.08333333333334em; -} -.breadcrumbs li a { - font-weight: normal; -} -.imagebg .breadcrumbs, -.bg--primary .breadcrumbs { - color: #fff; -} -.imagebg .breadcrumbs a, -.bg--primary .breadcrumbs a { - color: #fff; - font-weight: 600; -} -.elements-title { - border-top: none !important; -} -.elements-title + .tabs-container:not( :nth-last-child(2)), -.elements-title + section:not( :nth-last-child(2)) { - margin-bottom: 9.28571429em; -} -.elements-title + section:not(.imagebg):not([class*='bg-']):not(.unpad) { - padding-top: 1.85714286em; -} -/*! -- Stack Labels -- */ -.label { - display: inline-block; - font-size: 9px; - font-weight: 700; - letter-spacing: .5px; - color: #fff; - text-transform: uppercase; - height: 26px; - min-width: 65px; - padding: 0 10px; - text-align: center; - border-radius: 50px; - position: absolute; - z-index: 3; - top: 1.23809524em; - right: 1.23809524em; -} -.label:not([class*='bg--']) { - background: #2c3d55; -} -.label.label--inline { - position: relative; - top: 0; - right: 0; -} -.label.label--inline:not(:last-child) { - margin-right: 0.92857143em; -} -.label.label--inline + span, -.label.label--inline + p { - position: relative; - top: 1px; -} -.label.switchable-toggle { - left: 50%; - right: auto; - transform: translate3d(-50%, 0, 0); - -webkit-transform: translate3d(-50%, 0, 0); - box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.06); -} -.bg--primary-1 .label:not([class*='bg--']) { - background: #ff8484; -} -/*! -- Stack Bars -- */ -.menu-horizontal > li, -.menu-vertical > li { - font-family: 'Open Sans', 'Roboto', 'Helvetica', Sans-Serif; -} -.bar .logo { - max-height: 1.85714286em; - max-width: none; -} -.menu-horizontal > li > a, -.menu-horizontal > li > .modal-instance > a { - font-weight: 500; -} -.menu-horizontal > li a:hover { - text-decoration: none; -} -.hamburger-toggle i { - color: #252525; -} -@media all and (min-width: 990px) { - .menu-horizontal li:not(:last-child) { - margin-right: 1.23809524em; - } - .bar__module:not(:only-child) .menu-horizontal { - top: 0; - } -} -@media all and (min-width: 768px) and (max-width: 1023px) { - .bar-2 .menu-horizontal > li, - .bar-1 .menu-horizontal > li { - display: inline-block; - } - .bar-2 .menu-horizontal > li:not(:first-child), - .bar-1 .menu-horizontal > li:not(:first-child) { - margin-left: 0.92857143em; - } - .bar-2 .bar__module, - .bar-1 .bar__module { - margin-bottom: 1.85714286em; - } - .bar-2 .row div[class*='col-']:last-child .bar__module:last-child, - .bar-1 .row div[class*='col-']:last-child .bar__module:last-child { - margin-bottom: 0; - } -} -.bar-1 .menu-horizontal > li > .dropdown__trigger, -.bar-1 .menu-horizontal > li > a { - font-size: 0.857142857142857em; - line-height: 2.166666666666667em; - text-transform: uppercase; - font-weight: 600; - letter-spacing: .5px; -} -@media all and (min-width: 1024px) { - .bar-1 .bar__module + .bar__module { - margin-left: 1.85714286em; - } -} -@media all and (min-width: 991px) { - .bar-2 .logo { - position: absolute; - left: 50%; - transform: translateX(-50%); - } -} -.bar-3 { - font-size: 0.85714286em; -} -.bar-3 .menu-horizontal { - top: 0; -} -@media all and (max-width: 990px) { - .bar-3 .menu-horizontal li { - display: inline-block; - } - .bar-3 .menu-horizontal li:not(:last-child) { - margin-right: 0.92857143em; - } -} -@media all and (min-width: 990px) { - .bar-toggle .col-md-1 .logo { - top: 10px; - } -} -@media all and (max-width: 767px) { - .bar-4 .logo-light { - display: none; - } - .bar-4 .logo-dark { - margin-bottom: 1.85714286em; - } - .bar.bg--dark { - background: #252525; - } - .bar.bg--dark .hamburger-toggle i { - color: #fff; - } -} -/*! -- Stack Alerts -- */ -.alert { - border-radius: 6px; -} -.alert:not(:last-child) { - margin-bottom: 1.85714286em; -} -.alert .alert__close { - font-size: 1.35714286em; -} -/*! -- Stack Menu Toggle -- */ -.menu-toggle { - box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); - box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.04); - width: 3.71428571em; - height: 3.71428571em; - border-radius: 50%; - text-align: center; - background: #fff; - display: inline-block; - transition: 0.2s ease; - -webkit-transition: 0.2s ease; - -moz-transition: 0.2s ease; -} -.menu-toggle i { - font-size: 1.78571429em; - position: relative; - top: 13px; - color: #252525; -} -.menu-toggle:hover { - box-shadow: 0 23px 40px rgba(0, 0, 0, 0.2); - transform: translate3d(0, -2px, 0); - -webkit-transform: translate3d(0, -2px, 0); -} -/*! -- Stack Nav Utility -- */ -.nav-utility { - padding: 0.92857143em 0; -} -.nav-utility .nav-utility__module { - font-size: 0.85714285714286em; -} -.nav-utility .nav-utility__module a { - color: #666666; - font-weight: normal; -} -.nav-utility .nav-utility__module a i { - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; - display: inline-block; -} -.nav-utility .nav-utility__module a:hover i { - transform: scale(1.5); - -webkit-transform: scale(1.5); -} -.nav-utility .nav-utility__module.right:not(:last-child) { - margin-left: 2.16666666666667em; -} -.utility-toggle { - display: inline-block; - cursor: pointer; - width: 3px; - height: 3px; - position: relative; - bottom: 8px; - border-radius: 50%; - background: #252525; -} -.utility-toggle:before, -.utility-toggle:after { - content: ''; - width: 3px; - height: 3px; - border-radius: 50%; - position: absolute; - background: #252525; -} -.utility-toggle:before { - top: 6px; -} -.utility-toggle:after { - top: 12px; -} -/*! -- Stack Nav Stacked -- */ -.bar-stacked .logo { - margin-bottom: 3.71428571em; -} -/*! -- Stack Nav Side Menu -- */ -.notification.side-menu { - z-index: 9999; - background: #ffffff; - padding-top: 1.85714286em; - margin: 0; - height: 100%; - box-shadow: 0 23px 40px rgba(0, 0, 0, 0.2); - width: 27.85714286em; -} -.notification.side-menu .side-menu__module { - overflow: hidden; - padding: 2.78571429em; -} -.notification.side-menu .side-menu__module + hr:not(:last-child) { - margin: 0; -} -.notification.side-menu .menu-vertical li a { - font-size: 1.35714286em; - line-height: 1.36842105em; -} -.notification.side-menu .menu-vertical li a:hover { - text-decoration: none; -} -.notification.side-menu .btn:not(:last-child) { - margin-bottom: 1.85714286em; -} -.notification.side-menu .btn + ul.list--loose { - margin-top: 0.92857143em; -} -.notification.side-menu .notification-close-cross { - top: 0.92857143em; - right: 2.78571429em; - margin-top: 8px; -} -.notification.side-menu .social-list:not(:first-child) { - margin-top: 1.85714286em; -} -.menu-toggle.pos-fixed { - position: fixed; - right: 5.57142857em; - animation: fadeInDown .3s ease forwards; -} -@media all and (min-width: 768px) { - .side-menu .side-menu__module span.type--fine-print { - position: relative; - top: 8px; - } -} -@media all and (max-width: 767px) { - .side-menu { - width: 100%; - } - .side-menu .side-menu__module .float-right, - .side-menu .side-menu__module .float-left { - display: block; - } -} -/*! -- Stack Nav Sidebar Column -- */ -.nav-container.nav-container--sidebar + .main-container { - width: calc(100vw - 20.428571428571463em); - float: right; -} -.nav-container.nav-container--sidebar + .main-container .container { - max-width: 100%; -} -.nav-sidebar-column { - position: fixed; - z-index: 3; - left: 0; - width: 20.42857143em; - border-right: 1px solid #ececec; - height: 100vh; - overflow-y: scroll; - -ms-overflow-style: none; - padding: 2.78571429em 1.85714286em; -} -.nav-sidebar-column:not([class*='bg-']) { - background: #ffffff; -} -.nav-sidebar-column.bg--dark { - border-right: 1px solid #3f3f3f; -} -.nav-sidebar-column::-webkit-scrollbar { - display: none; -} -.nav-sidebar-column .logo { - max-height: 2.32142857em; - margin-bottom: 0.92857143em; -} -.nav-sidebar-column .text-block > p { - margin-bottom: 0.92857143em; -} -.nav-sidebar-column .menu-vertical li.dropdown:not(:hover):after { - opacity: .35; -} -.nav-sidebar-column .menu-vertical a:hover { - text-decoration: none; -} -.nav-sidebar-column .dropdown .dropdown__container, -.nav-sidebar-column .dropdown .dropdown__content { - left: 0 !important; - position: relative; - pointer-events: all; -} -.nav-sidebar-column .dropdown .dropdown__container:before { - height: 0; -} -.nav-sidebar-column .dropdown .dropdown__content { - transform: none !important; - box-shadow: none; - -webkit-box-shadow: none; - padding-top: 0.46428571em; - padding-right: 0; - padding-left: 0.46428571em; - background: none !important; -} -.nav-sidebar-column .dropdown .menu-vertical li.dropdown:after { - right: 1.85714286em; -} -.nav-sidebar-column .dropdown:not(.dropdown--active) .dropdown__container { - display: none; -} -.nav-sidebar-column .dropdown.dropdown--hover:hover > .dropdown__container { - display: block; -} -.nav-sidebar-column .social-list { - margin-bottom: 0.92857143em; -} -body.dropdowns--hover .nav-sidebar-column .dropdown:hover > .dropdown__container { - display: block; -} -.nav-sidebar-column-toggle { - transition: all .3s ease; - left: 0; - width: 3.71428571em; - height: 3.71428571em; - background: #ffffff; - text-align: center; - position: fixed; - z-index: 4; - cursor: pointer; - border-radius: 0 0 6px 0; - box-shadow: 2px 1px 4px rgba(0, 0, 0, 0.1); -} -.nav-sidebar-column-toggle > i { - transition: all .3s ease; - font-size: 1.78571429em; - position: relative; - top: 11px; -} -.nav-sidebar-column-toggle:not(.toggled-class) > i { - opacity: .5; -} -.nav-sidebar-column-toggle.toggled-class i:before { - content: '\e80b'; -} -@media all and (max-width: 990px) { - .nav-sidebar-column { - transition: all .3s ease; - left: -20.42857143em; - box-shadow: 2px 0px 4px rgba(0, 0, 0, 0); - } - .nav-sidebar-column.active { - left: 0; - box-shadow: 2px 0px 4px rgba(0, 0, 0, 0.1); - } - .nav-sidebar-column-toggle.toggled-class { - left: 20.42857143em; - } - .nav-container.nav-container--sidebar + .main-container { - width: 100%; - float: none; - } -} -.nav-container.nav-container--right .nav-sidebar-column { - right: 0; - left: auto; -} -.nav-container.nav-container--right + .main-container { - float: left; -} -.nav-container.nav-container--right .nav-sidebar-column-toggle { - left: auto; - right: 0; - border-radius: 0 0 0 6px; - box-shadow: -2px 1px 4px rgba(0, 0, 0, 0.1); -} -@media all and (max-width: 990px) { - .nav-container.nav-container--right .nav-sidebar-column { - right: -20.42857143em; - left: auto; - } - .nav-container.nav-container--right .nav-sidebar-column.active { - left: auto; - right: 0; - box-shadow: -2px 0px 4px rgba(0, 0, 0, 0.1); - } - .nav-container.nav-container--right .nav-sidebar-column-toggle.toggled-class { - left: auto; - right: 20.42857143em; - } -} -/*! -- Stack Nav Fullscreen -- */ -.menu-fullscreen { - color: #fff; -} -.menu-fullscreen .pos-absolute { - width: 100%; -} -.menu-fullscreen a { - color: #fff; -} -.menu-fullscreen a:hover { - text-decoration: none; -} -.menu-fullscreen .social-list { - margin-right: 0; -} -.menu-fullscreen:before { - background: rgba(0, 0, 0, 0.9); -} -.menu-fullscreen .modal-content .modal-close-cross { - right: 3.71428571em; - top: 1em; -} -@media all and (max-width: 767px) { - .menu-fullscreen .pos-bottom { - position: relative; - } -} -/*! -- Stack Dropdowns -- */ -.dropdown > .dropdown__trigger:after { - font-family: "stack-interface"; - display: inline-block; - font-size: 8px; - position: relative; - bottom: 2px; -} -.dropdown > .dropdown__trigger .image--xxs { - margin-right: 0.46428571em; -} -.dropdown .dropdown__content { - border-radius: 6px; - box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.08); - -webkit-box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.08); - padding: 1.23809524em 1.85714286em; -} -.dropdown .dropdown__content h5:not(:last-child) { - margin-bottom: 0.92857143em; -} -.dropdown .dropdown__content .background-image-holder { - border-radius: 6px 0 0 6px; -} -.dropdown .dropdown__content > .pos-absolute[class*='col-'] { - left: 0; - top: 0; - height: 100%; - position: absolute !important; -} -.dropdown .dropdown__content > .pos-absolute[class*='col-'][data-overlay]:before { - border-radius: 6px 0 0 6px; -} -.menu-horizontal > .dropdown > .dropdown__trigger:after { - content: '\e80a'; - margin-left: 4px; -} -.menu-vertical > .dropdown > .dropdown__trigger { - display: inline-block; - width: 100%; -} -@media all and (max-width: 767px) { - .dropdown [class*='col-'] + [class*='col-'] { - margin-top: 0.92857143em; - } - .dropdown .dropdown__content:not([class*='bg-']) { - border: none; - box-shadow: none; - } -} -@media all and (max-width: 767px) { - .dropdown__container { - left: 0 !important; - } -} -.menu-vertical li { - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; -} -.menu-vertical li:not(:hover):not(.dropdown--active) { - opacity: .75; -} -.menu-vertical li:not(:last-child) { - margin-bottom: 0.30952381em; -} -.menu-vertical li.dropdown { - position: relative; -} -.menu-vertical li.dropdown:after { - content: '\e80c'; - font-family: 'stack-interface'; - right: 0; - top: 0; - position: absolute; - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; - display: inline-block; - transform: translate3d(-10px, 0, 0); - -webkit-transform: translate3d(-10px, 0, 0); -} -.menu-vertical li.dropdown:hover:after { - transform: translate3d(-5px, 0, 0); - -webkit-transform: translate3d(-5px, 0, 0); -} -.menu-vertical li.separate { - border-top: 1px solid #e6e6e6; - margin-top: 0.92857143em; - padding-top: 0.92857143em; -} -.menu-vertical li.separate.dropdown:after { - top: .92857143em; -} -.menu-vertical + h5 { - margin-top: 1.85714286em; -} -@media all and (max-width: 990px) { - .menu-vertical .dropdown.dropdown--active:after { - opacity: 0; - } -} -@media all and (min-width: 991px) { - .dropdown .dropdown__container:before { - height: 18px; - } -} -/*! -- Stack Twitter Feeds -- */ -.tweets-feed .interact { - display: none; -} -.tweets-feed .user a:hover { - text-decoration: none; -} -.tweets-feed .user img { - border-radius: 50%; -} -.tweets-feed-1 { - border-radius: 6px; - border: 1px solid #ececec; - overflow: hidden; -} -.tweets-feed-1 li { - overflow: hidden; - padding: 1.85714286em; - padding-bottom: 0; -} -.tweets-feed-1 li:not(:last-child) { - border-bottom: 1px solid #ececec; -} -.tweets-feed-1 .user { - width: 20%; - float: left; - margin-bottom: 0.92857143em; -} -.tweets-feed-1 .user img { - max-height: 3.71428571em; - margin-right: 0.46428571em; -} -.tweets-feed-1 .user [data-scribe="element:name"], -.tweets-feed-1 .user [data-scribe="element:screen_name"] { - display: none; -} -.tweets-feed-1 .tweet, -.tweets-feed-1 .timePosted { - width: 80%; - float: right; -} -.tweets-feed-1 .tweet { - margin-bottom: 0.46428571em; -} -.tweets-feed-1 .timePosted { - font-size: 0.85714286em; - line-height: 2.16666667em; -} -.tweets-feed-1:not(:last-child) + .btn { - margin-top: 2.78571429em; -} -.imagebg .tweets-feed-1, -.bg--dark .tweets-feed-1 { - border-color: rgba(255, 255, 255, 0.1); -} -.imagebg .tweets-feed-1 li:not(:last-child), -.bg--dark .tweets-feed-1 li:not(:last-child) { - border-color: rgba(255, 255, 255, 0.1); -} -.tweets-feed-2 .user { - display: none; -} -.tweets-feed-2 .timePosted { - display: none; -} -.tweets-feed-2 li { - overflow: hidden; -} -.tweets-feed-2 li:before { - font-family: 'socicon'; - content: "\e08d"; -} -.tweets-feed-2 li .tweet { - width: 85%; - float: right; -} -.tweets-feed.slider .user img { - display: inline-block; - clear: both; - margin-bottom: 0.92857143em; -} -.tweets-feed.slider .user [data-scribe="element:name"] { - display: none; -} -.tweets-feed.slider .user [data-scribe="element:screen_name"] { - display: block; - font-size: 1.35714286em; - line-height: 1.36842105em; - font-weight: normal; -} -.tweets-feed.slider .tweet { - margin-top: 1.36842105263158em; - margin-bottom: 0.68421052631579em; - font-size: 1.35714286em; - line-height: 1.36842105em; -} -.tweets-feed.slider .timePosted { - margin: 0; -} -.tweets-feed.slider:not(:last-child) + .btn { - margin-top: 2.78571429em; -} -/*! -- Stack Instagram -- */ -.instafeed a { - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; -} -.instafeed a:hover { - opacity: .75; -} -.instafeed:not(.instafeed--gapless) li { - padding: 0.46428571em; -} -.instafeed.instafeed--gapless li { - margin-bottom: -1px; -} -.instafeed + .btn { - margin-top: 2.78571429em; -} -.instafeed[data-grid="1"][data-amount="8"] li { - display: inline-block; - width: 12.5%; -} -.instagram { - position: relative; -} -.instagram.unpad .btn { - position: absolute; - z-index: 2; - top: 50%; - transform: translate3d(-50%, -50%, 0); - -webkit-transform: translate3d(-50%, -50%, 0); - margin: 0; -} -/*! -- Stack Cards -- */ -.card__top { - position: relative; - overflow: hidden; -} -.card__action a { - color: #666666; - text-decoration: none; - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; -} -.card__action a i { - color: #252525; - font-size: 1em; -} -.card__action a span { - position: relative; - bottom: 2px; -} -.card__action a:not(:hover) { - opacity: .5; -} -.card p a { - text-decoration: none; -} -.masonry__item .card.boxed { - margin-bottom: 0; -} -.card-1 .card__avatar { - margin-bottom: 0.92857143em; -} -.card-1 .card__avatar img { - max-height: 2.78571429em; - margin-right: 0.46428571em; - margin-bottom: 0; -} -.card-1 .card__avatar, -.card-1 .card__meta { - display: inline-block; -} -.card-1 .card__meta { - float: right; -} -.card-1 .card__body { - border-bottom: 1px solid #ececec; - padding-bottom: 0.92857143em; - margin-bottom: 0.92857143em; -} -.card-1 .card__body img { - margin-bottom: 0.92857143em; -} -.card-1 .card__body h4 { - margin-bottom: 0.342105263157895em; -} -.bg--dark .card-1 .card__body { - border-color: #3f3f3f; -} -@media all and (max-width: 767px) { - .card .list-inline:not(.social-list) li { - display: inline-block; - } - .card .list-inline:not(.social-list) li:not(:first-child) { - margin-left: 0.92857143em; - } -} -.card-2 .card__top img { - border-radius: 6px 6px 0 0; -} -.card-2 .card__body { - border-bottom: 1px solid #ececec; - padding-bottom: 1.85714286em; -} -.card-2 .card__body h4 { - margin: 0; -} -.card-2 .card__body p { - margin-top: 0.92857143em; -} -.card-2 .card__bottom { - overflow: hidden; -} -.card-2 .card__bottom > div { - display: inline-block; - width: 50%; - float: left; -} -.card-2 .card__bottom .h6 { - margin-bottom: 0.541666666666667em; -} -.card-2 .card__body, -.card-2 .card__bottom { - padding: 1.85714286em; - border: 1px solid #ececec; -} -.card-2 .card__body { - border-bottom: none; - border-top: none; -} -.card-2 .card__bottom { - border-radius: 0 0 6px 6px; - padding: 0.92857143em 1.85714286em; -} -.card-2 .card__action i { - font-size: 1.78571429em; -} -.bg--dark .card-2 .card__body, -.bg--dark .card-2 .card__bottom { - border-color: #3f3f3f; -} -/*! -- Stack Checkmarks & Crosses -- */ -.checkmark { - display: inline-block; - position: relative; - width: 1.23809524em; - height: 1.23809524em; - border-radius: 50%; - text-align: center; -} -.checkmark:not([class*='bg-']) { - background: #2374ab; -} -.checkmark:before { - content: '\2713'; - color: #fff; - font-size: 11px; - position: absolute; - width: 100%; - left: 0; - top: -4px; -} -.checkmark.checkmark--cross:before { - content: '\2717'; -} -.checkmark:not(:last-child) { - margin-right: 13px; -} -/*! -- Stack Icons -- */ -.icon:not(.block) { - display: inline-block; -} -.icon.icon--xs { - font-size: 1.14285714285714em; -} -.text-block .icon + h4 { - margin-top: 0.6842105263158em; -} -.imagebg .icon { - color: #fff; -} -p .material-icons { - font-size: 1em; -} -p .material-icons:first-child { - margin-right: 0.30952381em; -} -.material-icons { - font-family: 'Material Icons' !important; -} -.icon-circle { - position: relative; - display: inline-block; - width: 3.71428571em; - height: 3.71428571em; - border-radius: 50%; - border: 1px solid #ececec; - background: #fafafa; - text-align: center; -} -.icon-circle i { - font-size: 24px; - position: absolute; - top: 50%; - transform: translateY(-50%); - width: 100%; - left: 0; -} -/*! -- Stack Tooltips -- */ -.tooltip { - position: relative; - top: 3px; - display: inline-block; - width: 1.23809524em; - height: 1.23809524em; - border-radius: 50%; - background: #252525; - text-align: center; - cursor: pointer; -} -.tooltip .tooltip__anchor { - color: #fff; - font-weight: 700; - font-size: 11px; - position: absolute; - top: -5px; - left: 6px; -} -.tooltip .tooltip__text { - transition: 0.2s ease; - -webkit-transition: 0.2s ease; - -moz-transition: 0.2s ease; - text-align: left; - z-index: 10; - position: absolute; - width: 280px; - background: #fafafa; - border: 1px solid #ececec; - padding: 0.61904762em; - left: 1.48571429em; - top: -0.92857143em; - opacity: 0; - pointer-events: none; - cursor: default; - box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); - box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.04); - line-height: 20px; -} -.tooltip:hover .tooltip__text { - opacity: 1; -} -.tooltip:last-child { - margin-left: 0.92857143em; -} -[data-tooltip] { - position: relative; - overflow: visible; -} -[data-tooltip]:after { - transition: all .2s ease; - content: attr(data-tooltip); - position: absolute; - top: -24px; - left: 50%; - transform: translateX(-50%); - background: #252525; - color: #fff; - border: 1px solid #e7e7e7; - padding: 2px 12px; - pointer-events: none; - white-space: nowrap; - font-size: 11px; - line-height: 18px; - font-weight: 600; - border-radius: 2px; - z-index: 2; - font-family: 'Open Sans'; -} -[data-tooltip]:not(:hover):after { - opacity: 0; -} -/*! -- Stack Boxes -- */ -.boxed { - border-radius: 6px; -} -.boxed .background-image-holder { - border-radius: 6px; -} -.boxed:before { - border-radius: 6px; -} -.boxed:not(:last-child) { - margin-bottom: 30px; -} -.boxed:not([class*='bg-']) { - background: #ffffff; -} -.boxed.bg--secondary .boxed { - background: #fafafa; -} -@media all and (min-width: 768px) { - .switchable .imagebg .boxed { - padding-left: 5.57142857em; - } -} -.bg--dark .boxed:not([class*='bg-']), -.imagebg:not(.image--light) .boxed:not([class*='bg-']) { - background: none; - color: #fff; -} -.bg--dark .boxed:not([class*='bg-']).boxed--border, -.imagebg:not(.image--light) .boxed:not([class*='bg-']).boxed--border { - border-color: #3f3f3f; -} -.bg--dark .boxed[class*='bg-'].boxed--border, -.imagebg:not(.image--light) .boxed[class*='bg-'].boxed--border { - border: none; -} -.imagebg:not(.image--light) .boxed:not(.bg--white):not(.bg--none) { - background: rgba(20, 20, 20, 0.3); -} -.imagebg:not(.image--light) .boxed:not(.bg--white):not(.bg--none).boxed--border { - border: none; -} -.imagebg:not(.image--light) .boxed:not(.bg--white):not(.bg--none) .boxed { - background: none; -} -.bg--primary .boxed:not(.imagebg) { - color: #666666; -} -.bg--primary .boxed:not(.imagebg) p { - color: #666666; -} -.bg--primary .boxed:not(.imagebg) h1, -.bg--primary .boxed:not(.imagebg) h2, -.bg--primary .boxed:not(.imagebg) h3, -.bg--primary .boxed:not(.imagebg) h4, -.bg--primary .boxed:not(.imagebg) h5, -.bg--primary .boxed:not(.imagebg) h6, -.bg--primary .boxed:not(.imagebg) .h1, -.bg--primary .boxed:not(.imagebg) .h2, -.bg--primary .boxed:not(.imagebg) .h3, -.bg--primary .boxed:not(.imagebg) .h4, -.bg--primary .boxed:not(.imagebg) .h5, -.bg--primary .boxed:not(.imagebg) .h6, -.bg--primary .boxed:not(.imagebg) i { - color: #252525; -} -.bg--primary .boxed:not(.imagebg) a { - color: #2374ab; -} -.bg--primary .boxed:not(.imagebg) .color--primary { - color: #2374ab !important; -} -@media all and (min-width: 768px) { - .boxed.boxed--emphasis { - transform: scale(1.075); - -webkit-transform: scale(1.075); - } -} -/*! -- Stack Features Small -- */ -.feature:not(.boxed) { - margin-bottom: 60px; -} -.feature.feature--featured:after { - content: ''; - position: absolute; - bottom: 0; - width: 100%; - height: 4px; - background: #2374ab; - left: 0; -} -.feature h5 { - margin: 0; -} -.feature h4 { - margin-bottom: 0.342105263157895em; -} -.feature h4 + p { - max-width: 22.28571429em; -} -.feature i + h5 { - margin-top: 1.85714286em; -} -.feature i + h4 { - margin-top: 0.68421052631579em; -} -.feature i.icon--lg + h4 { - margin-top: 1.36842105263158em; -} -.feature i.icon--lg + .h5 { - margin-top: 0.92857143em; -} -.feature img + .boxed { - border-radius: 0 0 6px 6px; - border-top: none; -} -.imagebg:not(.image--light) .feature.bg--white a:not(.btn) { - color: #2374ab; -} -.imagebg:not(.image--light) .feature.bg--white .label { - color: #fff; -} -@media all and (max-width: 767px) { - .feature .feature__body form .row { - margin-left: 0; - margin-right: 0; - } -} -section.text-center .feature-6 h4 + p { - margin: 0 auto; -} -@media all and (min-width: 768px) { - .row div[class*='col-']:nth-child(1):nth-last-child(3) .feature, - .row div[class*='col-']:nth-child(2):nth-last-child(2) .feature, - .row div[class*='col-']:nth-child(3):last-child .feature { - margin-bottom: 0; - } -} -a.block > .feature { - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; -} -a.block:hover > .feature { - box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); - box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.04); -} -.feature-1 { - min-height: 11.14285714em; -} -.feature-1 p { - margin: 0; -} -.feature-1 p.lead { - min-height: 5.05263157894737em; -} -.feature-1 > img:first-child { - border-radius: 6px 6px 0 0; -} -.feature-1 > a.block img { - border-radius: 6px 6px 0 0; -} -.feature-1 > a.block + .feature__body { - border-radius: 0 0 6px 6px; -} -.feature-1[class*='box-shadow'] { - border-radius: 6px; - transition: 0.35s ease-out; - -webkit-transition: 0.35s ease-out; - -moz-transition: 0.35s ease-out; -} -.feature-1[class*='box-shadow']:hover { - transform: translate3d(0, -10px, 0); - -webkit-transform: translate3d(0, -10px, 0); - box-shadow: 0 23px 40px rgba(0, 0, 0, 0.2); -} -.hover-shadow { - border-radius: 6px; - backface-visibility: hidden; - overflow: hidden; - border: 1px solid #ececec; - transition: 0.35s ease-out; - -webkit-transition: 0.35s ease-out; - -moz-transition: 0.35s ease-out; -} -.hover-shadow:hover { - transform: translate3d(0, -10px, 0); - -webkit-transform: translate3d(0, -10px, 0); - box-shadow: 0 23px 40px rgba(0, 0, 0, 0.2); -} -.bg--dark .hover-shadow { - border-color: #222; -} -.bg--dark .hover-shadow:hover { - box-shadow: 0 23px 40px #000000; -} -.feature-2 { - overflow: hidden; -} -.feature-2 .feature__body { - width: 75%; - float: right; -} -.feature-2 h5 { - margin-bottom: 0.46428571em; -} -.feature-2 p:last-child { - margin: 0; -} -.feature-2 i { - width: 25%; - float: left; -} -.feature-large .feature-2 + .feature-2:last-child { - margin-bottom: 0; -} -@media all and (max-width: 990px) { - .feature-2 .feature__body, - .feature-2 i { - width: 100%; - float: none; - } - .feature-2 p:first-of-type { - margin-top: 0.92857143em; - } -} -.feature-3 i { - margin-bottom: 0.16666666666667em; -} -.feature-3 p { - min-height: 7.42857143em; -} -.feature-4 .btn { - position: absolute; - width: 100%; - bottom: 0; - left: 0; - border-radius: 0; - padding: 0.92857143em; -} -.feature-4 .btn:hover { - transform: none; -} -.feature-4 p { - min-height: 9.28571429em; -} -.feature-4 p:last-of-type { - margin-bottom: 3.71428571em; -} -.feature-5 i { - width: 25%; - float: left; -} -.feature-5 .feature__body { - width: 75%; - float: right; -} -.feature-5 p { - min-height: 5.57142857em; -} -.feature-5 p:last-of-type { - margin-bottom: 0.92857143em; -} -.feature-5:not([class*='bg-']) { - color: #252525; -} -.feature-6 p { - min-height: 9.28571429em; -} -.feature-6 p:last-child { - margin: 0; -} -.feature-7 { - height: 13em; - margin-bottom: 30px; -} -.feature-7[data-overlay]:before { - border-radius: 6px; - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; -} -.feature-7[data-overlay]:hover:before { - opacity: .75; -} -.feature-7 .background-image-holder { - border-radius: 6px; -} -.feature-7 h3 { - margin: 0; -} -.row--gapless .feature-7 { - margin: 0; - border-radius: 0; -} -.row--gapless .feature-7 .background-image-holder { - border-radius: 0; -} -.row--gapless .feature-7:before { - border-radius: 0; -} -@media all and (max-width: 767px) { - .feature-7 .pos-vertical-center { - top: 50%; - transform: translate3d(0, -50%, 0); - -webkit-transform: translate3d(0, -50%, 0); - } -} -.feature-8 { - padding: 2.78571429em 0 3.71428571em 0; -} -.feature-8:not(.boxed) { - margin-bottom: 0; -} -.feature-8 .feature__body { - max-width: 70%; - margin: 0 auto; -} -.feature-8 p { - min-height: 5.57142857em; -} -@media all and (max-width: 990px) { - .feature-8 .feature__body { - max-width: 85%; - } -} -@media all and (max-width: 767px) { - .feature p { - min-height: auto; - margin-left: auto; - margin-right: auto; - } - .feature.boxed { - margin-bottom: 15px; - } - .feature:not(.boxed) { - margin-bottom: 30px; - } - .feature.feature-8 { - margin-bottom: 0; - } -} -.feature-8 img { - max-height: 14.85714286em; -} -.feature-9 h4 { - margin: 0; -} -.feature-9:not(.boxed) { - margin-bottom: 30px; -} -@media all and (min-width: 768px) { - .features-small-14 .text-block { - margin-bottom: 3.71428571em; - } - .features-small-14 h4 { - min-height: 2.736842105263158em; - } -} -/*! -- Stack Features Large -- */ -@media all and (min-width: 768px) { - .staggered div[class*='col-']:nth-child(2):last-child { - margin-top: 13em; - } - .staggered div[class*='col-']:nth-child(2):last-child:not(:last-child) { - margin-bottom: 9.28571429em; - } - .staggered div[class*='col-'] .feature:not(:last-child) { - margin-bottom: 9.28571429em; - } -} -.feature-large h4:first-child { - margin-bottom: 0.68421052631579em; -} -.feature-large .feature:not(.boxed) { - margin-bottom: 30px; -} -.feature-large .feature-3.text-center p { - margin: 0 auto; -} -.feature-large .lead + .feature-large__group { - margin-top: 3.71428571em; -} -.feature-large .feature-large__group { - overflow: hidden; -} -.feature-large-1 .lead { - margin-bottom: 2.73684210526316em; -} -@media all and (min-width: 768px) { - .feature-large-2 div[class*='col-']:first-child { - margin-top: 5.57142857em; - } - .feature-large-2 div[class*='col-']:last-child { - margin-top: 7.42857143em; - } -} -@media all and (max-width: 767px) { - .feature-large-2 img { - margin: 1.85714286em 0; - } -} -.feature-large-7.switchable .boxed div[class*='col-']:only-child { - float: none; -} -.feature-large-13 p.lead + .text-block { - margin-top: 3.71428571em; -} -.feature-large-13 div[class*='col-'] .text-block + .text-block { - margin-top: 2.78571429em; -} -@media all and (min-width: 1200px) { - .feature-large-13:not(.text-center) .text-block p { - max-width: 26em; - } -} -.feature-large-14 h5 { - margin-bottom: 0.46428571em; -} -.feature-large-14 .boxed { - margin-bottom: 0; -} -.feature-large-14 .boxed.boxed--border img { - border-radius: 6px; -} -@media all and (min-width: 768px) { - .feature-large-14.switchable .switchable__text { - margin-top: 5.57142857em; - } -} -/*! -- Stack Accordions -- */ -.accordion .accordion__title { - transition: 0.5s ease; - -webkit-transition: 0.5s ease; - -moz-transition: 0.5s ease; - opacity: .5; - margin-bottom: 0.92857143em; -} -.accordion .accordion__title:hover { - opacity: 1; -} -.accordion .accordion__title:before { - font-family: "stack-interface"; - content: '\e80d'; - margin-right: 6px; - color: #252525; -} -.accordion .accordion__title span { - display: inline-block; -} -.accordion li.active { - margin-bottom: 0.92857143em; -} -.accordion li.active .accordion__title { - opacity: 1; -} -.accordion li.active .accordion__title:before { - content: '\e80a'; -} -.accordion li.active .accordion__content { - animation: fadeUp .5s ease forwards; - -webkit-animation: fadeUp .5s ease forwards; -} -.accordion-1 li.active .accordion__title { - border-color: #2374ab; -} -.accordion-1 li.active .accordion__title span { - color: #fff; -} -.accordion-1 li.active .accordion__title:before { - color: #fff; -} -.accordion-1 li .accordion__title { - border-radius: 6px; - border-bottom: 1px solid #ECECEC; -} -.accordion-2 li .accordion__title { - border-left: none; - border-right: none; - border-top: none; - border-bottom: 1px solid #ECECEC; - padding-left: 0; -} -.accordion-2 li.active .accordion__title { - background: none; - border-bottom: 1px solid rgba(0, 0, 0, 0); -} -.bg--dark .accordion-2 li .accordion__title, -.imagebg:not(.image--light) .accordion-2 li .accordion__title, -.bg--primary .accordion-2 li .accordion__title, -.bg--dark .accordion-1 li .accordion__title, -.imagebg:not(.image--light) .accordion-1 li .accordion__title, -.bg--primary .accordion-1 li .accordion__title { - border-color: #4b4b4b; -} -.bg--dark .accordion-2 li .accordion__title:before, -.imagebg:not(.image--light) .accordion-2 li .accordion__title:before, -.bg--primary .accordion-2 li .accordion__title:before, -.bg--dark .accordion-1 li .accordion__title:before, -.imagebg:not(.image--light) .accordion-1 li .accordion__title:before, -.bg--primary .accordion-1 li .accordion__title:before { - color: #fff; -} -.imagebg:not(.image--light) .accordion li .accordion__title, -.bg--primary .accordion li .accordion__title { - border-color: rgba(255, 255, 255, 0.3); -} -/*! -- Stack Tabs -- */ -.tabs-container.tabs--vertical { - overflow: hidden; -} -.tabs-container.tabs--vertical .tabs { - width: 25%; - float: left; -} -.tabs-container.tabs--vertical .tabs li { - display: block; -} -.tabs-container.tabs--vertical .tabs li:not(:last-child) { - border-right: none; - border-bottom: 1px solid #ECECEC; -} -.tabs-container.tabs--vertical .tabs-content { - width: 70%; - float: right; - margin-top: 0; -} -.tabs-container.tabs--vertical .tabs-content > li:not(.active) .tab__content { - animation: fadeOutUp .5s ease forwards; - -webkit-animation: fadeOutUp .5s ease forwards; -} -.tabs-container.tabs--vertical .tabs-content > li.active .tab__content { - animation: fadeInUp .5s ease forwards; - -webkit-animation: fadeInUp .5s ease forwards; - backface-visibility: hidden; -} -.tabs-container.tabs--vertical.tabs--icons .tabs { - width: 15%; - text-align: center; -} -.tabs-container.tabs--vertical.tabs--icons .tabs-content { - width: 80%; -} -@media all and (max-width: 767px) { - .tabs-container.tabs--vertical .tabs, - .tabs-container.tabs--vertical .tabs-content { - width: 100%; - float: none; - } - .tabs-container.tabs--vertical .tabs { - margin-bottom: 1.85714286em; - } - .tabs-container.tabs--vertical .tabs-content > li:not(.active) .tab__content { - animation: fadeOutRight .5s ease forwards; - -webkit-animation: fadeOutRight .5s ease forwards; - } - .tabs-container.tabs--vertical .tabs-content > li.active .tab__content { - animation: fadeInLeft .5s ease forwards; - -webkit-animation: fadeInLeft .5s ease forwards; - backface-visibility: hidden; - } -} -.tabs { - display: inline-block; - border: 1px solid #ECECEC; - border-radius: 6px; - margin-bottom: 1.85714286em; -} -.tabs li { - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; - padding: 0.92857143em 1.85714286em; -} -.tabs li:not(:last-child) { - border-right: 1px solid #ECECEC; -} -.tabs li.active { - opacity: 1; -} -.tabs li.active .tab__title { - color: #2374ab; -} -.tabs li.active .tab__title span { - color: #2374ab; -} -.tabs li:not(.active) { - opacity: .5; -} -.tabs li:hover { - opacity: 1; - cursor: pointer; -} -.tabs .tab__title { - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; -} -.tabs .tab__title:not(.btn) { - padding-right: 0; - padding-left: 0; -} -.tabs .tab__title i + span { - margin-top: 0.46428571em; - display: inline-block; - margin-bottom: 0; -} -.bg--primary .tabs { - border-color: #fff; -} -.bg--primary .tabs li.active .tab__title { - color: #fff; -} -.bg--primary .tabs li.active .tab__title span { - color: #fff; -} -.bg--primary .tabs li:not(:last-child) { - border-color: #fff; -} -@media all and (min-width: 768px) { - .tabs.tabs--spaced { - margin-bottom: 3.71428571em; - } -} -.tabs-content { - position: relative; -} -.tabs-content > li:not(.active) .tab__content { - position: absolute; - left: 0; - top: 0; - display: block; - opacity: 0; - pointer-events: none; - animation: fadeOutRight .5s ease forwards; - -webkit-animation: fadeOutRight .5s ease forwards; -} -.tabs-content > li.active { - animation: fadeInLeft .5s ease forwards; - -webkit-animation: fadeInLeft .5s ease forwards; - backface-visibility: hidden; -} -@media all and (max-width: 767px) { - .tabs li { - display: block; - } - .tabs li:not(:last-child) { - border-bottom: 1px solid #ECECEC; - border-right: none; - } -} -.tabs--folder .tabs { - overflow: hidden; - margin-bottom: 0; - border-radius: 6px 6px 0 0; - border-bottom: none; -} -.tabs--folder .tabs > li { - border-top: 3px solid rgba(0, 0, 0, 0); -} -.tabs--folder .tabs > li.active { - border-top: 3px solid #2374ab; -} -.tabs--folder .tabs-content { - overflow: hidden; - position: relative; - bottom: 8px; - padding: 1.85714286em; - border: 1px solid #ECECEC; - border-radius: 0 0 6px 6px; -} -.tabs--folder .tabs-content > li:not(.active) .tab__content { - top: 1.85714286em; - left: 1.85714286em; -} -.tabs--folder .tab__title .h5 { - margin: 0; - display: inline-block; -} -.tabs--folder .tab__title .label { - position: relative; - color: #fff !important; - top: -2px; - right: 0; - margin-left: 0.46428571em; - min-width: 0; -} -/*! -- Stack Switchable Sections -- */ -.switchable .switchable__text { - margin-top: 1.85714286em; -} -.switchable [class*='col-']:first-child .switchable__text { - margin-bottom: 2.78571429em; -} -.section--overlap .row { - position: relative; - margin-top: -13em; -} -@media all and (max-width: 990px) { - .switchable .switchable__text { - margin-top: 0; - } -} -@media all and (max-width: 767px) { - .switchable .switchable__text { - margin-top: 1.85714286em; - } - .switchable .imageblock__content[class*='col-'] { - float: none !important; - } - .switchable .row > div[class*='col-'] { - float: none !important; - } - .switchable .row > div[class*='col-']:last-child:not(:only-child) { - margin-top: 1.85714286em; - } -} -/*! -- Stack CTA -- */ -.cta .btn:first-child:not(:last-child) { - margin-bottom: 1.85714286em; -} -.cta.boxed:last-child { - margin-bottom: 0; -} -@media all and (min-width: 768px) { - .cta--horizontal h4, - .cta--horizontal .lead, - .cta--horizontal .btn { - margin: 0; - } - .cta--horizontal h4, - .cta--horizontal .lead { - position: relative; - top: 4px; - } - .bg--dark .cta-1 > div[class*='col-']:last-child, - .imagebg .cta-1 > div[class*='col-']:last-child { - border-left: none; - } -} -@media all and (min-width: 1200px) { - .cta-1.boxed--border { - padding: 0; - } - .cta-1 > div[class*='col-'] { - padding: 1.23809524em 15px; - } - .cta-1 > div[class*='col-']:last-child { - border-left: 1px solid #ECECEC; - } -} -@media all and (max-width: 990px) { - .cta-1 { - text-align: center; - } - .cta-1 > div[class*='col-'] { - padding-left: 0; - padding-right: 0; - } - .cta-1 > div[class*='col-']:not(:last-child) { - margin-bottom: 0.92857143em; - } - .cta-1 > div[class*='col-']:last-child { - margin-top: 1.85714286em; - } -} -@media all and (max-width: 767px) { - .cta .lead { - margin: 1.36842105263158em 0; - } -} -.cta-2 { - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; -} -.cta-2 h2 { - margin: 1.57575757575758em 0; -} -.cta-2.bg--primary:hover { - background: #267db8; -} -.cta-2:hover { - background: #ffffff; -} -@media all and (min-width: 768px) { - .cta-3 .switchable__text { - margin-top: 5.57142857em; - } -} -/*! -- Stack Videos -- */ -.video-play-icon:before { - border-color: transparent transparent transparent #252525; - margin-top: -3px; -} -.modal-instance .video-play-icon + span { - position: relative; - display: inline-block; - margin-left: 0.92857143em; - white-space: nowrap; - bottom: 22px; -} -.modal-instance .video-play-icon.video-play-icon--xs + span { - bottom: 8px; - margin-left: 0.46428571em; -} -.video-cover { - background: #252525; -} -.video-cover.border--round { - overflow: hidden; -} -.video-cover.border--round iframe { - border-radius: 6px; -} -.video-cover:not(:last-child) { - margin-bottom: 1.85714286em; -} -.video-cover + span.h4 + span { - display: inline-block; - margin-left: 0.92857143em; -} -.video-cover .video-play-icon { - transition: 0.2s ease-out; - -webkit-transition: 0.2s ease-out; - -moz-transition: 0.2s ease-out; -} -.video-cover .video-play-icon:hover { - box-shadow: 0 23px 40px rgba(0, 0, 0, 0.2); - transform: translate3d(-50%, -52%, 0); - -webkit-transform: translate3d(-50%, -52%, 0); -} -.imagebg .video-cover .video-play-icon { - z-index: 10; -} -@media all and (min-width: 768px) { - h2 + .video-cover { - margin-top: 3.71428571em; - } -} -@media all and (min-width: 768px) { - .video-1 .video-play-icon { - margin-right: 1.85714286em; - } - .video-1 h2 { - display: inline-block; - position: relative; - bottom: 14px; - } - div[class*='col-sm-6'] .video-1 h2 { - bottom: 0; - display: block; - } - div[class*='col-sm-6'] .video-1 .video-play-icon { - margin-bottom: 0.46428571em; - } -} -.video-1 h2 { - margin: 0; -} -.imageblock__content .modal-instance { - position: absolute; - top: 50%; - left: 50%; - transform: translate3d(-50%, -50%, 0); - -webkit-transform: translate3d(-50%, -50%, 0); -} -/*! -- Stack Modals -- */ -.modal-container .modal-content:not(.height--natural) { - height: auto; - width: auto; -} -.modal-instance:not(.block) { - display: inline-block; -} -.modal-instance.block > .btn { - display: block; -} -@media all and (min-width: 768px) { - .modal-instance + span:last-child { - display: inline-block; - margin-left: 0.92857143em; - } -} -.modal-container .modal-content { - max-height: 95%; - transform: translateX(-50%) translateY(-50%); - -webkit-transform: translateX(-50%) translateY(-50%); -} -.modal-container .modal-content .feature:only-child { - margin-bottom: 0; -} -.modal-container .modal-content .feature:only-child .boxed { - margin-bottom: 0; -} -.modal-container .modal-content .imagebg:not(.image--light) .modal-close-cross:before { - color: #fff; -} -@media all and (max-width: 767px) { - .modal-container .modal-content > .modal-close-cross { - top: 3em; - background: #222; - width: 2em; - height: 2em; - text-align: center; - border-radius: 50%; - color: #fff; - } -} -.modal-content { - -ms-overflow-style: none; -} -.modal-content::-webkit-scrollbar { - display: none; -} -/*! -- Stack Notifications -- */ -.notification { - margin: 1.85714286em; - box-shadow: none; -} -.notification:not([class*='bg--']) { - background: none; -} -.notification > .boxed { - margin: 0; -} -.notification > .feature, -.notification .feature__body { - margin-bottom: 0; -} -.search-box { - width: 100%; - margin: 0; - padding: 1.85714286em; - box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); - box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.04); -} -.search-box.notification--reveal { - z-index: 9999; -} -.search-box .notification-close-cross { - top: 2.32142857em; - right: 1.85714286em; -} -.notification-close-cross.notification-close-cross--circle { - background: #222; - width: 2em; - height: 2em; - text-align: center; - border-radius: 50%; - color: #fff; -} -/*! -- Stack Loader -- */ -.loader { - border: 3px solid #2374ab; - border-radius: 30px; - height: 30px; - left: 50%; - margin: -15px 0 0 -15px; - opacity: 0; - position: fixed; - z-index: 10; - top: 50%; - width: 30px; - animation: pulsate 0.7s ease-out infinite; -} -.loader.loader--fade { - opacity: 0; - animation: none; -} -@keyframes pulsate { - 0% { - transform: scale(0.1); - opacity: 0.0; - } - 50% { - opacity: 1; - } - 100% { - transform: scale(1.2); - opacity: 0; - } -} -/*! -- Stack Lightboxes -- */ -.lb-close { - position: relative; - top: 10px; -} -.lb-close:before { - content: '\00D7'; - color: #fff; - font-size: 2.5em; - font-weight: 400; -} -.lb-close:hover { - text-decoration: none; -} -.lb-prev:after, -.lb-next:after { - font-family: 'stack-interface'; - position: fixed; -} -.lb-prev:after { - content: '\e801'; - left: 1.85714286em; -} -.lb-next:after { - content: '\e802'; - right: 1.85714286em; -} -.lb-data { - overflow: hidden; - min-height: 30px; -} -a[data-lightbox] { - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; -} -a[data-lightbox]:hover { - opacity: .8; - cursor: zoom-in; -} -/*! -- Stack Covers -- */ -.cover .typed-headline { - margin-bottom: 3.71428571em; -} -.cover .typed-headline .type--bold { - font-weight: 400; -} -.cover .triptych { - margin-top: 3.71428571em; -} -.cover .btn + .modal-instance { - margin-top: 1.85714286em; -} -.cover h3 + form, -.cover .h3 + form { - margin-top: 2.78571429em; -} -.cover .lead + .boxed { - margin-top: 3.71428571em; -} -.cover.unpad--bottom { - overflow: hidden; -} -.cover .modal-instance.block:not(:first-child):not(:last-child) { - margin: 2.78571429em 0; -} -.cover .pos-bottom { - margin-bottom: 1.85714286em; -} -@media all and (min-width: 768px) { - .cover .row .row:last-child { - margin-top: 5.57142857em; - } -} -@media all and (max-width: 767px) { - .cover .pos-bottom.pos-absolute { - position: relative; - margin-top: 1.85714286em; - } -} -@media all and (max-width: 990px) { - .cover .mt--3 { - margin-top: 0; - } -} -@media all and (min-width: 768px) { - .cover .triptych { - margin-top: 7.42857143em; - } -} -.cover-fullscreen { - min-height: 100vh; -} -.cover-fullscreen.slider[data-paging="true"] .slides .flickity-slider > li { - height: 100vh; -} -.cover-fullscreen.slider[data-paging="true"] .pos-bottom { - bottom: 5.57142857em; - width: 100%; -} -.cover-fullscreen.slider[data-paging="true"] h4 { - margin: 0; -} -.cover-slider { - overflow: hidden; -} -.cover-slider .slider { - position: relative; - width: 100%; - pointer-events: none; -} -.cover-slider .slider:nth-child(1) { - transform: translateY(-30%); -} -.cover-slider .slider:nth-child(2) { - transform: translateY(-25%); -} -.cover-slider .slider:nth-child(3) { - transform: translateY(-20%); -} -.cover-slider .slider .slide { - opacity: .05; -} -.cover-slider .typed-headline { - margin: 0; -} -.cover-slider .typed-headline + .btn { - margin-top: 0.92857143em; -} -.cover-slider .slider-container { - transform: rotateZ(-30deg) translateY(-10%); - -webkit-transform: rotateZ(-30deg) translateY(-10%); - position: absolute; - width: 100%; - height: 100%; - top: 0; -} -@media all and (min-width: 768px) { - .cover-slider + .cta-4 { - position: absolute; - background: none; - color: #fff; - border-bottom: none !important; - width: 100%; - transform: translate3d(0, -100%, 0); - -webkit-transform: translate3d(0, -100%, 0); - } - .cover-slider + .cta-4 a { - color: #fff; - font-weight: 600; - } -} -.cover-features.space--lg { - padding-bottom: 3.71428571em; -} -.cover-features .row:nth-child(2) { - margin-top: 11.14285714em; -} -@media all and (max-width: 767px) { - .cover-features.space--lg { - padding-bottom: 1.85714286em; - } - .cover-features .row:nth-child(2) { - margin-top: 3.71428571em; - } -} -/*! -- Stack Processes -- */ -.process-1 { - padding: 3.71428571em 0; - position: relative; - overflow: hidden; -} -.process-1 .process__item { - width: 50%; -} -.process-1 .process__item:not(:last-child) { - margin-bottom: 1.85714286em; -} -.process-1:before { - content: ''; - position: absolute; - width: 2px; - height: 100%; - left: 50%; - top: 0; - background: #2374ab; -} -.process__item { - position: relative; -} -.process__item:after { - content: ''; - width: 1.85714286em; - height: 1.85714286em; - background: #fff; - border: 2px solid #2374ab; - border-radius: 50%; - position: absolute; - top: 0; - margin-left: 1px; -} -@media all and (min-width: 768px) { - .process-1 .process__item:nth-child(odd) { - text-align: right; - padding-right: 3.71428571em; - } - .process-1 .process__item:nth-child(odd):after { - right: -0.92857143em; - } - .process-1 .process__item:nth-child(even) { - margin-left: 50%; - padding-left: 3.71428571em; - } - .process-1 .process__item:nth-child(even):after { - left: -0.92857143em; - } -} -@media all and (max-width: 767px) { - .process-1:before, - .process-2:before { - left: 0.92857143em; - } - .process-1 .process__item, - .process-2 .process__item { - width: 100%; - padding-left: 3.71428571em; - } - .process-1 .process__item:after, - .process-2 .process__item:after { - left: 0; - } -} -.bg--dark .process-1:before, -.imagebg .process-1:before, -.bg--dark .process-2:before, -.imagebg .process-2:before { - background: #fff; -} -.bg--dark .process-1 .process__item:after, -.imagebg .process-1 .process__item:after, -.bg--dark .process-2 .process__item:after, -.imagebg .process-2 .process__item:after { - background: #fff; -} -.bg--dark .process-1 .process__item:after, -.bg--dark .process-2 .process__item:after { - border-color: #252525; -} -.process-2 { - position: relative; -} -.process-2 .process__item { - padding-top: 3.71428571em; -} -.process-2 .process__item:after { - display: inline-block; - text-align: center; -} -.process-2:before { - content: ''; - position: absolute; - width: 100%; - height: 2px; - top: 0.92857143em; - left: 0; - background: #2374ab; -} -@media all and (max-width: 767px) { - .process-2:before { - height: 100%; - width: 2px; - left: 1.85714286em; - margin-left: 2px; - } - .process-2 .process__item:after { - top: 3.71428571em; - } -} -.process-3 { - list-style: none; - position: relative; -} -.process-3 li { - position: relative; - z-index: 1; - overflow: hidden; -} -.process-3 li .process__number { - float: left; - width: 15%; - width: 3.71428571em; - height: 3.71428571em; - border-radius: 50%; - border: 2px solid #2374ab; - background: #fff; - text-align: center; -} -.process-3 li .process__number span { - font-size: 1.35714286em; - font-weight: bold; - color: #2374ab; - position: relative; - top: 12px; -} -.process-3 li .process__body { - width: 80%; - float: right; -} -.process-3 li .process__body h4 { - margin-bottom: 0.342105263157895em; -} -.process-3 li:not(:last-child) { - margin-bottom: 3.71428571em; -} -.process-3:before { - content: ''; - position: absolute; - height: 100%; - width: 1px; - left: 1.85714286em; - top: 0; - border-left: 1px dashed #ddd; -} -.bg--dark .process-3 li .process__number { - background: #252525; -} -.bg--dark .process-3:before { - border-color: #aaa; -} -.process-stepper > li { - transition: all .3s ease; - display: inline-block; - float: left; - text-align: center; - position: relative; -} -.process-stepper > li:before { - transition: all .3s ease; - content: ''; - width: 0.92857143em; - height: 0.92857143em; - background: #ccc; - border-radius: 50%; - display: block; - margin: 0 auto; - margin-bottom: 0.92857143em; -} -.process-stepper > li:after { - transition: all .3s ease; - content: ''; - width: 100%; - height: 2px; - position: absolute; - background: #ccc; - top: 5px; - left: 0; -} -.process-stepper > li:first-child:after, -.process-stepper > li:last-child:after { - width: 50%; -} -.process-stepper > li:first-child:after { - left: 50%; -} -.process-stepper > li.active:before, -.process-stepper > li.active:after { - background: #2374ab; -} -.process-stepper > li > span { - cursor: default; -} -.process-stepper[data-process-steps="6"] > li { - width: 16.666666666666667%; -} -.process-stepper[data-process-steps="5"] > li { - width: 20%; -} -.process-stepper[data-process-steps="4"] > li { - width: 25%; -} -.process-stepper[data-process-steps="3"] > li { - width: 33.33333333%; -} -.process-stepper[data-process-steps="2"] > li { - width: 50%; -} -.bg--dark .process-stepper li:not(.active):before, -.bg--dark .process-stepper li:not(.active):after { - background: #585858; -} -/*! -- Stack Typed Text -- */ -span + .typed-text.h2 { - margin-left: 4px; -} -span + .typed-text.h1 { - margin-left: 6px; -} -@media all and (max-width: 767px) { - .typed-text { - display: block; - } - .typed-headline { - margin-bottom: 1.85714286em; - } - .typed-headline h1, - .typed-headline .h1 { - margin-bottom: 0; - } -} -/*! -- Stack Forms -- */ -.bg--dark input, -.imagebg:not(.image--light) input, -.bg--dark textarea, -.imagebg:not(.image--light) textarea, -.bg--dark select, -.imagebg:not(.image--light) select, -.bg--dark .input-select:after, -.imagebg:not(.image--light) .input-select:after { - color: #666666; -} -.bg--dark label, -.imagebg:not(.image--light) label { - color: #fff; -} -.bg--dark form.attempted-submit input.field-error { - background: #D84D4D; - color: #fff; -} -form { - position: relative; -} -form > div[class*='col-']:not(:last-child), -form > .row > div[class*='col-']:not(:last-child) { - margin-bottom: 0.92857143em; -} -form .boxed:last-child { - margin: 0; -} -form.form--clearfix { - margin-left: -15px; -} -@media all and (min-width: 768px) { - div[class*='col-'] > form div[class*='col-']:last-child:nth-child(2) { - padding-right: 0; - } - div[class*='col-'] > form div[class*='col-']:first-child:nth-last-child(2) { - padding-left: 0; - } - form.form--horizontal > div[class*='col-'] { - margin: 0; - } -} -@media all and (max-width: 767px) { - .row form > .row { - margin-left: 0; - margin-right: 0; - } -} -h2 + form, -.h2 + form { - margin-top: 2.78571429em; -} -h3 + form, -.h3 + form, -.lead + form { - margin-top: 2.78571429em; -} -.cover .lead + form { - margin-top: 3.71428571em; -} -form + span.type--fine-print { - margin-top: 1.08333333333334em; - display: inline-block; -} -.form--inline > span.h4 { - color: #666666; -} -.form--inline input, -.form--inline [class*='input-'] { - display: inline-block; - max-width: 200px; -} -.form--inline > span:not(:last-child), -.form--inline input:not(:last-child), -.form--inline [class*='input-']:not(:last-child) { - margin-right: 0.92857143em; -} -.form--inline button { - max-width: 200px; -} -.bg--dark .form--inline > span.h4, -.imagebg:not(.image--light) .form--inline > span.h4 { - color: #fff; -} -button, -input[type="submit"] { - height: 3.25000000000001em; -} -button.btn, -input[type="submit"].btn { - font-size: 0.85714286em; - font-weight: 700; - padding-left: 0; - padding-right: 0; -} -button.btn.btn--primary, -input[type="submit"].btn.btn--primary { - color: #fff; -} -button.btn.type--uppercase, -input[type="submit"].btn.type--uppercase { - letter-spacing: .5px; - margin-right: -0.5px; -} -button.checkmark.checkmark--cross, -input[type="submit"].checkmark.checkmark--cross { - width: 1.85714286em; - height: 1.85714286em; - border: none; - background: #e23636; -} -button.checkmark.checkmark--cross:before, -input[type="submit"].checkmark.checkmark--cross:before { - content: '\00d7'; - font-size: 18px; - top: -1px; -} -button[type="submit"].btn--loading:after, -input[type="submit"][type="submit"].btn--loading:after { - background: #2374ab; -} -.bg--primary button.btn { - border-color: rgba(255, 255, 255, 0.5); - color: #fff; -} -.bg--primary button.btn:hover { - border-color: #fff; -} -.bg--primary button.btn.btn--primary { - color: #2374ab; - border-color: #2374ab; -} -.bg--primary button.btn.btn--primary-1 { - border-color: #2c3d55; -} -input, -select { - height: 2.78571429em; -} -input.field-error { - border-color: #EBA8A8; -} -input[type] + input[type], -input[type] + .input-checkbox, -input[type] + button, -input[type] + .input-select { - margin-top: 0.92857143em; -} -input, -[class*='input-'] label, -select, -textarea { - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; -} -input:not([class*='col-']), -select:not([class*='col-']), -.input-select:not([class*='col-']), -textarea:not([class*='col-']), -button[type="submit"]:not([class*='col-']) { - width: 100%; -} -input[type], -select, -textarea { - padding-left: 0.92857143em; -} -input[type]:focus, -select:focus, -textarea:focus { - border-color: #2d90d4; -} -input[type="image"] { - border: none; - padding: none; - width: auto; -} -label { - font-size: .85714286em; -} -.bg--primary label, -.bg--primary-1 label { - color: #fff; -} -.input-icon i { - top: 8px; - left: 8px; -} -.input-icon input { - padding-left: 2.78571429em; -} -.text-center .input-checkbox label, -.text-center .input-radio label { - margin: 0 auto; -} -.input-checkbox label, -.input-radio label { - font-size: 1em; -} -.input-checkbox { - margin-top: 0.46428571em; -} -.input-checkbox.field-error label { - border-color: #EBA8A8; -} -.input-checkbox label { - background: none; - border: 1px solid #d3d3d3; - text-align: center; - position: relative; -} -.input-checkbox label:not(:last-child) { - margin-right: 0.46428571em; -} -.input-checkbox label:hover { - border-color: #2374ab; -} -.input-checkbox label:before { - content: ''; - left: 0; - border-radius: 6px; - position: absolute; - width: 100%; - height: 100%; - border: 1px solid #2374ab; - opacity: 0; - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; -} -.input-checkbox input:checked + label { - border-color: #2374ab; - background: #2374ab; -} -.input-checkbox input:checked + label:after { - content: 'L'; - transform: rotateY(180deg) rotateZ(-45deg); - color: #fff; - position: absolute; - width: 100%; - left: 0; - top: -2px; - font-weight: 700; -} -.input-checkbox input:checked + label:before { - animation: pulse .45s ease forwards; - -webkit-animation: pulse .45s ease forwards; -} -.input-checkbox + span { - display: inline-block; - position: relative; - bottom: 10px; - margin-left: 0.92857143em; - font-size: 0.85714286em; - white-space: nowrap; -} -.input-checkbox + button[type] { - margin-top: 0.92857143em; -} -.input-checkbox + span + button[type] { - margin-top: 0.92857143em; -} -.bg--dark .input-checkbox:not(.checked) label { - border-color: #a5a5a5; -} -.bg--dark .input-checkbox + span { - opacity: .75; -} -.input-checkbox.input-checkbox--switch label { - width: 3.71428571em; - border-radius: 60px; -} -.input-checkbox.input-checkbox--switch label:before { - width: 20px; - height: 20px; - border-radius: 50%; - border-color: #d3d3d3; - opacity: 1; - left: 2px; - top: 2px; -} -.input-checkbox.input-checkbox--switch label:hover:before { - border-color: #2374ab; -} -.input-checkbox.input-checkbox--switch input:checked + label { - background: none; -} -.input-checkbox.input-checkbox--switch input:checked + label:before { - animation: none !important; - background: #2374ab; - border-color: #2374ab; - transform: translateX(1.85714286em); -} -.input-checkbox.input-checkbox--switch input:checked + label:after { - display: none; -} -.input-radio.field-error label { - border-color: #EBA8A8; -} -.input-radio .input__label { - font-size: .85714286em; - display: inline-block; -} -.input-radio .input__label + label { - margin-top: 0.92857143em; -} -.input-radio label { - position: relative; - background: none; - border: 1px solid #d3d3d3; -} -.input-radio label:hover { - border-color: #2374ab; -} -.input-radio label:before { - content: ''; - position: absolute; - width: 100%; - height: 100%; - border-radius: 50%; - border: 1px solid #2374ab; - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; - opacity: 0; - left: 0; -} -.input-radio input:checked + label { - border-color: #2374ab; - background-color: #2374ab; -} -.input-radio input:checked + label:after { - content: ''; - position: absolute; - width: 10px; - height: 10px; - left: 7px; - top: 7px; - background-color: #fff; - border-radius: 50%; -} -.input-radio input:checked + label:before { - animation: pulse .4s ease forwards; -} -.input-radio--innerlabel label { - transition: all .3s ease; - height: 2.78571429em; - line-height: 2.50714286em; - padding: 0 0.92857143em; - border: 1px solid #ececec; - border-radius: 6px; - cursor: pointer; - width: 100%; - text-align: center; -} -.input-radio--innerlabel:hover { - border-color: #2374ab; -} -.input-radio--innerlabel input:checked + label { - border-color: #2374ab; - background: #2374ab; - color: #fff; -} -.input-radio--innerlabel input:checked + label:after { - display: none; -} -.input-radio--innerlabel input:checked + label:before { - animation: none; -} -@media all and (max-width: 1024px) { - .input-radio input:checked + label:after { - top: 6px; - left: 6px; - } -} -.bg--primary .input-radio--innerlabel { - border-color: #2d90d4; -} -.bg--primary .input-radio--innerlabel:hover { - border-color: #fff; -} -.bg--primary .input-radio--innerlabel.checked { - background: #fff; - border-color: #fff; -} -.bg--primary .input-radio--innerlabel.checked label { - color: #2374ab; -} -.bg--primary-1 .input-radio--innerlabel { - border-color: #3d5577; -} -.bg--primary-1 .input-radio--innerlabel:hover { - border-color: #fff; -} -.bg--primary-1 .input-radio--innerlabel.checked { - background: #fff; - border-color: #fff; -} -.bg--primary-1 .input-radio--innerlabel.checked label { - color: #2c3d55; -} -.input-select { - position: relative; -} -.input-select select { - -moz-appearance: none; - -webkit-appearance: none; -} -.input-select select::-ms-expand { - display: none; -} -.input-select:not(:last-child) { - margin-bottom: 0.92857143em; -} -.input-select:after { - position: absolute; - right: 0; - height: 100%; - top: 0; - font-size: 30px; - content: '\2263'; - pointer-events: none; - padding: 0 13px; - border-left: 1px solid #ececec; - line-height: 31px; -} -.input-select:focus:after { - border-color: #2374ab; -} -.input-select select:focus { - border-color: #2374ab; -} -.input-number { - position: relative; -} -.input-number > input[type="number"] { - padding-left: .46428571em; - -moz-appearance: textfield; - width: 100%; - text-align: center; -} -.input-number > input[type="number"]::-webkit-inner-spin-button { - display: none; -} -.input-number .input-number__controls { - position: absolute; - height: 100%; - width: 100%; - right: 0; - top: 0; - padding: 0 0.92857143em; -} -.input-number .input-number__controls > span { - position: absolute; - display: block; - width: 10%; - min-width: 3.71428571em; - height: 100%; - cursor: pointer; - -webkit-user-select: none; - user-select: none; - text-align: center; - padding-top: 6px; - transition: all .3s ease; -} -.input-number .input-number__controls > span:hover { - color: #2374ab; -} -.input-number .input-number__controls .input-number__increase { - right: 0; - border-left: 1px solid #ececec; -} -.input-number .input-number__controls .input-number__decrease { - left: 0; - border-right: 1px solid #ececec; -} -/*! -- Stack Subscribe Forms -- */ -.subscribe-form-1 h3 { - margin-bottom: 0.52em; -} -.subscribe-form-1.boxed form { - margin: 1.85714286em; -} -@media all and (min-width: 991px) { - .subscribe-form-2 p { - top: 2px; - position: relative; - } - .subscribe-form-2 input { - margin: 0; - } - .subscribe-form-2 form [class*='col-'] { - margin: 0 !important; - } -} -@media all and (max-width: 990px) { - .subscribe-form-2 { - text-align: center; - } - .subscribe-form-2 form { - margin-top: 1.85714286em; - } -} -/*! -- Stack Elaborate Forms -- */ -@media all and (max-width: 767px) { - .elaborate-form-1 .pos-vertical-center { - padding-left: 15px; - padding-right: 15px; - } - .elaborate-form-1 form .col-xs-6:nth-child(even) { - padding-left: 15px; - } - .elaborate-form-1 form .col-xs-6:nth-child(odd) { - padding-right: 15px; - } - .elaborate-form-1 .row form > .row { - margin-left: -15px; - margin-right: -15px; - } -} -/* Stack Boxed Forms */ -.boxed-form h4 { - margin-bottom: 0.684210526315789em; -} -.boxed-form:last-child { - margin-bottom: 0; -} -/* Stack Datepicker Form */ -.datepicker { - cursor: pointer; -} -.picker { - transition: all .3s ease; - z-index: 10; - max-width: 100%; - -webkit-transition: all .3s ease; - margin-top: 0.46428571em; - position: absolute; - background: #ffffff; - border: 1px solid #ececec; - border-radius: 6px; - padding: 0.92857143em; - box-shadow: 0 23px 40px rgba(0, 0, 0, 0.2); -} -.picker .picker__header { - text-align: center; - margin-bottom: 0.92857143em; -} -.picker .picker__header > div { - font-weight: 600; - display: inline-block; - color: #252525; -} -.picker .picker__header > div:not(:last-child) { - margin-right: 0.46428571em; -} -.picker .picker__header .picker__nav--prev, -.picker .picker__header .picker__nav--next { - height: 10px; - width: 10px; - cursor: pointer; -} -.picker .picker__header .picker__nav--prev:after, -.picker .picker__header .picker__nav--next:after { - font-family: 'stack-interface'; -} -.picker .picker__header .picker__nav--next { - float: right; -} -.picker .picker__header .picker__nav--next:after { - content: '\e80c'; -} -.picker .picker__header .picker__nav--prev { - float: left; -} -.picker .picker__header .picker__nav--prev:after { - content: '\e80b'; -} -.picker .picker__day { - transition: all .3s ease; - cursor: pointer; -} -.picker .picker__day.picker__day--highlighted { - color: #2374ab; - font-weight: 600; -} -.picker .picker__day:hover { - color: #2374ab; -} -.picker:not(.picker--opened) { - opacity: 0; - visibility: hidden; - pointer-events: none; - transform: scale(0); -} -.picker .picker__holder { - outline: none !important; - border: none !important; -} -.picker table td { - padding: 0.46428571em; - padding-top: 0; -} -.picker .picker__footer { - text-align: center; -} -.picker .picker__button--today { - float: left; -} -.picker .picker__button--close { - float: right; -} -.picker button { - transition: all .3s ease; - height: auto; - border: none; - display: inline-block; -} -.picker button:not(:hover) { - opacity: .5; -} -/*! -- Stack Sliders -- */ -.flickity-prev-next-button { - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; - border-radius: 0; - background: #252525; - width: 2.78571429em; - height: 5.57142857em; -} -.flickity-prev-next-button:not(:hover) { - opacity: .5; -} -.flickity-prev-next-button:hover { - background: #252525; -} -.flickity-prev-next-button.previous { - left: 0; -} -.flickity-prev-next-button.next { - right: 0; -} -.flickity-prev-next-button:before { - color: #fff; -} -.slider.slider--inline-arrows .flickity-prev-next-button { - background: none; -} -.slider.slider--inline-arrows .flickity-prev-next-button:before { - font-size: 1.78571429em; - color: #252525; - content: '\e802'; -} -.slider.slider--inline-arrows .flickity-prev-next-button.previous:before { - content: '\e801'; -} -.slider.slider--columns .previous { - left: 15px; -} -.slider.slider--columns .next { - right: 15px; -} -.slider.border--round .slides li { - border-radius: 6px; - overflow: hidden; -} -.slider.boxed--border .slides li { - border: 1px solid #ececec; -} -.slider .slides li .feature:not(.feature-9) { - margin-bottom: 0; -} -.slide .boxed:last-child { - margin-bottom: 0; -} -.slide:not([class*='col-']) > img:only-child { - width: 100%; -} -.bg--dark .slider.slider--inline-arrows .flickity-prev-next-button:before, -.bg--primary .slider.slider--inline-arrows .flickity-prev-next-button:before, -.imagebg:not(.image--light) .slider.slider--inline-arrows .flickity-prev-next-button:before { - color: #fff; -} -@media all and (max-width: 990px) { - .flickity-prev-next-button { - display: none; - } -} -@media all and (min-width: 768px) { - h2 + .slider, - .h2 + .slider { - margin-top: 3.71428571em; - } -} -.slider.slider--ken-burns:not(.parallax) .slide.is-selected > .background-image-holder, -.slider.slider--ken-burns:not(.parallax) .slide.is-selected > img:only-child { - animation: kenBurns 15s ease alternate infinite; - -webkit-animation: kenBurns 15s ease alternate infinite; -} -.radial { - margin-left: auto; - margin-right: auto; -} -.radial .radial__label { - transition: opacity .3s ease; - -webkit-transition: opacity .3s ease; -} -.radial:not(.radial--active) .radial__label { - opacity: 0; -} -.radial:not(:last-child) { - margin-bottom: 1.85714286em; -} -@media all and (max-width: 767px) { - .radial { - margin-bottom: 1.85714286em; - } -} -/*! -- Stack Pricing -- */ -.pricing { - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; - position: relative; -} -.pricing h3:first-child { - margin: 0; -} -.pricing .label { - top: 2.78571429em; - right: 2.78571429em; -} -.pricing .h2 { - margin-bottom: 0.3939393939394em; -} -.pricing ul li:not(:last-child) { - margin-bottom: 0.46428571em; -} -.pricing ul li .checkmark + span { - position: relative; - bottom: 3px; -} -.pricing:hover { - box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); - box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.04); -} -.pricing .h1 { - font-size: 4.21428571428571em; - line-height: 1.10169491525424em; - margin-bottom: 0.22033898305085em; -} -.pricing .h1 .pricing__dollar { - font-size: 0.51020408163265em; - position: relative; - bottom: 20px; -} -.pricing .feature-6 p { - min-height: 5.57142857em; -} -.pricing-1 .btn:last-child { - position: absolute; - width: 100%; - bottom: 0; - left: 0; - border-radius: 0 0 6px 6px; - padding: 0.92857143em 0; - margin: 0; -} -.pricing-1 .btn:last-child:hover { - transform: none !important; -} -.pricing-1 ul { - margin-bottom: 5.57142857em; -} -.pricing-1 p { - min-height: 5.57142857em; -} -.pricing-1 p:first-of-type { - margin-top: 1.85714286em; -} -.pricing-1 p:last-of-type { - margin-bottom: 5.57142857em; -} -.pricing-1 img + p:first-of-type { - margin-top: 0; -} -@media all and (min-width: 991px) { - .pricing-2 ul:first-child { - margin-top: 4.64285714em; - } -} -@media all and (max-width: 990px) { - .pricing-2 { - text-align: center; - } - .pricing-2 ul:first-child { - margin-top: 1.85714286em; - } -} -.pricing-3 { - border: 1px solid #ececec; - border-radius: 6px; -} -.pricing-3 .pricing__head { - margin: 0; - border-bottom: 1px solid #ececec; -} -.pricing-3 .pricing__head + .btn { - display: block; - border-radius: 0; - padding: 0.92857143em 0; -} -.pricing-3 ul { - border-radius: 0 0 6px 6px; -} -.pricing-3 ul li { - padding: 0.92857143em 0; -} -.pricing-3 ul li:not(:last-child) { - border-bottom: 1px solid #ececec; - margin: 0; -} -.pricing-3 ul:last-child { - margin: 0; -} -@media all and (max-width: 990px) { - .pricing-3 { - margin-bottom: 1.85714286em; - } -} -@media all and (min-width: 768px) { - .pricing-section-1 .pricing:not(.boxed--emphasis) { - left: 0.92857143em; - } - .pricing-section-1 .pricing.boxed--emphasis { - right: 0.92857143em; - } -} -@media all and (min-width: 990px) { - .pricing-section-2 div[class*='col-'] { - padding: 0; - } - .pricing-section-2 div[class*='col-']:not(:first-child):not(:last-child) .pricing__head { - border-radius: 0; - } - .pricing-section-2 div[class*='col-']:first-child .pricing { - border-radius: 6px 0 0 6px; - } - .pricing-section-2 div[class*='col-']:first-child .pricing .pricing__head { - border-radius: 6px 0 0 0; - } - .pricing-section-2 div[class*='col-']:last-child .pricing { - border-radius: 0 6px 6px 6px; - border-right: 1px solid #ececec; - } - .pricing-section-2 div[class*='col-']:last-child .pricing .pricing__head { - border-radius: 0 6px 0 0; - } - .pricing-section-2 .pricing { - border: 1px solid #ececec; - border-radius: 0 0 0 6px; - border-right: none; - } - .pricing-section-2 .pricing:hover { - box-shadow: none; - } - .pricing-section-2 .pricing ul { - margin: 0; - } -} -.pricing-section-2.bg--dark .pricing, -.pricing-section-2.bg--dark .pricing .pricing__head, -.pricing-section-2.bg--dark .pricing ul li:not(:last-child), -.pricing-section-2.bg--dark div[class*='col-']:last-child .pricing { - border-color: #3f3f3f; -} -.pricing-section-2.imagebg .pricing, -.pricing-section-2.imagebg .pricing .pricing__head, -.pricing-section-2.imagebg .pricing ul li:not(:last-child), -.pricing-section-2.imagebg div[class*='col-']:last-child .pricing { - border-color: rgba(255, 255, 255, 0.2); -} -/*! -- Stack Progress Horizontal -- */ -.progress-horizontal:not(:last-child) { - margin-bottom: 1.85714286em; -} -.progress-horizontal.progress-horizontal--lg .progress-horizontal__bar { - height: 1.85714286em; -} -.progress-horizontal.progress-horizontal--sm .progress-horizontal__bar { - height: 0.46428571em; -} -.progress-horizontal__bar { - height: 0.92857143em; - border-radius: 100px; - background: #fafafa; - border: 1px solid rgba(0, 0, 0, 0.1); -} -.progress-horizontal__bar:not(:last-child) { - margin-bottom: 0.46428571em; -} -.progress-horizontal__progress { - background: #2374ab; - border-radius: 100px; -} -/*! -- Stack Maps -- */ -iframe[src*='google.com/maps'] { - border: none; -} -.map-container { - min-height: 400px; -} -.map-container:not(:last-child) { - margin-bottom: 1.85714286em; -} -.map-container.border--round { - overflow: hidden; - z-index: 2; -} -.map-container.border--round .gm-style { - border-radius: 6px; -} -.map-container iframe { - left: 0; -} -@media all and (min-width: 768px) { - .background-image-holder .map-container, - .imageblock__content .map-container { - position: absolute; - width: 100%; - height: 100%; - top: 0; - left: 0; - } - .map-container + div[class*='col-'] { - margin-top: 3.71428571em; - } -} -/*! -- Stack Testimonials -- */ -.testimonial { - position: relative; - overflow: hidden; -} -.testimonial h5:nth-last-child(2) { - margin: 0; -} -.testimonial .testimonial__image { - margin-bottom: 1.85714286em; -} -@media all and (min-width: 1025px) { - .testimonial-1 .switchable__text { - margin-top: 7.42857143em; - } -} -.testimonial-2 { - float: none; - width: 100%; -} -.testimonial-2 .testimonial__image img { - max-height: 3.71428571em; - float: left; - margin-right: 1.85714286em; -} -.testimonial-2 .boxed { - width: 100%; -} -@media all and (max-width: 990px) { - .testimonial-2 p { - min-height: 7.42857143em; - } -} -@media all and (max-width: 767px) { - .testimonial-2 p { - min-height: 0; - } -} -@media all and (min-width: 768px) { - .lead + .testimonial-2 { - margin-top: 3.71428571em; - } -} -@media all and (min-width: 768px) { - .testimonials-1 .list-inline { - position: relative; - top: 0.92857143em; - } - .testimonials-1 .list-inline li:not(:last-child) { - margin-right: 3.71428571em; - } -} -@media all and (max-width: 767px) { - .testimonials-1 .list-inline { - margin-top: 1.85714286em; - } - .testimonials-1 .list-inline li { - margin-bottom: 1.85714286em; - } -} -/*! -- Stack Masonry -- */ -.masonry__item:not(:empty) { - margin-bottom: 30px; - transform-style: preserve-3d; -} -.masonry__item:not(:empty) article { - margin: 0; -} -.masonry__item:not(:empty) article .boxed { - margin: 0; -} -.masonry__item:empty { - height: 0; - min-height: 0; -} -.masonry hr + .masonry__container, -.masonry hr + .row { - margin-top: 4.64285714em; -} -.masonry-filter-holder:not(.masonry-filters--horizontal) { - display: inline-block; - cursor: pointer; - height: 3.71428571em; - position: relative; - z-index: 9; - min-width: 143px; -} -.masonry-filter-holder:not(.masonry-filters--horizontal) .masonry__filters { - cursor: pointer; - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; - z-index: 2; - display: inline-block; - position: absolute; - left: 0; - text-align: left; - padding: 0.92857143em 1.85714286em; - border: 1px solid #ececec; - background: #ffffff; - border-radius: 6px; -} -.masonry-filter-holder:not(.masonry-filters--horizontal) .masonry__filters ul { - margin: 0; - cursor: pointer; -} -.masonry-filter-holder:not(.masonry-filters--horizontal) .masonry__filters ul li { - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; - display: block; - color: #666666; - white-space: nowrap; -} -.masonry-filter-holder:not(.masonry-filters--horizontal) .masonry__filters ul li:not(:last-child) { - margin-bottom: 0.92857143em; -} -.masonry-filter-holder:not(.masonry-filters--horizontal) .masonry__filters ul li.active { - color: #2374ab; - cursor: pointer; -} -.masonry-filter-holder:not(.masonry-filters--horizontal) .masonry__filters ul li.active:after { - content: '\25bc'; - font-size: 8px; - margin-left: 6px; - position: relative; - bottom: 2px; - display: inline-block; - transform: scaleX(1.4) scaleY(0.9); - transition: 0.2s linear; - -webkit-transition: 0.2s linear; - -moz-transition: 0.2s linear; -} -.masonry-filter-holder:not(.masonry-filters--horizontal) .masonry__filters ul li:hover { - color: #2374ab; -} -.masonry-filter-holder:not(.masonry-filters--horizontal) .masonry__filters ul:hover li.active:after { - opacity: 0; -} -.masonry-filter-holder:not(.masonry-filters--horizontal):not(:hover) .masonry__filters ul { - max-height: 1.85714286em; - overflow: hidden; -} -.masonry-filter-holder:not(.masonry-filters--horizontal):not(:hover) .masonry__filters ul li:not(.active) { - display: none; -} -.masonry-filter-holder:not(.masonry-filters--horizontal):hover .masonry__filters { - box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); - box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.04); -} -.masonry-filter-holder:not(.masonry-filters--horizontal):hover .masonry__filters ul li.active { - cursor: default; -} -.masonry-filters--horizontal { - display: inline-block; -} -.masonry-filters--horizontal .masonry__filters { - display: inline-block; - position: relative; - bottom: 20px; - margin-left: 0.92857143em; -} -.masonry-filters--horizontal .masonry__filters ul li { - transition: all .3s ease; - cursor: pointer; - display: inline-block; -} -.masonry-filters--horizontal .masonry__filters ul li:not(:last-child) { - margin-right: 1.85714286em; -} -.masonry-filters--horizontal .masonry__filters ul li.active { - color: #2374ab; -} -.masonry-filters--horizontal .masonry__filters ul li:not(.active) { - opacity: .5; -} -.masonry-filters--horizontal .masonry__filters ul li:hover { - opacity: 1; -} -.masonry-filter-holder + .masonry__container { - margin-top: 3.71428571em; -} -.bg--dark .masonry-filter-holder .masonry__filters { - background: #2a2a2a; - border-color: #3f3f3f; -} -.bg--dark .masonry-filter-holder .masonry__filters li { - color: #fff; -} -.masonry.masonry-demos .masonry__item:not(:empty) { - margin-bottom: 3.71428571em; -} -.masonry.masonry-demos .masonry__item h5 { - margin-bottom: 0; -} -.masonry.masonry-demos .masonry__item:not([style]) .hover-item { - min-height: 450px; - background: #323232; - border: 1px solid #3f3f3f; -} -.masonry.masonry-demos .hover-item { - transition: 0.35s ease-out; - -webkit-transition: 0.35s ease-out; - -moz-transition: 0.35s ease-out; - border-radius: 6px; - overflow: hidden; -} -.masonry.masonry-demos .hover-item:hover { - transform: translateY(-10px); -} -.masonry.masonry-demos .masonry__container { - margin-top: 3.71428571em; -} -/*! -- Stack Blog -- */ -article .article__title { - margin-bottom: 3.71428571em; -} -article .article__title > a { - display: block; -} -article .article__title > a:hover { - text-decoration: none; - opacity: .75; -} -article .article__title h2 { - margin-bottom: 0.3939393939394em; -} -article .article__title h1 { - margin-bottom: 0.29545454545455em; -} -article .article__body img, -article .article__body iframe, -article .article__body .video-cover { - border-radius: 6px; -} -article .article__body img:not(:last-child), -article .article__body iframe:not(:last-child), -article .article__body .video-cover:not(:last-child) { - margin-bottom: 1.85714286em; -} -article .article__body > a:first-child > img { - margin-bottom: 1.85714286em; -} -article .article__body p, -article .article__body ul { - font-size: 1.35714286em; - line-height: 1.68421053em; - font-weight: 400; - color: #808080; -} -article .article__body p:not(:last-child), -article .article__body ul:not(:last-child) { - margin-bottom: 1.36842105263158em; -} -article .article__body p + .btn:last-child, -article .article__body ul + .btn:last-child { - margin-top: 0.92857143em; -} -article .article__body p + h5, -article .article__body ul + h5 { - margin-top: 2.78571429em; -} -article .article__body blockquote { - text-align: center; -} -article .article__body blockquote:not(:last-child) { - margin-top: 2.08em; - margin-bottom: 2.08em; -} -article .article__share { - margin-top: 5.57142857em; -} -article.imagebg { - padding: 1.85714286em; - overflow: hidden; -} -article.imagebg:before { - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; -} -article.imagebg:hover:before { - opacity: .6; -} -article.imagebg .article__title { - margin: 0; - position: absolute; - bottom: 0; - z-index: 2; - max-width: 90%; -} -article.imagebg .article__title span { - font-size: 0.85714286em; -} -article.imagebg .label { - z-index: 2; - top: 1.85714286em; - right: 1.85714286em; -} -article.feature-1 h5 { - min-height: 3.71428571em; -} -article.feature-1 a img { - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; -} -article.feature-1 a:hover img { - opacity: .85; -} -figure[class*='col-'] { - padding: 0 !important; -} -figure.pull-right { - margin-left: 2.78571429em; -} -figure.pull-left { - margin-right: 2.78571429em; -} -figure img:not(:last-child) { - margin-bottom: 0.46428571em !important; -} -figure figcaption { - font-size: 0.85714286em; - font-style: italic; -} -section.unpad > article .imagebg + div { - padding: 5.57142857em 0; -} -.article__author { - padding-bottom: 1.85714286em; -} -.article__author img { - max-height: 3.71428571em; - margin-bottom: 0.46428571em; -} -.slides--gapless article.imagebg { - height: 27.85714286em; -} -.masonry-blog-magazine article, -.masonry-blog-magazine .masonry__promo { - height: 338px; -} -.masonry-blog-magazine .height--tall { - height: calc(706px); -} -@media all and (min-width: 991px) { - .masonry__promo.boxed--lg { - padding: 7.42857143em; - } -} -@media all and (max-width: 990px) { - .masonry-blog-magazine .height--tall { - height: 338px; - } - .masonry__promo .pos-vertical-center { - top: 0; - transform: none; - } -} -@media all and (max-width: 1200px) { - .masonry__promo.boxed--lg { - padding: 3.71428571em; - } -} -.pagination { - text-align: center; - margin-top: 1.85714286em; -} -.pagination:after { - content: ""; - display: table; - clear: both; -} -.pagination a { - font-weight: normal; -} -.pagination div[class*='col-'] { - padding: 0; -} -.pagination ol { - margin-bottom: 0; - display: inline-block; -} -.pagination ol li { - display: inline-block; - margin: 0; - font-weight: 700; - line-height: 23px; - width: 1.85714286em; - height: 1.85714286em; - border-radius: 50%; - border: 1px solid #ececec; -} -.pagination ol li > a { - font-weight: 700; -} -.pagination ol li:not(:last-child) { - margin-right: 0.46428571em; -} -.pagination ol li.pagination__current { - cursor: default; - background: #ececec; - color: #aaa; -} -.pagination__prev, -.pagination__next { - display: inline-block; -} -.pagination__next { - float: right; -} -.pagination__prev { - float: left; -} -.blog-article-wide:not(:last-child) { - border-bottom: 1px solid #ececec; - margin-bottom: 3.71428571em; -} -.masonry-blog-list hr + .masonry__container { - margin-top: 0; -} -.masonry-blog-list article { - border-bottom: 1px solid #ececec; - padding-top: 2.78571429em; - margin-bottom: 5.57142857em; -} -.masonry-blog-list article .article__body { - padding-bottom: 5.57142857em; -} -.masonry-blog-magazine .masonry__item a { - font-weight: normal; -} -.masonry-blog-magazine .masonry__item a:hover { - text-decoration: none; -} -.masonry-filter-container { - margin-bottom: 1.85714286em; -} -.masonry-filter-container > span { - position: relative; - bottom: 20px; -} -.masonry-filter-container > span + .masonry-filter-holder { - margin-left: 0.92857143em; -} -.comments__list li { - padding: 1.85714286em; - border: 1px solid #ececec; - border-bottom: none; -} -.comments__list li:last-child { - border-bottom: 1px solid #ececec; -} -.comments__list li:nth-child(odd) { - background: #fcfcfc; -} -.comments__list li:nth-child(even) { - background: #f9f9f9; -} -.comments__list li:first-child { - border-radius: 6px 6px 0 0; -} -.comments__list li:last-child { - border-radius: 0 0 6px 6px; -} -.bg--secondary .comments__list li:nth-child(even) { - background: #fff; -} -@media all and (min-width: 768px) { - .comments__list li { - padding: 2.78571429em; - } -} -.comment { - overflow: hidden; -} -.comment:not(:last-child) { - border-bottom: 1px solid #ececec; - padding-bottom: 1.85714286em; -} -.comment .comment__avatar { - width: 15%; - float: left; -} -.comment .comment__avatar img { - max-height: 3.71428571em; -} -.comment .comment__meta { - font-size: 0.85714286em; -} -.comment .comment__meta a { - display: inline-block; -} -.comment .comment__meta a:not(:first-child) { - margin-left: 1.08333333333334em; -} -.comment .comment__meta + p { - margin-top: 0.92857143em; -} -.comment .comment__body { - width: 85%; - float: right; -} -.comment .comment__body h5.type--fine-print { - margin: 0; -} -.comment + .comment { - margin-top: 1.85714286em; - padding-left: 15%; -} -@media all and (min-width: 768px) { - .comments + .comments-form { - margin-top: 3.71428571em; - } -} -@media all and (min-width: 768px) { - h3 + .related-blog-list { - margin-top: 3.71428571em; - } -} -.related-blog-list li:not(:last-child) { - margin-bottom: 1.85714286em; -} -.related-blog-list article img { - border-radius: 6px; -} -.related-blog-list article .article__title { - margin-top: 0.92857143em; - margin-bottom: 0; -} -.related-blog-list article .article__title .h4 { - margin-bottom: 0.68421052631579em; -} -@media all and (min-width: 991px) { - .sidebar { - margin-top: 7.42857143em; - position: relative; - bottom: 18px; - } -} -.sidebar__widget > h5:first-child { - margin-bottom: 0.92857143em; -} -.sidebar__widget:not(:last-child) { - margin-bottom: 3.71428571em; -} -.tag-cloud li { - display: inline-block; -} -.tag-cloud li:not(:last-child) { - margin-right: 0.46428571em; -} -.tag-cloud li:not(:last-child):after { - content: ','; -} -.conversation__head { - border-radius: 6px 6px 0 0; -} -.conversation__head.boxed:not(:last-child) { - margin: 0; -} -.conversation__head h4 { - margin: 0; -} -.conversation__head .conversation__avatar { - margin-top: 0.92857143em; -} -.conversation__head .conversation__avatar img { - max-height: 1.85714286em; - display: inline-block; - margin-right: 0.46428571em; - margin-bottom: 0; -} -@media all and (min-width: 768px) { - .conversation__avatar { - position: absolute; - top: 1.85714286em; - right: 2.78571429em; - } -} -.conversation__reply { - border-top: none !important; - border-bottom: none; - border-radius: 0; -} -.conversation__reply.boxed:not(:last-child) { - margin-bottom: 0; -} -.conversation__reply + .conversation__comments .comments__list li:first-child { - border-radius: 0; - border-top: none; -} -/*! -- Stack Portfolio -- */ -.project-thumb > a { - display: block; -} -.project-thumb:not(.hover-element) > a { - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; - margin-bottom: 1.85714286em; -} -.project-thumb:not(.hover-element) > a:hover { - opacity: .85; -} -.project-thumb.hover-element { - margin: 0; -} -.project-thumb.hover-element > a { - height: 24.14285714em; - text-decoration: none; - font-weight: normal; -} -.project-thumb.hover-element .background-image-holder { - transition: 0.5s ease-out; - -webkit-transition: 0.5s ease-out; - -moz-transition: 0.5s ease-out; -} -.project-thumb.hover-element .hover-element__reveal .project-thumb__title { - padding: 1.85714286em; - z-index: 2; - position: relative; - color: #fff; -} -.project-thumb.hover-element .hover-element__reveal .project-thumb__title h5 { - margin: 0; -} -.project-thumb.hover-element.hover--active { - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; -} -.project-thumb.hover-element.hover--active:hover { - opacity: .85; -} -.project-thumb.hover-element:not(.hover--active)[data-scrim-top] .hover-element__reveal { - transition: 0.5s ease; - -webkit-transition: 0.5s ease; - -moz-transition: 0.5s ease; - transform: translate3d(0, -100px, 0); - -webkit-transform: translate3d(0, -100px, 0); -} -.project-thumb.hover-element:not(.hover--active)[data-scrim-top]:hover .hover-element__reveal { - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); -} -.project-thumb.hover-element [data-scrim-top]:before { - height: 100%; -} -.project-thumb h4 { - margin-bottom: 0; -} -.project-thumb.height-40 { - min-height: 350px; -} -@media all and (max-width: 767px) { - .project-thumb.height-40 { - height: 350px; - min-width: 100%; - } -} -@media all and (min-width: 768px) { - .col-xs-12:not(.col-sm-6) .project-thumb.hover-element > a { - height: 46.42857143em; - } -} -.project-thumb.border--round .background-image-holder { - border-radius: 6px; -} -.project-thumb.border--round > a { - border-radius: 6px; - overflow: hidden; -} -.project-thumb.border--round:before { - border-radius: 6px; - overflow: hidden; -} -.col-md-4 .project-thumb > a:not(.imagebg) { - margin-bottom: 0.92857143em; -} -/*! -- Stack Shop -- */ -.cart-form button[type="submit"] { - margin-top: 1.85714286em; -} -.cart-total > div { - overflow: hidden; -} -@media all and (min-width: 768px) { - .cart-total { - margin-top: 3.71428571em; - } - .cart-customer-details { - margin-top: 7.42857143em; - } -} -@media all and (max-width: 767px) { - .cart-total { - margin-top: 1.85714286em; - } -} -.cart-customer-details div[class*='col-'] { - margin-top: 0.46428571em; -} -.cart-customer-details .input-checkbox { - margin: 1.85714286em 0; -} -.cart-customer-details .input-checkbox + span { - bottom: 38px; -} -.product { - margin-bottom: 0.92857143em; -} -.product img { - margin-bottom: 0.92857143em; - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; - backface-visibility: hidden; -} -.product a:hover img { - transform: translate3d(0, -5px, 0); - -webkit-transform: translate3d(0, -5px, 0); -} -.product .label + img { - margin-top: 2.78571429em; -} -.product h5 { - display: inline-block; - margin-bottom: 0; - margin-right: 0.46428571em; -} -.product .h4 { - margin-bottom: 0; -} -.product .h4:first-child { - clear: left; -} -.product .product__controls { - overflow: hidden; - margin-bottom: 0.92857143em; -} -.product .product__controls label, -.product .product__controls button { - position: relative; - top: 6px; -} -.product.product--tile { - padding: 1.85714286em; - border-radius: 6px; -} -@media all and (min-width: 1200px) { - .product .btn--cart { - position: absolute; - right: 1.85714286em; - bottom: 1.85714286em; - } -} -.col-sm-6:not(.col-md-3) .product { - text-align: center; -} -.col-md-3 .product--tile h5 { - display: block; -} -.masonry--tiles { - padding: 10px; -} -.masonry--tiles .masonry__item:not(:empty) { - padding: 0 6px; - margin-bottom: 12px; -} -.masonry--tiles .masonry__item:not(:empty) .product--tile { - margin: 0; -} -.masonry--tiles .masonry__item:not(:empty) .product--tile .label { - top: 1.85714286em; - right: 2.78571429em; -} -/*! -- Stack Wizard -- */ -.wizard { - transition: opacity .3s ease; - opacity: 0; -} -.wizard.active { - opacity: 1; -} -.wizard > .actions a, -.wizard > .actions a:hover, -.wizard > .actions a:active { - background: #2374ab; - transition: all .3s ease; - padding: 0.46428571em 1.85714286em; - font-size: 12px; - text-transform: uppercase; - font-weight: 700; - letter-spacing: 1px; - color: #fff; -} -.wizard > .steps .current a, -.wizard > .steps .current a:hover, -.wizard > .steps .current a:active { - background: none; - color: #252525; -} -.wizard > .steps a { - position: relative; -} -.wizard > .steps a:before { - content: ''; - width: 15px; - height: 15px; - border-radius: 50%; - position: absolute; - left: 50%; - margin-left: -10px; - background: #eee; - display: block; - bottom: 0; - transition: all .2s ease; -} -.wizard > .steps a:after { - content: ''; - position: absolute; - width: 100%; - bottom: 7px; - height: 2px; - background: #eee; - left: 0; - transition: all .2s ease; -} -.wizard > .steps li:first-child a:after { - width: 50%; - left: 50%; -} -.wizard > .steps li:last-child a:after { - width: 50%; -} -.wizard > .steps li.current a:after, -.wizard > .steps li.current a:before { - background-color: #2374ab; -} -.wizard > .steps a, -.wizard > .steps a:hover { - padding-bottom: 2.78571429em; -} -.wizard > .steps .done a, -.wizard > .steps .done a:hover, -.wizard > .steps .done a:active, -.wizard > .steps .disabled a, -.wizard > .steps .disabled a:hover, -.wizard > .steps .disabled a:active { - background: none; - color: #252525; -} -.wizard > .steps a, -.wizard > .steps a:hover, -.wizard > .steps a:active { - margin: 0; -} -.wizard > .actions a, -.wizard > .actions a:hover, -.wizard > .actions a:active { - user-select: none; - -moz-user-select: none; - -webkit-user-select: none; -} -.wizard > .steps > ul, -.wizard > .actions { - text-align: center; -} -.wizard > .steps > ul > li, -.wizard > .actions > ul > li { - float: none; - display: inline-block; -} -.wizard > section { - padding: 0; -} -.wizard > .content { - background: #fafafa; - margin-top: 1.85714286em; - margin-bottom: 1.85714286em; - border: 1px solid #ececec; -} -.wizard > .content > .body { - padding: 1.85714286em; - width: 100%; - height: 100%; -} -.wizard > .steps .number { - font-size: 1em; -} -@media all and (max-width: 767px) { - .wizard > .steps .number { - display: block; - } - .wizard > .content { - min-height: 25em; - } - .wizard .pos-vertical-center { - top: 50%; - transform: translateY(-50%); - -wekbit-transform: translateY(-50%); - } -} -.wizard.bg--white { - background: none !important; -} -.wizard.bg--white > .content { - background: #fff; -} -.wizard > .content img { - max-height: 240px; -} -@media all and (max-width: 767px) { - .wizard > .content img { - max-height: 120px; - margin-bottom: 0.92857143em; - } -} -/*! -- Stack Footers -- */ -footer .type--fine-print:not(p) { - opacity: .5; -} -footer a { - font-weight: normal; -} -footer:not(.bg--primary):not(.bg--dark) a { - color: #666666; -} -footer a.type--fine-print:not(:first-child) { - margin-left: 1.85714286em; -} -footer .logo { - max-height: 1.67142857em; -} -footer ul:not(.list-inline):not(.slides) > li { - line-height: 2.32142857em !important; -} -footer.footer-2 .row:last-child { - margin-top: 3.71428571em; -} -footer.footer-5 .row [class*='col-'] > div:nth-last-child(2) { - margin: 0.92857143em; -} -footer.footer-5 .row [class*='col-'] > div:nth-last-child(2) .type--fine-print { - opacity: 1; -} -footer.footer-6 .footer__lower { - background: #fafafa; - margin-top: 1.85714286em; - padding: 1.85714286em 0; -} -footer.footer-6.bg--dark .footer__lower { - background: #181818; -} -footer.footer-6.bg--secondary .footer__lower { - background: #f5f5f5; -} -footer.footer-6.bg--primary .footer__lower { - background: #1f6696; -} -footer.footer-7 { - padding: 1.85714286em 0; -} -@media all and (min-width: 768px) { - footer .list-inline + .btn { - position: relative; - bottom: 4px; - } - footer .logo { - margin: 0; - } - footer .logo:not(:last-child) { - margin-right: 1.85714286em; - } - footer.footer-3 .logo + ul { - position: relative; - top: 5px; - } - footer.footer-3 .logo + ul a { - color: #252525; - } - footer.footer-3 .social-list { - position: relative; - top: 9px; - } - footer.footer-3 .row:last-child { - margin-top: 1.85714286em; - } - footer.footer-4 .logo + span { - position: relative; - top: 8px; - } - footer.footer-4 form { - position: relative; - bottom: 4px; - } - footer.footer-4 .row:last-child { - margin-top: 1.85714286em; - } - footer.imagebg:not(.image--light) span, - footer.imagebg:not(.image--light) p, - footer.imagebg:not(.image--light) a { - color: #fff; - } - .footer-1 .type--fine-print { - position: relative; - top: 2px; - } -} -@media all and (max-width: 767px) { - footer .social-list { - margin: 1.85714286em 0; - } - .footer-4 form { - margin: 1.85714286em 0; - } - .footer-4 .logo { - margin: 0; - } - .footer-6 .footer__lower .social-list { - margin-top: 1.85714286em; - } - .footer-7 .social-list { - margin-top: 1.85714286em; - } - .footer-1 .social-list { - margin-top: 1.85714286em; - } - .footer-1 .logo { - display: block; - margin-top: 1.85714286em; - margin-bottom: 0.92857143em; - margin-left: auto; - margin-right: auto; - } -} diff --git a/html/css/theme-greensea.css b/html/css/theme-greensea.css deleted file mode 100644 index 2af4c87e..00000000 --- a/html/css/theme-greensea.css +++ /dev/null @@ -1,9016 +0,0 @@ -/**!**************/ -/**! Contents **/ -/**! 01. Reset **/ -/**! 02. Typography **/ -/**! 03. Position **/ -/**! 04. Element Size **/ -/**! 05. Images **/ -/**! 06. Buttons **/ -/**! 07. Icons **/ -/**! 08. Lists **/ -/**! 09. Lightbox **/ -/**! 10. Menus **/ -/**! 11. Dropdowns **/ -/**! 12. Form Elements **/ -/**! 13. Accordions **/ -/**! 14. Breadcrumbs **/ -/**! 15. Radials **/ -/**! 16. Tabs **/ -/**! 17. Boxes **/ -/**! 18. Sliders Flickity **/ -/**! 19. Hover Elements **/ -/**! 20. Masonry **/ -/**! 21. Modals **/ -/**! 22. Maps **/ -/**! 23. Parallax **/ -/**! 24. Notifications **/ -/**! 25. Video **/ -/**! 26. Colors **/ -/**! 27. Image Blocks **/ -/**! 28. MailChimp & Campaign Monitor **/ -/**! 29. Twitter **/ -/**! 30. Transitions **/ -/**! 31. Switchable Sections **/ -/**! 32. Typed Effect **/ -/**! 33. Gradient BG **/ -/**! 34. Bars **/ -/**! 35. Navigation In Page **/ -/**! 36. Helper Classes **/ -/**! 37. Spacing **/ -/**! 38. Boxed Layout **/ -/**! 39. Wizard **/ -/**! 40. Alerts **/ -/**! 41. Progress - Horizontal **/ -/**! 42. Theme Overrides **/ -/**!**************/ -/**!**************/ -/**!**************/ -/**! 01. Reset **/ -*, -h1, -h2, -h3, -h4, -h5, -h6, -p, -ul, -a { - margin: 0; - padding: 0; -} -/**! 02. Typography **/ -html { - font-size: 87.5%; -} -@media all and (max-width: 768px) { - html { - font-size: 81.25%; - } -} -body { - font-size: 1em; - line-height: 1.85714286em; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; - font-family: 'Open Sans', 'Helvetica', 'Arial', sans-serif; - color: #666666; - font-weight: 400; -} -h1, -h2, -h3, -h4, -h5, -h6, -.h1, -.h2, -.h3, -.h4, -.h5, -.h6 { - font-family: 'Open Sans', 'Helvetica', 'Arial', sans-serif; - color: #252525; - font-weight: 300; - font-variant-ligatures: common-ligatures; - margin-top: 0; - margin-bottom: 0; -} -h1, -.h1 { - font-size: 3.14285714em; - line-height: 1.31818182em; -} -h2, -.h2 { - font-size: 2.35714286em; - line-height: 1.36363636em; -} -h3, -.h3 { - font-size: 1.78571429em; - line-height: 1.5em; -} -h4, -.h4 { - font-size: 1.35714286em; - line-height: 1.36842105em; -} -h5, -.h5 { - font-size: 1em; - line-height: 1.85714286em; -} -h6, -.h6 { - font-size: 0.85714286em; - line-height: 2.16666667em; -} -.lead { - font-size: 1.35714286em; - line-height: 1.68421053em; -} -@media all and (max-width: 767px) { - h1, - .h1 { - font-size: 2.35714286em; - line-height: 1.36363636em; - } - h2, - .h2 { - font-size: 1.78571429em; - line-height: 1.5em; - } - h3, - .h3 { - font-size: 1.35714286em; - line-height: 1.85714286em; - } - .lead { - font-size: 1.35714286em; - line-height: 1.36842105em; - } -} -p, -ul, -ol, -pre, -table, -blockquote { - margin-bottom: 1.85714286em; -} -ul, -ol { - list-style: none; - line-height: 1.85714286em; -} -ul.bullets { - list-style: inside; -} -ol { - list-style-type: upper-roman; - list-style-position: inside; -} -blockquote { - font-size: 1.78571429em; - line-height: 1.5em; - padding: 0; - margin: 0; - border-left: 0; -} -strong { - font-weight: 600; -} -hr { - margin: 1.85714286em 0; - border-color: #fafafa; -} -a:hover, -a:focus, -a:active { - text-decoration: none; - outline: none; -} -/*! Typography -- Helpers */ -.type--fade { - opacity: .5; -} -.type--uppercase { - text-transform: uppercase; -} -.type--bold { - font-weight: bold; -} -.type--italic { - font-style: italic; -} -.type--fine-print { - font-size: 0.85714286em; -} -.type--strikethrough { - text-decoration: line-through; - opacity: .5; -} -.type--underline { - text-decoration: underline; -} -.type--body-font { - font-family: 'Open Sans', 'Helvetica'; -} -/**! 03. Position **/ -body { - overflow-x: hidden; -} -.pos-relative { - position: relative; -} -.pos-absolute { - position: absolute; -} -.pos-absolute.container { - left: 0; - right: 0; -} -.pos-top { - top: 0; -} -.pos-bottom { - bottom: 0; -} -.pos-right { - right: 0; -} -.pos-left { - left: 0; -} -.float-left { - float: left; -} -.float-right { - float: right; -} -@media all and (max-width: 767px) { - .float-left, - .float-right { - float: none; - } - .float-left-xs { - float: left; - } - .float-right-xs { - float: right; - } -} -.pos-vertical-center { - position: relative; - top: 50%; - transform: translateY(-50%); - -webkit-transform: translateY(-50%); -} -@media all and (max-width: 767px) { - .pos-vertical-center { - top: 0; - transform: none; - -webkit-transform: none; - } -} -@media all and (max-height: 600px) { - .pos-vertical-center { - top: 0; - transform: none; - -webkit-transform: none; - } -} -.pos-vertical-align-columns { - display: table; - table-layout: fixed; - width: 100%; -} -.pos-vertical-align-columns > div[class*='col-'] { - display: table-cell; - float: none; - vertical-align: middle; -} -@media all and (max-width: 990px) { - .pos-vertical-align-columns { - display: block; - width: auto; - } - .pos-vertical-align-columns > div[class*='col-'] { - display: block; - } -} -.inline-block { - display: inline-block; -} -.block { - display: block; -} -@media all and (max-width: 767px) { - .block--xs { - display: block; - } -} -@media all and (max-width: 990px) { - .text-center-md { - text-align: center; - } - .text-left-md { - text-align: left; - } - .text-right-md { - text-align: right; - } -} -@media all and (max-width: 767px) { - .text-center-xs { - text-align: center; - } - .text-left-xs { - text-align: left; - } - .text-right-xs { - text-align: right; - } -} -/**! 04. Element Size **/ -.height-100, -.height-90, -.height-80, -.height-70, -.height-60, -.height-50, -.height-40, -.height-30, -.height-20, -.height-10 { - height: auto; - padding: 5em 0; -} -@media all and (max-width: 767px) { - .height-100, - .height-90, - .height-80, - .height-70, - .height-60, - .height-50, - .height-40, - .height-30, - .height-20, - .height-10 { - height: auto; - padding: 4em 0; - } -} -@media all and (min-height: 600px) and (min-width: 767px) { - .height-10 { - height: 10vh; - } - .height-20 { - height: 20vh; - } - .height-30 { - height: 30vh; - } - .height-40 { - height: 40vh; - } - .height-50 { - height: 50vh; - } - .height-60 { - height: 60vh; - } - .height-70 { - height: 70vh; - } - .height-80 { - height: 80vh; - } - .height-90 { - height: 90vh; - } - .height-100 { - height: 100vh; - } -} -section.height-auto { - height: auto; -} -section.height-auto .pos-vertical-center { - top: 0; - position: relative; - transform: none; -} -@media all and (max-width: 767px) { - div[class*='col-'][class*='height-'] { - padding-top: 5.57142857em !important; - padding-bottom: 5.57142857em !important; - } -} -/**! 05. Images **/ -img { - max-width: 100%; - margin-bottom: 1.85714286em; -} -/*p+img, img:last-child{ - margin-bottom: 0; -}*/ -.img--fullwidth { - width: 100%; -} -[data-grid="2"].masonry { - -webkit-column-count: 2; - -webkit-column-gap: 0; - -moz-column-count: 2; - -moz-column-gap: 0; - column-count: 2; - column-gap: 0; -} -[data-grid="2"].masonry li { - width: 100%; - float: none; -} -[data-grid="2"] li { - width: 50%; - display: inline-block; -} -[data-grid="3"].masonry { - -webkit-column-count: 3; - -webkit-column-gap: 0; - -moz-column-count: 3; - -moz-column-gap: 0; - column-count: 3; - column-gap: 0; -} -[data-grid="3"].masonry li { - width: 100%; - float: none; -} -[data-grid="3"] li { - width: 33.33333333%; - display: inline-block; -} -[data-grid="4"].masonry { - -webkit-column-count: 4; - -webkit-column-gap: 0; - -moz-column-count: 4; - -moz-column-gap: 0; - column-count: 4; - column-gap: 0; -} -[data-grid="4"].masonry li { - width: 100%; - float: none; -} -[data-grid="4"] li { - width: 25%; - display: inline-block; -} -[data-grid="5"].masonry { - -webkit-column-count: 5; - -webkit-column-gap: 0; - -moz-column-count: 5; - -moz-column-gap: 0; - column-count: 5; - column-gap: 0; -} -[data-grid="5"].masonry li { - width: 100%; - float: none; -} -[data-grid="5"] li { - width: 20%; - display: inline-block; -} -[data-grid="6"].masonry { - -webkit-column-count: 6; - -webkit-column-gap: 0; - -moz-column-count: 6; - -moz-column-gap: 0; - column-count: 6; - column-gap: 0; -} -[data-grid="6"].masonry li { - width: 100%; - float: none; -} -[data-grid="6"] li { - width: 16.66666667%; - display: inline-block; -} -[data-grid="7"].masonry { - -webkit-column-count: 7; - -webkit-column-gap: 0; - -moz-column-count: 7; - -moz-column-gap: 0; - column-count: 7; - column-gap: 0; -} -[data-grid="7"].masonry li { - width: 100%; - float: none; -} -[data-grid="7"] li { - width: 14.28571429%; - display: inline-block; -} -[data-grid="8"].masonry { - -webkit-column-count: 8; - -webkit-column-gap: 0; - -moz-column-count: 8; - -moz-column-gap: 0; - column-count: 8; - column-gap: 0; -} -[data-grid="8"].masonry li { - width: 100%; - float: none; -} -[data-grid="8"] li { - width: 12.5%; - display: inline-block; -} -@media all and (max-width: 767px) { - [data-grid]:not(.masonry) li { - width: 33.333333%; - } - [data-grid="2"]:not(.masonry) li { - width: 50%; - } - [data-grid].masonry { - -webkit-column-count: 1; - -moz-column-count: 1; - column-count: 1; - } -} -.background-image-holder { - position: absolute; - height: 100%; - top: 0; - left: 0; - background-size: cover !important; - background-position: 50% 50% !important; - z-index: 0; - transition: opacity .3s linear; - -webkit-transition: opacity .3s linear; - opacity: 0; - background: #252525; -} -.background-image-holder:not([class*='col-']) { - width: 100%; -} -.background-image-holder.background--bottom { - background-position: 50% 100% !important; -} -.background-image-holder.background--top { - background-position: 50% 0% !important; -} -.image--light .background-image-holder { - background: none; -} -.background-image-holder img { - display: none; -} -[data-overlay] { - position: relative; -} -[data-overlay]:before { - position: absolute; - content: ''; - background: #252525; - width: 100%; - height: 100%; - top: 0; - left: 0; - z-index: 1; -} -[data-overlay] *:not(.container):not(.background-image-holder) { - z-index: 2; -} -[data-overlay].image--light:before { - background: #fff; -} -[data-overlay].bg--primary:before { - background: #238b53; -} -[data-overlay="1"]:before { - opacity: 0.1; -} -[data-overlay="2"]:before { - opacity: 0.2; -} -[data-overlay="3"]:before { - opacity: 0.3; -} -[data-overlay="4"]:before { - opacity: 0.4; -} -[data-overlay="5"]:before { - opacity: 0.5; -} -[data-overlay="6"]:before { - opacity: 0.6; -} -[data-overlay="7"]:before { - opacity: 0.7; -} -[data-overlay="8"]:before { - opacity: 0.8; -} -[data-overlay="9"]:before { - opacity: 0.9; -} -[data-overlay="10"]:before { - opacity: 1; -} -[data-overlay="0"]:before { - opacity: 0; -} -[data-scrim-bottom] { - position: relative; -} -[data-scrim-bottom]:before { - position: absolute; - content: ''; - width: 100%; - height: 80%; - background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, #252525 100%); - /* FF3.6+ */ - background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(0, 0, 0, 0)), color-stop(100%, #252525)); - /* Chrome,Safari4+ */ - background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, #252525 100%); - /* Chrome10+,Safari5.1+ */ - background: -o-linear-gradient(top, rgba(0, 0, 0, 0) 0%, #252525 100%); - /* Opera 11.10+ */ - background: -ms-linear-gradient(top, rgba(0, 0, 0, 0) 0%, #252525 100%); - /* IE10+ */ - background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, #252525 100%); - bottom: 0; - left: 0; - z-index: 1; - backface-visibility: hidden; -} -[data-scrim-bottom]:not(.image--light) h1, -[data-scrim-bottom]:not(.image--light) h2, -[data-scrim-bottom]:not(.image--light) h3, -[data-scrim-bottom]:not(.image--light) h4, -[data-scrim-bottom]:not(.image--light) h5, -[data-scrim-bottom]:not(.image--light) h6 { - color: #a5a5a5; - color: #f1f1f1; -} -[data-scrim-bottom]:not(.image--light) p, -[data-scrim-bottom]:not(.image--light) span, -[data-scrim-bottom]:not(.image--light) ul { - color: #e6e6e6; -} -[data-scrim-bottom].image--light:before { - background: #fff; -} -[data-scrim-bottom="1"]:before { - opacity: 0.1; -} -[data-scrim-bottom="2"]:before { - opacity: 0.2; -} -[data-scrim-bottom="3"]:before { - opacity: 0.3; -} -[data-scrim-bottom="4"]:before { - opacity: 0.4; -} -[data-scrim-bottom="5"]:before { - opacity: 0.5; -} -[data-scrim-bottom="6"]:before { - opacity: 0.6; -} -[data-scrim-bottom="7"]:before { - opacity: 0.7; -} -[data-scrim-bottom="8"]:before { - opacity: 0.8; -} -[data-scrim-bottom="9"]:before { - opacity: 0.9; -} -[data-scrim-bottom="10"]:before { - opacity: 1; -} -[data-scrim-top] { - position: relative; -} -[data-scrim-top]:before { - position: absolute; - content: ''; - width: 100%; - height: 80%; - background: -moz-linear-gradient(bottom, #252525 0%, rgba(0, 0, 0, 0) 100%); - /* FF3.6+ */ - background: -webkit-gradient(linear, left bottom, left bottom, color-stop(0%, #252525), color-stop(100%, rgba(0, 0, 0, 0))); - /* Chrome,Safari4+ */ - background: -webkit-linear-gradient(bottom, #252525 0%, rgba(0, 0, 0, 0) 100%); - /* Chrome10+,Safari5.1+ */ - background: -o-linear-gradient(bottom, #252525 0%, rgba(0, 0, 0, 0) 100%); - /* Opera 11.10+ */ - background: -ms-linear-gradient(bottom, #252525 0%, rgba(0, 0, 0, 0) 100%); - /* IE10+ */ - background: linear-gradient(to bottom, #252525 0%, rgba(0, 0, 0, 0) 100%); - top: 0; - left: 0; - z-index: 1; -} -[data-scrim-top]:not(.image--light) h1, -[data-scrim-top]:not(.image--light) h2, -[data-scrim-top]:not(.image--light) h3, -[data-scrim-top]:not(.image--light) h4, -[data-scrim-top]:not(.image--light) h5, -[data-scrim-top]:not(.image--light) h6 { - color: #fff; -} -[data-scrim-top]:not(.image--light) p, -[data-scrim-top]:not(.image--light) span, -[data-scrim-top]:not(.image--light) ul { - color: #e6e6e6; -} -[data-scrim-top].image--light:before { - background: #fff; -} -[data-scrim-top="1"]:before { - opacity: 0.1; -} -[data-scrim-top="2"]:before { - opacity: 0.2; -} -[data-scrim-top="3"]:before { - opacity: 0.3; -} -[data-scrim-top="4"]:before { - opacity: 0.4; -} -[data-scrim-top="5"]:before { - opacity: 0.5; -} -[data-scrim-top="6"]:before { - opacity: 0.6; -} -[data-scrim-top="7"]:before { - opacity: 0.7; -} -[data-scrim-top="8"]:before { - opacity: 0.8; -} -[data-scrim-top="9"]:before { - opacity: 0.9; -} -[data-scrim-top="10"]:before { - opacity: 1; -} -.imagebg { - position: relative; -} -.imagebg .container { - z-index: 2; -} -.imagebg .container:not(.pos-absolute) { - position: relative; -} -.imagebg:not(.image--light) h1, -.imagebg:not(.image--light) h2, -.imagebg:not(.image--light) h3, -.imagebg:not(.image--light) h4, -.imagebg:not(.image--light) h5, -.imagebg:not(.image--light) h6, -.imagebg:not(.image--light) p, -.imagebg:not(.image--light) ul, -.imagebg:not(.image--light) blockquote { - color: #fff; -} -.imagebg:not(.image--light) .bg--white h1, -.imagebg:not(.image--light) .bg--white h2, -.imagebg:not(.image--light) .bg--white h3, -.imagebg:not(.image--light) .bg--white h4, -.imagebg:not(.image--light) .bg--white h5, -.imagebg:not(.image--light) .bg--white h6 { - color: #252525; -} -.imagebg:not(.image--light) .bg--white p, -.imagebg:not(.image--light) .bg--white ul { - color: #666666; -} -div[data-overlay] h1, -div[data-overlay] h2, -div[data-overlay] h3, -div[data-overlay] h4, -div[data-overlay] h5, -div[data-overlay] h6 { - color: #fff; -} -div[data-overlay] p, -div[data-overlay] ul { - color: #fff; -} -.parallax { - overflow: hidden; -} -.parallax .background-image-holder { - transition: none !important; - -webkit-transition: none !important; - -moz-transition: none !important; -} -.image--xxs { - max-height: 1.85714286em; -} -.image--xs { - max-height: 3.71428571em; -} -.image--sm { - max-height: 5.57142857em; -} -.image--md { - max-height: 7.42857143em; -} -/**! 06. Buttons **/ -.btn { - font-family: 'Open Sans', 'Helvetica', 'Arial', sans-serif; - transition: 0.1s linear; - -webkit-transition: 0.1s linear; - -moz-transition: 0.1s linear; - border-radius: 6px; - padding-top: 0.46428571em; - padding-bottom: 0.46428571em; - padding-right: 2.78571429em; - padding-left: 2.78571429em; - border: 1px solid #252525; - border-width: 1px; - font-size: inherit; - line-height: 1.85714286em; -} -.btn .btn__text, -.btn i { - color: #252525; - border-color: #252525; - font-weight: 700; - font-size: 0.85714286em; -} -.btn[class*='col-'] { - margin-left: 0; - margin-right: 0; -} -.btn:active { - box-shadow: none; - -webkit-box-shadow: none; -} -.btn.bg--facebook, -.btn.bg--twitter, -.btn.bg--instagram, -.btn.bg--googleplus, -.btn.bg--pinterest, -.btn.bg--dribbble, -.btn.bg--behance, -.btn.bg--dark { - border-color: rgba(0, 0, 0, 0) !important; -} -.btn.bg--facebook .btn__text, -.btn.bg--twitter .btn__text, -.btn.bg--instagram .btn__text, -.btn.bg--googleplus .btn__text, -.btn.bg--pinterest .btn__text, -.btn.bg--dribbble .btn__text, -.btn.bg--behance .btn__text, -.btn.bg--dark .btn__text { - color: #fff; -} -.btn.bg--facebook .btn__text i, -.btn.bg--twitter .btn__text i, -.btn.bg--instagram .btn__text i, -.btn.bg--googleplus .btn__text i, -.btn.bg--pinterest .btn__text i, -.btn.bg--dribbble .btn__text i, -.btn.bg--behance .btn__text i, -.btn.bg--dark .btn__text i { - color: #fff; -} -.btn.bg--facebook:hover, -.btn.bg--twitter:hover, -.btn.bg--instagram:hover, -.btn.bg--googleplus:hover, -.btn.bg--pinterest:hover, -.btn.bg--dribbble:hover, -.btn.bg--behance:hover, -.btn.bg--dark:hover { - opacity: .9; -} -.btn.bg--error { - background: #e23636; - border-color: #e23636 !important; -} -.btn.bg--error:hover { - background: #e54c4c; - border-color: #e54c4c !important; - color: #fff !important; -} -.btn.bg--error .btn__text { - color: #fff; -} -.btn.bg--error .btn__text i { - color: #fff; -} -@media all and (min-width: 768px) { - .btn + .btn { - margin-left: 1.85714286em; - } -} -.btn:first-child { - margin-left: 0; -} -.btn:last-child { - margin-right: 0; -} -.btn--xs { - padding-top: 0; - padding-bottom: 0; - padding-right: 1.39285714em; - padding-left: 1.39285714em; -} -.btn--sm { - padding-top: 0.30952381em; - padding-bottom: 0.30952381em; - padding-right: 1.85714286em; - padding-left: 1.85714286em; -} -.btn--lg { - padding-top: 0.58035714em; - padding-bottom: 0.58035714em; - padding-right: 3.48214286em; - padding-left: 3.48214286em; -} -.btn--lg .btn__text { - font-size: 1.07142857em; -} -.btn--primary, -.btn--primary:visited { - background: #238b53; - border-color: #238b53; -} -.btn--primary .btn__text, -.btn--primary:visited .btn__text { - color: #fff; -} -.btn--primary .btn__text i, -.btn--primary:visited .btn__text i { - color: #fff; -} -.btn--primary:hover { - background: #289f5f; -} -.btn--primary:active { - background: #1e7747; -} -.btn--primary-1, -.btn--primary-1:visited { - background: #282729; - border-color: #282729; -} -.btn--primary-1 .btn__text, -.btn--primary-1:visited .btn__text { - color: #fff; -} -.btn--primary-1:hover { - background: #353336; -} -.btn--primary-1:active { - background: #1b1b1c; -} -.btn--primary-2, -.btn--primary-2:visited { - background: #669e4b; - border-color: #669e4b; -} -.btn--primary-2 .btn__text, -.btn--primary-2:visited .btn__text { - color: #fff; -} -.btn--primary-2:hover { - background: #72ae54; -} -.btn--primary-2:active { - background: #5b8d43; -} -.btn--secondary { - background: #fafafa; - border-color: #fafafa; -} -.btn--secondary:hover { - background: #ffffff; -} -.btn--secondary:active { - background: #f5f5f5; -} -.btn--white { - background: #fff; - color: #252525; - border-color: #fff; -} -.btn--white i { - color: #252525; -} -.btn--transparent { - background: none; - border-color: rgba(0, 0, 0, 0); - padding-left: 0; - padding-right: 0; -} -.btn--transparent.btn--white .btn__text { - color: #fff; -} -.btn--unfilled { - background: none; -} -.btn--unfilled.btn--white .btn__text { - color: #fff; -} -.btn--unfilled.btn--white i { - color: #fff; -} -.btn--floating { - position: fixed; - bottom: 3.71428571em; - right: 3.71428571em; - z-index: 10; -} -/**! 07. Icons **/ -.icon { - line-height: 1em; - font-size: 3.14285714em; -} -.icon--xs { - font-size: 1em; -} -.icon--sm { - font-size: 2.35714286em; -} -.icon--lg { - font-size: 5.57142857em; -} -/**! 08. Lists **/ -ul:last-child { - margin: 0; -} -.list-inline li { - padding: 0 1em; - margin-left: 0; -} -.list-inline li:first-child { - padding-left: 0; -} -.list-inline li:last-child { - padding-right: 0; -} -.list-inline.list-inline--narrow li { - padding: 0 .5em; -} -.list-inline.list-inline--wide li { - padding: 0 2em; -} -/**! 09. Lightbox **/ -.lb-outerContainer { - border-radius: 0; -} -.lb-outerContainer .lb-container { - padding: 0; -} -.lb-outerContainer .lb-container img { - margin: 0; -} -.lightbox-gallery { - overflow: hidden; -} -.lightbox-gallery li { - float: left; -} -.lightbox-gallery li img { - margin: 0; - width: 100%; -} -.lightbox-gallery.gallery--gaps li { - padding: 0.46428571em; -} -/**! 10. Menus **/ -.menu-horizontal > li:not(:hover) > a, -.menu-horizontal > li:not(:hover) > span, -.menu-horizontal > li:not(:hover) > .modal-instance > .modal-trigger { - opacity: .5; -} -.menu-horizontal > li > a, -.menu-horizontal > li > span, -.menu-horizontal > li > .modal-instance > .modal-trigger { - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; - color: #252525; -} -.menu-horizontal > li > a:hover, -.menu-horizontal > li > span:hover, -.menu-horizontal > li > .modal-instance > .modal-trigger:hover { - color: #252525; -} -.bg--dark .menu-horizontal > li > a, -.bg--dark .menu-horizontal > li > span { - color: #fff; -} -.bg--dark .menu-horizontal > li > a:hover, -.bg--dark .menu-horizontal > li > span:hover { - color: #fff; -} -.menu-vertical { - width: 100%; -} -.menu-vertical li { - width: 100%; -} -.menu-vertical li a { - font-weight: normal; -} -@media all and (min-width: 990px) { - .menu-horizontal { - display: inline-block; - } - .menu-horizontal > li { - display: inline-block; - } - .menu-horizontal > li:not(:last-child) { - margin-right: 1.85714286em; - } - .menu-vertical { - display: inline-block; - } - .menu-vertical li { - white-space: nowrap; - } - .menu-vertical .dropdown__container { - top: 0; - } - .menu-vertical .dropdown__container .dropdown__content:not([class*='bg-']) { - background: #ffffff; - } - .menu-vertical .dropdown__container .dropdown__content { - transform: translateX(75%); - } -} -/**! 11. Dropdowns **/ -.dropdown { - position: relative; -} -.dropdown .dropdown__container { - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; - opacity: 0; - pointer-events: none; - position: absolute; - z-index: 999; -} -.dropdown .dropdown__container .dropdown__container:before { - height: 0; -} -.dropdown .dropdown__content { - padding: 1.85714286em; -} -.dropdown .dropdown__content:not([class*='col-']) { - width: 18.57142857em; -} -.dropdown .dropdown__content:not([class*='bg-']) { - background: #ffffff; -} -.dropdown .dropdown__content:not([class='bg--dark']) .menu-vertical a { - color: #666666; -} -.dropdown .dropdown__trigger { - cursor: pointer; - user-select: none; -} -.dropdown.dropdown--active > .dropdown__container { - opacity: 1; -} -.dropdown.dropdown--active > .dropdown__container > .container > .row > .dropdown__content { - pointer-events: all; -} -@media all and (min-width: 991px) { - .dropdown .dropdown__container:before { - height: 0.92857143em; - width: 100%; - content: ''; - display: block; - } - .dropdown .dropdown__content.dropdown__content--md { - padding: 2.78571429em; - } - .dropdown .dropdown__content.dropdown__content--lg { - padding: 3.71428571em; - } - .dropdown .dropdown__content.dropdown__content--xlg { - padding: 4.64285714em; - } -} -@media all and (max-width: 767px) { - .dropdown .dropdown__container { - min-width: 100%; - position: relative; - display: none; - } - .dropdown .dropdown__content { - padding: 1.85714286em; - left: 0 !important; - } - .dropdown.dropdown--active > .dropdown__container { - display: block; - } -} -body.dropdowns--hover .dropdown:not(.dropdown--click):hover > .dropdown__container { - opacity: 1; -} -body.dropdowns--hover .dropdown:not(.dropdown--click):hover > .dropdown__container:before { - pointer-events: all; -} -body.dropdowns--hover .dropdown:not(.dropdown--click):hover > .dropdown__container .dropdown__content { - pointer-events: all; -} -body:not(.dropdowns--hover) .dropdown.dropdown--hover:hover > .dropdown__container { - opacity: 1; -} -body:not(.dropdowns--hover) .dropdown.dropdown--hover:hover > .dropdown__container:before { - pointer-events: all; -} -body:not(.dropdowns--hover) .dropdown.dropdown--hover:hover > .dropdown__container .dropdown__content { - pointer-events: all; -} -@media all and (max-width: 990px) { - body.dropdowns--hover .dropdown:not(.dropdown--click).dropdown--active > .dropdown__container { - display: block; - } - body.dropdowns--hover .dropdown:not(.dropdown--click).dropdown--active > .dropdown__container:before { - pointer-events: all; - } -} -@media all and (max-width: 767px) { - .dropdown.dropdown--absolute .dropdown__container { - position: absolute; - } -} -/**! 12. Form Elements **/ -form { - max-width: 100%; -} -form + form { - margin-top: 30px; -} -form:before, -form:after { - content: "."; - display: block; - height: 0; - overflow: hidden; -} -form:after { - clear: both; -} -label { - margin: 0; - font-size: 1.14285714em; - font-weight: 400; -} -input[type], -textarea, -select { - -webkit-appearance: none; - background: #fcfcfc; - padding: 0.46428571em; - border-radius: 6px; - border: 1px solid #ececec; -} -input[type]:focus, -textarea:focus, -select:focus { - outline: none; -} -input[type]:active, -textarea:active, -select:active { - outline: none; -} -input[type]::-webkit-input-placeholder, -textarea::-webkit-input-placeholder, -select::-webkit-input-placeholder { - color: #b3b3b3; - font-size: 1.14285714em; -} -input[type]:-moz-placeholder, -textarea:-moz-placeholder, -select:-moz-placeholder { - /* Firefox 18- */ - color: #b3b3b3; - font-size: 1.14285714em; -} -input[type]::-moz-placeholder, -textarea::-moz-placeholder, -select::-moz-placeholder { - /* Firefox 19+ */ - color: #b3b3b3; - font-size: 1.14285714em; -} -input[type]:-ms-input-placeholder, -textarea:-ms-input-placeholder, -select:-ms-input-placeholder { - color: #b3b3b3; - font-size: 1.14285714em; -} -input[type="image"] { - border: none; - padding: none; - width: auto; -} -textarea { - display: block; - width: 100%; - max-width: 100%; -} -select { - cursor: pointer; - padding-right: 1.85714286em; - -webkit-appearance: none; -} -select::ms-expand { - display: none; -} -input[type="submit"] { - background: none; - outline: none; - border: none; - background: #238b53; - padding: 0.46428571em 2.78571429em 0.46428571em 2.78571429em; - color: #fff; -} -@keyframes load { - 0% { - opacity: 0; - width: 0; - } - 50% { - width: 100%; - opacity: .8; - left: 0; - } - 100% { - left: 100%; - opacity: 0; - } -} -button { - background: none; -} -button[type="submit"].btn--loading { - position: relative; - overflow: hidden; - pointer-events: none; - color: rgba(0, 0, 0, 0); -} -button[type="submit"].btn--loading * { - opacity: 0; -} -button[type="submit"].btn--loading:after { - content: ''; - position: absolute; - width: 0; - height: 100%; - background: #ddd; - animation: load 1.5s ease-out infinite; - left: 0; - top: 0; -} -button[type="submit"].btn--loading .btn__text { - opacity: 0; -} -button:focus { - outline: none !important; -} -button.bg--error { - color: #fff; -} -.input-icon { - position: relative; -} -.input-icon i { - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; - cursor: default; - position: absolute; -} -.input-checkbox, -.input-radio, -.input-select { - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; - display: inline-block; -} -.input-checkbox input, -.input-radio input, -.input-select input { - opacity: 0 !important; - height: 0 !important; - width: 0 !important; - position: absolute !important; -} -.input-checkbox label, -.input-radio label, -.input-select label { - display: block !important; - cursor: pointer; -} -.input-checkbox { - padding: 0; -} -.input-checkbox label { - width: 1.85714286em; - height: 1.85714286em; - border-radius: 6px; - background: #000; -} -.input-radio { - padding: 0; -} -.input-radio label { - width: 1.85714286em; - height: 1.85714286em; - border-radius: 50%; - background: #000; -} -.input-select { - position: relative; -} -.input-select i { - position: absolute; - top: 50%; - transform: translateY(-50%); - -webkit-transform: translateY(-50%); - right: 1em; - font-size: .87em; -} -.input-file { - position: relative; - display: inline-block; -} -.input-file input { - display: none; -} -.form-error { - margin-top: 1.5625em; - padding: 0.78125em; - background: #D84D4D; - color: #fff; - position: fixed; - min-width: 350px; - left: 50%; - bottom: 1.5625em; - transform: translate3d(-50%, 0, 0); - -webkit-transform: translate3d(-50%, 0, 0); - z-index: 999; - box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); - box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1); -} -.form-success { - margin-top: 1.5625em; - padding: 0.78125em; - background: #1DC020; - color: #fff; - position: fixed; - min-width: 350px; - left: 50%; - bottom: 1.5625em; - transform: translate3d(-50%, 0, 0); - -webkit-transform: translate3d(-50%, 0, 0); - z-index: 999; - box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); - box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1); -} -.attempted-submit .field-error { - border-color: #D84D4D !important; -} -.attempted-submit div.recaptcha.field-error { - border-color: #D84D4D !important; - border-style: solid; - border: 1px solid; - border-radius: 5px; - padding: 5px; -} -div.recaptcha iframe { - min-height: 0; -} -/**! 13. Accordions **/ -.accordion li .accordion__title, -.accordion li .accordion__content, -.accordion li .accordion__content * { - transition: 0.3s linear; - -webkit-transition: 0.3s linear; - -moz-transition: 0.3s linear; -} -.accordion li .accordion__title { - cursor: pointer; - padding: 0.46428571em 0.92857143em; - border: 1px solid #ececec; - border-bottom: none; - background: none; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; -} -.accordion li:last-child .accordion__title { - border-bottom: 1px solid #ececec; -} -.accordion li .accordion__content { - opacity: 0; - visibility: hidden; - max-height: 0; -} -.accordion li .accordion__content > * { - display: none; -} -.accordion li .accordion__content > *:first-child { - padding-top: 0; -} -.accordion li .accordion__content > *:last-child { - padding-bottom: 0; -} -.accordion li.active .accordion__title { - background: #238b53; - border-bottom: 1px solid #ececec; -} -.accordion li.active .accordion__content { - opacity: 1; - visibility: visible; - max-height: 500px; -} -.accordion li.active .accordion__content > * { - display: inline-block; -} -/**! 14. Breadcrumbs **/ -.breadcrumb { - padding: 0; - margin: 0; - background: none; - display: inline-block; -} -.breadcrumb li { - font-size: 1em; -} -.breadcrumb li + li:before { - padding: 0 0.46428571em; -} -/**! 15. Pie Charts **/ -.radial { - position: relative; -} -.radial .radial__label { - position: absolute; - top: 50%; - left: 50%; - transform: translateX(-50%) translateY(-50%); - -webkit-transform: translateX(-50%) translateY(-50%); - margin-bottom: 0; -} -/**! 16. Tabs **/ -.tabs { - display: block; - margin-bottom: 0; -} -.tabs > li { - display: inline-block; - opacity: .5; - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; -} -.tabs > .active, -.tabs:hover { - opacity: 1; -} -.tabs .tab__title { - cursor: pointer; -} -.tabs .tab__title:not(.btn) { - padding: 0 1.85714286em; -} -.tabs li:first-child .tab__title:not(.btn) { - padding-left: 0; -} -.tabs .tab__content { - display: none; -} -.tabs-content { - margin-top: 1em; -} -.tabs-content li > .tab__content { - width: 100%; - display: none; -} -.tabs-content > .active > .tab__content { - display: block; -} -.tabs-container[data-content-align="left"] .tabs-content { - text-align: left; -} -@media all and (max-width: 767px) { - .tabs-content > li:not(.active) .tab__content { - display: none !important; - } -} -/**! 17. Boxes **/ -.boxed { - position: relative; - overflow: hidden; - padding: 1.85714286em; - margin-bottom: 30px; -} -.boxed.boxed--lg { - padding: 2.78571429em; -} -.boxed.boxed--sm { - padding: 1.23809524em; -} -.boxed.boxed--border { - border: 1px solid #ececec; -} -.boxed > div[class*='col-']:first-child:not(.boxed) { - padding-left: 0; -} -.boxed > div[class*='col-']:last-child:not(.boxed) { - padding-right: 0; -} -img + .boxed { - margin-top: -1.85714286em; -} -@media all and (max-width: 767px) { - .boxed { - padding: 1.23809524em; - margin-bottom: 15px; - } - .boxed.boxed--lg { - padding: 1.23809524em; - } - .boxed div[class*='col-']:not(.boxed) { - padding: 0; - } - .boxed:last-child { - margin-bottom: 15px; - } -} -/**! 18. Sliders Flickity **/ -.slides:not(.flickity-enabled) li.imagebg:not(:first-child) { - display: none; -} -.slides:not(.flickity-enabled) li.imagebg:first-child { - background: #252525; - animation: backgroundLoad .5s ease alternate infinite; -} -.slides:not(.flickity-enabled) li.imagebg:first-child .container { - opacity: 0; -} -@keyframes backgroundLoad { - 0% { - background: #252525; - } - 100% { - background: #3f3f3f; - } -} -.slider.height-10 { - height: auto; -} -.slider.height-10 .slides .flickity-slider > li { - height: 10vh; - padding: 0; -} -@media all and (min-width: 768px) { - .slider.height-10 .slides li.imagebg { - min-height: 10vh; - } -} -.slider.height-20 { - height: auto; -} -.slider.height-20 .slides .flickity-slider > li { - height: 20vh; - padding: 0; -} -@media all and (min-width: 768px) { - .slider.height-20 .slides li.imagebg { - min-height: 20vh; - } -} -.slider.height-30 { - height: auto; -} -.slider.height-30 .slides .flickity-slider > li { - height: 30vh; - padding: 0; -} -@media all and (min-width: 768px) { - .slider.height-30 .slides li.imagebg { - min-height: 30vh; - } -} -.slider.height-40 { - height: auto; -} -.slider.height-40 .slides .flickity-slider > li { - height: 40vh; - padding: 0; -} -@media all and (min-width: 768px) { - .slider.height-40 .slides li.imagebg { - min-height: 40vh; - } -} -.slider.height-50 { - height: auto; -} -.slider.height-50 .slides .flickity-slider > li { - height: 50vh; - padding: 0; -} -@media all and (min-width: 768px) { - .slider.height-50 .slides li.imagebg { - min-height: 50vh; - } -} -.slider.height-60 { - height: auto; -} -.slider.height-60 .slides .flickity-slider > li { - height: 60vh; - padding: 0; -} -@media all and (min-width: 768px) { - .slider.height-60 .slides li.imagebg { - min-height: 60vh; - } -} -.slider.height-70 { - height: auto; -} -.slider.height-70 .slides .flickity-slider > li { - height: 70vh; - padding: 0; -} -@media all and (min-width: 768px) { - .slider.height-70 .slides li.imagebg { - min-height: 70vh; - } -} -.slider.height-80 { - height: auto; -} -.slider.height-80 .slides .flickity-slider > li { - height: 80vh; - padding: 0; -} -@media all and (min-width: 768px) { - .slider.height-80 .slides li.imagebg { - min-height: 80vh; - } -} -.slider.height-90 { - height: auto; -} -.slider.height-90 .slides .flickity-slider > li { - height: 90vh; - padding: 0; -} -@media all and (min-width: 768px) { - .slider.height-90 .slides li.imagebg { - min-height: 90vh; - } -} -.slider.height-100 { - height: auto; -} -.slider.height-100 .slides .flickity-slider > li { - height: 100vh; - padding: 0; -} -@media all and (min-width: 768px) { - .slider.height-100 .slides li.imagebg { - min-height: 100vh; - } -} -.slider .slides .flickity-slider > li:not([class*='col-']) { - width: 100%; -} -.slider .slides.slides--gapless li[class*='col-'] { - padding-left: 0; - padding-right: 0; -} -.slider[data-arrows="true"].slider--arrows-hover:not(:hover) .flickity-prev-next-button { - opacity: 0; -} -.slider[data-paging="true"]:not(section) { - margin-bottom: 3.71428571em; -} -.slider[data-paging="true"]:not(section) .flickity-page-dots { - bottom: -3.71428571em; -} -.slider[data-paging="true"]:not([class*='text-']) .flickity-page-dots { - text-align: center; -} -.slider[data-children="1"] .flickity-prev-next-button { - display: none; -} -.slider:not([data-paging="true"]) .slides { - margin: 0; -} -.slider.controls--dark .flickity-page-dots .dot { - background: #252525; -} -.slider.controls--dark .flickity-prev-next-button:before { - color: #252525; -} -section.slider { - padding: 0; -} -section.slider.height-10 { - height: auto; -} -section.slider.height-10 .slides .flickity-slider > li { - height: 10vh; - padding: 0; -} -@media all and (min-width: 768px) { - section.slider.height-10 .slides li.imagebg { - min-height: 10vh; - } -} -section.slider.height-20 { - height: auto; -} -section.slider.height-20 .slides .flickity-slider > li { - height: 20vh; - padding: 0; -} -@media all and (min-width: 768px) { - section.slider.height-20 .slides li.imagebg { - min-height: 20vh; - } -} -section.slider.height-30 { - height: auto; -} -section.slider.height-30 .slides .flickity-slider > li { - height: 30vh; - padding: 0; -} -@media all and (min-width: 768px) { - section.slider.height-30 .slides li.imagebg { - min-height: 30vh; - } -} -section.slider.height-40 { - height: auto; -} -section.slider.height-40 .slides .flickity-slider > li { - height: 40vh; - padding: 0; -} -@media all and (min-width: 768px) { - section.slider.height-40 .slides li.imagebg { - min-height: 40vh; - } -} -section.slider.height-50 { - height: auto; -} -section.slider.height-50 .slides .flickity-slider > li { - height: 50vh; - padding: 0; -} -@media all and (min-width: 768px) { - section.slider.height-50 .slides li.imagebg { - min-height: 50vh; - } -} -section.slider.height-60 { - height: auto; -} -section.slider.height-60 .slides .flickity-slider > li { - height: 60vh; - padding: 0; -} -@media all and (min-width: 768px) { - section.slider.height-60 .slides li.imagebg { - min-height: 60vh; - } -} -section.slider.height-70 { - height: auto; -} -section.slider.height-70 .slides .flickity-slider > li { - height: 70vh; - padding: 0; -} -@media all and (min-width: 768px) { - section.slider.height-70 .slides li.imagebg { - min-height: 70vh; - } -} -section.slider.height-80 { - height: auto; -} -section.slider.height-80 .slides .flickity-slider > li { - height: 80vh; - padding: 0; -} -@media all and (min-width: 768px) { - section.slider.height-80 .slides li.imagebg { - min-height: 80vh; - } -} -section.slider.height-90 { - height: auto; -} -section.slider.height-90 .slides .flickity-slider > li { - height: 90vh; - padding: 0; -} -@media all and (min-width: 768px) { - section.slider.height-90 .slides li.imagebg { - min-height: 90vh; - } -} -section.slider.height-100 { - height: auto; -} -section.slider.height-100 .slides .flickity-slider > li { - height: 100vh; - padding: 0; -} -@media all and (min-width: 768px) { - section.slider.height-100 .slides li.imagebg { - min-height: 100vh; - } -} -section.slider[data-paging="true"] .flickity-page-dots { - bottom: 1.85714286em; -} -section.slider:not(.image--light)[data-paging="true"] .flickity-page-dots .dot { - background: #fff; -} -section.slider .slides { - margin: 0; -} -@media all and (max-width: 767px) { - section.slider[class*='height-'] .slides .flickity-slider > li { - height: auto; - padding: 7.42857143em 0; - } - section.slider.space--lg .slides .flickity-slider > li { - padding: 11.14285714em 0; - } - section.slider.space--xlg .slides .flickity-slider > li { - padding: 11.14285714em 0; - } -} -section.bg--dark .slider[data-paging="true"] .flickity-page-dots .dot, -section.bg--primary .slider[data-paging="true"] .flickity-page-dots .dot { - background: #fff; -} -.flickity-page-dots .dot { - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; - width: 8px; - height: 8px; - border-radius: 50%; - background: #252525; - border: none; - margin: 0 0.46428571em; -} -.flickity-page-dots .dot:hover:not(.is-selected) { - opacity: .6; -} -.text-center .flickity-page-dots, -section.slider .flickity-page-dots { - text-align: center; -} -.flickity-prev-next-button svg { - display: none; -} -.flickity-prev-next-button:before { - font-family: 'stack-interface'; - content: "\e80c"; - font-size: 1em; - font-weight: normal; -} -.flickity-prev-next-button.previous:before { - content: "\e80b"; -} -.imagebg:not(.image--light) .flickity-page-dots .dot, -.bg--dark .flickity-page-dots .dot { - background: #fff; -} -/**! 19. Hover Elements **/ -.hover-element { - position: relative; - overflow: hidden; - margin-bottom: 30px; -} -.hover-element * { - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; -} -.hover-element .hover-element__reveal { - position: absolute; - top: 0; - left: 0; - opacity: 0; - width: 100%; - height: 100%; -} -.hover-element .hover-element__reveal .boxed { - height: 100%; -} -.hover-element:hover .hover-element__reveal, -.hover-element.hover--active .hover-element__reveal { - opacity: 1; -} -.hover-element img { - margin-bottom: 0; -} -@media all and (max-width: 1024px) { - .hover-element { - cursor: pointer; - } -} -.row:last-child div[class*='col-']:last-child .hover-element { - margin-bottom: 0; -} -/**! 20. Masonry **/ -.masonry .masonry__container.masonry--active .masonry__item { - opacity: 1; - pointer-events: initial; -} -.masonry .masonry__container .masonry__item { - opacity: 0; - pointer-events: none; -} -.masonry .masonry__filters li { - display: inline-block; - cursor: pointer; - text-transform: capitalize; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; -} -.masonry .masonry__filters li.active { - cursor: default; -} -.masonry.masonry--gapless .masonry__item { - padding: 0 !important; - margin-bottom: 0; -} -/**! 21. Modals **/ -.modal-instance .modal-body { - display: none; -} -.modal-container { - transition: 0.3s linear; - -webkit-transition: 0.3s linear; - -moz-transition: 0.3s linear; - padding: 0; - visibility: hidden; - opacity: 0; - z-index: 999; - pointer-events: none; - position: fixed; - width: 100%; - height: 100%; - top: 0; - left: 0; -} -.modal-container.modal-active { - opacity: 1; - visibility: visible; - pointer-events: all; -} -.modal-container:before { - background: rgba(0, 0, 0, 0.85); - content: ''; - position: fixed; - width: 100%; - height: 100%; - top: 0; - left: 0; - z-index: 1; -} -.modal-container .modal-content { - backface-visibility: hidden; - position: fixed; - z-index: 2; - top: 50%; - left: 50%; - max-height: 100%; - overflow-y: scroll; - border: none; - transform: translate3d(-50%, -50%, 0); - -webkit-transform: translate3d(-50%, -50%, 0); - padding: 0; - border-radius: 0; - box-shadow: none; -} -.modal-container .modal-content:not(.height--natural) { - width: 50%; - height: 50%; -} -.modal-container .modal-content .modal-close-cross { - cursor: pointer; - position: absolute; - opacity: .5; - transition: 0.1s linear; - -webkit-transition: 0.1s linear; - -moz-transition: 0.1s linear; - top: 1em; - right: 1em; - z-index: 99; -} -.modal-container .modal-content .modal-close-cross:before { - content: '\00D7'; - font-size: 1.5em; -} -.modal-container .modal-content .modal-close-cross:hover { - opacity: 1; -} -.modal-container .modal-content.imagebg:not(.image--light) .modal-close-cross:before { - color: #fff; -} -.modal-container .modal-content iframe { - width: 100%; - outline: none; - border: none; - height: 100%; - backface-visibility: hidden; -} -.modal-container .modal-content iframe:first-child + .modal-close-cross:last-child { - top: -3.71428571em; -} -@media all and (max-width: 767px) { - .modal-container .modal-content { - width: 97% !important; - height: auto !important; - padding-top: 2em; - padding-bottom: 2em; - } -} -/**! 22. Maps **/ -.map-container { - position: relative; - overflow: hidden; -} -.map-container iframe, -.map-container .map-canvas { - position: absolute; - width: 100%; - height: 100%; - top: 0; -} -/**! 23. Parallax **/ -.parallax > .background-image-holder, -.parallax .slides li > .background-image-holder { - height: 100%; - min-height: 100vh; - top: -50vh; - transition: opacity 0.3s ease !important; - -webkit-transition: opacity 0.3s ease !important; - -webkit-transform-style: preserve-3d; -} -.parallax:first-child .slides li > .background-image-holder, -.parallax:first-child .background-image-holder { - top: 0; -} -.main-container > a:first-child + .parallax .background-image-holder { - top: 0; -} -@media all and (max-width: 1024px) { - .parallax > .background-image-holder, - .parallax .slides li > .background-image-holder { - -webkit-transition: transform 0.016s linear !important; - transition: transform 0.016s linear !important; - } - .parallax.parallax-disable-mobile .background-image-holder, - .parallax.parallax-disable-mobile .slides li > .background-image-holder { - top: 0 !important; - transform: none !important; - } -} -/**! 24. Notifications **/ -.notification { - max-width: 100%; - box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); - position: fixed; - z-index: 99; - pointer-events: none; - padding: 0; - margin: 1em; - opacity: 0; - transition: 0.3s linear; - -webkit-transition: 0.3s linear; - -moz-transition: 0.3s linear; -} -.notification:not([class*='bg-']) { - background: #fff; -} -.notification[class*='col-'] { - min-width: 400px; -} -.notification .notification-close-cross { - position: absolute; - top: 1em; - z-index: 99; - right: 1em; - cursor: pointer; - transition: 0.1s linear; - -webkit-transition: 0.1s linear; - -moz-transition: 0.1s linear; - opacity: .7; -} -.notification .notification-close-cross:before { - content: '\00D7'; - font-size: 1.5em; -} -.notification .notification-close-cross:hover { - opacity: 1; -} -.notification.notification--reveal { - z-index: 99; - pointer-events: initial; -} -.notification.notification--reveal[data-animation="from-bottom"] { - animation: from-bottom 0.3s linear 0s forwards; - -webkit-animation: from-bottom 0.3s linear 0s forwards; - -moz-animation: from-bottom 0.3s linear 0s forwards; -} -.notification.notification--reveal[data-animation="from-top"] { - animation: from-top 0.3s linear 0s forwards; - -webkit-animation: from-top 0.3s linear 0s forwards; - -moz-animation: from-top 0.3s linear 0s forwards; -} -.notification.notification--reveal[data-animation="from-left"] { - animation: from-left 0.3s linear 0s forwards; - -webkit-animation: from-left 0.3s linear 0s forwards; - -moz-animation: from-left 0.3s linear 0s forwards; -} -.notification.notification--reveal[data-animation="from-right"] { - animation: from-right 0.3s linear 0s forwards; - -webkit-animation: from-right 0.3s linear 0s forwards; - -moz-animation: from-right 0.3s linear 0s forwards; -} -.notification.notification--dismissed { - animation: fade-out 0.4s linear 0s forwards !important; - -webkit-animation: fade-out 0.4s linear 0s forwards !important; - -moz-animation: fade-out 0.4s linear 0s forwards !important; - pointer-events: none; -} -.bg--dark + .notification-close-cross:before { - color: #fff; -} -a[data-notification-link] { - text-decoration: none; -} -a[data-notification-link]:hover { - text-decoration: none; -} -@media all and (max-width: 767px) { - .notification[class*='col-'] { - min-width: 0; - } -} -@keyframes from-bottom { - from { - transform: translate3d(0, 100%, 0); - -webkit-transform: translate3d(0, 100%, 0); - opacity: 0; - } - to { - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); - opacity: 1; - } -} -@-moz-keyframes from-bottom { - from { - transform: translate3d(0, 100%, 0); - -webkit-transform: translate3d(0, 100%, 0); - opacity: 0; - } - to { - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); - opacity: 1; - } -} -@-webkit-keyframes from-bottom { - from { - transform: translate3d(0, 100%, 0); - -webkit-transform: translate3d(0, 100%, 0); - opacity: 0; - } - to { - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); - opacity: 1; - } -} -@keyframes from-top { - from { - transform: translate3d(0, -100%, 0); - -webkit-transform: translate3d(0, -100%, 0); - opacity: 0; - } - to { - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); - opacity: 1; - } -} -@-moz-keyframes from-top { - from { - transform: translate3d(0, -100%, 0); - -webkit-transform: translate3d(0, -100%, 0); - opacity: 0; - } - to { - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); - opacity: 1; - } -} -@-webkit-keyframes from-top { - from { - transform: translate3d(0, -100%, 0); - -webkit-transform: translate3d(0, -100%, 0); - opacity: 0; - } - to { - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); - opacity: 1; - } -} -@keyframes from-left { - from { - transform: translate3d(-100%, 0, 0); - -webkit-transform: translate3d(-100%, 0, 0); - opacity: 0; - } - to { - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); - opacity: 1; - } -} -@-moz-keyframes from-left { - from { - transform: translate3d(-100%, 0, 0); - -webkit-transform: translate3d(-100%, 0, 0); - opacity: 0; - } - to { - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); - opacity: 1; - } -} -@-webkit-keyframes from-left { - from { - transform: translate3d(-100%, 0, 0); - -webkit-transform: translate3d(-100%, 0, 0); - opacity: 0; - } - to { - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); - opacity: 1; - } -} -@keyframes from-right { - from { - transform: translate3d(100%, 0, 0); - -webkit-transform: translate3d(100%, 0, 0); - opacity: 1; - } - to { - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); - opacity: 1; - } -} -@-moz-keyframes from-right { - from { - transform: translate3d(100%, 0, 0); - -webkit-transform: translate3d(100%, 0, 0); - opacity: 0; - } - to { - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); - opacity: 1; - } -} -@-webkit-keyframes from-right { - from { - transform: translate3d(100%, 0, 0); - -webkit-transform: translate3d(100%, 0, 0); - opacity: 0; - } - to { - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); - opacity: 1; - } -} -@keyframes fade-out { - 0% { - opacity: 1; - } - 100% { - opacity: 0; - } -} -@-webkit-keyframes fade-out { - 0% { - opacity: 1; - } - 100% { - opacity: 0; - } -} -@-moz-keyframes fade-out { - 0% { - opacity: 1; - } - 100% { - opacity: 0; - } -} -/**! 25. Video **/ -iframe { - width: 100%; - min-height: 350px; - border: none; -} -@media all and (max-width: 767px) { - iframe { - min-height: 220px; - } -} -.videobg { - background: #252525; - position: relative; - overflow: hidden; -} -.videobg .container, -.videobg .background-image-holder { - opacity: 0; - transition: 0.3s linear; - -webkit-transition: 0.3s linear; - -moz-transition: 0.3s linear; -} -.videobg .background-image-holder { - opacity: 0 !important; -} -.videobg.video-active .container { - opacity: 1; -} -.videobg.video-active .loading-indicator { - opacity: 0; - visibility: hidden; -} -.videobg video { - object-fit: cover; - height: 100%; - min-width: 100%; - position: absolute; - top: 0; - z-index: 0 !important; - left: 0; -} -@media all and (max-width: 1024px) { - .videobg .background-image-holder, - .videobg .container { - opacity: 1 !important; - } - .videobg .loading-indicator { - display: none; - } - .videobg video { - display: none; - } -} -.youtube-background { - position: absolute; - height: 100%; - width: 100%; - top: 0; - z-index: 0 !important; -} -.youtube-background .mb_YTPBar { - opacity: 0; - height: 0; - visibility: hidden; -} -@media all and (max-width: 1024px) { - .youtube-background { - display: none; - } -} -.loading-indicator { - position: absolute !important; - top: 50%; - left: 50%; - z-index: 99 !important; - width: 50px; - height: 50px; - margin-top: -25px; - margin-left: -25px; - background-color: #fff; - border-radius: 100%; - -webkit-animation: loading-spinner 1s infinite ease-in-out; - animation: loading-spinner 1s infinite ease-in-out; - transition: 0.3s linear; - -webkit-transition: 0.3s linear; - -moz-transition: 0.3s linear; -} -@-webkit-keyframes loading-spinner { - 0% { - -webkit-transform: scale(0); - } - 100% { - -webkit-transform: scale(1); - opacity: 0; - } -} -@keyframes loading-spinner { - 0% { - -webkit-transform: scale(0); - transform: scale(0); - } - 100% { - -webkit-transform: scale(1); - transform: scale(1); - opacity: 0; - } -} -.video-cover { - position: relative; -} -.video-cover video { - max-width: 100%; -} -.video-cover iframe { - background: #252525; -} -.video-cover .background-image-holder { - z-index: 3; -} -.video-cover .video-play-icon { - position: absolute; - top: 50%; - left: 50%; - transform: translate3d(-50%, -50%, 0); - -webkit-transform: translate3d(-50%, -50%, 0); -} -.video-cover .video-play-icon, -.video-cover .background-image-holder { - transition: 0.3s linear; - -webkit-transition: 0.3s linear; - -moz-transition: 0.3s linear; -} -.video-cover.reveal-video .video-play-icon, -.video-cover.reveal-video .background-image-holder { - opacity: 0 !important; - pointer-events: none; -} -.video-cover[data-scrim-bottom]:before, -.video-cover[data-overlay]:before, -.video-cover[data-scrim-top]:before { - transition: 0.3s linear; - -webkit-transition: 0.3s linear; - -moz-transition: 0.3s linear; - z-index: 4; -} -.video-cover.reveal-video[data-scrim-bottom]:before, -.video-cover.reveal-video[data-overlay]:before, -.video-cover.reveal-video[data-scrim-top]:before { - opacity: 0; - pointer-events: none; -} -.video-play-icon { - width: 7.42857143em; - height: 7.42857143em; - border-radius: 50%; - position: relative; - z-index: 4; - display: inline-block; - border: 2px solid #ffffff; - cursor: pointer; - background: #ffffff; -} -.video-play-icon.video-play-icon--sm { - width: 3.71428571em; - height: 3.71428571em; -} -.video-play-icon.video-play-icon--sm:before { - border-width: 4px 0 4px 9px; -} -.video-play-icon.video-play-icon--xs { - width: 1.85714286em; - height: 1.85714286em; -} -.video-play-icon.video-play-icon--xs:before { - border-width: 3px 0 3px 6px; - margin-left: -3px; -} -.video-play-icon.bg--primary:before { - border-color: transparent transparent transparent #fff; -} -.video-play-icon:before { - position: absolute; - top: 50%; - margin-top: -5px; - left: 50%; - margin-left: -4px; - content: ''; - width: 0; - height: 0; - border-style: solid; - border-width: 6px 0 6px 12px; - border-color: transparent transparent transparent #ffffff; - border-color: transparent transparent transparent #808080; -} -.video-play-icon.video-play-icon--dark { - border-color: #252525; - background: #252525; -} -.video-play-icon.video-play-icon--dark:before { - border-color: transparent transparent transparent #252525; -} -.video-play-icon.video-play-icon--dark:before { - border-color: transparent transparent transparent #fff; -} -@media all and (max-width: 767px) { - .video-play-icon { - width: 4.95238095em; - height: 4.95238095em; - } -} -div[class*='col-'][class*='-12']:not([class*='xs-12']) .video-cover iframe { - min-height: 550px; -} -@media all and (max-width: 990px) { - div[class*='col-'][class*='-12']:not([class*='xs-12']) .video-cover iframe { - min-height: 350px; - } -} -div[class*='col-'][class*='-10'] .video-cover iframe { - min-height: 450px; -} -div[class*='col-'][class*='-8'] .video-cover iframe { - min-height: 400px; -} -div[class*='col-'][class*='-6'] .video-cover iframe { - min-height: 350px; -} -@media all and (max-width: 1200px) { - div[class*='col-'][class*='-6'] .video-cover iframe { - min-height: 300px; - } -} -@media all and (max-width: 990px) { - div[class*='col-'][class*='-6'] .video-cover iframe { - min-height: 220px; - } -} -@media all and (max-width: 767px) { - div[class*='col-'] .video-cover iframe { - min-height: 220px !important; - } -} -.modal-container video { - max-width: 100%; -} -/**! 26. Colors **/ -body { - background: #ffffff; -} -.color--primary { - color: #238b53 !important; -} -a { - color: #238b53; -} -.color--primary-1 { - color: #282729 !important; -} -.color--primary-2 { - color: #669e4b !important; -} -.color--white { - color: #fff; -} -.color--dark { - color: #252525; -} -.color--success { - color: #4ebf56; -} -.color--error { - color: #e23636; -} -.bg--dark { - background: #252525; -} -.bg--dark:not(.nav-bar):not(.bar) { - color: #ffffff; -} -.bg--dark:not(.nav-bar):not(.bar) h1, -.bg--dark:not(.nav-bar):not(.bar) h2, -.bg--dark:not(.nav-bar):not(.bar) h3, -.bg--dark:not(.nav-bar):not(.bar) h4, -.bg--dark:not(.nav-bar):not(.bar) h5, -.bg--dark:not(.nav-bar):not(.bar) h6, -.bg--dark:not(.nav-bar):not(.bar) i, -.bg--dark:not(.nav-bar):not(.bar) span:not(.btn__text), -.bg--dark:not(.nav-bar):not(.bar) p { - color: #ffffff; -} -.bg--dark:not(.nav-bar):not(.bar) a:not(.btn) { - color: #fff; -} -.bg--site { - background: #ffffff; -} -.bg--secondary { - background: #fafafa; -} -.bg--primary { - background: #238b53; -} -.bg--primary p, -.bg--primary span, -.bg--primary ul, -.bg--primary a:not(.btn) { - color: #fff; -} -.bg--primary h1, -.bg--primary h2, -.bg--primary h3, -.bg--primary h4, -.bg--primary h5, -.bg--primary h6, -.bg--primary i { - color: #fff; -} -.bg--primary .color--primary { - color: #fff !important; -} -.bg--white { - background: #fff; -} -.bg--white p, -.bg--white span, -.bg--white ul, -.bg--white a:not(.btn) { - color: #666666; -} -.bg--white h1, -.bg--white h2, -.bg--white h3, -.bg--white h4, -.bg--white h5, -.bg--white h6, -.bg--white i { - color: #252525; -} -.bg--error { - background: #e23636; -} -.bg--success { - background: #4ebf56; -} -.imagebg:not(.image--light) .bg--white p, -.imagebg:not(.image--light) .bg--white span, -.imagebg:not(.image--light) .bg--white ul, -.imagebg:not(.image--light) .bg--white a:not(.btn) { - color: #666666; -} -.imagebg:not(.image--light) .bg--white h1, -.imagebg:not(.image--light) .bg--white h2, -.imagebg:not(.image--light) .bg--white h3, -.imagebg:not(.image--light) .bg--white h4, -.imagebg:not(.image--light) .bg--white h5, -.imagebg:not(.image--light) .bg--white h6, -.imagebg:not(.image--light) .bg--white i { - color: #252525; -} -.imagebg:not(.image--light) .bg--secondary { - background: rgba(250, 250, 250, 0.2); -} -.bg--primary-1 { - background: #282729; -} -.bg--primary-1 p, -.bg--primary-1 span, -.bg--primary-1 ul, -.bg--primary-1 a:not(.btn) { - color: #fff; -} -.bg--primary-1 h1, -.bg--primary-1 h2, -.bg--primary-1 h3, -.bg--primary-1 h4, -.bg--primary-1 h5, -.bg--primary-1 h6, -.bg--primary-1 i { - color: #fff; -} -.bg--primary-2 { - background: #669e4b; -} -.bg--primary-2 p, -.bg--primary-2 span, -.bg--primary-2 ul, -.bg--primary-2 a:not(.btn) { - color: #fff; -} -.bg--primary-2 h1, -.bg--primary-2 h2, -.bg--primary-2 h3, -.bg--primary-2 h4, -.bg--primary-2 h5, -.bg--primary-2 h6, -.bg--primary-2 i { - color: #fff; -} -.image-bg:not(.image-light) *:not(a) { - color: #fff; -} -.color--facebook { - color: #3b5998; -} -.color--twitter { - color: #00aced; -} -.color--googleplus { - color: #dd4b39; -} -.color--instagram { - color: #125688; -} -.color--pinterest { - color: #cb2027; -} -.color--dribbble { - color: #ea4c89; -} -.color--behance { - color: #053eff; -} -.bg--facebook { - background: #3b5998; - color: #fff; -} -.bg--twitter { - background: #00aced; - color: #fff; -} -.bg--googleplus { - background: #dd4b39; - color: #fff; -} -.bg--instagram { - background: #125688; - color: #fff; -} -.bg--pinterest { - background: #cb2027; - color: #fff; -} -.bg--dribbble { - background: #ea4c89; - color: #fff; -} -.bg--behance { - background: #053eff; - color: #fff; -} -/**! 27. Image Blocks **/ -.imageblock { - position: relative; - padding: 0; -} -.imageblock > .container, -.imageblock > div[class*='col-']:not(.imageblock__content) { - padding-top: 7.42857143em; - padding-bottom: 7.42857143em; - float: none; - overflow: hidden; -} -.imageblock.imageblock--lg > .container, -.imageblock.imageblock--lg > div[class*='col-']:not(.imageblock__content) { - padding-top: 9.28571429em; - padding-bottom: 9.28571429em; - float: none; - overflow: hidden; -} -.imageblock .imageblock__content { - position: absolute; - height: 100%; - top: 0; - z-index: 2; - padding: 0; -} -.imageblock .imageblock__content .slider { - position: absolute; - width: 100%; - height: 100%; - top: 0; -} -.imageblock .imageblock__content .slider .slides > li { - padding: 0; - min-height: 100%; - position: absolute !important; -} -.imageblock.allow-overflow .imageblock__content { - overflow: visible; -} -@media all and (max-height: 728px) { - .imageblock > .container, - .imageblock > div[class*='col-']:not(.imageblock__content) { - padding-top: 3.71428571em; - padding-bottom: 3.71428571em; - } -} -@media all and (max-width: 767px) { - .imageblock[class*='space-'] { - padding-bottom: 0; - padding-top: 0; - } - .imageblock .imageblock__content { - position: relative; - min-height: 18.57142857em; - } - .imageblock > .container, - .imageblock > div[class*='col-']:not(.imageblock__content) { - padding-top: 5.57142857em; - padding-bottom: 5.57142857em; - float: none; - overflow: hidden; - } - .imageblock.imageblock--lg > .container, - .imageblock.imageblock--lg > div[class*='col-']:not(.imageblock__content) { - padding-top: 5.57142857em; - padding-bottom: 5.57142857em; - float: none; - overflow: hidden; - } -} -/**! 28. MailChimp & Campaign Monitor **/ -form[action*='createsend.com'] * { - transition: 0.3s linear; - -webkit-transition: 0.3s linear; - -moz-transition: 0.3s linear; - opacity: 0; -} -form[action*='createsend.com'].form--active * { - opacity: 1; -} -form[action*='createsend.com'] .input-checkbox + br { - display: none; -} -form[action*='createsend.com'].no-labels label { - display: none; -} -form[action*='createsend.com'] br { - display: none; -} -form[action*='createsend.com'] p > label:first-child { - margin-bottom: 0.92857143em; -} -form[action*='list-manage.com'] h2 { - font-family: 'Open Sans', 'Helvetica', 'Arial', sans-serif; - color: #252525; - font-weight: 300; - font-variant-ligatures: common-ligatures; - margin-top: 0; - margin-bottom: 0; - font-size: 1.35714286em; - line-height: 1.36842105em; - margin-bottom: 1.36842105263158em; - font-weight: 400; -} -form[action*='list-manage.com'] h2.inline-block + .h4.inline-block:not(.typed-text) { - margin-left: 0.68421052631579em; -} -form[action*='list-manage.com'] .input-group ul { - overflow: hidden; -} -form[action*='list-manage.com'] .input-group ul li { - float: left; -} -form[action*='list-manage.com'] * { - transition: 0.3s linear; - -webkit-transition: 0.3s linear; - -moz-transition: 0.3s linear; - opacity: 0; -} -form[action*='list-manage.com'].form--active * { - opacity: 1; -} -form[action*='list-manage.com'].no-labels label { - display: none; -} -form[action*='list-manage.com'] .small-meta { - font-size: 0.5em; -} -/**! 29. Twitter **/ -.twitter-feed .user { - display: none; -} -.twitter-feed .interact { - display: none; -} -.twitter-feed .timePosted { - font-size: .87em; -} -/**! 30. Transitions **/ -[class*='transition--'] { - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; - opacity: 0; -} -[class*='transition--'].transition--active { - opacity: 1; -} -.transition--scale { - transform: scale(0.98); - -webkit-transform: scale(0.98); -} -.transition--scale.transition--active { - opacity: 1; - transform: scale(1); - -webkit-transform: scale(1); -} -.transition--slide { - transform: translate3d(200px, 0, 0); - -webkit-transform: translate3d(200px, 0, 0); - transform: translate3d(30vw, 0, 0); - -webkit-transform: translate3d(30vw, 0, 0); -} -.transition--slide.transition--active { - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); -} -/**! 31. Switchable Sections **/ -.switchable { - position: relative; -} -.switchable div[class*='col-']:first-child { - float: left; - right: auto; -} -.switchable div[class*='col-']:first-child:not([class*='pull']):not([class*='push']) { - left: 0; -} -.switchable div[class*='col-']:last-child { - float: right; - left: auto; -} -.switchable div[class*='col-']:last-child:not([class*='pull']):not([class*='push']) { - right: 0; -} -.switchable.switchable--switch div[class*='col-']:first-child { - float: right; - right: 0; - left: auto; -} -.switchable.switchable--switch div[class*='col-']:first-child:not([class*='pull']):not([class*='push']) { - left: auto; -} -.switchable.switchable--switch div[class*='col-']:last-child { - float: left; - left: 0; - right: auto; -} -.switchable .switchable__text { - margin-top: 3.71428571em; -} -.switchable > div[class*='col-'] { - padding: 0; -} -/**! 32. Typed Effect **/ -.typed-text { - display: inline-block; -} -.typed-text.typed-text--cursor:after { - content: '|'; - font-size: 1.2em; - -webkit-animation: blink 0.7s infinite; - animation: blink 0.7s infinite; - position: relative; - right: 6px; -} -@keyframes blink { - 0% { - opacity: 1; - } - 50% { - opacity: 0; - } - 100% { - opacity: 1; - } -} -@-webkit-keyframes blink { - 0% { - opacity: 1; - } - 50% { - opacity: 0; - } - 100% { - opacity: 1; - } -} -/**! 33. Gradient BG **/ -[data-gradient-bg] { - position: relative; - background: #252525; -} -[data-gradient-bg] > canvas { - position: absolute; - width: 100%; - height: 100%; - top: 0; - left: 0; -} -[data-gradient-bg] > canvas + .background-image-holder { - opacity: .2 !important; -} -/**! 34. Bars **/ -.bar { - padding: 1.85714286em 0; -} -.bar .logo { - margin: 0; - position: relative; - top: 4px; -} -.bar .menu-horizontal { - position: relative; - top: 6px; -} -.bar:not([class*='visible-']) + .bar { - margin-top: 0.92857143em; -} -.bar.bar--xs { - padding: 0.46428571em 0; -} -.bar.bar--sm { - padding: 0.92857143em 0; -} -.bar.bar--lg { - padding: 2.78571429em 0; -} -.bar.bar--lg .logo { - top: 0; -} -.bar.bar--xlg { - padding: 4.64285714em 0; -} -.bar.bar--xlg .logo { - top: 0; -} -.bar.bg--dark .logo-dark { - display: none; -} -.bar:not(.bg--dark):not(.bar--transparent) .logo-light { - display: none; -} -@media all and (max-width: 767px) { - .bar.bar--mobile-sticky[data-scroll-class*='fixed'].pos-fixed { - position: fixed; - width: 100%; - background: #fff; - z-index: 999; - } - .bar.bar--mobile-sticky[data-scroll-class*='fixed'] + .bar.pos-fixed { - top: 3.71428571em; - position: fixed; - width: 100%; - background: #fff; - z-index: 999; - } -} -@media all and (min-width: 991px) { - .bar__module:not(:only-child) { - display: inline-block; - } - .bar__module:not(:last-child) { - margin-right: 0.92857143em; - } - .bar--transparent:not(.bar--dark) { - background: none; - } - .bar--transparent:not(.bar--dark) .logo-dark { - display: none; - } - .bar--transparent:not(.bar--dark) .logo-light { - display: inline-block; - } - .bar--transparent:not(.bar--dark):not(.pos-fixed) .menu-horizontal > li > a, - .bar--transparent:not(.bar--dark):not(.pos-fixed) .menu-horizontal > li > span { - color: #fff; - } - .bar--transparent:not(.bar--dark):not(.pos-fixed) .btn:not([class*='primary']) { - border-color: rgba(255, 255, 255, 0.3); - } - .bar--transparent:not(.bar--dark):not(.pos-fixed) .btn:not([class*='primary']) .btn__text { - color: #fff; - } - .bar--transparent:not(.bar--dark):not(.pos-fixed) .btn:not([class*='primary']):hover { - border-color: rgba(255, 255, 255, 0.7); - } - .bar--absolute { - position: absolute; - } - .bar--absolute, - .pos-fixed { - z-index: 99; - width: 100%; - } - .bar.pos-fixed { - position: fixed; - top: 0; - animation: fadeInDown 0.3s ease-out forwards; - box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); - box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.04); - } - .bar.pos-fixed:not([class*='bg-']) { - background: #ffffff; - } - .bar.pos-fixed:not([class*='bg-']) .logo-dark { - display: inline-block; - } - .bar.pos-fixed:not([class*='bg-']) .logo-light { - display: none; - } - .bar.pos-fixed.bg--dark { - background: #252525; - } -} -@media all and (max-width: 767px) { - .bar__module { - margin-bottom: 0.92857143em; - } - .bar__module + .bar__module { - margin-top: 1.85714286em; - } - .bar__module .btn { - display: block; - } - .bar__module .btn + .btn { - margin-left: 0 !important; - } - .bar__module .btn:not(:last-child) { - margin-bottom: 0.92857143em; - } - .bar + nav.bar { - padding-top: 0; - } -} -/**! 35. Navigation InPage **/ -.page-navigator { - position: fixed; - padding: 0; - top: 50%; - transform: translateY(-50%); - right: 1.85714286em; - z-index: 10; -} -.page-navigator ul { - display: inline-block; - padding: 0.92857143em; - background: rgba(0, 0, 0, 0.4); - border-radius: 1.85714286em; - transition: all .2s ease; -} -.page-navigator ul:hover { - background: rgba(0, 0, 0, 0.6); -} -.page-navigator ul li:not(:last-child) { - margin-bottom: 1.85714286em; -} -@media all and (max-width: 767px) { - .page-navigator { - right: 0; - } - .page-navigator ul { - border-radius: 1.85714286em 0 0 1.85714286em; - padding: 1.85714286em 0.92857143em; - } -} -.page-navigator li a { - width: 8px; - height: 8px; - background: #fff; - border-radius: 50%; - transition: all .2s ease; - display: block; - position: relative; -} -.page-navigator li a:not(:hover) { - opacity: .5; -} -.page-navigator li a.inner-link--active { - opacity: 1; - animation: bulge .5s ease; - -webkit-animation: bulge .5s ease; -} -@keyframes bulge { - 0% { - transform: scale(1); - } - 50% { - transform: scale(1.3); - } - 100% { - transform: scale(1); - } -} -@-webkit-keyframes bulge { - 0% { - transform: scale(1); - } - 50% { - transform: scale(1.3); - } - 100% { - transform: scale(1); - } -} -.page-navigator li a[data-title]:before { - content: attr(data-title); - position: absolute; - right: 12px; - top: -14px; - background: #222; - color: #fff; - border-radius: 6px; - padding: 4px 8px; - display: inline-block; - transition: all .2s ease; - white-space: nowrap; -} -.page-navigator li a[data-title]:not(:hover):before { - opacity: 0; - transform: translateX(-20px); -} -/**! 36. Helper Classes **/ -.clearfix { - overflow: hidden; -} -.clearfix-after:after { - content: ""; - display: table; - clear: both; -} -.allow-overflow { - overflow: visible; -} -.container .row--gapless { - padding-left: 15px; - padding-right: 15px; -} -.container .row--gapless > div[class*='col-'] { - padding: 0; -} -@media all and (max-width: 767px) { - .text-left-xs { - text-align: left; - } -} -@media all and (max-width: 991px) { - .text-left-sm { - text-align: left; - } -} -section > .row--gapless { - padding-left: 0; - padding-right: 0; -} -section > .row--gapless > div[class*='col-'] { - padding: 0; -} -div.right { - float: right; -} -div.left { - float: left; -} -section.text-right > .container:last-child > .row:only-child > div[class*='col-']:only-child { - float: right; -} -/**! 37. Spacing **/ -section, -footer { - padding-top: 7.42857143em; - padding-bottom: 7.42857143em; -} -section.space--xxs, -footer.space--xxs { - padding-top: 1.85714286em; - padding-bottom: 1.85714286em; -} -section.space--xs, -footer.space--xs { - padding-top: 3.71428571em; - padding-bottom: 3.71428571em; -} -section.space--sm, -footer.space--sm { - padding-top: 4.95238095em; - padding-bottom: 4.95238095em; -} -section.space--md, -footer.space--md { - padding-top: 11.14285714em; - padding-bottom: 11.14285714em; -} -section.space--lg, -footer.space--lg { - padding-top: 14.85714286em; - padding-bottom: 14.85714286em; -} -section.space--xlg, -footer.space--xlg { - padding-top: 29.71428571em; - padding-bottom: 29.71428571em; -} -section.space--0, -footer.space--0 { - padding: 0; -} -section.section--even, -footer.section--even { - padding-top: 7.42857143em; - padding-bottom: 7.42857143em; -} -section.space-bottom--sm, -footer.space-bottom--sm { - padding-bottom: 4.95238095em; -} -@media all and (max-width: 767px) { - section, - footer, - section.section--even { - padding: 5.57142857em 0; - } - section.space--lg, - footer.space--lg, - section.section--even.space--lg, - section.space--md, - footer.space--md, - section.section--even.space--md { - padding: 5.57142857em 0; - } - section.space--xlg, - footer.space--xlg, - section.section--even.space--xlg { - padding: 8.35714286em 0; - } -} -div[class*='col-'] > div[class*='col-']:first-child { - padding-left: 0; -} -div[class*='col-'] > div[class*='col-']:last-child { - padding-right: 0; -} -@media all and (max-width: 767px) { - .col-xs-6:nth-child(odd) { - padding-right: 7.5px; - } - .col-xs-6:nth-child(even) { - padding-left: 7.5px; - } -} -@media all and (min-width: 768px) { - .mt--1 { - margin-top: 1.85714286em; - } - .mt--2 { - margin-top: 3.71428571em; - } - .mt--3 { - margin-top: 5.57142857em; - } - .mb--1 { - margin-bottom: 1.85714286em; - } - .mb--2 { - margin-bottom: 3.71428571em; - } - .mb--3 { - margin-bottom: 5.57142857em; - } -} -@media all and (max-width: 990px) { - .mt--1, - .mt--2 { - margin-top: 1.85714286em; - } - .mt--3 { - margin-top: 2.78571429em; - } -} -.unpad { - padding: 0; -} -.unpad--bottom { - padding-bottom: 0; -} -.unpad--top { - padding-top: 0; -} -section.unpad--bottom { - padding-bottom: 0; -} -section.unpad { - padding: 0; -} -section.unpad--top { - padding-top: 0; -} -.unmarg--bottom { - margin-bottom: 0; -} -.unmarg { - margin: 0; -} -.unmarg--top { - margin-top: 0; -} -/**! 38. Boxed Layout **/ -@media all and (min-width: 1280px) { - body.boxed-layout { - padding: 3.71428571em 0; - background: #ededed; - } - body.boxed-layout section:not([class*='bg-']):not(.imagebg), - body.boxed-layout footer:not([class*='bg-']):not(.imagebg), - body.boxed-layout nav:not([class*='bg-']):not(.bar--transparent):not(.bar--absolute), - body.boxed-layout .tabs-container:not([class*='bg-']):not(.imagebg) { - background: #ffffff; - } - body.boxed-layout .nav-container, - body.boxed-layout .main-container, - body.boxed-layout > section, - body.boxed-layout nav { - max-width: 1280px; - margin: 0 auto; - } -} -/**! 39. Wizard **/ -.wizard__body { - list-style: none; -} -.wizard__step:not(.active) { - display: none; -} -.wizard__step .wizard__title { - display: none; -} -.wizard__controls { - overflow: hidden; -} -.wizard__controls .wizard-prev { - float: left; -} -.wizard__controls .wizard-next { - float: right; -} -.wizard__controls .wizard-prev:hover, -.wizard__controls .wizard-next:hover { - transform: none !important; -} -.wizard__controls .wizard-prev.inactive, -.wizard__controls .wizard-next.inactive { - pointer-events: none; - opacity: .3; - cursor: not-allowed; -} -/**! 40. Alerts **/ -.alert { - overflow: hidden; - border: 1px solid #e6e6e6; - padding: 0.92857143em; -} -.alert .alert__body, -.alert .alert__close { - display: inline-block; - user-select: none; -} -.alert .alert__body { - float: left; -} -.alert .alert__close { - float: right; - cursor: pointer; -} -.alert.bg--error { - background: #fce8e8; - border-color: #e23636; -} -.alert.bg--error .alert__close { - color: #e23636; -} -.alert.bg--success { - background: #e4f5e5; - border-color: #4ebf56; -} -.alert.bg--success .alert__close { - color: #4ebf56; -} -.alert.bg--primary { - background: #96e4ba; - border-color: #238b53; -} -.alert.bg--primary .alert__body > span { - color: #666666; -} -.alert.bg--primary .alert__close { - color: #238b53; -} -.alert.alert--dismissed { - display: none; -} -/**! 41. Progress - Horizontal **/ -.progress-horizontal:after { - content: ""; - display: table; - clear: both; -} -.progress-horizontal .progress-horizontal__bar { - position: relative; - overflow: hidden; -} -.progress-horizontal .progress-horizontal__progress { - position: absolute; - top: 0; - left: 0; - height: 100%; -} -/**! 42. Theme Overrides **/ -/*! -- Stack Customizers -- */ -.box-shadow { - box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.04); -} -.box-shadow-shallow { - box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.06); -} -.box-shadow-wide { - box-shadow: 0 23px 40px rgba(0, 0, 0, 0.2); -} -.border--round { - border-radius: 6px; -} -.border--round:before { - border-radius: 6px; -} -.border--round .background-image-holder { - border-radius: 6px; -} -.border--round [data-scrim-top]:before, -.border--round [data-scrim-bottom]:before, -.border--round [data-overlay]:before { - border-radius: 6px; -} -.imageblock.border--round .background-image-holder { - border-radius: 6px 0 0 6px; -} -@media all and (max-width: 767px) { - .imageblock.border--round .background-image-holder { - border-radius: 6px 6px 0 0; - } -} -.theme--square .border--round, -.theme--square .btn { - border-radius: 0px; -} -.theme--bordered { - border: 0.92857143em solid #252525; -} -.main-container.transition--fade:not(.transition--active) { - cursor: wait; -} -@media all and (min-width: 1280px) { - body.boxed-layout > section.bar-3:first-of-type { - border-radius: 6px 6px 0 0; - } - body.boxed-layout .main-container > footer:last-child { - border-radius: 0 0 6px 6px; - } -} -body.boxed-layout .modal-container section:not([class*='bg-']) { - background: none; -} -/*! -- Stack Helpers -- */ -@media all and (max-width: 767px) { - .block--xs { - margin-top: 0.92857143em; - } -} -.container .container { - max-width: 100%; -} -.switchable-toggle { - cursor: pointer; - user-select: none; - -webkit-user-select: none; -} -.back-to-top { - position: fixed; - width: 3.71428571em; - height: 3.71428571em; - background: #fff; - border-radius: 50%; - text-align: center; - right: 1.85714286em; - bottom: 3.71428571em; - padding-top: 12px; - box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); - box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.04); - z-index: 99; - border: 1px solid #ececec; - transition: 0.2s ease-out; - -webkit-transition: 0.2s ease-out; - -moz-transition: 0.2s ease-out; -} -.back-to-top i { - color: #252525; -} -.back-to-top:not(.active) { - opacity: 0; - transform: translate3d(0, 20px, 0); - -webkit-transform: translate3d(0, 20px, 0); - pointer-events: none; -} -.back-to-top.active:hover { - transform: translate3d(0, -5px, 0); - -webkit-transform: translate3d(0, -5px, 0); -} -.disable-scroll-bars { - -ms-overflow-style: none; -} -.disable-scroll-bars::-webkit-scrollbar { - display: none; -} -/*! -- Stack Animations -- */ -@keyframes fadeInUp { - from { - opacity: 0; - transform: translate3d(0, 50px, 0); - -webkit-transform: translate3d(0, 50px, 0); - } - to { - opacity: 1; - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); - -webkit-font-smoothing: antialiased; - } -} -@-webkit-keyframes fadeInUp { - from { - opacity: 0; - transform: translate3d(0, 50px, 0); - -webkit-transform: translate3d(0, 50px, 0); - } - to { - opacity: 1; - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); - -webkit-font-smoothing: antialiased; - } -} -@keyframes fadeInDown { - from { - opacity: 0; - transform: translate3d(0, -100px, 0); - -webkit-transform: translate3d(0, -100px, 0); - } - to { - opacity: 1; - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); - -webkit-font-smoothing: antialiased; - } -} -@-webkit-keyframes fadeInDown { - from { - opacity: 0; - transform: translate3d(0, -100px, 0); - -webkit-transform: translate3d(0, -100px, 0); - } - to { - opacity: 1; - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); - -webkit-font-smoothing: antialiased; - } -} -@keyframes fadeOutUp { - from { - opacity: 1; - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); - } - to { - opacity: 0; - transform: translate3d(0, -50px, 0); - -webkit-transform: translate3d(0, -50px, 0); - -webkit-font-smoothing: antialiased; - } -} -@-webkit-keyframes fadeOutUp { - from { - opacity: 1; - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); - } - to { - opacity: 0; - transform: translate3d(0, -50px, 0); - -webkit-transform: translate3d(0, -50px, 0); - -webkit-font-smoothing: antialiased; - } -} -@keyframes fadeOutRight { - from { - opacity: 1; - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); - } - to { - opacity: 0; - transform: translate3d(50px, 0, 0); - -webkit-transform: translate3d(50px, 0, 0); - -webkit-font-smoothing: antialiased; - } -} -@-webkit-keyframes fadeOutRight { - from { - opacity: 1; - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); - } - to { - opacity: 0; - transform: translate3d(50px, 0, 0); - -webkit-transform: translate3d(50px, 0, 0); - -webkit-font-smoothing: antialiased; - } -} -@keyframes fadeInLeft { - from { - opacity: 0; - transform: translate3d(-50px, 0, 0); - -webkit-transform: translate3d(-50px, 0, 0); - } - to { - opacity: 1; - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); - -webkit-font-smoothing: antialiased; - } -} -@-webkit-keyframes fadeInLeft { - from { - opacity: 0; - transform: translate3d(-50px, 0, 0); - -webkit-transform: translate3d(-50px, 0, 0); - } - to { - opacity: 1; - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); - -webkit-font-smoothing: antialiased; - } -} -@keyframes pulse { - 0% { - opacity: 0; - transform: scale(1); - -webkit-transform: scale(1); - } - 50% { - opacity: 1; - } - 100% { - opacity: 0; - transform: scale(2); - -webkit-transform: scale(2); - } -} -@-webkit-keyframes pulse { - 0% { - opacity: 0; - transform: scale(1); - -webkit-transform: scale(1); - } - 50% { - opacity: 1; - } - 100% { - opacity: 0; - transform: scale(2); - -webkit-transform: scale(2); - } -} -@keyframes kenBurns { - 0% { - transform: scale(1); - } - 100% { - transform: scale(1.1); - } -} -@-webkit-keyframes kenBurns { - 0% { - transform: scale(1); - } - 100% { - transform: scale(1.1); - } -} -/*! -- Stack Sections -- */ -section:not(.unpad):not(.imagebg):not([class*='bg--']):not(.imageblock):not(.unpad--bottom):not(.border--bottom):not(.space--xxs) + section:not(.unpad):not(.imagebg):not([class*='bg--']):not(.imageblock):not(.border--bottom):not(.space--xxs) { - padding-top: 0; -} -section:not(.unpad):not(.imagebg):not([class*='bg--']):not(.imageblock):not(.unpad--bottom):not(.border--bottom) + footer:not(.unpad):not(.imagebg):not([class*='bg--']):not(.imageblock):not(.unpad--bottom):not(.border--bottom) { - padding-top: 0; -} -section:not(.imagebg):not([class*='bg-']) + section.bg--secondary { - border-top: 1px solid #ebebeb; -} -section.bg--secondary:not(.imagebg) + section:not(.imagebg):not([class*='bg-']) { - border-top: 1px solid #ebebeb; -} -section.bg--secondary:not(.unpad):not(.imageblock):not(.unpad--bottom):not(.border--bottom) + section.bg--secondary { - padding-top: 0; -} -section.bg--secondary + footer:not(.bg--dark):not(.bg--secondary) { - border-top: 1px solid #ebebeb; -} -section.bg--dark + section.bg--dark { - padding-top: 0; -} -section.bg--dark:last-of-type + footer.bg--dark { - background: #1b1b1b; -} -section.border--bottom:not([data-gradient-bg]) { - border-bottom: 1px solid #ececec; -} -section.unpad { - overflow: hidden; -} -section:not([class*='bg--']) + footer.bg--secondary { - border-top: 1px solid #ebebeb; -} -section.text-center div[class*='col-']:first-child:last-child { - margin: 0 auto; - float: none; -} -.section--overlap { - z-index: 2; - position: relative; -} -/*! -- Stack Typography -- */ -@media all and (max-width: 1024px) { - html { - font-size: 80%; - } -} -h1, -.h1 { - letter-spacing: -0.01em; -} -h1:not(:last-child), -.h1:not(:last-child) { - margin-bottom: 0.59090909090909em; -} -@media all and (min-width: 768px) { - h1.h1--large, - .h1.h1--large { - font-weight: 200; - font-size: 4.428571428571429em; - line-height: 1.048387096774194em; - } - h1.h1--large:not(:last-child), - .h1.h1--large:not(:last-child) { - margin-bottom: 0.419354838709677em; - } - h1.h1--large.type--uppercase, - .h1.h1--large.type--uppercase { - letter-spacing: 10px; - margin-right: -10px; - } - h1.h1--large + p.lead, - .h1.h1--large + p.lead { - margin-top: 2.052631578947368em; - } -} -h2, -.h2 { - margin-bottom: 0.78787878787879em; -} -h3, -.h3 { - margin-bottom: 1.04em; -} -h3 strong, -.h3 strong { - font-weight: 400; -} -blockquote { - font-family: 'Merriweather', serif; - font-style: italic; - font-weight: 300; -} -blockquote:not(:last-child) { - margin-bottom: 1.04em; -} -blockquote > p { - font-size: 1em !important; -} -h4, -.h4 { - margin-bottom: 1.36842105263158em; - font-weight: 400; -} -h4.inline-block + .h4.inline-block:not(.typed-text), -.h4.inline-block + .h4.inline-block:not(.typed-text) { - margin-left: 0.68421052631579em; -} -h5, -.h5 { - font-weight: 600; -} -h5:not(:last-child), -.h5:not(:last-child) { - margin-bottom: 1.85714286em; -} -h6, -.h6 { - font-weight: 700; -} -h6:not(:last-child), -.h6:not(:last-child) { - margin-bottom: 2.16666666666667em; -} -h6.type--uppercase, -.h6.type--uppercase { - letter-spacing: 1px; - margin-right: -1px; -} -span.h1:not(.inline-block), -span.h2:not(.inline-block), -span.h3:not(.inline-block), -span.h4:not(.inline-block), -span.h5:not(.inline-block), -span.h6:not(.inline-block) { - display: block; -} -b { - font-weight: 600; -} -hr { - border-color: #ECECEC; -} -.bg--dark hr { - border-color: #585858; -} -[class*='bg-']:not(.bg--white):not(.bg--secondary) p, -[class*='imagebg']:not(.image--light) p { - opacity: .9; -} -.lead { - font-weight: 400; - color: #808080; -} -.lead:not(:last-child) { - margin-bottom: 1.36842105263158em; -} -.lead + .btn:last-child { - margin-top: 0.92857143em; -} -p:last-child { - margin-bottom: 0; -} -p strong { - color: #252525; -} -pre { - padding: 0.92857143em; - background: #fafafa; - border: 1px solid #ececec; - border-radius: 6px; - line-height: 20px; - max-height: 500px; -} -.bg--secondary > pre { - background: #f5f5f5; - border-color: #ddd; -} -.text-block:not(:last-child) { - margin-bottom: 1.85714286em; -} -.text-block h2, -.text-block .h2 { - margin-bottom: 0.3939393939394em; -} -.text-block h5, -.text-block .h5 { - margin: 0; -} -.text-block h4:not(:last-child), -.text-block .h4:not(:last-child) { - margin-bottom: 0.3421052631579em; -} -.text-block h3, -.text-block .h3 { - margin-bottom: 0.52em; -} -@media all and (min-width: 768px) { - div[class*='col-'] .text-block + .text-block { - margin-top: 3.71428571em; - } -} -.heading-block { - margin-bottom: 3.71428571em; -} -.heading-block h1, -.heading-block h2, -.heading-block h3, -.heading-block h4, -.heading-block h5, -.heading-block h6, -.heading-block .h1, -.heading-block .h2, -.heading-block .h3, -.heading-block .h4, -.heading-block .h5, -.heading-block .h6 { - margin-bottom: 0; -} -/*! -- Stack Colours -- */ -.bg--dark .bg--secondary { - background: #343434; -} -/*! -- Stack Links -- */ -a { - color: #238b53; - font-weight: 700; -} -a:hover { - color: #19623b; - text-decoration: underline; -} -a.block { - font-weight: normal; - text-decoration: none; - color: #666666; -} -p a, -span a, -label a { - font-size: 1em; - text-decoration: underline; - font-weight: 400; - line-height: 1.85714286em; -} -p + a:not(.btn) { - font-size: 0.85714286em; - line-height: 2.16666667em; -} -.imagebg:not(.image--light) a { - color: #fff; - font-weight: 600; -} -/*! -- Stack Tables -- */ -table { - width: 100%; - border-collapse: separate; -} -table th, -table td { - padding: 0.92857143em; -} -table th { - background: #fafafa; - color: #252525; -} -table tr:not(:last-of-type) { - border-bottom: 1px solid #ececec; -} -table.border--round { - border-radius: 6px; - border: 1px solid #ececec; -} -.table--alternate-column th:nth-child(odd) { - background: none; -} -.table--alternate-column td:nth-child(even) { - background: #fafafa; -} -.table--alternate-row tbody tr:nth-child(even) { - background: #fafafa; -} -.bg--dark table.border--round { - border-radius: 6px; - border: 1px solid #3f3f3f; -} -.bg--dark table th { - background: #3f3f3f; - color: #fff; -} -.bg--dark .table--alternate-row tbody tr:nth-child(even) { - background: #323232; -} -/*! -- Stack Lists -- */ -ul:not([class*='menu']) li > a { - font-weight: normal; -} -ul:not([class*='menu']) li > a:hover { - text-decoration: none; -} -ol { - list-style-position: outside; - list-style-type: decimal; -} -ol li:not(:last-child) { - margin-bottom: 1.85714286em; -} -ol.lead li:not(:last-child) { - margin-bottom: 1.26315789473684em; -} -.list-inline { - margin-left: 0; - display: inline-block; -} -.list-inline li { - padding: 0; -} -.list-inline li:not(:last-child) { - margin-right: 1.85714286em; -} -.list-inline:not(:last-child) { - margin-right: 1.85714286em; -} -.list-inline--images img { - max-height: 2.78571429em; -} -@media all and (min-width: 768px) { - .list-inline--images li:not(:last-child) { - margin-right: 5.57142857em; - } -} -@media all and (max-width: 767px) { - .list-inline--images li:not(:last-child) { - margin-bottom: 1.85714286em; - } -} -.list--loose > li:not(:last-child) { - margin-bottom: 0.46428571em; -} -.list--hover li { - transition: 0.2s ease; - -webkit-transition: 0.2s ease; - -moz-transition: 0.2s ease; -} -.list--hover li:not(:hover) { - opacity: .6; -} -.social-list a { - color: #252525; -} -.imagebg:not(.image--light) .social-list a { - color: #fff; -} -.results-list > li > a:first-child { - display: flex; - align-items: center; - margin-bottom: 0.92857143em; -} -.results-list > li > a:first-child span { - display: inline-block; - margin-left: 0.46428571em; -} -.results-list > li > a:first-child h4 { - display: inline-block; - margin-bottom: 0; -} -.results-list > li > a:first-child:hover h4, -.results-list > li > a:first-child:hover span { - text-decoration: underline; -} -.results-list > li:not(:last-child) { - margin-bottom: 1.85714286em; - padding-bottom: 1.85714286em; - border-bottom: 1px solid rgba(0, 0, 0, 0.1); -} -@media all and (max-width: 767px) { - .list-inline:not(.social-list):not(.list-inline--images) { - display: block; - } - .list-inline:not(.social-list):not(.list-inline--images) li { - display: block; - margin: 0; - } - .list-inline:not(.social-list):not(.list-inline--images) li:not(:last-child) { - margin-bottom: 0.46428571em; - } -} -@media all and (max-width: 767px) { - .list-inline { - min-width: 100%; - } -} -.row--list span.h6 { - margin-bottom: 0; -} -.row--list span.h3:last-child { - margin-bottom: 0; -} -@media all and (max-width: 767px) { - .row--list > li { - margin-bottom: 0.92857143em; - } -} -/*! -- Stack Rules -- */ -hr:first-child { - margin-top: 0; -} -hr.short { - width: 2.78571429em; - border-color: #238b53; -} -hr[data-title] { - margin: 2.78571429em 0; - text-align: center; -} -hr[data-title]:before { - content: attr(data-title); - background: #ffffff; - position: relative; - bottom: 14px; - padding: 0.92857143em; - font-style: italic; -} -.bg--dark hr:not(.short), -.imagebg hr:not(.short), -.bg--primary hr:not(.short) { - opacity: .3; -} -/*! -- Stack Buttons -- */ -.btn { - position: relative; -} -.btn:not([class*='primary']) { - border-color: #d3d3d3; -} -.btn:not([class*='primary']):hover { - border-color: #252525; -} -.btn.type--uppercase { - letter-spacing: .5px; -} -.btn.type--uppercase .btn__text { - letter-spacing: .5px; - margin-right: -0.5px; -} -.btn .label { - top: -0.92857143em; - right: -3.71428571em; -} -.btn.btn--lg .btn__text { - font-weight: 600; -} -.btn.btn--lg.type--uppercase .btn__text { - letter-spacing: 1px; -} -.btn + p.type--fine-print, -.btn + span.type--fine-print { - margin-top: 1.08333333333334em; -} -.btn.block { - margin-left: 0; -} -.btn.block + .btn.block { - margin-top: 0.92857143em; -} -.btn:hover { - transform: translate3d(0, -2px, 0); - -webkit-transform: translate3d(0, -2px, 0); -} -.btn.btn--sm + .btn--sm { - margin-left: 0.92857143em; -} -p > .btn { - text-decoration: none; -} -@media all and (max-width: 767px) { - .btn:not(:last-child) { - margin-bottom: 1.85714286em; - } -} -.btn--icon { - padding-left: 5.57142857em; -} -.btn--icon i { - position: absolute; - height: 100%; - left: 0; - top: 0; - background: rgba(0, 0, 0, 0.1); - padding: 0 13px; - border-radius: 6px 0 0 6px; - font-size: 16px; - line-height: 41px; -} -.btn--icon i.socicon { - line-height: 42px; -} -.btn--cart { - width: 3.71428571em; - height: 3.71428571em; - border: 2px solid #252525; - display: block; - text-align: center; - border-radius: 6px; - opacity: .4; - padding: 0; -} -.btn--cart:hover { - opacity: 1; -} -.btn--cart .btn__text { - position: absolute; - width: 100%; - left: 0; - top: 50%; - transform: translateY(-50%); - font-size: 1.142857142857143em; -} -.imagebg:not(.image--light) .btn--icon:not([class*='bg']):not([class*='primary']) i { - color: #fff; - background: rgba(255, 255, 255, 0.2); -} -@media all and (min-width: 768px) { - .btn-group .btn { - margin-bottom: 0 !important; - margin-left: 0; - } - .btn-group .btn + .btn { - margin-left: 0; - } - .btn-group .btn:not(:first-child):not(:last-child) { - border-radius: 0; - } - .btn-group .btn:first-child { - border-radius: 6px 0 0 6px; - } - .btn-group .btn:last-child { - border-radius: 0 6px 6px 0; - } - .btn-group .btn:first-child:nth-last-child(2), - .btn-group .btn:last-child:nth-child(2) { - width: 50%; - } -} -.btn-group { - border: none; - padding: 0; -} -@media all and (max-width: 767px) { - .btn-group .btn { - display: block; - } -} -.bg--primary div:not([class*='feature']) .btn--primary { - background: #fff; - border-color: #fff; -} -.bg--primary div:not([class*='feature']) .btn--primary .btn__text { - color: #238b53; -} -.bg--primary > .btn--primary { - background: #fff; - border-color: #fff; -} -.bg--primary > .btn--primary .btn__text { - color: #238b53; -} -.bg--dark .btn:not(.btn--primary) { - border-color: #3f3f3f; -} -.bg--dark .btn:not(.btn--primary):hover { - border-color: #656565; -} -.bg--dark .btn .btn__text { - color: #fff; -} -.imagebg:not(.image--light) .btn:not([class*='primary']) { - border-color: rgba(255, 255, 255, 0.3); -} -.imagebg:not(.image--light) .btn:not([class*='primary']):hover { - border-color: #fff; -} -.imagebg.image--light .btn:not([class*='primary']) { - border-color: #252525; - background: rgba(255, 255, 255, 0.3); -} -.imagebg.image--light .btn:not([class*='primary']):hover { - background: rgba(255, 255, 255, 0.5); -} -h1 + .btn, -.h1 + .btn { - margin-top: 1.85714286em; -} -h2 + .btn, -.h2 + .btn { - margin-top: 0.92857143em; -} -/*! -- Stack Images -- */ -img:last-child { - margin-bottom: 0; -} -img.flag { - max-height: 1.85714286em; -} -img.image--sm:not(:last-child) { - margin-bottom: 0.92857143em; -} -img.promo.border--round { - border: 1px solid #ececec; -} -p.lead img { - max-height: 1.68421053em; -} -.imagebg h1, -.imagebg h2, -.imagebg h3, -.imagebg h4, -.imagebg h5, -.imagebg h6 { - position: relative; -} -.imagebg:not(.image--light) span { - color: #fff; -} -.imagebg.border--round { - overflow: hidden; -} -section.parallax .row .background-image-holder { - transform: none !important; - top: 0 !important; -} -.triptych.border--round img { - position: relative; - border-radius: 6px; - width: 33.333333%; - float: left; - margin: 0; -} -.triptych.border--round img:nth-child(2) { - transform: scale(1.2); - -webkit-transform: scale(1.2); - z-index: 2; - box-shadow: 0 23px 40px rgba(0, 0, 0, 0.2); -} -.gallery > div[class*='col-'] { - margin-bottom: 30px; -} -.gallery-1 { - overflow: hidden; - position: relative; -} -.gallery-1 .gallery__image:not(:last-child) { - margin-bottom: 30px; -} -.gallery-1 > div[class*='col-']:first-child > .gallery__image { - height: 800px; -} -.gallery-1 > div[class*='col-']:last-child > .gallery__image { - height: calc(385px); -} -.gallery__image { - position: relative; - overflow: hidden; -} -@media all and (max-width: 767px) { - .gallery-1 .gallery__image { - max-height: 300px; - margin-bottom: 15px; - } - .gallery-1 .gallery__image:not(:last-child) { - margin-bottom: 15px; - } -} -.section--ken-burns { - overflow: hidden; -} -.section--ken-burns > .background-image-holder, -.section--ken-burns > img:only-child { - animation: kenBurns 15s ease alternate infinite; - -webkit-animation: kenBurns 15s ease alternate infinite; -} -/*! -- Stack Titles -- */ -.breadcrumbs { - list-style: none; -} -.breadcrumbs li { - font-size: 0.85714285714286em; - display: inline-block; -} -.breadcrumbs li:not(:last-child) { - margin-right: 1.08333333333334em; -} -.breadcrumbs li:not(:last-child):after { - content: '\00bb'; - margin-left: 1.08333333333334em; -} -.breadcrumbs li a { - font-weight: normal; -} -.imagebg .breadcrumbs, -.bg--primary .breadcrumbs { - color: #fff; -} -.imagebg .breadcrumbs a, -.bg--primary .breadcrumbs a { - color: #fff; - font-weight: 600; -} -.elements-title { - border-top: none !important; -} -.elements-title + .tabs-container:not( :nth-last-child(2)), -.elements-title + section:not( :nth-last-child(2)) { - margin-bottom: 9.28571429em; -} -.elements-title + section:not(.imagebg):not([class*='bg-']):not(.unpad) { - padding-top: 1.85714286em; -} -/*! -- Stack Labels -- */ -.label { - display: inline-block; - font-size: 9px; - font-weight: 700; - letter-spacing: .5px; - color: #fff; - text-transform: uppercase; - height: 26px; - min-width: 65px; - padding: 0 10px; - text-align: center; - border-radius: 50px; - position: absolute; - z-index: 3; - top: 1.23809524em; - right: 1.23809524em; -} -.label:not([class*='bg--']) { - background: #282729; -} -.label.label--inline { - position: relative; - top: 0; - right: 0; -} -.label.label--inline:not(:last-child) { - margin-right: 0.92857143em; -} -.label.label--inline + span, -.label.label--inline + p { - position: relative; - top: 1px; -} -.label.switchable-toggle { - left: 50%; - right: auto; - transform: translate3d(-50%, 0, 0); - -webkit-transform: translate3d(-50%, 0, 0); - box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.06); -} -.bg--primary-1 .label:not([class*='bg--']) { - background: #669e4b; -} -/*! -- Stack Bars -- */ -.menu-horizontal > li, -.menu-vertical > li { - font-family: 'Open Sans', 'Roboto', 'Helvetica', Sans-Serif; -} -.bar .logo { - max-height: 1.85714286em; - max-width: none; -} -.menu-horizontal > li > a, -.menu-horizontal > li > .modal-instance > a { - font-weight: 500; -} -.menu-horizontal > li a:hover { - text-decoration: none; -} -.hamburger-toggle i { - color: #252525; -} -@media all and (min-width: 990px) { - .menu-horizontal li:not(:last-child) { - margin-right: 1.23809524em; - } - .bar__module:not(:only-child) .menu-horizontal { - top: 0; - } -} -@media all and (min-width: 768px) and (max-width: 1023px) { - .bar-2 .menu-horizontal > li, - .bar-1 .menu-horizontal > li { - display: inline-block; - } - .bar-2 .menu-horizontal > li:not(:first-child), - .bar-1 .menu-horizontal > li:not(:first-child) { - margin-left: 0.92857143em; - } - .bar-2 .bar__module, - .bar-1 .bar__module { - margin-bottom: 1.85714286em; - } - .bar-2 .row div[class*='col-']:last-child .bar__module:last-child, - .bar-1 .row div[class*='col-']:last-child .bar__module:last-child { - margin-bottom: 0; - } -} -.bar-1 .menu-horizontal > li > .dropdown__trigger, -.bar-1 .menu-horizontal > li > a { - font-size: 0.857142857142857em; - line-height: 2.166666666666667em; - text-transform: uppercase; - font-weight: 600; - letter-spacing: .5px; -} -@media all and (min-width: 1024px) { - .bar-1 .bar__module + .bar__module { - margin-left: 1.85714286em; - } -} -@media all and (min-width: 991px) { - .bar-2 .logo { - position: absolute; - left: 50%; - transform: translateX(-50%); - } -} -.bar-3 { - font-size: 0.85714286em; -} -.bar-3 .menu-horizontal { - top: 0; -} -@media all and (max-width: 990px) { - .bar-3 .menu-horizontal li { - display: inline-block; - } - .bar-3 .menu-horizontal li:not(:last-child) { - margin-right: 0.92857143em; - } -} -@media all and (min-width: 990px) { - .bar-toggle .col-md-1 .logo { - top: 10px; - } -} -@media all and (max-width: 767px) { - .bar-4 .logo-light { - display: none; - } - .bar-4 .logo-dark { - margin-bottom: 1.85714286em; - } - .bar.bg--dark { - background: #252525; - } - .bar.bg--dark .hamburger-toggle i { - color: #fff; - } -} -/*! -- Stack Alerts -- */ -.alert { - border-radius: 6px; -} -.alert:not(:last-child) { - margin-bottom: 1.85714286em; -} -.alert .alert__close { - font-size: 1.35714286em; -} -/*! -- Stack Menu Toggle -- */ -.menu-toggle { - box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); - box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.04); - width: 3.71428571em; - height: 3.71428571em; - border-radius: 50%; - text-align: center; - background: #fff; - display: inline-block; - transition: 0.2s ease; - -webkit-transition: 0.2s ease; - -moz-transition: 0.2s ease; -} -.menu-toggle i { - font-size: 1.78571429em; - position: relative; - top: 13px; - color: #252525; -} -.menu-toggle:hover { - box-shadow: 0 23px 40px rgba(0, 0, 0, 0.2); - transform: translate3d(0, -2px, 0); - -webkit-transform: translate3d(0, -2px, 0); -} -/*! -- Stack Nav Utility -- */ -.nav-utility { - padding: 0.92857143em 0; -} -.nav-utility .nav-utility__module { - font-size: 0.85714285714286em; -} -.nav-utility .nav-utility__module a { - color: #666666; - font-weight: normal; -} -.nav-utility .nav-utility__module a i { - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; - display: inline-block; -} -.nav-utility .nav-utility__module a:hover i { - transform: scale(1.5); - -webkit-transform: scale(1.5); -} -.nav-utility .nav-utility__module.right:not(:last-child) { - margin-left: 2.16666666666667em; -} -.utility-toggle { - display: inline-block; - cursor: pointer; - width: 3px; - height: 3px; - position: relative; - bottom: 8px; - border-radius: 50%; - background: #252525; -} -.utility-toggle:before, -.utility-toggle:after { - content: ''; - width: 3px; - height: 3px; - border-radius: 50%; - position: absolute; - background: #252525; -} -.utility-toggle:before { - top: 6px; -} -.utility-toggle:after { - top: 12px; -} -/*! -- Stack Nav Stacked -- */ -.bar-stacked .logo { - margin-bottom: 3.71428571em; -} -/*! -- Stack Nav Side Menu -- */ -.notification.side-menu { - z-index: 9999; - background: #ffffff; - padding-top: 1.85714286em; - margin: 0; - height: 100%; - box-shadow: 0 23px 40px rgba(0, 0, 0, 0.2); - width: 27.85714286em; -} -.notification.side-menu .side-menu__module { - overflow: hidden; - padding: 2.78571429em; -} -.notification.side-menu .side-menu__module + hr:not(:last-child) { - margin: 0; -} -.notification.side-menu .menu-vertical li a { - font-size: 1.35714286em; - line-height: 1.36842105em; -} -.notification.side-menu .menu-vertical li a:hover { - text-decoration: none; -} -.notification.side-menu .btn:not(:last-child) { - margin-bottom: 1.85714286em; -} -.notification.side-menu .btn + ul.list--loose { - margin-top: 0.92857143em; -} -.notification.side-menu .notification-close-cross { - top: 0.92857143em; - right: 2.78571429em; - margin-top: 8px; -} -.notification.side-menu .social-list:not(:first-child) { - margin-top: 1.85714286em; -} -.menu-toggle.pos-fixed { - position: fixed; - right: 5.57142857em; - animation: fadeInDown .3s ease forwards; -} -@media all and (min-width: 768px) { - .side-menu .side-menu__module span.type--fine-print { - position: relative; - top: 8px; - } -} -@media all and (max-width: 767px) { - .side-menu { - width: 100%; - } - .side-menu .side-menu__module .float-right, - .side-menu .side-menu__module .float-left { - display: block; - } -} -/*! -- Stack Nav Sidebar Column -- */ -.nav-container.nav-container--sidebar + .main-container { - width: calc(100vw - 20.428571428571463em); - float: right; -} -.nav-container.nav-container--sidebar + .main-container .container { - max-width: 100%; -} -.nav-sidebar-column { - position: fixed; - z-index: 3; - left: 0; - width: 20.42857143em; - border-right: 1px solid #ececec; - height: 100vh; - overflow-y: scroll; - -ms-overflow-style: none; - padding: 2.78571429em 1.85714286em; -} -.nav-sidebar-column:not([class*='bg-']) { - background: #ffffff; -} -.nav-sidebar-column.bg--dark { - border-right: 1px solid #3f3f3f; -} -.nav-sidebar-column::-webkit-scrollbar { - display: none; -} -.nav-sidebar-column .logo { - max-height: 2.32142857em; - margin-bottom: 0.92857143em; -} -.nav-sidebar-column .text-block > p { - margin-bottom: 0.92857143em; -} -.nav-sidebar-column .menu-vertical li.dropdown:not(:hover):after { - opacity: .35; -} -.nav-sidebar-column .menu-vertical a:hover { - text-decoration: none; -} -.nav-sidebar-column .dropdown .dropdown__container, -.nav-sidebar-column .dropdown .dropdown__content { - left: 0 !important; - position: relative; - pointer-events: all; -} -.nav-sidebar-column .dropdown .dropdown__container:before { - height: 0; -} -.nav-sidebar-column .dropdown .dropdown__content { - transform: none !important; - box-shadow: none; - -webkit-box-shadow: none; - padding-top: 0.46428571em; - padding-right: 0; - padding-left: 0.46428571em; - background: none !important; -} -.nav-sidebar-column .dropdown .menu-vertical li.dropdown:after { - right: 1.85714286em; -} -.nav-sidebar-column .dropdown:not(.dropdown--active) .dropdown__container { - display: none; -} -.nav-sidebar-column .dropdown.dropdown--hover:hover > .dropdown__container { - display: block; -} -.nav-sidebar-column .social-list { - margin-bottom: 0.92857143em; -} -body.dropdowns--hover .nav-sidebar-column .dropdown:hover > .dropdown__container { - display: block; -} -.nav-sidebar-column-toggle { - transition: all .3s ease; - left: 0; - width: 3.71428571em; - height: 3.71428571em; - background: #ffffff; - text-align: center; - position: fixed; - z-index: 4; - cursor: pointer; - border-radius: 0 0 6px 0; - box-shadow: 2px 1px 4px rgba(0, 0, 0, 0.1); -} -.nav-sidebar-column-toggle > i { - transition: all .3s ease; - font-size: 1.78571429em; - position: relative; - top: 11px; -} -.nav-sidebar-column-toggle:not(.toggled-class) > i { - opacity: .5; -} -.nav-sidebar-column-toggle.toggled-class i:before { - content: '\e80b'; -} -@media all and (max-width: 990px) { - .nav-sidebar-column { - transition: all .3s ease; - left: -20.42857143em; - box-shadow: 2px 0px 4px rgba(0, 0, 0, 0); - } - .nav-sidebar-column.active { - left: 0; - box-shadow: 2px 0px 4px rgba(0, 0, 0, 0.1); - } - .nav-sidebar-column-toggle.toggled-class { - left: 20.42857143em; - } - .nav-container.nav-container--sidebar + .main-container { - width: 100%; - float: none; - } -} -.nav-container.nav-container--right .nav-sidebar-column { - right: 0; - left: auto; -} -.nav-container.nav-container--right + .main-container { - float: left; -} -.nav-container.nav-container--right .nav-sidebar-column-toggle { - left: auto; - right: 0; - border-radius: 0 0 0 6px; - box-shadow: -2px 1px 4px rgba(0, 0, 0, 0.1); -} -@media all and (max-width: 990px) { - .nav-container.nav-container--right .nav-sidebar-column { - right: -20.42857143em; - left: auto; - } - .nav-container.nav-container--right .nav-sidebar-column.active { - left: auto; - right: 0; - box-shadow: -2px 0px 4px rgba(0, 0, 0, 0.1); - } - .nav-container.nav-container--right .nav-sidebar-column-toggle.toggled-class { - left: auto; - right: 20.42857143em; - } -} -/*! -- Stack Nav Fullscreen -- */ -.menu-fullscreen { - color: #fff; -} -.menu-fullscreen .pos-absolute { - width: 100%; -} -.menu-fullscreen a { - color: #fff; -} -.menu-fullscreen a:hover { - text-decoration: none; -} -.menu-fullscreen .social-list { - margin-right: 0; -} -.menu-fullscreen:before { - background: rgba(0, 0, 0, 0.9); -} -.menu-fullscreen .modal-content .modal-close-cross { - right: 3.71428571em; - top: 1em; -} -@media all and (max-width: 767px) { - .menu-fullscreen .pos-bottom { - position: relative; - } -} -/*! -- Stack Dropdowns -- */ -.dropdown > .dropdown__trigger:after { - font-family: "stack-interface"; - display: inline-block; - font-size: 8px; - position: relative; - bottom: 2px; -} -.dropdown > .dropdown__trigger .image--xxs { - margin-right: 0.46428571em; -} -.dropdown .dropdown__content { - border-radius: 6px; - box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.08); - -webkit-box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.08); - padding: 1.23809524em 1.85714286em; -} -.dropdown .dropdown__content h5:not(:last-child) { - margin-bottom: 0.92857143em; -} -.dropdown .dropdown__content .background-image-holder { - border-radius: 6px 0 0 6px; -} -.dropdown .dropdown__content > .pos-absolute[class*='col-'] { - left: 0; - top: 0; - height: 100%; - position: absolute !important; -} -.dropdown .dropdown__content > .pos-absolute[class*='col-'][data-overlay]:before { - border-radius: 6px 0 0 6px; -} -.menu-horizontal > .dropdown > .dropdown__trigger:after { - content: '\e80a'; - margin-left: 4px; -} -.menu-vertical > .dropdown > .dropdown__trigger { - display: inline-block; - width: 100%; -} -@media all and (max-width: 767px) { - .dropdown [class*='col-'] + [class*='col-'] { - margin-top: 0.92857143em; - } - .dropdown .dropdown__content:not([class*='bg-']) { - border: none; - box-shadow: none; - } -} -@media all and (max-width: 767px) { - .dropdown__container { - left: 0 !important; - } -} -.menu-vertical li { - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; -} -.menu-vertical li:not(:hover):not(.dropdown--active) { - opacity: .75; -} -.menu-vertical li:not(:last-child) { - margin-bottom: 0.30952381em; -} -.menu-vertical li.dropdown { - position: relative; -} -.menu-vertical li.dropdown:after { - content: '\e80c'; - font-family: 'stack-interface'; - right: 0; - top: 0; - position: absolute; - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; - display: inline-block; - transform: translate3d(-10px, 0, 0); - -webkit-transform: translate3d(-10px, 0, 0); -} -.menu-vertical li.dropdown:hover:after { - transform: translate3d(-5px, 0, 0); - -webkit-transform: translate3d(-5px, 0, 0); -} -.menu-vertical li.separate { - border-top: 1px solid #e6e6e6; - margin-top: 0.92857143em; - padding-top: 0.92857143em; -} -.menu-vertical li.separate.dropdown:after { - top: .92857143em; -} -.menu-vertical + h5 { - margin-top: 1.85714286em; -} -@media all and (max-width: 990px) { - .menu-vertical .dropdown.dropdown--active:after { - opacity: 0; - } -} -@media all and (min-width: 991px) { - .dropdown .dropdown__container:before { - height: 18px; - } -} -/*! -- Stack Twitter Feeds -- */ -.tweets-feed .interact { - display: none; -} -.tweets-feed .user a:hover { - text-decoration: none; -} -.tweets-feed .user img { - border-radius: 50%; -} -.tweets-feed-1 { - border-radius: 6px; - border: 1px solid #ececec; - overflow: hidden; -} -.tweets-feed-1 li { - overflow: hidden; - padding: 1.85714286em; - padding-bottom: 0; -} -.tweets-feed-1 li:not(:last-child) { - border-bottom: 1px solid #ececec; -} -.tweets-feed-1 .user { - width: 20%; - float: left; - margin-bottom: 0.92857143em; -} -.tweets-feed-1 .user img { - max-height: 3.71428571em; - margin-right: 0.46428571em; -} -.tweets-feed-1 .user [data-scribe="element:name"], -.tweets-feed-1 .user [data-scribe="element:screen_name"] { - display: none; -} -.tweets-feed-1 .tweet, -.tweets-feed-1 .timePosted { - width: 80%; - float: right; -} -.tweets-feed-1 .tweet { - margin-bottom: 0.46428571em; -} -.tweets-feed-1 .timePosted { - font-size: 0.85714286em; - line-height: 2.16666667em; -} -.tweets-feed-1:not(:last-child) + .btn { - margin-top: 2.78571429em; -} -.imagebg .tweets-feed-1, -.bg--dark .tweets-feed-1 { - border-color: rgba(255, 255, 255, 0.1); -} -.imagebg .tweets-feed-1 li:not(:last-child), -.bg--dark .tweets-feed-1 li:not(:last-child) { - border-color: rgba(255, 255, 255, 0.1); -} -.tweets-feed-2 .user { - display: none; -} -.tweets-feed-2 .timePosted { - display: none; -} -.tweets-feed-2 li { - overflow: hidden; -} -.tweets-feed-2 li:before { - font-family: 'socicon'; - content: "\e08d"; -} -.tweets-feed-2 li .tweet { - width: 85%; - float: right; -} -.tweets-feed.slider .user img { - display: inline-block; - clear: both; - margin-bottom: 0.92857143em; -} -.tweets-feed.slider .user [data-scribe="element:name"] { - display: none; -} -.tweets-feed.slider .user [data-scribe="element:screen_name"] { - display: block; - font-size: 1.35714286em; - line-height: 1.36842105em; - font-weight: normal; -} -.tweets-feed.slider .tweet { - margin-top: 1.36842105263158em; - margin-bottom: 0.68421052631579em; - font-size: 1.35714286em; - line-height: 1.36842105em; -} -.tweets-feed.slider .timePosted { - margin: 0; -} -.tweets-feed.slider:not(:last-child) + .btn { - margin-top: 2.78571429em; -} -/*! -- Stack Instagram -- */ -.instafeed a { - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; -} -.instafeed a:hover { - opacity: .75; -} -.instafeed:not(.instafeed--gapless) li { - padding: 0.46428571em; -} -.instafeed.instafeed--gapless li { - margin-bottom: -1px; -} -.instafeed + .btn { - margin-top: 2.78571429em; -} -.instafeed[data-grid="1"][data-amount="8"] li { - display: inline-block; - width: 12.5%; -} -.instagram { - position: relative; -} -.instagram.unpad .btn { - position: absolute; - z-index: 2; - top: 50%; - transform: translate3d(-50%, -50%, 0); - -webkit-transform: translate3d(-50%, -50%, 0); - margin: 0; -} -/*! -- Stack Cards -- */ -.card__top { - position: relative; - overflow: hidden; -} -.card__action a { - color: #666666; - text-decoration: none; - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; -} -.card__action a i { - color: #252525; - font-size: 1em; -} -.card__action a span { - position: relative; - bottom: 2px; -} -.card__action a:not(:hover) { - opacity: .5; -} -.card p a { - text-decoration: none; -} -.masonry__item .card.boxed { - margin-bottom: 0; -} -.card-1 .card__avatar { - margin-bottom: 0.92857143em; -} -.card-1 .card__avatar img { - max-height: 2.78571429em; - margin-right: 0.46428571em; - margin-bottom: 0; -} -.card-1 .card__avatar, -.card-1 .card__meta { - display: inline-block; -} -.card-1 .card__meta { - float: right; -} -.card-1 .card__body { - border-bottom: 1px solid #ececec; - padding-bottom: 0.92857143em; - margin-bottom: 0.92857143em; -} -.card-1 .card__body img { - margin-bottom: 0.92857143em; -} -.card-1 .card__body h4 { - margin-bottom: 0.342105263157895em; -} -.bg--dark .card-1 .card__body { - border-color: #3f3f3f; -} -@media all and (max-width: 767px) { - .card .list-inline:not(.social-list) li { - display: inline-block; - } - .card .list-inline:not(.social-list) li:not(:first-child) { - margin-left: 0.92857143em; - } -} -.card-2 .card__top img { - border-radius: 6px 6px 0 0; -} -.card-2 .card__body { - border-bottom: 1px solid #ececec; - padding-bottom: 1.85714286em; -} -.card-2 .card__body h4 { - margin: 0; -} -.card-2 .card__body p { - margin-top: 0.92857143em; -} -.card-2 .card__bottom { - overflow: hidden; -} -.card-2 .card__bottom > div { - display: inline-block; - width: 50%; - float: left; -} -.card-2 .card__bottom .h6 { - margin-bottom: 0.541666666666667em; -} -.card-2 .card__body, -.card-2 .card__bottom { - padding: 1.85714286em; - border: 1px solid #ececec; -} -.card-2 .card__body { - border-bottom: none; - border-top: none; -} -.card-2 .card__bottom { - border-radius: 0 0 6px 6px; - padding: 0.92857143em 1.85714286em; -} -.card-2 .card__action i { - font-size: 1.78571429em; -} -.bg--dark .card-2 .card__body, -.bg--dark .card-2 .card__bottom { - border-color: #3f3f3f; -} -/*! -- Stack Checkmarks & Crosses -- */ -.checkmark { - display: inline-block; - position: relative; - width: 1.23809524em; - height: 1.23809524em; - border-radius: 50%; - text-align: center; -} -.checkmark:not([class*='bg-']) { - background: #238b53; -} -.checkmark:before { - content: '\2713'; - color: #fff; - font-size: 11px; - position: absolute; - width: 100%; - left: 0; - top: -4px; -} -.checkmark.checkmark--cross:before { - content: '\2717'; -} -.checkmark:not(:last-child) { - margin-right: 13px; -} -/*! -- Stack Icons -- */ -.icon:not(.block) { - display: inline-block; -} -.icon.icon--xs { - font-size: 1.14285714285714em; -} -.text-block .icon + h4 { - margin-top: 0.6842105263158em; -} -.imagebg .icon { - color: #fff; -} -p .material-icons { - font-size: 1em; -} -p .material-icons:first-child { - margin-right: 0.30952381em; -} -.material-icons { - font-family: 'Material Icons' !important; -} -.icon-circle { - position: relative; - display: inline-block; - width: 3.71428571em; - height: 3.71428571em; - border-radius: 50%; - border: 1px solid #ececec; - background: #fafafa; - text-align: center; -} -.icon-circle i { - font-size: 24px; - position: absolute; - top: 50%; - transform: translateY(-50%); - width: 100%; - left: 0; -} -/*! -- Stack Tooltips -- */ -.tooltip { - position: relative; - top: 3px; - display: inline-block; - width: 1.23809524em; - height: 1.23809524em; - border-radius: 50%; - background: #252525; - text-align: center; - cursor: pointer; -} -.tooltip .tooltip__anchor { - color: #fff; - font-weight: 700; - font-size: 11px; - position: absolute; - top: -5px; - left: 6px; -} -.tooltip .tooltip__text { - transition: 0.2s ease; - -webkit-transition: 0.2s ease; - -moz-transition: 0.2s ease; - text-align: left; - z-index: 10; - position: absolute; - width: 280px; - background: #fafafa; - border: 1px solid #ececec; - padding: 0.61904762em; - left: 1.48571429em; - top: -0.92857143em; - opacity: 0; - pointer-events: none; - cursor: default; - box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); - box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.04); - line-height: 20px; -} -.tooltip:hover .tooltip__text { - opacity: 1; -} -.tooltip:last-child { - margin-left: 0.92857143em; -} -[data-tooltip] { - position: relative; - overflow: visible; -} -[data-tooltip]:after { - transition: all .2s ease; - content: attr(data-tooltip); - position: absolute; - top: -24px; - left: 50%; - transform: translateX(-50%); - background: #252525; - color: #fff; - border: 1px solid #e7e7e7; - padding: 2px 12px; - pointer-events: none; - white-space: nowrap; - font-size: 11px; - line-height: 18px; - font-weight: 600; - border-radius: 2px; - z-index: 2; - font-family: 'Open Sans'; -} -[data-tooltip]:not(:hover):after { - opacity: 0; -} -/*! -- Stack Boxes -- */ -.boxed { - border-radius: 6px; -} -.boxed .background-image-holder { - border-radius: 6px; -} -.boxed:before { - border-radius: 6px; -} -.boxed:not(:last-child) { - margin-bottom: 30px; -} -.boxed:not([class*='bg-']) { - background: #ffffff; -} -.boxed.bg--secondary .boxed { - background: #fafafa; -} -@media all and (min-width: 768px) { - .switchable .imagebg .boxed { - padding-left: 5.57142857em; - } -} -.bg--dark .boxed:not([class*='bg-']), -.imagebg:not(.image--light) .boxed:not([class*='bg-']) { - background: none; - color: #fff; -} -.bg--dark .boxed:not([class*='bg-']).boxed--border, -.imagebg:not(.image--light) .boxed:not([class*='bg-']).boxed--border { - border-color: #3f3f3f; -} -.bg--dark .boxed[class*='bg-'].boxed--border, -.imagebg:not(.image--light) .boxed[class*='bg-'].boxed--border { - border: none; -} -.imagebg:not(.image--light) .boxed:not(.bg--white):not(.bg--none) { - background: rgba(20, 20, 20, 0.3); -} -.imagebg:not(.image--light) .boxed:not(.bg--white):not(.bg--none).boxed--border { - border: none; -} -.imagebg:not(.image--light) .boxed:not(.bg--white):not(.bg--none) .boxed { - background: none; -} -.bg--primary .boxed:not(.imagebg) { - color: #666666; -} -.bg--primary .boxed:not(.imagebg) p { - color: #666666; -} -.bg--primary .boxed:not(.imagebg) h1, -.bg--primary .boxed:not(.imagebg) h2, -.bg--primary .boxed:not(.imagebg) h3, -.bg--primary .boxed:not(.imagebg) h4, -.bg--primary .boxed:not(.imagebg) h5, -.bg--primary .boxed:not(.imagebg) h6, -.bg--primary .boxed:not(.imagebg) .h1, -.bg--primary .boxed:not(.imagebg) .h2, -.bg--primary .boxed:not(.imagebg) .h3, -.bg--primary .boxed:not(.imagebg) .h4, -.bg--primary .boxed:not(.imagebg) .h5, -.bg--primary .boxed:not(.imagebg) .h6, -.bg--primary .boxed:not(.imagebg) i { - color: #252525; -} -.bg--primary .boxed:not(.imagebg) a { - color: #238b53; -} -.bg--primary .boxed:not(.imagebg) .color--primary { - color: #238b53 !important; -} -@media all and (min-width: 768px) { - .boxed.boxed--emphasis { - transform: scale(1.075); - -webkit-transform: scale(1.075); - } -} -/*! -- Stack Features Small -- */ -.feature:not(.boxed) { - margin-bottom: 60px; -} -.feature.feature--featured:after { - content: ''; - position: absolute; - bottom: 0; - width: 100%; - height: 4px; - background: #238b53; - left: 0; -} -.feature h5 { - margin: 0; -} -.feature h4 { - margin-bottom: 0.342105263157895em; -} -.feature h4 + p { - max-width: 22.28571429em; -} -.feature i + h5 { - margin-top: 1.85714286em; -} -.feature i + h4 { - margin-top: 0.68421052631579em; -} -.feature i.icon--lg + h4 { - margin-top: 1.36842105263158em; -} -.feature i.icon--lg + .h5 { - margin-top: 0.92857143em; -} -.feature img + .boxed { - border-radius: 0 0 6px 6px; - border-top: none; -} -.imagebg:not(.image--light) .feature.bg--white a:not(.btn) { - color: #238b53; -} -.imagebg:not(.image--light) .feature.bg--white .label { - color: #fff; -} -@media all and (max-width: 767px) { - .feature .feature__body form .row { - margin-left: 0; - margin-right: 0; - } -} -section.text-center .feature-6 h4 + p { - margin: 0 auto; -} -@media all and (min-width: 768px) { - .row div[class*='col-']:nth-child(1):nth-last-child(3) .feature, - .row div[class*='col-']:nth-child(2):nth-last-child(2) .feature, - .row div[class*='col-']:nth-child(3):last-child .feature { - margin-bottom: 0; - } -} -a.block > .feature { - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; -} -a.block:hover > .feature { - box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); - box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.04); -} -.feature-1 { - min-height: 11.14285714em; -} -.feature-1 p { - margin: 0; -} -.feature-1 p.lead { - min-height: 5.05263157894737em; -} -.feature-1 > img:first-child { - border-radius: 6px 6px 0 0; -} -.feature-1 > a.block img { - border-radius: 6px 6px 0 0; -} -.feature-1 > a.block + .feature__body { - border-radius: 0 0 6px 6px; -} -.feature-1[class*='box-shadow'] { - border-radius: 6px; - transition: 0.35s ease-out; - -webkit-transition: 0.35s ease-out; - -moz-transition: 0.35s ease-out; -} -.feature-1[class*='box-shadow']:hover { - transform: translate3d(0, -10px, 0); - -webkit-transform: translate3d(0, -10px, 0); - box-shadow: 0 23px 40px rgba(0, 0, 0, 0.2); -} -.hover-shadow { - border-radius: 6px; - backface-visibility: hidden; - overflow: hidden; - border: 1px solid #ececec; - transition: 0.35s ease-out; - -webkit-transition: 0.35s ease-out; - -moz-transition: 0.35s ease-out; -} -.hover-shadow:hover { - transform: translate3d(0, -10px, 0); - -webkit-transform: translate3d(0, -10px, 0); - box-shadow: 0 23px 40px rgba(0, 0, 0, 0.2); -} -.bg--dark .hover-shadow { - border-color: #222; -} -.bg--dark .hover-shadow:hover { - box-shadow: 0 23px 40px #000000; -} -.feature-2 { - overflow: hidden; -} -.feature-2 .feature__body { - width: 75%; - float: right; -} -.feature-2 h5 { - margin-bottom: 0.46428571em; -} -.feature-2 p:last-child { - margin: 0; -} -.feature-2 i { - width: 25%; - float: left; -} -.feature-large .feature-2 + .feature-2:last-child { - margin-bottom: 0; -} -@media all and (max-width: 990px) { - .feature-2 .feature__body, - .feature-2 i { - width: 100%; - float: none; - } - .feature-2 p:first-of-type { - margin-top: 0.92857143em; - } -} -.feature-3 i { - margin-bottom: 0.16666666666667em; -} -.feature-3 p { - min-height: 7.42857143em; -} -.feature-4 .btn { - position: absolute; - width: 100%; - bottom: 0; - left: 0; - border-radius: 0; - padding: 0.92857143em; -} -.feature-4 .btn:hover { - transform: none; -} -.feature-4 p { - min-height: 9.28571429em; -} -.feature-4 p:last-of-type { - margin-bottom: 3.71428571em; -} -.feature-5 i { - width: 25%; - float: left; -} -.feature-5 .feature__body { - width: 75%; - float: right; -} -.feature-5 p { - min-height: 5.57142857em; -} -.feature-5 p:last-of-type { - margin-bottom: 0.92857143em; -} -.feature-5:not([class*='bg-']) { - color: #252525; -} -.feature-6 p { - min-height: 9.28571429em; -} -.feature-6 p:last-child { - margin: 0; -} -.feature-7 { - height: 13em; - margin-bottom: 30px; -} -.feature-7[data-overlay]:before { - border-radius: 6px; - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; -} -.feature-7[data-overlay]:hover:before { - opacity: .75; -} -.feature-7 .background-image-holder { - border-radius: 6px; -} -.feature-7 h3 { - margin: 0; -} -.row--gapless .feature-7 { - margin: 0; - border-radius: 0; -} -.row--gapless .feature-7 .background-image-holder { - border-radius: 0; -} -.row--gapless .feature-7:before { - border-radius: 0; -} -@media all and (max-width: 767px) { - .feature-7 .pos-vertical-center { - top: 50%; - transform: translate3d(0, -50%, 0); - -webkit-transform: translate3d(0, -50%, 0); - } -} -.feature-8 { - padding: 2.78571429em 0 3.71428571em 0; -} -.feature-8:not(.boxed) { - margin-bottom: 0; -} -.feature-8 .feature__body { - max-width: 70%; - margin: 0 auto; -} -.feature-8 p { - min-height: 5.57142857em; -} -@media all and (max-width: 990px) { - .feature-8 .feature__body { - max-width: 85%; - } -} -@media all and (max-width: 767px) { - .feature p { - min-height: auto; - margin-left: auto; - margin-right: auto; - } - .feature.boxed { - margin-bottom: 15px; - } - .feature:not(.boxed) { - margin-bottom: 30px; - } - .feature.feature-8 { - margin-bottom: 0; - } -} -.feature-8 img { - max-height: 14.85714286em; -} -.feature-9 h4 { - margin: 0; -} -.feature-9:not(.boxed) { - margin-bottom: 30px; -} -@media all and (min-width: 768px) { - .features-small-14 .text-block { - margin-bottom: 3.71428571em; - } - .features-small-14 h4 { - min-height: 2.736842105263158em; - } -} -/*! -- Stack Features Large -- */ -@media all and (min-width: 768px) { - .staggered div[class*='col-']:nth-child(2):last-child { - margin-top: 13em; - } - .staggered div[class*='col-']:nth-child(2):last-child:not(:last-child) { - margin-bottom: 9.28571429em; - } - .staggered div[class*='col-'] .feature:not(:last-child) { - margin-bottom: 9.28571429em; - } -} -.feature-large h4:first-child { - margin-bottom: 0.68421052631579em; -} -.feature-large .feature:not(.boxed) { - margin-bottom: 30px; -} -.feature-large .feature-3.text-center p { - margin: 0 auto; -} -.feature-large .lead + .feature-large__group { - margin-top: 3.71428571em; -} -.feature-large .feature-large__group { - overflow: hidden; -} -.feature-large-1 .lead { - margin-bottom: 2.73684210526316em; -} -@media all and (min-width: 768px) { - .feature-large-2 div[class*='col-']:first-child { - margin-top: 5.57142857em; - } - .feature-large-2 div[class*='col-']:last-child { - margin-top: 7.42857143em; - } -} -@media all and (max-width: 767px) { - .feature-large-2 img { - margin: 1.85714286em 0; - } -} -.feature-large-7.switchable .boxed div[class*='col-']:only-child { - float: none; -} -.feature-large-13 p.lead + .text-block { - margin-top: 3.71428571em; -} -.feature-large-13 div[class*='col-'] .text-block + .text-block { - margin-top: 2.78571429em; -} -@media all and (min-width: 1200px) { - .feature-large-13:not(.text-center) .text-block p { - max-width: 26em; - } -} -.feature-large-14 h5 { - margin-bottom: 0.46428571em; -} -.feature-large-14 .boxed { - margin-bottom: 0; -} -.feature-large-14 .boxed.boxed--border img { - border-radius: 6px; -} -@media all and (min-width: 768px) { - .feature-large-14.switchable .switchable__text { - margin-top: 5.57142857em; - } -} -/*! -- Stack Accordions -- */ -.accordion .accordion__title { - transition: 0.5s ease; - -webkit-transition: 0.5s ease; - -moz-transition: 0.5s ease; - opacity: .5; - margin-bottom: 0.92857143em; -} -.accordion .accordion__title:hover { - opacity: 1; -} -.accordion .accordion__title:before { - font-family: "stack-interface"; - content: '\e80d'; - margin-right: 6px; - color: #252525; -} -.accordion .accordion__title span { - display: inline-block; -} -.accordion li.active { - margin-bottom: 0.92857143em; -} -.accordion li.active .accordion__title { - opacity: 1; -} -.accordion li.active .accordion__title:before { - content: '\e80a'; -} -.accordion li.active .accordion__content { - animation: fadeUp .5s ease forwards; - -webkit-animation: fadeUp .5s ease forwards; -} -.accordion-1 li.active .accordion__title { - border-color: #238b53; -} -.accordion-1 li.active .accordion__title span { - color: #fff; -} -.accordion-1 li.active .accordion__title:before { - color: #fff; -} -.accordion-1 li .accordion__title { - border-radius: 6px; - border-bottom: 1px solid #ECECEC; -} -.accordion-2 li .accordion__title { - border-left: none; - border-right: none; - border-top: none; - border-bottom: 1px solid #ECECEC; - padding-left: 0; -} -.accordion-2 li.active .accordion__title { - background: none; - border-bottom: 1px solid rgba(0, 0, 0, 0); -} -.bg--dark .accordion-2 li .accordion__title, -.imagebg:not(.image--light) .accordion-2 li .accordion__title, -.bg--primary .accordion-2 li .accordion__title, -.bg--dark .accordion-1 li .accordion__title, -.imagebg:not(.image--light) .accordion-1 li .accordion__title, -.bg--primary .accordion-1 li .accordion__title { - border-color: #4b4b4b; -} -.bg--dark .accordion-2 li .accordion__title:before, -.imagebg:not(.image--light) .accordion-2 li .accordion__title:before, -.bg--primary .accordion-2 li .accordion__title:before, -.bg--dark .accordion-1 li .accordion__title:before, -.imagebg:not(.image--light) .accordion-1 li .accordion__title:before, -.bg--primary .accordion-1 li .accordion__title:before { - color: #fff; -} -.imagebg:not(.image--light) .accordion li .accordion__title, -.bg--primary .accordion li .accordion__title { - border-color: rgba(255, 255, 255, 0.3); -} -/*! -- Stack Tabs -- */ -.tabs-container.tabs--vertical { - overflow: hidden; -} -.tabs-container.tabs--vertical .tabs { - width: 25%; - float: left; -} -.tabs-container.tabs--vertical .tabs li { - display: block; -} -.tabs-container.tabs--vertical .tabs li:not(:last-child) { - border-right: none; - border-bottom: 1px solid #ECECEC; -} -.tabs-container.tabs--vertical .tabs-content { - width: 70%; - float: right; - margin-top: 0; -} -.tabs-container.tabs--vertical .tabs-content > li:not(.active) .tab__content { - animation: fadeOutUp .5s ease forwards; - -webkit-animation: fadeOutUp .5s ease forwards; -} -.tabs-container.tabs--vertical .tabs-content > li.active .tab__content { - animation: fadeInUp .5s ease forwards; - -webkit-animation: fadeInUp .5s ease forwards; - backface-visibility: hidden; -} -.tabs-container.tabs--vertical.tabs--icons .tabs { - width: 15%; - text-align: center; -} -.tabs-container.tabs--vertical.tabs--icons .tabs-content { - width: 80%; -} -@media all and (max-width: 767px) { - .tabs-container.tabs--vertical .tabs, - .tabs-container.tabs--vertical .tabs-content { - width: 100%; - float: none; - } - .tabs-container.tabs--vertical .tabs { - margin-bottom: 1.85714286em; - } - .tabs-container.tabs--vertical .tabs-content > li:not(.active) .tab__content { - animation: fadeOutRight .5s ease forwards; - -webkit-animation: fadeOutRight .5s ease forwards; - } - .tabs-container.tabs--vertical .tabs-content > li.active .tab__content { - animation: fadeInLeft .5s ease forwards; - -webkit-animation: fadeInLeft .5s ease forwards; - backface-visibility: hidden; - } -} -.tabs { - display: inline-block; - border: 1px solid #ECECEC; - border-radius: 6px; - margin-bottom: 1.85714286em; -} -.tabs li { - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; - padding: 0.92857143em 1.85714286em; -} -.tabs li:not(:last-child) { - border-right: 1px solid #ECECEC; -} -.tabs li.active { - opacity: 1; -} -.tabs li.active .tab__title { - color: #238b53; -} -.tabs li.active .tab__title span { - color: #238b53; -} -.tabs li:not(.active) { - opacity: .5; -} -.tabs li:hover { - opacity: 1; - cursor: pointer; -} -.tabs .tab__title { - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; -} -.tabs .tab__title:not(.btn) { - padding-right: 0; - padding-left: 0; -} -.tabs .tab__title i + span { - margin-top: 0.46428571em; - display: inline-block; - margin-bottom: 0; -} -.bg--primary .tabs { - border-color: #fff; -} -.bg--primary .tabs li.active .tab__title { - color: #fff; -} -.bg--primary .tabs li.active .tab__title span { - color: #fff; -} -.bg--primary .tabs li:not(:last-child) { - border-color: #fff; -} -@media all and (min-width: 768px) { - .tabs.tabs--spaced { - margin-bottom: 3.71428571em; - } -} -.tabs-content { - position: relative; -} -.tabs-content > li:not(.active) .tab__content { - position: absolute; - left: 0; - top: 0; - display: block; - opacity: 0; - pointer-events: none; - animation: fadeOutRight .5s ease forwards; - -webkit-animation: fadeOutRight .5s ease forwards; -} -.tabs-content > li.active { - animation: fadeInLeft .5s ease forwards; - -webkit-animation: fadeInLeft .5s ease forwards; - backface-visibility: hidden; -} -@media all and (max-width: 767px) { - .tabs li { - display: block; - } - .tabs li:not(:last-child) { - border-bottom: 1px solid #ECECEC; - border-right: none; - } -} -.tabs--folder .tabs { - overflow: hidden; - margin-bottom: 0; - border-radius: 6px 6px 0 0; - border-bottom: none; -} -.tabs--folder .tabs > li { - border-top: 3px solid rgba(0, 0, 0, 0); -} -.tabs--folder .tabs > li.active { - border-top: 3px solid #238b53; -} -.tabs--folder .tabs-content { - overflow: hidden; - position: relative; - bottom: 8px; - padding: 1.85714286em; - border: 1px solid #ECECEC; - border-radius: 0 0 6px 6px; -} -.tabs--folder .tabs-content > li:not(.active) .tab__content { - top: 1.85714286em; - left: 1.85714286em; -} -.tabs--folder .tab__title .h5 { - margin: 0; - display: inline-block; -} -.tabs--folder .tab__title .label { - position: relative; - color: #fff !important; - top: -2px; - right: 0; - margin-left: 0.46428571em; - min-width: 0; -} -/*! -- Stack Switchable Sections -- */ -.switchable .switchable__text { - margin-top: 1.85714286em; -} -.switchable [class*='col-']:first-child .switchable__text { - margin-bottom: 2.78571429em; -} -.section--overlap .row { - position: relative; - margin-top: -13em; -} -@media all and (max-width: 990px) { - .switchable .switchable__text { - margin-top: 0; - } -} -@media all and (max-width: 767px) { - .switchable .switchable__text { - margin-top: 1.85714286em; - } - .switchable .imageblock__content[class*='col-'] { - float: none !important; - } - .switchable .row > div[class*='col-'] { - float: none !important; - } - .switchable .row > div[class*='col-']:last-child:not(:only-child) { - margin-top: 1.85714286em; - } -} -/*! -- Stack CTA -- */ -.cta .btn:first-child:not(:last-child) { - margin-bottom: 1.85714286em; -} -.cta.boxed:last-child { - margin-bottom: 0; -} -@media all and (min-width: 768px) { - .cta--horizontal h4, - .cta--horizontal .lead, - .cta--horizontal .btn { - margin: 0; - } - .cta--horizontal h4, - .cta--horizontal .lead { - position: relative; - top: 4px; - } - .bg--dark .cta-1 > div[class*='col-']:last-child, - .imagebg .cta-1 > div[class*='col-']:last-child { - border-left: none; - } -} -@media all and (min-width: 1200px) { - .cta-1.boxed--border { - padding: 0; - } - .cta-1 > div[class*='col-'] { - padding: 1.23809524em 15px; - } - .cta-1 > div[class*='col-']:last-child { - border-left: 1px solid #ECECEC; - } -} -@media all and (max-width: 990px) { - .cta-1 { - text-align: center; - } - .cta-1 > div[class*='col-'] { - padding-left: 0; - padding-right: 0; - } - .cta-1 > div[class*='col-']:not(:last-child) { - margin-bottom: 0.92857143em; - } - .cta-1 > div[class*='col-']:last-child { - margin-top: 1.85714286em; - } -} -@media all and (max-width: 767px) { - .cta .lead { - margin: 1.36842105263158em 0; - } -} -.cta-2 { - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; -} -.cta-2 h2 { - margin: 1.57575757575758em 0; -} -.cta-2.bg--primary:hover { - background: #26975a; -} -.cta-2:hover { - background: #ffffff; -} -@media all and (min-width: 768px) { - .cta-3 .switchable__text { - margin-top: 5.57142857em; - } -} -/*! -- Stack Videos -- */ -.video-play-icon:before { - border-color: transparent transparent transparent #252525; - margin-top: -3px; -} -.modal-instance .video-play-icon + span { - position: relative; - display: inline-block; - margin-left: 0.92857143em; - white-space: nowrap; - bottom: 22px; -} -.modal-instance .video-play-icon.video-play-icon--xs + span { - bottom: 8px; - margin-left: 0.46428571em; -} -.video-cover { - background: #252525; -} -.video-cover.border--round { - overflow: hidden; -} -.video-cover.border--round iframe { - border-radius: 6px; -} -.video-cover:not(:last-child) { - margin-bottom: 1.85714286em; -} -.video-cover + span.h4 + span { - display: inline-block; - margin-left: 0.92857143em; -} -.video-cover .video-play-icon { - transition: 0.2s ease-out; - -webkit-transition: 0.2s ease-out; - -moz-transition: 0.2s ease-out; -} -.video-cover .video-play-icon:hover { - box-shadow: 0 23px 40px rgba(0, 0, 0, 0.2); - transform: translate3d(-50%, -52%, 0); - -webkit-transform: translate3d(-50%, -52%, 0); -} -.imagebg .video-cover .video-play-icon { - z-index: 10; -} -@media all and (min-width: 768px) { - h2 + .video-cover { - margin-top: 3.71428571em; - } -} -@media all and (min-width: 768px) { - .video-1 .video-play-icon { - margin-right: 1.85714286em; - } - .video-1 h2 { - display: inline-block; - position: relative; - bottom: 14px; - } - div[class*='col-sm-6'] .video-1 h2 { - bottom: 0; - display: block; - } - div[class*='col-sm-6'] .video-1 .video-play-icon { - margin-bottom: 0.46428571em; - } -} -.video-1 h2 { - margin: 0; -} -.imageblock__content .modal-instance { - position: absolute; - top: 50%; - left: 50%; - transform: translate3d(-50%, -50%, 0); - -webkit-transform: translate3d(-50%, -50%, 0); -} -/*! -- Stack Modals -- */ -.modal-container .modal-content:not(.height--natural) { - height: auto; - width: auto; -} -.modal-instance:not(.block) { - display: inline-block; -} -.modal-instance.block > .btn { - display: block; -} -@media all and (min-width: 768px) { - .modal-instance + span:last-child { - display: inline-block; - margin-left: 0.92857143em; - } -} -.modal-container .modal-content { - max-height: 95%; - transform: translateX(-50%) translateY(-50%); - -webkit-transform: translateX(-50%) translateY(-50%); -} -.modal-container .modal-content .feature:only-child { - margin-bottom: 0; -} -.modal-container .modal-content .feature:only-child .boxed { - margin-bottom: 0; -} -.modal-container .modal-content .imagebg:not(.image--light) .modal-close-cross:before { - color: #fff; -} -@media all and (max-width: 767px) { - .modal-container .modal-content > .modal-close-cross { - top: 3em; - background: #222; - width: 2em; - height: 2em; - text-align: center; - border-radius: 50%; - color: #fff; - } -} -.modal-content { - -ms-overflow-style: none; -} -.modal-content::-webkit-scrollbar { - display: none; -} -/*! -- Stack Notifications -- */ -.notification { - margin: 1.85714286em; - box-shadow: none; -} -.notification:not([class*='bg--']) { - background: none; -} -.notification > .boxed { - margin: 0; -} -.notification > .feature, -.notification .feature__body { - margin-bottom: 0; -} -.search-box { - width: 100%; - margin: 0; - padding: 1.85714286em; - box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); - box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.04); -} -.search-box.notification--reveal { - z-index: 9999; -} -.search-box .notification-close-cross { - top: 2.32142857em; - right: 1.85714286em; -} -.notification-close-cross.notification-close-cross--circle { - background: #222; - width: 2em; - height: 2em; - text-align: center; - border-radius: 50%; - color: #fff; -} -/*! -- Stack Loader -- */ -.loader { - border: 3px solid #238b53; - border-radius: 30px; - height: 30px; - left: 50%; - margin: -15px 0 0 -15px; - opacity: 0; - position: fixed; - z-index: 10; - top: 50%; - width: 30px; - animation: pulsate 0.7s ease-out infinite; -} -.loader.loader--fade { - opacity: 0; - animation: none; -} -@keyframes pulsate { - 0% { - transform: scale(0.1); - opacity: 0.0; - } - 50% { - opacity: 1; - } - 100% { - transform: scale(1.2); - opacity: 0; - } -} -/*! -- Stack Lightboxes -- */ -.lb-close { - position: relative; - top: 10px; -} -.lb-close:before { - content: '\00D7'; - color: #fff; - font-size: 2.5em; - font-weight: 400; -} -.lb-close:hover { - text-decoration: none; -} -.lb-prev:after, -.lb-next:after { - font-family: 'stack-interface'; - position: fixed; -} -.lb-prev:after { - content: '\e801'; - left: 1.85714286em; -} -.lb-next:after { - content: '\e802'; - right: 1.85714286em; -} -.lb-data { - overflow: hidden; - min-height: 30px; -} -a[data-lightbox] { - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; -} -a[data-lightbox]:hover { - opacity: .8; - cursor: zoom-in; -} -/*! -- Stack Covers -- */ -.cover .typed-headline { - margin-bottom: 3.71428571em; -} -.cover .typed-headline .type--bold { - font-weight: 400; -} -.cover .triptych { - margin-top: 3.71428571em; -} -.cover .btn + .modal-instance { - margin-top: 1.85714286em; -} -.cover h3 + form, -.cover .h3 + form { - margin-top: 2.78571429em; -} -.cover .lead + .boxed { - margin-top: 3.71428571em; -} -.cover.unpad--bottom { - overflow: hidden; -} -.cover .modal-instance.block:not(:first-child):not(:last-child) { - margin: 2.78571429em 0; -} -.cover .pos-bottom { - margin-bottom: 1.85714286em; -} -@media all and (min-width: 768px) { - .cover .row .row:last-child { - margin-top: 5.57142857em; - } -} -@media all and (max-width: 767px) { - .cover .pos-bottom.pos-absolute { - position: relative; - margin-top: 1.85714286em; - } -} -@media all and (max-width: 990px) { - .cover .mt--3 { - margin-top: 0; - } -} -@media all and (min-width: 768px) { - .cover .triptych { - margin-top: 7.42857143em; - } -} -.cover-fullscreen { - min-height: 100vh; -} -.cover-fullscreen.slider[data-paging="true"] .slides .flickity-slider > li { - height: 100vh; -} -.cover-fullscreen.slider[data-paging="true"] .pos-bottom { - bottom: 5.57142857em; - width: 100%; -} -.cover-fullscreen.slider[data-paging="true"] h4 { - margin: 0; -} -.cover-slider { - overflow: hidden; -} -.cover-slider .slider { - position: relative; - width: 100%; - pointer-events: none; -} -.cover-slider .slider:nth-child(1) { - transform: translateY(-30%); -} -.cover-slider .slider:nth-child(2) { - transform: translateY(-25%); -} -.cover-slider .slider:nth-child(3) { - transform: translateY(-20%); -} -.cover-slider .slider .slide { - opacity: .05; -} -.cover-slider .typed-headline { - margin: 0; -} -.cover-slider .typed-headline + .btn { - margin-top: 0.92857143em; -} -.cover-slider .slider-container { - transform: rotateZ(-30deg) translateY(-10%); - -webkit-transform: rotateZ(-30deg) translateY(-10%); - position: absolute; - width: 100%; - height: 100%; - top: 0; -} -@media all and (min-width: 768px) { - .cover-slider + .cta-4 { - position: absolute; - background: none; - color: #fff; - border-bottom: none !important; - width: 100%; - transform: translate3d(0, -100%, 0); - -webkit-transform: translate3d(0, -100%, 0); - } - .cover-slider + .cta-4 a { - color: #fff; - font-weight: 600; - } -} -.cover-features.space--lg { - padding-bottom: 3.71428571em; -} -.cover-features .row:nth-child(2) { - margin-top: 11.14285714em; -} -@media all and (max-width: 767px) { - .cover-features.space--lg { - padding-bottom: 1.85714286em; - } - .cover-features .row:nth-child(2) { - margin-top: 3.71428571em; - } -} -/*! -- Stack Processes -- */ -.process-1 { - padding: 3.71428571em 0; - position: relative; - overflow: hidden; -} -.process-1 .process__item { - width: 50%; -} -.process-1 .process__item:not(:last-child) { - margin-bottom: 1.85714286em; -} -.process-1:before { - content: ''; - position: absolute; - width: 2px; - height: 100%; - left: 50%; - top: 0; - background: #238b53; -} -.process__item { - position: relative; -} -.process__item:after { - content: ''; - width: 1.85714286em; - height: 1.85714286em; - background: #fff; - border: 2px solid #238b53; - border-radius: 50%; - position: absolute; - top: 0; - margin-left: 1px; -} -@media all and (min-width: 768px) { - .process-1 .process__item:nth-child(odd) { - text-align: right; - padding-right: 3.71428571em; - } - .process-1 .process__item:nth-child(odd):after { - right: -0.92857143em; - } - .process-1 .process__item:nth-child(even) { - margin-left: 50%; - padding-left: 3.71428571em; - } - .process-1 .process__item:nth-child(even):after { - left: -0.92857143em; - } -} -@media all and (max-width: 767px) { - .process-1:before, - .process-2:before { - left: 0.92857143em; - } - .process-1 .process__item, - .process-2 .process__item { - width: 100%; - padding-left: 3.71428571em; - } - .process-1 .process__item:after, - .process-2 .process__item:after { - left: 0; - } -} -.bg--dark .process-1:before, -.imagebg .process-1:before, -.bg--dark .process-2:before, -.imagebg .process-2:before { - background: #fff; -} -.bg--dark .process-1 .process__item:after, -.imagebg .process-1 .process__item:after, -.bg--dark .process-2 .process__item:after, -.imagebg .process-2 .process__item:after { - background: #fff; -} -.bg--dark .process-1 .process__item:after, -.bg--dark .process-2 .process__item:after { - border-color: #252525; -} -.process-2 { - position: relative; -} -.process-2 .process__item { - padding-top: 3.71428571em; -} -.process-2 .process__item:after { - display: inline-block; - text-align: center; -} -.process-2:before { - content: ''; - position: absolute; - width: 100%; - height: 2px; - top: 0.92857143em; - left: 0; - background: #238b53; -} -@media all and (max-width: 767px) { - .process-2:before { - height: 100%; - width: 2px; - left: 1.85714286em; - margin-left: 2px; - } - .process-2 .process__item:after { - top: 3.71428571em; - } -} -.process-3 { - list-style: none; - position: relative; -} -.process-3 li { - position: relative; - z-index: 1; - overflow: hidden; -} -.process-3 li .process__number { - float: left; - width: 15%; - width: 3.71428571em; - height: 3.71428571em; - border-radius: 50%; - border: 2px solid #238b53; - background: #fff; - text-align: center; -} -.process-3 li .process__number span { - font-size: 1.35714286em; - font-weight: bold; - color: #238b53; - position: relative; - top: 12px; -} -.process-3 li .process__body { - width: 80%; - float: right; -} -.process-3 li .process__body h4 { - margin-bottom: 0.342105263157895em; -} -.process-3 li:not(:last-child) { - margin-bottom: 3.71428571em; -} -.process-3:before { - content: ''; - position: absolute; - height: 100%; - width: 1px; - left: 1.85714286em; - top: 0; - border-left: 1px dashed #ddd; -} -.bg--dark .process-3 li .process__number { - background: #252525; -} -.bg--dark .process-3:before { - border-color: #aaa; -} -.process-stepper > li { - transition: all .3s ease; - display: inline-block; - float: left; - text-align: center; - position: relative; -} -.process-stepper > li:before { - transition: all .3s ease; - content: ''; - width: 0.92857143em; - height: 0.92857143em; - background: #ccc; - border-radius: 50%; - display: block; - margin: 0 auto; - margin-bottom: 0.92857143em; -} -.process-stepper > li:after { - transition: all .3s ease; - content: ''; - width: 100%; - height: 2px; - position: absolute; - background: #ccc; - top: 5px; - left: 0; -} -.process-stepper > li:first-child:after, -.process-stepper > li:last-child:after { - width: 50%; -} -.process-stepper > li:first-child:after { - left: 50%; -} -.process-stepper > li.active:before, -.process-stepper > li.active:after { - background: #238b53; -} -.process-stepper > li > span { - cursor: default; -} -.process-stepper[data-process-steps="6"] > li { - width: 16.666666666666667%; -} -.process-stepper[data-process-steps="5"] > li { - width: 20%; -} -.process-stepper[data-process-steps="4"] > li { - width: 25%; -} -.process-stepper[data-process-steps="3"] > li { - width: 33.33333333%; -} -.process-stepper[data-process-steps="2"] > li { - width: 50%; -} -.bg--dark .process-stepper li:not(.active):before, -.bg--dark .process-stepper li:not(.active):after { - background: #585858; -} -/*! -- Stack Typed Text -- */ -span + .typed-text.h2 { - margin-left: 4px; -} -span + .typed-text.h1 { - margin-left: 6px; -} -@media all and (max-width: 767px) { - .typed-text { - display: block; - } - .typed-headline { - margin-bottom: 1.85714286em; - } - .typed-headline h1, - .typed-headline .h1 { - margin-bottom: 0; - } -} -/*! -- Stack Forms -- */ -.bg--dark input, -.imagebg:not(.image--light) input, -.bg--dark textarea, -.imagebg:not(.image--light) textarea, -.bg--dark select, -.imagebg:not(.image--light) select, -.bg--dark .input-select:after, -.imagebg:not(.image--light) .input-select:after { - color: #666666; -} -.bg--dark label, -.imagebg:not(.image--light) label { - color: #fff; -} -.bg--dark form.attempted-submit input.field-error { - background: #D84D4D; - color: #fff; -} -form { - position: relative; -} -form > div[class*='col-']:not(:last-child), -form > .row > div[class*='col-']:not(:last-child) { - margin-bottom: 0.92857143em; -} -form .boxed:last-child { - margin: 0; -} -form.form--clearfix { - margin-left: -15px; -} -@media all and (min-width: 768px) { - div[class*='col-'] > form div[class*='col-']:last-child:nth-child(2) { - padding-right: 0; - } - div[class*='col-'] > form div[class*='col-']:first-child:nth-last-child(2) { - padding-left: 0; - } - form.form--horizontal > div[class*='col-'] { - margin: 0; - } -} -@media all and (max-width: 767px) { - .row form > .row { - margin-left: 0; - margin-right: 0; - } -} -h2 + form, -.h2 + form { - margin-top: 2.78571429em; -} -h3 + form, -.h3 + form, -.lead + form { - margin-top: 2.78571429em; -} -.cover .lead + form { - margin-top: 3.71428571em; -} -form + span.type--fine-print { - margin-top: 1.08333333333334em; - display: inline-block; -} -.form--inline > span.h4 { - color: #666666; -} -.form--inline input, -.form--inline [class*='input-'] { - display: inline-block; - max-width: 200px; -} -.form--inline > span:not(:last-child), -.form--inline input:not(:last-child), -.form--inline [class*='input-']:not(:last-child) { - margin-right: 0.92857143em; -} -.form--inline button { - max-width: 200px; -} -.bg--dark .form--inline > span.h4, -.imagebg:not(.image--light) .form--inline > span.h4 { - color: #fff; -} -button, -input[type="submit"] { - height: 3.25000000000001em; -} -button.btn, -input[type="submit"].btn { - font-size: 0.85714286em; - font-weight: 700; - padding-left: 0; - padding-right: 0; -} -button.btn.btn--primary, -input[type="submit"].btn.btn--primary { - color: #fff; -} -button.btn.type--uppercase, -input[type="submit"].btn.type--uppercase { - letter-spacing: .5px; - margin-right: -0.5px; -} -button.checkmark.checkmark--cross, -input[type="submit"].checkmark.checkmark--cross { - width: 1.85714286em; - height: 1.85714286em; - border: none; - background: #e23636; -} -button.checkmark.checkmark--cross:before, -input[type="submit"].checkmark.checkmark--cross:before { - content: '\00d7'; - font-size: 18px; - top: -1px; -} -button[type="submit"].btn--loading:after, -input[type="submit"][type="submit"].btn--loading:after { - background: #238b53; -} -.bg--primary button.btn { - border-color: rgba(255, 255, 255, 0.5); - color: #fff; -} -.bg--primary button.btn:hover { - border-color: #fff; -} -.bg--primary button.btn.btn--primary { - color: #238b53; - border-color: #238b53; -} -.bg--primary button.btn.btn--primary-1 { - border-color: #282729; -} -input, -select { - height: 2.78571429em; -} -input.field-error { - border-color: #EBA8A8; -} -input[type] + input[type], -input[type] + .input-checkbox, -input[type] + button, -input[type] + .input-select { - margin-top: 0.92857143em; -} -input, -[class*='input-'] label, -select, -textarea { - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; -} -input:not([class*='col-']), -select:not([class*='col-']), -.input-select:not([class*='col-']), -textarea:not([class*='col-']), -button[type="submit"]:not([class*='col-']) { - width: 100%; -} -input[type], -select, -textarea { - padding-left: 0.92857143em; -} -input[type]:focus, -select:focus, -textarea:focus { - border-color: #2db46b; -} -input[type="image"] { - border: none; - padding: none; - width: auto; -} -label { - font-size: .85714286em; -} -.bg--primary label, -.bg--primary-1 label { - color: #fff; -} -.input-icon i { - top: 8px; - left: 8px; -} -.input-icon input { - padding-left: 2.78571429em; -} -.text-center .input-checkbox label, -.text-center .input-radio label { - margin: 0 auto; -} -.input-checkbox label, -.input-radio label { - font-size: 1em; -} -.input-checkbox { - margin-top: 0.46428571em; -} -.input-checkbox.field-error label { - border-color: #EBA8A8; -} -.input-checkbox label { - background: none; - border: 1px solid #d3d3d3; - text-align: center; - position: relative; -} -.input-checkbox label:not(:last-child) { - margin-right: 0.46428571em; -} -.input-checkbox label:hover { - border-color: #238b53; -} -.input-checkbox label:before { - content: ''; - left: 0; - border-radius: 6px; - position: absolute; - width: 100%; - height: 100%; - border: 1px solid #238b53; - opacity: 0; - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; -} -.input-checkbox input:checked + label { - border-color: #238b53; - background: #238b53; -} -.input-checkbox input:checked + label:after { - content: 'L'; - transform: rotateY(180deg) rotateZ(-45deg); - color: #fff; - position: absolute; - width: 100%; - left: 0; - top: -2px; - font-weight: 700; -} -.input-checkbox input:checked + label:before { - animation: pulse .45s ease forwards; - -webkit-animation: pulse .45s ease forwards; -} -.input-checkbox + span { - display: inline-block; - position: relative; - bottom: 10px; - margin-left: 0.92857143em; - font-size: 0.85714286em; - white-space: nowrap; -} -.input-checkbox + button[type] { - margin-top: 0.92857143em; -} -.input-checkbox + span + button[type] { - margin-top: 0.92857143em; -} -.bg--dark .input-checkbox:not(.checked) label { - border-color: #a5a5a5; -} -.bg--dark .input-checkbox + span { - opacity: .75; -} -.input-checkbox.input-checkbox--switch label { - width: 3.71428571em; - border-radius: 60px; -} -.input-checkbox.input-checkbox--switch label:before { - width: 20px; - height: 20px; - border-radius: 50%; - border-color: #d3d3d3; - opacity: 1; - left: 2px; - top: 2px; -} -.input-checkbox.input-checkbox--switch label:hover:before { - border-color: #238b53; -} -.input-checkbox.input-checkbox--switch input:checked + label { - background: none; -} -.input-checkbox.input-checkbox--switch input:checked + label:before { - animation: none !important; - background: #238b53; - border-color: #238b53; - transform: translateX(1.85714286em); -} -.input-checkbox.input-checkbox--switch input:checked + label:after { - display: none; -} -.input-radio.field-error label { - border-color: #EBA8A8; -} -.input-radio .input__label { - font-size: .85714286em; - display: inline-block; -} -.input-radio .input__label + label { - margin-top: 0.92857143em; -} -.input-radio label { - position: relative; - background: none; - border: 1px solid #d3d3d3; -} -.input-radio label:hover { - border-color: #238b53; -} -.input-radio label:before { - content: ''; - position: absolute; - width: 100%; - height: 100%; - border-radius: 50%; - border: 1px solid #238b53; - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; - opacity: 0; - left: 0; -} -.input-radio input:checked + label { - border-color: #238b53; - background-color: #238b53; -} -.input-radio input:checked + label:after { - content: ''; - position: absolute; - width: 10px; - height: 10px; - left: 7px; - top: 7px; - background-color: #fff; - border-radius: 50%; -} -.input-radio input:checked + label:before { - animation: pulse .4s ease forwards; -} -.input-radio--innerlabel label { - transition: all .3s ease; - height: 2.78571429em; - line-height: 2.50714286em; - padding: 0 0.92857143em; - border: 1px solid #ececec; - border-radius: 6px; - cursor: pointer; - width: 100%; - text-align: center; -} -.input-radio--innerlabel:hover { - border-color: #238b53; -} -.input-radio--innerlabel input:checked + label { - border-color: #238b53; - background: #238b53; - color: #fff; -} -.input-radio--innerlabel input:checked + label:after { - display: none; -} -.input-radio--innerlabel input:checked + label:before { - animation: none; -} -@media all and (max-width: 1024px) { - .input-radio input:checked + label:after { - top: 6px; - left: 6px; - } -} -.bg--primary .input-radio--innerlabel { - border-color: #2db46b; -} -.bg--primary .input-radio--innerlabel:hover { - border-color: #fff; -} -.bg--primary .input-radio--innerlabel.checked { - background: #fff; - border-color: #fff; -} -.bg--primary .input-radio--innerlabel.checked label { - color: #238b53; -} -.bg--primary-1 .input-radio--innerlabel { - border-color: #424043; -} -.bg--primary-1 .input-radio--innerlabel:hover { - border-color: #fff; -} -.bg--primary-1 .input-radio--innerlabel.checked { - background: #fff; - border-color: #fff; -} -.bg--primary-1 .input-radio--innerlabel.checked label { - color: #282729; -} -.input-select { - position: relative; -} -.input-select select { - -moz-appearance: none; - -webkit-appearance: none; -} -.input-select select::-ms-expand { - display: none; -} -.input-select:not(:last-child) { - margin-bottom: 0.92857143em; -} -.input-select:after { - position: absolute; - right: 0; - height: 100%; - top: 0; - font-size: 30px; - content: '\2263'; - pointer-events: none; - padding: 0 13px; - border-left: 1px solid #ececec; - line-height: 31px; -} -.input-select:focus:after { - border-color: #238b53; -} -.input-select select:focus { - border-color: #238b53; -} -.input-number { - position: relative; -} -.input-number > input[type="number"] { - padding-left: .46428571em; - -moz-appearance: textfield; - width: 100%; - text-align: center; -} -.input-number > input[type="number"]::-webkit-inner-spin-button { - display: none; -} -.input-number .input-number__controls { - position: absolute; - height: 100%; - width: 100%; - right: 0; - top: 0; - padding: 0 0.92857143em; -} -.input-number .input-number__controls > span { - position: absolute; - display: block; - width: 10%; - min-width: 3.71428571em; - height: 100%; - cursor: pointer; - -webkit-user-select: none; - user-select: none; - text-align: center; - padding-top: 6px; - transition: all .3s ease; -} -.input-number .input-number__controls > span:hover { - color: #238b53; -} -.input-number .input-number__controls .input-number__increase { - right: 0; - border-left: 1px solid #ececec; -} -.input-number .input-number__controls .input-number__decrease { - left: 0; - border-right: 1px solid #ececec; -} -/*! -- Stack Subscribe Forms -- */ -.subscribe-form-1 h3 { - margin-bottom: 0.52em; -} -.subscribe-form-1.boxed form { - margin: 1.85714286em; -} -@media all and (min-width: 991px) { - .subscribe-form-2 p { - top: 2px; - position: relative; - } - .subscribe-form-2 input { - margin: 0; - } - .subscribe-form-2 form [class*='col-'] { - margin: 0 !important; - } -} -@media all and (max-width: 990px) { - .subscribe-form-2 { - text-align: center; - } - .subscribe-form-2 form { - margin-top: 1.85714286em; - } -} -/*! -- Stack Elaborate Forms -- */ -@media all and (max-width: 767px) { - .elaborate-form-1 .pos-vertical-center { - padding-left: 15px; - padding-right: 15px; - } - .elaborate-form-1 form .col-xs-6:nth-child(even) { - padding-left: 15px; - } - .elaborate-form-1 form .col-xs-6:nth-child(odd) { - padding-right: 15px; - } - .elaborate-form-1 .row form > .row { - margin-left: -15px; - margin-right: -15px; - } -} -/* Stack Boxed Forms */ -.boxed-form h4 { - margin-bottom: 0.684210526315789em; -} -.boxed-form:last-child { - margin-bottom: 0; -} -/* Stack Datepicker Form */ -.datepicker { - cursor: pointer; -} -.picker { - transition: all .3s ease; - z-index: 10; - max-width: 100%; - -webkit-transition: all .3s ease; - margin-top: 0.46428571em; - position: absolute; - background: #ffffff; - border: 1px solid #ececec; - border-radius: 6px; - padding: 0.92857143em; - box-shadow: 0 23px 40px rgba(0, 0, 0, 0.2); -} -.picker .picker__header { - text-align: center; - margin-bottom: 0.92857143em; -} -.picker .picker__header > div { - font-weight: 600; - display: inline-block; - color: #252525; -} -.picker .picker__header > div:not(:last-child) { - margin-right: 0.46428571em; -} -.picker .picker__header .picker__nav--prev, -.picker .picker__header .picker__nav--next { - height: 10px; - width: 10px; - cursor: pointer; -} -.picker .picker__header .picker__nav--prev:after, -.picker .picker__header .picker__nav--next:after { - font-family: 'stack-interface'; -} -.picker .picker__header .picker__nav--next { - float: right; -} -.picker .picker__header .picker__nav--next:after { - content: '\e80c'; -} -.picker .picker__header .picker__nav--prev { - float: left; -} -.picker .picker__header .picker__nav--prev:after { - content: '\e80b'; -} -.picker .picker__day { - transition: all .3s ease; - cursor: pointer; -} -.picker .picker__day.picker__day--highlighted { - color: #238b53; - font-weight: 600; -} -.picker .picker__day:hover { - color: #238b53; -} -.picker:not(.picker--opened) { - opacity: 0; - visibility: hidden; - pointer-events: none; - transform: scale(0); -} -.picker .picker__holder { - outline: none !important; - border: none !important; -} -.picker table td { - padding: 0.46428571em; - padding-top: 0; -} -.picker .picker__footer { - text-align: center; -} -.picker .picker__button--today { - float: left; -} -.picker .picker__button--close { - float: right; -} -.picker button { - transition: all .3s ease; - height: auto; - border: none; - display: inline-block; -} -.picker button:not(:hover) { - opacity: .5; -} -/*! -- Stack Sliders -- */ -.flickity-prev-next-button { - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; - border-radius: 0; - background: #252525; - width: 2.78571429em; - height: 5.57142857em; -} -.flickity-prev-next-button:not(:hover) { - opacity: .5; -} -.flickity-prev-next-button:hover { - background: #252525; -} -.flickity-prev-next-button.previous { - left: 0; -} -.flickity-prev-next-button.next { - right: 0; -} -.flickity-prev-next-button:before { - color: #fff; -} -.slider.slider--inline-arrows .flickity-prev-next-button { - background: none; -} -.slider.slider--inline-arrows .flickity-prev-next-button:before { - font-size: 1.78571429em; - color: #252525; - content: '\e802'; -} -.slider.slider--inline-arrows .flickity-prev-next-button.previous:before { - content: '\e801'; -} -.slider.slider--columns .previous { - left: 15px; -} -.slider.slider--columns .next { - right: 15px; -} -.slider.border--round .slides li { - border-radius: 6px; - overflow: hidden; -} -.slider.boxed--border .slides li { - border: 1px solid #ececec; -} -.slider .slides li .feature:not(.feature-9) { - margin-bottom: 0; -} -.slide .boxed:last-child { - margin-bottom: 0; -} -.slide:not([class*='col-']) > img:only-child { - width: 100%; -} -.bg--dark .slider.slider--inline-arrows .flickity-prev-next-button:before, -.bg--primary .slider.slider--inline-arrows .flickity-prev-next-button:before, -.imagebg:not(.image--light) .slider.slider--inline-arrows .flickity-prev-next-button:before { - color: #fff; -} -@media all and (max-width: 990px) { - .flickity-prev-next-button { - display: none; - } -} -@media all and (min-width: 768px) { - h2 + .slider, - .h2 + .slider { - margin-top: 3.71428571em; - } -} -.slider.slider--ken-burns:not(.parallax) .slide.is-selected > .background-image-holder, -.slider.slider--ken-burns:not(.parallax) .slide.is-selected > img:only-child { - animation: kenBurns 15s ease alternate infinite; - -webkit-animation: kenBurns 15s ease alternate infinite; -} -.radial { - margin-left: auto; - margin-right: auto; -} -.radial .radial__label { - transition: opacity .3s ease; - -webkit-transition: opacity .3s ease; -} -.radial:not(.radial--active) .radial__label { - opacity: 0; -} -.radial:not(:last-child) { - margin-bottom: 1.85714286em; -} -@media all and (max-width: 767px) { - .radial { - margin-bottom: 1.85714286em; - } -} -/*! -- Stack Pricing -- */ -.pricing { - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; - position: relative; -} -.pricing h3:first-child { - margin: 0; -} -.pricing .label { - top: 2.78571429em; - right: 2.78571429em; -} -.pricing .h2 { - margin-bottom: 0.3939393939394em; -} -.pricing ul li:not(:last-child) { - margin-bottom: 0.46428571em; -} -.pricing ul li .checkmark + span { - position: relative; - bottom: 3px; -} -.pricing:hover { - box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); - box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.04); -} -.pricing .h1 { - font-size: 4.21428571428571em; - line-height: 1.10169491525424em; - margin-bottom: 0.22033898305085em; -} -.pricing .h1 .pricing__dollar { - font-size: 0.51020408163265em; - position: relative; - bottom: 20px; -} -.pricing .feature-6 p { - min-height: 5.57142857em; -} -.pricing-1 .btn:last-child { - position: absolute; - width: 100%; - bottom: 0; - left: 0; - border-radius: 0 0 6px 6px; - padding: 0.92857143em 0; - margin: 0; -} -.pricing-1 .btn:last-child:hover { - transform: none !important; -} -.pricing-1 ul { - margin-bottom: 5.57142857em; -} -.pricing-1 p { - min-height: 5.57142857em; -} -.pricing-1 p:first-of-type { - margin-top: 1.85714286em; -} -.pricing-1 p:last-of-type { - margin-bottom: 5.57142857em; -} -.pricing-1 img + p:first-of-type { - margin-top: 0; -} -@media all and (min-width: 991px) { - .pricing-2 ul:first-child { - margin-top: 4.64285714em; - } -} -@media all and (max-width: 990px) { - .pricing-2 { - text-align: center; - } - .pricing-2 ul:first-child { - margin-top: 1.85714286em; - } -} -.pricing-3 { - border: 1px solid #ececec; - border-radius: 6px; -} -.pricing-3 .pricing__head { - margin: 0; - border-bottom: 1px solid #ececec; -} -.pricing-3 .pricing__head + .btn { - display: block; - border-radius: 0; - padding: 0.92857143em 0; -} -.pricing-3 ul { - border-radius: 0 0 6px 6px; -} -.pricing-3 ul li { - padding: 0.92857143em 0; -} -.pricing-3 ul li:not(:last-child) { - border-bottom: 1px solid #ececec; - margin: 0; -} -.pricing-3 ul:last-child { - margin: 0; -} -@media all and (max-width: 990px) { - .pricing-3 { - margin-bottom: 1.85714286em; - } -} -@media all and (min-width: 768px) { - .pricing-section-1 .pricing:not(.boxed--emphasis) { - left: 0.92857143em; - } - .pricing-section-1 .pricing.boxed--emphasis { - right: 0.92857143em; - } -} -@media all and (min-width: 990px) { - .pricing-section-2 div[class*='col-'] { - padding: 0; - } - .pricing-section-2 div[class*='col-']:not(:first-child):not(:last-child) .pricing__head { - border-radius: 0; - } - .pricing-section-2 div[class*='col-']:first-child .pricing { - border-radius: 6px 0 0 6px; - } - .pricing-section-2 div[class*='col-']:first-child .pricing .pricing__head { - border-radius: 6px 0 0 0; - } - .pricing-section-2 div[class*='col-']:last-child .pricing { - border-radius: 0 6px 6px 6px; - border-right: 1px solid #ececec; - } - .pricing-section-2 div[class*='col-']:last-child .pricing .pricing__head { - border-radius: 0 6px 0 0; - } - .pricing-section-2 .pricing { - border: 1px solid #ececec; - border-radius: 0 0 0 6px; - border-right: none; - } - .pricing-section-2 .pricing:hover { - box-shadow: none; - } - .pricing-section-2 .pricing ul { - margin: 0; - } -} -.pricing-section-2.bg--dark .pricing, -.pricing-section-2.bg--dark .pricing .pricing__head, -.pricing-section-2.bg--dark .pricing ul li:not(:last-child), -.pricing-section-2.bg--dark div[class*='col-']:last-child .pricing { - border-color: #3f3f3f; -} -.pricing-section-2.imagebg .pricing, -.pricing-section-2.imagebg .pricing .pricing__head, -.pricing-section-2.imagebg .pricing ul li:not(:last-child), -.pricing-section-2.imagebg div[class*='col-']:last-child .pricing { - border-color: rgba(255, 255, 255, 0.2); -} -/*! -- Stack Progress Horizontal -- */ -.progress-horizontal:not(:last-child) { - margin-bottom: 1.85714286em; -} -.progress-horizontal.progress-horizontal--lg .progress-horizontal__bar { - height: 1.85714286em; -} -.progress-horizontal.progress-horizontal--sm .progress-horizontal__bar { - height: 0.46428571em; -} -.progress-horizontal__bar { - height: 0.92857143em; - border-radius: 100px; - background: #fafafa; - border: 1px solid rgba(0, 0, 0, 0.1); -} -.progress-horizontal__bar:not(:last-child) { - margin-bottom: 0.46428571em; -} -.progress-horizontal__progress { - background: #238b53; - border-radius: 100px; -} -/*! -- Stack Maps -- */ -iframe[src*='google.com/maps'] { - border: none; -} -.map-container { - min-height: 400px; -} -.map-container:not(:last-child) { - margin-bottom: 1.85714286em; -} -.map-container.border--round { - overflow: hidden; - z-index: 2; -} -.map-container.border--round .gm-style { - border-radius: 6px; -} -.map-container iframe { - left: 0; -} -@media all and (min-width: 768px) { - .background-image-holder .map-container, - .imageblock__content .map-container { - position: absolute; - width: 100%; - height: 100%; - top: 0; - left: 0; - } - .map-container + div[class*='col-'] { - margin-top: 3.71428571em; - } -} -/*! -- Stack Testimonials -- */ -.testimonial { - position: relative; - overflow: hidden; -} -.testimonial h5:nth-last-child(2) { - margin: 0; -} -.testimonial .testimonial__image { - margin-bottom: 1.85714286em; -} -@media all and (min-width: 1025px) { - .testimonial-1 .switchable__text { - margin-top: 7.42857143em; - } -} -.testimonial-2 { - float: none; - width: 100%; -} -.testimonial-2 .testimonial__image img { - max-height: 3.71428571em; - float: left; - margin-right: 1.85714286em; -} -.testimonial-2 .boxed { - width: 100%; -} -@media all and (max-width: 990px) { - .testimonial-2 p { - min-height: 7.42857143em; - } -} -@media all and (max-width: 767px) { - .testimonial-2 p { - min-height: 0; - } -} -@media all and (min-width: 768px) { - .lead + .testimonial-2 { - margin-top: 3.71428571em; - } -} -@media all and (min-width: 768px) { - .testimonials-1 .list-inline { - position: relative; - top: 0.92857143em; - } - .testimonials-1 .list-inline li:not(:last-child) { - margin-right: 3.71428571em; - } -} -@media all and (max-width: 767px) { - .testimonials-1 .list-inline { - margin-top: 1.85714286em; - } - .testimonials-1 .list-inline li { - margin-bottom: 1.85714286em; - } -} -/*! -- Stack Masonry -- */ -.masonry__item:not(:empty) { - margin-bottom: 30px; - transform-style: preserve-3d; -} -.masonry__item:not(:empty) article { - margin: 0; -} -.masonry__item:not(:empty) article .boxed { - margin: 0; -} -.masonry__item:empty { - height: 0; - min-height: 0; -} -.masonry hr + .masonry__container, -.masonry hr + .row { - margin-top: 4.64285714em; -} -.masonry-filter-holder:not(.masonry-filters--horizontal) { - display: inline-block; - cursor: pointer; - height: 3.71428571em; - position: relative; - z-index: 9; - min-width: 143px; -} -.masonry-filter-holder:not(.masonry-filters--horizontal) .masonry__filters { - cursor: pointer; - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; - z-index: 2; - display: inline-block; - position: absolute; - left: 0; - text-align: left; - padding: 0.92857143em 1.85714286em; - border: 1px solid #ececec; - background: #ffffff; - border-radius: 6px; -} -.masonry-filter-holder:not(.masonry-filters--horizontal) .masonry__filters ul { - margin: 0; - cursor: pointer; -} -.masonry-filter-holder:not(.masonry-filters--horizontal) .masonry__filters ul li { - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; - display: block; - color: #666666; - white-space: nowrap; -} -.masonry-filter-holder:not(.masonry-filters--horizontal) .masonry__filters ul li:not(:last-child) { - margin-bottom: 0.92857143em; -} -.masonry-filter-holder:not(.masonry-filters--horizontal) .masonry__filters ul li.active { - color: #238b53; - cursor: pointer; -} -.masonry-filter-holder:not(.masonry-filters--horizontal) .masonry__filters ul li.active:after { - content: '\25bc'; - font-size: 8px; - margin-left: 6px; - position: relative; - bottom: 2px; - display: inline-block; - transform: scaleX(1.4) scaleY(0.9); - transition: 0.2s linear; - -webkit-transition: 0.2s linear; - -moz-transition: 0.2s linear; -} -.masonry-filter-holder:not(.masonry-filters--horizontal) .masonry__filters ul li:hover { - color: #238b53; -} -.masonry-filter-holder:not(.masonry-filters--horizontal) .masonry__filters ul:hover li.active:after { - opacity: 0; -} -.masonry-filter-holder:not(.masonry-filters--horizontal):not(:hover) .masonry__filters ul { - max-height: 1.85714286em; - overflow: hidden; -} -.masonry-filter-holder:not(.masonry-filters--horizontal):not(:hover) .masonry__filters ul li:not(.active) { - display: none; -} -.masonry-filter-holder:not(.masonry-filters--horizontal):hover .masonry__filters { - box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); - box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.04); -} -.masonry-filter-holder:not(.masonry-filters--horizontal):hover .masonry__filters ul li.active { - cursor: default; -} -.masonry-filters--horizontal { - display: inline-block; -} -.masonry-filters--horizontal .masonry__filters { - display: inline-block; - position: relative; - bottom: 20px; - margin-left: 0.92857143em; -} -.masonry-filters--horizontal .masonry__filters ul li { - transition: all .3s ease; - cursor: pointer; - display: inline-block; -} -.masonry-filters--horizontal .masonry__filters ul li:not(:last-child) { - margin-right: 1.85714286em; -} -.masonry-filters--horizontal .masonry__filters ul li.active { - color: #238b53; -} -.masonry-filters--horizontal .masonry__filters ul li:not(.active) { - opacity: .5; -} -.masonry-filters--horizontal .masonry__filters ul li:hover { - opacity: 1; -} -.masonry-filter-holder + .masonry__container { - margin-top: 3.71428571em; -} -.bg--dark .masonry-filter-holder .masonry__filters { - background: #2a2a2a; - border-color: #3f3f3f; -} -.bg--dark .masonry-filter-holder .masonry__filters li { - color: #fff; -} -.masonry.masonry-demos .masonry__item:not(:empty) { - margin-bottom: 3.71428571em; -} -.masonry.masonry-demos .masonry__item h5 { - margin-bottom: 0; -} -.masonry.masonry-demos .masonry__item:not([style]) .hover-item { - min-height: 450px; - background: #323232; - border: 1px solid #3f3f3f; -} -.masonry.masonry-demos .hover-item { - transition: 0.35s ease-out; - -webkit-transition: 0.35s ease-out; - -moz-transition: 0.35s ease-out; - border-radius: 6px; - overflow: hidden; -} -.masonry.masonry-demos .hover-item:hover { - transform: translateY(-10px); -} -.masonry.masonry-demos .masonry__container { - margin-top: 3.71428571em; -} -/*! -- Stack Blog -- */ -article .article__title { - margin-bottom: 3.71428571em; -} -article .article__title > a { - display: block; -} -article .article__title > a:hover { - text-decoration: none; - opacity: .75; -} -article .article__title h2 { - margin-bottom: 0.3939393939394em; -} -article .article__title h1 { - margin-bottom: 0.29545454545455em; -} -article .article__body img, -article .article__body iframe, -article .article__body .video-cover { - border-radius: 6px; -} -article .article__body img:not(:last-child), -article .article__body iframe:not(:last-child), -article .article__body .video-cover:not(:last-child) { - margin-bottom: 1.85714286em; -} -article .article__body > a:first-child > img { - margin-bottom: 1.85714286em; -} -article .article__body p, -article .article__body ul { - font-size: 1.35714286em; - line-height: 1.68421053em; - font-weight: 400; - color: #808080; -} -article .article__body p:not(:last-child), -article .article__body ul:not(:last-child) { - margin-bottom: 1.36842105263158em; -} -article .article__body p + .btn:last-child, -article .article__body ul + .btn:last-child { - margin-top: 0.92857143em; -} -article .article__body p + h5, -article .article__body ul + h5 { - margin-top: 2.78571429em; -} -article .article__body blockquote { - text-align: center; -} -article .article__body blockquote:not(:last-child) { - margin-top: 2.08em; - margin-bottom: 2.08em; -} -article .article__share { - margin-top: 5.57142857em; -} -article.imagebg { - padding: 1.85714286em; - overflow: hidden; -} -article.imagebg:before { - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; -} -article.imagebg:hover:before { - opacity: .6; -} -article.imagebg .article__title { - margin: 0; - position: absolute; - bottom: 0; - z-index: 2; - max-width: 90%; -} -article.imagebg .article__title span { - font-size: 0.85714286em; -} -article.imagebg .label { - z-index: 2; - top: 1.85714286em; - right: 1.85714286em; -} -article.feature-1 h5 { - min-height: 3.71428571em; -} -article.feature-1 a img { - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; -} -article.feature-1 a:hover img { - opacity: .85; -} -figure[class*='col-'] { - padding: 0 !important; -} -figure.pull-right { - margin-left: 2.78571429em; -} -figure.pull-left { - margin-right: 2.78571429em; -} -figure img:not(:last-child) { - margin-bottom: 0.46428571em !important; -} -figure figcaption { - font-size: 0.85714286em; - font-style: italic; -} -section.unpad > article .imagebg + div { - padding: 5.57142857em 0; -} -.article__author { - padding-bottom: 1.85714286em; -} -.article__author img { - max-height: 3.71428571em; - margin-bottom: 0.46428571em; -} -.slides--gapless article.imagebg { - height: 27.85714286em; -} -.masonry-blog-magazine article, -.masonry-blog-magazine .masonry__promo { - height: 338px; -} -.masonry-blog-magazine .height--tall { - height: calc(706px); -} -@media all and (min-width: 991px) { - .masonry__promo.boxed--lg { - padding: 7.42857143em; - } -} -@media all and (max-width: 990px) { - .masonry-blog-magazine .height--tall { - height: 338px; - } - .masonry__promo .pos-vertical-center { - top: 0; - transform: none; - } -} -@media all and (max-width: 1200px) { - .masonry__promo.boxed--lg { - padding: 3.71428571em; - } -} -.pagination { - text-align: center; - margin-top: 1.85714286em; -} -.pagination:after { - content: ""; - display: table; - clear: both; -} -.pagination a { - font-weight: normal; -} -.pagination div[class*='col-'] { - padding: 0; -} -.pagination ol { - margin-bottom: 0; - display: inline-block; -} -.pagination ol li { - display: inline-block; - margin: 0; - font-weight: 700; - line-height: 23px; - width: 1.85714286em; - height: 1.85714286em; - border-radius: 50%; - border: 1px solid #ececec; -} -.pagination ol li > a { - font-weight: 700; -} -.pagination ol li:not(:last-child) { - margin-right: 0.46428571em; -} -.pagination ol li.pagination__current { - cursor: default; - background: #ececec; - color: #aaa; -} -.pagination__prev, -.pagination__next { - display: inline-block; -} -.pagination__next { - float: right; -} -.pagination__prev { - float: left; -} -.blog-article-wide:not(:last-child) { - border-bottom: 1px solid #ececec; - margin-bottom: 3.71428571em; -} -.masonry-blog-list hr + .masonry__container { - margin-top: 0; -} -.masonry-blog-list article { - border-bottom: 1px solid #ececec; - padding-top: 2.78571429em; - margin-bottom: 5.57142857em; -} -.masonry-blog-list article .article__body { - padding-bottom: 5.57142857em; -} -.masonry-blog-magazine .masonry__item a { - font-weight: normal; -} -.masonry-blog-magazine .masonry__item a:hover { - text-decoration: none; -} -.masonry-filter-container { - margin-bottom: 1.85714286em; -} -.masonry-filter-container > span { - position: relative; - bottom: 20px; -} -.masonry-filter-container > span + .masonry-filter-holder { - margin-left: 0.92857143em; -} -.comments__list li { - padding: 1.85714286em; - border: 1px solid #ececec; - border-bottom: none; -} -.comments__list li:last-child { - border-bottom: 1px solid #ececec; -} -.comments__list li:nth-child(odd) { - background: #fcfcfc; -} -.comments__list li:nth-child(even) { - background: #f9f9f9; -} -.comments__list li:first-child { - border-radius: 6px 6px 0 0; -} -.comments__list li:last-child { - border-radius: 0 0 6px 6px; -} -.bg--secondary .comments__list li:nth-child(even) { - background: #fff; -} -@media all and (min-width: 768px) { - .comments__list li { - padding: 2.78571429em; - } -} -.comment { - overflow: hidden; -} -.comment:not(:last-child) { - border-bottom: 1px solid #ececec; - padding-bottom: 1.85714286em; -} -.comment .comment__avatar { - width: 15%; - float: left; -} -.comment .comment__avatar img { - max-height: 3.71428571em; -} -.comment .comment__meta { - font-size: 0.85714286em; -} -.comment .comment__meta a { - display: inline-block; -} -.comment .comment__meta a:not(:first-child) { - margin-left: 1.08333333333334em; -} -.comment .comment__meta + p { - margin-top: 0.92857143em; -} -.comment .comment__body { - width: 85%; - float: right; -} -.comment .comment__body h5.type--fine-print { - margin: 0; -} -.comment + .comment { - margin-top: 1.85714286em; - padding-left: 15%; -} -@media all and (min-width: 768px) { - .comments + .comments-form { - margin-top: 3.71428571em; - } -} -@media all and (min-width: 768px) { - h3 + .related-blog-list { - margin-top: 3.71428571em; - } -} -.related-blog-list li:not(:last-child) { - margin-bottom: 1.85714286em; -} -.related-blog-list article img { - border-radius: 6px; -} -.related-blog-list article .article__title { - margin-top: 0.92857143em; - margin-bottom: 0; -} -.related-blog-list article .article__title .h4 { - margin-bottom: 0.68421052631579em; -} -@media all and (min-width: 991px) { - .sidebar { - margin-top: 7.42857143em; - position: relative; - bottom: 18px; - } -} -.sidebar__widget > h5:first-child { - margin-bottom: 0.92857143em; -} -.sidebar__widget:not(:last-child) { - margin-bottom: 3.71428571em; -} -.tag-cloud li { - display: inline-block; -} -.tag-cloud li:not(:last-child) { - margin-right: 0.46428571em; -} -.tag-cloud li:not(:last-child):after { - content: ','; -} -.conversation__head { - border-radius: 6px 6px 0 0; -} -.conversation__head.boxed:not(:last-child) { - margin: 0; -} -.conversation__head h4 { - margin: 0; -} -.conversation__head .conversation__avatar { - margin-top: 0.92857143em; -} -.conversation__head .conversation__avatar img { - max-height: 1.85714286em; - display: inline-block; - margin-right: 0.46428571em; - margin-bottom: 0; -} -@media all and (min-width: 768px) { - .conversation__avatar { - position: absolute; - top: 1.85714286em; - right: 2.78571429em; - } -} -.conversation__reply { - border-top: none !important; - border-bottom: none; - border-radius: 0; -} -.conversation__reply.boxed:not(:last-child) { - margin-bottom: 0; -} -.conversation__reply + .conversation__comments .comments__list li:first-child { - border-radius: 0; - border-top: none; -} -/*! -- Stack Portfolio -- */ -.project-thumb > a { - display: block; -} -.project-thumb:not(.hover-element) > a { - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; - margin-bottom: 1.85714286em; -} -.project-thumb:not(.hover-element) > a:hover { - opacity: .85; -} -.project-thumb.hover-element { - margin: 0; -} -.project-thumb.hover-element > a { - height: 24.14285714em; - text-decoration: none; - font-weight: normal; -} -.project-thumb.hover-element .background-image-holder { - transition: 0.5s ease-out; - -webkit-transition: 0.5s ease-out; - -moz-transition: 0.5s ease-out; -} -.project-thumb.hover-element .hover-element__reveal .project-thumb__title { - padding: 1.85714286em; - z-index: 2; - position: relative; - color: #fff; -} -.project-thumb.hover-element .hover-element__reveal .project-thumb__title h5 { - margin: 0; -} -.project-thumb.hover-element.hover--active { - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; -} -.project-thumb.hover-element.hover--active:hover { - opacity: .85; -} -.project-thumb.hover-element:not(.hover--active)[data-scrim-top] .hover-element__reveal { - transition: 0.5s ease; - -webkit-transition: 0.5s ease; - -moz-transition: 0.5s ease; - transform: translate3d(0, -100px, 0); - -webkit-transform: translate3d(0, -100px, 0); -} -.project-thumb.hover-element:not(.hover--active)[data-scrim-top]:hover .hover-element__reveal { - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); -} -.project-thumb.hover-element [data-scrim-top]:before { - height: 100%; -} -.project-thumb h4 { - margin-bottom: 0; -} -.project-thumb.height-40 { - min-height: 350px; -} -@media all and (max-width: 767px) { - .project-thumb.height-40 { - height: 350px; - min-width: 100%; - } -} -@media all and (min-width: 768px) { - .col-xs-12:not(.col-sm-6) .project-thumb.hover-element > a { - height: 46.42857143em; - } -} -.project-thumb.border--round .background-image-holder { - border-radius: 6px; -} -.project-thumb.border--round > a { - border-radius: 6px; - overflow: hidden; -} -.project-thumb.border--round:before { - border-radius: 6px; - overflow: hidden; -} -.col-md-4 .project-thumb > a:not(.imagebg) { - margin-bottom: 0.92857143em; -} -/*! -- Stack Shop -- */ -.cart-form button[type="submit"] { - margin-top: 1.85714286em; -} -.cart-total > div { - overflow: hidden; -} -@media all and (min-width: 768px) { - .cart-total { - margin-top: 3.71428571em; - } - .cart-customer-details { - margin-top: 7.42857143em; - } -} -@media all and (max-width: 767px) { - .cart-total { - margin-top: 1.85714286em; - } -} -.cart-customer-details div[class*='col-'] { - margin-top: 0.46428571em; -} -.cart-customer-details .input-checkbox { - margin: 1.85714286em 0; -} -.cart-customer-details .input-checkbox + span { - bottom: 38px; -} -.product { - margin-bottom: 0.92857143em; -} -.product img { - margin-bottom: 0.92857143em; - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; - backface-visibility: hidden; -} -.product a:hover img { - transform: translate3d(0, -5px, 0); - -webkit-transform: translate3d(0, -5px, 0); -} -.product .label + img { - margin-top: 2.78571429em; -} -.product h5 { - display: inline-block; - margin-bottom: 0; - margin-right: 0.46428571em; -} -.product .h4 { - margin-bottom: 0; -} -.product .h4:first-child { - clear: left; -} -.product .product__controls { - overflow: hidden; - margin-bottom: 0.92857143em; -} -.product .product__controls label, -.product .product__controls button { - position: relative; - top: 6px; -} -.product.product--tile { - padding: 1.85714286em; - border-radius: 6px; -} -@media all and (min-width: 1200px) { - .product .btn--cart { - position: absolute; - right: 1.85714286em; - bottom: 1.85714286em; - } -} -.col-sm-6:not(.col-md-3) .product { - text-align: center; -} -.col-md-3 .product--tile h5 { - display: block; -} -.masonry--tiles { - padding: 10px; -} -.masonry--tiles .masonry__item:not(:empty) { - padding: 0 6px; - margin-bottom: 12px; -} -.masonry--tiles .masonry__item:not(:empty) .product--tile { - margin: 0; -} -.masonry--tiles .masonry__item:not(:empty) .product--tile .label { - top: 1.85714286em; - right: 2.78571429em; -} -/*! -- Stack Wizard -- */ -.wizard { - transition: opacity .3s ease; - opacity: 0; -} -.wizard.active { - opacity: 1; -} -.wizard > .actions a, -.wizard > .actions a:hover, -.wizard > .actions a:active { - background: #238b53; - transition: all .3s ease; - padding: 0.46428571em 1.85714286em; - font-size: 12px; - text-transform: uppercase; - font-weight: 700; - letter-spacing: 1px; - color: #fff; -} -.wizard > .steps .current a, -.wizard > .steps .current a:hover, -.wizard > .steps .current a:active { - background: none; - color: #252525; -} -.wizard > .steps a { - position: relative; -} -.wizard > .steps a:before { - content: ''; - width: 15px; - height: 15px; - border-radius: 50%; - position: absolute; - left: 50%; - margin-left: -10px; - background: #eee; - display: block; - bottom: 0; - transition: all .2s ease; -} -.wizard > .steps a:after { - content: ''; - position: absolute; - width: 100%; - bottom: 7px; - height: 2px; - background: #eee; - left: 0; - transition: all .2s ease; -} -.wizard > .steps li:first-child a:after { - width: 50%; - left: 50%; -} -.wizard > .steps li:last-child a:after { - width: 50%; -} -.wizard > .steps li.current a:after, -.wizard > .steps li.current a:before { - background-color: #238b53; -} -.wizard > .steps a, -.wizard > .steps a:hover { - padding-bottom: 2.78571429em; -} -.wizard > .steps .done a, -.wizard > .steps .done a:hover, -.wizard > .steps .done a:active, -.wizard > .steps .disabled a, -.wizard > .steps .disabled a:hover, -.wizard > .steps .disabled a:active { - background: none; - color: #252525; -} -.wizard > .steps a, -.wizard > .steps a:hover, -.wizard > .steps a:active { - margin: 0; -} -.wizard > .actions a, -.wizard > .actions a:hover, -.wizard > .actions a:active { - user-select: none; - -moz-user-select: none; - -webkit-user-select: none; -} -.wizard > .steps > ul, -.wizard > .actions { - text-align: center; -} -.wizard > .steps > ul > li, -.wizard > .actions > ul > li { - float: none; - display: inline-block; -} -.wizard > section { - padding: 0; -} -.wizard > .content { - background: #fafafa; - margin-top: 1.85714286em; - margin-bottom: 1.85714286em; - border: 1px solid #ececec; -} -.wizard > .content > .body { - padding: 1.85714286em; - width: 100%; - height: 100%; -} -.wizard > .steps .number { - font-size: 1em; -} -@media all and (max-width: 767px) { - .wizard > .steps .number { - display: block; - } - .wizard > .content { - min-height: 25em; - } - .wizard .pos-vertical-center { - top: 50%; - transform: translateY(-50%); - -wekbit-transform: translateY(-50%); - } -} -.wizard.bg--white { - background: none !important; -} -.wizard.bg--white > .content { - background: #fff; -} -.wizard > .content img { - max-height: 240px; -} -@media all and (max-width: 767px) { - .wizard > .content img { - max-height: 120px; - margin-bottom: 0.92857143em; - } -} -/*! -- Stack Footers -- */ -footer .type--fine-print:not(p) { - opacity: .5; -} -footer a { - font-weight: normal; -} -footer:not(.bg--primary):not(.bg--dark) a { - color: #666666; -} -footer a.type--fine-print:not(:first-child) { - margin-left: 1.85714286em; -} -footer .logo { - max-height: 1.67142857em; -} -footer ul:not(.list-inline):not(.slides) > li { - line-height: 2.32142857em !important; -} -footer.footer-2 .row:last-child { - margin-top: 3.71428571em; -} -footer.footer-5 .row [class*='col-'] > div:nth-last-child(2) { - margin: 0.92857143em; -} -footer.footer-5 .row [class*='col-'] > div:nth-last-child(2) .type--fine-print { - opacity: 1; -} -footer.footer-6 .footer__lower { - background: #fafafa; - margin-top: 1.85714286em; - padding: 1.85714286em 0; -} -footer.footer-6.bg--dark .footer__lower { - background: #181818; -} -footer.footer-6.bg--secondary .footer__lower { - background: #f5f5f5; -} -footer.footer-6.bg--primary .footer__lower { - background: #1e7747; -} -footer.footer-7 { - padding: 1.85714286em 0; -} -@media all and (min-width: 768px) { - footer .list-inline + .btn { - position: relative; - bottom: 4px; - } - footer .logo { - margin: 0; - } - footer .logo:not(:last-child) { - margin-right: 1.85714286em; - } - footer.footer-3 .logo + ul { - position: relative; - top: 5px; - } - footer.footer-3 .logo + ul a { - color: #252525; - } - footer.footer-3 .social-list { - position: relative; - top: 9px; - } - footer.footer-3 .row:last-child { - margin-top: 1.85714286em; - } - footer.footer-4 .logo + span { - position: relative; - top: 8px; - } - footer.footer-4 form { - position: relative; - bottom: 4px; - } - footer.footer-4 .row:last-child { - margin-top: 1.85714286em; - } - footer.imagebg:not(.image--light) span, - footer.imagebg:not(.image--light) p, - footer.imagebg:not(.image--light) a { - color: #fff; - } - .footer-1 .type--fine-print { - position: relative; - top: 2px; - } -} -@media all and (max-width: 767px) { - footer .social-list { - margin: 1.85714286em 0; - } - .footer-4 form { - margin: 1.85714286em 0; - } - .footer-4 .logo { - margin: 0; - } - .footer-6 .footer__lower .social-list { - margin-top: 1.85714286em; - } - .footer-7 .social-list { - margin-top: 1.85714286em; - } - .footer-1 .social-list { - margin-top: 1.85714286em; - } - .footer-1 .logo { - display: block; - margin-top: 1.85714286em; - margin-bottom: 0.92857143em; - margin-left: auto; - margin-right: auto; - } -} diff --git a/html/css/theme-red.css b/html/css/theme-red.css deleted file mode 100644 index bf9a32bb..00000000 --- a/html/css/theme-red.css +++ /dev/null @@ -1,9016 +0,0 @@ -/**!**************/ -/**! Contents **/ -/**! 01. Reset **/ -/**! 02. Typography **/ -/**! 03. Position **/ -/**! 04. Element Size **/ -/**! 05. Images **/ -/**! 06. Buttons **/ -/**! 07. Icons **/ -/**! 08. Lists **/ -/**! 09. Lightbox **/ -/**! 10. Menus **/ -/**! 11. Dropdowns **/ -/**! 12. Form Elements **/ -/**! 13. Accordions **/ -/**! 14. Breadcrumbs **/ -/**! 15. Radials **/ -/**! 16. Tabs **/ -/**! 17. Boxes **/ -/**! 18. Sliders Flickity **/ -/**! 19. Hover Elements **/ -/**! 20. Masonry **/ -/**! 21. Modals **/ -/**! 22. Maps **/ -/**! 23. Parallax **/ -/**! 24. Notifications **/ -/**! 25. Video **/ -/**! 26. Colors **/ -/**! 27. Image Blocks **/ -/**! 28. MailChimp & Campaign Monitor **/ -/**! 29. Twitter **/ -/**! 30. Transitions **/ -/**! 31. Switchable Sections **/ -/**! 32. Typed Effect **/ -/**! 33. Gradient BG **/ -/**! 34. Bars **/ -/**! 35. Navigation In Page **/ -/**! 36. Helper Classes **/ -/**! 37. Spacing **/ -/**! 38. Boxed Layout **/ -/**! 39. Wizard **/ -/**! 40. Alerts **/ -/**! 41. Progress - Horizontal **/ -/**! 42. Theme Overrides **/ -/**!**************/ -/**!**************/ -/**!**************/ -/**! 01. Reset **/ -*, -h1, -h2, -h3, -h4, -h5, -h6, -p, -ul, -a { - margin: 0; - padding: 0; -} -/**! 02. Typography **/ -html { - font-size: 87.5%; -} -@media all and (max-width: 768px) { - html { - font-size: 81.25%; - } -} -body { - font-size: 1em; - line-height: 1.85714286em; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; - font-family: 'Open Sans', 'Helvetica', 'Arial', sans-serif; - color: #666666; - font-weight: 400; -} -h1, -h2, -h3, -h4, -h5, -h6, -.h1, -.h2, -.h3, -.h4, -.h5, -.h6 { - font-family: 'Open Sans', 'Helvetica', 'Arial', sans-serif; - color: #252525; - font-weight: 300; - font-variant-ligatures: common-ligatures; - margin-top: 0; - margin-bottom: 0; -} -h1, -.h1 { - font-size: 3.14285714em; - line-height: 1.31818182em; -} -h2, -.h2 { - font-size: 2.35714286em; - line-height: 1.36363636em; -} -h3, -.h3 { - font-size: 1.78571429em; - line-height: 1.5em; -} -h4, -.h4 { - font-size: 1.35714286em; - line-height: 1.36842105em; -} -h5, -.h5 { - font-size: 1em; - line-height: 1.85714286em; -} -h6, -.h6 { - font-size: 0.85714286em; - line-height: 2.16666667em; -} -.lead { - font-size: 1.35714286em; - line-height: 1.68421053em; -} -@media all and (max-width: 767px) { - h1, - .h1 { - font-size: 2.35714286em; - line-height: 1.36363636em; - } - h2, - .h2 { - font-size: 1.78571429em; - line-height: 1.5em; - } - h3, - .h3 { - font-size: 1.35714286em; - line-height: 1.85714286em; - } - .lead { - font-size: 1.35714286em; - line-height: 1.36842105em; - } -} -p, -ul, -ol, -pre, -table, -blockquote { - margin-bottom: 1.85714286em; -} -ul, -ol { - list-style: none; - line-height: 1.85714286em; -} -ul.bullets { - list-style: inside; -} -ol { - list-style-type: upper-roman; - list-style-position: inside; -} -blockquote { - font-size: 1.78571429em; - line-height: 1.5em; - padding: 0; - margin: 0; - border-left: 0; -} -strong { - font-weight: 600; -} -hr { - margin: 1.85714286em 0; - border-color: #fafafa; -} -a:hover, -a:focus, -a:active { - text-decoration: none; - outline: none; -} -/*! Typography -- Helpers */ -.type--fade { - opacity: .5; -} -.type--uppercase { - text-transform: uppercase; -} -.type--bold { - font-weight: bold; -} -.type--italic { - font-style: italic; -} -.type--fine-print { - font-size: 0.85714286em; -} -.type--strikethrough { - text-decoration: line-through; - opacity: .5; -} -.type--underline { - text-decoration: underline; -} -.type--body-font { - font-family: 'Open Sans', 'Helvetica'; -} -/**! 03. Position **/ -body { - overflow-x: hidden; -} -.pos-relative { - position: relative; -} -.pos-absolute { - position: absolute; -} -.pos-absolute.container { - left: 0; - right: 0; -} -.pos-top { - top: 0; -} -.pos-bottom { - bottom: 0; -} -.pos-right { - right: 0; -} -.pos-left { - left: 0; -} -.float-left { - float: left; -} -.float-right { - float: right; -} -@media all and (max-width: 767px) { - .float-left, - .float-right { - float: none; - } - .float-left-xs { - float: left; - } - .float-right-xs { - float: right; - } -} -.pos-vertical-center { - position: relative; - top: 50%; - transform: translateY(-50%); - -webkit-transform: translateY(-50%); -} -@media all and (max-width: 767px) { - .pos-vertical-center { - top: 0; - transform: none; - -webkit-transform: none; - } -} -@media all and (max-height: 600px) { - .pos-vertical-center { - top: 0; - transform: none; - -webkit-transform: none; - } -} -.pos-vertical-align-columns { - display: table; - table-layout: fixed; - width: 100%; -} -.pos-vertical-align-columns > div[class*='col-'] { - display: table-cell; - float: none; - vertical-align: middle; -} -@media all and (max-width: 990px) { - .pos-vertical-align-columns { - display: block; - width: auto; - } - .pos-vertical-align-columns > div[class*='col-'] { - display: block; - } -} -.inline-block { - display: inline-block; -} -.block { - display: block; -} -@media all and (max-width: 767px) { - .block--xs { - display: block; - } -} -@media all and (max-width: 990px) { - .text-center-md { - text-align: center; - } - .text-left-md { - text-align: left; - } - .text-right-md { - text-align: right; - } -} -@media all and (max-width: 767px) { - .text-center-xs { - text-align: center; - } - .text-left-xs { - text-align: left; - } - .text-right-xs { - text-align: right; - } -} -/**! 04. Element Size **/ -.height-100, -.height-90, -.height-80, -.height-70, -.height-60, -.height-50, -.height-40, -.height-30, -.height-20, -.height-10 { - height: auto; - padding: 5em 0; -} -@media all and (max-width: 767px) { - .height-100, - .height-90, - .height-80, - .height-70, - .height-60, - .height-50, - .height-40, - .height-30, - .height-20, - .height-10 { - height: auto; - padding: 4em 0; - } -} -@media all and (min-height: 600px) and (min-width: 767px) { - .height-10 { - height: 10vh; - } - .height-20 { - height: 20vh; - } - .height-30 { - height: 30vh; - } - .height-40 { - height: 40vh; - } - .height-50 { - height: 50vh; - } - .height-60 { - height: 60vh; - } - .height-70 { - height: 70vh; - } - .height-80 { - height: 80vh; - } - .height-90 { - height: 90vh; - } - .height-100 { - height: 100vh; - } -} -section.height-auto { - height: auto; -} -section.height-auto .pos-vertical-center { - top: 0; - position: relative; - transform: none; -} -@media all and (max-width: 767px) { - div[class*='col-'][class*='height-'] { - padding-top: 5.57142857em !important; - padding-bottom: 5.57142857em !important; - } -} -/**! 05. Images **/ -img { - max-width: 100%; - margin-bottom: 1.85714286em; -} -/*p+img, img:last-child{ - margin-bottom: 0; -}*/ -.img--fullwidth { - width: 100%; -} -[data-grid="2"].masonry { - -webkit-column-count: 2; - -webkit-column-gap: 0; - -moz-column-count: 2; - -moz-column-gap: 0; - column-count: 2; - column-gap: 0; -} -[data-grid="2"].masonry li { - width: 100%; - float: none; -} -[data-grid="2"] li { - width: 50%; - display: inline-block; -} -[data-grid="3"].masonry { - -webkit-column-count: 3; - -webkit-column-gap: 0; - -moz-column-count: 3; - -moz-column-gap: 0; - column-count: 3; - column-gap: 0; -} -[data-grid="3"].masonry li { - width: 100%; - float: none; -} -[data-grid="3"] li { - width: 33.33333333%; - display: inline-block; -} -[data-grid="4"].masonry { - -webkit-column-count: 4; - -webkit-column-gap: 0; - -moz-column-count: 4; - -moz-column-gap: 0; - column-count: 4; - column-gap: 0; -} -[data-grid="4"].masonry li { - width: 100%; - float: none; -} -[data-grid="4"] li { - width: 25%; - display: inline-block; -} -[data-grid="5"].masonry { - -webkit-column-count: 5; - -webkit-column-gap: 0; - -moz-column-count: 5; - -moz-column-gap: 0; - column-count: 5; - column-gap: 0; -} -[data-grid="5"].masonry li { - width: 100%; - float: none; -} -[data-grid="5"] li { - width: 20%; - display: inline-block; -} -[data-grid="6"].masonry { - -webkit-column-count: 6; - -webkit-column-gap: 0; - -moz-column-count: 6; - -moz-column-gap: 0; - column-count: 6; - column-gap: 0; -} -[data-grid="6"].masonry li { - width: 100%; - float: none; -} -[data-grid="6"] li { - width: 16.66666667%; - display: inline-block; -} -[data-grid="7"].masonry { - -webkit-column-count: 7; - -webkit-column-gap: 0; - -moz-column-count: 7; - -moz-column-gap: 0; - column-count: 7; - column-gap: 0; -} -[data-grid="7"].masonry li { - width: 100%; - float: none; -} -[data-grid="7"] li { - width: 14.28571429%; - display: inline-block; -} -[data-grid="8"].masonry { - -webkit-column-count: 8; - -webkit-column-gap: 0; - -moz-column-count: 8; - -moz-column-gap: 0; - column-count: 8; - column-gap: 0; -} -[data-grid="8"].masonry li { - width: 100%; - float: none; -} -[data-grid="8"] li { - width: 12.5%; - display: inline-block; -} -@media all and (max-width: 767px) { - [data-grid]:not(.masonry) li { - width: 33.333333%; - } - [data-grid="2"]:not(.masonry) li { - width: 50%; - } - [data-grid].masonry { - -webkit-column-count: 1; - -moz-column-count: 1; - column-count: 1; - } -} -.background-image-holder { - position: absolute; - height: 100%; - top: 0; - left: 0; - background-size: cover !important; - background-position: 50% 50% !important; - z-index: 0; - transition: opacity .3s linear; - -webkit-transition: opacity .3s linear; - opacity: 0; - background: #252525; -} -.background-image-holder:not([class*='col-']) { - width: 100%; -} -.background-image-holder.background--bottom { - background-position: 50% 100% !important; -} -.background-image-holder.background--top { - background-position: 50% 0% !important; -} -.image--light .background-image-holder { - background: none; -} -.background-image-holder img { - display: none; -} -[data-overlay] { - position: relative; -} -[data-overlay]:before { - position: absolute; - content: ''; - background: #252525; - width: 100%; - height: 100%; - top: 0; - left: 0; - z-index: 1; -} -[data-overlay] *:not(.container):not(.background-image-holder) { - z-index: 2; -} -[data-overlay].image--light:before { - background: #fff; -} -[data-overlay].bg--primary:before { - background: #ff4f4f; -} -[data-overlay="1"]:before { - opacity: 0.1; -} -[data-overlay="2"]:before { - opacity: 0.2; -} -[data-overlay="3"]:before { - opacity: 0.3; -} -[data-overlay="4"]:before { - opacity: 0.4; -} -[data-overlay="5"]:before { - opacity: 0.5; -} -[data-overlay="6"]:before { - opacity: 0.6; -} -[data-overlay="7"]:before { - opacity: 0.7; -} -[data-overlay="8"]:before { - opacity: 0.8; -} -[data-overlay="9"]:before { - opacity: 0.9; -} -[data-overlay="10"]:before { - opacity: 1; -} -[data-overlay="0"]:before { - opacity: 0; -} -[data-scrim-bottom] { - position: relative; -} -[data-scrim-bottom]:before { - position: absolute; - content: ''; - width: 100%; - height: 80%; - background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, #252525 100%); - /* FF3.6+ */ - background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(0, 0, 0, 0)), color-stop(100%, #252525)); - /* Chrome,Safari4+ */ - background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, #252525 100%); - /* Chrome10+,Safari5.1+ */ - background: -o-linear-gradient(top, rgba(0, 0, 0, 0) 0%, #252525 100%); - /* Opera 11.10+ */ - background: -ms-linear-gradient(top, rgba(0, 0, 0, 0) 0%, #252525 100%); - /* IE10+ */ - background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, #252525 100%); - bottom: 0; - left: 0; - z-index: 1; - backface-visibility: hidden; -} -[data-scrim-bottom]:not(.image--light) h1, -[data-scrim-bottom]:not(.image--light) h2, -[data-scrim-bottom]:not(.image--light) h3, -[data-scrim-bottom]:not(.image--light) h4, -[data-scrim-bottom]:not(.image--light) h5, -[data-scrim-bottom]:not(.image--light) h6 { - color: #a5a5a5; - color: #f1f1f1; -} -[data-scrim-bottom]:not(.image--light) p, -[data-scrim-bottom]:not(.image--light) span, -[data-scrim-bottom]:not(.image--light) ul { - color: #e6e6e6; -} -[data-scrim-bottom].image--light:before { - background: #fff; -} -[data-scrim-bottom="1"]:before { - opacity: 0.1; -} -[data-scrim-bottom="2"]:before { - opacity: 0.2; -} -[data-scrim-bottom="3"]:before { - opacity: 0.3; -} -[data-scrim-bottom="4"]:before { - opacity: 0.4; -} -[data-scrim-bottom="5"]:before { - opacity: 0.5; -} -[data-scrim-bottom="6"]:before { - opacity: 0.6; -} -[data-scrim-bottom="7"]:before { - opacity: 0.7; -} -[data-scrim-bottom="8"]:before { - opacity: 0.8; -} -[data-scrim-bottom="9"]:before { - opacity: 0.9; -} -[data-scrim-bottom="10"]:before { - opacity: 1; -} -[data-scrim-top] { - position: relative; -} -[data-scrim-top]:before { - position: absolute; - content: ''; - width: 100%; - height: 80%; - background: -moz-linear-gradient(bottom, #252525 0%, rgba(0, 0, 0, 0) 100%); - /* FF3.6+ */ - background: -webkit-gradient(linear, left bottom, left bottom, color-stop(0%, #252525), color-stop(100%, rgba(0, 0, 0, 0))); - /* Chrome,Safari4+ */ - background: -webkit-linear-gradient(bottom, #252525 0%, rgba(0, 0, 0, 0) 100%); - /* Chrome10+,Safari5.1+ */ - background: -o-linear-gradient(bottom, #252525 0%, rgba(0, 0, 0, 0) 100%); - /* Opera 11.10+ */ - background: -ms-linear-gradient(bottom, #252525 0%, rgba(0, 0, 0, 0) 100%); - /* IE10+ */ - background: linear-gradient(to bottom, #252525 0%, rgba(0, 0, 0, 0) 100%); - top: 0; - left: 0; - z-index: 1; -} -[data-scrim-top]:not(.image--light) h1, -[data-scrim-top]:not(.image--light) h2, -[data-scrim-top]:not(.image--light) h3, -[data-scrim-top]:not(.image--light) h4, -[data-scrim-top]:not(.image--light) h5, -[data-scrim-top]:not(.image--light) h6 { - color: #fff; -} -[data-scrim-top]:not(.image--light) p, -[data-scrim-top]:not(.image--light) span, -[data-scrim-top]:not(.image--light) ul { - color: #e6e6e6; -} -[data-scrim-top].image--light:before { - background: #fff; -} -[data-scrim-top="1"]:before { - opacity: 0.1; -} -[data-scrim-top="2"]:before { - opacity: 0.2; -} -[data-scrim-top="3"]:before { - opacity: 0.3; -} -[data-scrim-top="4"]:before { - opacity: 0.4; -} -[data-scrim-top="5"]:before { - opacity: 0.5; -} -[data-scrim-top="6"]:before { - opacity: 0.6; -} -[data-scrim-top="7"]:before { - opacity: 0.7; -} -[data-scrim-top="8"]:before { - opacity: 0.8; -} -[data-scrim-top="9"]:before { - opacity: 0.9; -} -[data-scrim-top="10"]:before { - opacity: 1; -} -.imagebg { - position: relative; -} -.imagebg .container { - z-index: 2; -} -.imagebg .container:not(.pos-absolute) { - position: relative; -} -.imagebg:not(.image--light) h1, -.imagebg:not(.image--light) h2, -.imagebg:not(.image--light) h3, -.imagebg:not(.image--light) h4, -.imagebg:not(.image--light) h5, -.imagebg:not(.image--light) h6, -.imagebg:not(.image--light) p, -.imagebg:not(.image--light) ul, -.imagebg:not(.image--light) blockquote { - color: #fff; -} -.imagebg:not(.image--light) .bg--white h1, -.imagebg:not(.image--light) .bg--white h2, -.imagebg:not(.image--light) .bg--white h3, -.imagebg:not(.image--light) .bg--white h4, -.imagebg:not(.image--light) .bg--white h5, -.imagebg:not(.image--light) .bg--white h6 { - color: #252525; -} -.imagebg:not(.image--light) .bg--white p, -.imagebg:not(.image--light) .bg--white ul { - color: #666666; -} -div[data-overlay] h1, -div[data-overlay] h2, -div[data-overlay] h3, -div[data-overlay] h4, -div[data-overlay] h5, -div[data-overlay] h6 { - color: #fff; -} -div[data-overlay] p, -div[data-overlay] ul { - color: #fff; -} -.parallax { - overflow: hidden; -} -.parallax .background-image-holder { - transition: none !important; - -webkit-transition: none !important; - -moz-transition: none !important; -} -.image--xxs { - max-height: 1.85714286em; -} -.image--xs { - max-height: 3.71428571em; -} -.image--sm { - max-height: 5.57142857em; -} -.image--md { - max-height: 7.42857143em; -} -/**! 06. Buttons **/ -.btn { - font-family: 'Open Sans', 'Helvetica', 'Arial', sans-serif; - transition: 0.1s linear; - -webkit-transition: 0.1s linear; - -moz-transition: 0.1s linear; - border-radius: 6px; - padding-top: 0.46428571em; - padding-bottom: 0.46428571em; - padding-right: 2.78571429em; - padding-left: 2.78571429em; - border: 1px solid #252525; - border-width: 1px; - font-size: inherit; - line-height: 1.85714286em; -} -.btn .btn__text, -.btn i { - color: #252525; - border-color: #252525; - font-weight: 700; - font-size: 0.85714286em; -} -.btn[class*='col-'] { - margin-left: 0; - margin-right: 0; -} -.btn:active { - box-shadow: none; - -webkit-box-shadow: none; -} -.btn.bg--facebook, -.btn.bg--twitter, -.btn.bg--instagram, -.btn.bg--googleplus, -.btn.bg--pinterest, -.btn.bg--dribbble, -.btn.bg--behance, -.btn.bg--dark { - border-color: rgba(0, 0, 0, 0) !important; -} -.btn.bg--facebook .btn__text, -.btn.bg--twitter .btn__text, -.btn.bg--instagram .btn__text, -.btn.bg--googleplus .btn__text, -.btn.bg--pinterest .btn__text, -.btn.bg--dribbble .btn__text, -.btn.bg--behance .btn__text, -.btn.bg--dark .btn__text { - color: #fff; -} -.btn.bg--facebook .btn__text i, -.btn.bg--twitter .btn__text i, -.btn.bg--instagram .btn__text i, -.btn.bg--googleplus .btn__text i, -.btn.bg--pinterest .btn__text i, -.btn.bg--dribbble .btn__text i, -.btn.bg--behance .btn__text i, -.btn.bg--dark .btn__text i { - color: #fff; -} -.btn.bg--facebook:hover, -.btn.bg--twitter:hover, -.btn.bg--instagram:hover, -.btn.bg--googleplus:hover, -.btn.bg--pinterest:hover, -.btn.bg--dribbble:hover, -.btn.bg--behance:hover, -.btn.bg--dark:hover { - opacity: .9; -} -.btn.bg--error { - background: #e23636; - border-color: #e23636 !important; -} -.btn.bg--error:hover { - background: #e54c4c; - border-color: #e54c4c !important; - color: #fff !important; -} -.btn.bg--error .btn__text { - color: #fff; -} -.btn.bg--error .btn__text i { - color: #fff; -} -@media all and (min-width: 768px) { - .btn + .btn { - margin-left: 1.85714286em; - } -} -.btn:first-child { - margin-left: 0; -} -.btn:last-child { - margin-right: 0; -} -.btn--xs { - padding-top: 0; - padding-bottom: 0; - padding-right: 1.39285714em; - padding-left: 1.39285714em; -} -.btn--sm { - padding-top: 0.30952381em; - padding-bottom: 0.30952381em; - padding-right: 1.85714286em; - padding-left: 1.85714286em; -} -.btn--lg { - padding-top: 0.58035714em; - padding-bottom: 0.58035714em; - padding-right: 3.48214286em; - padding-left: 3.48214286em; -} -.btn--lg .btn__text { - font-size: 1.07142857em; -} -.btn--primary, -.btn--primary:visited { - background: #ff4f4f; - border-color: #ff4f4f; -} -.btn--primary .btn__text, -.btn--primary:visited .btn__text { - color: #fff; -} -.btn--primary .btn__text i, -.btn--primary:visited .btn__text i { - color: #fff; -} -.btn--primary:hover { - background: #ff6969; -} -.btn--primary:active { - background: #ff3535; -} -.btn--primary-1, -.btn--primary-1:visited { - background: #343851; - border-color: #343851; -} -.btn--primary-1 .btn__text, -.btn--primary-1:visited .btn__text { - color: #fff; -} -.btn--primary-1:hover { - background: #3e4361; -} -.btn--primary-1:active { - background: #2a2d41; -} -.btn--primary-2, -.btn--primary-2:visited { - background: #64789c; - border-color: #64789c; -} -.btn--primary-2 .btn__text, -.btn--primary-2:visited .btn__text { - color: #fff; -} -.btn--primary-2:hover { - background: #7486a6; -} -.btn--primary-2:active { - background: #5a6c8d; -} -.btn--secondary { - background: #fafafa; - border-color: #fafafa; -} -.btn--secondary:hover { - background: #ffffff; -} -.btn--secondary:active { - background: #f5f5f5; -} -.btn--white { - background: #fff; - color: #252525; - border-color: #fff; -} -.btn--white i { - color: #252525; -} -.btn--transparent { - background: none; - border-color: rgba(0, 0, 0, 0); - padding-left: 0; - padding-right: 0; -} -.btn--transparent.btn--white .btn__text { - color: #fff; -} -.btn--unfilled { - background: none; -} -.btn--unfilled.btn--white .btn__text { - color: #fff; -} -.btn--unfilled.btn--white i { - color: #fff; -} -.btn--floating { - position: fixed; - bottom: 3.71428571em; - right: 3.71428571em; - z-index: 10; -} -/**! 07. Icons **/ -.icon { - line-height: 1em; - font-size: 3.14285714em; -} -.icon--xs { - font-size: 1em; -} -.icon--sm { - font-size: 2.35714286em; -} -.icon--lg { - font-size: 5.57142857em; -} -/**! 08. Lists **/ -ul:last-child { - margin: 0; -} -.list-inline li { - padding: 0 1em; - margin-left: 0; -} -.list-inline li:first-child { - padding-left: 0; -} -.list-inline li:last-child { - padding-right: 0; -} -.list-inline.list-inline--narrow li { - padding: 0 .5em; -} -.list-inline.list-inline--wide li { - padding: 0 2em; -} -/**! 09. Lightbox **/ -.lb-outerContainer { - border-radius: 0; -} -.lb-outerContainer .lb-container { - padding: 0; -} -.lb-outerContainer .lb-container img { - margin: 0; -} -.lightbox-gallery { - overflow: hidden; -} -.lightbox-gallery li { - float: left; -} -.lightbox-gallery li img { - margin: 0; - width: 100%; -} -.lightbox-gallery.gallery--gaps li { - padding: 0.46428571em; -} -/**! 10. Menus **/ -.menu-horizontal > li:not(:hover) > a, -.menu-horizontal > li:not(:hover) > span, -.menu-horizontal > li:not(:hover) > .modal-instance > .modal-trigger { - opacity: .5; -} -.menu-horizontal > li > a, -.menu-horizontal > li > span, -.menu-horizontal > li > .modal-instance > .modal-trigger { - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; - color: #252525; -} -.menu-horizontal > li > a:hover, -.menu-horizontal > li > span:hover, -.menu-horizontal > li > .modal-instance > .modal-trigger:hover { - color: #252525; -} -.bg--dark .menu-horizontal > li > a, -.bg--dark .menu-horizontal > li > span { - color: #fff; -} -.bg--dark .menu-horizontal > li > a:hover, -.bg--dark .menu-horizontal > li > span:hover { - color: #fff; -} -.menu-vertical { - width: 100%; -} -.menu-vertical li { - width: 100%; -} -.menu-vertical li a { - font-weight: normal; -} -@media all and (min-width: 990px) { - .menu-horizontal { - display: inline-block; - } - .menu-horizontal > li { - display: inline-block; - } - .menu-horizontal > li:not(:last-child) { - margin-right: 1.85714286em; - } - .menu-vertical { - display: inline-block; - } - .menu-vertical li { - white-space: nowrap; - } - .menu-vertical .dropdown__container { - top: 0; - } - .menu-vertical .dropdown__container .dropdown__content:not([class*='bg-']) { - background: #ffffff; - } - .menu-vertical .dropdown__container .dropdown__content { - transform: translateX(75%); - } -} -/**! 11. Dropdowns **/ -.dropdown { - position: relative; -} -.dropdown .dropdown__container { - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; - opacity: 0; - pointer-events: none; - position: absolute; - z-index: 999; -} -.dropdown .dropdown__container .dropdown__container:before { - height: 0; -} -.dropdown .dropdown__content { - padding: 1.85714286em; -} -.dropdown .dropdown__content:not([class*='col-']) { - width: 18.57142857em; -} -.dropdown .dropdown__content:not([class*='bg-']) { - background: #ffffff; -} -.dropdown .dropdown__content:not([class='bg--dark']) .menu-vertical a { - color: #666666; -} -.dropdown .dropdown__trigger { - cursor: pointer; - user-select: none; -} -.dropdown.dropdown--active > .dropdown__container { - opacity: 1; -} -.dropdown.dropdown--active > .dropdown__container > .container > .row > .dropdown__content { - pointer-events: all; -} -@media all and (min-width: 991px) { - .dropdown .dropdown__container:before { - height: 0.92857143em; - width: 100%; - content: ''; - display: block; - } - .dropdown .dropdown__content.dropdown__content--md { - padding: 2.78571429em; - } - .dropdown .dropdown__content.dropdown__content--lg { - padding: 3.71428571em; - } - .dropdown .dropdown__content.dropdown__content--xlg { - padding: 4.64285714em; - } -} -@media all and (max-width: 767px) { - .dropdown .dropdown__container { - min-width: 100%; - position: relative; - display: none; - } - .dropdown .dropdown__content { - padding: 1.85714286em; - left: 0 !important; - } - .dropdown.dropdown--active > .dropdown__container { - display: block; - } -} -body.dropdowns--hover .dropdown:not(.dropdown--click):hover > .dropdown__container { - opacity: 1; -} -body.dropdowns--hover .dropdown:not(.dropdown--click):hover > .dropdown__container:before { - pointer-events: all; -} -body.dropdowns--hover .dropdown:not(.dropdown--click):hover > .dropdown__container .dropdown__content { - pointer-events: all; -} -body:not(.dropdowns--hover) .dropdown.dropdown--hover:hover > .dropdown__container { - opacity: 1; -} -body:not(.dropdowns--hover) .dropdown.dropdown--hover:hover > .dropdown__container:before { - pointer-events: all; -} -body:not(.dropdowns--hover) .dropdown.dropdown--hover:hover > .dropdown__container .dropdown__content { - pointer-events: all; -} -@media all and (max-width: 990px) { - body.dropdowns--hover .dropdown:not(.dropdown--click).dropdown--active > .dropdown__container { - display: block; - } - body.dropdowns--hover .dropdown:not(.dropdown--click).dropdown--active > .dropdown__container:before { - pointer-events: all; - } -} -@media all and (max-width: 767px) { - .dropdown.dropdown--absolute .dropdown__container { - position: absolute; - } -} -/**! 12. Form Elements **/ -form { - max-width: 100%; -} -form + form { - margin-top: 30px; -} -form:before, -form:after { - content: "."; - display: block; - height: 0; - overflow: hidden; -} -form:after { - clear: both; -} -label { - margin: 0; - font-size: 1.14285714em; - font-weight: 400; -} -input[type], -textarea, -select { - -webkit-appearance: none; - background: #fcfcfc; - padding: 0.46428571em; - border-radius: 6px; - border: 1px solid #ececec; -} -input[type]:focus, -textarea:focus, -select:focus { - outline: none; -} -input[type]:active, -textarea:active, -select:active { - outline: none; -} -input[type]::-webkit-input-placeholder, -textarea::-webkit-input-placeholder, -select::-webkit-input-placeholder { - color: #b3b3b3; - font-size: 1.14285714em; -} -input[type]:-moz-placeholder, -textarea:-moz-placeholder, -select:-moz-placeholder { - /* Firefox 18- */ - color: #b3b3b3; - font-size: 1.14285714em; -} -input[type]::-moz-placeholder, -textarea::-moz-placeholder, -select::-moz-placeholder { - /* Firefox 19+ */ - color: #b3b3b3; - font-size: 1.14285714em; -} -input[type]:-ms-input-placeholder, -textarea:-ms-input-placeholder, -select:-ms-input-placeholder { - color: #b3b3b3; - font-size: 1.14285714em; -} -input[type="image"] { - border: none; - padding: none; - width: auto; -} -textarea { - display: block; - width: 100%; - max-width: 100%; -} -select { - cursor: pointer; - padding-right: 1.85714286em; - -webkit-appearance: none; -} -select::ms-expand { - display: none; -} -input[type="submit"] { - background: none; - outline: none; - border: none; - background: #ff4f4f; - padding: 0.46428571em 2.78571429em 0.46428571em 2.78571429em; - color: #fff; -} -@keyframes load { - 0% { - opacity: 0; - width: 0; - } - 50% { - width: 100%; - opacity: .8; - left: 0; - } - 100% { - left: 100%; - opacity: 0; - } -} -button { - background: none; -} -button[type="submit"].btn--loading { - position: relative; - overflow: hidden; - pointer-events: none; - color: rgba(0, 0, 0, 0); -} -button[type="submit"].btn--loading * { - opacity: 0; -} -button[type="submit"].btn--loading:after { - content: ''; - position: absolute; - width: 0; - height: 100%; - background: #ddd; - animation: load 1.5s ease-out infinite; - left: 0; - top: 0; -} -button[type="submit"].btn--loading .btn__text { - opacity: 0; -} -button:focus { - outline: none !important; -} -button.bg--error { - color: #fff; -} -.input-icon { - position: relative; -} -.input-icon i { - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; - cursor: default; - position: absolute; -} -.input-checkbox, -.input-radio, -.input-select { - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; - display: inline-block; -} -.input-checkbox input, -.input-radio input, -.input-select input { - opacity: 0 !important; - height: 0 !important; - width: 0 !important; - position: absolute !important; -} -.input-checkbox label, -.input-radio label, -.input-select label { - display: block !important; - cursor: pointer; -} -.input-checkbox { - padding: 0; -} -.input-checkbox label { - width: 1.85714286em; - height: 1.85714286em; - border-radius: 6px; - background: #000; -} -.input-radio { - padding: 0; -} -.input-radio label { - width: 1.85714286em; - height: 1.85714286em; - border-radius: 50%; - background: #000; -} -.input-select { - position: relative; -} -.input-select i { - position: absolute; - top: 50%; - transform: translateY(-50%); - -webkit-transform: translateY(-50%); - right: 1em; - font-size: .87em; -} -.input-file { - position: relative; - display: inline-block; -} -.input-file input { - display: none; -} -.form-error { - margin-top: 1.5625em; - padding: 0.78125em; - background: #D84D4D; - color: #fff; - position: fixed; - min-width: 350px; - left: 50%; - bottom: 1.5625em; - transform: translate3d(-50%, 0, 0); - -webkit-transform: translate3d(-50%, 0, 0); - z-index: 999; - box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); - box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1); -} -.form-success { - margin-top: 1.5625em; - padding: 0.78125em; - background: #1DC020; - color: #fff; - position: fixed; - min-width: 350px; - left: 50%; - bottom: 1.5625em; - transform: translate3d(-50%, 0, 0); - -webkit-transform: translate3d(-50%, 0, 0); - z-index: 999; - box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); - box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1); -} -.attempted-submit .field-error { - border-color: #D84D4D !important; -} -.attempted-submit div.recaptcha.field-error { - border-color: #D84D4D !important; - border-style: solid; - border: 1px solid; - border-radius: 5px; - padding: 5px; -} -div.recaptcha iframe { - min-height: 0; -} -/**! 13. Accordions **/ -.accordion li .accordion__title, -.accordion li .accordion__content, -.accordion li .accordion__content * { - transition: 0.3s linear; - -webkit-transition: 0.3s linear; - -moz-transition: 0.3s linear; -} -.accordion li .accordion__title { - cursor: pointer; - padding: 0.46428571em 0.92857143em; - border: 1px solid #ececec; - border-bottom: none; - background: none; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; -} -.accordion li:last-child .accordion__title { - border-bottom: 1px solid #ececec; -} -.accordion li .accordion__content { - opacity: 0; - visibility: hidden; - max-height: 0; -} -.accordion li .accordion__content > * { - display: none; -} -.accordion li .accordion__content > *:first-child { - padding-top: 0; -} -.accordion li .accordion__content > *:last-child { - padding-bottom: 0; -} -.accordion li.active .accordion__title { - background: #ff4f4f; - border-bottom: 1px solid #ececec; -} -.accordion li.active .accordion__content { - opacity: 1; - visibility: visible; - max-height: 500px; -} -.accordion li.active .accordion__content > * { - display: inline-block; -} -/**! 14. Breadcrumbs **/ -.breadcrumb { - padding: 0; - margin: 0; - background: none; - display: inline-block; -} -.breadcrumb li { - font-size: 1em; -} -.breadcrumb li + li:before { - padding: 0 0.46428571em; -} -/**! 15. Pie Charts **/ -.radial { - position: relative; -} -.radial .radial__label { - position: absolute; - top: 50%; - left: 50%; - transform: translateX(-50%) translateY(-50%); - -webkit-transform: translateX(-50%) translateY(-50%); - margin-bottom: 0; -} -/**! 16. Tabs **/ -.tabs { - display: block; - margin-bottom: 0; -} -.tabs > li { - display: inline-block; - opacity: .5; - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; -} -.tabs > .active, -.tabs:hover { - opacity: 1; -} -.tabs .tab__title { - cursor: pointer; -} -.tabs .tab__title:not(.btn) { - padding: 0 1.85714286em; -} -.tabs li:first-child .tab__title:not(.btn) { - padding-left: 0; -} -.tabs .tab__content { - display: none; -} -.tabs-content { - margin-top: 1em; -} -.tabs-content li > .tab__content { - width: 100%; - display: none; -} -.tabs-content > .active > .tab__content { - display: block; -} -.tabs-container[data-content-align="left"] .tabs-content { - text-align: left; -} -@media all and (max-width: 767px) { - .tabs-content > li:not(.active) .tab__content { - display: none !important; - } -} -/**! 17. Boxes **/ -.boxed { - position: relative; - overflow: hidden; - padding: 1.85714286em; - margin-bottom: 30px; -} -.boxed.boxed--lg { - padding: 2.78571429em; -} -.boxed.boxed--sm { - padding: 1.23809524em; -} -.boxed.boxed--border { - border: 1px solid #ececec; -} -.boxed > div[class*='col-']:first-child:not(.boxed) { - padding-left: 0; -} -.boxed > div[class*='col-']:last-child:not(.boxed) { - padding-right: 0; -} -img + .boxed { - margin-top: -1.85714286em; -} -@media all and (max-width: 767px) { - .boxed { - padding: 1.23809524em; - margin-bottom: 15px; - } - .boxed.boxed--lg { - padding: 1.23809524em; - } - .boxed div[class*='col-']:not(.boxed) { - padding: 0; - } - .boxed:last-child { - margin-bottom: 15px; - } -} -/**! 18. Sliders Flickity **/ -.slides:not(.flickity-enabled) li.imagebg:not(:first-child) { - display: none; -} -.slides:not(.flickity-enabled) li.imagebg:first-child { - background: #252525; - animation: backgroundLoad .5s ease alternate infinite; -} -.slides:not(.flickity-enabled) li.imagebg:first-child .container { - opacity: 0; -} -@keyframes backgroundLoad { - 0% { - background: #252525; - } - 100% { - background: #3f3f3f; - } -} -.slider.height-10 { - height: auto; -} -.slider.height-10 .slides .flickity-slider > li { - height: 10vh; - padding: 0; -} -@media all and (min-width: 768px) { - .slider.height-10 .slides li.imagebg { - min-height: 10vh; - } -} -.slider.height-20 { - height: auto; -} -.slider.height-20 .slides .flickity-slider > li { - height: 20vh; - padding: 0; -} -@media all and (min-width: 768px) { - .slider.height-20 .slides li.imagebg { - min-height: 20vh; - } -} -.slider.height-30 { - height: auto; -} -.slider.height-30 .slides .flickity-slider > li { - height: 30vh; - padding: 0; -} -@media all and (min-width: 768px) { - .slider.height-30 .slides li.imagebg { - min-height: 30vh; - } -} -.slider.height-40 { - height: auto; -} -.slider.height-40 .slides .flickity-slider > li { - height: 40vh; - padding: 0; -} -@media all and (min-width: 768px) { - .slider.height-40 .slides li.imagebg { - min-height: 40vh; - } -} -.slider.height-50 { - height: auto; -} -.slider.height-50 .slides .flickity-slider > li { - height: 50vh; - padding: 0; -} -@media all and (min-width: 768px) { - .slider.height-50 .slides li.imagebg { - min-height: 50vh; - } -} -.slider.height-60 { - height: auto; -} -.slider.height-60 .slides .flickity-slider > li { - height: 60vh; - padding: 0; -} -@media all and (min-width: 768px) { - .slider.height-60 .slides li.imagebg { - min-height: 60vh; - } -} -.slider.height-70 { - height: auto; -} -.slider.height-70 .slides .flickity-slider > li { - height: 70vh; - padding: 0; -} -@media all and (min-width: 768px) { - .slider.height-70 .slides li.imagebg { - min-height: 70vh; - } -} -.slider.height-80 { - height: auto; -} -.slider.height-80 .slides .flickity-slider > li { - height: 80vh; - padding: 0; -} -@media all and (min-width: 768px) { - .slider.height-80 .slides li.imagebg { - min-height: 80vh; - } -} -.slider.height-90 { - height: auto; -} -.slider.height-90 .slides .flickity-slider > li { - height: 90vh; - padding: 0; -} -@media all and (min-width: 768px) { - .slider.height-90 .slides li.imagebg { - min-height: 90vh; - } -} -.slider.height-100 { - height: auto; -} -.slider.height-100 .slides .flickity-slider > li { - height: 100vh; - padding: 0; -} -@media all and (min-width: 768px) { - .slider.height-100 .slides li.imagebg { - min-height: 100vh; - } -} -.slider .slides .flickity-slider > li:not([class*='col-']) { - width: 100%; -} -.slider .slides.slides--gapless li[class*='col-'] { - padding-left: 0; - padding-right: 0; -} -.slider[data-arrows="true"].slider--arrows-hover:not(:hover) .flickity-prev-next-button { - opacity: 0; -} -.slider[data-paging="true"]:not(section) { - margin-bottom: 3.71428571em; -} -.slider[data-paging="true"]:not(section) .flickity-page-dots { - bottom: -3.71428571em; -} -.slider[data-paging="true"]:not([class*='text-']) .flickity-page-dots { - text-align: center; -} -.slider[data-children="1"] .flickity-prev-next-button { - display: none; -} -.slider:not([data-paging="true"]) .slides { - margin: 0; -} -.slider.controls--dark .flickity-page-dots .dot { - background: #252525; -} -.slider.controls--dark .flickity-prev-next-button:before { - color: #252525; -} -section.slider { - padding: 0; -} -section.slider.height-10 { - height: auto; -} -section.slider.height-10 .slides .flickity-slider > li { - height: 10vh; - padding: 0; -} -@media all and (min-width: 768px) { - section.slider.height-10 .slides li.imagebg { - min-height: 10vh; - } -} -section.slider.height-20 { - height: auto; -} -section.slider.height-20 .slides .flickity-slider > li { - height: 20vh; - padding: 0; -} -@media all and (min-width: 768px) { - section.slider.height-20 .slides li.imagebg { - min-height: 20vh; - } -} -section.slider.height-30 { - height: auto; -} -section.slider.height-30 .slides .flickity-slider > li { - height: 30vh; - padding: 0; -} -@media all and (min-width: 768px) { - section.slider.height-30 .slides li.imagebg { - min-height: 30vh; - } -} -section.slider.height-40 { - height: auto; -} -section.slider.height-40 .slides .flickity-slider > li { - height: 40vh; - padding: 0; -} -@media all and (min-width: 768px) { - section.slider.height-40 .slides li.imagebg { - min-height: 40vh; - } -} -section.slider.height-50 { - height: auto; -} -section.slider.height-50 .slides .flickity-slider > li { - height: 50vh; - padding: 0; -} -@media all and (min-width: 768px) { - section.slider.height-50 .slides li.imagebg { - min-height: 50vh; - } -} -section.slider.height-60 { - height: auto; -} -section.slider.height-60 .slides .flickity-slider > li { - height: 60vh; - padding: 0; -} -@media all and (min-width: 768px) { - section.slider.height-60 .slides li.imagebg { - min-height: 60vh; - } -} -section.slider.height-70 { - height: auto; -} -section.slider.height-70 .slides .flickity-slider > li { - height: 70vh; - padding: 0; -} -@media all and (min-width: 768px) { - section.slider.height-70 .slides li.imagebg { - min-height: 70vh; - } -} -section.slider.height-80 { - height: auto; -} -section.slider.height-80 .slides .flickity-slider > li { - height: 80vh; - padding: 0; -} -@media all and (min-width: 768px) { - section.slider.height-80 .slides li.imagebg { - min-height: 80vh; - } -} -section.slider.height-90 { - height: auto; -} -section.slider.height-90 .slides .flickity-slider > li { - height: 90vh; - padding: 0; -} -@media all and (min-width: 768px) { - section.slider.height-90 .slides li.imagebg { - min-height: 90vh; - } -} -section.slider.height-100 { - height: auto; -} -section.slider.height-100 .slides .flickity-slider > li { - height: 100vh; - padding: 0; -} -@media all and (min-width: 768px) { - section.slider.height-100 .slides li.imagebg { - min-height: 100vh; - } -} -section.slider[data-paging="true"] .flickity-page-dots { - bottom: 1.85714286em; -} -section.slider:not(.image--light)[data-paging="true"] .flickity-page-dots .dot { - background: #fff; -} -section.slider .slides { - margin: 0; -} -@media all and (max-width: 767px) { - section.slider[class*='height-'] .slides .flickity-slider > li { - height: auto; - padding: 7.42857143em 0; - } - section.slider.space--lg .slides .flickity-slider > li { - padding: 11.14285714em 0; - } - section.slider.space--xlg .slides .flickity-slider > li { - padding: 11.14285714em 0; - } -} -section.bg--dark .slider[data-paging="true"] .flickity-page-dots .dot, -section.bg--primary .slider[data-paging="true"] .flickity-page-dots .dot { - background: #fff; -} -.flickity-page-dots .dot { - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; - width: 8px; - height: 8px; - border-radius: 50%; - background: #252525; - border: none; - margin: 0 0.46428571em; -} -.flickity-page-dots .dot:hover:not(.is-selected) { - opacity: .6; -} -.text-center .flickity-page-dots, -section.slider .flickity-page-dots { - text-align: center; -} -.flickity-prev-next-button svg { - display: none; -} -.flickity-prev-next-button:before { - font-family: 'stack-interface'; - content: "\e80c"; - font-size: 1em; - font-weight: normal; -} -.flickity-prev-next-button.previous:before { - content: "\e80b"; -} -.imagebg:not(.image--light) .flickity-page-dots .dot, -.bg--dark .flickity-page-dots .dot { - background: #fff; -} -/**! 19. Hover Elements **/ -.hover-element { - position: relative; - overflow: hidden; - margin-bottom: 30px; -} -.hover-element * { - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; -} -.hover-element .hover-element__reveal { - position: absolute; - top: 0; - left: 0; - opacity: 0; - width: 100%; - height: 100%; -} -.hover-element .hover-element__reveal .boxed { - height: 100%; -} -.hover-element:hover .hover-element__reveal, -.hover-element.hover--active .hover-element__reveal { - opacity: 1; -} -.hover-element img { - margin-bottom: 0; -} -@media all and (max-width: 1024px) { - .hover-element { - cursor: pointer; - } -} -.row:last-child div[class*='col-']:last-child .hover-element { - margin-bottom: 0; -} -/**! 20. Masonry **/ -.masonry .masonry__container.masonry--active .masonry__item { - opacity: 1; - pointer-events: initial; -} -.masonry .masonry__container .masonry__item { - opacity: 0; - pointer-events: none; -} -.masonry .masonry__filters li { - display: inline-block; - cursor: pointer; - text-transform: capitalize; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; -} -.masonry .masonry__filters li.active { - cursor: default; -} -.masonry.masonry--gapless .masonry__item { - padding: 0 !important; - margin-bottom: 0; -} -/**! 21. Modals **/ -.modal-instance .modal-body { - display: none; -} -.modal-container { - transition: 0.3s linear; - -webkit-transition: 0.3s linear; - -moz-transition: 0.3s linear; - padding: 0; - visibility: hidden; - opacity: 0; - z-index: 999; - pointer-events: none; - position: fixed; - width: 100%; - height: 100%; - top: 0; - left: 0; -} -.modal-container.modal-active { - opacity: 1; - visibility: visible; - pointer-events: all; -} -.modal-container:before { - background: rgba(0, 0, 0, 0.85); - content: ''; - position: fixed; - width: 100%; - height: 100%; - top: 0; - left: 0; - z-index: 1; -} -.modal-container .modal-content { - backface-visibility: hidden; - position: fixed; - z-index: 2; - top: 50%; - left: 50%; - max-height: 100%; - overflow-y: scroll; - border: none; - transform: translate3d(-50%, -50%, 0); - -webkit-transform: translate3d(-50%, -50%, 0); - padding: 0; - border-radius: 0; - box-shadow: none; -} -.modal-container .modal-content:not(.height--natural) { - width: 50%; - height: 50%; -} -.modal-container .modal-content .modal-close-cross { - cursor: pointer; - position: absolute; - opacity: .5; - transition: 0.1s linear; - -webkit-transition: 0.1s linear; - -moz-transition: 0.1s linear; - top: 1em; - right: 1em; - z-index: 99; -} -.modal-container .modal-content .modal-close-cross:before { - content: '\00D7'; - font-size: 1.5em; -} -.modal-container .modal-content .modal-close-cross:hover { - opacity: 1; -} -.modal-container .modal-content.imagebg:not(.image--light) .modal-close-cross:before { - color: #fff; -} -.modal-container .modal-content iframe { - width: 100%; - outline: none; - border: none; - height: 100%; - backface-visibility: hidden; -} -.modal-container .modal-content iframe:first-child + .modal-close-cross:last-child { - top: -3.71428571em; -} -@media all and (max-width: 767px) { - .modal-container .modal-content { - width: 97% !important; - height: auto !important; - padding-top: 2em; - padding-bottom: 2em; - } -} -/**! 22. Maps **/ -.map-container { - position: relative; - overflow: hidden; -} -.map-container iframe, -.map-container .map-canvas { - position: absolute; - width: 100%; - height: 100%; - top: 0; -} -/**! 23. Parallax **/ -.parallax > .background-image-holder, -.parallax .slides li > .background-image-holder { - height: 100%; - min-height: 100vh; - top: -50vh; - transition: opacity 0.3s ease !important; - -webkit-transition: opacity 0.3s ease !important; - -webkit-transform-style: preserve-3d; -} -.parallax:first-child .slides li > .background-image-holder, -.parallax:first-child .background-image-holder { - top: 0; -} -.main-container > a:first-child + .parallax .background-image-holder { - top: 0; -} -@media all and (max-width: 1024px) { - .parallax > .background-image-holder, - .parallax .slides li > .background-image-holder { - -webkit-transition: transform 0.016s linear !important; - transition: transform 0.016s linear !important; - } - .parallax.parallax-disable-mobile .background-image-holder, - .parallax.parallax-disable-mobile .slides li > .background-image-holder { - top: 0 !important; - transform: none !important; - } -} -/**! 24. Notifications **/ -.notification { - max-width: 100%; - box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); - position: fixed; - z-index: 99; - pointer-events: none; - padding: 0; - margin: 1em; - opacity: 0; - transition: 0.3s linear; - -webkit-transition: 0.3s linear; - -moz-transition: 0.3s linear; -} -.notification:not([class*='bg-']) { - background: #fff; -} -.notification[class*='col-'] { - min-width: 400px; -} -.notification .notification-close-cross { - position: absolute; - top: 1em; - z-index: 99; - right: 1em; - cursor: pointer; - transition: 0.1s linear; - -webkit-transition: 0.1s linear; - -moz-transition: 0.1s linear; - opacity: .7; -} -.notification .notification-close-cross:before { - content: '\00D7'; - font-size: 1.5em; -} -.notification .notification-close-cross:hover { - opacity: 1; -} -.notification.notification--reveal { - z-index: 99; - pointer-events: initial; -} -.notification.notification--reveal[data-animation="from-bottom"] { - animation: from-bottom 0.3s linear 0s forwards; - -webkit-animation: from-bottom 0.3s linear 0s forwards; - -moz-animation: from-bottom 0.3s linear 0s forwards; -} -.notification.notification--reveal[data-animation="from-top"] { - animation: from-top 0.3s linear 0s forwards; - -webkit-animation: from-top 0.3s linear 0s forwards; - -moz-animation: from-top 0.3s linear 0s forwards; -} -.notification.notification--reveal[data-animation="from-left"] { - animation: from-left 0.3s linear 0s forwards; - -webkit-animation: from-left 0.3s linear 0s forwards; - -moz-animation: from-left 0.3s linear 0s forwards; -} -.notification.notification--reveal[data-animation="from-right"] { - animation: from-right 0.3s linear 0s forwards; - -webkit-animation: from-right 0.3s linear 0s forwards; - -moz-animation: from-right 0.3s linear 0s forwards; -} -.notification.notification--dismissed { - animation: fade-out 0.4s linear 0s forwards !important; - -webkit-animation: fade-out 0.4s linear 0s forwards !important; - -moz-animation: fade-out 0.4s linear 0s forwards !important; - pointer-events: none; -} -.bg--dark + .notification-close-cross:before { - color: #fff; -} -a[data-notification-link] { - text-decoration: none; -} -a[data-notification-link]:hover { - text-decoration: none; -} -@media all and (max-width: 767px) { - .notification[class*='col-'] { - min-width: 0; - } -} -@keyframes from-bottom { - from { - transform: translate3d(0, 100%, 0); - -webkit-transform: translate3d(0, 100%, 0); - opacity: 0; - } - to { - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); - opacity: 1; - } -} -@-moz-keyframes from-bottom { - from { - transform: translate3d(0, 100%, 0); - -webkit-transform: translate3d(0, 100%, 0); - opacity: 0; - } - to { - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); - opacity: 1; - } -} -@-webkit-keyframes from-bottom { - from { - transform: translate3d(0, 100%, 0); - -webkit-transform: translate3d(0, 100%, 0); - opacity: 0; - } - to { - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); - opacity: 1; - } -} -@keyframes from-top { - from { - transform: translate3d(0, -100%, 0); - -webkit-transform: translate3d(0, -100%, 0); - opacity: 0; - } - to { - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); - opacity: 1; - } -} -@-moz-keyframes from-top { - from { - transform: translate3d(0, -100%, 0); - -webkit-transform: translate3d(0, -100%, 0); - opacity: 0; - } - to { - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); - opacity: 1; - } -} -@-webkit-keyframes from-top { - from { - transform: translate3d(0, -100%, 0); - -webkit-transform: translate3d(0, -100%, 0); - opacity: 0; - } - to { - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); - opacity: 1; - } -} -@keyframes from-left { - from { - transform: translate3d(-100%, 0, 0); - -webkit-transform: translate3d(-100%, 0, 0); - opacity: 0; - } - to { - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); - opacity: 1; - } -} -@-moz-keyframes from-left { - from { - transform: translate3d(-100%, 0, 0); - -webkit-transform: translate3d(-100%, 0, 0); - opacity: 0; - } - to { - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); - opacity: 1; - } -} -@-webkit-keyframes from-left { - from { - transform: translate3d(-100%, 0, 0); - -webkit-transform: translate3d(-100%, 0, 0); - opacity: 0; - } - to { - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); - opacity: 1; - } -} -@keyframes from-right { - from { - transform: translate3d(100%, 0, 0); - -webkit-transform: translate3d(100%, 0, 0); - opacity: 1; - } - to { - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); - opacity: 1; - } -} -@-moz-keyframes from-right { - from { - transform: translate3d(100%, 0, 0); - -webkit-transform: translate3d(100%, 0, 0); - opacity: 0; - } - to { - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); - opacity: 1; - } -} -@-webkit-keyframes from-right { - from { - transform: translate3d(100%, 0, 0); - -webkit-transform: translate3d(100%, 0, 0); - opacity: 0; - } - to { - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); - opacity: 1; - } -} -@keyframes fade-out { - 0% { - opacity: 1; - } - 100% { - opacity: 0; - } -} -@-webkit-keyframes fade-out { - 0% { - opacity: 1; - } - 100% { - opacity: 0; - } -} -@-moz-keyframes fade-out { - 0% { - opacity: 1; - } - 100% { - opacity: 0; - } -} -/**! 25. Video **/ -iframe { - width: 100%; - min-height: 350px; - border: none; -} -@media all and (max-width: 767px) { - iframe { - min-height: 220px; - } -} -.videobg { - background: #252525; - position: relative; - overflow: hidden; -} -.videobg .container, -.videobg .background-image-holder { - opacity: 0; - transition: 0.3s linear; - -webkit-transition: 0.3s linear; - -moz-transition: 0.3s linear; -} -.videobg .background-image-holder { - opacity: 0 !important; -} -.videobg.video-active .container { - opacity: 1; -} -.videobg.video-active .loading-indicator { - opacity: 0; - visibility: hidden; -} -.videobg video { - object-fit: cover; - height: 100%; - min-width: 100%; - position: absolute; - top: 0; - z-index: 0 !important; - left: 0; -} -@media all and (max-width: 1024px) { - .videobg .background-image-holder, - .videobg .container { - opacity: 1 !important; - } - .videobg .loading-indicator { - display: none; - } - .videobg video { - display: none; - } -} -.youtube-background { - position: absolute; - height: 100%; - width: 100%; - top: 0; - z-index: 0 !important; -} -.youtube-background .mb_YTPBar { - opacity: 0; - height: 0; - visibility: hidden; -} -@media all and (max-width: 1024px) { - .youtube-background { - display: none; - } -} -.loading-indicator { - position: absolute !important; - top: 50%; - left: 50%; - z-index: 99 !important; - width: 50px; - height: 50px; - margin-top: -25px; - margin-left: -25px; - background-color: #fff; - border-radius: 100%; - -webkit-animation: loading-spinner 1s infinite ease-in-out; - animation: loading-spinner 1s infinite ease-in-out; - transition: 0.3s linear; - -webkit-transition: 0.3s linear; - -moz-transition: 0.3s linear; -} -@-webkit-keyframes loading-spinner { - 0% { - -webkit-transform: scale(0); - } - 100% { - -webkit-transform: scale(1); - opacity: 0; - } -} -@keyframes loading-spinner { - 0% { - -webkit-transform: scale(0); - transform: scale(0); - } - 100% { - -webkit-transform: scale(1); - transform: scale(1); - opacity: 0; - } -} -.video-cover { - position: relative; -} -.video-cover video { - max-width: 100%; -} -.video-cover iframe { - background: #252525; -} -.video-cover .background-image-holder { - z-index: 3; -} -.video-cover .video-play-icon { - position: absolute; - top: 50%; - left: 50%; - transform: translate3d(-50%, -50%, 0); - -webkit-transform: translate3d(-50%, -50%, 0); -} -.video-cover .video-play-icon, -.video-cover .background-image-holder { - transition: 0.3s linear; - -webkit-transition: 0.3s linear; - -moz-transition: 0.3s linear; -} -.video-cover.reveal-video .video-play-icon, -.video-cover.reveal-video .background-image-holder { - opacity: 0 !important; - pointer-events: none; -} -.video-cover[data-scrim-bottom]:before, -.video-cover[data-overlay]:before, -.video-cover[data-scrim-top]:before { - transition: 0.3s linear; - -webkit-transition: 0.3s linear; - -moz-transition: 0.3s linear; - z-index: 4; -} -.video-cover.reveal-video[data-scrim-bottom]:before, -.video-cover.reveal-video[data-overlay]:before, -.video-cover.reveal-video[data-scrim-top]:before { - opacity: 0; - pointer-events: none; -} -.video-play-icon { - width: 7.42857143em; - height: 7.42857143em; - border-radius: 50%; - position: relative; - z-index: 4; - display: inline-block; - border: 2px solid #ffffff; - cursor: pointer; - background: #ffffff; -} -.video-play-icon.video-play-icon--sm { - width: 3.71428571em; - height: 3.71428571em; -} -.video-play-icon.video-play-icon--sm:before { - border-width: 4px 0 4px 9px; -} -.video-play-icon.video-play-icon--xs { - width: 1.85714286em; - height: 1.85714286em; -} -.video-play-icon.video-play-icon--xs:before { - border-width: 3px 0 3px 6px; - margin-left: -3px; -} -.video-play-icon.bg--primary:before { - border-color: transparent transparent transparent #fff; -} -.video-play-icon:before { - position: absolute; - top: 50%; - margin-top: -5px; - left: 50%; - margin-left: -4px; - content: ''; - width: 0; - height: 0; - border-style: solid; - border-width: 6px 0 6px 12px; - border-color: transparent transparent transparent #ffffff; - border-color: transparent transparent transparent #808080; -} -.video-play-icon.video-play-icon--dark { - border-color: #252525; - background: #252525; -} -.video-play-icon.video-play-icon--dark:before { - border-color: transparent transparent transparent #252525; -} -.video-play-icon.video-play-icon--dark:before { - border-color: transparent transparent transparent #fff; -} -@media all and (max-width: 767px) { - .video-play-icon { - width: 4.95238095em; - height: 4.95238095em; - } -} -div[class*='col-'][class*='-12']:not([class*='xs-12']) .video-cover iframe { - min-height: 550px; -} -@media all and (max-width: 990px) { - div[class*='col-'][class*='-12']:not([class*='xs-12']) .video-cover iframe { - min-height: 350px; - } -} -div[class*='col-'][class*='-10'] .video-cover iframe { - min-height: 450px; -} -div[class*='col-'][class*='-8'] .video-cover iframe { - min-height: 400px; -} -div[class*='col-'][class*='-6'] .video-cover iframe { - min-height: 350px; -} -@media all and (max-width: 1200px) { - div[class*='col-'][class*='-6'] .video-cover iframe { - min-height: 300px; - } -} -@media all and (max-width: 990px) { - div[class*='col-'][class*='-6'] .video-cover iframe { - min-height: 220px; - } -} -@media all and (max-width: 767px) { - div[class*='col-'] .video-cover iframe { - min-height: 220px !important; - } -} -.modal-container video { - max-width: 100%; -} -/**! 26. Colors **/ -body { - background: #ffffff; -} -.color--primary { - color: #ff4f4f !important; -} -a { - color: #ff4f4f; -} -.color--primary-1 { - color: #343851 !important; -} -.color--primary-2 { - color: #64789c !important; -} -.color--white { - color: #fff; -} -.color--dark { - color: #252525; -} -.color--success { - color: #4ebf56; -} -.color--error { - color: #e23636; -} -.bg--dark { - background: #252525; -} -.bg--dark:not(.nav-bar):not(.bar) { - color: #ffffff; -} -.bg--dark:not(.nav-bar):not(.bar) h1, -.bg--dark:not(.nav-bar):not(.bar) h2, -.bg--dark:not(.nav-bar):not(.bar) h3, -.bg--dark:not(.nav-bar):not(.bar) h4, -.bg--dark:not(.nav-bar):not(.bar) h5, -.bg--dark:not(.nav-bar):not(.bar) h6, -.bg--dark:not(.nav-bar):not(.bar) i, -.bg--dark:not(.nav-bar):not(.bar) span:not(.btn__text), -.bg--dark:not(.nav-bar):not(.bar) p { - color: #ffffff; -} -.bg--dark:not(.nav-bar):not(.bar) a:not(.btn) { - color: #fff; -} -.bg--site { - background: #ffffff; -} -.bg--secondary { - background: #fafafa; -} -.bg--primary { - background: #ff4f4f; -} -.bg--primary p, -.bg--primary span, -.bg--primary ul, -.bg--primary a:not(.btn) { - color: #fff; -} -.bg--primary h1, -.bg--primary h2, -.bg--primary h3, -.bg--primary h4, -.bg--primary h5, -.bg--primary h6, -.bg--primary i { - color: #fff; -} -.bg--primary .color--primary { - color: #fff !important; -} -.bg--white { - background: #fff; -} -.bg--white p, -.bg--white span, -.bg--white ul, -.bg--white a:not(.btn) { - color: #666666; -} -.bg--white h1, -.bg--white h2, -.bg--white h3, -.bg--white h4, -.bg--white h5, -.bg--white h6, -.bg--white i { - color: #252525; -} -.bg--error { - background: #e23636; -} -.bg--success { - background: #4ebf56; -} -.imagebg:not(.image--light) .bg--white p, -.imagebg:not(.image--light) .bg--white span, -.imagebg:not(.image--light) .bg--white ul, -.imagebg:not(.image--light) .bg--white a:not(.btn) { - color: #666666; -} -.imagebg:not(.image--light) .bg--white h1, -.imagebg:not(.image--light) .bg--white h2, -.imagebg:not(.image--light) .bg--white h3, -.imagebg:not(.image--light) .bg--white h4, -.imagebg:not(.image--light) .bg--white h5, -.imagebg:not(.image--light) .bg--white h6, -.imagebg:not(.image--light) .bg--white i { - color: #252525; -} -.imagebg:not(.image--light) .bg--secondary { - background: rgba(250, 250, 250, 0.2); -} -.bg--primary-1 { - background: #343851; -} -.bg--primary-1 p, -.bg--primary-1 span, -.bg--primary-1 ul, -.bg--primary-1 a:not(.btn) { - color: #fff; -} -.bg--primary-1 h1, -.bg--primary-1 h2, -.bg--primary-1 h3, -.bg--primary-1 h4, -.bg--primary-1 h5, -.bg--primary-1 h6, -.bg--primary-1 i { - color: #fff; -} -.bg--primary-2 { - background: #64789c; -} -.bg--primary-2 p, -.bg--primary-2 span, -.bg--primary-2 ul, -.bg--primary-2 a:not(.btn) { - color: #fff; -} -.bg--primary-2 h1, -.bg--primary-2 h2, -.bg--primary-2 h3, -.bg--primary-2 h4, -.bg--primary-2 h5, -.bg--primary-2 h6, -.bg--primary-2 i { - color: #fff; -} -.image-bg:not(.image-light) *:not(a) { - color: #fff; -} -.color--facebook { - color: #3b5998; -} -.color--twitter { - color: #00aced; -} -.color--googleplus { - color: #dd4b39; -} -.color--instagram { - color: #125688; -} -.color--pinterest { - color: #cb2027; -} -.color--dribbble { - color: #ea4c89; -} -.color--behance { - color: #053eff; -} -.bg--facebook { - background: #3b5998; - color: #fff; -} -.bg--twitter { - background: #00aced; - color: #fff; -} -.bg--googleplus { - background: #dd4b39; - color: #fff; -} -.bg--instagram { - background: #125688; - color: #fff; -} -.bg--pinterest { - background: #cb2027; - color: #fff; -} -.bg--dribbble { - background: #ea4c89; - color: #fff; -} -.bg--behance { - background: #053eff; - color: #fff; -} -/**! 27. Image Blocks **/ -.imageblock { - position: relative; - padding: 0; -} -.imageblock > .container, -.imageblock > div[class*='col-']:not(.imageblock__content) { - padding-top: 7.42857143em; - padding-bottom: 7.42857143em; - float: none; - overflow: hidden; -} -.imageblock.imageblock--lg > .container, -.imageblock.imageblock--lg > div[class*='col-']:not(.imageblock__content) { - padding-top: 9.28571429em; - padding-bottom: 9.28571429em; - float: none; - overflow: hidden; -} -.imageblock .imageblock__content { - position: absolute; - height: 100%; - top: 0; - z-index: 2; - padding: 0; -} -.imageblock .imageblock__content .slider { - position: absolute; - width: 100%; - height: 100%; - top: 0; -} -.imageblock .imageblock__content .slider .slides > li { - padding: 0; - min-height: 100%; - position: absolute !important; -} -.imageblock.allow-overflow .imageblock__content { - overflow: visible; -} -@media all and (max-height: 728px) { - .imageblock > .container, - .imageblock > div[class*='col-']:not(.imageblock__content) { - padding-top: 3.71428571em; - padding-bottom: 3.71428571em; - } -} -@media all and (max-width: 767px) { - .imageblock[class*='space-'] { - padding-bottom: 0; - padding-top: 0; - } - .imageblock .imageblock__content { - position: relative; - min-height: 18.57142857em; - } - .imageblock > .container, - .imageblock > div[class*='col-']:not(.imageblock__content) { - padding-top: 5.57142857em; - padding-bottom: 5.57142857em; - float: none; - overflow: hidden; - } - .imageblock.imageblock--lg > .container, - .imageblock.imageblock--lg > div[class*='col-']:not(.imageblock__content) { - padding-top: 5.57142857em; - padding-bottom: 5.57142857em; - float: none; - overflow: hidden; - } -} -/**! 28. MailChimp & Campaign Monitor **/ -form[action*='createsend.com'] * { - transition: 0.3s linear; - -webkit-transition: 0.3s linear; - -moz-transition: 0.3s linear; - opacity: 0; -} -form[action*='createsend.com'].form--active * { - opacity: 1; -} -form[action*='createsend.com'] .input-checkbox + br { - display: none; -} -form[action*='createsend.com'].no-labels label { - display: none; -} -form[action*='createsend.com'] br { - display: none; -} -form[action*='createsend.com'] p > label:first-child { - margin-bottom: 0.92857143em; -} -form[action*='list-manage.com'] h2 { - font-family: 'Open Sans', 'Helvetica', 'Arial', sans-serif; - color: #252525; - font-weight: 300; - font-variant-ligatures: common-ligatures; - margin-top: 0; - margin-bottom: 0; - font-size: 1.35714286em; - line-height: 1.36842105em; - margin-bottom: 1.36842105263158em; - font-weight: 400; -} -form[action*='list-manage.com'] h2.inline-block + .h4.inline-block:not(.typed-text) { - margin-left: 0.68421052631579em; -} -form[action*='list-manage.com'] .input-group ul { - overflow: hidden; -} -form[action*='list-manage.com'] .input-group ul li { - float: left; -} -form[action*='list-manage.com'] * { - transition: 0.3s linear; - -webkit-transition: 0.3s linear; - -moz-transition: 0.3s linear; - opacity: 0; -} -form[action*='list-manage.com'].form--active * { - opacity: 1; -} -form[action*='list-manage.com'].no-labels label { - display: none; -} -form[action*='list-manage.com'] .small-meta { - font-size: 0.5em; -} -/**! 29. Twitter **/ -.twitter-feed .user { - display: none; -} -.twitter-feed .interact { - display: none; -} -.twitter-feed .timePosted { - font-size: .87em; -} -/**! 30. Transitions **/ -[class*='transition--'] { - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; - opacity: 0; -} -[class*='transition--'].transition--active { - opacity: 1; -} -.transition--scale { - transform: scale(0.98); - -webkit-transform: scale(0.98); -} -.transition--scale.transition--active { - opacity: 1; - transform: scale(1); - -webkit-transform: scale(1); -} -.transition--slide { - transform: translate3d(200px, 0, 0); - -webkit-transform: translate3d(200px, 0, 0); - transform: translate3d(30vw, 0, 0); - -webkit-transform: translate3d(30vw, 0, 0); -} -.transition--slide.transition--active { - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); -} -/**! 31. Switchable Sections **/ -.switchable { - position: relative; -} -.switchable div[class*='col-']:first-child { - float: left; - right: auto; -} -.switchable div[class*='col-']:first-child:not([class*='pull']):not([class*='push']) { - left: 0; -} -.switchable div[class*='col-']:last-child { - float: right; - left: auto; -} -.switchable div[class*='col-']:last-child:not([class*='pull']):not([class*='push']) { - right: 0; -} -.switchable.switchable--switch div[class*='col-']:first-child { - float: right; - right: 0; - left: auto; -} -.switchable.switchable--switch div[class*='col-']:first-child:not([class*='pull']):not([class*='push']) { - left: auto; -} -.switchable.switchable--switch div[class*='col-']:last-child { - float: left; - left: 0; - right: auto; -} -.switchable .switchable__text { - margin-top: 3.71428571em; -} -.switchable > div[class*='col-'] { - padding: 0; -} -/**! 32. Typed Effect **/ -.typed-text { - display: inline-block; -} -.typed-text.typed-text--cursor:after { - content: '|'; - font-size: 1.2em; - -webkit-animation: blink 0.7s infinite; - animation: blink 0.7s infinite; - position: relative; - right: 6px; -} -@keyframes blink { - 0% { - opacity: 1; - } - 50% { - opacity: 0; - } - 100% { - opacity: 1; - } -} -@-webkit-keyframes blink { - 0% { - opacity: 1; - } - 50% { - opacity: 0; - } - 100% { - opacity: 1; - } -} -/**! 33. Gradient BG **/ -[data-gradient-bg] { - position: relative; - background: #252525; -} -[data-gradient-bg] > canvas { - position: absolute; - width: 100%; - height: 100%; - top: 0; - left: 0; -} -[data-gradient-bg] > canvas + .background-image-holder { - opacity: .2 !important; -} -/**! 34. Bars **/ -.bar { - padding: 1.85714286em 0; -} -.bar .logo { - margin: 0; - position: relative; - top: 4px; -} -.bar .menu-horizontal { - position: relative; - top: 6px; -} -.bar:not([class*='visible-']) + .bar { - margin-top: 0.92857143em; -} -.bar.bar--xs { - padding: 0.46428571em 0; -} -.bar.bar--sm { - padding: 0.92857143em 0; -} -.bar.bar--lg { - padding: 2.78571429em 0; -} -.bar.bar--lg .logo { - top: 0; -} -.bar.bar--xlg { - padding: 4.64285714em 0; -} -.bar.bar--xlg .logo { - top: 0; -} -.bar.bg--dark .logo-dark { - display: none; -} -.bar:not(.bg--dark):not(.bar--transparent) .logo-light { - display: none; -} -@media all and (max-width: 767px) { - .bar.bar--mobile-sticky[data-scroll-class*='fixed'].pos-fixed { - position: fixed; - width: 100%; - background: #fff; - z-index: 999; - } - .bar.bar--mobile-sticky[data-scroll-class*='fixed'] + .bar.pos-fixed { - top: 3.71428571em; - position: fixed; - width: 100%; - background: #fff; - z-index: 999; - } -} -@media all and (min-width: 991px) { - .bar__module:not(:only-child) { - display: inline-block; - } - .bar__module:not(:last-child) { - margin-right: 0.92857143em; - } - .bar--transparent:not(.bar--dark) { - background: none; - } - .bar--transparent:not(.bar--dark) .logo-dark { - display: none; - } - .bar--transparent:not(.bar--dark) .logo-light { - display: inline-block; - } - .bar--transparent:not(.bar--dark):not(.pos-fixed) .menu-horizontal > li > a, - .bar--transparent:not(.bar--dark):not(.pos-fixed) .menu-horizontal > li > span { - color: #fff; - } - .bar--transparent:not(.bar--dark):not(.pos-fixed) .btn:not([class*='primary']) { - border-color: rgba(255, 255, 255, 0.3); - } - .bar--transparent:not(.bar--dark):not(.pos-fixed) .btn:not([class*='primary']) .btn__text { - color: #fff; - } - .bar--transparent:not(.bar--dark):not(.pos-fixed) .btn:not([class*='primary']):hover { - border-color: rgba(255, 255, 255, 0.7); - } - .bar--absolute { - position: absolute; - } - .bar--absolute, - .pos-fixed { - z-index: 99; - width: 100%; - } - .bar.pos-fixed { - position: fixed; - top: 0; - animation: fadeInDown 0.3s ease-out forwards; - box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); - box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.04); - } - .bar.pos-fixed:not([class*='bg-']) { - background: #ffffff; - } - .bar.pos-fixed:not([class*='bg-']) .logo-dark { - display: inline-block; - } - .bar.pos-fixed:not([class*='bg-']) .logo-light { - display: none; - } - .bar.pos-fixed.bg--dark { - background: #252525; - } -} -@media all and (max-width: 767px) { - .bar__module { - margin-bottom: 0.92857143em; - } - .bar__module + .bar__module { - margin-top: 1.85714286em; - } - .bar__module .btn { - display: block; - } - .bar__module .btn + .btn { - margin-left: 0 !important; - } - .bar__module .btn:not(:last-child) { - margin-bottom: 0.92857143em; - } - .bar + nav.bar { - padding-top: 0; - } -} -/**! 35. Navigation InPage **/ -.page-navigator { - position: fixed; - padding: 0; - top: 50%; - transform: translateY(-50%); - right: 1.85714286em; - z-index: 10; -} -.page-navigator ul { - display: inline-block; - padding: 0.92857143em; - background: rgba(0, 0, 0, 0.4); - border-radius: 1.85714286em; - transition: all .2s ease; -} -.page-navigator ul:hover { - background: rgba(0, 0, 0, 0.6); -} -.page-navigator ul li:not(:last-child) { - margin-bottom: 1.85714286em; -} -@media all and (max-width: 767px) { - .page-navigator { - right: 0; - } - .page-navigator ul { - border-radius: 1.85714286em 0 0 1.85714286em; - padding: 1.85714286em 0.92857143em; - } -} -.page-navigator li a { - width: 8px; - height: 8px; - background: #fff; - border-radius: 50%; - transition: all .2s ease; - display: block; - position: relative; -} -.page-navigator li a:not(:hover) { - opacity: .5; -} -.page-navigator li a.inner-link--active { - opacity: 1; - animation: bulge .5s ease; - -webkit-animation: bulge .5s ease; -} -@keyframes bulge { - 0% { - transform: scale(1); - } - 50% { - transform: scale(1.3); - } - 100% { - transform: scale(1); - } -} -@-webkit-keyframes bulge { - 0% { - transform: scale(1); - } - 50% { - transform: scale(1.3); - } - 100% { - transform: scale(1); - } -} -.page-navigator li a[data-title]:before { - content: attr(data-title); - position: absolute; - right: 12px; - top: -14px; - background: #222; - color: #fff; - border-radius: 6px; - padding: 4px 8px; - display: inline-block; - transition: all .2s ease; - white-space: nowrap; -} -.page-navigator li a[data-title]:not(:hover):before { - opacity: 0; - transform: translateX(-20px); -} -/**! 36. Helper Classes **/ -.clearfix { - overflow: hidden; -} -.clearfix-after:after { - content: ""; - display: table; - clear: both; -} -.allow-overflow { - overflow: visible; -} -.container .row--gapless { - padding-left: 15px; - padding-right: 15px; -} -.container .row--gapless > div[class*='col-'] { - padding: 0; -} -@media all and (max-width: 767px) { - .text-left-xs { - text-align: left; - } -} -@media all and (max-width: 991px) { - .text-left-sm { - text-align: left; - } -} -section > .row--gapless { - padding-left: 0; - padding-right: 0; -} -section > .row--gapless > div[class*='col-'] { - padding: 0; -} -div.right { - float: right; -} -div.left { - float: left; -} -section.text-right > .container:last-child > .row:only-child > div[class*='col-']:only-child { - float: right; -} -/**! 37. Spacing **/ -section, -footer { - padding-top: 7.42857143em; - padding-bottom: 7.42857143em; -} -section.space--xxs, -footer.space--xxs { - padding-top: 1.85714286em; - padding-bottom: 1.85714286em; -} -section.space--xs, -footer.space--xs { - padding-top: 3.71428571em; - padding-bottom: 3.71428571em; -} -section.space--sm, -footer.space--sm { - padding-top: 4.95238095em; - padding-bottom: 4.95238095em; -} -section.space--md, -footer.space--md { - padding-top: 11.14285714em; - padding-bottom: 11.14285714em; -} -section.space--lg, -footer.space--lg { - padding-top: 14.85714286em; - padding-bottom: 14.85714286em; -} -section.space--xlg, -footer.space--xlg { - padding-top: 29.71428571em; - padding-bottom: 29.71428571em; -} -section.space--0, -footer.space--0 { - padding: 0; -} -section.section--even, -footer.section--even { - padding-top: 7.42857143em; - padding-bottom: 7.42857143em; -} -section.space-bottom--sm, -footer.space-bottom--sm { - padding-bottom: 4.95238095em; -} -@media all and (max-width: 767px) { - section, - footer, - section.section--even { - padding: 5.57142857em 0; - } - section.space--lg, - footer.space--lg, - section.section--even.space--lg, - section.space--md, - footer.space--md, - section.section--even.space--md { - padding: 5.57142857em 0; - } - section.space--xlg, - footer.space--xlg, - section.section--even.space--xlg { - padding: 8.35714286em 0; - } -} -div[class*='col-'] > div[class*='col-']:first-child { - padding-left: 0; -} -div[class*='col-'] > div[class*='col-']:last-child { - padding-right: 0; -} -@media all and (max-width: 767px) { - .col-xs-6:nth-child(odd) { - padding-right: 7.5px; - } - .col-xs-6:nth-child(even) { - padding-left: 7.5px; - } -} -@media all and (min-width: 768px) { - .mt--1 { - margin-top: 1.85714286em; - } - .mt--2 { - margin-top: 3.71428571em; - } - .mt--3 { - margin-top: 5.57142857em; - } - .mb--1 { - margin-bottom: 1.85714286em; - } - .mb--2 { - margin-bottom: 3.71428571em; - } - .mb--3 { - margin-bottom: 5.57142857em; - } -} -@media all and (max-width: 990px) { - .mt--1, - .mt--2 { - margin-top: 1.85714286em; - } - .mt--3 { - margin-top: 2.78571429em; - } -} -.unpad { - padding: 0; -} -.unpad--bottom { - padding-bottom: 0; -} -.unpad--top { - padding-top: 0; -} -section.unpad--bottom { - padding-bottom: 0; -} -section.unpad { - padding: 0; -} -section.unpad--top { - padding-top: 0; -} -.unmarg--bottom { - margin-bottom: 0; -} -.unmarg { - margin: 0; -} -.unmarg--top { - margin-top: 0; -} -/**! 38. Boxed Layout **/ -@media all and (min-width: 1280px) { - body.boxed-layout { - padding: 3.71428571em 0; - background: #ededed; - } - body.boxed-layout section:not([class*='bg-']):not(.imagebg), - body.boxed-layout footer:not([class*='bg-']):not(.imagebg), - body.boxed-layout nav:not([class*='bg-']):not(.bar--transparent):not(.bar--absolute), - body.boxed-layout .tabs-container:not([class*='bg-']):not(.imagebg) { - background: #ffffff; - } - body.boxed-layout .nav-container, - body.boxed-layout .main-container, - body.boxed-layout > section, - body.boxed-layout nav { - max-width: 1280px; - margin: 0 auto; - } -} -/**! 39. Wizard **/ -.wizard__body { - list-style: none; -} -.wizard__step:not(.active) { - display: none; -} -.wizard__step .wizard__title { - display: none; -} -.wizard__controls { - overflow: hidden; -} -.wizard__controls .wizard-prev { - float: left; -} -.wizard__controls .wizard-next { - float: right; -} -.wizard__controls .wizard-prev:hover, -.wizard__controls .wizard-next:hover { - transform: none !important; -} -.wizard__controls .wizard-prev.inactive, -.wizard__controls .wizard-next.inactive { - pointer-events: none; - opacity: .3; - cursor: not-allowed; -} -/**! 40. Alerts **/ -.alert { - overflow: hidden; - border: 1px solid #e6e6e6; - padding: 0.92857143em; -} -.alert .alert__body, -.alert .alert__close { - display: inline-block; - user-select: none; -} -.alert .alert__body { - float: left; -} -.alert .alert__close { - float: right; - cursor: pointer; -} -.alert.bg--error { - background: #fce8e8; - border-color: #e23636; -} -.alert.bg--error .alert__close { - color: #e23636; -} -.alert.bg--success { - background: #e4f5e5; - border-color: #4ebf56; -} -.alert.bg--success .alert__close { - color: #4ebf56; -} -.alert.bg--primary { - background: #ffffff; - border-color: #ff4f4f; -} -.alert.bg--primary .alert__body > span { - color: #666666; -} -.alert.bg--primary .alert__close { - color: #ff4f4f; -} -.alert.alert--dismissed { - display: none; -} -/**! 41. Progress - Horizontal **/ -.progress-horizontal:after { - content: ""; - display: table; - clear: both; -} -.progress-horizontal .progress-horizontal__bar { - position: relative; - overflow: hidden; -} -.progress-horizontal .progress-horizontal__progress { - position: absolute; - top: 0; - left: 0; - height: 100%; -} -/**! 42. Theme Overrides **/ -/*! -- Stack Customizers -- */ -.box-shadow { - box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.04); -} -.box-shadow-shallow { - box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.06); -} -.box-shadow-wide { - box-shadow: 0 23px 40px rgba(0, 0, 0, 0.2); -} -.border--round { - border-radius: 6px; -} -.border--round:before { - border-radius: 6px; -} -.border--round .background-image-holder { - border-radius: 6px; -} -.border--round [data-scrim-top]:before, -.border--round [data-scrim-bottom]:before, -.border--round [data-overlay]:before { - border-radius: 6px; -} -.imageblock.border--round .background-image-holder { - border-radius: 6px 0 0 6px; -} -@media all and (max-width: 767px) { - .imageblock.border--round .background-image-holder { - border-radius: 6px 6px 0 0; - } -} -.theme--square .border--round, -.theme--square .btn { - border-radius: 0px; -} -.theme--bordered { - border: 0.92857143em solid #252525; -} -.main-container.transition--fade:not(.transition--active) { - cursor: wait; -} -@media all and (min-width: 1280px) { - body.boxed-layout > section.bar-3:first-of-type { - border-radius: 6px 6px 0 0; - } - body.boxed-layout .main-container > footer:last-child { - border-radius: 0 0 6px 6px; - } -} -body.boxed-layout .modal-container section:not([class*='bg-']) { - background: none; -} -/*! -- Stack Helpers -- */ -@media all and (max-width: 767px) { - .block--xs { - margin-top: 0.92857143em; - } -} -.container .container { - max-width: 100%; -} -.switchable-toggle { - cursor: pointer; - user-select: none; - -webkit-user-select: none; -} -.back-to-top { - position: fixed; - width: 3.71428571em; - height: 3.71428571em; - background: #fff; - border-radius: 50%; - text-align: center; - right: 1.85714286em; - bottom: 3.71428571em; - padding-top: 12px; - box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); - box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.04); - z-index: 99; - border: 1px solid #ececec; - transition: 0.2s ease-out; - -webkit-transition: 0.2s ease-out; - -moz-transition: 0.2s ease-out; -} -.back-to-top i { - color: #252525; -} -.back-to-top:not(.active) { - opacity: 0; - transform: translate3d(0, 20px, 0); - -webkit-transform: translate3d(0, 20px, 0); - pointer-events: none; -} -.back-to-top.active:hover { - transform: translate3d(0, -5px, 0); - -webkit-transform: translate3d(0, -5px, 0); -} -.disable-scroll-bars { - -ms-overflow-style: none; -} -.disable-scroll-bars::-webkit-scrollbar { - display: none; -} -/*! -- Stack Animations -- */ -@keyframes fadeInUp { - from { - opacity: 0; - transform: translate3d(0, 50px, 0); - -webkit-transform: translate3d(0, 50px, 0); - } - to { - opacity: 1; - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); - -webkit-font-smoothing: antialiased; - } -} -@-webkit-keyframes fadeInUp { - from { - opacity: 0; - transform: translate3d(0, 50px, 0); - -webkit-transform: translate3d(0, 50px, 0); - } - to { - opacity: 1; - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); - -webkit-font-smoothing: antialiased; - } -} -@keyframes fadeInDown { - from { - opacity: 0; - transform: translate3d(0, -100px, 0); - -webkit-transform: translate3d(0, -100px, 0); - } - to { - opacity: 1; - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); - -webkit-font-smoothing: antialiased; - } -} -@-webkit-keyframes fadeInDown { - from { - opacity: 0; - transform: translate3d(0, -100px, 0); - -webkit-transform: translate3d(0, -100px, 0); - } - to { - opacity: 1; - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); - -webkit-font-smoothing: antialiased; - } -} -@keyframes fadeOutUp { - from { - opacity: 1; - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); - } - to { - opacity: 0; - transform: translate3d(0, -50px, 0); - -webkit-transform: translate3d(0, -50px, 0); - -webkit-font-smoothing: antialiased; - } -} -@-webkit-keyframes fadeOutUp { - from { - opacity: 1; - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); - } - to { - opacity: 0; - transform: translate3d(0, -50px, 0); - -webkit-transform: translate3d(0, -50px, 0); - -webkit-font-smoothing: antialiased; - } -} -@keyframes fadeOutRight { - from { - opacity: 1; - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); - } - to { - opacity: 0; - transform: translate3d(50px, 0, 0); - -webkit-transform: translate3d(50px, 0, 0); - -webkit-font-smoothing: antialiased; - } -} -@-webkit-keyframes fadeOutRight { - from { - opacity: 1; - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); - } - to { - opacity: 0; - transform: translate3d(50px, 0, 0); - -webkit-transform: translate3d(50px, 0, 0); - -webkit-font-smoothing: antialiased; - } -} -@keyframes fadeInLeft { - from { - opacity: 0; - transform: translate3d(-50px, 0, 0); - -webkit-transform: translate3d(-50px, 0, 0); - } - to { - opacity: 1; - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); - -webkit-font-smoothing: antialiased; - } -} -@-webkit-keyframes fadeInLeft { - from { - opacity: 0; - transform: translate3d(-50px, 0, 0); - -webkit-transform: translate3d(-50px, 0, 0); - } - to { - opacity: 1; - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); - -webkit-font-smoothing: antialiased; - } -} -@keyframes pulse { - 0% { - opacity: 0; - transform: scale(1); - -webkit-transform: scale(1); - } - 50% { - opacity: 1; - } - 100% { - opacity: 0; - transform: scale(2); - -webkit-transform: scale(2); - } -} -@-webkit-keyframes pulse { - 0% { - opacity: 0; - transform: scale(1); - -webkit-transform: scale(1); - } - 50% { - opacity: 1; - } - 100% { - opacity: 0; - transform: scale(2); - -webkit-transform: scale(2); - } -} -@keyframes kenBurns { - 0% { - transform: scale(1); - } - 100% { - transform: scale(1.1); - } -} -@-webkit-keyframes kenBurns { - 0% { - transform: scale(1); - } - 100% { - transform: scale(1.1); - } -} -/*! -- Stack Sections -- */ -section:not(.unpad):not(.imagebg):not([class*='bg--']):not(.imageblock):not(.unpad--bottom):not(.border--bottom):not(.space--xxs) + section:not(.unpad):not(.imagebg):not([class*='bg--']):not(.imageblock):not(.border--bottom):not(.space--xxs) { - padding-top: 0; -} -section:not(.unpad):not(.imagebg):not([class*='bg--']):not(.imageblock):not(.unpad--bottom):not(.border--bottom) + footer:not(.unpad):not(.imagebg):not([class*='bg--']):not(.imageblock):not(.unpad--bottom):not(.border--bottom) { - padding-top: 0; -} -section:not(.imagebg):not([class*='bg-']) + section.bg--secondary { - border-top: 1px solid #ebebeb; -} -section.bg--secondary:not(.imagebg) + section:not(.imagebg):not([class*='bg-']) { - border-top: 1px solid #ebebeb; -} -section.bg--secondary:not(.unpad):not(.imageblock):not(.unpad--bottom):not(.border--bottom) + section.bg--secondary { - padding-top: 0; -} -section.bg--secondary + footer:not(.bg--dark):not(.bg--secondary) { - border-top: 1px solid #ebebeb; -} -section.bg--dark + section.bg--dark { - padding-top: 0; -} -section.bg--dark:last-of-type + footer.bg--dark { - background: #1b1b1b; -} -section.border--bottom:not([data-gradient-bg]) { - border-bottom: 1px solid #ececec; -} -section.unpad { - overflow: hidden; -} -section:not([class*='bg--']) + footer.bg--secondary { - border-top: 1px solid #ebebeb; -} -section.text-center div[class*='col-']:first-child:last-child { - margin: 0 auto; - float: none; -} -.section--overlap { - z-index: 2; - position: relative; -} -/*! -- Stack Typography -- */ -@media all and (max-width: 1024px) { - html { - font-size: 80%; - } -} -h1, -.h1 { - letter-spacing: -0.01em; -} -h1:not(:last-child), -.h1:not(:last-child) { - margin-bottom: 0.59090909090909em; -} -@media all and (min-width: 768px) { - h1.h1--large, - .h1.h1--large { - font-weight: 200; - font-size: 4.428571428571429em; - line-height: 1.048387096774194em; - } - h1.h1--large:not(:last-child), - .h1.h1--large:not(:last-child) { - margin-bottom: 0.419354838709677em; - } - h1.h1--large.type--uppercase, - .h1.h1--large.type--uppercase { - letter-spacing: 10px; - margin-right: -10px; - } - h1.h1--large + p.lead, - .h1.h1--large + p.lead { - margin-top: 2.052631578947368em; - } -} -h2, -.h2 { - margin-bottom: 0.78787878787879em; -} -h3, -.h3 { - margin-bottom: 1.04em; -} -h3 strong, -.h3 strong { - font-weight: 400; -} -blockquote { - font-family: 'Merriweather', serif; - font-style: italic; - font-weight: 300; -} -blockquote:not(:last-child) { - margin-bottom: 1.04em; -} -blockquote > p { - font-size: 1em !important; -} -h4, -.h4 { - margin-bottom: 1.36842105263158em; - font-weight: 400; -} -h4.inline-block + .h4.inline-block:not(.typed-text), -.h4.inline-block + .h4.inline-block:not(.typed-text) { - margin-left: 0.68421052631579em; -} -h5, -.h5 { - font-weight: 600; -} -h5:not(:last-child), -.h5:not(:last-child) { - margin-bottom: 1.85714286em; -} -h6, -.h6 { - font-weight: 700; -} -h6:not(:last-child), -.h6:not(:last-child) { - margin-bottom: 2.16666666666667em; -} -h6.type--uppercase, -.h6.type--uppercase { - letter-spacing: 1px; - margin-right: -1px; -} -span.h1:not(.inline-block), -span.h2:not(.inline-block), -span.h3:not(.inline-block), -span.h4:not(.inline-block), -span.h5:not(.inline-block), -span.h6:not(.inline-block) { - display: block; -} -b { - font-weight: 600; -} -hr { - border-color: #ECECEC; -} -.bg--dark hr { - border-color: #585858; -} -[class*='bg-']:not(.bg--white):not(.bg--secondary) p, -[class*='imagebg']:not(.image--light) p { - opacity: .9; -} -.lead { - font-weight: 400; - color: #808080; -} -.lead:not(:last-child) { - margin-bottom: 1.36842105263158em; -} -.lead + .btn:last-child { - margin-top: 0.92857143em; -} -p:last-child { - margin-bottom: 0; -} -p strong { - color: #252525; -} -pre { - padding: 0.92857143em; - background: #fafafa; - border: 1px solid #ececec; - border-radius: 6px; - line-height: 20px; - max-height: 500px; -} -.bg--secondary > pre { - background: #f5f5f5; - border-color: #ddd; -} -.text-block:not(:last-child) { - margin-bottom: 1.85714286em; -} -.text-block h2, -.text-block .h2 { - margin-bottom: 0.3939393939394em; -} -.text-block h5, -.text-block .h5 { - margin: 0; -} -.text-block h4:not(:last-child), -.text-block .h4:not(:last-child) { - margin-bottom: 0.3421052631579em; -} -.text-block h3, -.text-block .h3 { - margin-bottom: 0.52em; -} -@media all and (min-width: 768px) { - div[class*='col-'] .text-block + .text-block { - margin-top: 3.71428571em; - } -} -.heading-block { - margin-bottom: 3.71428571em; -} -.heading-block h1, -.heading-block h2, -.heading-block h3, -.heading-block h4, -.heading-block h5, -.heading-block h6, -.heading-block .h1, -.heading-block .h2, -.heading-block .h3, -.heading-block .h4, -.heading-block .h5, -.heading-block .h6 { - margin-bottom: 0; -} -/*! -- Stack Colours -- */ -.bg--dark .bg--secondary { - background: #343434; -} -/*! -- Stack Links -- */ -a { - color: #ff4f4f; - font-weight: 700; -} -a:hover { - color: #ff1c1c; - text-decoration: underline; -} -a.block { - font-weight: normal; - text-decoration: none; - color: #666666; -} -p a, -span a, -label a { - font-size: 1em; - text-decoration: underline; - font-weight: 400; - line-height: 1.85714286em; -} -p + a:not(.btn) { - font-size: 0.85714286em; - line-height: 2.16666667em; -} -.imagebg:not(.image--light) a { - color: #fff; - font-weight: 600; -} -/*! -- Stack Tables -- */ -table { - width: 100%; - border-collapse: separate; -} -table th, -table td { - padding: 0.92857143em; -} -table th { - background: #fafafa; - color: #252525; -} -table tr:not(:last-of-type) { - border-bottom: 1px solid #ececec; -} -table.border--round { - border-radius: 6px; - border: 1px solid #ececec; -} -.table--alternate-column th:nth-child(odd) { - background: none; -} -.table--alternate-column td:nth-child(even) { - background: #fafafa; -} -.table--alternate-row tbody tr:nth-child(even) { - background: #fafafa; -} -.bg--dark table.border--round { - border-radius: 6px; - border: 1px solid #3f3f3f; -} -.bg--dark table th { - background: #3f3f3f; - color: #fff; -} -.bg--dark .table--alternate-row tbody tr:nth-child(even) { - background: #323232; -} -/*! -- Stack Lists -- */ -ul:not([class*='menu']) li > a { - font-weight: normal; -} -ul:not([class*='menu']) li > a:hover { - text-decoration: none; -} -ol { - list-style-position: outside; - list-style-type: decimal; -} -ol li:not(:last-child) { - margin-bottom: 1.85714286em; -} -ol.lead li:not(:last-child) { - margin-bottom: 1.26315789473684em; -} -.list-inline { - margin-left: 0; - display: inline-block; -} -.list-inline li { - padding: 0; -} -.list-inline li:not(:last-child) { - margin-right: 1.85714286em; -} -.list-inline:not(:last-child) { - margin-right: 1.85714286em; -} -.list-inline--images img { - max-height: 2.78571429em; -} -@media all and (min-width: 768px) { - .list-inline--images li:not(:last-child) { - margin-right: 5.57142857em; - } -} -@media all and (max-width: 767px) { - .list-inline--images li:not(:last-child) { - margin-bottom: 1.85714286em; - } -} -.list--loose > li:not(:last-child) { - margin-bottom: 0.46428571em; -} -.list--hover li { - transition: 0.2s ease; - -webkit-transition: 0.2s ease; - -moz-transition: 0.2s ease; -} -.list--hover li:not(:hover) { - opacity: .6; -} -.social-list a { - color: #252525; -} -.imagebg:not(.image--light) .social-list a { - color: #fff; -} -.results-list > li > a:first-child { - display: flex; - align-items: center; - margin-bottom: 0.92857143em; -} -.results-list > li > a:first-child span { - display: inline-block; - margin-left: 0.46428571em; -} -.results-list > li > a:first-child h4 { - display: inline-block; - margin-bottom: 0; -} -.results-list > li > a:first-child:hover h4, -.results-list > li > a:first-child:hover span { - text-decoration: underline; -} -.results-list > li:not(:last-child) { - margin-bottom: 1.85714286em; - padding-bottom: 1.85714286em; - border-bottom: 1px solid rgba(0, 0, 0, 0.1); -} -@media all and (max-width: 767px) { - .list-inline:not(.social-list):not(.list-inline--images) { - display: block; - } - .list-inline:not(.social-list):not(.list-inline--images) li { - display: block; - margin: 0; - } - .list-inline:not(.social-list):not(.list-inline--images) li:not(:last-child) { - margin-bottom: 0.46428571em; - } -} -@media all and (max-width: 767px) { - .list-inline { - min-width: 100%; - } -} -.row--list span.h6 { - margin-bottom: 0; -} -.row--list span.h3:last-child { - margin-bottom: 0; -} -@media all and (max-width: 767px) { - .row--list > li { - margin-bottom: 0.92857143em; - } -} -/*! -- Stack Rules -- */ -hr:first-child { - margin-top: 0; -} -hr.short { - width: 2.78571429em; - border-color: #ff4f4f; -} -hr[data-title] { - margin: 2.78571429em 0; - text-align: center; -} -hr[data-title]:before { - content: attr(data-title); - background: #ffffff; - position: relative; - bottom: 14px; - padding: 0.92857143em; - font-style: italic; -} -.bg--dark hr:not(.short), -.imagebg hr:not(.short), -.bg--primary hr:not(.short) { - opacity: .3; -} -/*! -- Stack Buttons -- */ -.btn { - position: relative; -} -.btn:not([class*='primary']) { - border-color: #d3d3d3; -} -.btn:not([class*='primary']):hover { - border-color: #252525; -} -.btn.type--uppercase { - letter-spacing: .5px; -} -.btn.type--uppercase .btn__text { - letter-spacing: .5px; - margin-right: -0.5px; -} -.btn .label { - top: -0.92857143em; - right: -3.71428571em; -} -.btn.btn--lg .btn__text { - font-weight: 600; -} -.btn.btn--lg.type--uppercase .btn__text { - letter-spacing: 1px; -} -.btn + p.type--fine-print, -.btn + span.type--fine-print { - margin-top: 1.08333333333334em; -} -.btn.block { - margin-left: 0; -} -.btn.block + .btn.block { - margin-top: 0.92857143em; -} -.btn:hover { - transform: translate3d(0, -2px, 0); - -webkit-transform: translate3d(0, -2px, 0); -} -.btn.btn--sm + .btn--sm { - margin-left: 0.92857143em; -} -p > .btn { - text-decoration: none; -} -@media all and (max-width: 767px) { - .btn:not(:last-child) { - margin-bottom: 1.85714286em; - } -} -.btn--icon { - padding-left: 5.57142857em; -} -.btn--icon i { - position: absolute; - height: 100%; - left: 0; - top: 0; - background: rgba(0, 0, 0, 0.1); - padding: 0 13px; - border-radius: 6px 0 0 6px; - font-size: 16px; - line-height: 41px; -} -.btn--icon i.socicon { - line-height: 42px; -} -.btn--cart { - width: 3.71428571em; - height: 3.71428571em; - border: 2px solid #252525; - display: block; - text-align: center; - border-radius: 6px; - opacity: .4; - padding: 0; -} -.btn--cart:hover { - opacity: 1; -} -.btn--cart .btn__text { - position: absolute; - width: 100%; - left: 0; - top: 50%; - transform: translateY(-50%); - font-size: 1.142857142857143em; -} -.imagebg:not(.image--light) .btn--icon:not([class*='bg']):not([class*='primary']) i { - color: #fff; - background: rgba(255, 255, 255, 0.2); -} -@media all and (min-width: 768px) { - .btn-group .btn { - margin-bottom: 0 !important; - margin-left: 0; - } - .btn-group .btn + .btn { - margin-left: 0; - } - .btn-group .btn:not(:first-child):not(:last-child) { - border-radius: 0; - } - .btn-group .btn:first-child { - border-radius: 6px 0 0 6px; - } - .btn-group .btn:last-child { - border-radius: 0 6px 6px 0; - } - .btn-group .btn:first-child:nth-last-child(2), - .btn-group .btn:last-child:nth-child(2) { - width: 50%; - } -} -.btn-group { - border: none; - padding: 0; -} -@media all and (max-width: 767px) { - .btn-group .btn { - display: block; - } -} -.bg--primary div:not([class*='feature']) .btn--primary { - background: #fff; - border-color: #fff; -} -.bg--primary div:not([class*='feature']) .btn--primary .btn__text { - color: #ff4f4f; -} -.bg--primary > .btn--primary { - background: #fff; - border-color: #fff; -} -.bg--primary > .btn--primary .btn__text { - color: #ff4f4f; -} -.bg--dark .btn:not(.btn--primary) { - border-color: #3f3f3f; -} -.bg--dark .btn:not(.btn--primary):hover { - border-color: #656565; -} -.bg--dark .btn .btn__text { - color: #fff; -} -.imagebg:not(.image--light) .btn:not([class*='primary']) { - border-color: rgba(255, 255, 255, 0.3); -} -.imagebg:not(.image--light) .btn:not([class*='primary']):hover { - border-color: #fff; -} -.imagebg.image--light .btn:not([class*='primary']) { - border-color: #252525; - background: rgba(255, 255, 255, 0.3); -} -.imagebg.image--light .btn:not([class*='primary']):hover { - background: rgba(255, 255, 255, 0.5); -} -h1 + .btn, -.h1 + .btn { - margin-top: 1.85714286em; -} -h2 + .btn, -.h2 + .btn { - margin-top: 0.92857143em; -} -/*! -- Stack Images -- */ -img:last-child { - margin-bottom: 0; -} -img.flag { - max-height: 1.85714286em; -} -img.image--sm:not(:last-child) { - margin-bottom: 0.92857143em; -} -img.promo.border--round { - border: 1px solid #ececec; -} -p.lead img { - max-height: 1.68421053em; -} -.imagebg h1, -.imagebg h2, -.imagebg h3, -.imagebg h4, -.imagebg h5, -.imagebg h6 { - position: relative; -} -.imagebg:not(.image--light) span { - color: #fff; -} -.imagebg.border--round { - overflow: hidden; -} -section.parallax .row .background-image-holder { - transform: none !important; - top: 0 !important; -} -.triptych.border--round img { - position: relative; - border-radius: 6px; - width: 33.333333%; - float: left; - margin: 0; -} -.triptych.border--round img:nth-child(2) { - transform: scale(1.2); - -webkit-transform: scale(1.2); - z-index: 2; - box-shadow: 0 23px 40px rgba(0, 0, 0, 0.2); -} -.gallery > div[class*='col-'] { - margin-bottom: 30px; -} -.gallery-1 { - overflow: hidden; - position: relative; -} -.gallery-1 .gallery__image:not(:last-child) { - margin-bottom: 30px; -} -.gallery-1 > div[class*='col-']:first-child > .gallery__image { - height: 800px; -} -.gallery-1 > div[class*='col-']:last-child > .gallery__image { - height: calc(385px); -} -.gallery__image { - position: relative; - overflow: hidden; -} -@media all and (max-width: 767px) { - .gallery-1 .gallery__image { - max-height: 300px; - margin-bottom: 15px; - } - .gallery-1 .gallery__image:not(:last-child) { - margin-bottom: 15px; - } -} -.section--ken-burns { - overflow: hidden; -} -.section--ken-burns > .background-image-holder, -.section--ken-burns > img:only-child { - animation: kenBurns 15s ease alternate infinite; - -webkit-animation: kenBurns 15s ease alternate infinite; -} -/*! -- Stack Titles -- */ -.breadcrumbs { - list-style: none; -} -.breadcrumbs li { - font-size: 0.85714285714286em; - display: inline-block; -} -.breadcrumbs li:not(:last-child) { - margin-right: 1.08333333333334em; -} -.breadcrumbs li:not(:last-child):after { - content: '\00bb'; - margin-left: 1.08333333333334em; -} -.breadcrumbs li a { - font-weight: normal; -} -.imagebg .breadcrumbs, -.bg--primary .breadcrumbs { - color: #fff; -} -.imagebg .breadcrumbs a, -.bg--primary .breadcrumbs a { - color: #fff; - font-weight: 600; -} -.elements-title { - border-top: none !important; -} -.elements-title + .tabs-container:not( :nth-last-child(2)), -.elements-title + section:not( :nth-last-child(2)) { - margin-bottom: 9.28571429em; -} -.elements-title + section:not(.imagebg):not([class*='bg-']):not(.unpad) { - padding-top: 1.85714286em; -} -/*! -- Stack Labels -- */ -.label { - display: inline-block; - font-size: 9px; - font-weight: 700; - letter-spacing: .5px; - color: #fff; - text-transform: uppercase; - height: 26px; - min-width: 65px; - padding: 0 10px; - text-align: center; - border-radius: 50px; - position: absolute; - z-index: 3; - top: 1.23809524em; - right: 1.23809524em; -} -.label:not([class*='bg--']) { - background: #343851; -} -.label.label--inline { - position: relative; - top: 0; - right: 0; -} -.label.label--inline:not(:last-child) { - margin-right: 0.92857143em; -} -.label.label--inline + span, -.label.label--inline + p { - position: relative; - top: 1px; -} -.label.switchable-toggle { - left: 50%; - right: auto; - transform: translate3d(-50%, 0, 0); - -webkit-transform: translate3d(-50%, 0, 0); - box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.06); -} -.bg--primary-1 .label:not([class*='bg--']) { - background: #64789c; -} -/*! -- Stack Bars -- */ -.menu-horizontal > li, -.menu-vertical > li { - font-family: 'Open Sans', 'Roboto', 'Helvetica', Sans-Serif; -} -.bar .logo { - max-height: 1.85714286em; - max-width: none; -} -.menu-horizontal > li > a, -.menu-horizontal > li > .modal-instance > a { - font-weight: 500; -} -.menu-horizontal > li a:hover { - text-decoration: none; -} -.hamburger-toggle i { - color: #252525; -} -@media all and (min-width: 990px) { - .menu-horizontal li:not(:last-child) { - margin-right: 1.23809524em; - } - .bar__module:not(:only-child) .menu-horizontal { - top: 0; - } -} -@media all and (min-width: 768px) and (max-width: 1023px) { - .bar-2 .menu-horizontal > li, - .bar-1 .menu-horizontal > li { - display: inline-block; - } - .bar-2 .menu-horizontal > li:not(:first-child), - .bar-1 .menu-horizontal > li:not(:first-child) { - margin-left: 0.92857143em; - } - .bar-2 .bar__module, - .bar-1 .bar__module { - margin-bottom: 1.85714286em; - } - .bar-2 .row div[class*='col-']:last-child .bar__module:last-child, - .bar-1 .row div[class*='col-']:last-child .bar__module:last-child { - margin-bottom: 0; - } -} -.bar-1 .menu-horizontal > li > .dropdown__trigger, -.bar-1 .menu-horizontal > li > a { - font-size: 0.857142857142857em; - line-height: 2.166666666666667em; - text-transform: uppercase; - font-weight: 600; - letter-spacing: .5px; -} -@media all and (min-width: 1024px) { - .bar-1 .bar__module + .bar__module { - margin-left: 1.85714286em; - } -} -@media all and (min-width: 991px) { - .bar-2 .logo { - position: absolute; - left: 50%; - transform: translateX(-50%); - } -} -.bar-3 { - font-size: 0.85714286em; -} -.bar-3 .menu-horizontal { - top: 0; -} -@media all and (max-width: 990px) { - .bar-3 .menu-horizontal li { - display: inline-block; - } - .bar-3 .menu-horizontal li:not(:last-child) { - margin-right: 0.92857143em; - } -} -@media all and (min-width: 990px) { - .bar-toggle .col-md-1 .logo { - top: 10px; - } -} -@media all and (max-width: 767px) { - .bar-4 .logo-light { - display: none; - } - .bar-4 .logo-dark { - margin-bottom: 1.85714286em; - } - .bar.bg--dark { - background: #252525; - } - .bar.bg--dark .hamburger-toggle i { - color: #fff; - } -} -/*! -- Stack Alerts -- */ -.alert { - border-radius: 6px; -} -.alert:not(:last-child) { - margin-bottom: 1.85714286em; -} -.alert .alert__close { - font-size: 1.35714286em; -} -/*! -- Stack Menu Toggle -- */ -.menu-toggle { - box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); - box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.04); - width: 3.71428571em; - height: 3.71428571em; - border-radius: 50%; - text-align: center; - background: #fff; - display: inline-block; - transition: 0.2s ease; - -webkit-transition: 0.2s ease; - -moz-transition: 0.2s ease; -} -.menu-toggle i { - font-size: 1.78571429em; - position: relative; - top: 13px; - color: #252525; -} -.menu-toggle:hover { - box-shadow: 0 23px 40px rgba(0, 0, 0, 0.2); - transform: translate3d(0, -2px, 0); - -webkit-transform: translate3d(0, -2px, 0); -} -/*! -- Stack Nav Utility -- */ -.nav-utility { - padding: 0.92857143em 0; -} -.nav-utility .nav-utility__module { - font-size: 0.85714285714286em; -} -.nav-utility .nav-utility__module a { - color: #666666; - font-weight: normal; -} -.nav-utility .nav-utility__module a i { - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; - display: inline-block; -} -.nav-utility .nav-utility__module a:hover i { - transform: scale(1.5); - -webkit-transform: scale(1.5); -} -.nav-utility .nav-utility__module.right:not(:last-child) { - margin-left: 2.16666666666667em; -} -.utility-toggle { - display: inline-block; - cursor: pointer; - width: 3px; - height: 3px; - position: relative; - bottom: 8px; - border-radius: 50%; - background: #252525; -} -.utility-toggle:before, -.utility-toggle:after { - content: ''; - width: 3px; - height: 3px; - border-radius: 50%; - position: absolute; - background: #252525; -} -.utility-toggle:before { - top: 6px; -} -.utility-toggle:after { - top: 12px; -} -/*! -- Stack Nav Stacked -- */ -.bar-stacked .logo { - margin-bottom: 3.71428571em; -} -/*! -- Stack Nav Side Menu -- */ -.notification.side-menu { - z-index: 9999; - background: #ffffff; - padding-top: 1.85714286em; - margin: 0; - height: 100%; - box-shadow: 0 23px 40px rgba(0, 0, 0, 0.2); - width: 27.85714286em; -} -.notification.side-menu .side-menu__module { - overflow: hidden; - padding: 2.78571429em; -} -.notification.side-menu .side-menu__module + hr:not(:last-child) { - margin: 0; -} -.notification.side-menu .menu-vertical li a { - font-size: 1.35714286em; - line-height: 1.36842105em; -} -.notification.side-menu .menu-vertical li a:hover { - text-decoration: none; -} -.notification.side-menu .btn:not(:last-child) { - margin-bottom: 1.85714286em; -} -.notification.side-menu .btn + ul.list--loose { - margin-top: 0.92857143em; -} -.notification.side-menu .notification-close-cross { - top: 0.92857143em; - right: 2.78571429em; - margin-top: 8px; -} -.notification.side-menu .social-list:not(:first-child) { - margin-top: 1.85714286em; -} -.menu-toggle.pos-fixed { - position: fixed; - right: 5.57142857em; - animation: fadeInDown .3s ease forwards; -} -@media all and (min-width: 768px) { - .side-menu .side-menu__module span.type--fine-print { - position: relative; - top: 8px; - } -} -@media all and (max-width: 767px) { - .side-menu { - width: 100%; - } - .side-menu .side-menu__module .float-right, - .side-menu .side-menu__module .float-left { - display: block; - } -} -/*! -- Stack Nav Sidebar Column -- */ -.nav-container.nav-container--sidebar + .main-container { - width: calc(100vw - 20.428571428571463em); - float: right; -} -.nav-container.nav-container--sidebar + .main-container .container { - max-width: 100%; -} -.nav-sidebar-column { - position: fixed; - z-index: 3; - left: 0; - width: 20.42857143em; - border-right: 1px solid #ececec; - height: 100vh; - overflow-y: scroll; - -ms-overflow-style: none; - padding: 2.78571429em 1.85714286em; -} -.nav-sidebar-column:not([class*='bg-']) { - background: #ffffff; -} -.nav-sidebar-column.bg--dark { - border-right: 1px solid #3f3f3f; -} -.nav-sidebar-column::-webkit-scrollbar { - display: none; -} -.nav-sidebar-column .logo { - max-height: 2.32142857em; - margin-bottom: 0.92857143em; -} -.nav-sidebar-column .text-block > p { - margin-bottom: 0.92857143em; -} -.nav-sidebar-column .menu-vertical li.dropdown:not(:hover):after { - opacity: .35; -} -.nav-sidebar-column .menu-vertical a:hover { - text-decoration: none; -} -.nav-sidebar-column .dropdown .dropdown__container, -.nav-sidebar-column .dropdown .dropdown__content { - left: 0 !important; - position: relative; - pointer-events: all; -} -.nav-sidebar-column .dropdown .dropdown__container:before { - height: 0; -} -.nav-sidebar-column .dropdown .dropdown__content { - transform: none !important; - box-shadow: none; - -webkit-box-shadow: none; - padding-top: 0.46428571em; - padding-right: 0; - padding-left: 0.46428571em; - background: none !important; -} -.nav-sidebar-column .dropdown .menu-vertical li.dropdown:after { - right: 1.85714286em; -} -.nav-sidebar-column .dropdown:not(.dropdown--active) .dropdown__container { - display: none; -} -.nav-sidebar-column .dropdown.dropdown--hover:hover > .dropdown__container { - display: block; -} -.nav-sidebar-column .social-list { - margin-bottom: 0.92857143em; -} -body.dropdowns--hover .nav-sidebar-column .dropdown:hover > .dropdown__container { - display: block; -} -.nav-sidebar-column-toggle { - transition: all .3s ease; - left: 0; - width: 3.71428571em; - height: 3.71428571em; - background: #ffffff; - text-align: center; - position: fixed; - z-index: 4; - cursor: pointer; - border-radius: 0 0 6px 0; - box-shadow: 2px 1px 4px rgba(0, 0, 0, 0.1); -} -.nav-sidebar-column-toggle > i { - transition: all .3s ease; - font-size: 1.78571429em; - position: relative; - top: 11px; -} -.nav-sidebar-column-toggle:not(.toggled-class) > i { - opacity: .5; -} -.nav-sidebar-column-toggle.toggled-class i:before { - content: '\e80b'; -} -@media all and (max-width: 990px) { - .nav-sidebar-column { - transition: all .3s ease; - left: -20.42857143em; - box-shadow: 2px 0px 4px rgba(0, 0, 0, 0); - } - .nav-sidebar-column.active { - left: 0; - box-shadow: 2px 0px 4px rgba(0, 0, 0, 0.1); - } - .nav-sidebar-column-toggle.toggled-class { - left: 20.42857143em; - } - .nav-container.nav-container--sidebar + .main-container { - width: 100%; - float: none; - } -} -.nav-container.nav-container--right .nav-sidebar-column { - right: 0; - left: auto; -} -.nav-container.nav-container--right + .main-container { - float: left; -} -.nav-container.nav-container--right .nav-sidebar-column-toggle { - left: auto; - right: 0; - border-radius: 0 0 0 6px; - box-shadow: -2px 1px 4px rgba(0, 0, 0, 0.1); -} -@media all and (max-width: 990px) { - .nav-container.nav-container--right .nav-sidebar-column { - right: -20.42857143em; - left: auto; - } - .nav-container.nav-container--right .nav-sidebar-column.active { - left: auto; - right: 0; - box-shadow: -2px 0px 4px rgba(0, 0, 0, 0.1); - } - .nav-container.nav-container--right .nav-sidebar-column-toggle.toggled-class { - left: auto; - right: 20.42857143em; - } -} -/*! -- Stack Nav Fullscreen -- */ -.menu-fullscreen { - color: #fff; -} -.menu-fullscreen .pos-absolute { - width: 100%; -} -.menu-fullscreen a { - color: #fff; -} -.menu-fullscreen a:hover { - text-decoration: none; -} -.menu-fullscreen .social-list { - margin-right: 0; -} -.menu-fullscreen:before { - background: rgba(0, 0, 0, 0.9); -} -.menu-fullscreen .modal-content .modal-close-cross { - right: 3.71428571em; - top: 1em; -} -@media all and (max-width: 767px) { - .menu-fullscreen .pos-bottom { - position: relative; - } -} -/*! -- Stack Dropdowns -- */ -.dropdown > .dropdown__trigger:after { - font-family: "stack-interface"; - display: inline-block; - font-size: 8px; - position: relative; - bottom: 2px; -} -.dropdown > .dropdown__trigger .image--xxs { - margin-right: 0.46428571em; -} -.dropdown .dropdown__content { - border-radius: 6px; - box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.08); - -webkit-box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.08); - padding: 1.23809524em 1.85714286em; -} -.dropdown .dropdown__content h5:not(:last-child) { - margin-bottom: 0.92857143em; -} -.dropdown .dropdown__content .background-image-holder { - border-radius: 6px 0 0 6px; -} -.dropdown .dropdown__content > .pos-absolute[class*='col-'] { - left: 0; - top: 0; - height: 100%; - position: absolute !important; -} -.dropdown .dropdown__content > .pos-absolute[class*='col-'][data-overlay]:before { - border-radius: 6px 0 0 6px; -} -.menu-horizontal > .dropdown > .dropdown__trigger:after { - content: '\e80a'; - margin-left: 4px; -} -.menu-vertical > .dropdown > .dropdown__trigger { - display: inline-block; - width: 100%; -} -@media all and (max-width: 767px) { - .dropdown [class*='col-'] + [class*='col-'] { - margin-top: 0.92857143em; - } - .dropdown .dropdown__content:not([class*='bg-']) { - border: none; - box-shadow: none; - } -} -@media all and (max-width: 767px) { - .dropdown__container { - left: 0 !important; - } -} -.menu-vertical li { - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; -} -.menu-vertical li:not(:hover):not(.dropdown--active) { - opacity: .75; -} -.menu-vertical li:not(:last-child) { - margin-bottom: 0.30952381em; -} -.menu-vertical li.dropdown { - position: relative; -} -.menu-vertical li.dropdown:after { - content: '\e80c'; - font-family: 'stack-interface'; - right: 0; - top: 0; - position: absolute; - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; - display: inline-block; - transform: translate3d(-10px, 0, 0); - -webkit-transform: translate3d(-10px, 0, 0); -} -.menu-vertical li.dropdown:hover:after { - transform: translate3d(-5px, 0, 0); - -webkit-transform: translate3d(-5px, 0, 0); -} -.menu-vertical li.separate { - border-top: 1px solid #e6e6e6; - margin-top: 0.92857143em; - padding-top: 0.92857143em; -} -.menu-vertical li.separate.dropdown:after { - top: .92857143em; -} -.menu-vertical + h5 { - margin-top: 1.85714286em; -} -@media all and (max-width: 990px) { - .menu-vertical .dropdown.dropdown--active:after { - opacity: 0; - } -} -@media all and (min-width: 991px) { - .dropdown .dropdown__container:before { - height: 18px; - } -} -/*! -- Stack Twitter Feeds -- */ -.tweets-feed .interact { - display: none; -} -.tweets-feed .user a:hover { - text-decoration: none; -} -.tweets-feed .user img { - border-radius: 50%; -} -.tweets-feed-1 { - border-radius: 6px; - border: 1px solid #ececec; - overflow: hidden; -} -.tweets-feed-1 li { - overflow: hidden; - padding: 1.85714286em; - padding-bottom: 0; -} -.tweets-feed-1 li:not(:last-child) { - border-bottom: 1px solid #ececec; -} -.tweets-feed-1 .user { - width: 20%; - float: left; - margin-bottom: 0.92857143em; -} -.tweets-feed-1 .user img { - max-height: 3.71428571em; - margin-right: 0.46428571em; -} -.tweets-feed-1 .user [data-scribe="element:name"], -.tweets-feed-1 .user [data-scribe="element:screen_name"] { - display: none; -} -.tweets-feed-1 .tweet, -.tweets-feed-1 .timePosted { - width: 80%; - float: right; -} -.tweets-feed-1 .tweet { - margin-bottom: 0.46428571em; -} -.tweets-feed-1 .timePosted { - font-size: 0.85714286em; - line-height: 2.16666667em; -} -.tweets-feed-1:not(:last-child) + .btn { - margin-top: 2.78571429em; -} -.imagebg .tweets-feed-1, -.bg--dark .tweets-feed-1 { - border-color: rgba(255, 255, 255, 0.1); -} -.imagebg .tweets-feed-1 li:not(:last-child), -.bg--dark .tweets-feed-1 li:not(:last-child) { - border-color: rgba(255, 255, 255, 0.1); -} -.tweets-feed-2 .user { - display: none; -} -.tweets-feed-2 .timePosted { - display: none; -} -.tweets-feed-2 li { - overflow: hidden; -} -.tweets-feed-2 li:before { - font-family: 'socicon'; - content: "\e08d"; -} -.tweets-feed-2 li .tweet { - width: 85%; - float: right; -} -.tweets-feed.slider .user img { - display: inline-block; - clear: both; - margin-bottom: 0.92857143em; -} -.tweets-feed.slider .user [data-scribe="element:name"] { - display: none; -} -.tweets-feed.slider .user [data-scribe="element:screen_name"] { - display: block; - font-size: 1.35714286em; - line-height: 1.36842105em; - font-weight: normal; -} -.tweets-feed.slider .tweet { - margin-top: 1.36842105263158em; - margin-bottom: 0.68421052631579em; - font-size: 1.35714286em; - line-height: 1.36842105em; -} -.tweets-feed.slider .timePosted { - margin: 0; -} -.tweets-feed.slider:not(:last-child) + .btn { - margin-top: 2.78571429em; -} -/*! -- Stack Instagram -- */ -.instafeed a { - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; -} -.instafeed a:hover { - opacity: .75; -} -.instafeed:not(.instafeed--gapless) li { - padding: 0.46428571em; -} -.instafeed.instafeed--gapless li { - margin-bottom: -1px; -} -.instafeed + .btn { - margin-top: 2.78571429em; -} -.instafeed[data-grid="1"][data-amount="8"] li { - display: inline-block; - width: 12.5%; -} -.instagram { - position: relative; -} -.instagram.unpad .btn { - position: absolute; - z-index: 2; - top: 50%; - transform: translate3d(-50%, -50%, 0); - -webkit-transform: translate3d(-50%, -50%, 0); - margin: 0; -} -/*! -- Stack Cards -- */ -.card__top { - position: relative; - overflow: hidden; -} -.card__action a { - color: #666666; - text-decoration: none; - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; -} -.card__action a i { - color: #252525; - font-size: 1em; -} -.card__action a span { - position: relative; - bottom: 2px; -} -.card__action a:not(:hover) { - opacity: .5; -} -.card p a { - text-decoration: none; -} -.masonry__item .card.boxed { - margin-bottom: 0; -} -.card-1 .card__avatar { - margin-bottom: 0.92857143em; -} -.card-1 .card__avatar img { - max-height: 2.78571429em; - margin-right: 0.46428571em; - margin-bottom: 0; -} -.card-1 .card__avatar, -.card-1 .card__meta { - display: inline-block; -} -.card-1 .card__meta { - float: right; -} -.card-1 .card__body { - border-bottom: 1px solid #ececec; - padding-bottom: 0.92857143em; - margin-bottom: 0.92857143em; -} -.card-1 .card__body img { - margin-bottom: 0.92857143em; -} -.card-1 .card__body h4 { - margin-bottom: 0.342105263157895em; -} -.bg--dark .card-1 .card__body { - border-color: #3f3f3f; -} -@media all and (max-width: 767px) { - .card .list-inline:not(.social-list) li { - display: inline-block; - } - .card .list-inline:not(.social-list) li:not(:first-child) { - margin-left: 0.92857143em; - } -} -.card-2 .card__top img { - border-radius: 6px 6px 0 0; -} -.card-2 .card__body { - border-bottom: 1px solid #ececec; - padding-bottom: 1.85714286em; -} -.card-2 .card__body h4 { - margin: 0; -} -.card-2 .card__body p { - margin-top: 0.92857143em; -} -.card-2 .card__bottom { - overflow: hidden; -} -.card-2 .card__bottom > div { - display: inline-block; - width: 50%; - float: left; -} -.card-2 .card__bottom .h6 { - margin-bottom: 0.541666666666667em; -} -.card-2 .card__body, -.card-2 .card__bottom { - padding: 1.85714286em; - border: 1px solid #ececec; -} -.card-2 .card__body { - border-bottom: none; - border-top: none; -} -.card-2 .card__bottom { - border-radius: 0 0 6px 6px; - padding: 0.92857143em 1.85714286em; -} -.card-2 .card__action i { - font-size: 1.78571429em; -} -.bg--dark .card-2 .card__body, -.bg--dark .card-2 .card__bottom { - border-color: #3f3f3f; -} -/*! -- Stack Checkmarks & Crosses -- */ -.checkmark { - display: inline-block; - position: relative; - width: 1.23809524em; - height: 1.23809524em; - border-radius: 50%; - text-align: center; -} -.checkmark:not([class*='bg-']) { - background: #ff4f4f; -} -.checkmark:before { - content: '\2713'; - color: #fff; - font-size: 11px; - position: absolute; - width: 100%; - left: 0; - top: -4px; -} -.checkmark.checkmark--cross:before { - content: '\2717'; -} -.checkmark:not(:last-child) { - margin-right: 13px; -} -/*! -- Stack Icons -- */ -.icon:not(.block) { - display: inline-block; -} -.icon.icon--xs { - font-size: 1.14285714285714em; -} -.text-block .icon + h4 { - margin-top: 0.6842105263158em; -} -.imagebg .icon { - color: #fff; -} -p .material-icons { - font-size: 1em; -} -p .material-icons:first-child { - margin-right: 0.30952381em; -} -.material-icons { - font-family: 'Material Icons' !important; -} -.icon-circle { - position: relative; - display: inline-block; - width: 3.71428571em; - height: 3.71428571em; - border-radius: 50%; - border: 1px solid #ececec; - background: #fafafa; - text-align: center; -} -.icon-circle i { - font-size: 24px; - position: absolute; - top: 50%; - transform: translateY(-50%); - width: 100%; - left: 0; -} -/*! -- Stack Tooltips -- */ -.tooltip { - position: relative; - top: 3px; - display: inline-block; - width: 1.23809524em; - height: 1.23809524em; - border-radius: 50%; - background: #252525; - text-align: center; - cursor: pointer; -} -.tooltip .tooltip__anchor { - color: #fff; - font-weight: 700; - font-size: 11px; - position: absolute; - top: -5px; - left: 6px; -} -.tooltip .tooltip__text { - transition: 0.2s ease; - -webkit-transition: 0.2s ease; - -moz-transition: 0.2s ease; - text-align: left; - z-index: 10; - position: absolute; - width: 280px; - background: #fafafa; - border: 1px solid #ececec; - padding: 0.61904762em; - left: 1.48571429em; - top: -0.92857143em; - opacity: 0; - pointer-events: none; - cursor: default; - box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); - box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.04); - line-height: 20px; -} -.tooltip:hover .tooltip__text { - opacity: 1; -} -.tooltip:last-child { - margin-left: 0.92857143em; -} -[data-tooltip] { - position: relative; - overflow: visible; -} -[data-tooltip]:after { - transition: all .2s ease; - content: attr(data-tooltip); - position: absolute; - top: -24px; - left: 50%; - transform: translateX(-50%); - background: #252525; - color: #fff; - border: 1px solid #e7e7e7; - padding: 2px 12px; - pointer-events: none; - white-space: nowrap; - font-size: 11px; - line-height: 18px; - font-weight: 600; - border-radius: 2px; - z-index: 2; - font-family: 'Open Sans'; -} -[data-tooltip]:not(:hover):after { - opacity: 0; -} -/*! -- Stack Boxes -- */ -.boxed { - border-radius: 6px; -} -.boxed .background-image-holder { - border-radius: 6px; -} -.boxed:before { - border-radius: 6px; -} -.boxed:not(:last-child) { - margin-bottom: 30px; -} -.boxed:not([class*='bg-']) { - background: #ffffff; -} -.boxed.bg--secondary .boxed { - background: #fafafa; -} -@media all and (min-width: 768px) { - .switchable .imagebg .boxed { - padding-left: 5.57142857em; - } -} -.bg--dark .boxed:not([class*='bg-']), -.imagebg:not(.image--light) .boxed:not([class*='bg-']) { - background: none; - color: #fff; -} -.bg--dark .boxed:not([class*='bg-']).boxed--border, -.imagebg:not(.image--light) .boxed:not([class*='bg-']).boxed--border { - border-color: #3f3f3f; -} -.bg--dark .boxed[class*='bg-'].boxed--border, -.imagebg:not(.image--light) .boxed[class*='bg-'].boxed--border { - border: none; -} -.imagebg:not(.image--light) .boxed:not(.bg--white):not(.bg--none) { - background: rgba(20, 20, 20, 0.3); -} -.imagebg:not(.image--light) .boxed:not(.bg--white):not(.bg--none).boxed--border { - border: none; -} -.imagebg:not(.image--light) .boxed:not(.bg--white):not(.bg--none) .boxed { - background: none; -} -.bg--primary .boxed:not(.imagebg) { - color: #666666; -} -.bg--primary .boxed:not(.imagebg) p { - color: #666666; -} -.bg--primary .boxed:not(.imagebg) h1, -.bg--primary .boxed:not(.imagebg) h2, -.bg--primary .boxed:not(.imagebg) h3, -.bg--primary .boxed:not(.imagebg) h4, -.bg--primary .boxed:not(.imagebg) h5, -.bg--primary .boxed:not(.imagebg) h6, -.bg--primary .boxed:not(.imagebg) .h1, -.bg--primary .boxed:not(.imagebg) .h2, -.bg--primary .boxed:not(.imagebg) .h3, -.bg--primary .boxed:not(.imagebg) .h4, -.bg--primary .boxed:not(.imagebg) .h5, -.bg--primary .boxed:not(.imagebg) .h6, -.bg--primary .boxed:not(.imagebg) i { - color: #252525; -} -.bg--primary .boxed:not(.imagebg) a { - color: #ff4f4f; -} -.bg--primary .boxed:not(.imagebg) .color--primary { - color: #ff4f4f !important; -} -@media all and (min-width: 768px) { - .boxed.boxed--emphasis { - transform: scale(1.075); - -webkit-transform: scale(1.075); - } -} -/*! -- Stack Features Small -- */ -.feature:not(.boxed) { - margin-bottom: 60px; -} -.feature.feature--featured:after { - content: ''; - position: absolute; - bottom: 0; - width: 100%; - height: 4px; - background: #ff4f4f; - left: 0; -} -.feature h5 { - margin: 0; -} -.feature h4 { - margin-bottom: 0.342105263157895em; -} -.feature h4 + p { - max-width: 22.28571429em; -} -.feature i + h5 { - margin-top: 1.85714286em; -} -.feature i + h4 { - margin-top: 0.68421052631579em; -} -.feature i.icon--lg + h4 { - margin-top: 1.36842105263158em; -} -.feature i.icon--lg + .h5 { - margin-top: 0.92857143em; -} -.feature img + .boxed { - border-radius: 0 0 6px 6px; - border-top: none; -} -.imagebg:not(.image--light) .feature.bg--white a:not(.btn) { - color: #ff4f4f; -} -.imagebg:not(.image--light) .feature.bg--white .label { - color: #fff; -} -@media all and (max-width: 767px) { - .feature .feature__body form .row { - margin-left: 0; - margin-right: 0; - } -} -section.text-center .feature-6 h4 + p { - margin: 0 auto; -} -@media all and (min-width: 768px) { - .row div[class*='col-']:nth-child(1):nth-last-child(3) .feature, - .row div[class*='col-']:nth-child(2):nth-last-child(2) .feature, - .row div[class*='col-']:nth-child(3):last-child .feature { - margin-bottom: 0; - } -} -a.block > .feature { - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; -} -a.block:hover > .feature { - box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); - box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.04); -} -.feature-1 { - min-height: 11.14285714em; -} -.feature-1 p { - margin: 0; -} -.feature-1 p.lead { - min-height: 5.05263157894737em; -} -.feature-1 > img:first-child { - border-radius: 6px 6px 0 0; -} -.feature-1 > a.block img { - border-radius: 6px 6px 0 0; -} -.feature-1 > a.block + .feature__body { - border-radius: 0 0 6px 6px; -} -.feature-1[class*='box-shadow'] { - border-radius: 6px; - transition: 0.35s ease-out; - -webkit-transition: 0.35s ease-out; - -moz-transition: 0.35s ease-out; -} -.feature-1[class*='box-shadow']:hover { - transform: translate3d(0, -10px, 0); - -webkit-transform: translate3d(0, -10px, 0); - box-shadow: 0 23px 40px rgba(0, 0, 0, 0.2); -} -.hover-shadow { - border-radius: 6px; - backface-visibility: hidden; - overflow: hidden; - border: 1px solid #ececec; - transition: 0.35s ease-out; - -webkit-transition: 0.35s ease-out; - -moz-transition: 0.35s ease-out; -} -.hover-shadow:hover { - transform: translate3d(0, -10px, 0); - -webkit-transform: translate3d(0, -10px, 0); - box-shadow: 0 23px 40px rgba(0, 0, 0, 0.2); -} -.bg--dark .hover-shadow { - border-color: #222; -} -.bg--dark .hover-shadow:hover { - box-shadow: 0 23px 40px #000000; -} -.feature-2 { - overflow: hidden; -} -.feature-2 .feature__body { - width: 75%; - float: right; -} -.feature-2 h5 { - margin-bottom: 0.46428571em; -} -.feature-2 p:last-child { - margin: 0; -} -.feature-2 i { - width: 25%; - float: left; -} -.feature-large .feature-2 + .feature-2:last-child { - margin-bottom: 0; -} -@media all and (max-width: 990px) { - .feature-2 .feature__body, - .feature-2 i { - width: 100%; - float: none; - } - .feature-2 p:first-of-type { - margin-top: 0.92857143em; - } -} -.feature-3 i { - margin-bottom: 0.16666666666667em; -} -.feature-3 p { - min-height: 7.42857143em; -} -.feature-4 .btn { - position: absolute; - width: 100%; - bottom: 0; - left: 0; - border-radius: 0; - padding: 0.92857143em; -} -.feature-4 .btn:hover { - transform: none; -} -.feature-4 p { - min-height: 9.28571429em; -} -.feature-4 p:last-of-type { - margin-bottom: 3.71428571em; -} -.feature-5 i { - width: 25%; - float: left; -} -.feature-5 .feature__body { - width: 75%; - float: right; -} -.feature-5 p { - min-height: 5.57142857em; -} -.feature-5 p:last-of-type { - margin-bottom: 0.92857143em; -} -.feature-5:not([class*='bg-']) { - color: #252525; -} -.feature-6 p { - min-height: 9.28571429em; -} -.feature-6 p:last-child { - margin: 0; -} -.feature-7 { - height: 13em; - margin-bottom: 30px; -} -.feature-7[data-overlay]:before { - border-radius: 6px; - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; -} -.feature-7[data-overlay]:hover:before { - opacity: .75; -} -.feature-7 .background-image-holder { - border-radius: 6px; -} -.feature-7 h3 { - margin: 0; -} -.row--gapless .feature-7 { - margin: 0; - border-radius: 0; -} -.row--gapless .feature-7 .background-image-holder { - border-radius: 0; -} -.row--gapless .feature-7:before { - border-radius: 0; -} -@media all and (max-width: 767px) { - .feature-7 .pos-vertical-center { - top: 50%; - transform: translate3d(0, -50%, 0); - -webkit-transform: translate3d(0, -50%, 0); - } -} -.feature-8 { - padding: 2.78571429em 0 3.71428571em 0; -} -.feature-8:not(.boxed) { - margin-bottom: 0; -} -.feature-8 .feature__body { - max-width: 70%; - margin: 0 auto; -} -.feature-8 p { - min-height: 5.57142857em; -} -@media all and (max-width: 990px) { - .feature-8 .feature__body { - max-width: 85%; - } -} -@media all and (max-width: 767px) { - .feature p { - min-height: auto; - margin-left: auto; - margin-right: auto; - } - .feature.boxed { - margin-bottom: 15px; - } - .feature:not(.boxed) { - margin-bottom: 30px; - } - .feature.feature-8 { - margin-bottom: 0; - } -} -.feature-8 img { - max-height: 14.85714286em; -} -.feature-9 h4 { - margin: 0; -} -.feature-9:not(.boxed) { - margin-bottom: 30px; -} -@media all and (min-width: 768px) { - .features-small-14 .text-block { - margin-bottom: 3.71428571em; - } - .features-small-14 h4 { - min-height: 2.736842105263158em; - } -} -/*! -- Stack Features Large -- */ -@media all and (min-width: 768px) { - .staggered div[class*='col-']:nth-child(2):last-child { - margin-top: 13em; - } - .staggered div[class*='col-']:nth-child(2):last-child:not(:last-child) { - margin-bottom: 9.28571429em; - } - .staggered div[class*='col-'] .feature:not(:last-child) { - margin-bottom: 9.28571429em; - } -} -.feature-large h4:first-child { - margin-bottom: 0.68421052631579em; -} -.feature-large .feature:not(.boxed) { - margin-bottom: 30px; -} -.feature-large .feature-3.text-center p { - margin: 0 auto; -} -.feature-large .lead + .feature-large__group { - margin-top: 3.71428571em; -} -.feature-large .feature-large__group { - overflow: hidden; -} -.feature-large-1 .lead { - margin-bottom: 2.73684210526316em; -} -@media all and (min-width: 768px) { - .feature-large-2 div[class*='col-']:first-child { - margin-top: 5.57142857em; - } - .feature-large-2 div[class*='col-']:last-child { - margin-top: 7.42857143em; - } -} -@media all and (max-width: 767px) { - .feature-large-2 img { - margin: 1.85714286em 0; - } -} -.feature-large-7.switchable .boxed div[class*='col-']:only-child { - float: none; -} -.feature-large-13 p.lead + .text-block { - margin-top: 3.71428571em; -} -.feature-large-13 div[class*='col-'] .text-block + .text-block { - margin-top: 2.78571429em; -} -@media all and (min-width: 1200px) { - .feature-large-13:not(.text-center) .text-block p { - max-width: 26em; - } -} -.feature-large-14 h5 { - margin-bottom: 0.46428571em; -} -.feature-large-14 .boxed { - margin-bottom: 0; -} -.feature-large-14 .boxed.boxed--border img { - border-radius: 6px; -} -@media all and (min-width: 768px) { - .feature-large-14.switchable .switchable__text { - margin-top: 5.57142857em; - } -} -/*! -- Stack Accordions -- */ -.accordion .accordion__title { - transition: 0.5s ease; - -webkit-transition: 0.5s ease; - -moz-transition: 0.5s ease; - opacity: .5; - margin-bottom: 0.92857143em; -} -.accordion .accordion__title:hover { - opacity: 1; -} -.accordion .accordion__title:before { - font-family: "stack-interface"; - content: '\e80d'; - margin-right: 6px; - color: #252525; -} -.accordion .accordion__title span { - display: inline-block; -} -.accordion li.active { - margin-bottom: 0.92857143em; -} -.accordion li.active .accordion__title { - opacity: 1; -} -.accordion li.active .accordion__title:before { - content: '\e80a'; -} -.accordion li.active .accordion__content { - animation: fadeUp .5s ease forwards; - -webkit-animation: fadeUp .5s ease forwards; -} -.accordion-1 li.active .accordion__title { - border-color: #ff4f4f; -} -.accordion-1 li.active .accordion__title span { - color: #fff; -} -.accordion-1 li.active .accordion__title:before { - color: #fff; -} -.accordion-1 li .accordion__title { - border-radius: 6px; - border-bottom: 1px solid #ECECEC; -} -.accordion-2 li .accordion__title { - border-left: none; - border-right: none; - border-top: none; - border-bottom: 1px solid #ECECEC; - padding-left: 0; -} -.accordion-2 li.active .accordion__title { - background: none; - border-bottom: 1px solid rgba(0, 0, 0, 0); -} -.bg--dark .accordion-2 li .accordion__title, -.imagebg:not(.image--light) .accordion-2 li .accordion__title, -.bg--primary .accordion-2 li .accordion__title, -.bg--dark .accordion-1 li .accordion__title, -.imagebg:not(.image--light) .accordion-1 li .accordion__title, -.bg--primary .accordion-1 li .accordion__title { - border-color: #4b4b4b; -} -.bg--dark .accordion-2 li .accordion__title:before, -.imagebg:not(.image--light) .accordion-2 li .accordion__title:before, -.bg--primary .accordion-2 li .accordion__title:before, -.bg--dark .accordion-1 li .accordion__title:before, -.imagebg:not(.image--light) .accordion-1 li .accordion__title:before, -.bg--primary .accordion-1 li .accordion__title:before { - color: #fff; -} -.imagebg:not(.image--light) .accordion li .accordion__title, -.bg--primary .accordion li .accordion__title { - border-color: rgba(255, 255, 255, 0.3); -} -/*! -- Stack Tabs -- */ -.tabs-container.tabs--vertical { - overflow: hidden; -} -.tabs-container.tabs--vertical .tabs { - width: 25%; - float: left; -} -.tabs-container.tabs--vertical .tabs li { - display: block; -} -.tabs-container.tabs--vertical .tabs li:not(:last-child) { - border-right: none; - border-bottom: 1px solid #ECECEC; -} -.tabs-container.tabs--vertical .tabs-content { - width: 70%; - float: right; - margin-top: 0; -} -.tabs-container.tabs--vertical .tabs-content > li:not(.active) .tab__content { - animation: fadeOutUp .5s ease forwards; - -webkit-animation: fadeOutUp .5s ease forwards; -} -.tabs-container.tabs--vertical .tabs-content > li.active .tab__content { - animation: fadeInUp .5s ease forwards; - -webkit-animation: fadeInUp .5s ease forwards; - backface-visibility: hidden; -} -.tabs-container.tabs--vertical.tabs--icons .tabs { - width: 15%; - text-align: center; -} -.tabs-container.tabs--vertical.tabs--icons .tabs-content { - width: 80%; -} -@media all and (max-width: 767px) { - .tabs-container.tabs--vertical .tabs, - .tabs-container.tabs--vertical .tabs-content { - width: 100%; - float: none; - } - .tabs-container.tabs--vertical .tabs { - margin-bottom: 1.85714286em; - } - .tabs-container.tabs--vertical .tabs-content > li:not(.active) .tab__content { - animation: fadeOutRight .5s ease forwards; - -webkit-animation: fadeOutRight .5s ease forwards; - } - .tabs-container.tabs--vertical .tabs-content > li.active .tab__content { - animation: fadeInLeft .5s ease forwards; - -webkit-animation: fadeInLeft .5s ease forwards; - backface-visibility: hidden; - } -} -.tabs { - display: inline-block; - border: 1px solid #ECECEC; - border-radius: 6px; - margin-bottom: 1.85714286em; -} -.tabs li { - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; - padding: 0.92857143em 1.85714286em; -} -.tabs li:not(:last-child) { - border-right: 1px solid #ECECEC; -} -.tabs li.active { - opacity: 1; -} -.tabs li.active .tab__title { - color: #ff4f4f; -} -.tabs li.active .tab__title span { - color: #ff4f4f; -} -.tabs li:not(.active) { - opacity: .5; -} -.tabs li:hover { - opacity: 1; - cursor: pointer; -} -.tabs .tab__title { - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; -} -.tabs .tab__title:not(.btn) { - padding-right: 0; - padding-left: 0; -} -.tabs .tab__title i + span { - margin-top: 0.46428571em; - display: inline-block; - margin-bottom: 0; -} -.bg--primary .tabs { - border-color: #fff; -} -.bg--primary .tabs li.active .tab__title { - color: #fff; -} -.bg--primary .tabs li.active .tab__title span { - color: #fff; -} -.bg--primary .tabs li:not(:last-child) { - border-color: #fff; -} -@media all and (min-width: 768px) { - .tabs.tabs--spaced { - margin-bottom: 3.71428571em; - } -} -.tabs-content { - position: relative; -} -.tabs-content > li:not(.active) .tab__content { - position: absolute; - left: 0; - top: 0; - display: block; - opacity: 0; - pointer-events: none; - animation: fadeOutRight .5s ease forwards; - -webkit-animation: fadeOutRight .5s ease forwards; -} -.tabs-content > li.active { - animation: fadeInLeft .5s ease forwards; - -webkit-animation: fadeInLeft .5s ease forwards; - backface-visibility: hidden; -} -@media all and (max-width: 767px) { - .tabs li { - display: block; - } - .tabs li:not(:last-child) { - border-bottom: 1px solid #ECECEC; - border-right: none; - } -} -.tabs--folder .tabs { - overflow: hidden; - margin-bottom: 0; - border-radius: 6px 6px 0 0; - border-bottom: none; -} -.tabs--folder .tabs > li { - border-top: 3px solid rgba(0, 0, 0, 0); -} -.tabs--folder .tabs > li.active { - border-top: 3px solid #ff4f4f; -} -.tabs--folder .tabs-content { - overflow: hidden; - position: relative; - bottom: 8px; - padding: 1.85714286em; - border: 1px solid #ECECEC; - border-radius: 0 0 6px 6px; -} -.tabs--folder .tabs-content > li:not(.active) .tab__content { - top: 1.85714286em; - left: 1.85714286em; -} -.tabs--folder .tab__title .h5 { - margin: 0; - display: inline-block; -} -.tabs--folder .tab__title .label { - position: relative; - color: #fff !important; - top: -2px; - right: 0; - margin-left: 0.46428571em; - min-width: 0; -} -/*! -- Stack Switchable Sections -- */ -.switchable .switchable__text { - margin-top: 1.85714286em; -} -.switchable [class*='col-']:first-child .switchable__text { - margin-bottom: 2.78571429em; -} -.section--overlap .row { - position: relative; - margin-top: -13em; -} -@media all and (max-width: 990px) { - .switchable .switchable__text { - margin-top: 0; - } -} -@media all and (max-width: 767px) { - .switchable .switchable__text { - margin-top: 1.85714286em; - } - .switchable .imageblock__content[class*='col-'] { - float: none !important; - } - .switchable .row > div[class*='col-'] { - float: none !important; - } - .switchable .row > div[class*='col-']:last-child:not(:only-child) { - margin-top: 1.85714286em; - } -} -/*! -- Stack CTA -- */ -.cta .btn:first-child:not(:last-child) { - margin-bottom: 1.85714286em; -} -.cta.boxed:last-child { - margin-bottom: 0; -} -@media all and (min-width: 768px) { - .cta--horizontal h4, - .cta--horizontal .lead, - .cta--horizontal .btn { - margin: 0; - } - .cta--horizontal h4, - .cta--horizontal .lead { - position: relative; - top: 4px; - } - .bg--dark .cta-1 > div[class*='col-']:last-child, - .imagebg .cta-1 > div[class*='col-']:last-child { - border-left: none; - } -} -@media all and (min-width: 1200px) { - .cta-1.boxed--border { - padding: 0; - } - .cta-1 > div[class*='col-'] { - padding: 1.23809524em 15px; - } - .cta-1 > div[class*='col-']:last-child { - border-left: 1px solid #ECECEC; - } -} -@media all and (max-width: 990px) { - .cta-1 { - text-align: center; - } - .cta-1 > div[class*='col-'] { - padding-left: 0; - padding-right: 0; - } - .cta-1 > div[class*='col-']:not(:last-child) { - margin-bottom: 0.92857143em; - } - .cta-1 > div[class*='col-']:last-child { - margin-top: 1.85714286em; - } -} -@media all and (max-width: 767px) { - .cta .lead { - margin: 1.36842105263158em 0; - } -} -.cta-2 { - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; -} -.cta-2 h2 { - margin: 1.57575757575758em 0; -} -.cta-2.bg--primary:hover { - background: #ff5e5e; -} -.cta-2:hover { - background: #ffffff; -} -@media all and (min-width: 768px) { - .cta-3 .switchable__text { - margin-top: 5.57142857em; - } -} -/*! -- Stack Videos -- */ -.video-play-icon:before { - border-color: transparent transparent transparent #252525; - margin-top: -3px; -} -.modal-instance .video-play-icon + span { - position: relative; - display: inline-block; - margin-left: 0.92857143em; - white-space: nowrap; - bottom: 22px; -} -.modal-instance .video-play-icon.video-play-icon--xs + span { - bottom: 8px; - margin-left: 0.46428571em; -} -.video-cover { - background: #252525; -} -.video-cover.border--round { - overflow: hidden; -} -.video-cover.border--round iframe { - border-radius: 6px; -} -.video-cover:not(:last-child) { - margin-bottom: 1.85714286em; -} -.video-cover + span.h4 + span { - display: inline-block; - margin-left: 0.92857143em; -} -.video-cover .video-play-icon { - transition: 0.2s ease-out; - -webkit-transition: 0.2s ease-out; - -moz-transition: 0.2s ease-out; -} -.video-cover .video-play-icon:hover { - box-shadow: 0 23px 40px rgba(0, 0, 0, 0.2); - transform: translate3d(-50%, -52%, 0); - -webkit-transform: translate3d(-50%, -52%, 0); -} -.imagebg .video-cover .video-play-icon { - z-index: 10; -} -@media all and (min-width: 768px) { - h2 + .video-cover { - margin-top: 3.71428571em; - } -} -@media all and (min-width: 768px) { - .video-1 .video-play-icon { - margin-right: 1.85714286em; - } - .video-1 h2 { - display: inline-block; - position: relative; - bottom: 14px; - } - div[class*='col-sm-6'] .video-1 h2 { - bottom: 0; - display: block; - } - div[class*='col-sm-6'] .video-1 .video-play-icon { - margin-bottom: 0.46428571em; - } -} -.video-1 h2 { - margin: 0; -} -.imageblock__content .modal-instance { - position: absolute; - top: 50%; - left: 50%; - transform: translate3d(-50%, -50%, 0); - -webkit-transform: translate3d(-50%, -50%, 0); -} -/*! -- Stack Modals -- */ -.modal-container .modal-content:not(.height--natural) { - height: auto; - width: auto; -} -.modal-instance:not(.block) { - display: inline-block; -} -.modal-instance.block > .btn { - display: block; -} -@media all and (min-width: 768px) { - .modal-instance + span:last-child { - display: inline-block; - margin-left: 0.92857143em; - } -} -.modal-container .modal-content { - max-height: 95%; - transform: translateX(-50%) translateY(-50%); - -webkit-transform: translateX(-50%) translateY(-50%); -} -.modal-container .modal-content .feature:only-child { - margin-bottom: 0; -} -.modal-container .modal-content .feature:only-child .boxed { - margin-bottom: 0; -} -.modal-container .modal-content .imagebg:not(.image--light) .modal-close-cross:before { - color: #fff; -} -@media all and (max-width: 767px) { - .modal-container .modal-content > .modal-close-cross { - top: 3em; - background: #222; - width: 2em; - height: 2em; - text-align: center; - border-radius: 50%; - color: #fff; - } -} -.modal-content { - -ms-overflow-style: none; -} -.modal-content::-webkit-scrollbar { - display: none; -} -/*! -- Stack Notifications -- */ -.notification { - margin: 1.85714286em; - box-shadow: none; -} -.notification:not([class*='bg--']) { - background: none; -} -.notification > .boxed { - margin: 0; -} -.notification > .feature, -.notification .feature__body { - margin-bottom: 0; -} -.search-box { - width: 100%; - margin: 0; - padding: 1.85714286em; - box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); - box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.04); -} -.search-box.notification--reveal { - z-index: 9999; -} -.search-box .notification-close-cross { - top: 2.32142857em; - right: 1.85714286em; -} -.notification-close-cross.notification-close-cross--circle { - background: #222; - width: 2em; - height: 2em; - text-align: center; - border-radius: 50%; - color: #fff; -} -/*! -- Stack Loader -- */ -.loader { - border: 3px solid #ff4f4f; - border-radius: 30px; - height: 30px; - left: 50%; - margin: -15px 0 0 -15px; - opacity: 0; - position: fixed; - z-index: 10; - top: 50%; - width: 30px; - animation: pulsate 0.7s ease-out infinite; -} -.loader.loader--fade { - opacity: 0; - animation: none; -} -@keyframes pulsate { - 0% { - transform: scale(0.1); - opacity: 0.0; - } - 50% { - opacity: 1; - } - 100% { - transform: scale(1.2); - opacity: 0; - } -} -/*! -- Stack Lightboxes -- */ -.lb-close { - position: relative; - top: 10px; -} -.lb-close:before { - content: '\00D7'; - color: #fff; - font-size: 2.5em; - font-weight: 400; -} -.lb-close:hover { - text-decoration: none; -} -.lb-prev:after, -.lb-next:after { - font-family: 'stack-interface'; - position: fixed; -} -.lb-prev:after { - content: '\e801'; - left: 1.85714286em; -} -.lb-next:after { - content: '\e802'; - right: 1.85714286em; -} -.lb-data { - overflow: hidden; - min-height: 30px; -} -a[data-lightbox] { - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; -} -a[data-lightbox]:hover { - opacity: .8; - cursor: zoom-in; -} -/*! -- Stack Covers -- */ -.cover .typed-headline { - margin-bottom: 3.71428571em; -} -.cover .typed-headline .type--bold { - font-weight: 400; -} -.cover .triptych { - margin-top: 3.71428571em; -} -.cover .btn + .modal-instance { - margin-top: 1.85714286em; -} -.cover h3 + form, -.cover .h3 + form { - margin-top: 2.78571429em; -} -.cover .lead + .boxed { - margin-top: 3.71428571em; -} -.cover.unpad--bottom { - overflow: hidden; -} -.cover .modal-instance.block:not(:first-child):not(:last-child) { - margin: 2.78571429em 0; -} -.cover .pos-bottom { - margin-bottom: 1.85714286em; -} -@media all and (min-width: 768px) { - .cover .row .row:last-child { - margin-top: 5.57142857em; - } -} -@media all and (max-width: 767px) { - .cover .pos-bottom.pos-absolute { - position: relative; - margin-top: 1.85714286em; - } -} -@media all and (max-width: 990px) { - .cover .mt--3 { - margin-top: 0; - } -} -@media all and (min-width: 768px) { - .cover .triptych { - margin-top: 7.42857143em; - } -} -.cover-fullscreen { - min-height: 100vh; -} -.cover-fullscreen.slider[data-paging="true"] .slides .flickity-slider > li { - height: 100vh; -} -.cover-fullscreen.slider[data-paging="true"] .pos-bottom { - bottom: 5.57142857em; - width: 100%; -} -.cover-fullscreen.slider[data-paging="true"] h4 { - margin: 0; -} -.cover-slider { - overflow: hidden; -} -.cover-slider .slider { - position: relative; - width: 100%; - pointer-events: none; -} -.cover-slider .slider:nth-child(1) { - transform: translateY(-30%); -} -.cover-slider .slider:nth-child(2) { - transform: translateY(-25%); -} -.cover-slider .slider:nth-child(3) { - transform: translateY(-20%); -} -.cover-slider .slider .slide { - opacity: .05; -} -.cover-slider .typed-headline { - margin: 0; -} -.cover-slider .typed-headline + .btn { - margin-top: 0.92857143em; -} -.cover-slider .slider-container { - transform: rotateZ(-30deg) translateY(-10%); - -webkit-transform: rotateZ(-30deg) translateY(-10%); - position: absolute; - width: 100%; - height: 100%; - top: 0; -} -@media all and (min-width: 768px) { - .cover-slider + .cta-4 { - position: absolute; - background: none; - color: #fff; - border-bottom: none !important; - width: 100%; - transform: translate3d(0, -100%, 0); - -webkit-transform: translate3d(0, -100%, 0); - } - .cover-slider + .cta-4 a { - color: #fff; - font-weight: 600; - } -} -.cover-features.space--lg { - padding-bottom: 3.71428571em; -} -.cover-features .row:nth-child(2) { - margin-top: 11.14285714em; -} -@media all and (max-width: 767px) { - .cover-features.space--lg { - padding-bottom: 1.85714286em; - } - .cover-features .row:nth-child(2) { - margin-top: 3.71428571em; - } -} -/*! -- Stack Processes -- */ -.process-1 { - padding: 3.71428571em 0; - position: relative; - overflow: hidden; -} -.process-1 .process__item { - width: 50%; -} -.process-1 .process__item:not(:last-child) { - margin-bottom: 1.85714286em; -} -.process-1:before { - content: ''; - position: absolute; - width: 2px; - height: 100%; - left: 50%; - top: 0; - background: #ff4f4f; -} -.process__item { - position: relative; -} -.process__item:after { - content: ''; - width: 1.85714286em; - height: 1.85714286em; - background: #fff; - border: 2px solid #ff4f4f; - border-radius: 50%; - position: absolute; - top: 0; - margin-left: 1px; -} -@media all and (min-width: 768px) { - .process-1 .process__item:nth-child(odd) { - text-align: right; - padding-right: 3.71428571em; - } - .process-1 .process__item:nth-child(odd):after { - right: -0.92857143em; - } - .process-1 .process__item:nth-child(even) { - margin-left: 50%; - padding-left: 3.71428571em; - } - .process-1 .process__item:nth-child(even):after { - left: -0.92857143em; - } -} -@media all and (max-width: 767px) { - .process-1:before, - .process-2:before { - left: 0.92857143em; - } - .process-1 .process__item, - .process-2 .process__item { - width: 100%; - padding-left: 3.71428571em; - } - .process-1 .process__item:after, - .process-2 .process__item:after { - left: 0; - } -} -.bg--dark .process-1:before, -.imagebg .process-1:before, -.bg--dark .process-2:before, -.imagebg .process-2:before { - background: #fff; -} -.bg--dark .process-1 .process__item:after, -.imagebg .process-1 .process__item:after, -.bg--dark .process-2 .process__item:after, -.imagebg .process-2 .process__item:after { - background: #fff; -} -.bg--dark .process-1 .process__item:after, -.bg--dark .process-2 .process__item:after { - border-color: #252525; -} -.process-2 { - position: relative; -} -.process-2 .process__item { - padding-top: 3.71428571em; -} -.process-2 .process__item:after { - display: inline-block; - text-align: center; -} -.process-2:before { - content: ''; - position: absolute; - width: 100%; - height: 2px; - top: 0.92857143em; - left: 0; - background: #ff4f4f; -} -@media all and (max-width: 767px) { - .process-2:before { - height: 100%; - width: 2px; - left: 1.85714286em; - margin-left: 2px; - } - .process-2 .process__item:after { - top: 3.71428571em; - } -} -.process-3 { - list-style: none; - position: relative; -} -.process-3 li { - position: relative; - z-index: 1; - overflow: hidden; -} -.process-3 li .process__number { - float: left; - width: 15%; - width: 3.71428571em; - height: 3.71428571em; - border-radius: 50%; - border: 2px solid #ff4f4f; - background: #fff; - text-align: center; -} -.process-3 li .process__number span { - font-size: 1.35714286em; - font-weight: bold; - color: #ff4f4f; - position: relative; - top: 12px; -} -.process-3 li .process__body { - width: 80%; - float: right; -} -.process-3 li .process__body h4 { - margin-bottom: 0.342105263157895em; -} -.process-3 li:not(:last-child) { - margin-bottom: 3.71428571em; -} -.process-3:before { - content: ''; - position: absolute; - height: 100%; - width: 1px; - left: 1.85714286em; - top: 0; - border-left: 1px dashed #ddd; -} -.bg--dark .process-3 li .process__number { - background: #252525; -} -.bg--dark .process-3:before { - border-color: #aaa; -} -.process-stepper > li { - transition: all .3s ease; - display: inline-block; - float: left; - text-align: center; - position: relative; -} -.process-stepper > li:before { - transition: all .3s ease; - content: ''; - width: 0.92857143em; - height: 0.92857143em; - background: #ccc; - border-radius: 50%; - display: block; - margin: 0 auto; - margin-bottom: 0.92857143em; -} -.process-stepper > li:after { - transition: all .3s ease; - content: ''; - width: 100%; - height: 2px; - position: absolute; - background: #ccc; - top: 5px; - left: 0; -} -.process-stepper > li:first-child:after, -.process-stepper > li:last-child:after { - width: 50%; -} -.process-stepper > li:first-child:after { - left: 50%; -} -.process-stepper > li.active:before, -.process-stepper > li.active:after { - background: #ff4f4f; -} -.process-stepper > li > span { - cursor: default; -} -.process-stepper[data-process-steps="6"] > li { - width: 16.666666666666667%; -} -.process-stepper[data-process-steps="5"] > li { - width: 20%; -} -.process-stepper[data-process-steps="4"] > li { - width: 25%; -} -.process-stepper[data-process-steps="3"] > li { - width: 33.33333333%; -} -.process-stepper[data-process-steps="2"] > li { - width: 50%; -} -.bg--dark .process-stepper li:not(.active):before, -.bg--dark .process-stepper li:not(.active):after { - background: #585858; -} -/*! -- Stack Typed Text -- */ -span + .typed-text.h2 { - margin-left: 4px; -} -span + .typed-text.h1 { - margin-left: 6px; -} -@media all and (max-width: 767px) { - .typed-text { - display: block; - } - .typed-headline { - margin-bottom: 1.85714286em; - } - .typed-headline h1, - .typed-headline .h1 { - margin-bottom: 0; - } -} -/*! -- Stack Forms -- */ -.bg--dark input, -.imagebg:not(.image--light) input, -.bg--dark textarea, -.imagebg:not(.image--light) textarea, -.bg--dark select, -.imagebg:not(.image--light) select, -.bg--dark .input-select:after, -.imagebg:not(.image--light) .input-select:after { - color: #666666; -} -.bg--dark label, -.imagebg:not(.image--light) label { - color: #fff; -} -.bg--dark form.attempted-submit input.field-error { - background: #D84D4D; - color: #fff; -} -form { - position: relative; -} -form > div[class*='col-']:not(:last-child), -form > .row > div[class*='col-']:not(:last-child) { - margin-bottom: 0.92857143em; -} -form .boxed:last-child { - margin: 0; -} -form.form--clearfix { - margin-left: -15px; -} -@media all and (min-width: 768px) { - div[class*='col-'] > form div[class*='col-']:last-child:nth-child(2) { - padding-right: 0; - } - div[class*='col-'] > form div[class*='col-']:first-child:nth-last-child(2) { - padding-left: 0; - } - form.form--horizontal > div[class*='col-'] { - margin: 0; - } -} -@media all and (max-width: 767px) { - .row form > .row { - margin-left: 0; - margin-right: 0; - } -} -h2 + form, -.h2 + form { - margin-top: 2.78571429em; -} -h3 + form, -.h3 + form, -.lead + form { - margin-top: 2.78571429em; -} -.cover .lead + form { - margin-top: 3.71428571em; -} -form + span.type--fine-print { - margin-top: 1.08333333333334em; - display: inline-block; -} -.form--inline > span.h4 { - color: #666666; -} -.form--inline input, -.form--inline [class*='input-'] { - display: inline-block; - max-width: 200px; -} -.form--inline > span:not(:last-child), -.form--inline input:not(:last-child), -.form--inline [class*='input-']:not(:last-child) { - margin-right: 0.92857143em; -} -.form--inline button { - max-width: 200px; -} -.bg--dark .form--inline > span.h4, -.imagebg:not(.image--light) .form--inline > span.h4 { - color: #fff; -} -button, -input[type="submit"] { - height: 3.25000000000001em; -} -button.btn, -input[type="submit"].btn { - font-size: 0.85714286em; - font-weight: 700; - padding-left: 0; - padding-right: 0; -} -button.btn.btn--primary, -input[type="submit"].btn.btn--primary { - color: #fff; -} -button.btn.type--uppercase, -input[type="submit"].btn.type--uppercase { - letter-spacing: .5px; - margin-right: -0.5px; -} -button.checkmark.checkmark--cross, -input[type="submit"].checkmark.checkmark--cross { - width: 1.85714286em; - height: 1.85714286em; - border: none; - background: #e23636; -} -button.checkmark.checkmark--cross:before, -input[type="submit"].checkmark.checkmark--cross:before { - content: '\00d7'; - font-size: 18px; - top: -1px; -} -button[type="submit"].btn--loading:after, -input[type="submit"][type="submit"].btn--loading:after { - background: #ff4f4f; -} -.bg--primary button.btn { - border-color: rgba(255, 255, 255, 0.5); - color: #fff; -} -.bg--primary button.btn:hover { - border-color: #fff; -} -.bg--primary button.btn.btn--primary { - color: #ff4f4f; - border-color: #ff4f4f; -} -.bg--primary button.btn.btn--primary-1 { - border-color: #343851; -} -input, -select { - height: 2.78571429em; -} -input.field-error { - border-color: #EBA8A8; -} -input[type] + input[type], -input[type] + .input-checkbox, -input[type] + button, -input[type] + .input-select { - margin-top: 0.92857143em; -} -input, -[class*='input-'] label, -select, -textarea { - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; -} -input:not([class*='col-']), -select:not([class*='col-']), -.input-select:not([class*='col-']), -textarea:not([class*='col-']), -button[type="submit"]:not([class*='col-']) { - width: 100%; -} -input[type], -select, -textarea { - padding-left: 0.92857143em; -} -input[type]:focus, -select:focus, -textarea:focus { - border-color: #ff8282; -} -input[type="image"] { - border: none; - padding: none; - width: auto; -} -label { - font-size: .85714286em; -} -.bg--primary label, -.bg--primary-1 label { - color: #fff; -} -.input-icon i { - top: 8px; - left: 8px; -} -.input-icon input { - padding-left: 2.78571429em; -} -.text-center .input-checkbox label, -.text-center .input-radio label { - margin: 0 auto; -} -.input-checkbox label, -.input-radio label { - font-size: 1em; -} -.input-checkbox { - margin-top: 0.46428571em; -} -.input-checkbox.field-error label { - border-color: #EBA8A8; -} -.input-checkbox label { - background: none; - border: 1px solid #d3d3d3; - text-align: center; - position: relative; -} -.input-checkbox label:not(:last-child) { - margin-right: 0.46428571em; -} -.input-checkbox label:hover { - border-color: #ff4f4f; -} -.input-checkbox label:before { - content: ''; - left: 0; - border-radius: 6px; - position: absolute; - width: 100%; - height: 100%; - border: 1px solid #ff4f4f; - opacity: 0; - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; -} -.input-checkbox input:checked + label { - border-color: #ff4f4f; - background: #ff4f4f; -} -.input-checkbox input:checked + label:after { - content: 'L'; - transform: rotateY(180deg) rotateZ(-45deg); - color: #fff; - position: absolute; - width: 100%; - left: 0; - top: -2px; - font-weight: 700; -} -.input-checkbox input:checked + label:before { - animation: pulse .45s ease forwards; - -webkit-animation: pulse .45s ease forwards; -} -.input-checkbox + span { - display: inline-block; - position: relative; - bottom: 10px; - margin-left: 0.92857143em; - font-size: 0.85714286em; - white-space: nowrap; -} -.input-checkbox + button[type] { - margin-top: 0.92857143em; -} -.input-checkbox + span + button[type] { - margin-top: 0.92857143em; -} -.bg--dark .input-checkbox:not(.checked) label { - border-color: #a5a5a5; -} -.bg--dark .input-checkbox + span { - opacity: .75; -} -.input-checkbox.input-checkbox--switch label { - width: 3.71428571em; - border-radius: 60px; -} -.input-checkbox.input-checkbox--switch label:before { - width: 20px; - height: 20px; - border-radius: 50%; - border-color: #d3d3d3; - opacity: 1; - left: 2px; - top: 2px; -} -.input-checkbox.input-checkbox--switch label:hover:before { - border-color: #ff4f4f; -} -.input-checkbox.input-checkbox--switch input:checked + label { - background: none; -} -.input-checkbox.input-checkbox--switch input:checked + label:before { - animation: none !important; - background: #ff4f4f; - border-color: #ff4f4f; - transform: translateX(1.85714286em); -} -.input-checkbox.input-checkbox--switch input:checked + label:after { - display: none; -} -.input-radio.field-error label { - border-color: #EBA8A8; -} -.input-radio .input__label { - font-size: .85714286em; - display: inline-block; -} -.input-radio .input__label + label { - margin-top: 0.92857143em; -} -.input-radio label { - position: relative; - background: none; - border: 1px solid #d3d3d3; -} -.input-radio label:hover { - border-color: #ff4f4f; -} -.input-radio label:before { - content: ''; - position: absolute; - width: 100%; - height: 100%; - border-radius: 50%; - border: 1px solid #ff4f4f; - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; - opacity: 0; - left: 0; -} -.input-radio input:checked + label { - border-color: #ff4f4f; - background-color: #ff4f4f; -} -.input-radio input:checked + label:after { - content: ''; - position: absolute; - width: 10px; - height: 10px; - left: 7px; - top: 7px; - background-color: #fff; - border-radius: 50%; -} -.input-radio input:checked + label:before { - animation: pulse .4s ease forwards; -} -.input-radio--innerlabel label { - transition: all .3s ease; - height: 2.78571429em; - line-height: 2.50714286em; - padding: 0 0.92857143em; - border: 1px solid #ececec; - border-radius: 6px; - cursor: pointer; - width: 100%; - text-align: center; -} -.input-radio--innerlabel:hover { - border-color: #ff4f4f; -} -.input-radio--innerlabel input:checked + label { - border-color: #ff4f4f; - background: #ff4f4f; - color: #fff; -} -.input-radio--innerlabel input:checked + label:after { - display: none; -} -.input-radio--innerlabel input:checked + label:before { - animation: none; -} -@media all and (max-width: 1024px) { - .input-radio input:checked + label:after { - top: 6px; - left: 6px; - } -} -.bg--primary .input-radio--innerlabel { - border-color: #ff8282; -} -.bg--primary .input-radio--innerlabel:hover { - border-color: #fff; -} -.bg--primary .input-radio--innerlabel.checked { - background: #fff; - border-color: #fff; -} -.bg--primary .input-radio--innerlabel.checked label { - color: #ff4f4f; -} -.bg--primary-1 .input-radio--innerlabel { - border-color: #484d70; -} -.bg--primary-1 .input-radio--innerlabel:hover { - border-color: #fff; -} -.bg--primary-1 .input-radio--innerlabel.checked { - background: #fff; - border-color: #fff; -} -.bg--primary-1 .input-radio--innerlabel.checked label { - color: #343851; -} -.input-select { - position: relative; -} -.input-select select { - -moz-appearance: none; - -webkit-appearance: none; -} -.input-select select::-ms-expand { - display: none; -} -.input-select:not(:last-child) { - margin-bottom: 0.92857143em; -} -.input-select:after { - position: absolute; - right: 0; - height: 100%; - top: 0; - font-size: 30px; - content: '\2263'; - pointer-events: none; - padding: 0 13px; - border-left: 1px solid #ececec; - line-height: 31px; -} -.input-select:focus:after { - border-color: #ff4f4f; -} -.input-select select:focus { - border-color: #ff4f4f; -} -.input-number { - position: relative; -} -.input-number > input[type="number"] { - padding-left: .46428571em; - -moz-appearance: textfield; - width: 100%; - text-align: center; -} -.input-number > input[type="number"]::-webkit-inner-spin-button { - display: none; -} -.input-number .input-number__controls { - position: absolute; - height: 100%; - width: 100%; - right: 0; - top: 0; - padding: 0 0.92857143em; -} -.input-number .input-number__controls > span { - position: absolute; - display: block; - width: 10%; - min-width: 3.71428571em; - height: 100%; - cursor: pointer; - -webkit-user-select: none; - user-select: none; - text-align: center; - padding-top: 6px; - transition: all .3s ease; -} -.input-number .input-number__controls > span:hover { - color: #ff4f4f; -} -.input-number .input-number__controls .input-number__increase { - right: 0; - border-left: 1px solid #ececec; -} -.input-number .input-number__controls .input-number__decrease { - left: 0; - border-right: 1px solid #ececec; -} -/*! -- Stack Subscribe Forms -- */ -.subscribe-form-1 h3 { - margin-bottom: 0.52em; -} -.subscribe-form-1.boxed form { - margin: 1.85714286em; -} -@media all and (min-width: 991px) { - .subscribe-form-2 p { - top: 2px; - position: relative; - } - .subscribe-form-2 input { - margin: 0; - } - .subscribe-form-2 form [class*='col-'] { - margin: 0 !important; - } -} -@media all and (max-width: 990px) { - .subscribe-form-2 { - text-align: center; - } - .subscribe-form-2 form { - margin-top: 1.85714286em; - } -} -/*! -- Stack Elaborate Forms -- */ -@media all and (max-width: 767px) { - .elaborate-form-1 .pos-vertical-center { - padding-left: 15px; - padding-right: 15px; - } - .elaborate-form-1 form .col-xs-6:nth-child(even) { - padding-left: 15px; - } - .elaborate-form-1 form .col-xs-6:nth-child(odd) { - padding-right: 15px; - } - .elaborate-form-1 .row form > .row { - margin-left: -15px; - margin-right: -15px; - } -} -/* Stack Boxed Forms */ -.boxed-form h4 { - margin-bottom: 0.684210526315789em; -} -.boxed-form:last-child { - margin-bottom: 0; -} -/* Stack Datepicker Form */ -.datepicker { - cursor: pointer; -} -.picker { - transition: all .3s ease; - z-index: 10; - max-width: 100%; - -webkit-transition: all .3s ease; - margin-top: 0.46428571em; - position: absolute; - background: #ffffff; - border: 1px solid #ececec; - border-radius: 6px; - padding: 0.92857143em; - box-shadow: 0 23px 40px rgba(0, 0, 0, 0.2); -} -.picker .picker__header { - text-align: center; - margin-bottom: 0.92857143em; -} -.picker .picker__header > div { - font-weight: 600; - display: inline-block; - color: #252525; -} -.picker .picker__header > div:not(:last-child) { - margin-right: 0.46428571em; -} -.picker .picker__header .picker__nav--prev, -.picker .picker__header .picker__nav--next { - height: 10px; - width: 10px; - cursor: pointer; -} -.picker .picker__header .picker__nav--prev:after, -.picker .picker__header .picker__nav--next:after { - font-family: 'stack-interface'; -} -.picker .picker__header .picker__nav--next { - float: right; -} -.picker .picker__header .picker__nav--next:after { - content: '\e80c'; -} -.picker .picker__header .picker__nav--prev { - float: left; -} -.picker .picker__header .picker__nav--prev:after { - content: '\e80b'; -} -.picker .picker__day { - transition: all .3s ease; - cursor: pointer; -} -.picker .picker__day.picker__day--highlighted { - color: #ff4f4f; - font-weight: 600; -} -.picker .picker__day:hover { - color: #ff4f4f; -} -.picker:not(.picker--opened) { - opacity: 0; - visibility: hidden; - pointer-events: none; - transform: scale(0); -} -.picker .picker__holder { - outline: none !important; - border: none !important; -} -.picker table td { - padding: 0.46428571em; - padding-top: 0; -} -.picker .picker__footer { - text-align: center; -} -.picker .picker__button--today { - float: left; -} -.picker .picker__button--close { - float: right; -} -.picker button { - transition: all .3s ease; - height: auto; - border: none; - display: inline-block; -} -.picker button:not(:hover) { - opacity: .5; -} -/*! -- Stack Sliders -- */ -.flickity-prev-next-button { - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; - border-radius: 0; - background: #252525; - width: 2.78571429em; - height: 5.57142857em; -} -.flickity-prev-next-button:not(:hover) { - opacity: .5; -} -.flickity-prev-next-button:hover { - background: #252525; -} -.flickity-prev-next-button.previous { - left: 0; -} -.flickity-prev-next-button.next { - right: 0; -} -.flickity-prev-next-button:before { - color: #fff; -} -.slider.slider--inline-arrows .flickity-prev-next-button { - background: none; -} -.slider.slider--inline-arrows .flickity-prev-next-button:before { - font-size: 1.78571429em; - color: #252525; - content: '\e802'; -} -.slider.slider--inline-arrows .flickity-prev-next-button.previous:before { - content: '\e801'; -} -.slider.slider--columns .previous { - left: 15px; -} -.slider.slider--columns .next { - right: 15px; -} -.slider.border--round .slides li { - border-radius: 6px; - overflow: hidden; -} -.slider.boxed--border .slides li { - border: 1px solid #ececec; -} -.slider .slides li .feature:not(.feature-9) { - margin-bottom: 0; -} -.slide .boxed:last-child { - margin-bottom: 0; -} -.slide:not([class*='col-']) > img:only-child { - width: 100%; -} -.bg--dark .slider.slider--inline-arrows .flickity-prev-next-button:before, -.bg--primary .slider.slider--inline-arrows .flickity-prev-next-button:before, -.imagebg:not(.image--light) .slider.slider--inline-arrows .flickity-prev-next-button:before { - color: #fff; -} -@media all and (max-width: 990px) { - .flickity-prev-next-button { - display: none; - } -} -@media all and (min-width: 768px) { - h2 + .slider, - .h2 + .slider { - margin-top: 3.71428571em; - } -} -.slider.slider--ken-burns:not(.parallax) .slide.is-selected > .background-image-holder, -.slider.slider--ken-burns:not(.parallax) .slide.is-selected > img:only-child { - animation: kenBurns 15s ease alternate infinite; - -webkit-animation: kenBurns 15s ease alternate infinite; -} -.radial { - margin-left: auto; - margin-right: auto; -} -.radial .radial__label { - transition: opacity .3s ease; - -webkit-transition: opacity .3s ease; -} -.radial:not(.radial--active) .radial__label { - opacity: 0; -} -.radial:not(:last-child) { - margin-bottom: 1.85714286em; -} -@media all and (max-width: 767px) { - .radial { - margin-bottom: 1.85714286em; - } -} -/*! -- Stack Pricing -- */ -.pricing { - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; - position: relative; -} -.pricing h3:first-child { - margin: 0; -} -.pricing .label { - top: 2.78571429em; - right: 2.78571429em; -} -.pricing .h2 { - margin-bottom: 0.3939393939394em; -} -.pricing ul li:not(:last-child) { - margin-bottom: 0.46428571em; -} -.pricing ul li .checkmark + span { - position: relative; - bottom: 3px; -} -.pricing:hover { - box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); - box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.04); -} -.pricing .h1 { - font-size: 4.21428571428571em; - line-height: 1.10169491525424em; - margin-bottom: 0.22033898305085em; -} -.pricing .h1 .pricing__dollar { - font-size: 0.51020408163265em; - position: relative; - bottom: 20px; -} -.pricing .feature-6 p { - min-height: 5.57142857em; -} -.pricing-1 .btn:last-child { - position: absolute; - width: 100%; - bottom: 0; - left: 0; - border-radius: 0 0 6px 6px; - padding: 0.92857143em 0; - margin: 0; -} -.pricing-1 .btn:last-child:hover { - transform: none !important; -} -.pricing-1 ul { - margin-bottom: 5.57142857em; -} -.pricing-1 p { - min-height: 5.57142857em; -} -.pricing-1 p:first-of-type { - margin-top: 1.85714286em; -} -.pricing-1 p:last-of-type { - margin-bottom: 5.57142857em; -} -.pricing-1 img + p:first-of-type { - margin-top: 0; -} -@media all and (min-width: 991px) { - .pricing-2 ul:first-child { - margin-top: 4.64285714em; - } -} -@media all and (max-width: 990px) { - .pricing-2 { - text-align: center; - } - .pricing-2 ul:first-child { - margin-top: 1.85714286em; - } -} -.pricing-3 { - border: 1px solid #ececec; - border-radius: 6px; -} -.pricing-3 .pricing__head { - margin: 0; - border-bottom: 1px solid #ececec; -} -.pricing-3 .pricing__head + .btn { - display: block; - border-radius: 0; - padding: 0.92857143em 0; -} -.pricing-3 ul { - border-radius: 0 0 6px 6px; -} -.pricing-3 ul li { - padding: 0.92857143em 0; -} -.pricing-3 ul li:not(:last-child) { - border-bottom: 1px solid #ececec; - margin: 0; -} -.pricing-3 ul:last-child { - margin: 0; -} -@media all and (max-width: 990px) { - .pricing-3 { - margin-bottom: 1.85714286em; - } -} -@media all and (min-width: 768px) { - .pricing-section-1 .pricing:not(.boxed--emphasis) { - left: 0.92857143em; - } - .pricing-section-1 .pricing.boxed--emphasis { - right: 0.92857143em; - } -} -@media all and (min-width: 990px) { - .pricing-section-2 div[class*='col-'] { - padding: 0; - } - .pricing-section-2 div[class*='col-']:not(:first-child):not(:last-child) .pricing__head { - border-radius: 0; - } - .pricing-section-2 div[class*='col-']:first-child .pricing { - border-radius: 6px 0 0 6px; - } - .pricing-section-2 div[class*='col-']:first-child .pricing .pricing__head { - border-radius: 6px 0 0 0; - } - .pricing-section-2 div[class*='col-']:last-child .pricing { - border-radius: 0 6px 6px 6px; - border-right: 1px solid #ececec; - } - .pricing-section-2 div[class*='col-']:last-child .pricing .pricing__head { - border-radius: 0 6px 0 0; - } - .pricing-section-2 .pricing { - border: 1px solid #ececec; - border-radius: 0 0 0 6px; - border-right: none; - } - .pricing-section-2 .pricing:hover { - box-shadow: none; - } - .pricing-section-2 .pricing ul { - margin: 0; - } -} -.pricing-section-2.bg--dark .pricing, -.pricing-section-2.bg--dark .pricing .pricing__head, -.pricing-section-2.bg--dark .pricing ul li:not(:last-child), -.pricing-section-2.bg--dark div[class*='col-']:last-child .pricing { - border-color: #3f3f3f; -} -.pricing-section-2.imagebg .pricing, -.pricing-section-2.imagebg .pricing .pricing__head, -.pricing-section-2.imagebg .pricing ul li:not(:last-child), -.pricing-section-2.imagebg div[class*='col-']:last-child .pricing { - border-color: rgba(255, 255, 255, 0.2); -} -/*! -- Stack Progress Horizontal -- */ -.progress-horizontal:not(:last-child) { - margin-bottom: 1.85714286em; -} -.progress-horizontal.progress-horizontal--lg .progress-horizontal__bar { - height: 1.85714286em; -} -.progress-horizontal.progress-horizontal--sm .progress-horizontal__bar { - height: 0.46428571em; -} -.progress-horizontal__bar { - height: 0.92857143em; - border-radius: 100px; - background: #fafafa; - border: 1px solid rgba(0, 0, 0, 0.1); -} -.progress-horizontal__bar:not(:last-child) { - margin-bottom: 0.46428571em; -} -.progress-horizontal__progress { - background: #ff4f4f; - border-radius: 100px; -} -/*! -- Stack Maps -- */ -iframe[src*='google.com/maps'] { - border: none; -} -.map-container { - min-height: 400px; -} -.map-container:not(:last-child) { - margin-bottom: 1.85714286em; -} -.map-container.border--round { - overflow: hidden; - z-index: 2; -} -.map-container.border--round .gm-style { - border-radius: 6px; -} -.map-container iframe { - left: 0; -} -@media all and (min-width: 768px) { - .background-image-holder .map-container, - .imageblock__content .map-container { - position: absolute; - width: 100%; - height: 100%; - top: 0; - left: 0; - } - .map-container + div[class*='col-'] { - margin-top: 3.71428571em; - } -} -/*! -- Stack Testimonials -- */ -.testimonial { - position: relative; - overflow: hidden; -} -.testimonial h5:nth-last-child(2) { - margin: 0; -} -.testimonial .testimonial__image { - margin-bottom: 1.85714286em; -} -@media all and (min-width: 1025px) { - .testimonial-1 .switchable__text { - margin-top: 7.42857143em; - } -} -.testimonial-2 { - float: none; - width: 100%; -} -.testimonial-2 .testimonial__image img { - max-height: 3.71428571em; - float: left; - margin-right: 1.85714286em; -} -.testimonial-2 .boxed { - width: 100%; -} -@media all and (max-width: 990px) { - .testimonial-2 p { - min-height: 7.42857143em; - } -} -@media all and (max-width: 767px) { - .testimonial-2 p { - min-height: 0; - } -} -@media all and (min-width: 768px) { - .lead + .testimonial-2 { - margin-top: 3.71428571em; - } -} -@media all and (min-width: 768px) { - .testimonials-1 .list-inline { - position: relative; - top: 0.92857143em; - } - .testimonials-1 .list-inline li:not(:last-child) { - margin-right: 3.71428571em; - } -} -@media all and (max-width: 767px) { - .testimonials-1 .list-inline { - margin-top: 1.85714286em; - } - .testimonials-1 .list-inline li { - margin-bottom: 1.85714286em; - } -} -/*! -- Stack Masonry -- */ -.masonry__item:not(:empty) { - margin-bottom: 30px; - transform-style: preserve-3d; -} -.masonry__item:not(:empty) article { - margin: 0; -} -.masonry__item:not(:empty) article .boxed { - margin: 0; -} -.masonry__item:empty { - height: 0; - min-height: 0; -} -.masonry hr + .masonry__container, -.masonry hr + .row { - margin-top: 4.64285714em; -} -.masonry-filter-holder:not(.masonry-filters--horizontal) { - display: inline-block; - cursor: pointer; - height: 3.71428571em; - position: relative; - z-index: 9; - min-width: 143px; -} -.masonry-filter-holder:not(.masonry-filters--horizontal) .masonry__filters { - cursor: pointer; - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; - z-index: 2; - display: inline-block; - position: absolute; - left: 0; - text-align: left; - padding: 0.92857143em 1.85714286em; - border: 1px solid #ececec; - background: #ffffff; - border-radius: 6px; -} -.masonry-filter-holder:not(.masonry-filters--horizontal) .masonry__filters ul { - margin: 0; - cursor: pointer; -} -.masonry-filter-holder:not(.masonry-filters--horizontal) .masonry__filters ul li { - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; - display: block; - color: #666666; - white-space: nowrap; -} -.masonry-filter-holder:not(.masonry-filters--horizontal) .masonry__filters ul li:not(:last-child) { - margin-bottom: 0.92857143em; -} -.masonry-filter-holder:not(.masonry-filters--horizontal) .masonry__filters ul li.active { - color: #ff4f4f; - cursor: pointer; -} -.masonry-filter-holder:not(.masonry-filters--horizontal) .masonry__filters ul li.active:after { - content: '\25bc'; - font-size: 8px; - margin-left: 6px; - position: relative; - bottom: 2px; - display: inline-block; - transform: scaleX(1.4) scaleY(0.9); - transition: 0.2s linear; - -webkit-transition: 0.2s linear; - -moz-transition: 0.2s linear; -} -.masonry-filter-holder:not(.masonry-filters--horizontal) .masonry__filters ul li:hover { - color: #ff4f4f; -} -.masonry-filter-holder:not(.masonry-filters--horizontal) .masonry__filters ul:hover li.active:after { - opacity: 0; -} -.masonry-filter-holder:not(.masonry-filters--horizontal):not(:hover) .masonry__filters ul { - max-height: 1.85714286em; - overflow: hidden; -} -.masonry-filter-holder:not(.masonry-filters--horizontal):not(:hover) .masonry__filters ul li:not(.active) { - display: none; -} -.masonry-filter-holder:not(.masonry-filters--horizontal):hover .masonry__filters { - box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); - box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.04); -} -.masonry-filter-holder:not(.masonry-filters--horizontal):hover .masonry__filters ul li.active { - cursor: default; -} -.masonry-filters--horizontal { - display: inline-block; -} -.masonry-filters--horizontal .masonry__filters { - display: inline-block; - position: relative; - bottom: 20px; - margin-left: 0.92857143em; -} -.masonry-filters--horizontal .masonry__filters ul li { - transition: all .3s ease; - cursor: pointer; - display: inline-block; -} -.masonry-filters--horizontal .masonry__filters ul li:not(:last-child) { - margin-right: 1.85714286em; -} -.masonry-filters--horizontal .masonry__filters ul li.active { - color: #ff4f4f; -} -.masonry-filters--horizontal .masonry__filters ul li:not(.active) { - opacity: .5; -} -.masonry-filters--horizontal .masonry__filters ul li:hover { - opacity: 1; -} -.masonry-filter-holder + .masonry__container { - margin-top: 3.71428571em; -} -.bg--dark .masonry-filter-holder .masonry__filters { - background: #2a2a2a; - border-color: #3f3f3f; -} -.bg--dark .masonry-filter-holder .masonry__filters li { - color: #fff; -} -.masonry.masonry-demos .masonry__item:not(:empty) { - margin-bottom: 3.71428571em; -} -.masonry.masonry-demos .masonry__item h5 { - margin-bottom: 0; -} -.masonry.masonry-demos .masonry__item:not([style]) .hover-item { - min-height: 450px; - background: #323232; - border: 1px solid #3f3f3f; -} -.masonry.masonry-demos .hover-item { - transition: 0.35s ease-out; - -webkit-transition: 0.35s ease-out; - -moz-transition: 0.35s ease-out; - border-radius: 6px; - overflow: hidden; -} -.masonry.masonry-demos .hover-item:hover { - transform: translateY(-10px); -} -.masonry.masonry-demos .masonry__container { - margin-top: 3.71428571em; -} -/*! -- Stack Blog -- */ -article .article__title { - margin-bottom: 3.71428571em; -} -article .article__title > a { - display: block; -} -article .article__title > a:hover { - text-decoration: none; - opacity: .75; -} -article .article__title h2 { - margin-bottom: 0.3939393939394em; -} -article .article__title h1 { - margin-bottom: 0.29545454545455em; -} -article .article__body img, -article .article__body iframe, -article .article__body .video-cover { - border-radius: 6px; -} -article .article__body img:not(:last-child), -article .article__body iframe:not(:last-child), -article .article__body .video-cover:not(:last-child) { - margin-bottom: 1.85714286em; -} -article .article__body > a:first-child > img { - margin-bottom: 1.85714286em; -} -article .article__body p, -article .article__body ul { - font-size: 1.35714286em; - line-height: 1.68421053em; - font-weight: 400; - color: #808080; -} -article .article__body p:not(:last-child), -article .article__body ul:not(:last-child) { - margin-bottom: 1.36842105263158em; -} -article .article__body p + .btn:last-child, -article .article__body ul + .btn:last-child { - margin-top: 0.92857143em; -} -article .article__body p + h5, -article .article__body ul + h5 { - margin-top: 2.78571429em; -} -article .article__body blockquote { - text-align: center; -} -article .article__body blockquote:not(:last-child) { - margin-top: 2.08em; - margin-bottom: 2.08em; -} -article .article__share { - margin-top: 5.57142857em; -} -article.imagebg { - padding: 1.85714286em; - overflow: hidden; -} -article.imagebg:before { - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; -} -article.imagebg:hover:before { - opacity: .6; -} -article.imagebg .article__title { - margin: 0; - position: absolute; - bottom: 0; - z-index: 2; - max-width: 90%; -} -article.imagebg .article__title span { - font-size: 0.85714286em; -} -article.imagebg .label { - z-index: 2; - top: 1.85714286em; - right: 1.85714286em; -} -article.feature-1 h5 { - min-height: 3.71428571em; -} -article.feature-1 a img { - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; -} -article.feature-1 a:hover img { - opacity: .85; -} -figure[class*='col-'] { - padding: 0 !important; -} -figure.pull-right { - margin-left: 2.78571429em; -} -figure.pull-left { - margin-right: 2.78571429em; -} -figure img:not(:last-child) { - margin-bottom: 0.46428571em !important; -} -figure figcaption { - font-size: 0.85714286em; - font-style: italic; -} -section.unpad > article .imagebg + div { - padding: 5.57142857em 0; -} -.article__author { - padding-bottom: 1.85714286em; -} -.article__author img { - max-height: 3.71428571em; - margin-bottom: 0.46428571em; -} -.slides--gapless article.imagebg { - height: 27.85714286em; -} -.masonry-blog-magazine article, -.masonry-blog-magazine .masonry__promo { - height: 338px; -} -.masonry-blog-magazine .height--tall { - height: calc(706px); -} -@media all and (min-width: 991px) { - .masonry__promo.boxed--lg { - padding: 7.42857143em; - } -} -@media all and (max-width: 990px) { - .masonry-blog-magazine .height--tall { - height: 338px; - } - .masonry__promo .pos-vertical-center { - top: 0; - transform: none; - } -} -@media all and (max-width: 1200px) { - .masonry__promo.boxed--lg { - padding: 3.71428571em; - } -} -.pagination { - text-align: center; - margin-top: 1.85714286em; -} -.pagination:after { - content: ""; - display: table; - clear: both; -} -.pagination a { - font-weight: normal; -} -.pagination div[class*='col-'] { - padding: 0; -} -.pagination ol { - margin-bottom: 0; - display: inline-block; -} -.pagination ol li { - display: inline-block; - margin: 0; - font-weight: 700; - line-height: 23px; - width: 1.85714286em; - height: 1.85714286em; - border-radius: 50%; - border: 1px solid #ececec; -} -.pagination ol li > a { - font-weight: 700; -} -.pagination ol li:not(:last-child) { - margin-right: 0.46428571em; -} -.pagination ol li.pagination__current { - cursor: default; - background: #ececec; - color: #aaa; -} -.pagination__prev, -.pagination__next { - display: inline-block; -} -.pagination__next { - float: right; -} -.pagination__prev { - float: left; -} -.blog-article-wide:not(:last-child) { - border-bottom: 1px solid #ececec; - margin-bottom: 3.71428571em; -} -.masonry-blog-list hr + .masonry__container { - margin-top: 0; -} -.masonry-blog-list article { - border-bottom: 1px solid #ececec; - padding-top: 2.78571429em; - margin-bottom: 5.57142857em; -} -.masonry-blog-list article .article__body { - padding-bottom: 5.57142857em; -} -.masonry-blog-magazine .masonry__item a { - font-weight: normal; -} -.masonry-blog-magazine .masonry__item a:hover { - text-decoration: none; -} -.masonry-filter-container { - margin-bottom: 1.85714286em; -} -.masonry-filter-container > span { - position: relative; - bottom: 20px; -} -.masonry-filter-container > span + .masonry-filter-holder { - margin-left: 0.92857143em; -} -.comments__list li { - padding: 1.85714286em; - border: 1px solid #ececec; - border-bottom: none; -} -.comments__list li:last-child { - border-bottom: 1px solid #ececec; -} -.comments__list li:nth-child(odd) { - background: #fcfcfc; -} -.comments__list li:nth-child(even) { - background: #f9f9f9; -} -.comments__list li:first-child { - border-radius: 6px 6px 0 0; -} -.comments__list li:last-child { - border-radius: 0 0 6px 6px; -} -.bg--secondary .comments__list li:nth-child(even) { - background: #fff; -} -@media all and (min-width: 768px) { - .comments__list li { - padding: 2.78571429em; - } -} -.comment { - overflow: hidden; -} -.comment:not(:last-child) { - border-bottom: 1px solid #ececec; - padding-bottom: 1.85714286em; -} -.comment .comment__avatar { - width: 15%; - float: left; -} -.comment .comment__avatar img { - max-height: 3.71428571em; -} -.comment .comment__meta { - font-size: 0.85714286em; -} -.comment .comment__meta a { - display: inline-block; -} -.comment .comment__meta a:not(:first-child) { - margin-left: 1.08333333333334em; -} -.comment .comment__meta + p { - margin-top: 0.92857143em; -} -.comment .comment__body { - width: 85%; - float: right; -} -.comment .comment__body h5.type--fine-print { - margin: 0; -} -.comment + .comment { - margin-top: 1.85714286em; - padding-left: 15%; -} -@media all and (min-width: 768px) { - .comments + .comments-form { - margin-top: 3.71428571em; - } -} -@media all and (min-width: 768px) { - h3 + .related-blog-list { - margin-top: 3.71428571em; - } -} -.related-blog-list li:not(:last-child) { - margin-bottom: 1.85714286em; -} -.related-blog-list article img { - border-radius: 6px; -} -.related-blog-list article .article__title { - margin-top: 0.92857143em; - margin-bottom: 0; -} -.related-blog-list article .article__title .h4 { - margin-bottom: 0.68421052631579em; -} -@media all and (min-width: 991px) { - .sidebar { - margin-top: 7.42857143em; - position: relative; - bottom: 18px; - } -} -.sidebar__widget > h5:first-child { - margin-bottom: 0.92857143em; -} -.sidebar__widget:not(:last-child) { - margin-bottom: 3.71428571em; -} -.tag-cloud li { - display: inline-block; -} -.tag-cloud li:not(:last-child) { - margin-right: 0.46428571em; -} -.tag-cloud li:not(:last-child):after { - content: ','; -} -.conversation__head { - border-radius: 6px 6px 0 0; -} -.conversation__head.boxed:not(:last-child) { - margin: 0; -} -.conversation__head h4 { - margin: 0; -} -.conversation__head .conversation__avatar { - margin-top: 0.92857143em; -} -.conversation__head .conversation__avatar img { - max-height: 1.85714286em; - display: inline-block; - margin-right: 0.46428571em; - margin-bottom: 0; -} -@media all and (min-width: 768px) { - .conversation__avatar { - position: absolute; - top: 1.85714286em; - right: 2.78571429em; - } -} -.conversation__reply { - border-top: none !important; - border-bottom: none; - border-radius: 0; -} -.conversation__reply.boxed:not(:last-child) { - margin-bottom: 0; -} -.conversation__reply + .conversation__comments .comments__list li:first-child { - border-radius: 0; - border-top: none; -} -/*! -- Stack Portfolio -- */ -.project-thumb > a { - display: block; -} -.project-thumb:not(.hover-element) > a { - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; - margin-bottom: 1.85714286em; -} -.project-thumb:not(.hover-element) > a:hover { - opacity: .85; -} -.project-thumb.hover-element { - margin: 0; -} -.project-thumb.hover-element > a { - height: 24.14285714em; - text-decoration: none; - font-weight: normal; -} -.project-thumb.hover-element .background-image-holder { - transition: 0.5s ease-out; - -webkit-transition: 0.5s ease-out; - -moz-transition: 0.5s ease-out; -} -.project-thumb.hover-element .hover-element__reveal .project-thumb__title { - padding: 1.85714286em; - z-index: 2; - position: relative; - color: #fff; -} -.project-thumb.hover-element .hover-element__reveal .project-thumb__title h5 { - margin: 0; -} -.project-thumb.hover-element.hover--active { - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; -} -.project-thumb.hover-element.hover--active:hover { - opacity: .85; -} -.project-thumb.hover-element:not(.hover--active)[data-scrim-top] .hover-element__reveal { - transition: 0.5s ease; - -webkit-transition: 0.5s ease; - -moz-transition: 0.5s ease; - transform: translate3d(0, -100px, 0); - -webkit-transform: translate3d(0, -100px, 0); -} -.project-thumb.hover-element:not(.hover--active)[data-scrim-top]:hover .hover-element__reveal { - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); -} -.project-thumb.hover-element [data-scrim-top]:before { - height: 100%; -} -.project-thumb h4 { - margin-bottom: 0; -} -.project-thumb.height-40 { - min-height: 350px; -} -@media all and (max-width: 767px) { - .project-thumb.height-40 { - height: 350px; - min-width: 100%; - } -} -@media all and (min-width: 768px) { - .col-xs-12:not(.col-sm-6) .project-thumb.hover-element > a { - height: 46.42857143em; - } -} -.project-thumb.border--round .background-image-holder { - border-radius: 6px; -} -.project-thumb.border--round > a { - border-radius: 6px; - overflow: hidden; -} -.project-thumb.border--round:before { - border-radius: 6px; - overflow: hidden; -} -.col-md-4 .project-thumb > a:not(.imagebg) { - margin-bottom: 0.92857143em; -} -/*! -- Stack Shop -- */ -.cart-form button[type="submit"] { - margin-top: 1.85714286em; -} -.cart-total > div { - overflow: hidden; -} -@media all and (min-width: 768px) { - .cart-total { - margin-top: 3.71428571em; - } - .cart-customer-details { - margin-top: 7.42857143em; - } -} -@media all and (max-width: 767px) { - .cart-total { - margin-top: 1.85714286em; - } -} -.cart-customer-details div[class*='col-'] { - margin-top: 0.46428571em; -} -.cart-customer-details .input-checkbox { - margin: 1.85714286em 0; -} -.cart-customer-details .input-checkbox + span { - bottom: 38px; -} -.product { - margin-bottom: 0.92857143em; -} -.product img { - margin-bottom: 0.92857143em; - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; - backface-visibility: hidden; -} -.product a:hover img { - transform: translate3d(0, -5px, 0); - -webkit-transform: translate3d(0, -5px, 0); -} -.product .label + img { - margin-top: 2.78571429em; -} -.product h5 { - display: inline-block; - margin-bottom: 0; - margin-right: 0.46428571em; -} -.product .h4 { - margin-bottom: 0; -} -.product .h4:first-child { - clear: left; -} -.product .product__controls { - overflow: hidden; - margin-bottom: 0.92857143em; -} -.product .product__controls label, -.product .product__controls button { - position: relative; - top: 6px; -} -.product.product--tile { - padding: 1.85714286em; - border-radius: 6px; -} -@media all and (min-width: 1200px) { - .product .btn--cart { - position: absolute; - right: 1.85714286em; - bottom: 1.85714286em; - } -} -.col-sm-6:not(.col-md-3) .product { - text-align: center; -} -.col-md-3 .product--tile h5 { - display: block; -} -.masonry--tiles { - padding: 10px; -} -.masonry--tiles .masonry__item:not(:empty) { - padding: 0 6px; - margin-bottom: 12px; -} -.masonry--tiles .masonry__item:not(:empty) .product--tile { - margin: 0; -} -.masonry--tiles .masonry__item:not(:empty) .product--tile .label { - top: 1.85714286em; - right: 2.78571429em; -} -/*! -- Stack Wizard -- */ -.wizard { - transition: opacity .3s ease; - opacity: 0; -} -.wizard.active { - opacity: 1; -} -.wizard > .actions a, -.wizard > .actions a:hover, -.wizard > .actions a:active { - background: #ff4f4f; - transition: all .3s ease; - padding: 0.46428571em 1.85714286em; - font-size: 12px; - text-transform: uppercase; - font-weight: 700; - letter-spacing: 1px; - color: #fff; -} -.wizard > .steps .current a, -.wizard > .steps .current a:hover, -.wizard > .steps .current a:active { - background: none; - color: #252525; -} -.wizard > .steps a { - position: relative; -} -.wizard > .steps a:before { - content: ''; - width: 15px; - height: 15px; - border-radius: 50%; - position: absolute; - left: 50%; - margin-left: -10px; - background: #eee; - display: block; - bottom: 0; - transition: all .2s ease; -} -.wizard > .steps a:after { - content: ''; - position: absolute; - width: 100%; - bottom: 7px; - height: 2px; - background: #eee; - left: 0; - transition: all .2s ease; -} -.wizard > .steps li:first-child a:after { - width: 50%; - left: 50%; -} -.wizard > .steps li:last-child a:after { - width: 50%; -} -.wizard > .steps li.current a:after, -.wizard > .steps li.current a:before { - background-color: #ff4f4f; -} -.wizard > .steps a, -.wizard > .steps a:hover { - padding-bottom: 2.78571429em; -} -.wizard > .steps .done a, -.wizard > .steps .done a:hover, -.wizard > .steps .done a:active, -.wizard > .steps .disabled a, -.wizard > .steps .disabled a:hover, -.wizard > .steps .disabled a:active { - background: none; - color: #252525; -} -.wizard > .steps a, -.wizard > .steps a:hover, -.wizard > .steps a:active { - margin: 0; -} -.wizard > .actions a, -.wizard > .actions a:hover, -.wizard > .actions a:active { - user-select: none; - -moz-user-select: none; - -webkit-user-select: none; -} -.wizard > .steps > ul, -.wizard > .actions { - text-align: center; -} -.wizard > .steps > ul > li, -.wizard > .actions > ul > li { - float: none; - display: inline-block; -} -.wizard > section { - padding: 0; -} -.wizard > .content { - background: #fafafa; - margin-top: 1.85714286em; - margin-bottom: 1.85714286em; - border: 1px solid #ececec; -} -.wizard > .content > .body { - padding: 1.85714286em; - width: 100%; - height: 100%; -} -.wizard > .steps .number { - font-size: 1em; -} -@media all and (max-width: 767px) { - .wizard > .steps .number { - display: block; - } - .wizard > .content { - min-height: 25em; - } - .wizard .pos-vertical-center { - top: 50%; - transform: translateY(-50%); - -wekbit-transform: translateY(-50%); - } -} -.wizard.bg--white { - background: none !important; -} -.wizard.bg--white > .content { - background: #fff; -} -.wizard > .content img { - max-height: 240px; -} -@media all and (max-width: 767px) { - .wizard > .content img { - max-height: 120px; - margin-bottom: 0.92857143em; - } -} -/*! -- Stack Footers -- */ -footer .type--fine-print:not(p) { - opacity: .5; -} -footer a { - font-weight: normal; -} -footer:not(.bg--primary):not(.bg--dark) a { - color: #666666; -} -footer a.type--fine-print:not(:first-child) { - margin-left: 1.85714286em; -} -footer .logo { - max-height: 1.67142857em; -} -footer ul:not(.list-inline):not(.slides) > li { - line-height: 2.32142857em !important; -} -footer.footer-2 .row:last-child { - margin-top: 3.71428571em; -} -footer.footer-5 .row [class*='col-'] > div:nth-last-child(2) { - margin: 0.92857143em; -} -footer.footer-5 .row [class*='col-'] > div:nth-last-child(2) .type--fine-print { - opacity: 1; -} -footer.footer-6 .footer__lower { - background: #fafafa; - margin-top: 1.85714286em; - padding: 1.85714286em 0; -} -footer.footer-6.bg--dark .footer__lower { - background: #181818; -} -footer.footer-6.bg--secondary .footer__lower { - background: #f5f5f5; -} -footer.footer-6.bg--primary .footer__lower { - background: #ff3535; -} -footer.footer-7 { - padding: 1.85714286em 0; -} -@media all and (min-width: 768px) { - footer .list-inline + .btn { - position: relative; - bottom: 4px; - } - footer .logo { - margin: 0; - } - footer .logo:not(:last-child) { - margin-right: 1.85714286em; - } - footer.footer-3 .logo + ul { - position: relative; - top: 5px; - } - footer.footer-3 .logo + ul a { - color: #252525; - } - footer.footer-3 .social-list { - position: relative; - top: 9px; - } - footer.footer-3 .row:last-child { - margin-top: 1.85714286em; - } - footer.footer-4 .logo + span { - position: relative; - top: 8px; - } - footer.footer-4 form { - position: relative; - bottom: 4px; - } - footer.footer-4 .row:last-child { - margin-top: 1.85714286em; - } - footer.imagebg:not(.image--light) span, - footer.imagebg:not(.image--light) p, - footer.imagebg:not(.image--light) a { - color: #fff; - } - .footer-1 .type--fine-print { - position: relative; - top: 2px; - } -} -@media all and (max-width: 767px) { - footer .social-list { - margin: 1.85714286em 0; - } - .footer-4 form { - margin: 1.85714286em 0; - } - .footer-4 .logo { - margin: 0; - } - .footer-6 .footer__lower .social-list { - margin-top: 1.85714286em; - } - .footer-7 .social-list { - margin-top: 1.85714286em; - } - .footer-1 .social-list { - margin-top: 1.85714286em; - } - .footer-1 .logo { - display: block; - margin-top: 1.85714286em; - margin-bottom: 0.92857143em; - margin-left: auto; - margin-right: auto; - } -} diff --git a/html/css/theme-rtl.css b/html/css/theme-rtl.css deleted file mode 100644 index 00708a13..00000000 --- a/html/css/theme-rtl.css +++ /dev/null @@ -1 +0,0 @@ -.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-xs-1,.col-xs-10,.col-xs-11,.col-xs-12,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9{position:relative;min-height:1px;padding-left:15px;padding-right:15px}.col-xs-1,.col-xs-10,.col-xs-11,.col-xs-12,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9{float:right}.col-xs-12{width:100%}.col-xs-11{width:91.66666667%}.col-xs-10{width:83.33333333%}.col-xs-9{width:75%}.col-xs-8{width:66.66666667%}.col-xs-7{width:58.33333333%}.col-xs-6{width:50%}.col-xs-5{width:41.66666667%}.col-xs-4{width:33.33333333%}.col-xs-3{width:25%}.col-xs-2{width:16.66666667%}.col-xs-1{width:8.33333333%}.col-xs-pull-12{left:100%;right:auto}.col-xs-pull-11{left:91.66666667%;right:auto}.col-xs-pull-10{left:83.33333333%;right:auto}.col-xs-pull-9{left:75%;right:auto}.col-xs-pull-8{left:66.66666667%;right:auto}.col-xs-pull-7{left:58.33333333%;right:auto}.col-xs-pull-6{left:50%;right:auto}.col-xs-pull-5{left:41.66666667%;right:auto}.col-xs-pull-4{left:33.33333333%;right:auto}.col-xs-pull-3{left:25%;right:auto}.col-xs-pull-2{left:16.66666667%;right:auto}.col-xs-pull-1{left:8.33333333%;right:auto}.col-xs-pull-0{left:auto;right:auto}.col-xs-push-12{right:100%;left:0}.col-xs-push-11{right:91.66666667%;left:0}.col-xs-push-10{right:83.33333333%;left:0}.col-xs-push-9{right:75%;left:0}.col-xs-push-8{right:66.66666667%;left:0}.col-xs-push-7{right:58.33333333%;left:0}.col-xs-push-6{right:50%;left:0}.col-xs-push-5{right:41.66666667%;left:0}.col-xs-push-4{right:33.33333333%;left:0}.col-xs-push-3{right:25%;left:0}.col-xs-push-2{right:16.66666667%;left:0}.col-xs-push-1{right:8.33333333%;left:0}.col-xs-push-0{right:auto;left:0}.col-xs-offset-12{margin-right:100%;margin-left:0}.col-xs-offset-11{margin-right:91.66666667%;margin-left:0}.col-xs-offset-10{margin-right:83.33333333%;margin-left:0}.col-xs-offset-9{margin-right:75%;margin-left:0}.col-xs-offset-8{margin-right:66.66666667%;margin-left:0}.col-xs-offset-7{margin-right:58.33333333%;margin-left:0}.col-xs-offset-6{margin-right:50%;margin-left:0}.col-xs-offset-5{margin-right:41.66666667%;margin-left:0}.col-xs-offset-4{margin-right:33.33333333%;margin-left:0}.col-xs-offset-3{margin-right:25%;margin-left:0}.col-xs-offset-2{margin-right:16.66666667%;margin-left:0}.col-xs-offset-1{margin-right:8.33333333%;margin-left:0}.col-xs-offset-0{margin-right:0;margin-left:0}@media (min-width:768px){.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9{float:right}.col-sm-12{width:100%}.col-sm-11{width:91.66666667%}.col-sm-10{width:83.33333333%}.col-sm-9{width:75%}.col-sm-8{width:66.66666667%}.col-sm-7{width:58.33333333%}.col-sm-6{width:50%}.col-sm-5{width:41.66666667%}.col-sm-4{width:33.33333333%}.col-sm-3{width:25%}.col-sm-2{width:16.66666667%}.col-sm-1{width:8.33333333%}.col-sm-pull-12{left:100%;right:auto}.col-sm-pull-11{left:91.66666667%;right:auto}.col-sm-pull-10{left:83.33333333%;right:auto}.col-sm-pull-9{left:75%;right:auto}.col-sm-pull-8{left:66.66666667%;right:auto}.col-sm-pull-7{left:58.33333333%;right:auto}.col-sm-pull-6{left:50%;right:auto}.col-sm-pull-5{left:41.66666667%;right:auto}.col-sm-pull-4{left:33.33333333%;right:auto}.col-sm-pull-3{left:25%;right:auto}.col-sm-pull-2{left:16.66666667%;right:auto}.col-sm-pull-1{left:8.33333333%;right:auto}.col-sm-pull-0{left:auto;right:auto}.col-sm-push-12{right:100%;left:0}.col-sm-push-11{right:91.66666667%;left:0}.col-sm-push-10{right:83.33333333%;left:0}.col-sm-push-9{right:75%;left:0}.col-sm-push-8{right:66.66666667%;left:0}.col-sm-push-7{right:58.33333333%;left:0}.col-sm-push-6{right:50%;left:0}.col-sm-push-5{right:41.66666667%;left:0}.col-sm-push-4{right:33.33333333%;left:0}.col-sm-push-3{right:25%;left:0}.col-sm-push-2{right:16.66666667%;left:0}.col-sm-push-1{right:8.33333333%;left:0}.col-sm-push-0{right:auto;left:0}.col-sm-offset-12{margin-right:100%;margin-left:0}.col-sm-offset-11{margin-right:91.66666667%;margin-left:0}.col-sm-offset-10{margin-right:83.33333333%;margin-left:0}.col-sm-offset-9{margin-right:75%;margin-left:0}.col-sm-offset-8{margin-right:66.66666667%;margin-left:0}.col-sm-offset-7{margin-right:58.33333333%;margin-left:0}.col-sm-offset-6{margin-right:50%;margin-left:0}.col-sm-offset-5{margin-right:41.66666667%;margin-left:0}.col-sm-offset-4{margin-right:33.33333333%;margin-left:0}.col-sm-offset-3{margin-right:25%;margin-left:0}.col-sm-offset-2{margin-right:16.66666667%;margin-left:0}.col-sm-offset-1{margin-right:8.33333333%;margin-left:0}.col-sm-offset-0{margin-right:0;margin-left:0}}@media (min-width:992px){.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9{float:right}.col-md-12{width:100%}.col-md-11{width:91.66666667%}.col-md-10{width:83.33333333%}.col-md-9{width:75%}.col-md-8{width:66.66666667%}.col-md-7{width:58.33333333%}.col-md-6{width:50%}.col-md-5{width:41.66666667%}.col-md-4{width:33.33333333%}.col-md-3{width:25%}.col-md-2{width:16.66666667%}.col-md-1{width:8.33333333%}.col-md-pull-12{left:100%;right:auto}.col-md-pull-11{left:91.66666667%;right:auto}.col-md-pull-10{left:83.33333333%;right:auto}.col-md-pull-9{left:75%;right:auto}.col-md-pull-8{left:66.66666667%;right:auto}.col-md-pull-7{left:58.33333333%;right:auto}.col-md-pull-6{left:50%;right:auto}.col-md-pull-5{left:41.66666667%;right:auto}.col-md-pull-4{left:33.33333333%;right:auto}.col-md-pull-3{left:25%;right:auto}.col-md-pull-2{left:16.66666667%;right:auto}.col-md-pull-1{left:8.33333333%;right:auto}.col-md-pull-0{left:auto;right:auto}.col-md-push-12{right:100%;left:0}.col-md-push-11{right:91.66666667%;left:0}.col-md-push-10{right:83.33333333%;left:0}.col-md-push-9{right:75%;left:0}.col-md-push-8{right:66.66666667%;left:0}.col-md-push-7{right:58.33333333%;left:0}.col-md-push-6{right:50%;left:0}.col-md-push-5{right:41.66666667%;left:0}.col-md-push-4{right:33.33333333%;left:0}.col-md-push-3{right:25%;left:0}.col-md-push-2{right:16.66666667%;left:0}.col-md-push-1{right:8.33333333%;left:0}.col-md-push-0{right:auto;left:0}.col-md-offset-12{margin-right:100%;margin-left:0}.col-md-offset-11{margin-right:91.66666667%;margin-left:0}.col-md-offset-10{margin-right:83.33333333%;margin-left:0}.col-md-offset-9{margin-right:75%;margin-left:0}.col-md-offset-8{margin-right:66.66666667%;margin-left:0}.col-md-offset-7{margin-right:58.33333333%;margin-left:0}.col-md-offset-6{margin-right:50%;margin-left:0}.col-md-offset-5{margin-right:41.66666667%;margin-left:0}.col-md-offset-4{margin-right:33.33333333%;margin-left:0}.col-md-offset-3{margin-right:25%;margin-left:0}.col-md-offset-2{margin-right:16.66666667%;margin-left:0}.col-md-offset-1{margin-right:8.33333333%;margin-left:0}.col-md-offset-0{margin-right:0;margin-left:0}}@media (min-width:1200px){.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9{float:right}.col-lg-12{width:100%}.col-lg-11{width:91.66666667%}.col-lg-10{width:83.33333333%}.col-lg-9{width:75%}.col-lg-8{width:66.66666667%}.col-lg-7{width:58.33333333%}.col-lg-6{width:50%}.col-lg-5{width:41.66666667%}.col-lg-4{width:33.33333333%}.col-lg-3{width:25%}.col-lg-2{width:16.66666667%}.col-lg-1{width:8.33333333%}.col-lg-pull-12{left:100%;right:auto}.col-lg-pull-11{left:91.66666667%;right:auto}.col-lg-pull-10{left:83.33333333%;right:auto}.col-lg-pull-9{left:75%;right:auto}.col-lg-pull-8{left:66.66666667%;right:auto}.col-lg-pull-7{left:58.33333333%;right:auto}.col-lg-pull-6{left:50%;right:auto}.col-lg-pull-5{left:41.66666667%;right:auto}.col-lg-pull-4{left:33.33333333%;right:auto}.col-lg-pull-3{left:25%;right:auto}.col-lg-pull-2{left:16.66666667%;right:auto}.col-lg-pull-1{left:8.33333333%;right:auto}.col-lg-pull-0{left:auto;right:auto}.col-lg-push-12{right:100%;left:0}.col-lg-push-11{right:91.66666667%;left:0}.col-lg-push-10{right:83.33333333%;left:0}.col-lg-push-9{right:75%;left:0}.col-lg-push-8{right:66.66666667%;left:0}.col-lg-push-7{right:58.33333333%;left:0}.col-lg-push-6{right:50%;left:0}.col-lg-push-5{right:41.66666667%;left:0}.col-lg-push-4{right:33.33333333%;left:0}.col-lg-push-3{right:25%;left:0}.col-lg-push-2{right:16.66666667%;left:0}.col-lg-push-1{right:8.33333333%;left:0}.col-lg-push-0{right:auto;left:0}.col-lg-offset-12{margin-right:100%;margin-left:0}.col-lg-offset-11{margin-right:91.66666667%;margin-left:0}.col-lg-offset-10{margin-right:83.33333333%;margin-left:0}.col-lg-offset-9{margin-right:75%;margin-left:0}.col-lg-offset-8{margin-right:66.66666667%;margin-left:0}.col-lg-offset-7{margin-right:58.33333333%;margin-left:0}.col-lg-offset-6{margin-right:50%;margin-left:0}.col-lg-offset-5{margin-right:41.66666667%;margin-left:0}.col-lg-offset-4{margin-right:33.33333333%;margin-left:0}.col-lg-offset-3{margin-right:25%;margin-left:0}.col-lg-offset-2{margin-right:16.66666667%;margin-left:0}.col-lg-offset-1{margin-right:8.33333333%;margin-left:0}.col-lg-offset-0{margin-right:0;margin-left:0}}caption,th{text-align:right}@media screen and (max-width:767px){.table-responsive>.table-bordered{border:0}.table-responsive>.table-bordered>tbody>tr>td:first-child,.table-responsive>.table-bordered>tbody>tr>th:first-child,.table-responsive>.table-bordered>tfoot>tr>td:first-child,.table-responsive>.table-bordered>tfoot>tr>th:first-child,.table-responsive>.table-bordered>thead>tr>td:first-child,.table-responsive>.table-bordered>thead>tr>th:first-child{border-right:0;border-left:initial}.table-responsive>.table-bordered>tbody>tr>td:last-child,.table-responsive>.table-bordered>tbody>tr>th:last-child,.table-responsive>.table-bordered>tfoot>tr>td:last-child,.table-responsive>.table-bordered>tfoot>tr>th:last-child,.table-responsive>.table-bordered>thead>tr>td:last-child,.table-responsive>.table-bordered>thead>tr>th:last-child{border-left:0;border-right:initial}}.pagination{padding-right:0}.pagination>li>a,.pagination>li>span{float:right;margin-right:-1px;margin-left:0}.pagination>li:first-child>a,.pagination>li:first-child>span{margin-left:0;border-radius:0 4px 4px 0}.pagination>li:last-child>a,.pagination>li:last-child>span{margin-right:-1px;border-radius:4px 0 0 4px}.ltr{direction:ltr;text-align:right}.pull-right{float:left !important}.pull-left{float:right !important}.pos-absolute{position:absolute !important}.switchable:not(.imageblock){position:relative}.switchable:not(.imageblock) div[class*='col-']:first-child{float:right;left:auto}.switchable:not(.imageblock) div[class*='col-']:first-child:not([class*='pull']):not([class*='push']){right:0}.switchable:not(.imageblock) div[class*='col-']:last-child{float:left;right:auto}.switchable:not(.imageblock) div[class*='col-']:last-child:not([class*='pull']):not([class*='push']){left:0}.switchable:not(.imageblock).switchable--switch div[class*='col-']:first-child{float:left;right:auto;left:0}.switchable:not(.imageblock).switchable--switch div[class*='col-']:first-child:not([class*='pull']):not([class*='push']){left:0}.switchable:not(.imageblock).switchable--switch div[class*='col-']:last-child{float:right;left:auto;right:0}.text-left{text-align:right}.text-right{text-align:left}blockquote{border-right:none}pre{direction:ltr}@media all and (max-width:990px){.text-left-sm{text-align:right !important}}@media all and (max-width:767px){.text-left-xs{text-align:right !important}.text-center-xs{text-align:center !important}}[dir="rtl"]{direction:rtl}[dir="rtl"] .accordion .accordion__title:before{margin-left:6px;margin-right:0}@media (min-width:1024px){[dir="rtl"] .bar-1 .bar__module+.bar__module{margin-left:0;margin-right:1.6875em}}[dir="rtl"] .comment .comment__meta a:not(:first-child){margin-left:0;margin-right:1.08333333333334em}[dir="rtl"] .comment .comment__avatar{float:right}[dir="rtl"] .breadcrumbs li:not(:last-child){margin-left:1.08333333333334em;margin-right:0}[dir="rtl"] .breadcrumbs li:not(:last-child):after{margin-left:0;margin-right:1.08333333333334em}[dir="rtl"] .btn.btn--sm+.btn--sm{margin-left:0;margin-right:.84375em}[dir="rtl"] .btn:last-child{margin-left:0;margin-right:auto}[dir="rtl"] .btn:first-child{margin-right:0;margin-left:auto}@media all and (min-width:768px){[dir="rtl"] .btn:not(.block)+.btn{margin-left:0;margin-right:1.6875em}}@media all and (max-width:767px){[dir="rtl"] .btn.btn--sm+.btn--sm{margin-right:0}}[dir="rtl"] .card-1 .card__meta{float:left}[dir="rtl"] .card-1 .card__meta span{direction:ltr}@media all and (min-width:990px){[dir="rtl"] .cover-blocks .col-md-5{right:58.33333333%}}@media all and (min-width:768px){[dir="rtl"] .cover-blocks .col-md-5{right:50%}}[dir="rtl"] .countdown{direction:ltr}[dir="rtl"] .feature-2 i,[dir="rtl"] .feature-5 i{float:right}[dir="rtl"] .feature-2 .feature__body,[dir="rtl"] .feature-5 .feature__body{float:left}[dir="rtl"] input[type],[dir="rtl"] select,[dir="rtl"] textarea{padding-left:0;padding-right:.84375em}[dir="rtl"] .input-checkbox .inner:not(:last-child){margin-left:.421875em;margin-right:0}[dir="rtl"] .input-select:after{right:auto;left:0;border-left:none;border-right:1px solid #ececec}[dir="rtl"] div[class*='col-']>form div[class*='col-']:last-child:nth-child(2){padding-right:15px;padding-left:0}[dir="rtl"] footer .logo:not(:last-child){margin-right:0;margin-left:1.6875em}@media all and (max-width:767px){[dir="rtl"] footer .social-list{margin-top:.84375em;margin-bottom:.84375em}[dir="rtl"] footer .logo:not(:last-child){margin-left:0}}[dir="rtl"] .label{right:auto !important;left:1.125em}[dir="rtl"] .btn .label{left:-3.375em}[dir="rtl"] .pricing .label{left:3.375em}[dir="rtl"] span>a,[dir="rtl"] p>a{display:inline-block}[dir="rtl"] .list-inline:not(:last-child){margin-right:0;margin-left:1.6875em}[dir="rtl"] .list-inline li:not(:last-child){margin-left:1.6875em;margin-right:0}[dir="rtl"] .checkmark:not(:last-child){margin-left:13px;margin-right:0}@media all and (max-width:767px){[dir="rtl"] .list-inline:not(.social-list) li:not(:last-child){margin-left:0}}[dir="rtl"] .masonry-filter-container>span+.masonry-filter-holder{margin-left:0}[dir="rtl"] .masonry-filter-container>span{display:inline-block;margin-left:1.6875em}[dir="rtl"] .masonry-filter-holder .masonry__filters ul li.active:after{margin-left:0;margin-right:6px}[dir="rtl"] .masonry--tiles .masonry__item:not(:empty) .product--tile .label{left:2.78571429em}[dir="rtl"] .menu-horizontal li:not(:last-child){margin-right:0 !important;margin-left:.84375em}[dir="rtl"] .menu-horizontal>.dropdown>.dropdown__trigger:after{margin-left:0;margin-right:4px}[dir="rtl"] .menu-vertical li.dropdown:after{right:auto;left:0;content:'\e80b';transform:translateX(0);-webkit-transform:translateX(0)}[dir="rtl"] .menu-vertical li.dropdown:hover:after{transform:translateX(-5px);-webkit-transform:translateX(-5px)}@media (min-width:990px){[dir="rtl"] .menu-vertical .dropdown__container .dropdown__content{transform:translateX(-75%);-webkit-transform:translateX(-75%)}}[dir="rtl"] .dropdown .dropdown__content>.pos-absolute[class*='col-']{left:auto;right:0}[dir="rtl"] .dropdown .dropdown__content .background-image-holder,[dir="rtl"] .dropdown .dropdown__content>.pos-absolute[class*='col-'][data-overlay]:before{border-radius:0 6px 6px 0}[dir="rtl"] .dropdown__container:not([style]){position:fixed}@media all and (max-width:767px){[dir="rtl"] .dropdown__container,[dir="rtl"] .dropdown__content{right:0 !important}[dir="rtl"] .dropdown .dropdown__content{padding-right:0}}@media all and (min-width:768px){[dir="rtl"] .modal-instance+span:last-child{margin-left:0;margin-right:.84375em}}[dir="rtl"] .notification .notification-close-cross{right:auto;left:2em}[dir="rtl"] .product h5{margin-right:0;marign-left:.421875em}@media all and (min-width:768px){[dir="rtl"] .process-1 .process__item:nth-child(odd){text-align:left;padding-right:0;padding-left:3.375em}[dir="rtl"] .process-1 .process__item:nth-child(odd):after{right:auto;left:-0.84375em;margin-left:-1px}[dir="rtl"] .process-1 .process__item:nth-child(even){margin-left:auto;margin-right:50%;padding-left:0;padding-right:3.375em}[dir="rtl"] .process-1 .process__item:nth-child(even):after{left:auto;right:-0.84375em}}[dir="rtl"] .process-3 .process__number{float:right}[dir="rtl"] .process-3 .process__body{float:left}[dir="rtl"] .process-3:before{left:auto;right:1.6875em}[dir="rtl"] .tabs-container[data-content-align="left"] .tabs-content{text-align:right}[dir="rtl"] .tabs-container.tabs--vertical .tabs{float:right}[dir="rtl"] .tabs-container.tabs--vertical .tabs-content{float:left}@media all and (min-width:768px){[dir="rtl"] .Testimonials-1 .list-inline li:not(:last-child){margin-left:0;margin-right:2.25em}}[dir="rtl"] .tweets-feed-1 .user{float:right}[dir="rtl"] .tweets-feed-1 .tweet,[dir="rtl"] .tweets-feed-1 .timePosted{float:left}[dir="rtl"] .tweets-feed-2 li:before{float:right;margin-left:10px}[dir="rtl"] .typed-headline{display:inline-block}[dir="rtl"] .typed-headline .typed-text{float:right;margin-left:6px;position:relative}[dir="rtl"] .typed-headline .typed-text.typed-text--cursor:after{position:absolute;right:-19px}[dir="rtl"] .modal-instance .video-play-icon+span{margin-left:0;margin-right:.84375em}[dir="rtl"] .video-cover+span.h4+span{margin-left:0;margin-right:.84375em}@media all and (min-width:768px){[dir="rtl"] .video-1 .video-play-icon{margin-right:auto;margin-left:1.6875em}} \ No newline at end of file diff --git a/html/css/theme-serpent.css b/html/css/theme-serpent.css deleted file mode 100644 index 771ddbb2..00000000 --- a/html/css/theme-serpent.css +++ /dev/null @@ -1,9016 +0,0 @@ -/**!**************/ -/**! Contents **/ -/**! 01. Reset **/ -/**! 02. Typography **/ -/**! 03. Position **/ -/**! 04. Element Size **/ -/**! 05. Images **/ -/**! 06. Buttons **/ -/**! 07. Icons **/ -/**! 08. Lists **/ -/**! 09. Lightbox **/ -/**! 10. Menus **/ -/**! 11. Dropdowns **/ -/**! 12. Form Elements **/ -/**! 13. Accordions **/ -/**! 14. Breadcrumbs **/ -/**! 15. Radials **/ -/**! 16. Tabs **/ -/**! 17. Boxes **/ -/**! 18. Sliders Flickity **/ -/**! 19. Hover Elements **/ -/**! 20. Masonry **/ -/**! 21. Modals **/ -/**! 22. Maps **/ -/**! 23. Parallax **/ -/**! 24. Notifications **/ -/**! 25. Video **/ -/**! 26. Colors **/ -/**! 27. Image Blocks **/ -/**! 28. MailChimp & Campaign Monitor **/ -/**! 29. Twitter **/ -/**! 30. Transitions **/ -/**! 31. Switchable Sections **/ -/**! 32. Typed Effect **/ -/**! 33. Gradient BG **/ -/**! 34. Bars **/ -/**! 35. Navigation In Page **/ -/**! 36. Helper Classes **/ -/**! 37. Spacing **/ -/**! 38. Boxed Layout **/ -/**! 39. Wizard **/ -/**! 40. Alerts **/ -/**! 41. Progress - Horizontal **/ -/**! 42. Theme Overrides **/ -/**!**************/ -/**!**************/ -/**!**************/ -/**! 01. Reset **/ -*, -h1, -h2, -h3, -h4, -h5, -h6, -p, -ul, -a { - margin: 0; - padding: 0; -} -/**! 02. Typography **/ -html { - font-size: 87.5%; -} -@media all and (max-width: 768px) { - html { - font-size: 81.25%; - } -} -body { - font-size: 1em; - line-height: 1.85714286em; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; - font-family: 'Open Sans', 'Helvetica', 'Arial', sans-serif; - color: #666666; - font-weight: 400; -} -h1, -h2, -h3, -h4, -h5, -h6, -.h1, -.h2, -.h3, -.h4, -.h5, -.h6 { - font-family: 'Open Sans', 'Helvetica', 'Arial', sans-serif; - color: #252525; - font-weight: 300; - font-variant-ligatures: common-ligatures; - margin-top: 0; - margin-bottom: 0; -} -h1, -.h1 { - font-size: 3.14285714em; - line-height: 1.31818182em; -} -h2, -.h2 { - font-size: 2.35714286em; - line-height: 1.36363636em; -} -h3, -.h3 { - font-size: 1.78571429em; - line-height: 1.5em; -} -h4, -.h4 { - font-size: 1.35714286em; - line-height: 1.36842105em; -} -h5, -.h5 { - font-size: 1em; - line-height: 1.85714286em; -} -h6, -.h6 { - font-size: 0.85714286em; - line-height: 2.16666667em; -} -.lead { - font-size: 1.35714286em; - line-height: 1.68421053em; -} -@media all and (max-width: 767px) { - h1, - .h1 { - font-size: 2.35714286em; - line-height: 1.36363636em; - } - h2, - .h2 { - font-size: 1.78571429em; - line-height: 1.5em; - } - h3, - .h3 { - font-size: 1.35714286em; - line-height: 1.85714286em; - } - .lead { - font-size: 1.35714286em; - line-height: 1.36842105em; - } -} -p, -ul, -ol, -pre, -table, -blockquote { - margin-bottom: 1.85714286em; -} -ul, -ol { - list-style: none; - line-height: 1.85714286em; -} -ul.bullets { - list-style: inside; -} -ol { - list-style-type: upper-roman; - list-style-position: inside; -} -blockquote { - font-size: 1.78571429em; - line-height: 1.5em; - padding: 0; - margin: 0; - border-left: 0; -} -strong { - font-weight: 600; -} -hr { - margin: 1.85714286em 0; - border-color: #fafafa; -} -a:hover, -a:focus, -a:active { - text-decoration: none; - outline: none; -} -/*! Typography -- Helpers */ -.type--fade { - opacity: .5; -} -.type--uppercase { - text-transform: uppercase; -} -.type--bold { - font-weight: bold; -} -.type--italic { - font-style: italic; -} -.type--fine-print { - font-size: 0.85714286em; -} -.type--strikethrough { - text-decoration: line-through; - opacity: .5; -} -.type--underline { - text-decoration: underline; -} -.type--body-font { - font-family: 'Open Sans', 'Helvetica'; -} -/**! 03. Position **/ -body { - overflow-x: hidden; -} -.pos-relative { - position: relative; -} -.pos-absolute { - position: absolute; -} -.pos-absolute.container { - left: 0; - right: 0; -} -.pos-top { - top: 0; -} -.pos-bottom { - bottom: 0; -} -.pos-right { - right: 0; -} -.pos-left { - left: 0; -} -.float-left { - float: left; -} -.float-right { - float: right; -} -@media all and (max-width: 767px) { - .float-left, - .float-right { - float: none; - } - .float-left-xs { - float: left; - } - .float-right-xs { - float: right; - } -} -.pos-vertical-center { - position: relative; - top: 50%; - transform: translateY(-50%); - -webkit-transform: translateY(-50%); -} -@media all and (max-width: 767px) { - .pos-vertical-center { - top: 0; - transform: none; - -webkit-transform: none; - } -} -@media all and (max-height: 600px) { - .pos-vertical-center { - top: 0; - transform: none; - -webkit-transform: none; - } -} -.pos-vertical-align-columns { - display: table; - table-layout: fixed; - width: 100%; -} -.pos-vertical-align-columns > div[class*='col-'] { - display: table-cell; - float: none; - vertical-align: middle; -} -@media all and (max-width: 990px) { - .pos-vertical-align-columns { - display: block; - width: auto; - } - .pos-vertical-align-columns > div[class*='col-'] { - display: block; - } -} -.inline-block { - display: inline-block; -} -.block { - display: block; -} -@media all and (max-width: 767px) { - .block--xs { - display: block; - } -} -@media all and (max-width: 990px) { - .text-center-md { - text-align: center; - } - .text-left-md { - text-align: left; - } - .text-right-md { - text-align: right; - } -} -@media all and (max-width: 767px) { - .text-center-xs { - text-align: center; - } - .text-left-xs { - text-align: left; - } - .text-right-xs { - text-align: right; - } -} -/**! 04. Element Size **/ -.height-100, -.height-90, -.height-80, -.height-70, -.height-60, -.height-50, -.height-40, -.height-30, -.height-20, -.height-10 { - height: auto; - padding: 5em 0; -} -@media all and (max-width: 767px) { - .height-100, - .height-90, - .height-80, - .height-70, - .height-60, - .height-50, - .height-40, - .height-30, - .height-20, - .height-10 { - height: auto; - padding: 4em 0; - } -} -@media all and (min-height: 600px) and (min-width: 767px) { - .height-10 { - height: 10vh; - } - .height-20 { - height: 20vh; - } - .height-30 { - height: 30vh; - } - .height-40 { - height: 40vh; - } - .height-50 { - height: 50vh; - } - .height-60 { - height: 60vh; - } - .height-70 { - height: 70vh; - } - .height-80 { - height: 80vh; - } - .height-90 { - height: 90vh; - } - .height-100 { - height: 100vh; - } -} -section.height-auto { - height: auto; -} -section.height-auto .pos-vertical-center { - top: 0; - position: relative; - transform: none; -} -@media all and (max-width: 767px) { - div[class*='col-'][class*='height-'] { - padding-top: 5.57142857em !important; - padding-bottom: 5.57142857em !important; - } -} -/**! 05. Images **/ -img { - max-width: 100%; - margin-bottom: 1.85714286em; -} -/*p+img, img:last-child{ - margin-bottom: 0; -}*/ -.img--fullwidth { - width: 100%; -} -[data-grid="2"].masonry { - -webkit-column-count: 2; - -webkit-column-gap: 0; - -moz-column-count: 2; - -moz-column-gap: 0; - column-count: 2; - column-gap: 0; -} -[data-grid="2"].masonry li { - width: 100%; - float: none; -} -[data-grid="2"] li { - width: 50%; - display: inline-block; -} -[data-grid="3"].masonry { - -webkit-column-count: 3; - -webkit-column-gap: 0; - -moz-column-count: 3; - -moz-column-gap: 0; - column-count: 3; - column-gap: 0; -} -[data-grid="3"].masonry li { - width: 100%; - float: none; -} -[data-grid="3"] li { - width: 33.33333333%; - display: inline-block; -} -[data-grid="4"].masonry { - -webkit-column-count: 4; - -webkit-column-gap: 0; - -moz-column-count: 4; - -moz-column-gap: 0; - column-count: 4; - column-gap: 0; -} -[data-grid="4"].masonry li { - width: 100%; - float: none; -} -[data-grid="4"] li { - width: 25%; - display: inline-block; -} -[data-grid="5"].masonry { - -webkit-column-count: 5; - -webkit-column-gap: 0; - -moz-column-count: 5; - -moz-column-gap: 0; - column-count: 5; - column-gap: 0; -} -[data-grid="5"].masonry li { - width: 100%; - float: none; -} -[data-grid="5"] li { - width: 20%; - display: inline-block; -} -[data-grid="6"].masonry { - -webkit-column-count: 6; - -webkit-column-gap: 0; - -moz-column-count: 6; - -moz-column-gap: 0; - column-count: 6; - column-gap: 0; -} -[data-grid="6"].masonry li { - width: 100%; - float: none; -} -[data-grid="6"] li { - width: 16.66666667%; - display: inline-block; -} -[data-grid="7"].masonry { - -webkit-column-count: 7; - -webkit-column-gap: 0; - -moz-column-count: 7; - -moz-column-gap: 0; - column-count: 7; - column-gap: 0; -} -[data-grid="7"].masonry li { - width: 100%; - float: none; -} -[data-grid="7"] li { - width: 14.28571429%; - display: inline-block; -} -[data-grid="8"].masonry { - -webkit-column-count: 8; - -webkit-column-gap: 0; - -moz-column-count: 8; - -moz-column-gap: 0; - column-count: 8; - column-gap: 0; -} -[data-grid="8"].masonry li { - width: 100%; - float: none; -} -[data-grid="8"] li { - width: 12.5%; - display: inline-block; -} -@media all and (max-width: 767px) { - [data-grid]:not(.masonry) li { - width: 33.333333%; - } - [data-grid="2"]:not(.masonry) li { - width: 50%; - } - [data-grid].masonry { - -webkit-column-count: 1; - -moz-column-count: 1; - column-count: 1; - } -} -.background-image-holder { - position: absolute; - height: 100%; - top: 0; - left: 0; - background-size: cover !important; - background-position: 50% 50% !important; - z-index: 0; - transition: opacity .3s linear; - -webkit-transition: opacity .3s linear; - opacity: 0; - background: #252525; -} -.background-image-holder:not([class*='col-']) { - width: 100%; -} -.background-image-holder.background--bottom { - background-position: 50% 100% !important; -} -.background-image-holder.background--top { - background-position: 50% 0% !important; -} -.image--light .background-image-holder { - background: none; -} -.background-image-holder img { - display: none; -} -[data-overlay] { - position: relative; -} -[data-overlay]:before { - position: absolute; - content: ''; - background: #252525; - width: 100%; - height: 100%; - top: 0; - left: 0; - z-index: 1; -} -[data-overlay] *:not(.container):not(.background-image-holder) { - z-index: 2; -} -[data-overlay].image--light:before { - background: #fff; -} -[data-overlay].bg--primary:before { - background: #5bc0be; -} -[data-overlay="1"]:before { - opacity: 0.1; -} -[data-overlay="2"]:before { - opacity: 0.2; -} -[data-overlay="3"]:before { - opacity: 0.3; -} -[data-overlay="4"]:before { - opacity: 0.4; -} -[data-overlay="5"]:before { - opacity: 0.5; -} -[data-overlay="6"]:before { - opacity: 0.6; -} -[data-overlay="7"]:before { - opacity: 0.7; -} -[data-overlay="8"]:before { - opacity: 0.8; -} -[data-overlay="9"]:before { - opacity: 0.9; -} -[data-overlay="10"]:before { - opacity: 1; -} -[data-overlay="0"]:before { - opacity: 0; -} -[data-scrim-bottom] { - position: relative; -} -[data-scrim-bottom]:before { - position: absolute; - content: ''; - width: 100%; - height: 80%; - background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, #252525 100%); - /* FF3.6+ */ - background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(0, 0, 0, 0)), color-stop(100%, #252525)); - /* Chrome,Safari4+ */ - background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, #252525 100%); - /* Chrome10+,Safari5.1+ */ - background: -o-linear-gradient(top, rgba(0, 0, 0, 0) 0%, #252525 100%); - /* Opera 11.10+ */ - background: -ms-linear-gradient(top, rgba(0, 0, 0, 0) 0%, #252525 100%); - /* IE10+ */ - background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, #252525 100%); - bottom: 0; - left: 0; - z-index: 1; - backface-visibility: hidden; -} -[data-scrim-bottom]:not(.image--light) h1, -[data-scrim-bottom]:not(.image--light) h2, -[data-scrim-bottom]:not(.image--light) h3, -[data-scrim-bottom]:not(.image--light) h4, -[data-scrim-bottom]:not(.image--light) h5, -[data-scrim-bottom]:not(.image--light) h6 { - color: #a5a5a5; - color: #f1f1f1; -} -[data-scrim-bottom]:not(.image--light) p, -[data-scrim-bottom]:not(.image--light) span, -[data-scrim-bottom]:not(.image--light) ul { - color: #e6e6e6; -} -[data-scrim-bottom].image--light:before { - background: #fff; -} -[data-scrim-bottom="1"]:before { - opacity: 0.1; -} -[data-scrim-bottom="2"]:before { - opacity: 0.2; -} -[data-scrim-bottom="3"]:before { - opacity: 0.3; -} -[data-scrim-bottom="4"]:before { - opacity: 0.4; -} -[data-scrim-bottom="5"]:before { - opacity: 0.5; -} -[data-scrim-bottom="6"]:before { - opacity: 0.6; -} -[data-scrim-bottom="7"]:before { - opacity: 0.7; -} -[data-scrim-bottom="8"]:before { - opacity: 0.8; -} -[data-scrim-bottom="9"]:before { - opacity: 0.9; -} -[data-scrim-bottom="10"]:before { - opacity: 1; -} -[data-scrim-top] { - position: relative; -} -[data-scrim-top]:before { - position: absolute; - content: ''; - width: 100%; - height: 80%; - background: -moz-linear-gradient(bottom, #252525 0%, rgba(0, 0, 0, 0) 100%); - /* FF3.6+ */ - background: -webkit-gradient(linear, left bottom, left bottom, color-stop(0%, #252525), color-stop(100%, rgba(0, 0, 0, 0))); - /* Chrome,Safari4+ */ - background: -webkit-linear-gradient(bottom, #252525 0%, rgba(0, 0, 0, 0) 100%); - /* Chrome10+,Safari5.1+ */ - background: -o-linear-gradient(bottom, #252525 0%, rgba(0, 0, 0, 0) 100%); - /* Opera 11.10+ */ - background: -ms-linear-gradient(bottom, #252525 0%, rgba(0, 0, 0, 0) 100%); - /* IE10+ */ - background: linear-gradient(to bottom, #252525 0%, rgba(0, 0, 0, 0) 100%); - top: 0; - left: 0; - z-index: 1; -} -[data-scrim-top]:not(.image--light) h1, -[data-scrim-top]:not(.image--light) h2, -[data-scrim-top]:not(.image--light) h3, -[data-scrim-top]:not(.image--light) h4, -[data-scrim-top]:not(.image--light) h5, -[data-scrim-top]:not(.image--light) h6 { - color: #fff; -} -[data-scrim-top]:not(.image--light) p, -[data-scrim-top]:not(.image--light) span, -[data-scrim-top]:not(.image--light) ul { - color: #e6e6e6; -} -[data-scrim-top].image--light:before { - background: #fff; -} -[data-scrim-top="1"]:before { - opacity: 0.1; -} -[data-scrim-top="2"]:before { - opacity: 0.2; -} -[data-scrim-top="3"]:before { - opacity: 0.3; -} -[data-scrim-top="4"]:before { - opacity: 0.4; -} -[data-scrim-top="5"]:before { - opacity: 0.5; -} -[data-scrim-top="6"]:before { - opacity: 0.6; -} -[data-scrim-top="7"]:before { - opacity: 0.7; -} -[data-scrim-top="8"]:before { - opacity: 0.8; -} -[data-scrim-top="9"]:before { - opacity: 0.9; -} -[data-scrim-top="10"]:before { - opacity: 1; -} -.imagebg { - position: relative; -} -.imagebg .container { - z-index: 2; -} -.imagebg .container:not(.pos-absolute) { - position: relative; -} -.imagebg:not(.image--light) h1, -.imagebg:not(.image--light) h2, -.imagebg:not(.image--light) h3, -.imagebg:not(.image--light) h4, -.imagebg:not(.image--light) h5, -.imagebg:not(.image--light) h6, -.imagebg:not(.image--light) p, -.imagebg:not(.image--light) ul, -.imagebg:not(.image--light) blockquote { - color: #fff; -} -.imagebg:not(.image--light) .bg--white h1, -.imagebg:not(.image--light) .bg--white h2, -.imagebg:not(.image--light) .bg--white h3, -.imagebg:not(.image--light) .bg--white h4, -.imagebg:not(.image--light) .bg--white h5, -.imagebg:not(.image--light) .bg--white h6 { - color: #252525; -} -.imagebg:not(.image--light) .bg--white p, -.imagebg:not(.image--light) .bg--white ul { - color: #666666; -} -div[data-overlay] h1, -div[data-overlay] h2, -div[data-overlay] h3, -div[data-overlay] h4, -div[data-overlay] h5, -div[data-overlay] h6 { - color: #fff; -} -div[data-overlay] p, -div[data-overlay] ul { - color: #fff; -} -.parallax { - overflow: hidden; -} -.parallax .background-image-holder { - transition: none !important; - -webkit-transition: none !important; - -moz-transition: none !important; -} -.image--xxs { - max-height: 1.85714286em; -} -.image--xs { - max-height: 3.71428571em; -} -.image--sm { - max-height: 5.57142857em; -} -.image--md { - max-height: 7.42857143em; -} -/**! 06. Buttons **/ -.btn { - font-family: 'Open Sans', 'Helvetica', 'Arial', sans-serif; - transition: 0.1s linear; - -webkit-transition: 0.1s linear; - -moz-transition: 0.1s linear; - border-radius: 6px; - padding-top: 0.46428571em; - padding-bottom: 0.46428571em; - padding-right: 2.78571429em; - padding-left: 2.78571429em; - border: 1px solid #252525; - border-width: 1px; - font-size: inherit; - line-height: 1.85714286em; -} -.btn .btn__text, -.btn i { - color: #252525; - border-color: #252525; - font-weight: 700; - font-size: 0.85714286em; -} -.btn[class*='col-'] { - margin-left: 0; - margin-right: 0; -} -.btn:active { - box-shadow: none; - -webkit-box-shadow: none; -} -.btn.bg--facebook, -.btn.bg--twitter, -.btn.bg--instagram, -.btn.bg--googleplus, -.btn.bg--pinterest, -.btn.bg--dribbble, -.btn.bg--behance, -.btn.bg--dark { - border-color: rgba(0, 0, 0, 0) !important; -} -.btn.bg--facebook .btn__text, -.btn.bg--twitter .btn__text, -.btn.bg--instagram .btn__text, -.btn.bg--googleplus .btn__text, -.btn.bg--pinterest .btn__text, -.btn.bg--dribbble .btn__text, -.btn.bg--behance .btn__text, -.btn.bg--dark .btn__text { - color: #fff; -} -.btn.bg--facebook .btn__text i, -.btn.bg--twitter .btn__text i, -.btn.bg--instagram .btn__text i, -.btn.bg--googleplus .btn__text i, -.btn.bg--pinterest .btn__text i, -.btn.bg--dribbble .btn__text i, -.btn.bg--behance .btn__text i, -.btn.bg--dark .btn__text i { - color: #fff; -} -.btn.bg--facebook:hover, -.btn.bg--twitter:hover, -.btn.bg--instagram:hover, -.btn.bg--googleplus:hover, -.btn.bg--pinterest:hover, -.btn.bg--dribbble:hover, -.btn.bg--behance:hover, -.btn.bg--dark:hover { - opacity: .9; -} -.btn.bg--error { - background: #e23636; - border-color: #e23636 !important; -} -.btn.bg--error:hover { - background: #e54c4c; - border-color: #e54c4c !important; - color: #fff !important; -} -.btn.bg--error .btn__text { - color: #fff; -} -.btn.bg--error .btn__text i { - color: #fff; -} -@media all and (min-width: 768px) { - .btn + .btn { - margin-left: 1.85714286em; - } -} -.btn:first-child { - margin-left: 0; -} -.btn:last-child { - margin-right: 0; -} -.btn--xs { - padding-top: 0; - padding-bottom: 0; - padding-right: 1.39285714em; - padding-left: 1.39285714em; -} -.btn--sm { - padding-top: 0.30952381em; - padding-bottom: 0.30952381em; - padding-right: 1.85714286em; - padding-left: 1.85714286em; -} -.btn--lg { - padding-top: 0.58035714em; - padding-bottom: 0.58035714em; - padding-right: 3.48214286em; - padding-left: 3.48214286em; -} -.btn--lg .btn__text { - font-size: 1.07142857em; -} -.btn--primary, -.btn--primary:visited { - background: #5bc0be; - border-color: #5bc0be; -} -.btn--primary .btn__text, -.btn--primary:visited .btn__text { - color: #fff; -} -.btn--primary .btn__text i, -.btn--primary:visited .btn__text i { - color: #fff; -} -.btn--primary:hover { - background: #6dc7c5; -} -.btn--primary:active { - background: #49b9b7; -} -.btn--primary-1, -.btn--primary-1:visited { - background: #3a506b; - border-color: #3a506b; -} -.btn--primary-1 .btn__text, -.btn--primary-1:visited .btn__text { - color: #fff; -} -.btn--primary-1:hover { - background: #435c7c; -} -.btn--primary-1:active { - background: #31445a; -} -.btn--primary-2, -.btn--primary-2:visited { - background: #1c2541; - border-color: #1c2541; -} -.btn--primary-2 .btn__text, -.btn--primary-2:visited .btn__text { - color: #fff; -} -.btn--primary-2:hover { - background: #242f53; -} -.btn--primary-2:active { - background: #141b2f; -} -.btn--secondary { - background: #fafafa; - border-color: #fafafa; -} -.btn--secondary:hover { - background: #ffffff; -} -.btn--secondary:active { - background: #f5f5f5; -} -.btn--white { - background: #fff; - color: #252525; - border-color: #fff; -} -.btn--white i { - color: #252525; -} -.btn--transparent { - background: none; - border-color: rgba(0, 0, 0, 0); - padding-left: 0; - padding-right: 0; -} -.btn--transparent.btn--white .btn__text { - color: #fff; -} -.btn--unfilled { - background: none; -} -.btn--unfilled.btn--white .btn__text { - color: #fff; -} -.btn--unfilled.btn--white i { - color: #fff; -} -.btn--floating { - position: fixed; - bottom: 3.71428571em; - right: 3.71428571em; - z-index: 10; -} -/**! 07. Icons **/ -.icon { - line-height: 1em; - font-size: 3.14285714em; -} -.icon--xs { - font-size: 1em; -} -.icon--sm { - font-size: 2.35714286em; -} -.icon--lg { - font-size: 5.57142857em; -} -/**! 08. Lists **/ -ul:last-child { - margin: 0; -} -.list-inline li { - padding: 0 1em; - margin-left: 0; -} -.list-inline li:first-child { - padding-left: 0; -} -.list-inline li:last-child { - padding-right: 0; -} -.list-inline.list-inline--narrow li { - padding: 0 .5em; -} -.list-inline.list-inline--wide li { - padding: 0 2em; -} -/**! 09. Lightbox **/ -.lb-outerContainer { - border-radius: 0; -} -.lb-outerContainer .lb-container { - padding: 0; -} -.lb-outerContainer .lb-container img { - margin: 0; -} -.lightbox-gallery { - overflow: hidden; -} -.lightbox-gallery li { - float: left; -} -.lightbox-gallery li img { - margin: 0; - width: 100%; -} -.lightbox-gallery.gallery--gaps li { - padding: 0.46428571em; -} -/**! 10. Menus **/ -.menu-horizontal > li:not(:hover) > a, -.menu-horizontal > li:not(:hover) > span, -.menu-horizontal > li:not(:hover) > .modal-instance > .modal-trigger { - opacity: .5; -} -.menu-horizontal > li > a, -.menu-horizontal > li > span, -.menu-horizontal > li > .modal-instance > .modal-trigger { - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; - color: #252525; -} -.menu-horizontal > li > a:hover, -.menu-horizontal > li > span:hover, -.menu-horizontal > li > .modal-instance > .modal-trigger:hover { - color: #252525; -} -.bg--dark .menu-horizontal > li > a, -.bg--dark .menu-horizontal > li > span { - color: #fff; -} -.bg--dark .menu-horizontal > li > a:hover, -.bg--dark .menu-horizontal > li > span:hover { - color: #fff; -} -.menu-vertical { - width: 100%; -} -.menu-vertical li { - width: 100%; -} -.menu-vertical li a { - font-weight: normal; -} -@media all and (min-width: 990px) { - .menu-horizontal { - display: inline-block; - } - .menu-horizontal > li { - display: inline-block; - } - .menu-horizontal > li:not(:last-child) { - margin-right: 1.85714286em; - } - .menu-vertical { - display: inline-block; - } - .menu-vertical li { - white-space: nowrap; - } - .menu-vertical .dropdown__container { - top: 0; - } - .menu-vertical .dropdown__container .dropdown__content:not([class*='bg-']) { - background: #ffffff; - } - .menu-vertical .dropdown__container .dropdown__content { - transform: translateX(75%); - } -} -/**! 11. Dropdowns **/ -.dropdown { - position: relative; -} -.dropdown .dropdown__container { - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; - opacity: 0; - pointer-events: none; - position: absolute; - z-index: 999; -} -.dropdown .dropdown__container .dropdown__container:before { - height: 0; -} -.dropdown .dropdown__content { - padding: 1.85714286em; -} -.dropdown .dropdown__content:not([class*='col-']) { - width: 18.57142857em; -} -.dropdown .dropdown__content:not([class*='bg-']) { - background: #ffffff; -} -.dropdown .dropdown__content:not([class='bg--dark']) .menu-vertical a { - color: #666666; -} -.dropdown .dropdown__trigger { - cursor: pointer; - user-select: none; -} -.dropdown.dropdown--active > .dropdown__container { - opacity: 1; -} -.dropdown.dropdown--active > .dropdown__container > .container > .row > .dropdown__content { - pointer-events: all; -} -@media all and (min-width: 991px) { - .dropdown .dropdown__container:before { - height: 0.92857143em; - width: 100%; - content: ''; - display: block; - } - .dropdown .dropdown__content.dropdown__content--md { - padding: 2.78571429em; - } - .dropdown .dropdown__content.dropdown__content--lg { - padding: 3.71428571em; - } - .dropdown .dropdown__content.dropdown__content--xlg { - padding: 4.64285714em; - } -} -@media all and (max-width: 767px) { - .dropdown .dropdown__container { - min-width: 100%; - position: relative; - display: none; - } - .dropdown .dropdown__content { - padding: 1.85714286em; - left: 0 !important; - } - .dropdown.dropdown--active > .dropdown__container { - display: block; - } -} -body.dropdowns--hover .dropdown:not(.dropdown--click):hover > .dropdown__container { - opacity: 1; -} -body.dropdowns--hover .dropdown:not(.dropdown--click):hover > .dropdown__container:before { - pointer-events: all; -} -body.dropdowns--hover .dropdown:not(.dropdown--click):hover > .dropdown__container .dropdown__content { - pointer-events: all; -} -body:not(.dropdowns--hover) .dropdown.dropdown--hover:hover > .dropdown__container { - opacity: 1; -} -body:not(.dropdowns--hover) .dropdown.dropdown--hover:hover > .dropdown__container:before { - pointer-events: all; -} -body:not(.dropdowns--hover) .dropdown.dropdown--hover:hover > .dropdown__container .dropdown__content { - pointer-events: all; -} -@media all and (max-width: 990px) { - body.dropdowns--hover .dropdown:not(.dropdown--click).dropdown--active > .dropdown__container { - display: block; - } - body.dropdowns--hover .dropdown:not(.dropdown--click).dropdown--active > .dropdown__container:before { - pointer-events: all; - } -} -@media all and (max-width: 767px) { - .dropdown.dropdown--absolute .dropdown__container { - position: absolute; - } -} -/**! 12. Form Elements **/ -form { - max-width: 100%; -} -form + form { - margin-top: 30px; -} -form:before, -form:after { - content: "."; - display: block; - height: 0; - overflow: hidden; -} -form:after { - clear: both; -} -label { - margin: 0; - font-size: 1.14285714em; - font-weight: 400; -} -input[type], -textarea, -select { - -webkit-appearance: none; - background: #fcfcfc; - padding: 0.46428571em; - border-radius: 6px; - border: 1px solid #ececec; -} -input[type]:focus, -textarea:focus, -select:focus { - outline: none; -} -input[type]:active, -textarea:active, -select:active { - outline: none; -} -input[type]::-webkit-input-placeholder, -textarea::-webkit-input-placeholder, -select::-webkit-input-placeholder { - color: #b3b3b3; - font-size: 1.14285714em; -} -input[type]:-moz-placeholder, -textarea:-moz-placeholder, -select:-moz-placeholder { - /* Firefox 18- */ - color: #b3b3b3; - font-size: 1.14285714em; -} -input[type]::-moz-placeholder, -textarea::-moz-placeholder, -select::-moz-placeholder { - /* Firefox 19+ */ - color: #b3b3b3; - font-size: 1.14285714em; -} -input[type]:-ms-input-placeholder, -textarea:-ms-input-placeholder, -select:-ms-input-placeholder { - color: #b3b3b3; - font-size: 1.14285714em; -} -input[type="image"] { - border: none; - padding: none; - width: auto; -} -textarea { - display: block; - width: 100%; - max-width: 100%; -} -select { - cursor: pointer; - padding-right: 1.85714286em; - -webkit-appearance: none; -} -select::ms-expand { - display: none; -} -input[type="submit"] { - background: none; - outline: none; - border: none; - background: #5bc0be; - padding: 0.46428571em 2.78571429em 0.46428571em 2.78571429em; - color: #fff; -} -@keyframes load { - 0% { - opacity: 0; - width: 0; - } - 50% { - width: 100%; - opacity: .8; - left: 0; - } - 100% { - left: 100%; - opacity: 0; - } -} -button { - background: none; -} -button[type="submit"].btn--loading { - position: relative; - overflow: hidden; - pointer-events: none; - color: rgba(0, 0, 0, 0); -} -button[type="submit"].btn--loading * { - opacity: 0; -} -button[type="submit"].btn--loading:after { - content: ''; - position: absolute; - width: 0; - height: 100%; - background: #ddd; - animation: load 1.5s ease-out infinite; - left: 0; - top: 0; -} -button[type="submit"].btn--loading .btn__text { - opacity: 0; -} -button:focus { - outline: none !important; -} -button.bg--error { - color: #fff; -} -.input-icon { - position: relative; -} -.input-icon i { - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; - cursor: default; - position: absolute; -} -.input-checkbox, -.input-radio, -.input-select { - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; - display: inline-block; -} -.input-checkbox input, -.input-radio input, -.input-select input { - opacity: 0 !important; - height: 0 !important; - width: 0 !important; - position: absolute !important; -} -.input-checkbox label, -.input-radio label, -.input-select label { - display: block !important; - cursor: pointer; -} -.input-checkbox { - padding: 0; -} -.input-checkbox label { - width: 1.85714286em; - height: 1.85714286em; - border-radius: 6px; - background: #000; -} -.input-radio { - padding: 0; -} -.input-radio label { - width: 1.85714286em; - height: 1.85714286em; - border-radius: 50%; - background: #000; -} -.input-select { - position: relative; -} -.input-select i { - position: absolute; - top: 50%; - transform: translateY(-50%); - -webkit-transform: translateY(-50%); - right: 1em; - font-size: .87em; -} -.input-file { - position: relative; - display: inline-block; -} -.input-file input { - display: none; -} -.form-error { - margin-top: 1.5625em; - padding: 0.78125em; - background: #D84D4D; - color: #fff; - position: fixed; - min-width: 350px; - left: 50%; - bottom: 1.5625em; - transform: translate3d(-50%, 0, 0); - -webkit-transform: translate3d(-50%, 0, 0); - z-index: 999; - box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); - box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1); -} -.form-success { - margin-top: 1.5625em; - padding: 0.78125em; - background: #1DC020; - color: #fff; - position: fixed; - min-width: 350px; - left: 50%; - bottom: 1.5625em; - transform: translate3d(-50%, 0, 0); - -webkit-transform: translate3d(-50%, 0, 0); - z-index: 999; - box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); - box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1); -} -.attempted-submit .field-error { - border-color: #D84D4D !important; -} -.attempted-submit div.recaptcha.field-error { - border-color: #D84D4D !important; - border-style: solid; - border: 1px solid; - border-radius: 5px; - padding: 5px; -} -div.recaptcha iframe { - min-height: 0; -} -/**! 13. Accordions **/ -.accordion li .accordion__title, -.accordion li .accordion__content, -.accordion li .accordion__content * { - transition: 0.3s linear; - -webkit-transition: 0.3s linear; - -moz-transition: 0.3s linear; -} -.accordion li .accordion__title { - cursor: pointer; - padding: 0.46428571em 0.92857143em; - border: 1px solid #ececec; - border-bottom: none; - background: none; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; -} -.accordion li:last-child .accordion__title { - border-bottom: 1px solid #ececec; -} -.accordion li .accordion__content { - opacity: 0; - visibility: hidden; - max-height: 0; -} -.accordion li .accordion__content > * { - display: none; -} -.accordion li .accordion__content > *:first-child { - padding-top: 0; -} -.accordion li .accordion__content > *:last-child { - padding-bottom: 0; -} -.accordion li.active .accordion__title { - background: #5bc0be; - border-bottom: 1px solid #ececec; -} -.accordion li.active .accordion__content { - opacity: 1; - visibility: visible; - max-height: 500px; -} -.accordion li.active .accordion__content > * { - display: inline-block; -} -/**! 14. Breadcrumbs **/ -.breadcrumb { - padding: 0; - margin: 0; - background: none; - display: inline-block; -} -.breadcrumb li { - font-size: 1em; -} -.breadcrumb li + li:before { - padding: 0 0.46428571em; -} -/**! 15. Pie Charts **/ -.radial { - position: relative; -} -.radial .radial__label { - position: absolute; - top: 50%; - left: 50%; - transform: translateX(-50%) translateY(-50%); - -webkit-transform: translateX(-50%) translateY(-50%); - margin-bottom: 0; -} -/**! 16. Tabs **/ -.tabs { - display: block; - margin-bottom: 0; -} -.tabs > li { - display: inline-block; - opacity: .5; - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; -} -.tabs > .active, -.tabs:hover { - opacity: 1; -} -.tabs .tab__title { - cursor: pointer; -} -.tabs .tab__title:not(.btn) { - padding: 0 1.85714286em; -} -.tabs li:first-child .tab__title:not(.btn) { - padding-left: 0; -} -.tabs .tab__content { - display: none; -} -.tabs-content { - margin-top: 1em; -} -.tabs-content li > .tab__content { - width: 100%; - display: none; -} -.tabs-content > .active > .tab__content { - display: block; -} -.tabs-container[data-content-align="left"] .tabs-content { - text-align: left; -} -@media all and (max-width: 767px) { - .tabs-content > li:not(.active) .tab__content { - display: none !important; - } -} -/**! 17. Boxes **/ -.boxed { - position: relative; - overflow: hidden; - padding: 1.85714286em; - margin-bottom: 30px; -} -.boxed.boxed--lg { - padding: 2.78571429em; -} -.boxed.boxed--sm { - padding: 1.23809524em; -} -.boxed.boxed--border { - border: 1px solid #ececec; -} -.boxed > div[class*='col-']:first-child:not(.boxed) { - padding-left: 0; -} -.boxed > div[class*='col-']:last-child:not(.boxed) { - padding-right: 0; -} -img + .boxed { - margin-top: -1.85714286em; -} -@media all and (max-width: 767px) { - .boxed { - padding: 1.23809524em; - margin-bottom: 15px; - } - .boxed.boxed--lg { - padding: 1.23809524em; - } - .boxed div[class*='col-']:not(.boxed) { - padding: 0; - } - .boxed:last-child { - margin-bottom: 15px; - } -} -/**! 18. Sliders Flickity **/ -.slides:not(.flickity-enabled) li.imagebg:not(:first-child) { - display: none; -} -.slides:not(.flickity-enabled) li.imagebg:first-child { - background: #252525; - animation: backgroundLoad .5s ease alternate infinite; -} -.slides:not(.flickity-enabled) li.imagebg:first-child .container { - opacity: 0; -} -@keyframes backgroundLoad { - 0% { - background: #252525; - } - 100% { - background: #3f3f3f; - } -} -.slider.height-10 { - height: auto; -} -.slider.height-10 .slides .flickity-slider > li { - height: 10vh; - padding: 0; -} -@media all and (min-width: 768px) { - .slider.height-10 .slides li.imagebg { - min-height: 10vh; - } -} -.slider.height-20 { - height: auto; -} -.slider.height-20 .slides .flickity-slider > li { - height: 20vh; - padding: 0; -} -@media all and (min-width: 768px) { - .slider.height-20 .slides li.imagebg { - min-height: 20vh; - } -} -.slider.height-30 { - height: auto; -} -.slider.height-30 .slides .flickity-slider > li { - height: 30vh; - padding: 0; -} -@media all and (min-width: 768px) { - .slider.height-30 .slides li.imagebg { - min-height: 30vh; - } -} -.slider.height-40 { - height: auto; -} -.slider.height-40 .slides .flickity-slider > li { - height: 40vh; - padding: 0; -} -@media all and (min-width: 768px) { - .slider.height-40 .slides li.imagebg { - min-height: 40vh; - } -} -.slider.height-50 { - height: auto; -} -.slider.height-50 .slides .flickity-slider > li { - height: 50vh; - padding: 0; -} -@media all and (min-width: 768px) { - .slider.height-50 .slides li.imagebg { - min-height: 50vh; - } -} -.slider.height-60 { - height: auto; -} -.slider.height-60 .slides .flickity-slider > li { - height: 60vh; - padding: 0; -} -@media all and (min-width: 768px) { - .slider.height-60 .slides li.imagebg { - min-height: 60vh; - } -} -.slider.height-70 { - height: auto; -} -.slider.height-70 .slides .flickity-slider > li { - height: 70vh; - padding: 0; -} -@media all and (min-width: 768px) { - .slider.height-70 .slides li.imagebg { - min-height: 70vh; - } -} -.slider.height-80 { - height: auto; -} -.slider.height-80 .slides .flickity-slider > li { - height: 80vh; - padding: 0; -} -@media all and (min-width: 768px) { - .slider.height-80 .slides li.imagebg { - min-height: 80vh; - } -} -.slider.height-90 { - height: auto; -} -.slider.height-90 .slides .flickity-slider > li { - height: 90vh; - padding: 0; -} -@media all and (min-width: 768px) { - .slider.height-90 .slides li.imagebg { - min-height: 90vh; - } -} -.slider.height-100 { - height: auto; -} -.slider.height-100 .slides .flickity-slider > li { - height: 100vh; - padding: 0; -} -@media all and (min-width: 768px) { - .slider.height-100 .slides li.imagebg { - min-height: 100vh; - } -} -.slider .slides .flickity-slider > li:not([class*='col-']) { - width: 100%; -} -.slider .slides.slides--gapless li[class*='col-'] { - padding-left: 0; - padding-right: 0; -} -.slider[data-arrows="true"].slider--arrows-hover:not(:hover) .flickity-prev-next-button { - opacity: 0; -} -.slider[data-paging="true"]:not(section) { - margin-bottom: 3.71428571em; -} -.slider[data-paging="true"]:not(section) .flickity-page-dots { - bottom: -3.71428571em; -} -.slider[data-paging="true"]:not([class*='text-']) .flickity-page-dots { - text-align: center; -} -.slider[data-children="1"] .flickity-prev-next-button { - display: none; -} -.slider:not([data-paging="true"]) .slides { - margin: 0; -} -.slider.controls--dark .flickity-page-dots .dot { - background: #252525; -} -.slider.controls--dark .flickity-prev-next-button:before { - color: #252525; -} -section.slider { - padding: 0; -} -section.slider.height-10 { - height: auto; -} -section.slider.height-10 .slides .flickity-slider > li { - height: 10vh; - padding: 0; -} -@media all and (min-width: 768px) { - section.slider.height-10 .slides li.imagebg { - min-height: 10vh; - } -} -section.slider.height-20 { - height: auto; -} -section.slider.height-20 .slides .flickity-slider > li { - height: 20vh; - padding: 0; -} -@media all and (min-width: 768px) { - section.slider.height-20 .slides li.imagebg { - min-height: 20vh; - } -} -section.slider.height-30 { - height: auto; -} -section.slider.height-30 .slides .flickity-slider > li { - height: 30vh; - padding: 0; -} -@media all and (min-width: 768px) { - section.slider.height-30 .slides li.imagebg { - min-height: 30vh; - } -} -section.slider.height-40 { - height: auto; -} -section.slider.height-40 .slides .flickity-slider > li { - height: 40vh; - padding: 0; -} -@media all and (min-width: 768px) { - section.slider.height-40 .slides li.imagebg { - min-height: 40vh; - } -} -section.slider.height-50 { - height: auto; -} -section.slider.height-50 .slides .flickity-slider > li { - height: 50vh; - padding: 0; -} -@media all and (min-width: 768px) { - section.slider.height-50 .slides li.imagebg { - min-height: 50vh; - } -} -section.slider.height-60 { - height: auto; -} -section.slider.height-60 .slides .flickity-slider > li { - height: 60vh; - padding: 0; -} -@media all and (min-width: 768px) { - section.slider.height-60 .slides li.imagebg { - min-height: 60vh; - } -} -section.slider.height-70 { - height: auto; -} -section.slider.height-70 .slides .flickity-slider > li { - height: 70vh; - padding: 0; -} -@media all and (min-width: 768px) { - section.slider.height-70 .slides li.imagebg { - min-height: 70vh; - } -} -section.slider.height-80 { - height: auto; -} -section.slider.height-80 .slides .flickity-slider > li { - height: 80vh; - padding: 0; -} -@media all and (min-width: 768px) { - section.slider.height-80 .slides li.imagebg { - min-height: 80vh; - } -} -section.slider.height-90 { - height: auto; -} -section.slider.height-90 .slides .flickity-slider > li { - height: 90vh; - padding: 0; -} -@media all and (min-width: 768px) { - section.slider.height-90 .slides li.imagebg { - min-height: 90vh; - } -} -section.slider.height-100 { - height: auto; -} -section.slider.height-100 .slides .flickity-slider > li { - height: 100vh; - padding: 0; -} -@media all and (min-width: 768px) { - section.slider.height-100 .slides li.imagebg { - min-height: 100vh; - } -} -section.slider[data-paging="true"] .flickity-page-dots { - bottom: 1.85714286em; -} -section.slider:not(.image--light)[data-paging="true"] .flickity-page-dots .dot { - background: #fff; -} -section.slider .slides { - margin: 0; -} -@media all and (max-width: 767px) { - section.slider[class*='height-'] .slides .flickity-slider > li { - height: auto; - padding: 7.42857143em 0; - } - section.slider.space--lg .slides .flickity-slider > li { - padding: 11.14285714em 0; - } - section.slider.space--xlg .slides .flickity-slider > li { - padding: 11.14285714em 0; - } -} -section.bg--dark .slider[data-paging="true"] .flickity-page-dots .dot, -section.bg--primary .slider[data-paging="true"] .flickity-page-dots .dot { - background: #fff; -} -.flickity-page-dots .dot { - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; - width: 8px; - height: 8px; - border-radius: 50%; - background: #252525; - border: none; - margin: 0 0.46428571em; -} -.flickity-page-dots .dot:hover:not(.is-selected) { - opacity: .6; -} -.text-center .flickity-page-dots, -section.slider .flickity-page-dots { - text-align: center; -} -.flickity-prev-next-button svg { - display: none; -} -.flickity-prev-next-button:before { - font-family: 'stack-interface'; - content: "\e80c"; - font-size: 1em; - font-weight: normal; -} -.flickity-prev-next-button.previous:before { - content: "\e80b"; -} -.imagebg:not(.image--light) .flickity-page-dots .dot, -.bg--dark .flickity-page-dots .dot { - background: #fff; -} -/**! 19. Hover Elements **/ -.hover-element { - position: relative; - overflow: hidden; - margin-bottom: 30px; -} -.hover-element * { - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; -} -.hover-element .hover-element__reveal { - position: absolute; - top: 0; - left: 0; - opacity: 0; - width: 100%; - height: 100%; -} -.hover-element .hover-element__reveal .boxed { - height: 100%; -} -.hover-element:hover .hover-element__reveal, -.hover-element.hover--active .hover-element__reveal { - opacity: 1; -} -.hover-element img { - margin-bottom: 0; -} -@media all and (max-width: 1024px) { - .hover-element { - cursor: pointer; - } -} -.row:last-child div[class*='col-']:last-child .hover-element { - margin-bottom: 0; -} -/**! 20. Masonry **/ -.masonry .masonry__container.masonry--active .masonry__item { - opacity: 1; - pointer-events: initial; -} -.masonry .masonry__container .masonry__item { - opacity: 0; - pointer-events: none; -} -.masonry .masonry__filters li { - display: inline-block; - cursor: pointer; - text-transform: capitalize; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; -} -.masonry .masonry__filters li.active { - cursor: default; -} -.masonry.masonry--gapless .masonry__item { - padding: 0 !important; - margin-bottom: 0; -} -/**! 21. Modals **/ -.modal-instance .modal-body { - display: none; -} -.modal-container { - transition: 0.3s linear; - -webkit-transition: 0.3s linear; - -moz-transition: 0.3s linear; - padding: 0; - visibility: hidden; - opacity: 0; - z-index: 999; - pointer-events: none; - position: fixed; - width: 100%; - height: 100%; - top: 0; - left: 0; -} -.modal-container.modal-active { - opacity: 1; - visibility: visible; - pointer-events: all; -} -.modal-container:before { - background: rgba(0, 0, 0, 0.85); - content: ''; - position: fixed; - width: 100%; - height: 100%; - top: 0; - left: 0; - z-index: 1; -} -.modal-container .modal-content { - backface-visibility: hidden; - position: fixed; - z-index: 2; - top: 50%; - left: 50%; - max-height: 100%; - overflow-y: scroll; - border: none; - transform: translate3d(-50%, -50%, 0); - -webkit-transform: translate3d(-50%, -50%, 0); - padding: 0; - border-radius: 0; - box-shadow: none; -} -.modal-container .modal-content:not(.height--natural) { - width: 50%; - height: 50%; -} -.modal-container .modal-content .modal-close-cross { - cursor: pointer; - position: absolute; - opacity: .5; - transition: 0.1s linear; - -webkit-transition: 0.1s linear; - -moz-transition: 0.1s linear; - top: 1em; - right: 1em; - z-index: 99; -} -.modal-container .modal-content .modal-close-cross:before { - content: '\00D7'; - font-size: 1.5em; -} -.modal-container .modal-content .modal-close-cross:hover { - opacity: 1; -} -.modal-container .modal-content.imagebg:not(.image--light) .modal-close-cross:before { - color: #fff; -} -.modal-container .modal-content iframe { - width: 100%; - outline: none; - border: none; - height: 100%; - backface-visibility: hidden; -} -.modal-container .modal-content iframe:first-child + .modal-close-cross:last-child { - top: -3.71428571em; -} -@media all and (max-width: 767px) { - .modal-container .modal-content { - width: 97% !important; - height: auto !important; - padding-top: 2em; - padding-bottom: 2em; - } -} -/**! 22. Maps **/ -.map-container { - position: relative; - overflow: hidden; -} -.map-container iframe, -.map-container .map-canvas { - position: absolute; - width: 100%; - height: 100%; - top: 0; -} -/**! 23. Parallax **/ -.parallax > .background-image-holder, -.parallax .slides li > .background-image-holder { - height: 100%; - min-height: 100vh; - top: -50vh; - transition: opacity 0.3s ease !important; - -webkit-transition: opacity 0.3s ease !important; - -webkit-transform-style: preserve-3d; -} -.parallax:first-child .slides li > .background-image-holder, -.parallax:first-child .background-image-holder { - top: 0; -} -.main-container > a:first-child + .parallax .background-image-holder { - top: 0; -} -@media all and (max-width: 1024px) { - .parallax > .background-image-holder, - .parallax .slides li > .background-image-holder { - -webkit-transition: transform 0.016s linear !important; - transition: transform 0.016s linear !important; - } - .parallax.parallax-disable-mobile .background-image-holder, - .parallax.parallax-disable-mobile .slides li > .background-image-holder { - top: 0 !important; - transform: none !important; - } -} -/**! 24. Notifications **/ -.notification { - max-width: 100%; - box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); - position: fixed; - z-index: 99; - pointer-events: none; - padding: 0; - margin: 1em; - opacity: 0; - transition: 0.3s linear; - -webkit-transition: 0.3s linear; - -moz-transition: 0.3s linear; -} -.notification:not([class*='bg-']) { - background: #fff; -} -.notification[class*='col-'] { - min-width: 400px; -} -.notification .notification-close-cross { - position: absolute; - top: 1em; - z-index: 99; - right: 1em; - cursor: pointer; - transition: 0.1s linear; - -webkit-transition: 0.1s linear; - -moz-transition: 0.1s linear; - opacity: .7; -} -.notification .notification-close-cross:before { - content: '\00D7'; - font-size: 1.5em; -} -.notification .notification-close-cross:hover { - opacity: 1; -} -.notification.notification--reveal { - z-index: 99; - pointer-events: initial; -} -.notification.notification--reveal[data-animation="from-bottom"] { - animation: from-bottom 0.3s linear 0s forwards; - -webkit-animation: from-bottom 0.3s linear 0s forwards; - -moz-animation: from-bottom 0.3s linear 0s forwards; -} -.notification.notification--reveal[data-animation="from-top"] { - animation: from-top 0.3s linear 0s forwards; - -webkit-animation: from-top 0.3s linear 0s forwards; - -moz-animation: from-top 0.3s linear 0s forwards; -} -.notification.notification--reveal[data-animation="from-left"] { - animation: from-left 0.3s linear 0s forwards; - -webkit-animation: from-left 0.3s linear 0s forwards; - -moz-animation: from-left 0.3s linear 0s forwards; -} -.notification.notification--reveal[data-animation="from-right"] { - animation: from-right 0.3s linear 0s forwards; - -webkit-animation: from-right 0.3s linear 0s forwards; - -moz-animation: from-right 0.3s linear 0s forwards; -} -.notification.notification--dismissed { - animation: fade-out 0.4s linear 0s forwards !important; - -webkit-animation: fade-out 0.4s linear 0s forwards !important; - -moz-animation: fade-out 0.4s linear 0s forwards !important; - pointer-events: none; -} -.bg--dark + .notification-close-cross:before { - color: #fff; -} -a[data-notification-link] { - text-decoration: none; -} -a[data-notification-link]:hover { - text-decoration: none; -} -@media all and (max-width: 767px) { - .notification[class*='col-'] { - min-width: 0; - } -} -@keyframes from-bottom { - from { - transform: translate3d(0, 100%, 0); - -webkit-transform: translate3d(0, 100%, 0); - opacity: 0; - } - to { - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); - opacity: 1; - } -} -@-moz-keyframes from-bottom { - from { - transform: translate3d(0, 100%, 0); - -webkit-transform: translate3d(0, 100%, 0); - opacity: 0; - } - to { - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); - opacity: 1; - } -} -@-webkit-keyframes from-bottom { - from { - transform: translate3d(0, 100%, 0); - -webkit-transform: translate3d(0, 100%, 0); - opacity: 0; - } - to { - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); - opacity: 1; - } -} -@keyframes from-top { - from { - transform: translate3d(0, -100%, 0); - -webkit-transform: translate3d(0, -100%, 0); - opacity: 0; - } - to { - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); - opacity: 1; - } -} -@-moz-keyframes from-top { - from { - transform: translate3d(0, -100%, 0); - -webkit-transform: translate3d(0, -100%, 0); - opacity: 0; - } - to { - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); - opacity: 1; - } -} -@-webkit-keyframes from-top { - from { - transform: translate3d(0, -100%, 0); - -webkit-transform: translate3d(0, -100%, 0); - opacity: 0; - } - to { - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); - opacity: 1; - } -} -@keyframes from-left { - from { - transform: translate3d(-100%, 0, 0); - -webkit-transform: translate3d(-100%, 0, 0); - opacity: 0; - } - to { - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); - opacity: 1; - } -} -@-moz-keyframes from-left { - from { - transform: translate3d(-100%, 0, 0); - -webkit-transform: translate3d(-100%, 0, 0); - opacity: 0; - } - to { - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); - opacity: 1; - } -} -@-webkit-keyframes from-left { - from { - transform: translate3d(-100%, 0, 0); - -webkit-transform: translate3d(-100%, 0, 0); - opacity: 0; - } - to { - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); - opacity: 1; - } -} -@keyframes from-right { - from { - transform: translate3d(100%, 0, 0); - -webkit-transform: translate3d(100%, 0, 0); - opacity: 1; - } - to { - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); - opacity: 1; - } -} -@-moz-keyframes from-right { - from { - transform: translate3d(100%, 0, 0); - -webkit-transform: translate3d(100%, 0, 0); - opacity: 0; - } - to { - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); - opacity: 1; - } -} -@-webkit-keyframes from-right { - from { - transform: translate3d(100%, 0, 0); - -webkit-transform: translate3d(100%, 0, 0); - opacity: 0; - } - to { - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); - opacity: 1; - } -} -@keyframes fade-out { - 0% { - opacity: 1; - } - 100% { - opacity: 0; - } -} -@-webkit-keyframes fade-out { - 0% { - opacity: 1; - } - 100% { - opacity: 0; - } -} -@-moz-keyframes fade-out { - 0% { - opacity: 1; - } - 100% { - opacity: 0; - } -} -/**! 25. Video **/ -iframe { - width: 100%; - min-height: 350px; - border: none; -} -@media all and (max-width: 767px) { - iframe { - min-height: 220px; - } -} -.videobg { - background: #252525; - position: relative; - overflow: hidden; -} -.videobg .container, -.videobg .background-image-holder { - opacity: 0; - transition: 0.3s linear; - -webkit-transition: 0.3s linear; - -moz-transition: 0.3s linear; -} -.videobg .background-image-holder { - opacity: 0 !important; -} -.videobg.video-active .container { - opacity: 1; -} -.videobg.video-active .loading-indicator { - opacity: 0; - visibility: hidden; -} -.videobg video { - object-fit: cover; - height: 100%; - min-width: 100%; - position: absolute; - top: 0; - z-index: 0 !important; - left: 0; -} -@media all and (max-width: 1024px) { - .videobg .background-image-holder, - .videobg .container { - opacity: 1 !important; - } - .videobg .loading-indicator { - display: none; - } - .videobg video { - display: none; - } -} -.youtube-background { - position: absolute; - height: 100%; - width: 100%; - top: 0; - z-index: 0 !important; -} -.youtube-background .mb_YTPBar { - opacity: 0; - height: 0; - visibility: hidden; -} -@media all and (max-width: 1024px) { - .youtube-background { - display: none; - } -} -.loading-indicator { - position: absolute !important; - top: 50%; - left: 50%; - z-index: 99 !important; - width: 50px; - height: 50px; - margin-top: -25px; - margin-left: -25px; - background-color: #fff; - border-radius: 100%; - -webkit-animation: loading-spinner 1s infinite ease-in-out; - animation: loading-spinner 1s infinite ease-in-out; - transition: 0.3s linear; - -webkit-transition: 0.3s linear; - -moz-transition: 0.3s linear; -} -@-webkit-keyframes loading-spinner { - 0% { - -webkit-transform: scale(0); - } - 100% { - -webkit-transform: scale(1); - opacity: 0; - } -} -@keyframes loading-spinner { - 0% { - -webkit-transform: scale(0); - transform: scale(0); - } - 100% { - -webkit-transform: scale(1); - transform: scale(1); - opacity: 0; - } -} -.video-cover { - position: relative; -} -.video-cover video { - max-width: 100%; -} -.video-cover iframe { - background: #252525; -} -.video-cover .background-image-holder { - z-index: 3; -} -.video-cover .video-play-icon { - position: absolute; - top: 50%; - left: 50%; - transform: translate3d(-50%, -50%, 0); - -webkit-transform: translate3d(-50%, -50%, 0); -} -.video-cover .video-play-icon, -.video-cover .background-image-holder { - transition: 0.3s linear; - -webkit-transition: 0.3s linear; - -moz-transition: 0.3s linear; -} -.video-cover.reveal-video .video-play-icon, -.video-cover.reveal-video .background-image-holder { - opacity: 0 !important; - pointer-events: none; -} -.video-cover[data-scrim-bottom]:before, -.video-cover[data-overlay]:before, -.video-cover[data-scrim-top]:before { - transition: 0.3s linear; - -webkit-transition: 0.3s linear; - -moz-transition: 0.3s linear; - z-index: 4; -} -.video-cover.reveal-video[data-scrim-bottom]:before, -.video-cover.reveal-video[data-overlay]:before, -.video-cover.reveal-video[data-scrim-top]:before { - opacity: 0; - pointer-events: none; -} -.video-play-icon { - width: 7.42857143em; - height: 7.42857143em; - border-radius: 50%; - position: relative; - z-index: 4; - display: inline-block; - border: 2px solid #ffffff; - cursor: pointer; - background: #ffffff; -} -.video-play-icon.video-play-icon--sm { - width: 3.71428571em; - height: 3.71428571em; -} -.video-play-icon.video-play-icon--sm:before { - border-width: 4px 0 4px 9px; -} -.video-play-icon.video-play-icon--xs { - width: 1.85714286em; - height: 1.85714286em; -} -.video-play-icon.video-play-icon--xs:before { - border-width: 3px 0 3px 6px; - margin-left: -3px; -} -.video-play-icon.bg--primary:before { - border-color: transparent transparent transparent #fff; -} -.video-play-icon:before { - position: absolute; - top: 50%; - margin-top: -5px; - left: 50%; - margin-left: -4px; - content: ''; - width: 0; - height: 0; - border-style: solid; - border-width: 6px 0 6px 12px; - border-color: transparent transparent transparent #ffffff; - border-color: transparent transparent transparent #808080; -} -.video-play-icon.video-play-icon--dark { - border-color: #252525; - background: #252525; -} -.video-play-icon.video-play-icon--dark:before { - border-color: transparent transparent transparent #252525; -} -.video-play-icon.video-play-icon--dark:before { - border-color: transparent transparent transparent #fff; -} -@media all and (max-width: 767px) { - .video-play-icon { - width: 4.95238095em; - height: 4.95238095em; - } -} -div[class*='col-'][class*='-12']:not([class*='xs-12']) .video-cover iframe { - min-height: 550px; -} -@media all and (max-width: 990px) { - div[class*='col-'][class*='-12']:not([class*='xs-12']) .video-cover iframe { - min-height: 350px; - } -} -div[class*='col-'][class*='-10'] .video-cover iframe { - min-height: 450px; -} -div[class*='col-'][class*='-8'] .video-cover iframe { - min-height: 400px; -} -div[class*='col-'][class*='-6'] .video-cover iframe { - min-height: 350px; -} -@media all and (max-width: 1200px) { - div[class*='col-'][class*='-6'] .video-cover iframe { - min-height: 300px; - } -} -@media all and (max-width: 990px) { - div[class*='col-'][class*='-6'] .video-cover iframe { - min-height: 220px; - } -} -@media all and (max-width: 767px) { - div[class*='col-'] .video-cover iframe { - min-height: 220px !important; - } -} -.modal-container video { - max-width: 100%; -} -/**! 26. Colors **/ -body { - background: #ffffff; -} -.color--primary { - color: #5bc0be !important; -} -a { - color: #5bc0be; -} -.color--primary-1 { - color: #3a506b !important; -} -.color--primary-2 { - color: #1c2541 !important; -} -.color--white { - color: #fff; -} -.color--dark { - color: #252525; -} -.color--success { - color: #4ebf56; -} -.color--error { - color: #e23636; -} -.bg--dark { - background: #252525; -} -.bg--dark:not(.nav-bar):not(.bar) { - color: #ffffff; -} -.bg--dark:not(.nav-bar):not(.bar) h1, -.bg--dark:not(.nav-bar):not(.bar) h2, -.bg--dark:not(.nav-bar):not(.bar) h3, -.bg--dark:not(.nav-bar):not(.bar) h4, -.bg--dark:not(.nav-bar):not(.bar) h5, -.bg--dark:not(.nav-bar):not(.bar) h6, -.bg--dark:not(.nav-bar):not(.bar) i, -.bg--dark:not(.nav-bar):not(.bar) span:not(.btn__text), -.bg--dark:not(.nav-bar):not(.bar) p { - color: #ffffff; -} -.bg--dark:not(.nav-bar):not(.bar) a:not(.btn) { - color: #fff; -} -.bg--site { - background: #ffffff; -} -.bg--secondary { - background: #fafafa; -} -.bg--primary { - background: #5bc0be; -} -.bg--primary p, -.bg--primary span, -.bg--primary ul, -.bg--primary a:not(.btn) { - color: #fff; -} -.bg--primary h1, -.bg--primary h2, -.bg--primary h3, -.bg--primary h4, -.bg--primary h5, -.bg--primary h6, -.bg--primary i { - color: #fff; -} -.bg--primary .color--primary { - color: #fff !important; -} -.bg--white { - background: #fff; -} -.bg--white p, -.bg--white span, -.bg--white ul, -.bg--white a:not(.btn) { - color: #666666; -} -.bg--white h1, -.bg--white h2, -.bg--white h3, -.bg--white h4, -.bg--white h5, -.bg--white h6, -.bg--white i { - color: #252525; -} -.bg--error { - background: #e23636; -} -.bg--success { - background: #4ebf56; -} -.imagebg:not(.image--light) .bg--white p, -.imagebg:not(.image--light) .bg--white span, -.imagebg:not(.image--light) .bg--white ul, -.imagebg:not(.image--light) .bg--white a:not(.btn) { - color: #666666; -} -.imagebg:not(.image--light) .bg--white h1, -.imagebg:not(.image--light) .bg--white h2, -.imagebg:not(.image--light) .bg--white h3, -.imagebg:not(.image--light) .bg--white h4, -.imagebg:not(.image--light) .bg--white h5, -.imagebg:not(.image--light) .bg--white h6, -.imagebg:not(.image--light) .bg--white i { - color: #252525; -} -.imagebg:not(.image--light) .bg--secondary { - background: rgba(250, 250, 250, 0.2); -} -.bg--primary-1 { - background: #3a506b; -} -.bg--primary-1 p, -.bg--primary-1 span, -.bg--primary-1 ul, -.bg--primary-1 a:not(.btn) { - color: #fff; -} -.bg--primary-1 h1, -.bg--primary-1 h2, -.bg--primary-1 h3, -.bg--primary-1 h4, -.bg--primary-1 h5, -.bg--primary-1 h6, -.bg--primary-1 i { - color: #fff; -} -.bg--primary-2 { - background: #1c2541; -} -.bg--primary-2 p, -.bg--primary-2 span, -.bg--primary-2 ul, -.bg--primary-2 a:not(.btn) { - color: #fff; -} -.bg--primary-2 h1, -.bg--primary-2 h2, -.bg--primary-2 h3, -.bg--primary-2 h4, -.bg--primary-2 h5, -.bg--primary-2 h6, -.bg--primary-2 i { - color: #fff; -} -.image-bg:not(.image-light) *:not(a) { - color: #fff; -} -.color--facebook { - color: #3b5998; -} -.color--twitter { - color: #00aced; -} -.color--googleplus { - color: #dd4b39; -} -.color--instagram { - color: #125688; -} -.color--pinterest { - color: #cb2027; -} -.color--dribbble { - color: #ea4c89; -} -.color--behance { - color: #053eff; -} -.bg--facebook { - background: #3b5998; - color: #fff; -} -.bg--twitter { - background: #00aced; - color: #fff; -} -.bg--googleplus { - background: #dd4b39; - color: #fff; -} -.bg--instagram { - background: #125688; - color: #fff; -} -.bg--pinterest { - background: #cb2027; - color: #fff; -} -.bg--dribbble { - background: #ea4c89; - color: #fff; -} -.bg--behance { - background: #053eff; - color: #fff; -} -/**! 27. Image Blocks **/ -.imageblock { - position: relative; - padding: 0; -} -.imageblock > .container, -.imageblock > div[class*='col-']:not(.imageblock__content) { - padding-top: 7.42857143em; - padding-bottom: 7.42857143em; - float: none; - overflow: hidden; -} -.imageblock.imageblock--lg > .container, -.imageblock.imageblock--lg > div[class*='col-']:not(.imageblock__content) { - padding-top: 9.28571429em; - padding-bottom: 9.28571429em; - float: none; - overflow: hidden; -} -.imageblock .imageblock__content { - position: absolute; - height: 100%; - top: 0; - z-index: 2; - padding: 0; -} -.imageblock .imageblock__content .slider { - position: absolute; - width: 100%; - height: 100%; - top: 0; -} -.imageblock .imageblock__content .slider .slides > li { - padding: 0; - min-height: 100%; - position: absolute !important; -} -.imageblock.allow-overflow .imageblock__content { - overflow: visible; -} -@media all and (max-height: 728px) { - .imageblock > .container, - .imageblock > div[class*='col-']:not(.imageblock__content) { - padding-top: 3.71428571em; - padding-bottom: 3.71428571em; - } -} -@media all and (max-width: 767px) { - .imageblock[class*='space-'] { - padding-bottom: 0; - padding-top: 0; - } - .imageblock .imageblock__content { - position: relative; - min-height: 18.57142857em; - } - .imageblock > .container, - .imageblock > div[class*='col-']:not(.imageblock__content) { - padding-top: 5.57142857em; - padding-bottom: 5.57142857em; - float: none; - overflow: hidden; - } - .imageblock.imageblock--lg > .container, - .imageblock.imageblock--lg > div[class*='col-']:not(.imageblock__content) { - padding-top: 5.57142857em; - padding-bottom: 5.57142857em; - float: none; - overflow: hidden; - } -} -/**! 28. MailChimp & Campaign Monitor **/ -form[action*='createsend.com'] * { - transition: 0.3s linear; - -webkit-transition: 0.3s linear; - -moz-transition: 0.3s linear; - opacity: 0; -} -form[action*='createsend.com'].form--active * { - opacity: 1; -} -form[action*='createsend.com'] .input-checkbox + br { - display: none; -} -form[action*='createsend.com'].no-labels label { - display: none; -} -form[action*='createsend.com'] br { - display: none; -} -form[action*='createsend.com'] p > label:first-child { - margin-bottom: 0.92857143em; -} -form[action*='list-manage.com'] h2 { - font-family: 'Open Sans', 'Helvetica', 'Arial', sans-serif; - color: #252525; - font-weight: 300; - font-variant-ligatures: common-ligatures; - margin-top: 0; - margin-bottom: 0; - font-size: 1.35714286em; - line-height: 1.36842105em; - margin-bottom: 1.36842105263158em; - font-weight: 400; -} -form[action*='list-manage.com'] h2.inline-block + .h4.inline-block:not(.typed-text) { - margin-left: 0.68421052631579em; -} -form[action*='list-manage.com'] .input-group ul { - overflow: hidden; -} -form[action*='list-manage.com'] .input-group ul li { - float: left; -} -form[action*='list-manage.com'] * { - transition: 0.3s linear; - -webkit-transition: 0.3s linear; - -moz-transition: 0.3s linear; - opacity: 0; -} -form[action*='list-manage.com'].form--active * { - opacity: 1; -} -form[action*='list-manage.com'].no-labels label { - display: none; -} -form[action*='list-manage.com'] .small-meta { - font-size: 0.5em; -} -/**! 29. Twitter **/ -.twitter-feed .user { - display: none; -} -.twitter-feed .interact { - display: none; -} -.twitter-feed .timePosted { - font-size: .87em; -} -/**! 30. Transitions **/ -[class*='transition--'] { - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; - opacity: 0; -} -[class*='transition--'].transition--active { - opacity: 1; -} -.transition--scale { - transform: scale(0.98); - -webkit-transform: scale(0.98); -} -.transition--scale.transition--active { - opacity: 1; - transform: scale(1); - -webkit-transform: scale(1); -} -.transition--slide { - transform: translate3d(200px, 0, 0); - -webkit-transform: translate3d(200px, 0, 0); - transform: translate3d(30vw, 0, 0); - -webkit-transform: translate3d(30vw, 0, 0); -} -.transition--slide.transition--active { - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); -} -/**! 31. Switchable Sections **/ -.switchable { - position: relative; -} -.switchable div[class*='col-']:first-child { - float: left; - right: auto; -} -.switchable div[class*='col-']:first-child:not([class*='pull']):not([class*='push']) { - left: 0; -} -.switchable div[class*='col-']:last-child { - float: right; - left: auto; -} -.switchable div[class*='col-']:last-child:not([class*='pull']):not([class*='push']) { - right: 0; -} -.switchable.switchable--switch div[class*='col-']:first-child { - float: right; - right: 0; - left: auto; -} -.switchable.switchable--switch div[class*='col-']:first-child:not([class*='pull']):not([class*='push']) { - left: auto; -} -.switchable.switchable--switch div[class*='col-']:last-child { - float: left; - left: 0; - right: auto; -} -.switchable .switchable__text { - margin-top: 3.71428571em; -} -.switchable > div[class*='col-'] { - padding: 0; -} -/**! 32. Typed Effect **/ -.typed-text { - display: inline-block; -} -.typed-text.typed-text--cursor:after { - content: '|'; - font-size: 1.2em; - -webkit-animation: blink 0.7s infinite; - animation: blink 0.7s infinite; - position: relative; - right: 6px; -} -@keyframes blink { - 0% { - opacity: 1; - } - 50% { - opacity: 0; - } - 100% { - opacity: 1; - } -} -@-webkit-keyframes blink { - 0% { - opacity: 1; - } - 50% { - opacity: 0; - } - 100% { - opacity: 1; - } -} -/**! 33. Gradient BG **/ -[data-gradient-bg] { - position: relative; - background: #252525; -} -[data-gradient-bg] > canvas { - position: absolute; - width: 100%; - height: 100%; - top: 0; - left: 0; -} -[data-gradient-bg] > canvas + .background-image-holder { - opacity: .2 !important; -} -/**! 34. Bars **/ -.bar { - padding: 1.85714286em 0; -} -.bar .logo { - margin: 0; - position: relative; - top: 4px; -} -.bar .menu-horizontal { - position: relative; - top: 6px; -} -.bar:not([class*='visible-']) + .bar { - margin-top: 0.92857143em; -} -.bar.bar--xs { - padding: 0.46428571em 0; -} -.bar.bar--sm { - padding: 0.92857143em 0; -} -.bar.bar--lg { - padding: 2.78571429em 0; -} -.bar.bar--lg .logo { - top: 0; -} -.bar.bar--xlg { - padding: 4.64285714em 0; -} -.bar.bar--xlg .logo { - top: 0; -} -.bar.bg--dark .logo-dark { - display: none; -} -.bar:not(.bg--dark):not(.bar--transparent) .logo-light { - display: none; -} -@media all and (max-width: 767px) { - .bar.bar--mobile-sticky[data-scroll-class*='fixed'].pos-fixed { - position: fixed; - width: 100%; - background: #fff; - z-index: 999; - } - .bar.bar--mobile-sticky[data-scroll-class*='fixed'] + .bar.pos-fixed { - top: 3.71428571em; - position: fixed; - width: 100%; - background: #fff; - z-index: 999; - } -} -@media all and (min-width: 991px) { - .bar__module:not(:only-child) { - display: inline-block; - } - .bar__module:not(:last-child) { - margin-right: 0.92857143em; - } - .bar--transparent:not(.bar--dark) { - background: none; - } - .bar--transparent:not(.bar--dark) .logo-dark { - display: none; - } - .bar--transparent:not(.bar--dark) .logo-light { - display: inline-block; - } - .bar--transparent:not(.bar--dark):not(.pos-fixed) .menu-horizontal > li > a, - .bar--transparent:not(.bar--dark):not(.pos-fixed) .menu-horizontal > li > span { - color: #fff; - } - .bar--transparent:not(.bar--dark):not(.pos-fixed) .btn:not([class*='primary']) { - border-color: rgba(255, 255, 255, 0.3); - } - .bar--transparent:not(.bar--dark):not(.pos-fixed) .btn:not([class*='primary']) .btn__text { - color: #fff; - } - .bar--transparent:not(.bar--dark):not(.pos-fixed) .btn:not([class*='primary']):hover { - border-color: rgba(255, 255, 255, 0.7); - } - .bar--absolute { - position: absolute; - } - .bar--absolute, - .pos-fixed { - z-index: 99; - width: 100%; - } - .bar.pos-fixed { - position: fixed; - top: 0; - animation: fadeInDown 0.3s ease-out forwards; - box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); - box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.04); - } - .bar.pos-fixed:not([class*='bg-']) { - background: #ffffff; - } - .bar.pos-fixed:not([class*='bg-']) .logo-dark { - display: inline-block; - } - .bar.pos-fixed:not([class*='bg-']) .logo-light { - display: none; - } - .bar.pos-fixed.bg--dark { - background: #252525; - } -} -@media all and (max-width: 767px) { - .bar__module { - margin-bottom: 0.92857143em; - } - .bar__module + .bar__module { - margin-top: 1.85714286em; - } - .bar__module .btn { - display: block; - } - .bar__module .btn + .btn { - margin-left: 0 !important; - } - .bar__module .btn:not(:last-child) { - margin-bottom: 0.92857143em; - } - .bar + nav.bar { - padding-top: 0; - } -} -/**! 35. Navigation InPage **/ -.page-navigator { - position: fixed; - padding: 0; - top: 50%; - transform: translateY(-50%); - right: 1.85714286em; - z-index: 10; -} -.page-navigator ul { - display: inline-block; - padding: 0.92857143em; - background: rgba(0, 0, 0, 0.4); - border-radius: 1.85714286em; - transition: all .2s ease; -} -.page-navigator ul:hover { - background: rgba(0, 0, 0, 0.6); -} -.page-navigator ul li:not(:last-child) { - margin-bottom: 1.85714286em; -} -@media all and (max-width: 767px) { - .page-navigator { - right: 0; - } - .page-navigator ul { - border-radius: 1.85714286em 0 0 1.85714286em; - padding: 1.85714286em 0.92857143em; - } -} -.page-navigator li a { - width: 8px; - height: 8px; - background: #fff; - border-radius: 50%; - transition: all .2s ease; - display: block; - position: relative; -} -.page-navigator li a:not(:hover) { - opacity: .5; -} -.page-navigator li a.inner-link--active { - opacity: 1; - animation: bulge .5s ease; - -webkit-animation: bulge .5s ease; -} -@keyframes bulge { - 0% { - transform: scale(1); - } - 50% { - transform: scale(1.3); - } - 100% { - transform: scale(1); - } -} -@-webkit-keyframes bulge { - 0% { - transform: scale(1); - } - 50% { - transform: scale(1.3); - } - 100% { - transform: scale(1); - } -} -.page-navigator li a[data-title]:before { - content: attr(data-title); - position: absolute; - right: 12px; - top: -14px; - background: #222; - color: #fff; - border-radius: 6px; - padding: 4px 8px; - display: inline-block; - transition: all .2s ease; - white-space: nowrap; -} -.page-navigator li a[data-title]:not(:hover):before { - opacity: 0; - transform: translateX(-20px); -} -/**! 36. Helper Classes **/ -.clearfix { - overflow: hidden; -} -.clearfix-after:after { - content: ""; - display: table; - clear: both; -} -.allow-overflow { - overflow: visible; -} -.container .row--gapless { - padding-left: 15px; - padding-right: 15px; -} -.container .row--gapless > div[class*='col-'] { - padding: 0; -} -@media all and (max-width: 767px) { - .text-left-xs { - text-align: left; - } -} -@media all and (max-width: 991px) { - .text-left-sm { - text-align: left; - } -} -section > .row--gapless { - padding-left: 0; - padding-right: 0; -} -section > .row--gapless > div[class*='col-'] { - padding: 0; -} -div.right { - float: right; -} -div.left { - float: left; -} -section.text-right > .container:last-child > .row:only-child > div[class*='col-']:only-child { - float: right; -} -/**! 37. Spacing **/ -section, -footer { - padding-top: 7.42857143em; - padding-bottom: 7.42857143em; -} -section.space--xxs, -footer.space--xxs { - padding-top: 1.85714286em; - padding-bottom: 1.85714286em; -} -section.space--xs, -footer.space--xs { - padding-top: 3.71428571em; - padding-bottom: 3.71428571em; -} -section.space--sm, -footer.space--sm { - padding-top: 4.95238095em; - padding-bottom: 4.95238095em; -} -section.space--md, -footer.space--md { - padding-top: 11.14285714em; - padding-bottom: 11.14285714em; -} -section.space--lg, -footer.space--lg { - padding-top: 14.85714286em; - padding-bottom: 14.85714286em; -} -section.space--xlg, -footer.space--xlg { - padding-top: 29.71428571em; - padding-bottom: 29.71428571em; -} -section.space--0, -footer.space--0 { - padding: 0; -} -section.section--even, -footer.section--even { - padding-top: 7.42857143em; - padding-bottom: 7.42857143em; -} -section.space-bottom--sm, -footer.space-bottom--sm { - padding-bottom: 4.95238095em; -} -@media all and (max-width: 767px) { - section, - footer, - section.section--even { - padding: 5.57142857em 0; - } - section.space--lg, - footer.space--lg, - section.section--even.space--lg, - section.space--md, - footer.space--md, - section.section--even.space--md { - padding: 5.57142857em 0; - } - section.space--xlg, - footer.space--xlg, - section.section--even.space--xlg { - padding: 8.35714286em 0; - } -} -div[class*='col-'] > div[class*='col-']:first-child { - padding-left: 0; -} -div[class*='col-'] > div[class*='col-']:last-child { - padding-right: 0; -} -@media all and (max-width: 767px) { - .col-xs-6:nth-child(odd) { - padding-right: 7.5px; - } - .col-xs-6:nth-child(even) { - padding-left: 7.5px; - } -} -@media all and (min-width: 768px) { - .mt--1 { - margin-top: 1.85714286em; - } - .mt--2 { - margin-top: 3.71428571em; - } - .mt--3 { - margin-top: 5.57142857em; - } - .mb--1 { - margin-bottom: 1.85714286em; - } - .mb--2 { - margin-bottom: 3.71428571em; - } - .mb--3 { - margin-bottom: 5.57142857em; - } -} -@media all and (max-width: 990px) { - .mt--1, - .mt--2 { - margin-top: 1.85714286em; - } - .mt--3 { - margin-top: 2.78571429em; - } -} -.unpad { - padding: 0; -} -.unpad--bottom { - padding-bottom: 0; -} -.unpad--top { - padding-top: 0; -} -section.unpad--bottom { - padding-bottom: 0; -} -section.unpad { - padding: 0; -} -section.unpad--top { - padding-top: 0; -} -.unmarg--bottom { - margin-bottom: 0; -} -.unmarg { - margin: 0; -} -.unmarg--top { - margin-top: 0; -} -/**! 38. Boxed Layout **/ -@media all and (min-width: 1280px) { - body.boxed-layout { - padding: 3.71428571em 0; - background: #ededed; - } - body.boxed-layout section:not([class*='bg-']):not(.imagebg), - body.boxed-layout footer:not([class*='bg-']):not(.imagebg), - body.boxed-layout nav:not([class*='bg-']):not(.bar--transparent):not(.bar--absolute), - body.boxed-layout .tabs-container:not([class*='bg-']):not(.imagebg) { - background: #ffffff; - } - body.boxed-layout .nav-container, - body.boxed-layout .main-container, - body.boxed-layout > section, - body.boxed-layout nav { - max-width: 1280px; - margin: 0 auto; - } -} -/**! 39. Wizard **/ -.wizard__body { - list-style: none; -} -.wizard__step:not(.active) { - display: none; -} -.wizard__step .wizard__title { - display: none; -} -.wizard__controls { - overflow: hidden; -} -.wizard__controls .wizard-prev { - float: left; -} -.wizard__controls .wizard-next { - float: right; -} -.wizard__controls .wizard-prev:hover, -.wizard__controls .wizard-next:hover { - transform: none !important; -} -.wizard__controls .wizard-prev.inactive, -.wizard__controls .wizard-next.inactive { - pointer-events: none; - opacity: .3; - cursor: not-allowed; -} -/**! 40. Alerts **/ -.alert { - overflow: hidden; - border: 1px solid #e6e6e6; - padding: 0.92857143em; -} -.alert .alert__body, -.alert .alert__close { - display: inline-block; - user-select: none; -} -.alert .alert__body { - float: left; -} -.alert .alert__close { - float: right; - cursor: pointer; -} -.alert.bg--error { - background: #fce8e8; - border-color: #e23636; -} -.alert.bg--error .alert__close { - color: #e23636; -} -.alert.bg--success { - background: #e4f5e5; - border-color: #4ebf56; -} -.alert.bg--success .alert__close { - color: #4ebf56; -} -.alert.bg--primary { - background: #eef9f8; - border-color: #5bc0be; -} -.alert.bg--primary .alert__body > span { - color: #666666; -} -.alert.bg--primary .alert__close { - color: #5bc0be; -} -.alert.alert--dismissed { - display: none; -} -/**! 41. Progress - Horizontal **/ -.progress-horizontal:after { - content: ""; - display: table; - clear: both; -} -.progress-horizontal .progress-horizontal__bar { - position: relative; - overflow: hidden; -} -.progress-horizontal .progress-horizontal__progress { - position: absolute; - top: 0; - left: 0; - height: 100%; -} -/**! 42. Theme Overrides **/ -/*! -- Stack Customizers -- */ -.box-shadow { - box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.04); -} -.box-shadow-shallow { - box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.06); -} -.box-shadow-wide { - box-shadow: 0 23px 40px rgba(0, 0, 0, 0.2); -} -.border--round { - border-radius: 6px; -} -.border--round:before { - border-radius: 6px; -} -.border--round .background-image-holder { - border-radius: 6px; -} -.border--round [data-scrim-top]:before, -.border--round [data-scrim-bottom]:before, -.border--round [data-overlay]:before { - border-radius: 6px; -} -.imageblock.border--round .background-image-holder { - border-radius: 6px 0 0 6px; -} -@media all and (max-width: 767px) { - .imageblock.border--round .background-image-holder { - border-radius: 6px 6px 0 0; - } -} -.theme--square .border--round, -.theme--square .btn { - border-radius: 0px; -} -.theme--bordered { - border: 0.92857143em solid #252525; -} -.main-container.transition--fade:not(.transition--active) { - cursor: wait; -} -@media all and (min-width: 1280px) { - body.boxed-layout > section.bar-3:first-of-type { - border-radius: 6px 6px 0 0; - } - body.boxed-layout .main-container > footer:last-child { - border-radius: 0 0 6px 6px; - } -} -body.boxed-layout .modal-container section:not([class*='bg-']) { - background: none; -} -/*! -- Stack Helpers -- */ -@media all and (max-width: 767px) { - .block--xs { - margin-top: 0.92857143em; - } -} -.container .container { - max-width: 100%; -} -.switchable-toggle { - cursor: pointer; - user-select: none; - -webkit-user-select: none; -} -.back-to-top { - position: fixed; - width: 3.71428571em; - height: 3.71428571em; - background: #fff; - border-radius: 50%; - text-align: center; - right: 1.85714286em; - bottom: 3.71428571em; - padding-top: 12px; - box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); - box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.04); - z-index: 99; - border: 1px solid #ececec; - transition: 0.2s ease-out; - -webkit-transition: 0.2s ease-out; - -moz-transition: 0.2s ease-out; -} -.back-to-top i { - color: #252525; -} -.back-to-top:not(.active) { - opacity: 0; - transform: translate3d(0, 20px, 0); - -webkit-transform: translate3d(0, 20px, 0); - pointer-events: none; -} -.back-to-top.active:hover { - transform: translate3d(0, -5px, 0); - -webkit-transform: translate3d(0, -5px, 0); -} -.disable-scroll-bars { - -ms-overflow-style: none; -} -.disable-scroll-bars::-webkit-scrollbar { - display: none; -} -/*! -- Stack Animations -- */ -@keyframes fadeInUp { - from { - opacity: 0; - transform: translate3d(0, 50px, 0); - -webkit-transform: translate3d(0, 50px, 0); - } - to { - opacity: 1; - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); - -webkit-font-smoothing: antialiased; - } -} -@-webkit-keyframes fadeInUp { - from { - opacity: 0; - transform: translate3d(0, 50px, 0); - -webkit-transform: translate3d(0, 50px, 0); - } - to { - opacity: 1; - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); - -webkit-font-smoothing: antialiased; - } -} -@keyframes fadeInDown { - from { - opacity: 0; - transform: translate3d(0, -100px, 0); - -webkit-transform: translate3d(0, -100px, 0); - } - to { - opacity: 1; - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); - -webkit-font-smoothing: antialiased; - } -} -@-webkit-keyframes fadeInDown { - from { - opacity: 0; - transform: translate3d(0, -100px, 0); - -webkit-transform: translate3d(0, -100px, 0); - } - to { - opacity: 1; - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); - -webkit-font-smoothing: antialiased; - } -} -@keyframes fadeOutUp { - from { - opacity: 1; - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); - } - to { - opacity: 0; - transform: translate3d(0, -50px, 0); - -webkit-transform: translate3d(0, -50px, 0); - -webkit-font-smoothing: antialiased; - } -} -@-webkit-keyframes fadeOutUp { - from { - opacity: 1; - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); - } - to { - opacity: 0; - transform: translate3d(0, -50px, 0); - -webkit-transform: translate3d(0, -50px, 0); - -webkit-font-smoothing: antialiased; - } -} -@keyframes fadeOutRight { - from { - opacity: 1; - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); - } - to { - opacity: 0; - transform: translate3d(50px, 0, 0); - -webkit-transform: translate3d(50px, 0, 0); - -webkit-font-smoothing: antialiased; - } -} -@-webkit-keyframes fadeOutRight { - from { - opacity: 1; - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); - } - to { - opacity: 0; - transform: translate3d(50px, 0, 0); - -webkit-transform: translate3d(50px, 0, 0); - -webkit-font-smoothing: antialiased; - } -} -@keyframes fadeInLeft { - from { - opacity: 0; - transform: translate3d(-50px, 0, 0); - -webkit-transform: translate3d(-50px, 0, 0); - } - to { - opacity: 1; - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); - -webkit-font-smoothing: antialiased; - } -} -@-webkit-keyframes fadeInLeft { - from { - opacity: 0; - transform: translate3d(-50px, 0, 0); - -webkit-transform: translate3d(-50px, 0, 0); - } - to { - opacity: 1; - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); - -webkit-font-smoothing: antialiased; - } -} -@keyframes pulse { - 0% { - opacity: 0; - transform: scale(1); - -webkit-transform: scale(1); - } - 50% { - opacity: 1; - } - 100% { - opacity: 0; - transform: scale(2); - -webkit-transform: scale(2); - } -} -@-webkit-keyframes pulse { - 0% { - opacity: 0; - transform: scale(1); - -webkit-transform: scale(1); - } - 50% { - opacity: 1; - } - 100% { - opacity: 0; - transform: scale(2); - -webkit-transform: scale(2); - } -} -@keyframes kenBurns { - 0% { - transform: scale(1); - } - 100% { - transform: scale(1.1); - } -} -@-webkit-keyframes kenBurns { - 0% { - transform: scale(1); - } - 100% { - transform: scale(1.1); - } -} -/*! -- Stack Sections -- */ -section:not(.unpad):not(.imagebg):not([class*='bg--']):not(.imageblock):not(.unpad--bottom):not(.border--bottom):not(.space--xxs) + section:not(.unpad):not(.imagebg):not([class*='bg--']):not(.imageblock):not(.border--bottom):not(.space--xxs) { - padding-top: 0; -} -section:not(.unpad):not(.imagebg):not([class*='bg--']):not(.imageblock):not(.unpad--bottom):not(.border--bottom) + footer:not(.unpad):not(.imagebg):not([class*='bg--']):not(.imageblock):not(.unpad--bottom):not(.border--bottom) { - padding-top: 0; -} -section:not(.imagebg):not([class*='bg-']) + section.bg--secondary { - border-top: 1px solid #ebebeb; -} -section.bg--secondary:not(.imagebg) + section:not(.imagebg):not([class*='bg-']) { - border-top: 1px solid #ebebeb; -} -section.bg--secondary:not(.unpad):not(.imageblock):not(.unpad--bottom):not(.border--bottom) + section.bg--secondary { - padding-top: 0; -} -section.bg--secondary + footer:not(.bg--dark):not(.bg--secondary) { - border-top: 1px solid #ebebeb; -} -section.bg--dark + section.bg--dark { - padding-top: 0; -} -section.bg--dark:last-of-type + footer.bg--dark { - background: #1b1b1b; -} -section.border--bottom:not([data-gradient-bg]) { - border-bottom: 1px solid #ececec; -} -section.unpad { - overflow: hidden; -} -section:not([class*='bg--']) + footer.bg--secondary { - border-top: 1px solid #ebebeb; -} -section.text-center div[class*='col-']:first-child:last-child { - margin: 0 auto; - float: none; -} -.section--overlap { - z-index: 2; - position: relative; -} -/*! -- Stack Typography -- */ -@media all and (max-width: 1024px) { - html { - font-size: 80%; - } -} -h1, -.h1 { - letter-spacing: -0.01em; -} -h1:not(:last-child), -.h1:not(:last-child) { - margin-bottom: 0.59090909090909em; -} -@media all and (min-width: 768px) { - h1.h1--large, - .h1.h1--large { - font-weight: 200; - font-size: 4.428571428571429em; - line-height: 1.048387096774194em; - } - h1.h1--large:not(:last-child), - .h1.h1--large:not(:last-child) { - margin-bottom: 0.419354838709677em; - } - h1.h1--large.type--uppercase, - .h1.h1--large.type--uppercase { - letter-spacing: 10px; - margin-right: -10px; - } - h1.h1--large + p.lead, - .h1.h1--large + p.lead { - margin-top: 2.052631578947368em; - } -} -h2, -.h2 { - margin-bottom: 0.78787878787879em; -} -h3, -.h3 { - margin-bottom: 1.04em; -} -h3 strong, -.h3 strong { - font-weight: 400; -} -blockquote { - font-family: 'Merriweather', serif; - font-style: italic; - font-weight: 300; -} -blockquote:not(:last-child) { - margin-bottom: 1.04em; -} -blockquote > p { - font-size: 1em !important; -} -h4, -.h4 { - margin-bottom: 1.36842105263158em; - font-weight: 400; -} -h4.inline-block + .h4.inline-block:not(.typed-text), -.h4.inline-block + .h4.inline-block:not(.typed-text) { - margin-left: 0.68421052631579em; -} -h5, -.h5 { - font-weight: 600; -} -h5:not(:last-child), -.h5:not(:last-child) { - margin-bottom: 1.85714286em; -} -h6, -.h6 { - font-weight: 700; -} -h6:not(:last-child), -.h6:not(:last-child) { - margin-bottom: 2.16666666666667em; -} -h6.type--uppercase, -.h6.type--uppercase { - letter-spacing: 1px; - margin-right: -1px; -} -span.h1:not(.inline-block), -span.h2:not(.inline-block), -span.h3:not(.inline-block), -span.h4:not(.inline-block), -span.h5:not(.inline-block), -span.h6:not(.inline-block) { - display: block; -} -b { - font-weight: 600; -} -hr { - border-color: #ECECEC; -} -.bg--dark hr { - border-color: #585858; -} -[class*='bg-']:not(.bg--white):not(.bg--secondary) p, -[class*='imagebg']:not(.image--light) p { - opacity: .9; -} -.lead { - font-weight: 400; - color: #808080; -} -.lead:not(:last-child) { - margin-bottom: 1.36842105263158em; -} -.lead + .btn:last-child { - margin-top: 0.92857143em; -} -p:last-child { - margin-bottom: 0; -} -p strong { - color: #252525; -} -pre { - padding: 0.92857143em; - background: #fafafa; - border: 1px solid #ececec; - border-radius: 6px; - line-height: 20px; - max-height: 500px; -} -.bg--secondary > pre { - background: #f5f5f5; - border-color: #ddd; -} -.text-block:not(:last-child) { - margin-bottom: 1.85714286em; -} -.text-block h2, -.text-block .h2 { - margin-bottom: 0.3939393939394em; -} -.text-block h5, -.text-block .h5 { - margin: 0; -} -.text-block h4:not(:last-child), -.text-block .h4:not(:last-child) { - margin-bottom: 0.3421052631579em; -} -.text-block h3, -.text-block .h3 { - margin-bottom: 0.52em; -} -@media all and (min-width: 768px) { - div[class*='col-'] .text-block + .text-block { - margin-top: 3.71428571em; - } -} -.heading-block { - margin-bottom: 3.71428571em; -} -.heading-block h1, -.heading-block h2, -.heading-block h3, -.heading-block h4, -.heading-block h5, -.heading-block h6, -.heading-block .h1, -.heading-block .h2, -.heading-block .h3, -.heading-block .h4, -.heading-block .h5, -.heading-block .h6 { - margin-bottom: 0; -} -/*! -- Stack Colours -- */ -.bg--dark .bg--secondary { - background: #343434; -} -/*! -- Stack Links -- */ -a { - color: #5bc0be; - font-weight: 700; -} -a:hover { - color: #40a8a6; - text-decoration: underline; -} -a.block { - font-weight: normal; - text-decoration: none; - color: #666666; -} -p a, -span a, -label a { - font-size: 1em; - text-decoration: underline; - font-weight: 400; - line-height: 1.85714286em; -} -p + a:not(.btn) { - font-size: 0.85714286em; - line-height: 2.16666667em; -} -.imagebg:not(.image--light) a { - color: #fff; - font-weight: 600; -} -/*! -- Stack Tables -- */ -table { - width: 100%; - border-collapse: separate; -} -table th, -table td { - padding: 0.92857143em; -} -table th { - background: #fafafa; - color: #252525; -} -table tr:not(:last-of-type) { - border-bottom: 1px solid #ececec; -} -table.border--round { - border-radius: 6px; - border: 1px solid #ececec; -} -.table--alternate-column th:nth-child(odd) { - background: none; -} -.table--alternate-column td:nth-child(even) { - background: #fafafa; -} -.table--alternate-row tbody tr:nth-child(even) { - background: #fafafa; -} -.bg--dark table.border--round { - border-radius: 6px; - border: 1px solid #3f3f3f; -} -.bg--dark table th { - background: #3f3f3f; - color: #fff; -} -.bg--dark .table--alternate-row tbody tr:nth-child(even) { - background: #323232; -} -/*! -- Stack Lists -- */ -ul:not([class*='menu']) li > a { - font-weight: normal; -} -ul:not([class*='menu']) li > a:hover { - text-decoration: none; -} -ol { - list-style-position: outside; - list-style-type: decimal; -} -ol li:not(:last-child) { - margin-bottom: 1.85714286em; -} -ol.lead li:not(:last-child) { - margin-bottom: 1.26315789473684em; -} -.list-inline { - margin-left: 0; - display: inline-block; -} -.list-inline li { - padding: 0; -} -.list-inline li:not(:last-child) { - margin-right: 1.85714286em; -} -.list-inline:not(:last-child) { - margin-right: 1.85714286em; -} -.list-inline--images img { - max-height: 2.78571429em; -} -@media all and (min-width: 768px) { - .list-inline--images li:not(:last-child) { - margin-right: 5.57142857em; - } -} -@media all and (max-width: 767px) { - .list-inline--images li:not(:last-child) { - margin-bottom: 1.85714286em; - } -} -.list--loose > li:not(:last-child) { - margin-bottom: 0.46428571em; -} -.list--hover li { - transition: 0.2s ease; - -webkit-transition: 0.2s ease; - -moz-transition: 0.2s ease; -} -.list--hover li:not(:hover) { - opacity: .6; -} -.social-list a { - color: #252525; -} -.imagebg:not(.image--light) .social-list a { - color: #fff; -} -.results-list > li > a:first-child { - display: flex; - align-items: center; - margin-bottom: 0.92857143em; -} -.results-list > li > a:first-child span { - display: inline-block; - margin-left: 0.46428571em; -} -.results-list > li > a:first-child h4 { - display: inline-block; - margin-bottom: 0; -} -.results-list > li > a:first-child:hover h4, -.results-list > li > a:first-child:hover span { - text-decoration: underline; -} -.results-list > li:not(:last-child) { - margin-bottom: 1.85714286em; - padding-bottom: 1.85714286em; - border-bottom: 1px solid rgba(0, 0, 0, 0.1); -} -@media all and (max-width: 767px) { - .list-inline:not(.social-list):not(.list-inline--images) { - display: block; - } - .list-inline:not(.social-list):not(.list-inline--images) li { - display: block; - margin: 0; - } - .list-inline:not(.social-list):not(.list-inline--images) li:not(:last-child) { - margin-bottom: 0.46428571em; - } -} -@media all and (max-width: 767px) { - .list-inline { - min-width: 100%; - } -} -.row--list span.h6 { - margin-bottom: 0; -} -.row--list span.h3:last-child { - margin-bottom: 0; -} -@media all and (max-width: 767px) { - .row--list > li { - margin-bottom: 0.92857143em; - } -} -/*! -- Stack Rules -- */ -hr:first-child { - margin-top: 0; -} -hr.short { - width: 2.78571429em; - border-color: #5bc0be; -} -hr[data-title] { - margin: 2.78571429em 0; - text-align: center; -} -hr[data-title]:before { - content: attr(data-title); - background: #ffffff; - position: relative; - bottom: 14px; - padding: 0.92857143em; - font-style: italic; -} -.bg--dark hr:not(.short), -.imagebg hr:not(.short), -.bg--primary hr:not(.short) { - opacity: .3; -} -/*! -- Stack Buttons -- */ -.btn { - position: relative; -} -.btn:not([class*='primary']) { - border-color: #d3d3d3; -} -.btn:not([class*='primary']):hover { - border-color: #252525; -} -.btn.type--uppercase { - letter-spacing: .5px; -} -.btn.type--uppercase .btn__text { - letter-spacing: .5px; - margin-right: -0.5px; -} -.btn .label { - top: -0.92857143em; - right: -3.71428571em; -} -.btn.btn--lg .btn__text { - font-weight: 600; -} -.btn.btn--lg.type--uppercase .btn__text { - letter-spacing: 1px; -} -.btn + p.type--fine-print, -.btn + span.type--fine-print { - margin-top: 1.08333333333334em; -} -.btn.block { - margin-left: 0; -} -.btn.block + .btn.block { - margin-top: 0.92857143em; -} -.btn:hover { - transform: translate3d(0, -2px, 0); - -webkit-transform: translate3d(0, -2px, 0); -} -.btn.btn--sm + .btn--sm { - margin-left: 0.92857143em; -} -p > .btn { - text-decoration: none; -} -@media all and (max-width: 767px) { - .btn:not(:last-child) { - margin-bottom: 1.85714286em; - } -} -.btn--icon { - padding-left: 5.57142857em; -} -.btn--icon i { - position: absolute; - height: 100%; - left: 0; - top: 0; - background: rgba(0, 0, 0, 0.1); - padding: 0 13px; - border-radius: 6px 0 0 6px; - font-size: 16px; - line-height: 41px; -} -.btn--icon i.socicon { - line-height: 42px; -} -.btn--cart { - width: 3.71428571em; - height: 3.71428571em; - border: 2px solid #252525; - display: block; - text-align: center; - border-radius: 6px; - opacity: .4; - padding: 0; -} -.btn--cart:hover { - opacity: 1; -} -.btn--cart .btn__text { - position: absolute; - width: 100%; - left: 0; - top: 50%; - transform: translateY(-50%); - font-size: 1.142857142857143em; -} -.imagebg:not(.image--light) .btn--icon:not([class*='bg']):not([class*='primary']) i { - color: #fff; - background: rgba(255, 255, 255, 0.2); -} -@media all and (min-width: 768px) { - .btn-group .btn { - margin-bottom: 0 !important; - margin-left: 0; - } - .btn-group .btn + .btn { - margin-left: 0; - } - .btn-group .btn:not(:first-child):not(:last-child) { - border-radius: 0; - } - .btn-group .btn:first-child { - border-radius: 6px 0 0 6px; - } - .btn-group .btn:last-child { - border-radius: 0 6px 6px 0; - } - .btn-group .btn:first-child:nth-last-child(2), - .btn-group .btn:last-child:nth-child(2) { - width: 50%; - } -} -.btn-group { - border: none; - padding: 0; -} -@media all and (max-width: 767px) { - .btn-group .btn { - display: block; - } -} -.bg--primary div:not([class*='feature']) .btn--primary { - background: #fff; - border-color: #fff; -} -.bg--primary div:not([class*='feature']) .btn--primary .btn__text { - color: #5bc0be; -} -.bg--primary > .btn--primary { - background: #fff; - border-color: #fff; -} -.bg--primary > .btn--primary .btn__text { - color: #5bc0be; -} -.bg--dark .btn:not(.btn--primary) { - border-color: #3f3f3f; -} -.bg--dark .btn:not(.btn--primary):hover { - border-color: #656565; -} -.bg--dark .btn .btn__text { - color: #fff; -} -.imagebg:not(.image--light) .btn:not([class*='primary']) { - border-color: rgba(255, 255, 255, 0.3); -} -.imagebg:not(.image--light) .btn:not([class*='primary']):hover { - border-color: #fff; -} -.imagebg.image--light .btn:not([class*='primary']) { - border-color: #252525; - background: rgba(255, 255, 255, 0.3); -} -.imagebg.image--light .btn:not([class*='primary']):hover { - background: rgba(255, 255, 255, 0.5); -} -h1 + .btn, -.h1 + .btn { - margin-top: 1.85714286em; -} -h2 + .btn, -.h2 + .btn { - margin-top: 0.92857143em; -} -/*! -- Stack Images -- */ -img:last-child { - margin-bottom: 0; -} -img.flag { - max-height: 1.85714286em; -} -img.image--sm:not(:last-child) { - margin-bottom: 0.92857143em; -} -img.promo.border--round { - border: 1px solid #ececec; -} -p.lead img { - max-height: 1.68421053em; -} -.imagebg h1, -.imagebg h2, -.imagebg h3, -.imagebg h4, -.imagebg h5, -.imagebg h6 { - position: relative; -} -.imagebg:not(.image--light) span { - color: #fff; -} -.imagebg.border--round { - overflow: hidden; -} -section.parallax .row .background-image-holder { - transform: none !important; - top: 0 !important; -} -.triptych.border--round img { - position: relative; - border-radius: 6px; - width: 33.333333%; - float: left; - margin: 0; -} -.triptych.border--round img:nth-child(2) { - transform: scale(1.2); - -webkit-transform: scale(1.2); - z-index: 2; - box-shadow: 0 23px 40px rgba(0, 0, 0, 0.2); -} -.gallery > div[class*='col-'] { - margin-bottom: 30px; -} -.gallery-1 { - overflow: hidden; - position: relative; -} -.gallery-1 .gallery__image:not(:last-child) { - margin-bottom: 30px; -} -.gallery-1 > div[class*='col-']:first-child > .gallery__image { - height: 800px; -} -.gallery-1 > div[class*='col-']:last-child > .gallery__image { - height: calc(385px); -} -.gallery__image { - position: relative; - overflow: hidden; -} -@media all and (max-width: 767px) { - .gallery-1 .gallery__image { - max-height: 300px; - margin-bottom: 15px; - } - .gallery-1 .gallery__image:not(:last-child) { - margin-bottom: 15px; - } -} -.section--ken-burns { - overflow: hidden; -} -.section--ken-burns > .background-image-holder, -.section--ken-burns > img:only-child { - animation: kenBurns 15s ease alternate infinite; - -webkit-animation: kenBurns 15s ease alternate infinite; -} -/*! -- Stack Titles -- */ -.breadcrumbs { - list-style: none; -} -.breadcrumbs li { - font-size: 0.85714285714286em; - display: inline-block; -} -.breadcrumbs li:not(:last-child) { - margin-right: 1.08333333333334em; -} -.breadcrumbs li:not(:last-child):after { - content: '\00bb'; - margin-left: 1.08333333333334em; -} -.breadcrumbs li a { - font-weight: normal; -} -.imagebg .breadcrumbs, -.bg--primary .breadcrumbs { - color: #fff; -} -.imagebg .breadcrumbs a, -.bg--primary .breadcrumbs a { - color: #fff; - font-weight: 600; -} -.elements-title { - border-top: none !important; -} -.elements-title + .tabs-container:not( :nth-last-child(2)), -.elements-title + section:not( :nth-last-child(2)) { - margin-bottom: 9.28571429em; -} -.elements-title + section:not(.imagebg):not([class*='bg-']):not(.unpad) { - padding-top: 1.85714286em; -} -/*! -- Stack Labels -- */ -.label { - display: inline-block; - font-size: 9px; - font-weight: 700; - letter-spacing: .5px; - color: #fff; - text-transform: uppercase; - height: 26px; - min-width: 65px; - padding: 0 10px; - text-align: center; - border-radius: 50px; - position: absolute; - z-index: 3; - top: 1.23809524em; - right: 1.23809524em; -} -.label:not([class*='bg--']) { - background: #3a506b; -} -.label.label--inline { - position: relative; - top: 0; - right: 0; -} -.label.label--inline:not(:last-child) { - margin-right: 0.92857143em; -} -.label.label--inline + span, -.label.label--inline + p { - position: relative; - top: 1px; -} -.label.switchable-toggle { - left: 50%; - right: auto; - transform: translate3d(-50%, 0, 0); - -webkit-transform: translate3d(-50%, 0, 0); - box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.06); -} -.bg--primary-1 .label:not([class*='bg--']) { - background: #1c2541; -} -/*! -- Stack Bars -- */ -.menu-horizontal > li, -.menu-vertical > li { - font-family: 'Open Sans', 'Roboto', 'Helvetica', Sans-Serif; -} -.bar .logo { - max-height: 1.85714286em; - max-width: none; -} -.menu-horizontal > li > a, -.menu-horizontal > li > .modal-instance > a { - font-weight: 500; -} -.menu-horizontal > li a:hover { - text-decoration: none; -} -.hamburger-toggle i { - color: #252525; -} -@media all and (min-width: 990px) { - .menu-horizontal li:not(:last-child) { - margin-right: 1.23809524em; - } - .bar__module:not(:only-child) .menu-horizontal { - top: 0; - } -} -@media all and (min-width: 768px) and (max-width: 1023px) { - .bar-2 .menu-horizontal > li, - .bar-1 .menu-horizontal > li { - display: inline-block; - } - .bar-2 .menu-horizontal > li:not(:first-child), - .bar-1 .menu-horizontal > li:not(:first-child) { - margin-left: 0.92857143em; - } - .bar-2 .bar__module, - .bar-1 .bar__module { - margin-bottom: 1.85714286em; - } - .bar-2 .row div[class*='col-']:last-child .bar__module:last-child, - .bar-1 .row div[class*='col-']:last-child .bar__module:last-child { - margin-bottom: 0; - } -} -.bar-1 .menu-horizontal > li > .dropdown__trigger, -.bar-1 .menu-horizontal > li > a { - font-size: 0.857142857142857em; - line-height: 2.166666666666667em; - text-transform: uppercase; - font-weight: 600; - letter-spacing: .5px; -} -@media all and (min-width: 1024px) { - .bar-1 .bar__module + .bar__module { - margin-left: 1.85714286em; - } -} -@media all and (min-width: 991px) { - .bar-2 .logo { - position: absolute; - left: 50%; - transform: translateX(-50%); - } -} -.bar-3 { - font-size: 0.85714286em; -} -.bar-3 .menu-horizontal { - top: 0; -} -@media all and (max-width: 990px) { - .bar-3 .menu-horizontal li { - display: inline-block; - } - .bar-3 .menu-horizontal li:not(:last-child) { - margin-right: 0.92857143em; - } -} -@media all and (min-width: 990px) { - .bar-toggle .col-md-1 .logo { - top: 10px; - } -} -@media all and (max-width: 767px) { - .bar-4 .logo-light { - display: none; - } - .bar-4 .logo-dark { - margin-bottom: 1.85714286em; - } - .bar.bg--dark { - background: #252525; - } - .bar.bg--dark .hamburger-toggle i { - color: #fff; - } -} -/*! -- Stack Alerts -- */ -.alert { - border-radius: 6px; -} -.alert:not(:last-child) { - margin-bottom: 1.85714286em; -} -.alert .alert__close { - font-size: 1.35714286em; -} -/*! -- Stack Menu Toggle -- */ -.menu-toggle { - box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); - box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.04); - width: 3.71428571em; - height: 3.71428571em; - border-radius: 50%; - text-align: center; - background: #fff; - display: inline-block; - transition: 0.2s ease; - -webkit-transition: 0.2s ease; - -moz-transition: 0.2s ease; -} -.menu-toggle i { - font-size: 1.78571429em; - position: relative; - top: 13px; - color: #252525; -} -.menu-toggle:hover { - box-shadow: 0 23px 40px rgba(0, 0, 0, 0.2); - transform: translate3d(0, -2px, 0); - -webkit-transform: translate3d(0, -2px, 0); -} -/*! -- Stack Nav Utility -- */ -.nav-utility { - padding: 0.92857143em 0; -} -.nav-utility .nav-utility__module { - font-size: 0.85714285714286em; -} -.nav-utility .nav-utility__module a { - color: #666666; - font-weight: normal; -} -.nav-utility .nav-utility__module a i { - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; - display: inline-block; -} -.nav-utility .nav-utility__module a:hover i { - transform: scale(1.5); - -webkit-transform: scale(1.5); -} -.nav-utility .nav-utility__module.right:not(:last-child) { - margin-left: 2.16666666666667em; -} -.utility-toggle { - display: inline-block; - cursor: pointer; - width: 3px; - height: 3px; - position: relative; - bottom: 8px; - border-radius: 50%; - background: #252525; -} -.utility-toggle:before, -.utility-toggle:after { - content: ''; - width: 3px; - height: 3px; - border-radius: 50%; - position: absolute; - background: #252525; -} -.utility-toggle:before { - top: 6px; -} -.utility-toggle:after { - top: 12px; -} -/*! -- Stack Nav Stacked -- */ -.bar-stacked .logo { - margin-bottom: 3.71428571em; -} -/*! -- Stack Nav Side Menu -- */ -.notification.side-menu { - z-index: 9999; - background: #ffffff; - padding-top: 1.85714286em; - margin: 0; - height: 100%; - box-shadow: 0 23px 40px rgba(0, 0, 0, 0.2); - width: 27.85714286em; -} -.notification.side-menu .side-menu__module { - overflow: hidden; - padding: 2.78571429em; -} -.notification.side-menu .side-menu__module + hr:not(:last-child) { - margin: 0; -} -.notification.side-menu .menu-vertical li a { - font-size: 1.35714286em; - line-height: 1.36842105em; -} -.notification.side-menu .menu-vertical li a:hover { - text-decoration: none; -} -.notification.side-menu .btn:not(:last-child) { - margin-bottom: 1.85714286em; -} -.notification.side-menu .btn + ul.list--loose { - margin-top: 0.92857143em; -} -.notification.side-menu .notification-close-cross { - top: 0.92857143em; - right: 2.78571429em; - margin-top: 8px; -} -.notification.side-menu .social-list:not(:first-child) { - margin-top: 1.85714286em; -} -.menu-toggle.pos-fixed { - position: fixed; - right: 5.57142857em; - animation: fadeInDown .3s ease forwards; -} -@media all and (min-width: 768px) { - .side-menu .side-menu__module span.type--fine-print { - position: relative; - top: 8px; - } -} -@media all and (max-width: 767px) { - .side-menu { - width: 100%; - } - .side-menu .side-menu__module .float-right, - .side-menu .side-menu__module .float-left { - display: block; - } -} -/*! -- Stack Nav Sidebar Column -- */ -.nav-container.nav-container--sidebar + .main-container { - width: calc(100vw - 20.428571428571463em); - float: right; -} -.nav-container.nav-container--sidebar + .main-container .container { - max-width: 100%; -} -.nav-sidebar-column { - position: fixed; - z-index: 3; - left: 0; - width: 20.42857143em; - border-right: 1px solid #ececec; - height: 100vh; - overflow-y: scroll; - -ms-overflow-style: none; - padding: 2.78571429em 1.85714286em; -} -.nav-sidebar-column:not([class*='bg-']) { - background: #ffffff; -} -.nav-sidebar-column.bg--dark { - border-right: 1px solid #3f3f3f; -} -.nav-sidebar-column::-webkit-scrollbar { - display: none; -} -.nav-sidebar-column .logo { - max-height: 2.32142857em; - margin-bottom: 0.92857143em; -} -.nav-sidebar-column .text-block > p { - margin-bottom: 0.92857143em; -} -.nav-sidebar-column .menu-vertical li.dropdown:not(:hover):after { - opacity: .35; -} -.nav-sidebar-column .menu-vertical a:hover { - text-decoration: none; -} -.nav-sidebar-column .dropdown .dropdown__container, -.nav-sidebar-column .dropdown .dropdown__content { - left: 0 !important; - position: relative; - pointer-events: all; -} -.nav-sidebar-column .dropdown .dropdown__container:before { - height: 0; -} -.nav-sidebar-column .dropdown .dropdown__content { - transform: none !important; - box-shadow: none; - -webkit-box-shadow: none; - padding-top: 0.46428571em; - padding-right: 0; - padding-left: 0.46428571em; - background: none !important; -} -.nav-sidebar-column .dropdown .menu-vertical li.dropdown:after { - right: 1.85714286em; -} -.nav-sidebar-column .dropdown:not(.dropdown--active) .dropdown__container { - display: none; -} -.nav-sidebar-column .dropdown.dropdown--hover:hover > .dropdown__container { - display: block; -} -.nav-sidebar-column .social-list { - margin-bottom: 0.92857143em; -} -body.dropdowns--hover .nav-sidebar-column .dropdown:hover > .dropdown__container { - display: block; -} -.nav-sidebar-column-toggle { - transition: all .3s ease; - left: 0; - width: 3.71428571em; - height: 3.71428571em; - background: #ffffff; - text-align: center; - position: fixed; - z-index: 4; - cursor: pointer; - border-radius: 0 0 6px 0; - box-shadow: 2px 1px 4px rgba(0, 0, 0, 0.1); -} -.nav-sidebar-column-toggle > i { - transition: all .3s ease; - font-size: 1.78571429em; - position: relative; - top: 11px; -} -.nav-sidebar-column-toggle:not(.toggled-class) > i { - opacity: .5; -} -.nav-sidebar-column-toggle.toggled-class i:before { - content: '\e80b'; -} -@media all and (max-width: 990px) { - .nav-sidebar-column { - transition: all .3s ease; - left: -20.42857143em; - box-shadow: 2px 0px 4px rgba(0, 0, 0, 0); - } - .nav-sidebar-column.active { - left: 0; - box-shadow: 2px 0px 4px rgba(0, 0, 0, 0.1); - } - .nav-sidebar-column-toggle.toggled-class { - left: 20.42857143em; - } - .nav-container.nav-container--sidebar + .main-container { - width: 100%; - float: none; - } -} -.nav-container.nav-container--right .nav-sidebar-column { - right: 0; - left: auto; -} -.nav-container.nav-container--right + .main-container { - float: left; -} -.nav-container.nav-container--right .nav-sidebar-column-toggle { - left: auto; - right: 0; - border-radius: 0 0 0 6px; - box-shadow: -2px 1px 4px rgba(0, 0, 0, 0.1); -} -@media all and (max-width: 990px) { - .nav-container.nav-container--right .nav-sidebar-column { - right: -20.42857143em; - left: auto; - } - .nav-container.nav-container--right .nav-sidebar-column.active { - left: auto; - right: 0; - box-shadow: -2px 0px 4px rgba(0, 0, 0, 0.1); - } - .nav-container.nav-container--right .nav-sidebar-column-toggle.toggled-class { - left: auto; - right: 20.42857143em; - } -} -/*! -- Stack Nav Fullscreen -- */ -.menu-fullscreen { - color: #fff; -} -.menu-fullscreen .pos-absolute { - width: 100%; -} -.menu-fullscreen a { - color: #fff; -} -.menu-fullscreen a:hover { - text-decoration: none; -} -.menu-fullscreen .social-list { - margin-right: 0; -} -.menu-fullscreen:before { - background: rgba(0, 0, 0, 0.9); -} -.menu-fullscreen .modal-content .modal-close-cross { - right: 3.71428571em; - top: 1em; -} -@media all and (max-width: 767px) { - .menu-fullscreen .pos-bottom { - position: relative; - } -} -/*! -- Stack Dropdowns -- */ -.dropdown > .dropdown__trigger:after { - font-family: "stack-interface"; - display: inline-block; - font-size: 8px; - position: relative; - bottom: 2px; -} -.dropdown > .dropdown__trigger .image--xxs { - margin-right: 0.46428571em; -} -.dropdown .dropdown__content { - border-radius: 6px; - box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.08); - -webkit-box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.08); - padding: 1.23809524em 1.85714286em; -} -.dropdown .dropdown__content h5:not(:last-child) { - margin-bottom: 0.92857143em; -} -.dropdown .dropdown__content .background-image-holder { - border-radius: 6px 0 0 6px; -} -.dropdown .dropdown__content > .pos-absolute[class*='col-'] { - left: 0; - top: 0; - height: 100%; - position: absolute !important; -} -.dropdown .dropdown__content > .pos-absolute[class*='col-'][data-overlay]:before { - border-radius: 6px 0 0 6px; -} -.menu-horizontal > .dropdown > .dropdown__trigger:after { - content: '\e80a'; - margin-left: 4px; -} -.menu-vertical > .dropdown > .dropdown__trigger { - display: inline-block; - width: 100%; -} -@media all and (max-width: 767px) { - .dropdown [class*='col-'] + [class*='col-'] { - margin-top: 0.92857143em; - } - .dropdown .dropdown__content:not([class*='bg-']) { - border: none; - box-shadow: none; - } -} -@media all and (max-width: 767px) { - .dropdown__container { - left: 0 !important; - } -} -.menu-vertical li { - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; -} -.menu-vertical li:not(:hover):not(.dropdown--active) { - opacity: .75; -} -.menu-vertical li:not(:last-child) { - margin-bottom: 0.30952381em; -} -.menu-vertical li.dropdown { - position: relative; -} -.menu-vertical li.dropdown:after { - content: '\e80c'; - font-family: 'stack-interface'; - right: 0; - top: 0; - position: absolute; - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; - display: inline-block; - transform: translate3d(-10px, 0, 0); - -webkit-transform: translate3d(-10px, 0, 0); -} -.menu-vertical li.dropdown:hover:after { - transform: translate3d(-5px, 0, 0); - -webkit-transform: translate3d(-5px, 0, 0); -} -.menu-vertical li.separate { - border-top: 1px solid #e6e6e6; - margin-top: 0.92857143em; - padding-top: 0.92857143em; -} -.menu-vertical li.separate.dropdown:after { - top: .92857143em; -} -.menu-vertical + h5 { - margin-top: 1.85714286em; -} -@media all and (max-width: 990px) { - .menu-vertical .dropdown.dropdown--active:after { - opacity: 0; - } -} -@media all and (min-width: 991px) { - .dropdown .dropdown__container:before { - height: 18px; - } -} -/*! -- Stack Twitter Feeds -- */ -.tweets-feed .interact { - display: none; -} -.tweets-feed .user a:hover { - text-decoration: none; -} -.tweets-feed .user img { - border-radius: 50%; -} -.tweets-feed-1 { - border-radius: 6px; - border: 1px solid #ececec; - overflow: hidden; -} -.tweets-feed-1 li { - overflow: hidden; - padding: 1.85714286em; - padding-bottom: 0; -} -.tweets-feed-1 li:not(:last-child) { - border-bottom: 1px solid #ececec; -} -.tweets-feed-1 .user { - width: 20%; - float: left; - margin-bottom: 0.92857143em; -} -.tweets-feed-1 .user img { - max-height: 3.71428571em; - margin-right: 0.46428571em; -} -.tweets-feed-1 .user [data-scribe="element:name"], -.tweets-feed-1 .user [data-scribe="element:screen_name"] { - display: none; -} -.tweets-feed-1 .tweet, -.tweets-feed-1 .timePosted { - width: 80%; - float: right; -} -.tweets-feed-1 .tweet { - margin-bottom: 0.46428571em; -} -.tweets-feed-1 .timePosted { - font-size: 0.85714286em; - line-height: 2.16666667em; -} -.tweets-feed-1:not(:last-child) + .btn { - margin-top: 2.78571429em; -} -.imagebg .tweets-feed-1, -.bg--dark .tweets-feed-1 { - border-color: rgba(255, 255, 255, 0.1); -} -.imagebg .tweets-feed-1 li:not(:last-child), -.bg--dark .tweets-feed-1 li:not(:last-child) { - border-color: rgba(255, 255, 255, 0.1); -} -.tweets-feed-2 .user { - display: none; -} -.tweets-feed-2 .timePosted { - display: none; -} -.tweets-feed-2 li { - overflow: hidden; -} -.tweets-feed-2 li:before { - font-family: 'socicon'; - content: "\e08d"; -} -.tweets-feed-2 li .tweet { - width: 85%; - float: right; -} -.tweets-feed.slider .user img { - display: inline-block; - clear: both; - margin-bottom: 0.92857143em; -} -.tweets-feed.slider .user [data-scribe="element:name"] { - display: none; -} -.tweets-feed.slider .user [data-scribe="element:screen_name"] { - display: block; - font-size: 1.35714286em; - line-height: 1.36842105em; - font-weight: normal; -} -.tweets-feed.slider .tweet { - margin-top: 1.36842105263158em; - margin-bottom: 0.68421052631579em; - font-size: 1.35714286em; - line-height: 1.36842105em; -} -.tweets-feed.slider .timePosted { - margin: 0; -} -.tweets-feed.slider:not(:last-child) + .btn { - margin-top: 2.78571429em; -} -/*! -- Stack Instagram -- */ -.instafeed a { - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; -} -.instafeed a:hover { - opacity: .75; -} -.instafeed:not(.instafeed--gapless) li { - padding: 0.46428571em; -} -.instafeed.instafeed--gapless li { - margin-bottom: -1px; -} -.instafeed + .btn { - margin-top: 2.78571429em; -} -.instafeed[data-grid="1"][data-amount="8"] li { - display: inline-block; - width: 12.5%; -} -.instagram { - position: relative; -} -.instagram.unpad .btn { - position: absolute; - z-index: 2; - top: 50%; - transform: translate3d(-50%, -50%, 0); - -webkit-transform: translate3d(-50%, -50%, 0); - margin: 0; -} -/*! -- Stack Cards -- */ -.card__top { - position: relative; - overflow: hidden; -} -.card__action a { - color: #666666; - text-decoration: none; - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; -} -.card__action a i { - color: #252525; - font-size: 1em; -} -.card__action a span { - position: relative; - bottom: 2px; -} -.card__action a:not(:hover) { - opacity: .5; -} -.card p a { - text-decoration: none; -} -.masonry__item .card.boxed { - margin-bottom: 0; -} -.card-1 .card__avatar { - margin-bottom: 0.92857143em; -} -.card-1 .card__avatar img { - max-height: 2.78571429em; - margin-right: 0.46428571em; - margin-bottom: 0; -} -.card-1 .card__avatar, -.card-1 .card__meta { - display: inline-block; -} -.card-1 .card__meta { - float: right; -} -.card-1 .card__body { - border-bottom: 1px solid #ececec; - padding-bottom: 0.92857143em; - margin-bottom: 0.92857143em; -} -.card-1 .card__body img { - margin-bottom: 0.92857143em; -} -.card-1 .card__body h4 { - margin-bottom: 0.342105263157895em; -} -.bg--dark .card-1 .card__body { - border-color: #3f3f3f; -} -@media all and (max-width: 767px) { - .card .list-inline:not(.social-list) li { - display: inline-block; - } - .card .list-inline:not(.social-list) li:not(:first-child) { - margin-left: 0.92857143em; - } -} -.card-2 .card__top img { - border-radius: 6px 6px 0 0; -} -.card-2 .card__body { - border-bottom: 1px solid #ececec; - padding-bottom: 1.85714286em; -} -.card-2 .card__body h4 { - margin: 0; -} -.card-2 .card__body p { - margin-top: 0.92857143em; -} -.card-2 .card__bottom { - overflow: hidden; -} -.card-2 .card__bottom > div { - display: inline-block; - width: 50%; - float: left; -} -.card-2 .card__bottom .h6 { - margin-bottom: 0.541666666666667em; -} -.card-2 .card__body, -.card-2 .card__bottom { - padding: 1.85714286em; - border: 1px solid #ececec; -} -.card-2 .card__body { - border-bottom: none; - border-top: none; -} -.card-2 .card__bottom { - border-radius: 0 0 6px 6px; - padding: 0.92857143em 1.85714286em; -} -.card-2 .card__action i { - font-size: 1.78571429em; -} -.bg--dark .card-2 .card__body, -.bg--dark .card-2 .card__bottom { - border-color: #3f3f3f; -} -/*! -- Stack Checkmarks & Crosses -- */ -.checkmark { - display: inline-block; - position: relative; - width: 1.23809524em; - height: 1.23809524em; - border-radius: 50%; - text-align: center; -} -.checkmark:not([class*='bg-']) { - background: #5bc0be; -} -.checkmark:before { - content: '\2713'; - color: #fff; - font-size: 11px; - position: absolute; - width: 100%; - left: 0; - top: -4px; -} -.checkmark.checkmark--cross:before { - content: '\2717'; -} -.checkmark:not(:last-child) { - margin-right: 13px; -} -/*! -- Stack Icons -- */ -.icon:not(.block) { - display: inline-block; -} -.icon.icon--xs { - font-size: 1.14285714285714em; -} -.text-block .icon + h4 { - margin-top: 0.6842105263158em; -} -.imagebg .icon { - color: #fff; -} -p .material-icons { - font-size: 1em; -} -p .material-icons:first-child { - margin-right: 0.30952381em; -} -.material-icons { - font-family: 'Material Icons' !important; -} -.icon-circle { - position: relative; - display: inline-block; - width: 3.71428571em; - height: 3.71428571em; - border-radius: 50%; - border: 1px solid #ececec; - background: #fafafa; - text-align: center; -} -.icon-circle i { - font-size: 24px; - position: absolute; - top: 50%; - transform: translateY(-50%); - width: 100%; - left: 0; -} -/*! -- Stack Tooltips -- */ -.tooltip { - position: relative; - top: 3px; - display: inline-block; - width: 1.23809524em; - height: 1.23809524em; - border-radius: 50%; - background: #252525; - text-align: center; - cursor: pointer; -} -.tooltip .tooltip__anchor { - color: #fff; - font-weight: 700; - font-size: 11px; - position: absolute; - top: -5px; - left: 6px; -} -.tooltip .tooltip__text { - transition: 0.2s ease; - -webkit-transition: 0.2s ease; - -moz-transition: 0.2s ease; - text-align: left; - z-index: 10; - position: absolute; - width: 280px; - background: #fafafa; - border: 1px solid #ececec; - padding: 0.61904762em; - left: 1.48571429em; - top: -0.92857143em; - opacity: 0; - pointer-events: none; - cursor: default; - box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); - box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.04); - line-height: 20px; -} -.tooltip:hover .tooltip__text { - opacity: 1; -} -.tooltip:last-child { - margin-left: 0.92857143em; -} -[data-tooltip] { - position: relative; - overflow: visible; -} -[data-tooltip]:after { - transition: all .2s ease; - content: attr(data-tooltip); - position: absolute; - top: -24px; - left: 50%; - transform: translateX(-50%); - background: #252525; - color: #fff; - border: 1px solid #e7e7e7; - padding: 2px 12px; - pointer-events: none; - white-space: nowrap; - font-size: 11px; - line-height: 18px; - font-weight: 600; - border-radius: 2px; - z-index: 2; - font-family: 'Open Sans'; -} -[data-tooltip]:not(:hover):after { - opacity: 0; -} -/*! -- Stack Boxes -- */ -.boxed { - border-radius: 6px; -} -.boxed .background-image-holder { - border-radius: 6px; -} -.boxed:before { - border-radius: 6px; -} -.boxed:not(:last-child) { - margin-bottom: 30px; -} -.boxed:not([class*='bg-']) { - background: #ffffff; -} -.boxed.bg--secondary .boxed { - background: #fafafa; -} -@media all and (min-width: 768px) { - .switchable .imagebg .boxed { - padding-left: 5.57142857em; - } -} -.bg--dark .boxed:not([class*='bg-']), -.imagebg:not(.image--light) .boxed:not([class*='bg-']) { - background: none; - color: #fff; -} -.bg--dark .boxed:not([class*='bg-']).boxed--border, -.imagebg:not(.image--light) .boxed:not([class*='bg-']).boxed--border { - border-color: #3f3f3f; -} -.bg--dark .boxed[class*='bg-'].boxed--border, -.imagebg:not(.image--light) .boxed[class*='bg-'].boxed--border { - border: none; -} -.imagebg:not(.image--light) .boxed:not(.bg--white):not(.bg--none) { - background: rgba(20, 20, 20, 0.3); -} -.imagebg:not(.image--light) .boxed:not(.bg--white):not(.bg--none).boxed--border { - border: none; -} -.imagebg:not(.image--light) .boxed:not(.bg--white):not(.bg--none) .boxed { - background: none; -} -.bg--primary .boxed:not(.imagebg) { - color: #666666; -} -.bg--primary .boxed:not(.imagebg) p { - color: #666666; -} -.bg--primary .boxed:not(.imagebg) h1, -.bg--primary .boxed:not(.imagebg) h2, -.bg--primary .boxed:not(.imagebg) h3, -.bg--primary .boxed:not(.imagebg) h4, -.bg--primary .boxed:not(.imagebg) h5, -.bg--primary .boxed:not(.imagebg) h6, -.bg--primary .boxed:not(.imagebg) .h1, -.bg--primary .boxed:not(.imagebg) .h2, -.bg--primary .boxed:not(.imagebg) .h3, -.bg--primary .boxed:not(.imagebg) .h4, -.bg--primary .boxed:not(.imagebg) .h5, -.bg--primary .boxed:not(.imagebg) .h6, -.bg--primary .boxed:not(.imagebg) i { - color: #252525; -} -.bg--primary .boxed:not(.imagebg) a { - color: #5bc0be; -} -.bg--primary .boxed:not(.imagebg) .color--primary { - color: #5bc0be !important; -} -@media all and (min-width: 768px) { - .boxed.boxed--emphasis { - transform: scale(1.075); - -webkit-transform: scale(1.075); - } -} -/*! -- Stack Features Small -- */ -.feature:not(.boxed) { - margin-bottom: 60px; -} -.feature.feature--featured:after { - content: ''; - position: absolute; - bottom: 0; - width: 100%; - height: 4px; - background: #5bc0be; - left: 0; -} -.feature h5 { - margin: 0; -} -.feature h4 { - margin-bottom: 0.342105263157895em; -} -.feature h4 + p { - max-width: 22.28571429em; -} -.feature i + h5 { - margin-top: 1.85714286em; -} -.feature i + h4 { - margin-top: 0.68421052631579em; -} -.feature i.icon--lg + h4 { - margin-top: 1.36842105263158em; -} -.feature i.icon--lg + .h5 { - margin-top: 0.92857143em; -} -.feature img + .boxed { - border-radius: 0 0 6px 6px; - border-top: none; -} -.imagebg:not(.image--light) .feature.bg--white a:not(.btn) { - color: #5bc0be; -} -.imagebg:not(.image--light) .feature.bg--white .label { - color: #fff; -} -@media all and (max-width: 767px) { - .feature .feature__body form .row { - margin-left: 0; - margin-right: 0; - } -} -section.text-center .feature-6 h4 + p { - margin: 0 auto; -} -@media all and (min-width: 768px) { - .row div[class*='col-']:nth-child(1):nth-last-child(3) .feature, - .row div[class*='col-']:nth-child(2):nth-last-child(2) .feature, - .row div[class*='col-']:nth-child(3):last-child .feature { - margin-bottom: 0; - } -} -a.block > .feature { - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; -} -a.block:hover > .feature { - box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); - box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.04); -} -.feature-1 { - min-height: 11.14285714em; -} -.feature-1 p { - margin: 0; -} -.feature-1 p.lead { - min-height: 5.05263157894737em; -} -.feature-1 > img:first-child { - border-radius: 6px 6px 0 0; -} -.feature-1 > a.block img { - border-radius: 6px 6px 0 0; -} -.feature-1 > a.block + .feature__body { - border-radius: 0 0 6px 6px; -} -.feature-1[class*='box-shadow'] { - border-radius: 6px; - transition: 0.35s ease-out; - -webkit-transition: 0.35s ease-out; - -moz-transition: 0.35s ease-out; -} -.feature-1[class*='box-shadow']:hover { - transform: translate3d(0, -10px, 0); - -webkit-transform: translate3d(0, -10px, 0); - box-shadow: 0 23px 40px rgba(0, 0, 0, 0.2); -} -.hover-shadow { - border-radius: 6px; - backface-visibility: hidden; - overflow: hidden; - border: 1px solid #ececec; - transition: 0.35s ease-out; - -webkit-transition: 0.35s ease-out; - -moz-transition: 0.35s ease-out; -} -.hover-shadow:hover { - transform: translate3d(0, -10px, 0); - -webkit-transform: translate3d(0, -10px, 0); - box-shadow: 0 23px 40px rgba(0, 0, 0, 0.2); -} -.bg--dark .hover-shadow { - border-color: #222; -} -.bg--dark .hover-shadow:hover { - box-shadow: 0 23px 40px #000000; -} -.feature-2 { - overflow: hidden; -} -.feature-2 .feature__body { - width: 75%; - float: right; -} -.feature-2 h5 { - margin-bottom: 0.46428571em; -} -.feature-2 p:last-child { - margin: 0; -} -.feature-2 i { - width: 25%; - float: left; -} -.feature-large .feature-2 + .feature-2:last-child { - margin-bottom: 0; -} -@media all and (max-width: 990px) { - .feature-2 .feature__body, - .feature-2 i { - width: 100%; - float: none; - } - .feature-2 p:first-of-type { - margin-top: 0.92857143em; - } -} -.feature-3 i { - margin-bottom: 0.16666666666667em; -} -.feature-3 p { - min-height: 7.42857143em; -} -.feature-4 .btn { - position: absolute; - width: 100%; - bottom: 0; - left: 0; - border-radius: 0; - padding: 0.92857143em; -} -.feature-4 .btn:hover { - transform: none; -} -.feature-4 p { - min-height: 9.28571429em; -} -.feature-4 p:last-of-type { - margin-bottom: 3.71428571em; -} -.feature-5 i { - width: 25%; - float: left; -} -.feature-5 .feature__body { - width: 75%; - float: right; -} -.feature-5 p { - min-height: 5.57142857em; -} -.feature-5 p:last-of-type { - margin-bottom: 0.92857143em; -} -.feature-5:not([class*='bg-']) { - color: #252525; -} -.feature-6 p { - min-height: 9.28571429em; -} -.feature-6 p:last-child { - margin: 0; -} -.feature-7 { - height: 13em; - margin-bottom: 30px; -} -.feature-7[data-overlay]:before { - border-radius: 6px; - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; -} -.feature-7[data-overlay]:hover:before { - opacity: .75; -} -.feature-7 .background-image-holder { - border-radius: 6px; -} -.feature-7 h3 { - margin: 0; -} -.row--gapless .feature-7 { - margin: 0; - border-radius: 0; -} -.row--gapless .feature-7 .background-image-holder { - border-radius: 0; -} -.row--gapless .feature-7:before { - border-radius: 0; -} -@media all and (max-width: 767px) { - .feature-7 .pos-vertical-center { - top: 50%; - transform: translate3d(0, -50%, 0); - -webkit-transform: translate3d(0, -50%, 0); - } -} -.feature-8 { - padding: 2.78571429em 0 3.71428571em 0; -} -.feature-8:not(.boxed) { - margin-bottom: 0; -} -.feature-8 .feature__body { - max-width: 70%; - margin: 0 auto; -} -.feature-8 p { - min-height: 5.57142857em; -} -@media all and (max-width: 990px) { - .feature-8 .feature__body { - max-width: 85%; - } -} -@media all and (max-width: 767px) { - .feature p { - min-height: auto; - margin-left: auto; - margin-right: auto; - } - .feature.boxed { - margin-bottom: 15px; - } - .feature:not(.boxed) { - margin-bottom: 30px; - } - .feature.feature-8 { - margin-bottom: 0; - } -} -.feature-8 img { - max-height: 14.85714286em; -} -.feature-9 h4 { - margin: 0; -} -.feature-9:not(.boxed) { - margin-bottom: 30px; -} -@media all and (min-width: 768px) { - .features-small-14 .text-block { - margin-bottom: 3.71428571em; - } - .features-small-14 h4 { - min-height: 2.736842105263158em; - } -} -/*! -- Stack Features Large -- */ -@media all and (min-width: 768px) { - .staggered div[class*='col-']:nth-child(2):last-child { - margin-top: 13em; - } - .staggered div[class*='col-']:nth-child(2):last-child:not(:last-child) { - margin-bottom: 9.28571429em; - } - .staggered div[class*='col-'] .feature:not(:last-child) { - margin-bottom: 9.28571429em; - } -} -.feature-large h4:first-child { - margin-bottom: 0.68421052631579em; -} -.feature-large .feature:not(.boxed) { - margin-bottom: 30px; -} -.feature-large .feature-3.text-center p { - margin: 0 auto; -} -.feature-large .lead + .feature-large__group { - margin-top: 3.71428571em; -} -.feature-large .feature-large__group { - overflow: hidden; -} -.feature-large-1 .lead { - margin-bottom: 2.73684210526316em; -} -@media all and (min-width: 768px) { - .feature-large-2 div[class*='col-']:first-child { - margin-top: 5.57142857em; - } - .feature-large-2 div[class*='col-']:last-child { - margin-top: 7.42857143em; - } -} -@media all and (max-width: 767px) { - .feature-large-2 img { - margin: 1.85714286em 0; - } -} -.feature-large-7.switchable .boxed div[class*='col-']:only-child { - float: none; -} -.feature-large-13 p.lead + .text-block { - margin-top: 3.71428571em; -} -.feature-large-13 div[class*='col-'] .text-block + .text-block { - margin-top: 2.78571429em; -} -@media all and (min-width: 1200px) { - .feature-large-13:not(.text-center) .text-block p { - max-width: 26em; - } -} -.feature-large-14 h5 { - margin-bottom: 0.46428571em; -} -.feature-large-14 .boxed { - margin-bottom: 0; -} -.feature-large-14 .boxed.boxed--border img { - border-radius: 6px; -} -@media all and (min-width: 768px) { - .feature-large-14.switchable .switchable__text { - margin-top: 5.57142857em; - } -} -/*! -- Stack Accordions -- */ -.accordion .accordion__title { - transition: 0.5s ease; - -webkit-transition: 0.5s ease; - -moz-transition: 0.5s ease; - opacity: .5; - margin-bottom: 0.92857143em; -} -.accordion .accordion__title:hover { - opacity: 1; -} -.accordion .accordion__title:before { - font-family: "stack-interface"; - content: '\e80d'; - margin-right: 6px; - color: #252525; -} -.accordion .accordion__title span { - display: inline-block; -} -.accordion li.active { - margin-bottom: 0.92857143em; -} -.accordion li.active .accordion__title { - opacity: 1; -} -.accordion li.active .accordion__title:before { - content: '\e80a'; -} -.accordion li.active .accordion__content { - animation: fadeUp .5s ease forwards; - -webkit-animation: fadeUp .5s ease forwards; -} -.accordion-1 li.active .accordion__title { - border-color: #5bc0be; -} -.accordion-1 li.active .accordion__title span { - color: #fff; -} -.accordion-1 li.active .accordion__title:before { - color: #fff; -} -.accordion-1 li .accordion__title { - border-radius: 6px; - border-bottom: 1px solid #ECECEC; -} -.accordion-2 li .accordion__title { - border-left: none; - border-right: none; - border-top: none; - border-bottom: 1px solid #ECECEC; - padding-left: 0; -} -.accordion-2 li.active .accordion__title { - background: none; - border-bottom: 1px solid rgba(0, 0, 0, 0); -} -.bg--dark .accordion-2 li .accordion__title, -.imagebg:not(.image--light) .accordion-2 li .accordion__title, -.bg--primary .accordion-2 li .accordion__title, -.bg--dark .accordion-1 li .accordion__title, -.imagebg:not(.image--light) .accordion-1 li .accordion__title, -.bg--primary .accordion-1 li .accordion__title { - border-color: #4b4b4b; -} -.bg--dark .accordion-2 li .accordion__title:before, -.imagebg:not(.image--light) .accordion-2 li .accordion__title:before, -.bg--primary .accordion-2 li .accordion__title:before, -.bg--dark .accordion-1 li .accordion__title:before, -.imagebg:not(.image--light) .accordion-1 li .accordion__title:before, -.bg--primary .accordion-1 li .accordion__title:before { - color: #fff; -} -.imagebg:not(.image--light) .accordion li .accordion__title, -.bg--primary .accordion li .accordion__title { - border-color: rgba(255, 255, 255, 0.3); -} -/*! -- Stack Tabs -- */ -.tabs-container.tabs--vertical { - overflow: hidden; -} -.tabs-container.tabs--vertical .tabs { - width: 25%; - float: left; -} -.tabs-container.tabs--vertical .tabs li { - display: block; -} -.tabs-container.tabs--vertical .tabs li:not(:last-child) { - border-right: none; - border-bottom: 1px solid #ECECEC; -} -.tabs-container.tabs--vertical .tabs-content { - width: 70%; - float: right; - margin-top: 0; -} -.tabs-container.tabs--vertical .tabs-content > li:not(.active) .tab__content { - animation: fadeOutUp .5s ease forwards; - -webkit-animation: fadeOutUp .5s ease forwards; -} -.tabs-container.tabs--vertical .tabs-content > li.active .tab__content { - animation: fadeInUp .5s ease forwards; - -webkit-animation: fadeInUp .5s ease forwards; - backface-visibility: hidden; -} -.tabs-container.tabs--vertical.tabs--icons .tabs { - width: 15%; - text-align: center; -} -.tabs-container.tabs--vertical.tabs--icons .tabs-content { - width: 80%; -} -@media all and (max-width: 767px) { - .tabs-container.tabs--vertical .tabs, - .tabs-container.tabs--vertical .tabs-content { - width: 100%; - float: none; - } - .tabs-container.tabs--vertical .tabs { - margin-bottom: 1.85714286em; - } - .tabs-container.tabs--vertical .tabs-content > li:not(.active) .tab__content { - animation: fadeOutRight .5s ease forwards; - -webkit-animation: fadeOutRight .5s ease forwards; - } - .tabs-container.tabs--vertical .tabs-content > li.active .tab__content { - animation: fadeInLeft .5s ease forwards; - -webkit-animation: fadeInLeft .5s ease forwards; - backface-visibility: hidden; - } -} -.tabs { - display: inline-block; - border: 1px solid #ECECEC; - border-radius: 6px; - margin-bottom: 1.85714286em; -} -.tabs li { - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; - padding: 0.92857143em 1.85714286em; -} -.tabs li:not(:last-child) { - border-right: 1px solid #ECECEC; -} -.tabs li.active { - opacity: 1; -} -.tabs li.active .tab__title { - color: #5bc0be; -} -.tabs li.active .tab__title span { - color: #5bc0be; -} -.tabs li:not(.active) { - opacity: .5; -} -.tabs li:hover { - opacity: 1; - cursor: pointer; -} -.tabs .tab__title { - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; -} -.tabs .tab__title:not(.btn) { - padding-right: 0; - padding-left: 0; -} -.tabs .tab__title i + span { - margin-top: 0.46428571em; - display: inline-block; - margin-bottom: 0; -} -.bg--primary .tabs { - border-color: #fff; -} -.bg--primary .tabs li.active .tab__title { - color: #fff; -} -.bg--primary .tabs li.active .tab__title span { - color: #fff; -} -.bg--primary .tabs li:not(:last-child) { - border-color: #fff; -} -@media all and (min-width: 768px) { - .tabs.tabs--spaced { - margin-bottom: 3.71428571em; - } -} -.tabs-content { - position: relative; -} -.tabs-content > li:not(.active) .tab__content { - position: absolute; - left: 0; - top: 0; - display: block; - opacity: 0; - pointer-events: none; - animation: fadeOutRight .5s ease forwards; - -webkit-animation: fadeOutRight .5s ease forwards; -} -.tabs-content > li.active { - animation: fadeInLeft .5s ease forwards; - -webkit-animation: fadeInLeft .5s ease forwards; - backface-visibility: hidden; -} -@media all and (max-width: 767px) { - .tabs li { - display: block; - } - .tabs li:not(:last-child) { - border-bottom: 1px solid #ECECEC; - border-right: none; - } -} -.tabs--folder .tabs { - overflow: hidden; - margin-bottom: 0; - border-radius: 6px 6px 0 0; - border-bottom: none; -} -.tabs--folder .tabs > li { - border-top: 3px solid rgba(0, 0, 0, 0); -} -.tabs--folder .tabs > li.active { - border-top: 3px solid #5bc0be; -} -.tabs--folder .tabs-content { - overflow: hidden; - position: relative; - bottom: 8px; - padding: 1.85714286em; - border: 1px solid #ECECEC; - border-radius: 0 0 6px 6px; -} -.tabs--folder .tabs-content > li:not(.active) .tab__content { - top: 1.85714286em; - left: 1.85714286em; -} -.tabs--folder .tab__title .h5 { - margin: 0; - display: inline-block; -} -.tabs--folder .tab__title .label { - position: relative; - color: #fff !important; - top: -2px; - right: 0; - margin-left: 0.46428571em; - min-width: 0; -} -/*! -- Stack Switchable Sections -- */ -.switchable .switchable__text { - margin-top: 1.85714286em; -} -.switchable [class*='col-']:first-child .switchable__text { - margin-bottom: 2.78571429em; -} -.section--overlap .row { - position: relative; - margin-top: -13em; -} -@media all and (max-width: 990px) { - .switchable .switchable__text { - margin-top: 0; - } -} -@media all and (max-width: 767px) { - .switchable .switchable__text { - margin-top: 1.85714286em; - } - .switchable .imageblock__content[class*='col-'] { - float: none !important; - } - .switchable .row > div[class*='col-'] { - float: none !important; - } - .switchable .row > div[class*='col-']:last-child:not(:only-child) { - margin-top: 1.85714286em; - } -} -/*! -- Stack CTA -- */ -.cta .btn:first-child:not(:last-child) { - margin-bottom: 1.85714286em; -} -.cta.boxed:last-child { - margin-bottom: 0; -} -@media all and (min-width: 768px) { - .cta--horizontal h4, - .cta--horizontal .lead, - .cta--horizontal .btn { - margin: 0; - } - .cta--horizontal h4, - .cta--horizontal .lead { - position: relative; - top: 4px; - } - .bg--dark .cta-1 > div[class*='col-']:last-child, - .imagebg .cta-1 > div[class*='col-']:last-child { - border-left: none; - } -} -@media all and (min-width: 1200px) { - .cta-1.boxed--border { - padding: 0; - } - .cta-1 > div[class*='col-'] { - padding: 1.23809524em 15px; - } - .cta-1 > div[class*='col-']:last-child { - border-left: 1px solid #ECECEC; - } -} -@media all and (max-width: 990px) { - .cta-1 { - text-align: center; - } - .cta-1 > div[class*='col-'] { - padding-left: 0; - padding-right: 0; - } - .cta-1 > div[class*='col-']:not(:last-child) { - margin-bottom: 0.92857143em; - } - .cta-1 > div[class*='col-']:last-child { - margin-top: 1.85714286em; - } -} -@media all and (max-width: 767px) { - .cta .lead { - margin: 1.36842105263158em 0; - } -} -.cta-2 { - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; -} -.cta-2 h2 { - margin: 1.57575757575758em 0; -} -.cta-2.bg--primary:hover { - background: #66c4c2; -} -.cta-2:hover { - background: #ffffff; -} -@media all and (min-width: 768px) { - .cta-3 .switchable__text { - margin-top: 5.57142857em; - } -} -/*! -- Stack Videos -- */ -.video-play-icon:before { - border-color: transparent transparent transparent #252525; - margin-top: -3px; -} -.modal-instance .video-play-icon + span { - position: relative; - display: inline-block; - margin-left: 0.92857143em; - white-space: nowrap; - bottom: 22px; -} -.modal-instance .video-play-icon.video-play-icon--xs + span { - bottom: 8px; - margin-left: 0.46428571em; -} -.video-cover { - background: #252525; -} -.video-cover.border--round { - overflow: hidden; -} -.video-cover.border--round iframe { - border-radius: 6px; -} -.video-cover:not(:last-child) { - margin-bottom: 1.85714286em; -} -.video-cover + span.h4 + span { - display: inline-block; - margin-left: 0.92857143em; -} -.video-cover .video-play-icon { - transition: 0.2s ease-out; - -webkit-transition: 0.2s ease-out; - -moz-transition: 0.2s ease-out; -} -.video-cover .video-play-icon:hover { - box-shadow: 0 23px 40px rgba(0, 0, 0, 0.2); - transform: translate3d(-50%, -52%, 0); - -webkit-transform: translate3d(-50%, -52%, 0); -} -.imagebg .video-cover .video-play-icon { - z-index: 10; -} -@media all and (min-width: 768px) { - h2 + .video-cover { - margin-top: 3.71428571em; - } -} -@media all and (min-width: 768px) { - .video-1 .video-play-icon { - margin-right: 1.85714286em; - } - .video-1 h2 { - display: inline-block; - position: relative; - bottom: 14px; - } - div[class*='col-sm-6'] .video-1 h2 { - bottom: 0; - display: block; - } - div[class*='col-sm-6'] .video-1 .video-play-icon { - margin-bottom: 0.46428571em; - } -} -.video-1 h2 { - margin: 0; -} -.imageblock__content .modal-instance { - position: absolute; - top: 50%; - left: 50%; - transform: translate3d(-50%, -50%, 0); - -webkit-transform: translate3d(-50%, -50%, 0); -} -/*! -- Stack Modals -- */ -.modal-container .modal-content:not(.height--natural) { - height: auto; - width: auto; -} -.modal-instance:not(.block) { - display: inline-block; -} -.modal-instance.block > .btn { - display: block; -} -@media all and (min-width: 768px) { - .modal-instance + span:last-child { - display: inline-block; - margin-left: 0.92857143em; - } -} -.modal-container .modal-content { - max-height: 95%; - transform: translateX(-50%) translateY(-50%); - -webkit-transform: translateX(-50%) translateY(-50%); -} -.modal-container .modal-content .feature:only-child { - margin-bottom: 0; -} -.modal-container .modal-content .feature:only-child .boxed { - margin-bottom: 0; -} -.modal-container .modal-content .imagebg:not(.image--light) .modal-close-cross:before { - color: #fff; -} -@media all and (max-width: 767px) { - .modal-container .modal-content > .modal-close-cross { - top: 3em; - background: #222; - width: 2em; - height: 2em; - text-align: center; - border-radius: 50%; - color: #fff; - } -} -.modal-content { - -ms-overflow-style: none; -} -.modal-content::-webkit-scrollbar { - display: none; -} -/*! -- Stack Notifications -- */ -.notification { - margin: 1.85714286em; - box-shadow: none; -} -.notification:not([class*='bg--']) { - background: none; -} -.notification > .boxed { - margin: 0; -} -.notification > .feature, -.notification .feature__body { - margin-bottom: 0; -} -.search-box { - width: 100%; - margin: 0; - padding: 1.85714286em; - box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); - box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.04); -} -.search-box.notification--reveal { - z-index: 9999; -} -.search-box .notification-close-cross { - top: 2.32142857em; - right: 1.85714286em; -} -.notification-close-cross.notification-close-cross--circle { - background: #222; - width: 2em; - height: 2em; - text-align: center; - border-radius: 50%; - color: #fff; -} -/*! -- Stack Loader -- */ -.loader { - border: 3px solid #5bc0be; - border-radius: 30px; - height: 30px; - left: 50%; - margin: -15px 0 0 -15px; - opacity: 0; - position: fixed; - z-index: 10; - top: 50%; - width: 30px; - animation: pulsate 0.7s ease-out infinite; -} -.loader.loader--fade { - opacity: 0; - animation: none; -} -@keyframes pulsate { - 0% { - transform: scale(0.1); - opacity: 0.0; - } - 50% { - opacity: 1; - } - 100% { - transform: scale(1.2); - opacity: 0; - } -} -/*! -- Stack Lightboxes -- */ -.lb-close { - position: relative; - top: 10px; -} -.lb-close:before { - content: '\00D7'; - color: #fff; - font-size: 2.5em; - font-weight: 400; -} -.lb-close:hover { - text-decoration: none; -} -.lb-prev:after, -.lb-next:after { - font-family: 'stack-interface'; - position: fixed; -} -.lb-prev:after { - content: '\e801'; - left: 1.85714286em; -} -.lb-next:after { - content: '\e802'; - right: 1.85714286em; -} -.lb-data { - overflow: hidden; - min-height: 30px; -} -a[data-lightbox] { - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; -} -a[data-lightbox]:hover { - opacity: .8; - cursor: zoom-in; -} -/*! -- Stack Covers -- */ -.cover .typed-headline { - margin-bottom: 3.71428571em; -} -.cover .typed-headline .type--bold { - font-weight: 400; -} -.cover .triptych { - margin-top: 3.71428571em; -} -.cover .btn + .modal-instance { - margin-top: 1.85714286em; -} -.cover h3 + form, -.cover .h3 + form { - margin-top: 2.78571429em; -} -.cover .lead + .boxed { - margin-top: 3.71428571em; -} -.cover.unpad--bottom { - overflow: hidden; -} -.cover .modal-instance.block:not(:first-child):not(:last-child) { - margin: 2.78571429em 0; -} -.cover .pos-bottom { - margin-bottom: 1.85714286em; -} -@media all and (min-width: 768px) { - .cover .row .row:last-child { - margin-top: 5.57142857em; - } -} -@media all and (max-width: 767px) { - .cover .pos-bottom.pos-absolute { - position: relative; - margin-top: 1.85714286em; - } -} -@media all and (max-width: 990px) { - .cover .mt--3 { - margin-top: 0; - } -} -@media all and (min-width: 768px) { - .cover .triptych { - margin-top: 7.42857143em; - } -} -.cover-fullscreen { - min-height: 100vh; -} -.cover-fullscreen.slider[data-paging="true"] .slides .flickity-slider > li { - height: 100vh; -} -.cover-fullscreen.slider[data-paging="true"] .pos-bottom { - bottom: 5.57142857em; - width: 100%; -} -.cover-fullscreen.slider[data-paging="true"] h4 { - margin: 0; -} -.cover-slider { - overflow: hidden; -} -.cover-slider .slider { - position: relative; - width: 100%; - pointer-events: none; -} -.cover-slider .slider:nth-child(1) { - transform: translateY(-30%); -} -.cover-slider .slider:nth-child(2) { - transform: translateY(-25%); -} -.cover-slider .slider:nth-child(3) { - transform: translateY(-20%); -} -.cover-slider .slider .slide { - opacity: .05; -} -.cover-slider .typed-headline { - margin: 0; -} -.cover-slider .typed-headline + .btn { - margin-top: 0.92857143em; -} -.cover-slider .slider-container { - transform: rotateZ(-30deg) translateY(-10%); - -webkit-transform: rotateZ(-30deg) translateY(-10%); - position: absolute; - width: 100%; - height: 100%; - top: 0; -} -@media all and (min-width: 768px) { - .cover-slider + .cta-4 { - position: absolute; - background: none; - color: #fff; - border-bottom: none !important; - width: 100%; - transform: translate3d(0, -100%, 0); - -webkit-transform: translate3d(0, -100%, 0); - } - .cover-slider + .cta-4 a { - color: #fff; - font-weight: 600; - } -} -.cover-features.space--lg { - padding-bottom: 3.71428571em; -} -.cover-features .row:nth-child(2) { - margin-top: 11.14285714em; -} -@media all and (max-width: 767px) { - .cover-features.space--lg { - padding-bottom: 1.85714286em; - } - .cover-features .row:nth-child(2) { - margin-top: 3.71428571em; - } -} -/*! -- Stack Processes -- */ -.process-1 { - padding: 3.71428571em 0; - position: relative; - overflow: hidden; -} -.process-1 .process__item { - width: 50%; -} -.process-1 .process__item:not(:last-child) { - margin-bottom: 1.85714286em; -} -.process-1:before { - content: ''; - position: absolute; - width: 2px; - height: 100%; - left: 50%; - top: 0; - background: #5bc0be; -} -.process__item { - position: relative; -} -.process__item:after { - content: ''; - width: 1.85714286em; - height: 1.85714286em; - background: #fff; - border: 2px solid #5bc0be; - border-radius: 50%; - position: absolute; - top: 0; - margin-left: 1px; -} -@media all and (min-width: 768px) { - .process-1 .process__item:nth-child(odd) { - text-align: right; - padding-right: 3.71428571em; - } - .process-1 .process__item:nth-child(odd):after { - right: -0.92857143em; - } - .process-1 .process__item:nth-child(even) { - margin-left: 50%; - padding-left: 3.71428571em; - } - .process-1 .process__item:nth-child(even):after { - left: -0.92857143em; - } -} -@media all and (max-width: 767px) { - .process-1:before, - .process-2:before { - left: 0.92857143em; - } - .process-1 .process__item, - .process-2 .process__item { - width: 100%; - padding-left: 3.71428571em; - } - .process-1 .process__item:after, - .process-2 .process__item:after { - left: 0; - } -} -.bg--dark .process-1:before, -.imagebg .process-1:before, -.bg--dark .process-2:before, -.imagebg .process-2:before { - background: #fff; -} -.bg--dark .process-1 .process__item:after, -.imagebg .process-1 .process__item:after, -.bg--dark .process-2 .process__item:after, -.imagebg .process-2 .process__item:after { - background: #fff; -} -.bg--dark .process-1 .process__item:after, -.bg--dark .process-2 .process__item:after { - border-color: #252525; -} -.process-2 { - position: relative; -} -.process-2 .process__item { - padding-top: 3.71428571em; -} -.process-2 .process__item:after { - display: inline-block; - text-align: center; -} -.process-2:before { - content: ''; - position: absolute; - width: 100%; - height: 2px; - top: 0.92857143em; - left: 0; - background: #5bc0be; -} -@media all and (max-width: 767px) { - .process-2:before { - height: 100%; - width: 2px; - left: 1.85714286em; - margin-left: 2px; - } - .process-2 .process__item:after { - top: 3.71428571em; - } -} -.process-3 { - list-style: none; - position: relative; -} -.process-3 li { - position: relative; - z-index: 1; - overflow: hidden; -} -.process-3 li .process__number { - float: left; - width: 15%; - width: 3.71428571em; - height: 3.71428571em; - border-radius: 50%; - border: 2px solid #5bc0be; - background: #fff; - text-align: center; -} -.process-3 li .process__number span { - font-size: 1.35714286em; - font-weight: bold; - color: #5bc0be; - position: relative; - top: 12px; -} -.process-3 li .process__body { - width: 80%; - float: right; -} -.process-3 li .process__body h4 { - margin-bottom: 0.342105263157895em; -} -.process-3 li:not(:last-child) { - margin-bottom: 3.71428571em; -} -.process-3:before { - content: ''; - position: absolute; - height: 100%; - width: 1px; - left: 1.85714286em; - top: 0; - border-left: 1px dashed #ddd; -} -.bg--dark .process-3 li .process__number { - background: #252525; -} -.bg--dark .process-3:before { - border-color: #aaa; -} -.process-stepper > li { - transition: all .3s ease; - display: inline-block; - float: left; - text-align: center; - position: relative; -} -.process-stepper > li:before { - transition: all .3s ease; - content: ''; - width: 0.92857143em; - height: 0.92857143em; - background: #ccc; - border-radius: 50%; - display: block; - margin: 0 auto; - margin-bottom: 0.92857143em; -} -.process-stepper > li:after { - transition: all .3s ease; - content: ''; - width: 100%; - height: 2px; - position: absolute; - background: #ccc; - top: 5px; - left: 0; -} -.process-stepper > li:first-child:after, -.process-stepper > li:last-child:after { - width: 50%; -} -.process-stepper > li:first-child:after { - left: 50%; -} -.process-stepper > li.active:before, -.process-stepper > li.active:after { - background: #5bc0be; -} -.process-stepper > li > span { - cursor: default; -} -.process-stepper[data-process-steps="6"] > li { - width: 16.666666666666667%; -} -.process-stepper[data-process-steps="5"] > li { - width: 20%; -} -.process-stepper[data-process-steps="4"] > li { - width: 25%; -} -.process-stepper[data-process-steps="3"] > li { - width: 33.33333333%; -} -.process-stepper[data-process-steps="2"] > li { - width: 50%; -} -.bg--dark .process-stepper li:not(.active):before, -.bg--dark .process-stepper li:not(.active):after { - background: #585858; -} -/*! -- Stack Typed Text -- */ -span + .typed-text.h2 { - margin-left: 4px; -} -span + .typed-text.h1 { - margin-left: 6px; -} -@media all and (max-width: 767px) { - .typed-text { - display: block; - } - .typed-headline { - margin-bottom: 1.85714286em; - } - .typed-headline h1, - .typed-headline .h1 { - margin-bottom: 0; - } -} -/*! -- Stack Forms -- */ -.bg--dark input, -.imagebg:not(.image--light) input, -.bg--dark textarea, -.imagebg:not(.image--light) textarea, -.bg--dark select, -.imagebg:not(.image--light) select, -.bg--dark .input-select:after, -.imagebg:not(.image--light) .input-select:after { - color: #666666; -} -.bg--dark label, -.imagebg:not(.image--light) label { - color: #fff; -} -.bg--dark form.attempted-submit input.field-error { - background: #D84D4D; - color: #fff; -} -form { - position: relative; -} -form > div[class*='col-']:not(:last-child), -form > .row > div[class*='col-']:not(:last-child) { - margin-bottom: 0.92857143em; -} -form .boxed:last-child { - margin: 0; -} -form.form--clearfix { - margin-left: -15px; -} -@media all and (min-width: 768px) { - div[class*='col-'] > form div[class*='col-']:last-child:nth-child(2) { - padding-right: 0; - } - div[class*='col-'] > form div[class*='col-']:first-child:nth-last-child(2) { - padding-left: 0; - } - form.form--horizontal > div[class*='col-'] { - margin: 0; - } -} -@media all and (max-width: 767px) { - .row form > .row { - margin-left: 0; - margin-right: 0; - } -} -h2 + form, -.h2 + form { - margin-top: 2.78571429em; -} -h3 + form, -.h3 + form, -.lead + form { - margin-top: 2.78571429em; -} -.cover .lead + form { - margin-top: 3.71428571em; -} -form + span.type--fine-print { - margin-top: 1.08333333333334em; - display: inline-block; -} -.form--inline > span.h4 { - color: #666666; -} -.form--inline input, -.form--inline [class*='input-'] { - display: inline-block; - max-width: 200px; -} -.form--inline > span:not(:last-child), -.form--inline input:not(:last-child), -.form--inline [class*='input-']:not(:last-child) { - margin-right: 0.92857143em; -} -.form--inline button { - max-width: 200px; -} -.bg--dark .form--inline > span.h4, -.imagebg:not(.image--light) .form--inline > span.h4 { - color: #fff; -} -button, -input[type="submit"] { - height: 3.25000000000001em; -} -button.btn, -input[type="submit"].btn { - font-size: 0.85714286em; - font-weight: 700; - padding-left: 0; - padding-right: 0; -} -button.btn.btn--primary, -input[type="submit"].btn.btn--primary { - color: #fff; -} -button.btn.type--uppercase, -input[type="submit"].btn.type--uppercase { - letter-spacing: .5px; - margin-right: -0.5px; -} -button.checkmark.checkmark--cross, -input[type="submit"].checkmark.checkmark--cross { - width: 1.85714286em; - height: 1.85714286em; - border: none; - background: #e23636; -} -button.checkmark.checkmark--cross:before, -input[type="submit"].checkmark.checkmark--cross:before { - content: '\00d7'; - font-size: 18px; - top: -1px; -} -button[type="submit"].btn--loading:after, -input[type="submit"][type="submit"].btn--loading:after { - background: #5bc0be; -} -.bg--primary button.btn { - border-color: rgba(255, 255, 255, 0.5); - color: #fff; -} -.bg--primary button.btn:hover { - border-color: #fff; -} -.bg--primary button.btn.btn--primary { - color: #5bc0be; - border-color: #5bc0be; -} -.bg--primary button.btn.btn--primary-1 { - border-color: #3a506b; -} -input, -select { - height: 2.78571429em; -} -input.field-error { - border-color: #EBA8A8; -} -input[type] + input[type], -input[type] + .input-checkbox, -input[type] + button, -input[type] + .input-select { - margin-top: 0.92857143em; -} -input, -[class*='input-'] label, -select, -textarea { - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; -} -input:not([class*='col-']), -select:not([class*='col-']), -.input-select:not([class*='col-']), -textarea:not([class*='col-']), -button[type="submit"]:not([class*='col-']) { - width: 100%; -} -input[type], -select, -textarea { - padding-left: 0.92857143em; -} -input[type]:focus, -select:focus, -textarea:focus { - border-color: #80cecd; -} -input[type="image"] { - border: none; - padding: none; - width: auto; -} -label { - font-size: .85714286em; -} -.bg--primary label, -.bg--primary-1 label { - color: #fff; -} -.input-icon i { - top: 8px; - left: 8px; -} -.input-icon input { - padding-left: 2.78571429em; -} -.text-center .input-checkbox label, -.text-center .input-radio label { - margin: 0 auto; -} -.input-checkbox label, -.input-radio label { - font-size: 1em; -} -.input-checkbox { - margin-top: 0.46428571em; -} -.input-checkbox.field-error label { - border-color: #EBA8A8; -} -.input-checkbox label { - background: none; - border: 1px solid #d3d3d3; - text-align: center; - position: relative; -} -.input-checkbox label:not(:last-child) { - margin-right: 0.46428571em; -} -.input-checkbox label:hover { - border-color: #5bc0be; -} -.input-checkbox label:before { - content: ''; - left: 0; - border-radius: 6px; - position: absolute; - width: 100%; - height: 100%; - border: 1px solid #5bc0be; - opacity: 0; - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; -} -.input-checkbox input:checked + label { - border-color: #5bc0be; - background: #5bc0be; -} -.input-checkbox input:checked + label:after { - content: 'L'; - transform: rotateY(180deg) rotateZ(-45deg); - color: #fff; - position: absolute; - width: 100%; - left: 0; - top: -2px; - font-weight: 700; -} -.input-checkbox input:checked + label:before { - animation: pulse .45s ease forwards; - -webkit-animation: pulse .45s ease forwards; -} -.input-checkbox + span { - display: inline-block; - position: relative; - bottom: 10px; - margin-left: 0.92857143em; - font-size: 0.85714286em; - white-space: nowrap; -} -.input-checkbox + button[type] { - margin-top: 0.92857143em; -} -.input-checkbox + span + button[type] { - margin-top: 0.92857143em; -} -.bg--dark .input-checkbox:not(.checked) label { - border-color: #a5a5a5; -} -.bg--dark .input-checkbox + span { - opacity: .75; -} -.input-checkbox.input-checkbox--switch label { - width: 3.71428571em; - border-radius: 60px; -} -.input-checkbox.input-checkbox--switch label:before { - width: 20px; - height: 20px; - border-radius: 50%; - border-color: #d3d3d3; - opacity: 1; - left: 2px; - top: 2px; -} -.input-checkbox.input-checkbox--switch label:hover:before { - border-color: #5bc0be; -} -.input-checkbox.input-checkbox--switch input:checked + label { - background: none; -} -.input-checkbox.input-checkbox--switch input:checked + label:before { - animation: none !important; - background: #5bc0be; - border-color: #5bc0be; - transform: translateX(1.85714286em); -} -.input-checkbox.input-checkbox--switch input:checked + label:after { - display: none; -} -.input-radio.field-error label { - border-color: #EBA8A8; -} -.input-radio .input__label { - font-size: .85714286em; - display: inline-block; -} -.input-radio .input__label + label { - margin-top: 0.92857143em; -} -.input-radio label { - position: relative; - background: none; - border: 1px solid #d3d3d3; -} -.input-radio label:hover { - border-color: #5bc0be; -} -.input-radio label:before { - content: ''; - position: absolute; - width: 100%; - height: 100%; - border-radius: 50%; - border: 1px solid #5bc0be; - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; - opacity: 0; - left: 0; -} -.input-radio input:checked + label { - border-color: #5bc0be; - background-color: #5bc0be; -} -.input-radio input:checked + label:after { - content: ''; - position: absolute; - width: 10px; - height: 10px; - left: 7px; - top: 7px; - background-color: #fff; - border-radius: 50%; -} -.input-radio input:checked + label:before { - animation: pulse .4s ease forwards; -} -.input-radio--innerlabel label { - transition: all .3s ease; - height: 2.78571429em; - line-height: 2.50714286em; - padding: 0 0.92857143em; - border: 1px solid #ececec; - border-radius: 6px; - cursor: pointer; - width: 100%; - text-align: center; -} -.input-radio--innerlabel:hover { - border-color: #5bc0be; -} -.input-radio--innerlabel input:checked + label { - border-color: #5bc0be; - background: #5bc0be; - color: #fff; -} -.input-radio--innerlabel input:checked + label:after { - display: none; -} -.input-radio--innerlabel input:checked + label:before { - animation: none; -} -@media all and (max-width: 1024px) { - .input-radio input:checked + label:after { - top: 6px; - left: 6px; - } -} -.bg--primary .input-radio--innerlabel { - border-color: #80cecd; -} -.bg--primary .input-radio--innerlabel:hover { - border-color: #fff; -} -.bg--primary .input-radio--innerlabel.checked { - background: #fff; - border-color: #fff; -} -.bg--primary .input-radio--innerlabel.checked label { - color: #5bc0be; -} -.bg--primary-1 .input-radio--innerlabel { - border-color: #4c698c; -} -.bg--primary-1 .input-radio--innerlabel:hover { - border-color: #fff; -} -.bg--primary-1 .input-radio--innerlabel.checked { - background: #fff; - border-color: #fff; -} -.bg--primary-1 .input-radio--innerlabel.checked label { - color: #3a506b; -} -.input-select { - position: relative; -} -.input-select select { - -moz-appearance: none; - -webkit-appearance: none; -} -.input-select select::-ms-expand { - display: none; -} -.input-select:not(:last-child) { - margin-bottom: 0.92857143em; -} -.input-select:after { - position: absolute; - right: 0; - height: 100%; - top: 0; - font-size: 30px; - content: '\2263'; - pointer-events: none; - padding: 0 13px; - border-left: 1px solid #ececec; - line-height: 31px; -} -.input-select:focus:after { - border-color: #5bc0be; -} -.input-select select:focus { - border-color: #5bc0be; -} -.input-number { - position: relative; -} -.input-number > input[type="number"] { - padding-left: .46428571em; - -moz-appearance: textfield; - width: 100%; - text-align: center; -} -.input-number > input[type="number"]::-webkit-inner-spin-button { - display: none; -} -.input-number .input-number__controls { - position: absolute; - height: 100%; - width: 100%; - right: 0; - top: 0; - padding: 0 0.92857143em; -} -.input-number .input-number__controls > span { - position: absolute; - display: block; - width: 10%; - min-width: 3.71428571em; - height: 100%; - cursor: pointer; - -webkit-user-select: none; - user-select: none; - text-align: center; - padding-top: 6px; - transition: all .3s ease; -} -.input-number .input-number__controls > span:hover { - color: #5bc0be; -} -.input-number .input-number__controls .input-number__increase { - right: 0; - border-left: 1px solid #ececec; -} -.input-number .input-number__controls .input-number__decrease { - left: 0; - border-right: 1px solid #ececec; -} -/*! -- Stack Subscribe Forms -- */ -.subscribe-form-1 h3 { - margin-bottom: 0.52em; -} -.subscribe-form-1.boxed form { - margin: 1.85714286em; -} -@media all and (min-width: 991px) { - .subscribe-form-2 p { - top: 2px; - position: relative; - } - .subscribe-form-2 input { - margin: 0; - } - .subscribe-form-2 form [class*='col-'] { - margin: 0 !important; - } -} -@media all and (max-width: 990px) { - .subscribe-form-2 { - text-align: center; - } - .subscribe-form-2 form { - margin-top: 1.85714286em; - } -} -/*! -- Stack Elaborate Forms -- */ -@media all and (max-width: 767px) { - .elaborate-form-1 .pos-vertical-center { - padding-left: 15px; - padding-right: 15px; - } - .elaborate-form-1 form .col-xs-6:nth-child(even) { - padding-left: 15px; - } - .elaborate-form-1 form .col-xs-6:nth-child(odd) { - padding-right: 15px; - } - .elaborate-form-1 .row form > .row { - margin-left: -15px; - margin-right: -15px; - } -} -/* Stack Boxed Forms */ -.boxed-form h4 { - margin-bottom: 0.684210526315789em; -} -.boxed-form:last-child { - margin-bottom: 0; -} -/* Stack Datepicker Form */ -.datepicker { - cursor: pointer; -} -.picker { - transition: all .3s ease; - z-index: 10; - max-width: 100%; - -webkit-transition: all .3s ease; - margin-top: 0.46428571em; - position: absolute; - background: #ffffff; - border: 1px solid #ececec; - border-radius: 6px; - padding: 0.92857143em; - box-shadow: 0 23px 40px rgba(0, 0, 0, 0.2); -} -.picker .picker__header { - text-align: center; - margin-bottom: 0.92857143em; -} -.picker .picker__header > div { - font-weight: 600; - display: inline-block; - color: #252525; -} -.picker .picker__header > div:not(:last-child) { - margin-right: 0.46428571em; -} -.picker .picker__header .picker__nav--prev, -.picker .picker__header .picker__nav--next { - height: 10px; - width: 10px; - cursor: pointer; -} -.picker .picker__header .picker__nav--prev:after, -.picker .picker__header .picker__nav--next:after { - font-family: 'stack-interface'; -} -.picker .picker__header .picker__nav--next { - float: right; -} -.picker .picker__header .picker__nav--next:after { - content: '\e80c'; -} -.picker .picker__header .picker__nav--prev { - float: left; -} -.picker .picker__header .picker__nav--prev:after { - content: '\e80b'; -} -.picker .picker__day { - transition: all .3s ease; - cursor: pointer; -} -.picker .picker__day.picker__day--highlighted { - color: #5bc0be; - font-weight: 600; -} -.picker .picker__day:hover { - color: #5bc0be; -} -.picker:not(.picker--opened) { - opacity: 0; - visibility: hidden; - pointer-events: none; - transform: scale(0); -} -.picker .picker__holder { - outline: none !important; - border: none !important; -} -.picker table td { - padding: 0.46428571em; - padding-top: 0; -} -.picker .picker__footer { - text-align: center; -} -.picker .picker__button--today { - float: left; -} -.picker .picker__button--close { - float: right; -} -.picker button { - transition: all .3s ease; - height: auto; - border: none; - display: inline-block; -} -.picker button:not(:hover) { - opacity: .5; -} -/*! -- Stack Sliders -- */ -.flickity-prev-next-button { - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; - border-radius: 0; - background: #252525; - width: 2.78571429em; - height: 5.57142857em; -} -.flickity-prev-next-button:not(:hover) { - opacity: .5; -} -.flickity-prev-next-button:hover { - background: #252525; -} -.flickity-prev-next-button.previous { - left: 0; -} -.flickity-prev-next-button.next { - right: 0; -} -.flickity-prev-next-button:before { - color: #fff; -} -.slider.slider--inline-arrows .flickity-prev-next-button { - background: none; -} -.slider.slider--inline-arrows .flickity-prev-next-button:before { - font-size: 1.78571429em; - color: #252525; - content: '\e802'; -} -.slider.slider--inline-arrows .flickity-prev-next-button.previous:before { - content: '\e801'; -} -.slider.slider--columns .previous { - left: 15px; -} -.slider.slider--columns .next { - right: 15px; -} -.slider.border--round .slides li { - border-radius: 6px; - overflow: hidden; -} -.slider.boxed--border .slides li { - border: 1px solid #ececec; -} -.slider .slides li .feature:not(.feature-9) { - margin-bottom: 0; -} -.slide .boxed:last-child { - margin-bottom: 0; -} -.slide:not([class*='col-']) > img:only-child { - width: 100%; -} -.bg--dark .slider.slider--inline-arrows .flickity-prev-next-button:before, -.bg--primary .slider.slider--inline-arrows .flickity-prev-next-button:before, -.imagebg:not(.image--light) .slider.slider--inline-arrows .flickity-prev-next-button:before { - color: #fff; -} -@media all and (max-width: 990px) { - .flickity-prev-next-button { - display: none; - } -} -@media all and (min-width: 768px) { - h2 + .slider, - .h2 + .slider { - margin-top: 3.71428571em; - } -} -.slider.slider--ken-burns:not(.parallax) .slide.is-selected > .background-image-holder, -.slider.slider--ken-burns:not(.parallax) .slide.is-selected > img:only-child { - animation: kenBurns 15s ease alternate infinite; - -webkit-animation: kenBurns 15s ease alternate infinite; -} -.radial { - margin-left: auto; - margin-right: auto; -} -.radial .radial__label { - transition: opacity .3s ease; - -webkit-transition: opacity .3s ease; -} -.radial:not(.radial--active) .radial__label { - opacity: 0; -} -.radial:not(:last-child) { - margin-bottom: 1.85714286em; -} -@media all and (max-width: 767px) { - .radial { - margin-bottom: 1.85714286em; - } -} -/*! -- Stack Pricing -- */ -.pricing { - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; - position: relative; -} -.pricing h3:first-child { - margin: 0; -} -.pricing .label { - top: 2.78571429em; - right: 2.78571429em; -} -.pricing .h2 { - margin-bottom: 0.3939393939394em; -} -.pricing ul li:not(:last-child) { - margin-bottom: 0.46428571em; -} -.pricing ul li .checkmark + span { - position: relative; - bottom: 3px; -} -.pricing:hover { - box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); - box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.04); -} -.pricing .h1 { - font-size: 4.21428571428571em; - line-height: 1.10169491525424em; - margin-bottom: 0.22033898305085em; -} -.pricing .h1 .pricing__dollar { - font-size: 0.51020408163265em; - position: relative; - bottom: 20px; -} -.pricing .feature-6 p { - min-height: 5.57142857em; -} -.pricing-1 .btn:last-child { - position: absolute; - width: 100%; - bottom: 0; - left: 0; - border-radius: 0 0 6px 6px; - padding: 0.92857143em 0; - margin: 0; -} -.pricing-1 .btn:last-child:hover { - transform: none !important; -} -.pricing-1 ul { - margin-bottom: 5.57142857em; -} -.pricing-1 p { - min-height: 5.57142857em; -} -.pricing-1 p:first-of-type { - margin-top: 1.85714286em; -} -.pricing-1 p:last-of-type { - margin-bottom: 5.57142857em; -} -.pricing-1 img + p:first-of-type { - margin-top: 0; -} -@media all and (min-width: 991px) { - .pricing-2 ul:first-child { - margin-top: 4.64285714em; - } -} -@media all and (max-width: 990px) { - .pricing-2 { - text-align: center; - } - .pricing-2 ul:first-child { - margin-top: 1.85714286em; - } -} -.pricing-3 { - border: 1px solid #ececec; - border-radius: 6px; -} -.pricing-3 .pricing__head { - margin: 0; - border-bottom: 1px solid #ececec; -} -.pricing-3 .pricing__head + .btn { - display: block; - border-radius: 0; - padding: 0.92857143em 0; -} -.pricing-3 ul { - border-radius: 0 0 6px 6px; -} -.pricing-3 ul li { - padding: 0.92857143em 0; -} -.pricing-3 ul li:not(:last-child) { - border-bottom: 1px solid #ececec; - margin: 0; -} -.pricing-3 ul:last-child { - margin: 0; -} -@media all and (max-width: 990px) { - .pricing-3 { - margin-bottom: 1.85714286em; - } -} -@media all and (min-width: 768px) { - .pricing-section-1 .pricing:not(.boxed--emphasis) { - left: 0.92857143em; - } - .pricing-section-1 .pricing.boxed--emphasis { - right: 0.92857143em; - } -} -@media all and (min-width: 990px) { - .pricing-section-2 div[class*='col-'] { - padding: 0; - } - .pricing-section-2 div[class*='col-']:not(:first-child):not(:last-child) .pricing__head { - border-radius: 0; - } - .pricing-section-2 div[class*='col-']:first-child .pricing { - border-radius: 6px 0 0 6px; - } - .pricing-section-2 div[class*='col-']:first-child .pricing .pricing__head { - border-radius: 6px 0 0 0; - } - .pricing-section-2 div[class*='col-']:last-child .pricing { - border-radius: 0 6px 6px 6px; - border-right: 1px solid #ececec; - } - .pricing-section-2 div[class*='col-']:last-child .pricing .pricing__head { - border-radius: 0 6px 0 0; - } - .pricing-section-2 .pricing { - border: 1px solid #ececec; - border-radius: 0 0 0 6px; - border-right: none; - } - .pricing-section-2 .pricing:hover { - box-shadow: none; - } - .pricing-section-2 .pricing ul { - margin: 0; - } -} -.pricing-section-2.bg--dark .pricing, -.pricing-section-2.bg--dark .pricing .pricing__head, -.pricing-section-2.bg--dark .pricing ul li:not(:last-child), -.pricing-section-2.bg--dark div[class*='col-']:last-child .pricing { - border-color: #3f3f3f; -} -.pricing-section-2.imagebg .pricing, -.pricing-section-2.imagebg .pricing .pricing__head, -.pricing-section-2.imagebg .pricing ul li:not(:last-child), -.pricing-section-2.imagebg div[class*='col-']:last-child .pricing { - border-color: rgba(255, 255, 255, 0.2); -} -/*! -- Stack Progress Horizontal -- */ -.progress-horizontal:not(:last-child) { - margin-bottom: 1.85714286em; -} -.progress-horizontal.progress-horizontal--lg .progress-horizontal__bar { - height: 1.85714286em; -} -.progress-horizontal.progress-horizontal--sm .progress-horizontal__bar { - height: 0.46428571em; -} -.progress-horizontal__bar { - height: 0.92857143em; - border-radius: 100px; - background: #fafafa; - border: 1px solid rgba(0, 0, 0, 0.1); -} -.progress-horizontal__bar:not(:last-child) { - margin-bottom: 0.46428571em; -} -.progress-horizontal__progress { - background: #5bc0be; - border-radius: 100px; -} -/*! -- Stack Maps -- */ -iframe[src*='google.com/maps'] { - border: none; -} -.map-container { - min-height: 400px; -} -.map-container:not(:last-child) { - margin-bottom: 1.85714286em; -} -.map-container.border--round { - overflow: hidden; - z-index: 2; -} -.map-container.border--round .gm-style { - border-radius: 6px; -} -.map-container iframe { - left: 0; -} -@media all and (min-width: 768px) { - .background-image-holder .map-container, - .imageblock__content .map-container { - position: absolute; - width: 100%; - height: 100%; - top: 0; - left: 0; - } - .map-container + div[class*='col-'] { - margin-top: 3.71428571em; - } -} -/*! -- Stack Testimonials -- */ -.testimonial { - position: relative; - overflow: hidden; -} -.testimonial h5:nth-last-child(2) { - margin: 0; -} -.testimonial .testimonial__image { - margin-bottom: 1.85714286em; -} -@media all and (min-width: 1025px) { - .testimonial-1 .switchable__text { - margin-top: 7.42857143em; - } -} -.testimonial-2 { - float: none; - width: 100%; -} -.testimonial-2 .testimonial__image img { - max-height: 3.71428571em; - float: left; - margin-right: 1.85714286em; -} -.testimonial-2 .boxed { - width: 100%; -} -@media all and (max-width: 990px) { - .testimonial-2 p { - min-height: 7.42857143em; - } -} -@media all and (max-width: 767px) { - .testimonial-2 p { - min-height: 0; - } -} -@media all and (min-width: 768px) { - .lead + .testimonial-2 { - margin-top: 3.71428571em; - } -} -@media all and (min-width: 768px) { - .testimonials-1 .list-inline { - position: relative; - top: 0.92857143em; - } - .testimonials-1 .list-inline li:not(:last-child) { - margin-right: 3.71428571em; - } -} -@media all and (max-width: 767px) { - .testimonials-1 .list-inline { - margin-top: 1.85714286em; - } - .testimonials-1 .list-inline li { - margin-bottom: 1.85714286em; - } -} -/*! -- Stack Masonry -- */ -.masonry__item:not(:empty) { - margin-bottom: 30px; - transform-style: preserve-3d; -} -.masonry__item:not(:empty) article { - margin: 0; -} -.masonry__item:not(:empty) article .boxed { - margin: 0; -} -.masonry__item:empty { - height: 0; - min-height: 0; -} -.masonry hr + .masonry__container, -.masonry hr + .row { - margin-top: 4.64285714em; -} -.masonry-filter-holder:not(.masonry-filters--horizontal) { - display: inline-block; - cursor: pointer; - height: 3.71428571em; - position: relative; - z-index: 9; - min-width: 143px; -} -.masonry-filter-holder:not(.masonry-filters--horizontal) .masonry__filters { - cursor: pointer; - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; - z-index: 2; - display: inline-block; - position: absolute; - left: 0; - text-align: left; - padding: 0.92857143em 1.85714286em; - border: 1px solid #ececec; - background: #ffffff; - border-radius: 6px; -} -.masonry-filter-holder:not(.masonry-filters--horizontal) .masonry__filters ul { - margin: 0; - cursor: pointer; -} -.masonry-filter-holder:not(.masonry-filters--horizontal) .masonry__filters ul li { - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; - display: block; - color: #666666; - white-space: nowrap; -} -.masonry-filter-holder:not(.masonry-filters--horizontal) .masonry__filters ul li:not(:last-child) { - margin-bottom: 0.92857143em; -} -.masonry-filter-holder:not(.masonry-filters--horizontal) .masonry__filters ul li.active { - color: #5bc0be; - cursor: pointer; -} -.masonry-filter-holder:not(.masonry-filters--horizontal) .masonry__filters ul li.active:after { - content: '\25bc'; - font-size: 8px; - margin-left: 6px; - position: relative; - bottom: 2px; - display: inline-block; - transform: scaleX(1.4) scaleY(0.9); - transition: 0.2s linear; - -webkit-transition: 0.2s linear; - -moz-transition: 0.2s linear; -} -.masonry-filter-holder:not(.masonry-filters--horizontal) .masonry__filters ul li:hover { - color: #5bc0be; -} -.masonry-filter-holder:not(.masonry-filters--horizontal) .masonry__filters ul:hover li.active:after { - opacity: 0; -} -.masonry-filter-holder:not(.masonry-filters--horizontal):not(:hover) .masonry__filters ul { - max-height: 1.85714286em; - overflow: hidden; -} -.masonry-filter-holder:not(.masonry-filters--horizontal):not(:hover) .masonry__filters ul li:not(.active) { - display: none; -} -.masonry-filter-holder:not(.masonry-filters--horizontal):hover .masonry__filters { - box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); - box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.04); -} -.masonry-filter-holder:not(.masonry-filters--horizontal):hover .masonry__filters ul li.active { - cursor: default; -} -.masonry-filters--horizontal { - display: inline-block; -} -.masonry-filters--horizontal .masonry__filters { - display: inline-block; - position: relative; - bottom: 20px; - margin-left: 0.92857143em; -} -.masonry-filters--horizontal .masonry__filters ul li { - transition: all .3s ease; - cursor: pointer; - display: inline-block; -} -.masonry-filters--horizontal .masonry__filters ul li:not(:last-child) { - margin-right: 1.85714286em; -} -.masonry-filters--horizontal .masonry__filters ul li.active { - color: #5bc0be; -} -.masonry-filters--horizontal .masonry__filters ul li:not(.active) { - opacity: .5; -} -.masonry-filters--horizontal .masonry__filters ul li:hover { - opacity: 1; -} -.masonry-filter-holder + .masonry__container { - margin-top: 3.71428571em; -} -.bg--dark .masonry-filter-holder .masonry__filters { - background: #2a2a2a; - border-color: #3f3f3f; -} -.bg--dark .masonry-filter-holder .masonry__filters li { - color: #fff; -} -.masonry.masonry-demos .masonry__item:not(:empty) { - margin-bottom: 3.71428571em; -} -.masonry.masonry-demos .masonry__item h5 { - margin-bottom: 0; -} -.masonry.masonry-demos .masonry__item:not([style]) .hover-item { - min-height: 450px; - background: #323232; - border: 1px solid #3f3f3f; -} -.masonry.masonry-demos .hover-item { - transition: 0.35s ease-out; - -webkit-transition: 0.35s ease-out; - -moz-transition: 0.35s ease-out; - border-radius: 6px; - overflow: hidden; -} -.masonry.masonry-demos .hover-item:hover { - transform: translateY(-10px); -} -.masonry.masonry-demos .masonry__container { - margin-top: 3.71428571em; -} -/*! -- Stack Blog -- */ -article .article__title { - margin-bottom: 3.71428571em; -} -article .article__title > a { - display: block; -} -article .article__title > a:hover { - text-decoration: none; - opacity: .75; -} -article .article__title h2 { - margin-bottom: 0.3939393939394em; -} -article .article__title h1 { - margin-bottom: 0.29545454545455em; -} -article .article__body img, -article .article__body iframe, -article .article__body .video-cover { - border-radius: 6px; -} -article .article__body img:not(:last-child), -article .article__body iframe:not(:last-child), -article .article__body .video-cover:not(:last-child) { - margin-bottom: 1.85714286em; -} -article .article__body > a:first-child > img { - margin-bottom: 1.85714286em; -} -article .article__body p, -article .article__body ul { - font-size: 1.35714286em; - line-height: 1.68421053em; - font-weight: 400; - color: #808080; -} -article .article__body p:not(:last-child), -article .article__body ul:not(:last-child) { - margin-bottom: 1.36842105263158em; -} -article .article__body p + .btn:last-child, -article .article__body ul + .btn:last-child { - margin-top: 0.92857143em; -} -article .article__body p + h5, -article .article__body ul + h5 { - margin-top: 2.78571429em; -} -article .article__body blockquote { - text-align: center; -} -article .article__body blockquote:not(:last-child) { - margin-top: 2.08em; - margin-bottom: 2.08em; -} -article .article__share { - margin-top: 5.57142857em; -} -article.imagebg { - padding: 1.85714286em; - overflow: hidden; -} -article.imagebg:before { - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; -} -article.imagebg:hover:before { - opacity: .6; -} -article.imagebg .article__title { - margin: 0; - position: absolute; - bottom: 0; - z-index: 2; - max-width: 90%; -} -article.imagebg .article__title span { - font-size: 0.85714286em; -} -article.imagebg .label { - z-index: 2; - top: 1.85714286em; - right: 1.85714286em; -} -article.feature-1 h5 { - min-height: 3.71428571em; -} -article.feature-1 a img { - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; -} -article.feature-1 a:hover img { - opacity: .85; -} -figure[class*='col-'] { - padding: 0 !important; -} -figure.pull-right { - margin-left: 2.78571429em; -} -figure.pull-left { - margin-right: 2.78571429em; -} -figure img:not(:last-child) { - margin-bottom: 0.46428571em !important; -} -figure figcaption { - font-size: 0.85714286em; - font-style: italic; -} -section.unpad > article .imagebg + div { - padding: 5.57142857em 0; -} -.article__author { - padding-bottom: 1.85714286em; -} -.article__author img { - max-height: 3.71428571em; - margin-bottom: 0.46428571em; -} -.slides--gapless article.imagebg { - height: 27.85714286em; -} -.masonry-blog-magazine article, -.masonry-blog-magazine .masonry__promo { - height: 338px; -} -.masonry-blog-magazine .height--tall { - height: calc(706px); -} -@media all and (min-width: 991px) { - .masonry__promo.boxed--lg { - padding: 7.42857143em; - } -} -@media all and (max-width: 990px) { - .masonry-blog-magazine .height--tall { - height: 338px; - } - .masonry__promo .pos-vertical-center { - top: 0; - transform: none; - } -} -@media all and (max-width: 1200px) { - .masonry__promo.boxed--lg { - padding: 3.71428571em; - } -} -.pagination { - text-align: center; - margin-top: 1.85714286em; -} -.pagination:after { - content: ""; - display: table; - clear: both; -} -.pagination a { - font-weight: normal; -} -.pagination div[class*='col-'] { - padding: 0; -} -.pagination ol { - margin-bottom: 0; - display: inline-block; -} -.pagination ol li { - display: inline-block; - margin: 0; - font-weight: 700; - line-height: 23px; - width: 1.85714286em; - height: 1.85714286em; - border-radius: 50%; - border: 1px solid #ececec; -} -.pagination ol li > a { - font-weight: 700; -} -.pagination ol li:not(:last-child) { - margin-right: 0.46428571em; -} -.pagination ol li.pagination__current { - cursor: default; - background: #ececec; - color: #aaa; -} -.pagination__prev, -.pagination__next { - display: inline-block; -} -.pagination__next { - float: right; -} -.pagination__prev { - float: left; -} -.blog-article-wide:not(:last-child) { - border-bottom: 1px solid #ececec; - margin-bottom: 3.71428571em; -} -.masonry-blog-list hr + .masonry__container { - margin-top: 0; -} -.masonry-blog-list article { - border-bottom: 1px solid #ececec; - padding-top: 2.78571429em; - margin-bottom: 5.57142857em; -} -.masonry-blog-list article .article__body { - padding-bottom: 5.57142857em; -} -.masonry-blog-magazine .masonry__item a { - font-weight: normal; -} -.masonry-blog-magazine .masonry__item a:hover { - text-decoration: none; -} -.masonry-filter-container { - margin-bottom: 1.85714286em; -} -.masonry-filter-container > span { - position: relative; - bottom: 20px; -} -.masonry-filter-container > span + .masonry-filter-holder { - margin-left: 0.92857143em; -} -.comments__list li { - padding: 1.85714286em; - border: 1px solid #ececec; - border-bottom: none; -} -.comments__list li:last-child { - border-bottom: 1px solid #ececec; -} -.comments__list li:nth-child(odd) { - background: #fcfcfc; -} -.comments__list li:nth-child(even) { - background: #f9f9f9; -} -.comments__list li:first-child { - border-radius: 6px 6px 0 0; -} -.comments__list li:last-child { - border-radius: 0 0 6px 6px; -} -.bg--secondary .comments__list li:nth-child(even) { - background: #fff; -} -@media all and (min-width: 768px) { - .comments__list li { - padding: 2.78571429em; - } -} -.comment { - overflow: hidden; -} -.comment:not(:last-child) { - border-bottom: 1px solid #ececec; - padding-bottom: 1.85714286em; -} -.comment .comment__avatar { - width: 15%; - float: left; -} -.comment .comment__avatar img { - max-height: 3.71428571em; -} -.comment .comment__meta { - font-size: 0.85714286em; -} -.comment .comment__meta a { - display: inline-block; -} -.comment .comment__meta a:not(:first-child) { - margin-left: 1.08333333333334em; -} -.comment .comment__meta + p { - margin-top: 0.92857143em; -} -.comment .comment__body { - width: 85%; - float: right; -} -.comment .comment__body h5.type--fine-print { - margin: 0; -} -.comment + .comment { - margin-top: 1.85714286em; - padding-left: 15%; -} -@media all and (min-width: 768px) { - .comments + .comments-form { - margin-top: 3.71428571em; - } -} -@media all and (min-width: 768px) { - h3 + .related-blog-list { - margin-top: 3.71428571em; - } -} -.related-blog-list li:not(:last-child) { - margin-bottom: 1.85714286em; -} -.related-blog-list article img { - border-radius: 6px; -} -.related-blog-list article .article__title { - margin-top: 0.92857143em; - margin-bottom: 0; -} -.related-blog-list article .article__title .h4 { - margin-bottom: 0.68421052631579em; -} -@media all and (min-width: 991px) { - .sidebar { - margin-top: 7.42857143em; - position: relative; - bottom: 18px; - } -} -.sidebar__widget > h5:first-child { - margin-bottom: 0.92857143em; -} -.sidebar__widget:not(:last-child) { - margin-bottom: 3.71428571em; -} -.tag-cloud li { - display: inline-block; -} -.tag-cloud li:not(:last-child) { - margin-right: 0.46428571em; -} -.tag-cloud li:not(:last-child):after { - content: ','; -} -.conversation__head { - border-radius: 6px 6px 0 0; -} -.conversation__head.boxed:not(:last-child) { - margin: 0; -} -.conversation__head h4 { - margin: 0; -} -.conversation__head .conversation__avatar { - margin-top: 0.92857143em; -} -.conversation__head .conversation__avatar img { - max-height: 1.85714286em; - display: inline-block; - margin-right: 0.46428571em; - margin-bottom: 0; -} -@media all and (min-width: 768px) { - .conversation__avatar { - position: absolute; - top: 1.85714286em; - right: 2.78571429em; - } -} -.conversation__reply { - border-top: none !important; - border-bottom: none; - border-radius: 0; -} -.conversation__reply.boxed:not(:last-child) { - margin-bottom: 0; -} -.conversation__reply + .conversation__comments .comments__list li:first-child { - border-radius: 0; - border-top: none; -} -/*! -- Stack Portfolio -- */ -.project-thumb > a { - display: block; -} -.project-thumb:not(.hover-element) > a { - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; - margin-bottom: 1.85714286em; -} -.project-thumb:not(.hover-element) > a:hover { - opacity: .85; -} -.project-thumb.hover-element { - margin: 0; -} -.project-thumb.hover-element > a { - height: 24.14285714em; - text-decoration: none; - font-weight: normal; -} -.project-thumb.hover-element .background-image-holder { - transition: 0.5s ease-out; - -webkit-transition: 0.5s ease-out; - -moz-transition: 0.5s ease-out; -} -.project-thumb.hover-element .hover-element__reveal .project-thumb__title { - padding: 1.85714286em; - z-index: 2; - position: relative; - color: #fff; -} -.project-thumb.hover-element .hover-element__reveal .project-thumb__title h5 { - margin: 0; -} -.project-thumb.hover-element.hover--active { - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; -} -.project-thumb.hover-element.hover--active:hover { - opacity: .85; -} -.project-thumb.hover-element:not(.hover--active)[data-scrim-top] .hover-element__reveal { - transition: 0.5s ease; - -webkit-transition: 0.5s ease; - -moz-transition: 0.5s ease; - transform: translate3d(0, -100px, 0); - -webkit-transform: translate3d(0, -100px, 0); -} -.project-thumb.hover-element:not(.hover--active)[data-scrim-top]:hover .hover-element__reveal { - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); -} -.project-thumb.hover-element [data-scrim-top]:before { - height: 100%; -} -.project-thumb h4 { - margin-bottom: 0; -} -.project-thumb.height-40 { - min-height: 350px; -} -@media all and (max-width: 767px) { - .project-thumb.height-40 { - height: 350px; - min-width: 100%; - } -} -@media all and (min-width: 768px) { - .col-xs-12:not(.col-sm-6) .project-thumb.hover-element > a { - height: 46.42857143em; - } -} -.project-thumb.border--round .background-image-holder { - border-radius: 6px; -} -.project-thumb.border--round > a { - border-radius: 6px; - overflow: hidden; -} -.project-thumb.border--round:before { - border-radius: 6px; - overflow: hidden; -} -.col-md-4 .project-thumb > a:not(.imagebg) { - margin-bottom: 0.92857143em; -} -/*! -- Stack Shop -- */ -.cart-form button[type="submit"] { - margin-top: 1.85714286em; -} -.cart-total > div { - overflow: hidden; -} -@media all and (min-width: 768px) { - .cart-total { - margin-top: 3.71428571em; - } - .cart-customer-details { - margin-top: 7.42857143em; - } -} -@media all and (max-width: 767px) { - .cart-total { - margin-top: 1.85714286em; - } -} -.cart-customer-details div[class*='col-'] { - margin-top: 0.46428571em; -} -.cart-customer-details .input-checkbox { - margin: 1.85714286em 0; -} -.cart-customer-details .input-checkbox + span { - bottom: 38px; -} -.product { - margin-bottom: 0.92857143em; -} -.product img { - margin-bottom: 0.92857143em; - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; - backface-visibility: hidden; -} -.product a:hover img { - transform: translate3d(0, -5px, 0); - -webkit-transform: translate3d(0, -5px, 0); -} -.product .label + img { - margin-top: 2.78571429em; -} -.product h5 { - display: inline-block; - margin-bottom: 0; - margin-right: 0.46428571em; -} -.product .h4 { - margin-bottom: 0; -} -.product .h4:first-child { - clear: left; -} -.product .product__controls { - overflow: hidden; - margin-bottom: 0.92857143em; -} -.product .product__controls label, -.product .product__controls button { - position: relative; - top: 6px; -} -.product.product--tile { - padding: 1.85714286em; - border-radius: 6px; -} -@media all and (min-width: 1200px) { - .product .btn--cart { - position: absolute; - right: 1.85714286em; - bottom: 1.85714286em; - } -} -.col-sm-6:not(.col-md-3) .product { - text-align: center; -} -.col-md-3 .product--tile h5 { - display: block; -} -.masonry--tiles { - padding: 10px; -} -.masonry--tiles .masonry__item:not(:empty) { - padding: 0 6px; - margin-bottom: 12px; -} -.masonry--tiles .masonry__item:not(:empty) .product--tile { - margin: 0; -} -.masonry--tiles .masonry__item:not(:empty) .product--tile .label { - top: 1.85714286em; - right: 2.78571429em; -} -/*! -- Stack Wizard -- */ -.wizard { - transition: opacity .3s ease; - opacity: 0; -} -.wizard.active { - opacity: 1; -} -.wizard > .actions a, -.wizard > .actions a:hover, -.wizard > .actions a:active { - background: #5bc0be; - transition: all .3s ease; - padding: 0.46428571em 1.85714286em; - font-size: 12px; - text-transform: uppercase; - font-weight: 700; - letter-spacing: 1px; - color: #fff; -} -.wizard > .steps .current a, -.wizard > .steps .current a:hover, -.wizard > .steps .current a:active { - background: none; - color: #252525; -} -.wizard > .steps a { - position: relative; -} -.wizard > .steps a:before { - content: ''; - width: 15px; - height: 15px; - border-radius: 50%; - position: absolute; - left: 50%; - margin-left: -10px; - background: #eee; - display: block; - bottom: 0; - transition: all .2s ease; -} -.wizard > .steps a:after { - content: ''; - position: absolute; - width: 100%; - bottom: 7px; - height: 2px; - background: #eee; - left: 0; - transition: all .2s ease; -} -.wizard > .steps li:first-child a:after { - width: 50%; - left: 50%; -} -.wizard > .steps li:last-child a:after { - width: 50%; -} -.wizard > .steps li.current a:after, -.wizard > .steps li.current a:before { - background-color: #5bc0be; -} -.wizard > .steps a, -.wizard > .steps a:hover { - padding-bottom: 2.78571429em; -} -.wizard > .steps .done a, -.wizard > .steps .done a:hover, -.wizard > .steps .done a:active, -.wizard > .steps .disabled a, -.wizard > .steps .disabled a:hover, -.wizard > .steps .disabled a:active { - background: none; - color: #252525; -} -.wizard > .steps a, -.wizard > .steps a:hover, -.wizard > .steps a:active { - margin: 0; -} -.wizard > .actions a, -.wizard > .actions a:hover, -.wizard > .actions a:active { - user-select: none; - -moz-user-select: none; - -webkit-user-select: none; -} -.wizard > .steps > ul, -.wizard > .actions { - text-align: center; -} -.wizard > .steps > ul > li, -.wizard > .actions > ul > li { - float: none; - display: inline-block; -} -.wizard > section { - padding: 0; -} -.wizard > .content { - background: #fafafa; - margin-top: 1.85714286em; - margin-bottom: 1.85714286em; - border: 1px solid #ececec; -} -.wizard > .content > .body { - padding: 1.85714286em; - width: 100%; - height: 100%; -} -.wizard > .steps .number { - font-size: 1em; -} -@media all and (max-width: 767px) { - .wizard > .steps .number { - display: block; - } - .wizard > .content { - min-height: 25em; - } - .wizard .pos-vertical-center { - top: 50%; - transform: translateY(-50%); - -wekbit-transform: translateY(-50%); - } -} -.wizard.bg--white { - background: none !important; -} -.wizard.bg--white > .content { - background: #fff; -} -.wizard > .content img { - max-height: 240px; -} -@media all and (max-width: 767px) { - .wizard > .content img { - max-height: 120px; - margin-bottom: 0.92857143em; - } -} -/*! -- Stack Footers -- */ -footer .type--fine-print:not(p) { - opacity: .5; -} -footer a { - font-weight: normal; -} -footer:not(.bg--primary):not(.bg--dark) a { - color: #666666; -} -footer a.type--fine-print:not(:first-child) { - margin-left: 1.85714286em; -} -footer .logo { - max-height: 1.67142857em; -} -footer ul:not(.list-inline):not(.slides) > li { - line-height: 2.32142857em !important; -} -footer.footer-2 .row:last-child { - margin-top: 3.71428571em; -} -footer.footer-5 .row [class*='col-'] > div:nth-last-child(2) { - margin: 0.92857143em; -} -footer.footer-5 .row [class*='col-'] > div:nth-last-child(2) .type--fine-print { - opacity: 1; -} -footer.footer-6 .footer__lower { - background: #fafafa; - margin-top: 1.85714286em; - padding: 1.85714286em 0; -} -footer.footer-6.bg--dark .footer__lower { - background: #181818; -} -footer.footer-6.bg--secondary .footer__lower { - background: #f5f5f5; -} -footer.footer-6.bg--primary .footer__lower { - background: #49b9b7; -} -footer.footer-7 { - padding: 1.85714286em 0; -} -@media all and (min-width: 768px) { - footer .list-inline + .btn { - position: relative; - bottom: 4px; - } - footer .logo { - margin: 0; - } - footer .logo:not(:last-child) { - margin-right: 1.85714286em; - } - footer.footer-3 .logo + ul { - position: relative; - top: 5px; - } - footer.footer-3 .logo + ul a { - color: #252525; - } - footer.footer-3 .social-list { - position: relative; - top: 9px; - } - footer.footer-3 .row:last-child { - margin-top: 1.85714286em; - } - footer.footer-4 .logo + span { - position: relative; - top: 8px; - } - footer.footer-4 form { - position: relative; - bottom: 4px; - } - footer.footer-4 .row:last-child { - margin-top: 1.85714286em; - } - footer.imagebg:not(.image--light) span, - footer.imagebg:not(.image--light) p, - footer.imagebg:not(.image--light) a { - color: #fff; - } - .footer-1 .type--fine-print { - position: relative; - top: 2px; - } -} -@media all and (max-width: 767px) { - footer .social-list { - margin: 1.85714286em 0; - } - .footer-4 form { - margin: 1.85714286em 0; - } - .footer-4 .logo { - margin: 0; - } - .footer-6 .footer__lower .social-list { - margin-top: 1.85714286em; - } - .footer-7 .social-list { - margin-top: 1.85714286em; - } - .footer-1 .social-list { - margin-top: 1.85714286em; - } - .footer-1 .logo { - display: block; - margin-top: 1.85714286em; - margin-bottom: 0.92857143em; - margin-left: auto; - margin-right: auto; - } -} diff --git a/html/css/theme-tangerine.css b/html/css/theme-tangerine.css deleted file mode 100644 index d0af4981..00000000 --- a/html/css/theme-tangerine.css +++ /dev/null @@ -1,9016 +0,0 @@ -/**!**************/ -/**! Contents **/ -/**! 01. Reset **/ -/**! 02. Typography **/ -/**! 03. Position **/ -/**! 04. Element Size **/ -/**! 05. Images **/ -/**! 06. Buttons **/ -/**! 07. Icons **/ -/**! 08. Lists **/ -/**! 09. Lightbox **/ -/**! 10. Menus **/ -/**! 11. Dropdowns **/ -/**! 12. Form Elements **/ -/**! 13. Accordions **/ -/**! 14. Breadcrumbs **/ -/**! 15. Radials **/ -/**! 16. Tabs **/ -/**! 17. Boxes **/ -/**! 18. Sliders Flickity **/ -/**! 19. Hover Elements **/ -/**! 20. Masonry **/ -/**! 21. Modals **/ -/**! 22. Maps **/ -/**! 23. Parallax **/ -/**! 24. Notifications **/ -/**! 25. Video **/ -/**! 26. Colors **/ -/**! 27. Image Blocks **/ -/**! 28. MailChimp & Campaign Monitor **/ -/**! 29. Twitter **/ -/**! 30. Transitions **/ -/**! 31. Switchable Sections **/ -/**! 32. Typed Effect **/ -/**! 33. Gradient BG **/ -/**! 34. Bars **/ -/**! 35. Navigation In Page **/ -/**! 36. Helper Classes **/ -/**! 37. Spacing **/ -/**! 38. Boxed Layout **/ -/**! 39. Wizard **/ -/**! 40. Alerts **/ -/**! 41. Progress - Horizontal **/ -/**! 42. Theme Overrides **/ -/**!**************/ -/**!**************/ -/**!**************/ -/**! 01. Reset **/ -*, -h1, -h2, -h3, -h4, -h5, -h6, -p, -ul, -a { - margin: 0; - padding: 0; -} -/**! 02. Typography **/ -html { - font-size: 87.5%; -} -@media all and (max-width: 768px) { - html { - font-size: 81.25%; - } -} -body { - font-size: 1em; - line-height: 1.85714286em; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; - font-family: 'Open Sans', 'Helvetica', 'Arial', sans-serif; - color: #666666; - font-weight: 400; -} -h1, -h2, -h3, -h4, -h5, -h6, -.h1, -.h2, -.h3, -.h4, -.h5, -.h6 { - font-family: 'Open Sans', 'Helvetica', 'Arial', sans-serif; - color: #252525; - font-weight: 300; - font-variant-ligatures: common-ligatures; - margin-top: 0; - margin-bottom: 0; -} -h1, -.h1 { - font-size: 3.14285714em; - line-height: 1.31818182em; -} -h2, -.h2 { - font-size: 2.35714286em; - line-height: 1.36363636em; -} -h3, -.h3 { - font-size: 1.78571429em; - line-height: 1.5em; -} -h4, -.h4 { - font-size: 1.35714286em; - line-height: 1.36842105em; -} -h5, -.h5 { - font-size: 1em; - line-height: 1.85714286em; -} -h6, -.h6 { - font-size: 0.85714286em; - line-height: 2.16666667em; -} -.lead { - font-size: 1.35714286em; - line-height: 1.68421053em; -} -@media all and (max-width: 767px) { - h1, - .h1 { - font-size: 2.35714286em; - line-height: 1.36363636em; - } - h2, - .h2 { - font-size: 1.78571429em; - line-height: 1.5em; - } - h3, - .h3 { - font-size: 1.35714286em; - line-height: 1.85714286em; - } - .lead { - font-size: 1.35714286em; - line-height: 1.36842105em; - } -} -p, -ul, -ol, -pre, -table, -blockquote { - margin-bottom: 1.85714286em; -} -ul, -ol { - list-style: none; - line-height: 1.85714286em; -} -ul.bullets { - list-style: inside; -} -ol { - list-style-type: upper-roman; - list-style-position: inside; -} -blockquote { - font-size: 1.78571429em; - line-height: 1.5em; - padding: 0; - margin: 0; - border-left: 0; -} -strong { - font-weight: 600; -} -hr { - margin: 1.85714286em 0; - border-color: #fafafa; -} -a:hover, -a:focus, -a:active { - text-decoration: none; - outline: none; -} -/*! Typography -- Helpers */ -.type--fade { - opacity: .5; -} -.type--uppercase { - text-transform: uppercase; -} -.type--bold { - font-weight: bold; -} -.type--italic { - font-style: italic; -} -.type--fine-print { - font-size: 0.85714286em; -} -.type--strikethrough { - text-decoration: line-through; - opacity: .5; -} -.type--underline { - text-decoration: underline; -} -.type--body-font { - font-family: 'Open Sans', 'Helvetica'; -} -/**! 03. Position **/ -body { - overflow-x: hidden; -} -.pos-relative { - position: relative; -} -.pos-absolute { - position: absolute; -} -.pos-absolute.container { - left: 0; - right: 0; -} -.pos-top { - top: 0; -} -.pos-bottom { - bottom: 0; -} -.pos-right { - right: 0; -} -.pos-left { - left: 0; -} -.float-left { - float: left; -} -.float-right { - float: right; -} -@media all and (max-width: 767px) { - .float-left, - .float-right { - float: none; - } - .float-left-xs { - float: left; - } - .float-right-xs { - float: right; - } -} -.pos-vertical-center { - position: relative; - top: 50%; - transform: translateY(-50%); - -webkit-transform: translateY(-50%); -} -@media all and (max-width: 767px) { - .pos-vertical-center { - top: 0; - transform: none; - -webkit-transform: none; - } -} -@media all and (max-height: 600px) { - .pos-vertical-center { - top: 0; - transform: none; - -webkit-transform: none; - } -} -.pos-vertical-align-columns { - display: table; - table-layout: fixed; - width: 100%; -} -.pos-vertical-align-columns > div[class*='col-'] { - display: table-cell; - float: none; - vertical-align: middle; -} -@media all and (max-width: 990px) { - .pos-vertical-align-columns { - display: block; - width: auto; - } - .pos-vertical-align-columns > div[class*='col-'] { - display: block; - } -} -.inline-block { - display: inline-block; -} -.block { - display: block; -} -@media all and (max-width: 767px) { - .block--xs { - display: block; - } -} -@media all and (max-width: 990px) { - .text-center-md { - text-align: center; - } - .text-left-md { - text-align: left; - } - .text-right-md { - text-align: right; - } -} -@media all and (max-width: 767px) { - .text-center-xs { - text-align: center; - } - .text-left-xs { - text-align: left; - } - .text-right-xs { - text-align: right; - } -} -/**! 04. Element Size **/ -.height-100, -.height-90, -.height-80, -.height-70, -.height-60, -.height-50, -.height-40, -.height-30, -.height-20, -.height-10 { - height: auto; - padding: 5em 0; -} -@media all and (max-width: 767px) { - .height-100, - .height-90, - .height-80, - .height-70, - .height-60, - .height-50, - .height-40, - .height-30, - .height-20, - .height-10 { - height: auto; - padding: 4em 0; - } -} -@media all and (min-height: 600px) and (min-width: 767px) { - .height-10 { - height: 10vh; - } - .height-20 { - height: 20vh; - } - .height-30 { - height: 30vh; - } - .height-40 { - height: 40vh; - } - .height-50 { - height: 50vh; - } - .height-60 { - height: 60vh; - } - .height-70 { - height: 70vh; - } - .height-80 { - height: 80vh; - } - .height-90 { - height: 90vh; - } - .height-100 { - height: 100vh; - } -} -section.height-auto { - height: auto; -} -section.height-auto .pos-vertical-center { - top: 0; - position: relative; - transform: none; -} -@media all and (max-width: 767px) { - div[class*='col-'][class*='height-'] { - padding-top: 5.57142857em !important; - padding-bottom: 5.57142857em !important; - } -} -/**! 05. Images **/ -img { - max-width: 100%; - margin-bottom: 1.85714286em; -} -/*p+img, img:last-child{ - margin-bottom: 0; -}*/ -.img--fullwidth { - width: 100%; -} -[data-grid="2"].masonry { - -webkit-column-count: 2; - -webkit-column-gap: 0; - -moz-column-count: 2; - -moz-column-gap: 0; - column-count: 2; - column-gap: 0; -} -[data-grid="2"].masonry li { - width: 100%; - float: none; -} -[data-grid="2"] li { - width: 50%; - display: inline-block; -} -[data-grid="3"].masonry { - -webkit-column-count: 3; - -webkit-column-gap: 0; - -moz-column-count: 3; - -moz-column-gap: 0; - column-count: 3; - column-gap: 0; -} -[data-grid="3"].masonry li { - width: 100%; - float: none; -} -[data-grid="3"] li { - width: 33.33333333%; - display: inline-block; -} -[data-grid="4"].masonry { - -webkit-column-count: 4; - -webkit-column-gap: 0; - -moz-column-count: 4; - -moz-column-gap: 0; - column-count: 4; - column-gap: 0; -} -[data-grid="4"].masonry li { - width: 100%; - float: none; -} -[data-grid="4"] li { - width: 25%; - display: inline-block; -} -[data-grid="5"].masonry { - -webkit-column-count: 5; - -webkit-column-gap: 0; - -moz-column-count: 5; - -moz-column-gap: 0; - column-count: 5; - column-gap: 0; -} -[data-grid="5"].masonry li { - width: 100%; - float: none; -} -[data-grid="5"] li { - width: 20%; - display: inline-block; -} -[data-grid="6"].masonry { - -webkit-column-count: 6; - -webkit-column-gap: 0; - -moz-column-count: 6; - -moz-column-gap: 0; - column-count: 6; - column-gap: 0; -} -[data-grid="6"].masonry li { - width: 100%; - float: none; -} -[data-grid="6"] li { - width: 16.66666667%; - display: inline-block; -} -[data-grid="7"].masonry { - -webkit-column-count: 7; - -webkit-column-gap: 0; - -moz-column-count: 7; - -moz-column-gap: 0; - column-count: 7; - column-gap: 0; -} -[data-grid="7"].masonry li { - width: 100%; - float: none; -} -[data-grid="7"] li { - width: 14.28571429%; - display: inline-block; -} -[data-grid="8"].masonry { - -webkit-column-count: 8; - -webkit-column-gap: 0; - -moz-column-count: 8; - -moz-column-gap: 0; - column-count: 8; - column-gap: 0; -} -[data-grid="8"].masonry li { - width: 100%; - float: none; -} -[data-grid="8"] li { - width: 12.5%; - display: inline-block; -} -@media all and (max-width: 767px) { - [data-grid]:not(.masonry) li { - width: 33.333333%; - } - [data-grid="2"]:not(.masonry) li { - width: 50%; - } - [data-grid].masonry { - -webkit-column-count: 1; - -moz-column-count: 1; - column-count: 1; - } -} -.background-image-holder { - position: absolute; - height: 100%; - top: 0; - left: 0; - background-size: cover !important; - background-position: 50% 50% !important; - z-index: 0; - transition: opacity .3s linear; - -webkit-transition: opacity .3s linear; - opacity: 0; - background: #252525; -} -.background-image-holder:not([class*='col-']) { - width: 100%; -} -.background-image-holder.background--bottom { - background-position: 50% 100% !important; -} -.background-image-holder.background--top { - background-position: 50% 0% !important; -} -.image--light .background-image-holder { - background: none; -} -.background-image-holder img { - display: none; -} -[data-overlay] { - position: relative; -} -[data-overlay]:before { - position: absolute; - content: ''; - background: #252525; - width: 100%; - height: 100%; - top: 0; - left: 0; - z-index: 1; -} -[data-overlay] *:not(.container):not(.background-image-holder) { - z-index: 2; -} -[data-overlay].image--light:before { - background: #fff; -} -[data-overlay].bg--primary:before { - background: #f18f01; -} -[data-overlay="1"]:before { - opacity: 0.1; -} -[data-overlay="2"]:before { - opacity: 0.2; -} -[data-overlay="3"]:before { - opacity: 0.3; -} -[data-overlay="4"]:before { - opacity: 0.4; -} -[data-overlay="5"]:before { - opacity: 0.5; -} -[data-overlay="6"]:before { - opacity: 0.6; -} -[data-overlay="7"]:before { - opacity: 0.7; -} -[data-overlay="8"]:before { - opacity: 0.8; -} -[data-overlay="9"]:before { - opacity: 0.9; -} -[data-overlay="10"]:before { - opacity: 1; -} -[data-overlay="0"]:before { - opacity: 0; -} -[data-scrim-bottom] { - position: relative; -} -[data-scrim-bottom]:before { - position: absolute; - content: ''; - width: 100%; - height: 80%; - background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, #252525 100%); - /* FF3.6+ */ - background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(0, 0, 0, 0)), color-stop(100%, #252525)); - /* Chrome,Safari4+ */ - background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, #252525 100%); - /* Chrome10+,Safari5.1+ */ - background: -o-linear-gradient(top, rgba(0, 0, 0, 0) 0%, #252525 100%); - /* Opera 11.10+ */ - background: -ms-linear-gradient(top, rgba(0, 0, 0, 0) 0%, #252525 100%); - /* IE10+ */ - background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, #252525 100%); - bottom: 0; - left: 0; - z-index: 1; - backface-visibility: hidden; -} -[data-scrim-bottom]:not(.image--light) h1, -[data-scrim-bottom]:not(.image--light) h2, -[data-scrim-bottom]:not(.image--light) h3, -[data-scrim-bottom]:not(.image--light) h4, -[data-scrim-bottom]:not(.image--light) h5, -[data-scrim-bottom]:not(.image--light) h6 { - color: #a5a5a5; - color: #f1f1f1; -} -[data-scrim-bottom]:not(.image--light) p, -[data-scrim-bottom]:not(.image--light) span, -[data-scrim-bottom]:not(.image--light) ul { - color: #e6e6e6; -} -[data-scrim-bottom].image--light:before { - background: #fff; -} -[data-scrim-bottom="1"]:before { - opacity: 0.1; -} -[data-scrim-bottom="2"]:before { - opacity: 0.2; -} -[data-scrim-bottom="3"]:before { - opacity: 0.3; -} -[data-scrim-bottom="4"]:before { - opacity: 0.4; -} -[data-scrim-bottom="5"]:before { - opacity: 0.5; -} -[data-scrim-bottom="6"]:before { - opacity: 0.6; -} -[data-scrim-bottom="7"]:before { - opacity: 0.7; -} -[data-scrim-bottom="8"]:before { - opacity: 0.8; -} -[data-scrim-bottom="9"]:before { - opacity: 0.9; -} -[data-scrim-bottom="10"]:before { - opacity: 1; -} -[data-scrim-top] { - position: relative; -} -[data-scrim-top]:before { - position: absolute; - content: ''; - width: 100%; - height: 80%; - background: -moz-linear-gradient(bottom, #252525 0%, rgba(0, 0, 0, 0) 100%); - /* FF3.6+ */ - background: -webkit-gradient(linear, left bottom, left bottom, color-stop(0%, #252525), color-stop(100%, rgba(0, 0, 0, 0))); - /* Chrome,Safari4+ */ - background: -webkit-linear-gradient(bottom, #252525 0%, rgba(0, 0, 0, 0) 100%); - /* Chrome10+,Safari5.1+ */ - background: -o-linear-gradient(bottom, #252525 0%, rgba(0, 0, 0, 0) 100%); - /* Opera 11.10+ */ - background: -ms-linear-gradient(bottom, #252525 0%, rgba(0, 0, 0, 0) 100%); - /* IE10+ */ - background: linear-gradient(to bottom, #252525 0%, rgba(0, 0, 0, 0) 100%); - top: 0; - left: 0; - z-index: 1; -} -[data-scrim-top]:not(.image--light) h1, -[data-scrim-top]:not(.image--light) h2, -[data-scrim-top]:not(.image--light) h3, -[data-scrim-top]:not(.image--light) h4, -[data-scrim-top]:not(.image--light) h5, -[data-scrim-top]:not(.image--light) h6 { - color: #fff; -} -[data-scrim-top]:not(.image--light) p, -[data-scrim-top]:not(.image--light) span, -[data-scrim-top]:not(.image--light) ul { - color: #e6e6e6; -} -[data-scrim-top].image--light:before { - background: #fff; -} -[data-scrim-top="1"]:before { - opacity: 0.1; -} -[data-scrim-top="2"]:before { - opacity: 0.2; -} -[data-scrim-top="3"]:before { - opacity: 0.3; -} -[data-scrim-top="4"]:before { - opacity: 0.4; -} -[data-scrim-top="5"]:before { - opacity: 0.5; -} -[data-scrim-top="6"]:before { - opacity: 0.6; -} -[data-scrim-top="7"]:before { - opacity: 0.7; -} -[data-scrim-top="8"]:before { - opacity: 0.8; -} -[data-scrim-top="9"]:before { - opacity: 0.9; -} -[data-scrim-top="10"]:before { - opacity: 1; -} -.imagebg { - position: relative; -} -.imagebg .container { - z-index: 2; -} -.imagebg .container:not(.pos-absolute) { - position: relative; -} -.imagebg:not(.image--light) h1, -.imagebg:not(.image--light) h2, -.imagebg:not(.image--light) h3, -.imagebg:not(.image--light) h4, -.imagebg:not(.image--light) h5, -.imagebg:not(.image--light) h6, -.imagebg:not(.image--light) p, -.imagebg:not(.image--light) ul, -.imagebg:not(.image--light) blockquote { - color: #fff; -} -.imagebg:not(.image--light) .bg--white h1, -.imagebg:not(.image--light) .bg--white h2, -.imagebg:not(.image--light) .bg--white h3, -.imagebg:not(.image--light) .bg--white h4, -.imagebg:not(.image--light) .bg--white h5, -.imagebg:not(.image--light) .bg--white h6 { - color: #252525; -} -.imagebg:not(.image--light) .bg--white p, -.imagebg:not(.image--light) .bg--white ul { - color: #666666; -} -div[data-overlay] h1, -div[data-overlay] h2, -div[data-overlay] h3, -div[data-overlay] h4, -div[data-overlay] h5, -div[data-overlay] h6 { - color: #fff; -} -div[data-overlay] p, -div[data-overlay] ul { - color: #fff; -} -.parallax { - overflow: hidden; -} -.parallax .background-image-holder { - transition: none !important; - -webkit-transition: none !important; - -moz-transition: none !important; -} -.image--xxs { - max-height: 1.85714286em; -} -.image--xs { - max-height: 3.71428571em; -} -.image--sm { - max-height: 5.57142857em; -} -.image--md { - max-height: 7.42857143em; -} -/**! 06. Buttons **/ -.btn { - font-family: 'Open Sans', 'Helvetica', 'Arial', sans-serif; - transition: 0.1s linear; - -webkit-transition: 0.1s linear; - -moz-transition: 0.1s linear; - border-radius: 6px; - padding-top: 0.46428571em; - padding-bottom: 0.46428571em; - padding-right: 2.78571429em; - padding-left: 2.78571429em; - border: 1px solid #252525; - border-width: 1px; - font-size: inherit; - line-height: 1.85714286em; -} -.btn .btn__text, -.btn i { - color: #252525; - border-color: #252525; - font-weight: 700; - font-size: 0.85714286em; -} -.btn[class*='col-'] { - margin-left: 0; - margin-right: 0; -} -.btn:active { - box-shadow: none; - -webkit-box-shadow: none; -} -.btn.bg--facebook, -.btn.bg--twitter, -.btn.bg--instagram, -.btn.bg--googleplus, -.btn.bg--pinterest, -.btn.bg--dribbble, -.btn.bg--behance, -.btn.bg--dark { - border-color: rgba(0, 0, 0, 0) !important; -} -.btn.bg--facebook .btn__text, -.btn.bg--twitter .btn__text, -.btn.bg--instagram .btn__text, -.btn.bg--googleplus .btn__text, -.btn.bg--pinterest .btn__text, -.btn.bg--dribbble .btn__text, -.btn.bg--behance .btn__text, -.btn.bg--dark .btn__text { - color: #fff; -} -.btn.bg--facebook .btn__text i, -.btn.bg--twitter .btn__text i, -.btn.bg--instagram .btn__text i, -.btn.bg--googleplus .btn__text i, -.btn.bg--pinterest .btn__text i, -.btn.bg--dribbble .btn__text i, -.btn.bg--behance .btn__text i, -.btn.bg--dark .btn__text i { - color: #fff; -} -.btn.bg--facebook:hover, -.btn.bg--twitter:hover, -.btn.bg--instagram:hover, -.btn.bg--googleplus:hover, -.btn.bg--pinterest:hover, -.btn.bg--dribbble:hover, -.btn.bg--behance:hover, -.btn.bg--dark:hover { - opacity: .9; -} -.btn.bg--error { - background: #e23636; - border-color: #e23636 !important; -} -.btn.bg--error:hover { - background: #e54c4c; - border-color: #e54c4c !important; - color: #fff !important; -} -.btn.bg--error .btn__text { - color: #fff; -} -.btn.bg--error .btn__text i { - color: #fff; -} -@media all and (min-width: 768px) { - .btn + .btn { - margin-left: 1.85714286em; - } -} -.btn:first-child { - margin-left: 0; -} -.btn:last-child { - margin-right: 0; -} -.btn--xs { - padding-top: 0; - padding-bottom: 0; - padding-right: 1.39285714em; - padding-left: 1.39285714em; -} -.btn--sm { - padding-top: 0.30952381em; - padding-bottom: 0.30952381em; - padding-right: 1.85714286em; - padding-left: 1.85714286em; -} -.btn--lg { - padding-top: 0.58035714em; - padding-bottom: 0.58035714em; - padding-right: 3.48214286em; - padding-left: 3.48214286em; -} -.btn--lg .btn__text { - font-size: 1.07142857em; -} -.btn--primary, -.btn--primary:visited { - background: #f18f01; - border-color: #f18f01; -} -.btn--primary .btn__text, -.btn--primary:visited .btn__text { - color: #fff; -} -.btn--primary .btn__text i, -.btn--primary:visited .btn__text i { - color: #fff; -} -.btn--primary:hover { - background: #fe9c0e; -} -.btn--primary:active { - background: #d88001; -} -.btn--primary-1, -.btn--primary-1:visited { - background: #006e90; - border-color: #006e90; -} -.btn--primary-1 .btn__text, -.btn--primary-1:visited .btn__text { - color: #fff; -} -.btn--primary-1:hover { - background: #0081aa; -} -.btn--primary-1:active { - background: #005b77; -} -.btn--primary-2, -.btn--primary-2:visited { - background: #143642; - border-color: #143642; -} -.btn--primary-2 .btn__text, -.btn--primary-2:visited .btn__text { - color: #fff; -} -.btn--primary-2:hover { - background: #1a4656; -} -.btn--primary-2:active { - background: #0e262e; -} -.btn--secondary { - background: #fafafa; - border-color: #fafafa; -} -.btn--secondary:hover { - background: #ffffff; -} -.btn--secondary:active { - background: #f5f5f5; -} -.btn--white { - background: #fff; - color: #252525; - border-color: #fff; -} -.btn--white i { - color: #252525; -} -.btn--transparent { - background: none; - border-color: rgba(0, 0, 0, 0); - padding-left: 0; - padding-right: 0; -} -.btn--transparent.btn--white .btn__text { - color: #fff; -} -.btn--unfilled { - background: none; -} -.btn--unfilled.btn--white .btn__text { - color: #fff; -} -.btn--unfilled.btn--white i { - color: #fff; -} -.btn--floating { - position: fixed; - bottom: 3.71428571em; - right: 3.71428571em; - z-index: 10; -} -/**! 07. Icons **/ -.icon { - line-height: 1em; - font-size: 3.14285714em; -} -.icon--xs { - font-size: 1em; -} -.icon--sm { - font-size: 2.35714286em; -} -.icon--lg { - font-size: 5.57142857em; -} -/**! 08. Lists **/ -ul:last-child { - margin: 0; -} -.list-inline li { - padding: 0 1em; - margin-left: 0; -} -.list-inline li:first-child { - padding-left: 0; -} -.list-inline li:last-child { - padding-right: 0; -} -.list-inline.list-inline--narrow li { - padding: 0 .5em; -} -.list-inline.list-inline--wide li { - padding: 0 2em; -} -/**! 09. Lightbox **/ -.lb-outerContainer { - border-radius: 0; -} -.lb-outerContainer .lb-container { - padding: 0; -} -.lb-outerContainer .lb-container img { - margin: 0; -} -.lightbox-gallery { - overflow: hidden; -} -.lightbox-gallery li { - float: left; -} -.lightbox-gallery li img { - margin: 0; - width: 100%; -} -.lightbox-gallery.gallery--gaps li { - padding: 0.46428571em; -} -/**! 10. Menus **/ -.menu-horizontal > li:not(:hover) > a, -.menu-horizontal > li:not(:hover) > span, -.menu-horizontal > li:not(:hover) > .modal-instance > .modal-trigger { - opacity: .5; -} -.menu-horizontal > li > a, -.menu-horizontal > li > span, -.menu-horizontal > li > .modal-instance > .modal-trigger { - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; - color: #252525; -} -.menu-horizontal > li > a:hover, -.menu-horizontal > li > span:hover, -.menu-horizontal > li > .modal-instance > .modal-trigger:hover { - color: #252525; -} -.bg--dark .menu-horizontal > li > a, -.bg--dark .menu-horizontal > li > span { - color: #fff; -} -.bg--dark .menu-horizontal > li > a:hover, -.bg--dark .menu-horizontal > li > span:hover { - color: #fff; -} -.menu-vertical { - width: 100%; -} -.menu-vertical li { - width: 100%; -} -.menu-vertical li a { - font-weight: normal; -} -@media all and (min-width: 990px) { - .menu-horizontal { - display: inline-block; - } - .menu-horizontal > li { - display: inline-block; - } - .menu-horizontal > li:not(:last-child) { - margin-right: 1.85714286em; - } - .menu-vertical { - display: inline-block; - } - .menu-vertical li { - white-space: nowrap; - } - .menu-vertical .dropdown__container { - top: 0; - } - .menu-vertical .dropdown__container .dropdown__content:not([class*='bg-']) { - background: #ffffff; - } - .menu-vertical .dropdown__container .dropdown__content { - transform: translateX(75%); - } -} -/**! 11. Dropdowns **/ -.dropdown { - position: relative; -} -.dropdown .dropdown__container { - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; - opacity: 0; - pointer-events: none; - position: absolute; - z-index: 999; -} -.dropdown .dropdown__container .dropdown__container:before { - height: 0; -} -.dropdown .dropdown__content { - padding: 1.85714286em; -} -.dropdown .dropdown__content:not([class*='col-']) { - width: 18.57142857em; -} -.dropdown .dropdown__content:not([class*='bg-']) { - background: #ffffff; -} -.dropdown .dropdown__content:not([class='bg--dark']) .menu-vertical a { - color: #666666; -} -.dropdown .dropdown__trigger { - cursor: pointer; - user-select: none; -} -.dropdown.dropdown--active > .dropdown__container { - opacity: 1; -} -.dropdown.dropdown--active > .dropdown__container > .container > .row > .dropdown__content { - pointer-events: all; -} -@media all and (min-width: 991px) { - .dropdown .dropdown__container:before { - height: 0.92857143em; - width: 100%; - content: ''; - display: block; - } - .dropdown .dropdown__content.dropdown__content--md { - padding: 2.78571429em; - } - .dropdown .dropdown__content.dropdown__content--lg { - padding: 3.71428571em; - } - .dropdown .dropdown__content.dropdown__content--xlg { - padding: 4.64285714em; - } -} -@media all and (max-width: 767px) { - .dropdown .dropdown__container { - min-width: 100%; - position: relative; - display: none; - } - .dropdown .dropdown__content { - padding: 1.85714286em; - left: 0 !important; - } - .dropdown.dropdown--active > .dropdown__container { - display: block; - } -} -body.dropdowns--hover .dropdown:not(.dropdown--click):hover > .dropdown__container { - opacity: 1; -} -body.dropdowns--hover .dropdown:not(.dropdown--click):hover > .dropdown__container:before { - pointer-events: all; -} -body.dropdowns--hover .dropdown:not(.dropdown--click):hover > .dropdown__container .dropdown__content { - pointer-events: all; -} -body:not(.dropdowns--hover) .dropdown.dropdown--hover:hover > .dropdown__container { - opacity: 1; -} -body:not(.dropdowns--hover) .dropdown.dropdown--hover:hover > .dropdown__container:before { - pointer-events: all; -} -body:not(.dropdowns--hover) .dropdown.dropdown--hover:hover > .dropdown__container .dropdown__content { - pointer-events: all; -} -@media all and (max-width: 990px) { - body.dropdowns--hover .dropdown:not(.dropdown--click).dropdown--active > .dropdown__container { - display: block; - } - body.dropdowns--hover .dropdown:not(.dropdown--click).dropdown--active > .dropdown__container:before { - pointer-events: all; - } -} -@media all and (max-width: 767px) { - .dropdown.dropdown--absolute .dropdown__container { - position: absolute; - } -} -/**! 12. Form Elements **/ -form { - max-width: 100%; -} -form + form { - margin-top: 30px; -} -form:before, -form:after { - content: "."; - display: block; - height: 0; - overflow: hidden; -} -form:after { - clear: both; -} -label { - margin: 0; - font-size: 1.14285714em; - font-weight: 400; -} -input[type], -textarea, -select { - -webkit-appearance: none; - background: #fcfcfc; - padding: 0.46428571em; - border-radius: 6px; - border: 1px solid #ececec; -} -input[type]:focus, -textarea:focus, -select:focus { - outline: none; -} -input[type]:active, -textarea:active, -select:active { - outline: none; -} -input[type]::-webkit-input-placeholder, -textarea::-webkit-input-placeholder, -select::-webkit-input-placeholder { - color: #b3b3b3; - font-size: 1.14285714em; -} -input[type]:-moz-placeholder, -textarea:-moz-placeholder, -select:-moz-placeholder { - /* Firefox 18- */ - color: #b3b3b3; - font-size: 1.14285714em; -} -input[type]::-moz-placeholder, -textarea::-moz-placeholder, -select::-moz-placeholder { - /* Firefox 19+ */ - color: #b3b3b3; - font-size: 1.14285714em; -} -input[type]:-ms-input-placeholder, -textarea:-ms-input-placeholder, -select:-ms-input-placeholder { - color: #b3b3b3; - font-size: 1.14285714em; -} -input[type="image"] { - border: none; - padding: none; - width: auto; -} -textarea { - display: block; - width: 100%; - max-width: 100%; -} -select { - cursor: pointer; - padding-right: 1.85714286em; - -webkit-appearance: none; -} -select::ms-expand { - display: none; -} -input[type="submit"] { - background: none; - outline: none; - border: none; - background: #f18f01; - padding: 0.46428571em 2.78571429em 0.46428571em 2.78571429em; - color: #fff; -} -@keyframes load { - 0% { - opacity: 0; - width: 0; - } - 50% { - width: 100%; - opacity: .8; - left: 0; - } - 100% { - left: 100%; - opacity: 0; - } -} -button { - background: none; -} -button[type="submit"].btn--loading { - position: relative; - overflow: hidden; - pointer-events: none; - color: rgba(0, 0, 0, 0); -} -button[type="submit"].btn--loading * { - opacity: 0; -} -button[type="submit"].btn--loading:after { - content: ''; - position: absolute; - width: 0; - height: 100%; - background: #ddd; - animation: load 1.5s ease-out infinite; - left: 0; - top: 0; -} -button[type="submit"].btn--loading .btn__text { - opacity: 0; -} -button:focus { - outline: none !important; -} -button.bg--error { - color: #fff; -} -.input-icon { - position: relative; -} -.input-icon i { - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; - cursor: default; - position: absolute; -} -.input-checkbox, -.input-radio, -.input-select { - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; - display: inline-block; -} -.input-checkbox input, -.input-radio input, -.input-select input { - opacity: 0 !important; - height: 0 !important; - width: 0 !important; - position: absolute !important; -} -.input-checkbox label, -.input-radio label, -.input-select label { - display: block !important; - cursor: pointer; -} -.input-checkbox { - padding: 0; -} -.input-checkbox label { - width: 1.85714286em; - height: 1.85714286em; - border-radius: 6px; - background: #000; -} -.input-radio { - padding: 0; -} -.input-radio label { - width: 1.85714286em; - height: 1.85714286em; - border-radius: 50%; - background: #000; -} -.input-select { - position: relative; -} -.input-select i { - position: absolute; - top: 50%; - transform: translateY(-50%); - -webkit-transform: translateY(-50%); - right: 1em; - font-size: .87em; -} -.input-file { - position: relative; - display: inline-block; -} -.input-file input { - display: none; -} -.form-error { - margin-top: 1.5625em; - padding: 0.78125em; - background: #D84D4D; - color: #fff; - position: fixed; - min-width: 350px; - left: 50%; - bottom: 1.5625em; - transform: translate3d(-50%, 0, 0); - -webkit-transform: translate3d(-50%, 0, 0); - z-index: 999; - box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); - box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1); -} -.form-success { - margin-top: 1.5625em; - padding: 0.78125em; - background: #1DC020; - color: #fff; - position: fixed; - min-width: 350px; - left: 50%; - bottom: 1.5625em; - transform: translate3d(-50%, 0, 0); - -webkit-transform: translate3d(-50%, 0, 0); - z-index: 999; - box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); - box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1); -} -.attempted-submit .field-error { - border-color: #D84D4D !important; -} -.attempted-submit div.recaptcha.field-error { - border-color: #D84D4D !important; - border-style: solid; - border: 1px solid; - border-radius: 5px; - padding: 5px; -} -div.recaptcha iframe { - min-height: 0; -} -/**! 13. Accordions **/ -.accordion li .accordion__title, -.accordion li .accordion__content, -.accordion li .accordion__content * { - transition: 0.3s linear; - -webkit-transition: 0.3s linear; - -moz-transition: 0.3s linear; -} -.accordion li .accordion__title { - cursor: pointer; - padding: 0.46428571em 0.92857143em; - border: 1px solid #ececec; - border-bottom: none; - background: none; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; -} -.accordion li:last-child .accordion__title { - border-bottom: 1px solid #ececec; -} -.accordion li .accordion__content { - opacity: 0; - visibility: hidden; - max-height: 0; -} -.accordion li .accordion__content > * { - display: none; -} -.accordion li .accordion__content > *:first-child { - padding-top: 0; -} -.accordion li .accordion__content > *:last-child { - padding-bottom: 0; -} -.accordion li.active .accordion__title { - background: #f18f01; - border-bottom: 1px solid #ececec; -} -.accordion li.active .accordion__content { - opacity: 1; - visibility: visible; - max-height: 500px; -} -.accordion li.active .accordion__content > * { - display: inline-block; -} -/**! 14. Breadcrumbs **/ -.breadcrumb { - padding: 0; - margin: 0; - background: none; - display: inline-block; -} -.breadcrumb li { - font-size: 1em; -} -.breadcrumb li + li:before { - padding: 0 0.46428571em; -} -/**! 15. Pie Charts **/ -.radial { - position: relative; -} -.radial .radial__label { - position: absolute; - top: 50%; - left: 50%; - transform: translateX(-50%) translateY(-50%); - -webkit-transform: translateX(-50%) translateY(-50%); - margin-bottom: 0; -} -/**! 16. Tabs **/ -.tabs { - display: block; - margin-bottom: 0; -} -.tabs > li { - display: inline-block; - opacity: .5; - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; -} -.tabs > .active, -.tabs:hover { - opacity: 1; -} -.tabs .tab__title { - cursor: pointer; -} -.tabs .tab__title:not(.btn) { - padding: 0 1.85714286em; -} -.tabs li:first-child .tab__title:not(.btn) { - padding-left: 0; -} -.tabs .tab__content { - display: none; -} -.tabs-content { - margin-top: 1em; -} -.tabs-content li > .tab__content { - width: 100%; - display: none; -} -.tabs-content > .active > .tab__content { - display: block; -} -.tabs-container[data-content-align="left"] .tabs-content { - text-align: left; -} -@media all and (max-width: 767px) { - .tabs-content > li:not(.active) .tab__content { - display: none !important; - } -} -/**! 17. Boxes **/ -.boxed { - position: relative; - overflow: hidden; - padding: 1.85714286em; - margin-bottom: 30px; -} -.boxed.boxed--lg { - padding: 2.78571429em; -} -.boxed.boxed--sm { - padding: 1.23809524em; -} -.boxed.boxed--border { - border: 1px solid #ececec; -} -.boxed > div[class*='col-']:first-child:not(.boxed) { - padding-left: 0; -} -.boxed > div[class*='col-']:last-child:not(.boxed) { - padding-right: 0; -} -img + .boxed { - margin-top: -1.85714286em; -} -@media all and (max-width: 767px) { - .boxed { - padding: 1.23809524em; - margin-bottom: 15px; - } - .boxed.boxed--lg { - padding: 1.23809524em; - } - .boxed div[class*='col-']:not(.boxed) { - padding: 0; - } - .boxed:last-child { - margin-bottom: 15px; - } -} -/**! 18. Sliders Flickity **/ -.slides:not(.flickity-enabled) li.imagebg:not(:first-child) { - display: none; -} -.slides:not(.flickity-enabled) li.imagebg:first-child { - background: #252525; - animation: backgroundLoad .5s ease alternate infinite; -} -.slides:not(.flickity-enabled) li.imagebg:first-child .container { - opacity: 0; -} -@keyframes backgroundLoad { - 0% { - background: #252525; - } - 100% { - background: #3f3f3f; - } -} -.slider.height-10 { - height: auto; -} -.slider.height-10 .slides .flickity-slider > li { - height: 10vh; - padding: 0; -} -@media all and (min-width: 768px) { - .slider.height-10 .slides li.imagebg { - min-height: 10vh; - } -} -.slider.height-20 { - height: auto; -} -.slider.height-20 .slides .flickity-slider > li { - height: 20vh; - padding: 0; -} -@media all and (min-width: 768px) { - .slider.height-20 .slides li.imagebg { - min-height: 20vh; - } -} -.slider.height-30 { - height: auto; -} -.slider.height-30 .slides .flickity-slider > li { - height: 30vh; - padding: 0; -} -@media all and (min-width: 768px) { - .slider.height-30 .slides li.imagebg { - min-height: 30vh; - } -} -.slider.height-40 { - height: auto; -} -.slider.height-40 .slides .flickity-slider > li { - height: 40vh; - padding: 0; -} -@media all and (min-width: 768px) { - .slider.height-40 .slides li.imagebg { - min-height: 40vh; - } -} -.slider.height-50 { - height: auto; -} -.slider.height-50 .slides .flickity-slider > li { - height: 50vh; - padding: 0; -} -@media all and (min-width: 768px) { - .slider.height-50 .slides li.imagebg { - min-height: 50vh; - } -} -.slider.height-60 { - height: auto; -} -.slider.height-60 .slides .flickity-slider > li { - height: 60vh; - padding: 0; -} -@media all and (min-width: 768px) { - .slider.height-60 .slides li.imagebg { - min-height: 60vh; - } -} -.slider.height-70 { - height: auto; -} -.slider.height-70 .slides .flickity-slider > li { - height: 70vh; - padding: 0; -} -@media all and (min-width: 768px) { - .slider.height-70 .slides li.imagebg { - min-height: 70vh; - } -} -.slider.height-80 { - height: auto; -} -.slider.height-80 .slides .flickity-slider > li { - height: 80vh; - padding: 0; -} -@media all and (min-width: 768px) { - .slider.height-80 .slides li.imagebg { - min-height: 80vh; - } -} -.slider.height-90 { - height: auto; -} -.slider.height-90 .slides .flickity-slider > li { - height: 90vh; - padding: 0; -} -@media all and (min-width: 768px) { - .slider.height-90 .slides li.imagebg { - min-height: 90vh; - } -} -.slider.height-100 { - height: auto; -} -.slider.height-100 .slides .flickity-slider > li { - height: 100vh; - padding: 0; -} -@media all and (min-width: 768px) { - .slider.height-100 .slides li.imagebg { - min-height: 100vh; - } -} -.slider .slides .flickity-slider > li:not([class*='col-']) { - width: 100%; -} -.slider .slides.slides--gapless li[class*='col-'] { - padding-left: 0; - padding-right: 0; -} -.slider[data-arrows="true"].slider--arrows-hover:not(:hover) .flickity-prev-next-button { - opacity: 0; -} -.slider[data-paging="true"]:not(section) { - margin-bottom: 3.71428571em; -} -.slider[data-paging="true"]:not(section) .flickity-page-dots { - bottom: -3.71428571em; -} -.slider[data-paging="true"]:not([class*='text-']) .flickity-page-dots { - text-align: center; -} -.slider[data-children="1"] .flickity-prev-next-button { - display: none; -} -.slider:not([data-paging="true"]) .slides { - margin: 0; -} -.slider.controls--dark .flickity-page-dots .dot { - background: #252525; -} -.slider.controls--dark .flickity-prev-next-button:before { - color: #252525; -} -section.slider { - padding: 0; -} -section.slider.height-10 { - height: auto; -} -section.slider.height-10 .slides .flickity-slider > li { - height: 10vh; - padding: 0; -} -@media all and (min-width: 768px) { - section.slider.height-10 .slides li.imagebg { - min-height: 10vh; - } -} -section.slider.height-20 { - height: auto; -} -section.slider.height-20 .slides .flickity-slider > li { - height: 20vh; - padding: 0; -} -@media all and (min-width: 768px) { - section.slider.height-20 .slides li.imagebg { - min-height: 20vh; - } -} -section.slider.height-30 { - height: auto; -} -section.slider.height-30 .slides .flickity-slider > li { - height: 30vh; - padding: 0; -} -@media all and (min-width: 768px) { - section.slider.height-30 .slides li.imagebg { - min-height: 30vh; - } -} -section.slider.height-40 { - height: auto; -} -section.slider.height-40 .slides .flickity-slider > li { - height: 40vh; - padding: 0; -} -@media all and (min-width: 768px) { - section.slider.height-40 .slides li.imagebg { - min-height: 40vh; - } -} -section.slider.height-50 { - height: auto; -} -section.slider.height-50 .slides .flickity-slider > li { - height: 50vh; - padding: 0; -} -@media all and (min-width: 768px) { - section.slider.height-50 .slides li.imagebg { - min-height: 50vh; - } -} -section.slider.height-60 { - height: auto; -} -section.slider.height-60 .slides .flickity-slider > li { - height: 60vh; - padding: 0; -} -@media all and (min-width: 768px) { - section.slider.height-60 .slides li.imagebg { - min-height: 60vh; - } -} -section.slider.height-70 { - height: auto; -} -section.slider.height-70 .slides .flickity-slider > li { - height: 70vh; - padding: 0; -} -@media all and (min-width: 768px) { - section.slider.height-70 .slides li.imagebg { - min-height: 70vh; - } -} -section.slider.height-80 { - height: auto; -} -section.slider.height-80 .slides .flickity-slider > li { - height: 80vh; - padding: 0; -} -@media all and (min-width: 768px) { - section.slider.height-80 .slides li.imagebg { - min-height: 80vh; - } -} -section.slider.height-90 { - height: auto; -} -section.slider.height-90 .slides .flickity-slider > li { - height: 90vh; - padding: 0; -} -@media all and (min-width: 768px) { - section.slider.height-90 .slides li.imagebg { - min-height: 90vh; - } -} -section.slider.height-100 { - height: auto; -} -section.slider.height-100 .slides .flickity-slider > li { - height: 100vh; - padding: 0; -} -@media all and (min-width: 768px) { - section.slider.height-100 .slides li.imagebg { - min-height: 100vh; - } -} -section.slider[data-paging="true"] .flickity-page-dots { - bottom: 1.85714286em; -} -section.slider:not(.image--light)[data-paging="true"] .flickity-page-dots .dot { - background: #fff; -} -section.slider .slides { - margin: 0; -} -@media all and (max-width: 767px) { - section.slider[class*='height-'] .slides .flickity-slider > li { - height: auto; - padding: 7.42857143em 0; - } - section.slider.space--lg .slides .flickity-slider > li { - padding: 11.14285714em 0; - } - section.slider.space--xlg .slides .flickity-slider > li { - padding: 11.14285714em 0; - } -} -section.bg--dark .slider[data-paging="true"] .flickity-page-dots .dot, -section.bg--primary .slider[data-paging="true"] .flickity-page-dots .dot { - background: #fff; -} -.flickity-page-dots .dot { - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; - width: 8px; - height: 8px; - border-radius: 50%; - background: #252525; - border: none; - margin: 0 0.46428571em; -} -.flickity-page-dots .dot:hover:not(.is-selected) { - opacity: .6; -} -.text-center .flickity-page-dots, -section.slider .flickity-page-dots { - text-align: center; -} -.flickity-prev-next-button svg { - display: none; -} -.flickity-prev-next-button:before { - font-family: 'stack-interface'; - content: "\e80c"; - font-size: 1em; - font-weight: normal; -} -.flickity-prev-next-button.previous:before { - content: "\e80b"; -} -.imagebg:not(.image--light) .flickity-page-dots .dot, -.bg--dark .flickity-page-dots .dot { - background: #fff; -} -/**! 19. Hover Elements **/ -.hover-element { - position: relative; - overflow: hidden; - margin-bottom: 30px; -} -.hover-element * { - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; -} -.hover-element .hover-element__reveal { - position: absolute; - top: 0; - left: 0; - opacity: 0; - width: 100%; - height: 100%; -} -.hover-element .hover-element__reveal .boxed { - height: 100%; -} -.hover-element:hover .hover-element__reveal, -.hover-element.hover--active .hover-element__reveal { - opacity: 1; -} -.hover-element img { - margin-bottom: 0; -} -@media all and (max-width: 1024px) { - .hover-element { - cursor: pointer; - } -} -.row:last-child div[class*='col-']:last-child .hover-element { - margin-bottom: 0; -} -/**! 20. Masonry **/ -.masonry .masonry__container.masonry--active .masonry__item { - opacity: 1; - pointer-events: initial; -} -.masonry .masonry__container .masonry__item { - opacity: 0; - pointer-events: none; -} -.masonry .masonry__filters li { - display: inline-block; - cursor: pointer; - text-transform: capitalize; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; -} -.masonry .masonry__filters li.active { - cursor: default; -} -.masonry.masonry--gapless .masonry__item { - padding: 0 !important; - margin-bottom: 0; -} -/**! 21. Modals **/ -.modal-instance .modal-body { - display: none; -} -.modal-container { - transition: 0.3s linear; - -webkit-transition: 0.3s linear; - -moz-transition: 0.3s linear; - padding: 0; - visibility: hidden; - opacity: 0; - z-index: 999; - pointer-events: none; - position: fixed; - width: 100%; - height: 100%; - top: 0; - left: 0; -} -.modal-container.modal-active { - opacity: 1; - visibility: visible; - pointer-events: all; -} -.modal-container:before { - background: rgba(0, 0, 0, 0.85); - content: ''; - position: fixed; - width: 100%; - height: 100%; - top: 0; - left: 0; - z-index: 1; -} -.modal-container .modal-content { - backface-visibility: hidden; - position: fixed; - z-index: 2; - top: 50%; - left: 50%; - max-height: 100%; - overflow-y: scroll; - border: none; - transform: translate3d(-50%, -50%, 0); - -webkit-transform: translate3d(-50%, -50%, 0); - padding: 0; - border-radius: 0; - box-shadow: none; -} -.modal-container .modal-content:not(.height--natural) { - width: 50%; - height: 50%; -} -.modal-container .modal-content .modal-close-cross { - cursor: pointer; - position: absolute; - opacity: .5; - transition: 0.1s linear; - -webkit-transition: 0.1s linear; - -moz-transition: 0.1s linear; - top: 1em; - right: 1em; - z-index: 99; -} -.modal-container .modal-content .modal-close-cross:before { - content: '\00D7'; - font-size: 1.5em; -} -.modal-container .modal-content .modal-close-cross:hover { - opacity: 1; -} -.modal-container .modal-content.imagebg:not(.image--light) .modal-close-cross:before { - color: #fff; -} -.modal-container .modal-content iframe { - width: 100%; - outline: none; - border: none; - height: 100%; - backface-visibility: hidden; -} -.modal-container .modal-content iframe:first-child + .modal-close-cross:last-child { - top: -3.71428571em; -} -@media all and (max-width: 767px) { - .modal-container .modal-content { - width: 97% !important; - height: auto !important; - padding-top: 2em; - padding-bottom: 2em; - } -} -/**! 22. Maps **/ -.map-container { - position: relative; - overflow: hidden; -} -.map-container iframe, -.map-container .map-canvas { - position: absolute; - width: 100%; - height: 100%; - top: 0; -} -/**! 23. Parallax **/ -.parallax > .background-image-holder, -.parallax .slides li > .background-image-holder { - height: 100%; - min-height: 100vh; - top: -50vh; - transition: opacity 0.3s ease !important; - -webkit-transition: opacity 0.3s ease !important; - -webkit-transform-style: preserve-3d; -} -.parallax:first-child .slides li > .background-image-holder, -.parallax:first-child .background-image-holder { - top: 0; -} -.main-container > a:first-child + .parallax .background-image-holder { - top: 0; -} -@media all and (max-width: 1024px) { - .parallax > .background-image-holder, - .parallax .slides li > .background-image-holder { - -webkit-transition: transform 0.016s linear !important; - transition: transform 0.016s linear !important; - } - .parallax.parallax-disable-mobile .background-image-holder, - .parallax.parallax-disable-mobile .slides li > .background-image-holder { - top: 0 !important; - transform: none !important; - } -} -/**! 24. Notifications **/ -.notification { - max-width: 100%; - box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); - position: fixed; - z-index: 99; - pointer-events: none; - padding: 0; - margin: 1em; - opacity: 0; - transition: 0.3s linear; - -webkit-transition: 0.3s linear; - -moz-transition: 0.3s linear; -} -.notification:not([class*='bg-']) { - background: #fff; -} -.notification[class*='col-'] { - min-width: 400px; -} -.notification .notification-close-cross { - position: absolute; - top: 1em; - z-index: 99; - right: 1em; - cursor: pointer; - transition: 0.1s linear; - -webkit-transition: 0.1s linear; - -moz-transition: 0.1s linear; - opacity: .7; -} -.notification .notification-close-cross:before { - content: '\00D7'; - font-size: 1.5em; -} -.notification .notification-close-cross:hover { - opacity: 1; -} -.notification.notification--reveal { - z-index: 99; - pointer-events: initial; -} -.notification.notification--reveal[data-animation="from-bottom"] { - animation: from-bottom 0.3s linear 0s forwards; - -webkit-animation: from-bottom 0.3s linear 0s forwards; - -moz-animation: from-bottom 0.3s linear 0s forwards; -} -.notification.notification--reveal[data-animation="from-top"] { - animation: from-top 0.3s linear 0s forwards; - -webkit-animation: from-top 0.3s linear 0s forwards; - -moz-animation: from-top 0.3s linear 0s forwards; -} -.notification.notification--reveal[data-animation="from-left"] { - animation: from-left 0.3s linear 0s forwards; - -webkit-animation: from-left 0.3s linear 0s forwards; - -moz-animation: from-left 0.3s linear 0s forwards; -} -.notification.notification--reveal[data-animation="from-right"] { - animation: from-right 0.3s linear 0s forwards; - -webkit-animation: from-right 0.3s linear 0s forwards; - -moz-animation: from-right 0.3s linear 0s forwards; -} -.notification.notification--dismissed { - animation: fade-out 0.4s linear 0s forwards !important; - -webkit-animation: fade-out 0.4s linear 0s forwards !important; - -moz-animation: fade-out 0.4s linear 0s forwards !important; - pointer-events: none; -} -.bg--dark + .notification-close-cross:before { - color: #fff; -} -a[data-notification-link] { - text-decoration: none; -} -a[data-notification-link]:hover { - text-decoration: none; -} -@media all and (max-width: 767px) { - .notification[class*='col-'] { - min-width: 0; - } -} -@keyframes from-bottom { - from { - transform: translate3d(0, 100%, 0); - -webkit-transform: translate3d(0, 100%, 0); - opacity: 0; - } - to { - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); - opacity: 1; - } -} -@-moz-keyframes from-bottom { - from { - transform: translate3d(0, 100%, 0); - -webkit-transform: translate3d(0, 100%, 0); - opacity: 0; - } - to { - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); - opacity: 1; - } -} -@-webkit-keyframes from-bottom { - from { - transform: translate3d(0, 100%, 0); - -webkit-transform: translate3d(0, 100%, 0); - opacity: 0; - } - to { - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); - opacity: 1; - } -} -@keyframes from-top { - from { - transform: translate3d(0, -100%, 0); - -webkit-transform: translate3d(0, -100%, 0); - opacity: 0; - } - to { - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); - opacity: 1; - } -} -@-moz-keyframes from-top { - from { - transform: translate3d(0, -100%, 0); - -webkit-transform: translate3d(0, -100%, 0); - opacity: 0; - } - to { - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); - opacity: 1; - } -} -@-webkit-keyframes from-top { - from { - transform: translate3d(0, -100%, 0); - -webkit-transform: translate3d(0, -100%, 0); - opacity: 0; - } - to { - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); - opacity: 1; - } -} -@keyframes from-left { - from { - transform: translate3d(-100%, 0, 0); - -webkit-transform: translate3d(-100%, 0, 0); - opacity: 0; - } - to { - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); - opacity: 1; - } -} -@-moz-keyframes from-left { - from { - transform: translate3d(-100%, 0, 0); - -webkit-transform: translate3d(-100%, 0, 0); - opacity: 0; - } - to { - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); - opacity: 1; - } -} -@-webkit-keyframes from-left { - from { - transform: translate3d(-100%, 0, 0); - -webkit-transform: translate3d(-100%, 0, 0); - opacity: 0; - } - to { - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); - opacity: 1; - } -} -@keyframes from-right { - from { - transform: translate3d(100%, 0, 0); - -webkit-transform: translate3d(100%, 0, 0); - opacity: 1; - } - to { - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); - opacity: 1; - } -} -@-moz-keyframes from-right { - from { - transform: translate3d(100%, 0, 0); - -webkit-transform: translate3d(100%, 0, 0); - opacity: 0; - } - to { - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); - opacity: 1; - } -} -@-webkit-keyframes from-right { - from { - transform: translate3d(100%, 0, 0); - -webkit-transform: translate3d(100%, 0, 0); - opacity: 0; - } - to { - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); - opacity: 1; - } -} -@keyframes fade-out { - 0% { - opacity: 1; - } - 100% { - opacity: 0; - } -} -@-webkit-keyframes fade-out { - 0% { - opacity: 1; - } - 100% { - opacity: 0; - } -} -@-moz-keyframes fade-out { - 0% { - opacity: 1; - } - 100% { - opacity: 0; - } -} -/**! 25. Video **/ -iframe { - width: 100%; - min-height: 350px; - border: none; -} -@media all and (max-width: 767px) { - iframe { - min-height: 220px; - } -} -.videobg { - background: #252525; - position: relative; - overflow: hidden; -} -.videobg .container, -.videobg .background-image-holder { - opacity: 0; - transition: 0.3s linear; - -webkit-transition: 0.3s linear; - -moz-transition: 0.3s linear; -} -.videobg .background-image-holder { - opacity: 0 !important; -} -.videobg.video-active .container { - opacity: 1; -} -.videobg.video-active .loading-indicator { - opacity: 0; - visibility: hidden; -} -.videobg video { - object-fit: cover; - height: 100%; - min-width: 100%; - position: absolute; - top: 0; - z-index: 0 !important; - left: 0; -} -@media all and (max-width: 1024px) { - .videobg .background-image-holder, - .videobg .container { - opacity: 1 !important; - } - .videobg .loading-indicator { - display: none; - } - .videobg video { - display: none; - } -} -.youtube-background { - position: absolute; - height: 100%; - width: 100%; - top: 0; - z-index: 0 !important; -} -.youtube-background .mb_YTPBar { - opacity: 0; - height: 0; - visibility: hidden; -} -@media all and (max-width: 1024px) { - .youtube-background { - display: none; - } -} -.loading-indicator { - position: absolute !important; - top: 50%; - left: 50%; - z-index: 99 !important; - width: 50px; - height: 50px; - margin-top: -25px; - margin-left: -25px; - background-color: #fff; - border-radius: 100%; - -webkit-animation: loading-spinner 1s infinite ease-in-out; - animation: loading-spinner 1s infinite ease-in-out; - transition: 0.3s linear; - -webkit-transition: 0.3s linear; - -moz-transition: 0.3s linear; -} -@-webkit-keyframes loading-spinner { - 0% { - -webkit-transform: scale(0); - } - 100% { - -webkit-transform: scale(1); - opacity: 0; - } -} -@keyframes loading-spinner { - 0% { - -webkit-transform: scale(0); - transform: scale(0); - } - 100% { - -webkit-transform: scale(1); - transform: scale(1); - opacity: 0; - } -} -.video-cover { - position: relative; -} -.video-cover video { - max-width: 100%; -} -.video-cover iframe { - background: #252525; -} -.video-cover .background-image-holder { - z-index: 3; -} -.video-cover .video-play-icon { - position: absolute; - top: 50%; - left: 50%; - transform: translate3d(-50%, -50%, 0); - -webkit-transform: translate3d(-50%, -50%, 0); -} -.video-cover .video-play-icon, -.video-cover .background-image-holder { - transition: 0.3s linear; - -webkit-transition: 0.3s linear; - -moz-transition: 0.3s linear; -} -.video-cover.reveal-video .video-play-icon, -.video-cover.reveal-video .background-image-holder { - opacity: 0 !important; - pointer-events: none; -} -.video-cover[data-scrim-bottom]:before, -.video-cover[data-overlay]:before, -.video-cover[data-scrim-top]:before { - transition: 0.3s linear; - -webkit-transition: 0.3s linear; - -moz-transition: 0.3s linear; - z-index: 4; -} -.video-cover.reveal-video[data-scrim-bottom]:before, -.video-cover.reveal-video[data-overlay]:before, -.video-cover.reveal-video[data-scrim-top]:before { - opacity: 0; - pointer-events: none; -} -.video-play-icon { - width: 7.42857143em; - height: 7.42857143em; - border-radius: 50%; - position: relative; - z-index: 4; - display: inline-block; - border: 2px solid #ffffff; - cursor: pointer; - background: #ffffff; -} -.video-play-icon.video-play-icon--sm { - width: 3.71428571em; - height: 3.71428571em; -} -.video-play-icon.video-play-icon--sm:before { - border-width: 4px 0 4px 9px; -} -.video-play-icon.video-play-icon--xs { - width: 1.85714286em; - height: 1.85714286em; -} -.video-play-icon.video-play-icon--xs:before { - border-width: 3px 0 3px 6px; - margin-left: -3px; -} -.video-play-icon.bg--primary:before { - border-color: transparent transparent transparent #fff; -} -.video-play-icon:before { - position: absolute; - top: 50%; - margin-top: -5px; - left: 50%; - margin-left: -4px; - content: ''; - width: 0; - height: 0; - border-style: solid; - border-width: 6px 0 6px 12px; - border-color: transparent transparent transparent #ffffff; - border-color: transparent transparent transparent #808080; -} -.video-play-icon.video-play-icon--dark { - border-color: #252525; - background: #252525; -} -.video-play-icon.video-play-icon--dark:before { - border-color: transparent transparent transparent #252525; -} -.video-play-icon.video-play-icon--dark:before { - border-color: transparent transparent transparent #fff; -} -@media all and (max-width: 767px) { - .video-play-icon { - width: 4.95238095em; - height: 4.95238095em; - } -} -div[class*='col-'][class*='-12']:not([class*='xs-12']) .video-cover iframe { - min-height: 550px; -} -@media all and (max-width: 990px) { - div[class*='col-'][class*='-12']:not([class*='xs-12']) .video-cover iframe { - min-height: 350px; - } -} -div[class*='col-'][class*='-10'] .video-cover iframe { - min-height: 450px; -} -div[class*='col-'][class*='-8'] .video-cover iframe { - min-height: 400px; -} -div[class*='col-'][class*='-6'] .video-cover iframe { - min-height: 350px; -} -@media all and (max-width: 1200px) { - div[class*='col-'][class*='-6'] .video-cover iframe { - min-height: 300px; - } -} -@media all and (max-width: 990px) { - div[class*='col-'][class*='-6'] .video-cover iframe { - min-height: 220px; - } -} -@media all and (max-width: 767px) { - div[class*='col-'] .video-cover iframe { - min-height: 220px !important; - } -} -.modal-container video { - max-width: 100%; -} -/**! 26. Colors **/ -body { - background: #ffffff; -} -.color--primary { - color: #f18f01 !important; -} -a { - color: #f18f01; -} -.color--primary-1 { - color: #006e90 !important; -} -.color--primary-2 { - color: #143642 !important; -} -.color--white { - color: #fff; -} -.color--dark { - color: #252525; -} -.color--success { - color: #4ebf56; -} -.color--error { - color: #e23636; -} -.bg--dark { - background: #252525; -} -.bg--dark:not(.nav-bar):not(.bar) { - color: #ffffff; -} -.bg--dark:not(.nav-bar):not(.bar) h1, -.bg--dark:not(.nav-bar):not(.bar) h2, -.bg--dark:not(.nav-bar):not(.bar) h3, -.bg--dark:not(.nav-bar):not(.bar) h4, -.bg--dark:not(.nav-bar):not(.bar) h5, -.bg--dark:not(.nav-bar):not(.bar) h6, -.bg--dark:not(.nav-bar):not(.bar) i, -.bg--dark:not(.nav-bar):not(.bar) span:not(.btn__text), -.bg--dark:not(.nav-bar):not(.bar) p { - color: #ffffff; -} -.bg--dark:not(.nav-bar):not(.bar) a:not(.btn) { - color: #fff; -} -.bg--site { - background: #ffffff; -} -.bg--secondary { - background: #fafafa; -} -.bg--primary { - background: #f18f01; -} -.bg--primary p, -.bg--primary span, -.bg--primary ul, -.bg--primary a:not(.btn) { - color: #fff; -} -.bg--primary h1, -.bg--primary h2, -.bg--primary h3, -.bg--primary h4, -.bg--primary h5, -.bg--primary h6, -.bg--primary i { - color: #fff; -} -.bg--primary .color--primary { - color: #fff !important; -} -.bg--white { - background: #fff; -} -.bg--white p, -.bg--white span, -.bg--white ul, -.bg--white a:not(.btn) { - color: #666666; -} -.bg--white h1, -.bg--white h2, -.bg--white h3, -.bg--white h4, -.bg--white h5, -.bg--white h6, -.bg--white i { - color: #252525; -} -.bg--error { - background: #e23636; -} -.bg--success { - background: #4ebf56; -} -.imagebg:not(.image--light) .bg--white p, -.imagebg:not(.image--light) .bg--white span, -.imagebg:not(.image--light) .bg--white ul, -.imagebg:not(.image--light) .bg--white a:not(.btn) { - color: #666666; -} -.imagebg:not(.image--light) .bg--white h1, -.imagebg:not(.image--light) .bg--white h2, -.imagebg:not(.image--light) .bg--white h3, -.imagebg:not(.image--light) .bg--white h4, -.imagebg:not(.image--light) .bg--white h5, -.imagebg:not(.image--light) .bg--white h6, -.imagebg:not(.image--light) .bg--white i { - color: #252525; -} -.imagebg:not(.image--light) .bg--secondary { - background: rgba(250, 250, 250, 0.2); -} -.bg--primary-1 { - background: #006e90; -} -.bg--primary-1 p, -.bg--primary-1 span, -.bg--primary-1 ul, -.bg--primary-1 a:not(.btn) { - color: #fff; -} -.bg--primary-1 h1, -.bg--primary-1 h2, -.bg--primary-1 h3, -.bg--primary-1 h4, -.bg--primary-1 h5, -.bg--primary-1 h6, -.bg--primary-1 i { - color: #fff; -} -.bg--primary-2 { - background: #143642; -} -.bg--primary-2 p, -.bg--primary-2 span, -.bg--primary-2 ul, -.bg--primary-2 a:not(.btn) { - color: #fff; -} -.bg--primary-2 h1, -.bg--primary-2 h2, -.bg--primary-2 h3, -.bg--primary-2 h4, -.bg--primary-2 h5, -.bg--primary-2 h6, -.bg--primary-2 i { - color: #fff; -} -.image-bg:not(.image-light) *:not(a) { - color: #fff; -} -.color--facebook { - color: #3b5998; -} -.color--twitter { - color: #00aced; -} -.color--googleplus { - color: #dd4b39; -} -.color--instagram { - color: #125688; -} -.color--pinterest { - color: #cb2027; -} -.color--dribbble { - color: #ea4c89; -} -.color--behance { - color: #053eff; -} -.bg--facebook { - background: #3b5998; - color: #fff; -} -.bg--twitter { - background: #00aced; - color: #fff; -} -.bg--googleplus { - background: #dd4b39; - color: #fff; -} -.bg--instagram { - background: #125688; - color: #fff; -} -.bg--pinterest { - background: #cb2027; - color: #fff; -} -.bg--dribbble { - background: #ea4c89; - color: #fff; -} -.bg--behance { - background: #053eff; - color: #fff; -} -/**! 27. Image Blocks **/ -.imageblock { - position: relative; - padding: 0; -} -.imageblock > .container, -.imageblock > div[class*='col-']:not(.imageblock__content) { - padding-top: 7.42857143em; - padding-bottom: 7.42857143em; - float: none; - overflow: hidden; -} -.imageblock.imageblock--lg > .container, -.imageblock.imageblock--lg > div[class*='col-']:not(.imageblock__content) { - padding-top: 9.28571429em; - padding-bottom: 9.28571429em; - float: none; - overflow: hidden; -} -.imageblock .imageblock__content { - position: absolute; - height: 100%; - top: 0; - z-index: 2; - padding: 0; -} -.imageblock .imageblock__content .slider { - position: absolute; - width: 100%; - height: 100%; - top: 0; -} -.imageblock .imageblock__content .slider .slides > li { - padding: 0; - min-height: 100%; - position: absolute !important; -} -.imageblock.allow-overflow .imageblock__content { - overflow: visible; -} -@media all and (max-height: 728px) { - .imageblock > .container, - .imageblock > div[class*='col-']:not(.imageblock__content) { - padding-top: 3.71428571em; - padding-bottom: 3.71428571em; - } -} -@media all and (max-width: 767px) { - .imageblock[class*='space-'] { - padding-bottom: 0; - padding-top: 0; - } - .imageblock .imageblock__content { - position: relative; - min-height: 18.57142857em; - } - .imageblock > .container, - .imageblock > div[class*='col-']:not(.imageblock__content) { - padding-top: 5.57142857em; - padding-bottom: 5.57142857em; - float: none; - overflow: hidden; - } - .imageblock.imageblock--lg > .container, - .imageblock.imageblock--lg > div[class*='col-']:not(.imageblock__content) { - padding-top: 5.57142857em; - padding-bottom: 5.57142857em; - float: none; - overflow: hidden; - } -} -/**! 28. MailChimp & Campaign Monitor **/ -form[action*='createsend.com'] * { - transition: 0.3s linear; - -webkit-transition: 0.3s linear; - -moz-transition: 0.3s linear; - opacity: 0; -} -form[action*='createsend.com'].form--active * { - opacity: 1; -} -form[action*='createsend.com'] .input-checkbox + br { - display: none; -} -form[action*='createsend.com'].no-labels label { - display: none; -} -form[action*='createsend.com'] br { - display: none; -} -form[action*='createsend.com'] p > label:first-child { - margin-bottom: 0.92857143em; -} -form[action*='list-manage.com'] h2 { - font-family: 'Open Sans', 'Helvetica', 'Arial', sans-serif; - color: #252525; - font-weight: 300; - font-variant-ligatures: common-ligatures; - margin-top: 0; - margin-bottom: 0; - font-size: 1.35714286em; - line-height: 1.36842105em; - margin-bottom: 1.36842105263158em; - font-weight: 400; -} -form[action*='list-manage.com'] h2.inline-block + .h4.inline-block:not(.typed-text) { - margin-left: 0.68421052631579em; -} -form[action*='list-manage.com'] .input-group ul { - overflow: hidden; -} -form[action*='list-manage.com'] .input-group ul li { - float: left; -} -form[action*='list-manage.com'] * { - transition: 0.3s linear; - -webkit-transition: 0.3s linear; - -moz-transition: 0.3s linear; - opacity: 0; -} -form[action*='list-manage.com'].form--active * { - opacity: 1; -} -form[action*='list-manage.com'].no-labels label { - display: none; -} -form[action*='list-manage.com'] .small-meta { - font-size: 0.5em; -} -/**! 29. Twitter **/ -.twitter-feed .user { - display: none; -} -.twitter-feed .interact { - display: none; -} -.twitter-feed .timePosted { - font-size: .87em; -} -/**! 30. Transitions **/ -[class*='transition--'] { - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; - opacity: 0; -} -[class*='transition--'].transition--active { - opacity: 1; -} -.transition--scale { - transform: scale(0.98); - -webkit-transform: scale(0.98); -} -.transition--scale.transition--active { - opacity: 1; - transform: scale(1); - -webkit-transform: scale(1); -} -.transition--slide { - transform: translate3d(200px, 0, 0); - -webkit-transform: translate3d(200px, 0, 0); - transform: translate3d(30vw, 0, 0); - -webkit-transform: translate3d(30vw, 0, 0); -} -.transition--slide.transition--active { - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); -} -/**! 31. Switchable Sections **/ -.switchable { - position: relative; -} -.switchable div[class*='col-']:first-child { - float: left; - right: auto; -} -.switchable div[class*='col-']:first-child:not([class*='pull']):not([class*='push']) { - left: 0; -} -.switchable div[class*='col-']:last-child { - float: right; - left: auto; -} -.switchable div[class*='col-']:last-child:not([class*='pull']):not([class*='push']) { - right: 0; -} -.switchable.switchable--switch div[class*='col-']:first-child { - float: right; - right: 0; - left: auto; -} -.switchable.switchable--switch div[class*='col-']:first-child:not([class*='pull']):not([class*='push']) { - left: auto; -} -.switchable.switchable--switch div[class*='col-']:last-child { - float: left; - left: 0; - right: auto; -} -.switchable .switchable__text { - margin-top: 3.71428571em; -} -.switchable > div[class*='col-'] { - padding: 0; -} -/**! 32. Typed Effect **/ -.typed-text { - display: inline-block; -} -.typed-text.typed-text--cursor:after { - content: '|'; - font-size: 1.2em; - -webkit-animation: blink 0.7s infinite; - animation: blink 0.7s infinite; - position: relative; - right: 6px; -} -@keyframes blink { - 0% { - opacity: 1; - } - 50% { - opacity: 0; - } - 100% { - opacity: 1; - } -} -@-webkit-keyframes blink { - 0% { - opacity: 1; - } - 50% { - opacity: 0; - } - 100% { - opacity: 1; - } -} -/**! 33. Gradient BG **/ -[data-gradient-bg] { - position: relative; - background: #252525; -} -[data-gradient-bg] > canvas { - position: absolute; - width: 100%; - height: 100%; - top: 0; - left: 0; -} -[data-gradient-bg] > canvas + .background-image-holder { - opacity: .2 !important; -} -/**! 34. Bars **/ -.bar { - padding: 1.85714286em 0; -} -.bar .logo { - margin: 0; - position: relative; - top: 4px; -} -.bar .menu-horizontal { - position: relative; - top: 6px; -} -.bar:not([class*='visible-']) + .bar { - margin-top: 0.92857143em; -} -.bar.bar--xs { - padding: 0.46428571em 0; -} -.bar.bar--sm { - padding: 0.92857143em 0; -} -.bar.bar--lg { - padding: 2.78571429em 0; -} -.bar.bar--lg .logo { - top: 0; -} -.bar.bar--xlg { - padding: 4.64285714em 0; -} -.bar.bar--xlg .logo { - top: 0; -} -.bar.bg--dark .logo-dark { - display: none; -} -.bar:not(.bg--dark):not(.bar--transparent) .logo-light { - display: none; -} -@media all and (max-width: 767px) { - .bar.bar--mobile-sticky[data-scroll-class*='fixed'].pos-fixed { - position: fixed; - width: 100%; - background: #fff; - z-index: 999; - } - .bar.bar--mobile-sticky[data-scroll-class*='fixed'] + .bar.pos-fixed { - top: 3.71428571em; - position: fixed; - width: 100%; - background: #fff; - z-index: 999; - } -} -@media all and (min-width: 991px) { - .bar__module:not(:only-child) { - display: inline-block; - } - .bar__module:not(:last-child) { - margin-right: 0.92857143em; - } - .bar--transparent:not(.bar--dark) { - background: none; - } - .bar--transparent:not(.bar--dark) .logo-dark { - display: none; - } - .bar--transparent:not(.bar--dark) .logo-light { - display: inline-block; - } - .bar--transparent:not(.bar--dark):not(.pos-fixed) .menu-horizontal > li > a, - .bar--transparent:not(.bar--dark):not(.pos-fixed) .menu-horizontal > li > span { - color: #fff; - } - .bar--transparent:not(.bar--dark):not(.pos-fixed) .btn:not([class*='primary']) { - border-color: rgba(255, 255, 255, 0.3); - } - .bar--transparent:not(.bar--dark):not(.pos-fixed) .btn:not([class*='primary']) .btn__text { - color: #fff; - } - .bar--transparent:not(.bar--dark):not(.pos-fixed) .btn:not([class*='primary']):hover { - border-color: rgba(255, 255, 255, 0.7); - } - .bar--absolute { - position: absolute; - } - .bar--absolute, - .pos-fixed { - z-index: 99; - width: 100%; - } - .bar.pos-fixed { - position: fixed; - top: 0; - animation: fadeInDown 0.3s ease-out forwards; - box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); - box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.04); - } - .bar.pos-fixed:not([class*='bg-']) { - background: #ffffff; - } - .bar.pos-fixed:not([class*='bg-']) .logo-dark { - display: inline-block; - } - .bar.pos-fixed:not([class*='bg-']) .logo-light { - display: none; - } - .bar.pos-fixed.bg--dark { - background: #252525; - } -} -@media all and (max-width: 767px) { - .bar__module { - margin-bottom: 0.92857143em; - } - .bar__module + .bar__module { - margin-top: 1.85714286em; - } - .bar__module .btn { - display: block; - } - .bar__module .btn + .btn { - margin-left: 0 !important; - } - .bar__module .btn:not(:last-child) { - margin-bottom: 0.92857143em; - } - .bar + nav.bar { - padding-top: 0; - } -} -/**! 35. Navigation InPage **/ -.page-navigator { - position: fixed; - padding: 0; - top: 50%; - transform: translateY(-50%); - right: 1.85714286em; - z-index: 10; -} -.page-navigator ul { - display: inline-block; - padding: 0.92857143em; - background: rgba(0, 0, 0, 0.4); - border-radius: 1.85714286em; - transition: all .2s ease; -} -.page-navigator ul:hover { - background: rgba(0, 0, 0, 0.6); -} -.page-navigator ul li:not(:last-child) { - margin-bottom: 1.85714286em; -} -@media all and (max-width: 767px) { - .page-navigator { - right: 0; - } - .page-navigator ul { - border-radius: 1.85714286em 0 0 1.85714286em; - padding: 1.85714286em 0.92857143em; - } -} -.page-navigator li a { - width: 8px; - height: 8px; - background: #fff; - border-radius: 50%; - transition: all .2s ease; - display: block; - position: relative; -} -.page-navigator li a:not(:hover) { - opacity: .5; -} -.page-navigator li a.inner-link--active { - opacity: 1; - animation: bulge .5s ease; - -webkit-animation: bulge .5s ease; -} -@keyframes bulge { - 0% { - transform: scale(1); - } - 50% { - transform: scale(1.3); - } - 100% { - transform: scale(1); - } -} -@-webkit-keyframes bulge { - 0% { - transform: scale(1); - } - 50% { - transform: scale(1.3); - } - 100% { - transform: scale(1); - } -} -.page-navigator li a[data-title]:before { - content: attr(data-title); - position: absolute; - right: 12px; - top: -14px; - background: #222; - color: #fff; - border-radius: 6px; - padding: 4px 8px; - display: inline-block; - transition: all .2s ease; - white-space: nowrap; -} -.page-navigator li a[data-title]:not(:hover):before { - opacity: 0; - transform: translateX(-20px); -} -/**! 36. Helper Classes **/ -.clearfix { - overflow: hidden; -} -.clearfix-after:after { - content: ""; - display: table; - clear: both; -} -.allow-overflow { - overflow: visible; -} -.container .row--gapless { - padding-left: 15px; - padding-right: 15px; -} -.container .row--gapless > div[class*='col-'] { - padding: 0; -} -@media all and (max-width: 767px) { - .text-left-xs { - text-align: left; - } -} -@media all and (max-width: 991px) { - .text-left-sm { - text-align: left; - } -} -section > .row--gapless { - padding-left: 0; - padding-right: 0; -} -section > .row--gapless > div[class*='col-'] { - padding: 0; -} -div.right { - float: right; -} -div.left { - float: left; -} -section.text-right > .container:last-child > .row:only-child > div[class*='col-']:only-child { - float: right; -} -/**! 37. Spacing **/ -section, -footer { - padding-top: 7.42857143em; - padding-bottom: 7.42857143em; -} -section.space--xxs, -footer.space--xxs { - padding-top: 1.85714286em; - padding-bottom: 1.85714286em; -} -section.space--xs, -footer.space--xs { - padding-top: 3.71428571em; - padding-bottom: 3.71428571em; -} -section.space--sm, -footer.space--sm { - padding-top: 4.95238095em; - padding-bottom: 4.95238095em; -} -section.space--md, -footer.space--md { - padding-top: 11.14285714em; - padding-bottom: 11.14285714em; -} -section.space--lg, -footer.space--lg { - padding-top: 14.85714286em; - padding-bottom: 14.85714286em; -} -section.space--xlg, -footer.space--xlg { - padding-top: 29.71428571em; - padding-bottom: 29.71428571em; -} -section.space--0, -footer.space--0 { - padding: 0; -} -section.section--even, -footer.section--even { - padding-top: 7.42857143em; - padding-bottom: 7.42857143em; -} -section.space-bottom--sm, -footer.space-bottom--sm { - padding-bottom: 4.95238095em; -} -@media all and (max-width: 767px) { - section, - footer, - section.section--even { - padding: 5.57142857em 0; - } - section.space--lg, - footer.space--lg, - section.section--even.space--lg, - section.space--md, - footer.space--md, - section.section--even.space--md { - padding: 5.57142857em 0; - } - section.space--xlg, - footer.space--xlg, - section.section--even.space--xlg { - padding: 8.35714286em 0; - } -} -div[class*='col-'] > div[class*='col-']:first-child { - padding-left: 0; -} -div[class*='col-'] > div[class*='col-']:last-child { - padding-right: 0; -} -@media all and (max-width: 767px) { - .col-xs-6:nth-child(odd) { - padding-right: 7.5px; - } - .col-xs-6:nth-child(even) { - padding-left: 7.5px; - } -} -@media all and (min-width: 768px) { - .mt--1 { - margin-top: 1.85714286em; - } - .mt--2 { - margin-top: 3.71428571em; - } - .mt--3 { - margin-top: 5.57142857em; - } - .mb--1 { - margin-bottom: 1.85714286em; - } - .mb--2 { - margin-bottom: 3.71428571em; - } - .mb--3 { - margin-bottom: 5.57142857em; - } -} -@media all and (max-width: 990px) { - .mt--1, - .mt--2 { - margin-top: 1.85714286em; - } - .mt--3 { - margin-top: 2.78571429em; - } -} -.unpad { - padding: 0; -} -.unpad--bottom { - padding-bottom: 0; -} -.unpad--top { - padding-top: 0; -} -section.unpad--bottom { - padding-bottom: 0; -} -section.unpad { - padding: 0; -} -section.unpad--top { - padding-top: 0; -} -.unmarg--bottom { - margin-bottom: 0; -} -.unmarg { - margin: 0; -} -.unmarg--top { - margin-top: 0; -} -/**! 38. Boxed Layout **/ -@media all and (min-width: 1280px) { - body.boxed-layout { - padding: 3.71428571em 0; - background: #ededed; - } - body.boxed-layout section:not([class*='bg-']):not(.imagebg), - body.boxed-layout footer:not([class*='bg-']):not(.imagebg), - body.boxed-layout nav:not([class*='bg-']):not(.bar--transparent):not(.bar--absolute), - body.boxed-layout .tabs-container:not([class*='bg-']):not(.imagebg) { - background: #ffffff; - } - body.boxed-layout .nav-container, - body.boxed-layout .main-container, - body.boxed-layout > section, - body.boxed-layout nav { - max-width: 1280px; - margin: 0 auto; - } -} -/**! 39. Wizard **/ -.wizard__body { - list-style: none; -} -.wizard__step:not(.active) { - display: none; -} -.wizard__step .wizard__title { - display: none; -} -.wizard__controls { - overflow: hidden; -} -.wizard__controls .wizard-prev { - float: left; -} -.wizard__controls .wizard-next { - float: right; -} -.wizard__controls .wizard-prev:hover, -.wizard__controls .wizard-next:hover { - transform: none !important; -} -.wizard__controls .wizard-prev.inactive, -.wizard__controls .wizard-next.inactive { - pointer-events: none; - opacity: .3; - cursor: not-allowed; -} -/**! 40. Alerts **/ -.alert { - overflow: hidden; - border: 1px solid #e6e6e6; - padding: 0.92857143em; -} -.alert .alert__body, -.alert .alert__close { - display: inline-block; - user-select: none; -} -.alert .alert__body { - float: left; -} -.alert .alert__close { - float: right; - cursor: pointer; -} -.alert.bg--error { - background: #fce8e8; - border-color: #e23636; -} -.alert.bg--error .alert__close { - color: #e23636; -} -.alert.bg--success { - background: #e4f5e5; - border-color: #4ebf56; -} -.alert.bg--success .alert__close { - color: #4ebf56; -} -.alert.bg--primary { - background: #ffe5bf; - border-color: #f18f01; -} -.alert.bg--primary .alert__body > span { - color: #666666; -} -.alert.bg--primary .alert__close { - color: #f18f01; -} -.alert.alert--dismissed { - display: none; -} -/**! 41. Progress - Horizontal **/ -.progress-horizontal:after { - content: ""; - display: table; - clear: both; -} -.progress-horizontal .progress-horizontal__bar { - position: relative; - overflow: hidden; -} -.progress-horizontal .progress-horizontal__progress { - position: absolute; - top: 0; - left: 0; - height: 100%; -} -/**! 42. Theme Overrides **/ -/*! -- Stack Customizers -- */ -.box-shadow { - box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.04); -} -.box-shadow-shallow { - box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.06); -} -.box-shadow-wide { - box-shadow: 0 23px 40px rgba(0, 0, 0, 0.2); -} -.border--round { - border-radius: 6px; -} -.border--round:before { - border-radius: 6px; -} -.border--round .background-image-holder { - border-radius: 6px; -} -.border--round [data-scrim-top]:before, -.border--round [data-scrim-bottom]:before, -.border--round [data-overlay]:before { - border-radius: 6px; -} -.imageblock.border--round .background-image-holder { - border-radius: 6px 0 0 6px; -} -@media all and (max-width: 767px) { - .imageblock.border--round .background-image-holder { - border-radius: 6px 6px 0 0; - } -} -.theme--square .border--round, -.theme--square .btn { - border-radius: 0px; -} -.theme--bordered { - border: 0.92857143em solid #252525; -} -.main-container.transition--fade:not(.transition--active) { - cursor: wait; -} -@media all and (min-width: 1280px) { - body.boxed-layout > section.bar-3:first-of-type { - border-radius: 6px 6px 0 0; - } - body.boxed-layout .main-container > footer:last-child { - border-radius: 0 0 6px 6px; - } -} -body.boxed-layout .modal-container section:not([class*='bg-']) { - background: none; -} -/*! -- Stack Helpers -- */ -@media all and (max-width: 767px) { - .block--xs { - margin-top: 0.92857143em; - } -} -.container .container { - max-width: 100%; -} -.switchable-toggle { - cursor: pointer; - user-select: none; - -webkit-user-select: none; -} -.back-to-top { - position: fixed; - width: 3.71428571em; - height: 3.71428571em; - background: #fff; - border-radius: 50%; - text-align: center; - right: 1.85714286em; - bottom: 3.71428571em; - padding-top: 12px; - box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); - box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.04); - z-index: 99; - border: 1px solid #ececec; - transition: 0.2s ease-out; - -webkit-transition: 0.2s ease-out; - -moz-transition: 0.2s ease-out; -} -.back-to-top i { - color: #252525; -} -.back-to-top:not(.active) { - opacity: 0; - transform: translate3d(0, 20px, 0); - -webkit-transform: translate3d(0, 20px, 0); - pointer-events: none; -} -.back-to-top.active:hover { - transform: translate3d(0, -5px, 0); - -webkit-transform: translate3d(0, -5px, 0); -} -.disable-scroll-bars { - -ms-overflow-style: none; -} -.disable-scroll-bars::-webkit-scrollbar { - display: none; -} -/*! -- Stack Animations -- */ -@keyframes fadeInUp { - from { - opacity: 0; - transform: translate3d(0, 50px, 0); - -webkit-transform: translate3d(0, 50px, 0); - } - to { - opacity: 1; - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); - -webkit-font-smoothing: antialiased; - } -} -@-webkit-keyframes fadeInUp { - from { - opacity: 0; - transform: translate3d(0, 50px, 0); - -webkit-transform: translate3d(0, 50px, 0); - } - to { - opacity: 1; - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); - -webkit-font-smoothing: antialiased; - } -} -@keyframes fadeInDown { - from { - opacity: 0; - transform: translate3d(0, -100px, 0); - -webkit-transform: translate3d(0, -100px, 0); - } - to { - opacity: 1; - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); - -webkit-font-smoothing: antialiased; - } -} -@-webkit-keyframes fadeInDown { - from { - opacity: 0; - transform: translate3d(0, -100px, 0); - -webkit-transform: translate3d(0, -100px, 0); - } - to { - opacity: 1; - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); - -webkit-font-smoothing: antialiased; - } -} -@keyframes fadeOutUp { - from { - opacity: 1; - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); - } - to { - opacity: 0; - transform: translate3d(0, -50px, 0); - -webkit-transform: translate3d(0, -50px, 0); - -webkit-font-smoothing: antialiased; - } -} -@-webkit-keyframes fadeOutUp { - from { - opacity: 1; - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); - } - to { - opacity: 0; - transform: translate3d(0, -50px, 0); - -webkit-transform: translate3d(0, -50px, 0); - -webkit-font-smoothing: antialiased; - } -} -@keyframes fadeOutRight { - from { - opacity: 1; - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); - } - to { - opacity: 0; - transform: translate3d(50px, 0, 0); - -webkit-transform: translate3d(50px, 0, 0); - -webkit-font-smoothing: antialiased; - } -} -@-webkit-keyframes fadeOutRight { - from { - opacity: 1; - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); - } - to { - opacity: 0; - transform: translate3d(50px, 0, 0); - -webkit-transform: translate3d(50px, 0, 0); - -webkit-font-smoothing: antialiased; - } -} -@keyframes fadeInLeft { - from { - opacity: 0; - transform: translate3d(-50px, 0, 0); - -webkit-transform: translate3d(-50px, 0, 0); - } - to { - opacity: 1; - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); - -webkit-font-smoothing: antialiased; - } -} -@-webkit-keyframes fadeInLeft { - from { - opacity: 0; - transform: translate3d(-50px, 0, 0); - -webkit-transform: translate3d(-50px, 0, 0); - } - to { - opacity: 1; - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); - -webkit-font-smoothing: antialiased; - } -} -@keyframes pulse { - 0% { - opacity: 0; - transform: scale(1); - -webkit-transform: scale(1); - } - 50% { - opacity: 1; - } - 100% { - opacity: 0; - transform: scale(2); - -webkit-transform: scale(2); - } -} -@-webkit-keyframes pulse { - 0% { - opacity: 0; - transform: scale(1); - -webkit-transform: scale(1); - } - 50% { - opacity: 1; - } - 100% { - opacity: 0; - transform: scale(2); - -webkit-transform: scale(2); - } -} -@keyframes kenBurns { - 0% { - transform: scale(1); - } - 100% { - transform: scale(1.1); - } -} -@-webkit-keyframes kenBurns { - 0% { - transform: scale(1); - } - 100% { - transform: scale(1.1); - } -} -/*! -- Stack Sections -- */ -section:not(.unpad):not(.imagebg):not([class*='bg--']):not(.imageblock):not(.unpad--bottom):not(.border--bottom):not(.space--xxs) + section:not(.unpad):not(.imagebg):not([class*='bg--']):not(.imageblock):not(.border--bottom):not(.space--xxs) { - padding-top: 0; -} -section:not(.unpad):not(.imagebg):not([class*='bg--']):not(.imageblock):not(.unpad--bottom):not(.border--bottom) + footer:not(.unpad):not(.imagebg):not([class*='bg--']):not(.imageblock):not(.unpad--bottom):not(.border--bottom) { - padding-top: 0; -} -section:not(.imagebg):not([class*='bg-']) + section.bg--secondary { - border-top: 1px solid #ebebeb; -} -section.bg--secondary:not(.imagebg) + section:not(.imagebg):not([class*='bg-']) { - border-top: 1px solid #ebebeb; -} -section.bg--secondary:not(.unpad):not(.imageblock):not(.unpad--bottom):not(.border--bottom) + section.bg--secondary { - padding-top: 0; -} -section.bg--secondary + footer:not(.bg--dark):not(.bg--secondary) { - border-top: 1px solid #ebebeb; -} -section.bg--dark + section.bg--dark { - padding-top: 0; -} -section.bg--dark:last-of-type + footer.bg--dark { - background: #1b1b1b; -} -section.border--bottom:not([data-gradient-bg]) { - border-bottom: 1px solid #ececec; -} -section.unpad { - overflow: hidden; -} -section:not([class*='bg--']) + footer.bg--secondary { - border-top: 1px solid #ebebeb; -} -section.text-center div[class*='col-']:first-child:last-child { - margin: 0 auto; - float: none; -} -.section--overlap { - z-index: 2; - position: relative; -} -/*! -- Stack Typography -- */ -@media all and (max-width: 1024px) { - html { - font-size: 80%; - } -} -h1, -.h1 { - letter-spacing: -0.01em; -} -h1:not(:last-child), -.h1:not(:last-child) { - margin-bottom: 0.59090909090909em; -} -@media all and (min-width: 768px) { - h1.h1--large, - .h1.h1--large { - font-weight: 200; - font-size: 4.428571428571429em; - line-height: 1.048387096774194em; - } - h1.h1--large:not(:last-child), - .h1.h1--large:not(:last-child) { - margin-bottom: 0.419354838709677em; - } - h1.h1--large.type--uppercase, - .h1.h1--large.type--uppercase { - letter-spacing: 10px; - margin-right: -10px; - } - h1.h1--large + p.lead, - .h1.h1--large + p.lead { - margin-top: 2.052631578947368em; - } -} -h2, -.h2 { - margin-bottom: 0.78787878787879em; -} -h3, -.h3 { - margin-bottom: 1.04em; -} -h3 strong, -.h3 strong { - font-weight: 400; -} -blockquote { - font-family: 'Merriweather', serif; - font-style: italic; - font-weight: 300; -} -blockquote:not(:last-child) { - margin-bottom: 1.04em; -} -blockquote > p { - font-size: 1em !important; -} -h4, -.h4 { - margin-bottom: 1.36842105263158em; - font-weight: 400; -} -h4.inline-block + .h4.inline-block:not(.typed-text), -.h4.inline-block + .h4.inline-block:not(.typed-text) { - margin-left: 0.68421052631579em; -} -h5, -.h5 { - font-weight: 600; -} -h5:not(:last-child), -.h5:not(:last-child) { - margin-bottom: 1.85714286em; -} -h6, -.h6 { - font-weight: 700; -} -h6:not(:last-child), -.h6:not(:last-child) { - margin-bottom: 2.16666666666667em; -} -h6.type--uppercase, -.h6.type--uppercase { - letter-spacing: 1px; - margin-right: -1px; -} -span.h1:not(.inline-block), -span.h2:not(.inline-block), -span.h3:not(.inline-block), -span.h4:not(.inline-block), -span.h5:not(.inline-block), -span.h6:not(.inline-block) { - display: block; -} -b { - font-weight: 600; -} -hr { - border-color: #ECECEC; -} -.bg--dark hr { - border-color: #585858; -} -[class*='bg-']:not(.bg--white):not(.bg--secondary) p, -[class*='imagebg']:not(.image--light) p { - opacity: .9; -} -.lead { - font-weight: 400; - color: #808080; -} -.lead:not(:last-child) { - margin-bottom: 1.36842105263158em; -} -.lead + .btn:last-child { - margin-top: 0.92857143em; -} -p:last-child { - margin-bottom: 0; -} -p strong { - color: #252525; -} -pre { - padding: 0.92857143em; - background: #fafafa; - border: 1px solid #ececec; - border-radius: 6px; - line-height: 20px; - max-height: 500px; -} -.bg--secondary > pre { - background: #f5f5f5; - border-color: #ddd; -} -.text-block:not(:last-child) { - margin-bottom: 1.85714286em; -} -.text-block h2, -.text-block .h2 { - margin-bottom: 0.3939393939394em; -} -.text-block h5, -.text-block .h5 { - margin: 0; -} -.text-block h4:not(:last-child), -.text-block .h4:not(:last-child) { - margin-bottom: 0.3421052631579em; -} -.text-block h3, -.text-block .h3 { - margin-bottom: 0.52em; -} -@media all and (min-width: 768px) { - div[class*='col-'] .text-block + .text-block { - margin-top: 3.71428571em; - } -} -.heading-block { - margin-bottom: 3.71428571em; -} -.heading-block h1, -.heading-block h2, -.heading-block h3, -.heading-block h4, -.heading-block h5, -.heading-block h6, -.heading-block .h1, -.heading-block .h2, -.heading-block .h3, -.heading-block .h4, -.heading-block .h5, -.heading-block .h6 { - margin-bottom: 0; -} -/*! -- Stack Colours -- */ -.bg--dark .bg--secondary { - background: #343434; -} -/*! -- Stack Links -- */ -a { - color: #f18f01; - font-weight: 700; -} -a:hover { - color: #be7101; - text-decoration: underline; -} -a.block { - font-weight: normal; - text-decoration: none; - color: #666666; -} -p a, -span a, -label a { - font-size: 1em; - text-decoration: underline; - font-weight: 400; - line-height: 1.85714286em; -} -p + a:not(.btn) { - font-size: 0.85714286em; - line-height: 2.16666667em; -} -.imagebg:not(.image--light) a { - color: #fff; - font-weight: 600; -} -/*! -- Stack Tables -- */ -table { - width: 100%; - border-collapse: separate; -} -table th, -table td { - padding: 0.92857143em; -} -table th { - background: #fafafa; - color: #252525; -} -table tr:not(:last-of-type) { - border-bottom: 1px solid #ececec; -} -table.border--round { - border-radius: 6px; - border: 1px solid #ececec; -} -.table--alternate-column th:nth-child(odd) { - background: none; -} -.table--alternate-column td:nth-child(even) { - background: #fafafa; -} -.table--alternate-row tbody tr:nth-child(even) { - background: #fafafa; -} -.bg--dark table.border--round { - border-radius: 6px; - border: 1px solid #3f3f3f; -} -.bg--dark table th { - background: #3f3f3f; - color: #fff; -} -.bg--dark .table--alternate-row tbody tr:nth-child(even) { - background: #323232; -} -/*! -- Stack Lists -- */ -ul:not([class*='menu']) li > a { - font-weight: normal; -} -ul:not([class*='menu']) li > a:hover { - text-decoration: none; -} -ol { - list-style-position: outside; - list-style-type: decimal; -} -ol li:not(:last-child) { - margin-bottom: 1.85714286em; -} -ol.lead li:not(:last-child) { - margin-bottom: 1.26315789473684em; -} -.list-inline { - margin-left: 0; - display: inline-block; -} -.list-inline li { - padding: 0; -} -.list-inline li:not(:last-child) { - margin-right: 1.85714286em; -} -.list-inline:not(:last-child) { - margin-right: 1.85714286em; -} -.list-inline--images img { - max-height: 2.78571429em; -} -@media all and (min-width: 768px) { - .list-inline--images li:not(:last-child) { - margin-right: 5.57142857em; - } -} -@media all and (max-width: 767px) { - .list-inline--images li:not(:last-child) { - margin-bottom: 1.85714286em; - } -} -.list--loose > li:not(:last-child) { - margin-bottom: 0.46428571em; -} -.list--hover li { - transition: 0.2s ease; - -webkit-transition: 0.2s ease; - -moz-transition: 0.2s ease; -} -.list--hover li:not(:hover) { - opacity: .6; -} -.social-list a { - color: #252525; -} -.imagebg:not(.image--light) .social-list a { - color: #fff; -} -.results-list > li > a:first-child { - display: flex; - align-items: center; - margin-bottom: 0.92857143em; -} -.results-list > li > a:first-child span { - display: inline-block; - margin-left: 0.46428571em; -} -.results-list > li > a:first-child h4 { - display: inline-block; - margin-bottom: 0; -} -.results-list > li > a:first-child:hover h4, -.results-list > li > a:first-child:hover span { - text-decoration: underline; -} -.results-list > li:not(:last-child) { - margin-bottom: 1.85714286em; - padding-bottom: 1.85714286em; - border-bottom: 1px solid rgba(0, 0, 0, 0.1); -} -@media all and (max-width: 767px) { - .list-inline:not(.social-list):not(.list-inline--images) { - display: block; - } - .list-inline:not(.social-list):not(.list-inline--images) li { - display: block; - margin: 0; - } - .list-inline:not(.social-list):not(.list-inline--images) li:not(:last-child) { - margin-bottom: 0.46428571em; - } -} -@media all and (max-width: 767px) { - .list-inline { - min-width: 100%; - } -} -.row--list span.h6 { - margin-bottom: 0; -} -.row--list span.h3:last-child { - margin-bottom: 0; -} -@media all and (max-width: 767px) { - .row--list > li { - margin-bottom: 0.92857143em; - } -} -/*! -- Stack Rules -- */ -hr:first-child { - margin-top: 0; -} -hr.short { - width: 2.78571429em; - border-color: #f18f01; -} -hr[data-title] { - margin: 2.78571429em 0; - text-align: center; -} -hr[data-title]:before { - content: attr(data-title); - background: #ffffff; - position: relative; - bottom: 14px; - padding: 0.92857143em; - font-style: italic; -} -.bg--dark hr:not(.short), -.imagebg hr:not(.short), -.bg--primary hr:not(.short) { - opacity: .3; -} -/*! -- Stack Buttons -- */ -.btn { - position: relative; -} -.btn:not([class*='primary']) { - border-color: #d3d3d3; -} -.btn:not([class*='primary']):hover { - border-color: #252525; -} -.btn.type--uppercase { - letter-spacing: .5px; -} -.btn.type--uppercase .btn__text { - letter-spacing: .5px; - margin-right: -0.5px; -} -.btn .label { - top: -0.92857143em; - right: -3.71428571em; -} -.btn.btn--lg .btn__text { - font-weight: 600; -} -.btn.btn--lg.type--uppercase .btn__text { - letter-spacing: 1px; -} -.btn + p.type--fine-print, -.btn + span.type--fine-print { - margin-top: 1.08333333333334em; -} -.btn.block { - margin-left: 0; -} -.btn.block + .btn.block { - margin-top: 0.92857143em; -} -.btn:hover { - transform: translate3d(0, -2px, 0); - -webkit-transform: translate3d(0, -2px, 0); -} -.btn.btn--sm + .btn--sm { - margin-left: 0.92857143em; -} -p > .btn { - text-decoration: none; -} -@media all and (max-width: 767px) { - .btn:not(:last-child) { - margin-bottom: 1.85714286em; - } -} -.btn--icon { - padding-left: 5.57142857em; -} -.btn--icon i { - position: absolute; - height: 100%; - left: 0; - top: 0; - background: rgba(0, 0, 0, 0.1); - padding: 0 13px; - border-radius: 6px 0 0 6px; - font-size: 16px; - line-height: 41px; -} -.btn--icon i.socicon { - line-height: 42px; -} -.btn--cart { - width: 3.71428571em; - height: 3.71428571em; - border: 2px solid #252525; - display: block; - text-align: center; - border-radius: 6px; - opacity: .4; - padding: 0; -} -.btn--cart:hover { - opacity: 1; -} -.btn--cart .btn__text { - position: absolute; - width: 100%; - left: 0; - top: 50%; - transform: translateY(-50%); - font-size: 1.142857142857143em; -} -.imagebg:not(.image--light) .btn--icon:not([class*='bg']):not([class*='primary']) i { - color: #fff; - background: rgba(255, 255, 255, 0.2); -} -@media all and (min-width: 768px) { - .btn-group .btn { - margin-bottom: 0 !important; - margin-left: 0; - } - .btn-group .btn + .btn { - margin-left: 0; - } - .btn-group .btn:not(:first-child):not(:last-child) { - border-radius: 0; - } - .btn-group .btn:first-child { - border-radius: 6px 0 0 6px; - } - .btn-group .btn:last-child { - border-radius: 0 6px 6px 0; - } - .btn-group .btn:first-child:nth-last-child(2), - .btn-group .btn:last-child:nth-child(2) { - width: 50%; - } -} -.btn-group { - border: none; - padding: 0; -} -@media all and (max-width: 767px) { - .btn-group .btn { - display: block; - } -} -.bg--primary div:not([class*='feature']) .btn--primary { - background: #fff; - border-color: #fff; -} -.bg--primary div:not([class*='feature']) .btn--primary .btn__text { - color: #f18f01; -} -.bg--primary > .btn--primary { - background: #fff; - border-color: #fff; -} -.bg--primary > .btn--primary .btn__text { - color: #f18f01; -} -.bg--dark .btn:not(.btn--primary) { - border-color: #3f3f3f; -} -.bg--dark .btn:not(.btn--primary):hover { - border-color: #656565; -} -.bg--dark .btn .btn__text { - color: #fff; -} -.imagebg:not(.image--light) .btn:not([class*='primary']) { - border-color: rgba(255, 255, 255, 0.3); -} -.imagebg:not(.image--light) .btn:not([class*='primary']):hover { - border-color: #fff; -} -.imagebg.image--light .btn:not([class*='primary']) { - border-color: #252525; - background: rgba(255, 255, 255, 0.3); -} -.imagebg.image--light .btn:not([class*='primary']):hover { - background: rgba(255, 255, 255, 0.5); -} -h1 + .btn, -.h1 + .btn { - margin-top: 1.85714286em; -} -h2 + .btn, -.h2 + .btn { - margin-top: 0.92857143em; -} -/*! -- Stack Images -- */ -img:last-child { - margin-bottom: 0; -} -img.flag { - max-height: 1.85714286em; -} -img.image--sm:not(:last-child) { - margin-bottom: 0.92857143em; -} -img.promo.border--round { - border: 1px solid #ececec; -} -p.lead img { - max-height: 1.68421053em; -} -.imagebg h1, -.imagebg h2, -.imagebg h3, -.imagebg h4, -.imagebg h5, -.imagebg h6 { - position: relative; -} -.imagebg:not(.image--light) span { - color: #fff; -} -.imagebg.border--round { - overflow: hidden; -} -section.parallax .row .background-image-holder { - transform: none !important; - top: 0 !important; -} -.triptych.border--round img { - position: relative; - border-radius: 6px; - width: 33.333333%; - float: left; - margin: 0; -} -.triptych.border--round img:nth-child(2) { - transform: scale(1.2); - -webkit-transform: scale(1.2); - z-index: 2; - box-shadow: 0 23px 40px rgba(0, 0, 0, 0.2); -} -.gallery > div[class*='col-'] { - margin-bottom: 30px; -} -.gallery-1 { - overflow: hidden; - position: relative; -} -.gallery-1 .gallery__image:not(:last-child) { - margin-bottom: 30px; -} -.gallery-1 > div[class*='col-']:first-child > .gallery__image { - height: 800px; -} -.gallery-1 > div[class*='col-']:last-child > .gallery__image { - height: calc(385px); -} -.gallery__image { - position: relative; - overflow: hidden; -} -@media all and (max-width: 767px) { - .gallery-1 .gallery__image { - max-height: 300px; - margin-bottom: 15px; - } - .gallery-1 .gallery__image:not(:last-child) { - margin-bottom: 15px; - } -} -.section--ken-burns { - overflow: hidden; -} -.section--ken-burns > .background-image-holder, -.section--ken-burns > img:only-child { - animation: kenBurns 15s ease alternate infinite; - -webkit-animation: kenBurns 15s ease alternate infinite; -} -/*! -- Stack Titles -- */ -.breadcrumbs { - list-style: none; -} -.breadcrumbs li { - font-size: 0.85714285714286em; - display: inline-block; -} -.breadcrumbs li:not(:last-child) { - margin-right: 1.08333333333334em; -} -.breadcrumbs li:not(:last-child):after { - content: '\00bb'; - margin-left: 1.08333333333334em; -} -.breadcrumbs li a { - font-weight: normal; -} -.imagebg .breadcrumbs, -.bg--primary .breadcrumbs { - color: #fff; -} -.imagebg .breadcrumbs a, -.bg--primary .breadcrumbs a { - color: #fff; - font-weight: 600; -} -.elements-title { - border-top: none !important; -} -.elements-title + .tabs-container:not( :nth-last-child(2)), -.elements-title + section:not( :nth-last-child(2)) { - margin-bottom: 9.28571429em; -} -.elements-title + section:not(.imagebg):not([class*='bg-']):not(.unpad) { - padding-top: 1.85714286em; -} -/*! -- Stack Labels -- */ -.label { - display: inline-block; - font-size: 9px; - font-weight: 700; - letter-spacing: .5px; - color: #fff; - text-transform: uppercase; - height: 26px; - min-width: 65px; - padding: 0 10px; - text-align: center; - border-radius: 50px; - position: absolute; - z-index: 3; - top: 1.23809524em; - right: 1.23809524em; -} -.label:not([class*='bg--']) { - background: #006e90; -} -.label.label--inline { - position: relative; - top: 0; - right: 0; -} -.label.label--inline:not(:last-child) { - margin-right: 0.92857143em; -} -.label.label--inline + span, -.label.label--inline + p { - position: relative; - top: 1px; -} -.label.switchable-toggle { - left: 50%; - right: auto; - transform: translate3d(-50%, 0, 0); - -webkit-transform: translate3d(-50%, 0, 0); - box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.06); -} -.bg--primary-1 .label:not([class*='bg--']) { - background: #143642; -} -/*! -- Stack Bars -- */ -.menu-horizontal > li, -.menu-vertical > li { - font-family: 'Open Sans', 'Roboto', 'Helvetica', Sans-Serif; -} -.bar .logo { - max-height: 1.85714286em; - max-width: none; -} -.menu-horizontal > li > a, -.menu-horizontal > li > .modal-instance > a { - font-weight: 500; -} -.menu-horizontal > li a:hover { - text-decoration: none; -} -.hamburger-toggle i { - color: #252525; -} -@media all and (min-width: 990px) { - .menu-horizontal li:not(:last-child) { - margin-right: 1.23809524em; - } - .bar__module:not(:only-child) .menu-horizontal { - top: 0; - } -} -@media all and (min-width: 768px) and (max-width: 1023px) { - .bar-2 .menu-horizontal > li, - .bar-1 .menu-horizontal > li { - display: inline-block; - } - .bar-2 .menu-horizontal > li:not(:first-child), - .bar-1 .menu-horizontal > li:not(:first-child) { - margin-left: 0.92857143em; - } - .bar-2 .bar__module, - .bar-1 .bar__module { - margin-bottom: 1.85714286em; - } - .bar-2 .row div[class*='col-']:last-child .bar__module:last-child, - .bar-1 .row div[class*='col-']:last-child .bar__module:last-child { - margin-bottom: 0; - } -} -.bar-1 .menu-horizontal > li > .dropdown__trigger, -.bar-1 .menu-horizontal > li > a { - font-size: 0.857142857142857em; - line-height: 2.166666666666667em; - text-transform: uppercase; - font-weight: 600; - letter-spacing: .5px; -} -@media all and (min-width: 1024px) { - .bar-1 .bar__module + .bar__module { - margin-left: 1.85714286em; - } -} -@media all and (min-width: 991px) { - .bar-2 .logo { - position: absolute; - left: 50%; - transform: translateX(-50%); - } -} -.bar-3 { - font-size: 0.85714286em; -} -.bar-3 .menu-horizontal { - top: 0; -} -@media all and (max-width: 990px) { - .bar-3 .menu-horizontal li { - display: inline-block; - } - .bar-3 .menu-horizontal li:not(:last-child) { - margin-right: 0.92857143em; - } -} -@media all and (min-width: 990px) { - .bar-toggle .col-md-1 .logo { - top: 10px; - } -} -@media all and (max-width: 767px) { - .bar-4 .logo-light { - display: none; - } - .bar-4 .logo-dark { - margin-bottom: 1.85714286em; - } - .bar.bg--dark { - background: #252525; - } - .bar.bg--dark .hamburger-toggle i { - color: #fff; - } -} -/*! -- Stack Alerts -- */ -.alert { - border-radius: 6px; -} -.alert:not(:last-child) { - margin-bottom: 1.85714286em; -} -.alert .alert__close { - font-size: 1.35714286em; -} -/*! -- Stack Menu Toggle -- */ -.menu-toggle { - box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); - box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.04); - width: 3.71428571em; - height: 3.71428571em; - border-radius: 50%; - text-align: center; - background: #fff; - display: inline-block; - transition: 0.2s ease; - -webkit-transition: 0.2s ease; - -moz-transition: 0.2s ease; -} -.menu-toggle i { - font-size: 1.78571429em; - position: relative; - top: 13px; - color: #252525; -} -.menu-toggle:hover { - box-shadow: 0 23px 40px rgba(0, 0, 0, 0.2); - transform: translate3d(0, -2px, 0); - -webkit-transform: translate3d(0, -2px, 0); -} -/*! -- Stack Nav Utility -- */ -.nav-utility { - padding: 0.92857143em 0; -} -.nav-utility .nav-utility__module { - font-size: 0.85714285714286em; -} -.nav-utility .nav-utility__module a { - color: #666666; - font-weight: normal; -} -.nav-utility .nav-utility__module a i { - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; - display: inline-block; -} -.nav-utility .nav-utility__module a:hover i { - transform: scale(1.5); - -webkit-transform: scale(1.5); -} -.nav-utility .nav-utility__module.right:not(:last-child) { - margin-left: 2.16666666666667em; -} -.utility-toggle { - display: inline-block; - cursor: pointer; - width: 3px; - height: 3px; - position: relative; - bottom: 8px; - border-radius: 50%; - background: #252525; -} -.utility-toggle:before, -.utility-toggle:after { - content: ''; - width: 3px; - height: 3px; - border-radius: 50%; - position: absolute; - background: #252525; -} -.utility-toggle:before { - top: 6px; -} -.utility-toggle:after { - top: 12px; -} -/*! -- Stack Nav Stacked -- */ -.bar-stacked .logo { - margin-bottom: 3.71428571em; -} -/*! -- Stack Nav Side Menu -- */ -.notification.side-menu { - z-index: 9999; - background: #ffffff; - padding-top: 1.85714286em; - margin: 0; - height: 100%; - box-shadow: 0 23px 40px rgba(0, 0, 0, 0.2); - width: 27.85714286em; -} -.notification.side-menu .side-menu__module { - overflow: hidden; - padding: 2.78571429em; -} -.notification.side-menu .side-menu__module + hr:not(:last-child) { - margin: 0; -} -.notification.side-menu .menu-vertical li a { - font-size: 1.35714286em; - line-height: 1.36842105em; -} -.notification.side-menu .menu-vertical li a:hover { - text-decoration: none; -} -.notification.side-menu .btn:not(:last-child) { - margin-bottom: 1.85714286em; -} -.notification.side-menu .btn + ul.list--loose { - margin-top: 0.92857143em; -} -.notification.side-menu .notification-close-cross { - top: 0.92857143em; - right: 2.78571429em; - margin-top: 8px; -} -.notification.side-menu .social-list:not(:first-child) { - margin-top: 1.85714286em; -} -.menu-toggle.pos-fixed { - position: fixed; - right: 5.57142857em; - animation: fadeInDown .3s ease forwards; -} -@media all and (min-width: 768px) { - .side-menu .side-menu__module span.type--fine-print { - position: relative; - top: 8px; - } -} -@media all and (max-width: 767px) { - .side-menu { - width: 100%; - } - .side-menu .side-menu__module .float-right, - .side-menu .side-menu__module .float-left { - display: block; - } -} -/*! -- Stack Nav Sidebar Column -- */ -.nav-container.nav-container--sidebar + .main-container { - width: calc(100vw - 20.428571428571463em); - float: right; -} -.nav-container.nav-container--sidebar + .main-container .container { - max-width: 100%; -} -.nav-sidebar-column { - position: fixed; - z-index: 3; - left: 0; - width: 20.42857143em; - border-right: 1px solid #ececec; - height: 100vh; - overflow-y: scroll; - -ms-overflow-style: none; - padding: 2.78571429em 1.85714286em; -} -.nav-sidebar-column:not([class*='bg-']) { - background: #ffffff; -} -.nav-sidebar-column.bg--dark { - border-right: 1px solid #3f3f3f; -} -.nav-sidebar-column::-webkit-scrollbar { - display: none; -} -.nav-sidebar-column .logo { - max-height: 2.32142857em; - margin-bottom: 0.92857143em; -} -.nav-sidebar-column .text-block > p { - margin-bottom: 0.92857143em; -} -.nav-sidebar-column .menu-vertical li.dropdown:not(:hover):after { - opacity: .35; -} -.nav-sidebar-column .menu-vertical a:hover { - text-decoration: none; -} -.nav-sidebar-column .dropdown .dropdown__container, -.nav-sidebar-column .dropdown .dropdown__content { - left: 0 !important; - position: relative; - pointer-events: all; -} -.nav-sidebar-column .dropdown .dropdown__container:before { - height: 0; -} -.nav-sidebar-column .dropdown .dropdown__content { - transform: none !important; - box-shadow: none; - -webkit-box-shadow: none; - padding-top: 0.46428571em; - padding-right: 0; - padding-left: 0.46428571em; - background: none !important; -} -.nav-sidebar-column .dropdown .menu-vertical li.dropdown:after { - right: 1.85714286em; -} -.nav-sidebar-column .dropdown:not(.dropdown--active) .dropdown__container { - display: none; -} -.nav-sidebar-column .dropdown.dropdown--hover:hover > .dropdown__container { - display: block; -} -.nav-sidebar-column .social-list { - margin-bottom: 0.92857143em; -} -body.dropdowns--hover .nav-sidebar-column .dropdown:hover > .dropdown__container { - display: block; -} -.nav-sidebar-column-toggle { - transition: all .3s ease; - left: 0; - width: 3.71428571em; - height: 3.71428571em; - background: #ffffff; - text-align: center; - position: fixed; - z-index: 4; - cursor: pointer; - border-radius: 0 0 6px 0; - box-shadow: 2px 1px 4px rgba(0, 0, 0, 0.1); -} -.nav-sidebar-column-toggle > i { - transition: all .3s ease; - font-size: 1.78571429em; - position: relative; - top: 11px; -} -.nav-sidebar-column-toggle:not(.toggled-class) > i { - opacity: .5; -} -.nav-sidebar-column-toggle.toggled-class i:before { - content: '\e80b'; -} -@media all and (max-width: 990px) { - .nav-sidebar-column { - transition: all .3s ease; - left: -20.42857143em; - box-shadow: 2px 0px 4px rgba(0, 0, 0, 0); - } - .nav-sidebar-column.active { - left: 0; - box-shadow: 2px 0px 4px rgba(0, 0, 0, 0.1); - } - .nav-sidebar-column-toggle.toggled-class { - left: 20.42857143em; - } - .nav-container.nav-container--sidebar + .main-container { - width: 100%; - float: none; - } -} -.nav-container.nav-container--right .nav-sidebar-column { - right: 0; - left: auto; -} -.nav-container.nav-container--right + .main-container { - float: left; -} -.nav-container.nav-container--right .nav-sidebar-column-toggle { - left: auto; - right: 0; - border-radius: 0 0 0 6px; - box-shadow: -2px 1px 4px rgba(0, 0, 0, 0.1); -} -@media all and (max-width: 990px) { - .nav-container.nav-container--right .nav-sidebar-column { - right: -20.42857143em; - left: auto; - } - .nav-container.nav-container--right .nav-sidebar-column.active { - left: auto; - right: 0; - box-shadow: -2px 0px 4px rgba(0, 0, 0, 0.1); - } - .nav-container.nav-container--right .nav-sidebar-column-toggle.toggled-class { - left: auto; - right: 20.42857143em; - } -} -/*! -- Stack Nav Fullscreen -- */ -.menu-fullscreen { - color: #fff; -} -.menu-fullscreen .pos-absolute { - width: 100%; -} -.menu-fullscreen a { - color: #fff; -} -.menu-fullscreen a:hover { - text-decoration: none; -} -.menu-fullscreen .social-list { - margin-right: 0; -} -.menu-fullscreen:before { - background: rgba(0, 0, 0, 0.9); -} -.menu-fullscreen .modal-content .modal-close-cross { - right: 3.71428571em; - top: 1em; -} -@media all and (max-width: 767px) { - .menu-fullscreen .pos-bottom { - position: relative; - } -} -/*! -- Stack Dropdowns -- */ -.dropdown > .dropdown__trigger:after { - font-family: "stack-interface"; - display: inline-block; - font-size: 8px; - position: relative; - bottom: 2px; -} -.dropdown > .dropdown__trigger .image--xxs { - margin-right: 0.46428571em; -} -.dropdown .dropdown__content { - border-radius: 6px; - box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.08); - -webkit-box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.08); - padding: 1.23809524em 1.85714286em; -} -.dropdown .dropdown__content h5:not(:last-child) { - margin-bottom: 0.92857143em; -} -.dropdown .dropdown__content .background-image-holder { - border-radius: 6px 0 0 6px; -} -.dropdown .dropdown__content > .pos-absolute[class*='col-'] { - left: 0; - top: 0; - height: 100%; - position: absolute !important; -} -.dropdown .dropdown__content > .pos-absolute[class*='col-'][data-overlay]:before { - border-radius: 6px 0 0 6px; -} -.menu-horizontal > .dropdown > .dropdown__trigger:after { - content: '\e80a'; - margin-left: 4px; -} -.menu-vertical > .dropdown > .dropdown__trigger { - display: inline-block; - width: 100%; -} -@media all and (max-width: 767px) { - .dropdown [class*='col-'] + [class*='col-'] { - margin-top: 0.92857143em; - } - .dropdown .dropdown__content:not([class*='bg-']) { - border: none; - box-shadow: none; - } -} -@media all and (max-width: 767px) { - .dropdown__container { - left: 0 !important; - } -} -.menu-vertical li { - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; -} -.menu-vertical li:not(:hover):not(.dropdown--active) { - opacity: .75; -} -.menu-vertical li:not(:last-child) { - margin-bottom: 0.30952381em; -} -.menu-vertical li.dropdown { - position: relative; -} -.menu-vertical li.dropdown:after { - content: '\e80c'; - font-family: 'stack-interface'; - right: 0; - top: 0; - position: absolute; - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; - display: inline-block; - transform: translate3d(-10px, 0, 0); - -webkit-transform: translate3d(-10px, 0, 0); -} -.menu-vertical li.dropdown:hover:after { - transform: translate3d(-5px, 0, 0); - -webkit-transform: translate3d(-5px, 0, 0); -} -.menu-vertical li.separate { - border-top: 1px solid #e6e6e6; - margin-top: 0.92857143em; - padding-top: 0.92857143em; -} -.menu-vertical li.separate.dropdown:after { - top: .92857143em; -} -.menu-vertical + h5 { - margin-top: 1.85714286em; -} -@media all and (max-width: 990px) { - .menu-vertical .dropdown.dropdown--active:after { - opacity: 0; - } -} -@media all and (min-width: 991px) { - .dropdown .dropdown__container:before { - height: 18px; - } -} -/*! -- Stack Twitter Feeds -- */ -.tweets-feed .interact { - display: none; -} -.tweets-feed .user a:hover { - text-decoration: none; -} -.tweets-feed .user img { - border-radius: 50%; -} -.tweets-feed-1 { - border-radius: 6px; - border: 1px solid #ececec; - overflow: hidden; -} -.tweets-feed-1 li { - overflow: hidden; - padding: 1.85714286em; - padding-bottom: 0; -} -.tweets-feed-1 li:not(:last-child) { - border-bottom: 1px solid #ececec; -} -.tweets-feed-1 .user { - width: 20%; - float: left; - margin-bottom: 0.92857143em; -} -.tweets-feed-1 .user img { - max-height: 3.71428571em; - margin-right: 0.46428571em; -} -.tweets-feed-1 .user [data-scribe="element:name"], -.tweets-feed-1 .user [data-scribe="element:screen_name"] { - display: none; -} -.tweets-feed-1 .tweet, -.tweets-feed-1 .timePosted { - width: 80%; - float: right; -} -.tweets-feed-1 .tweet { - margin-bottom: 0.46428571em; -} -.tweets-feed-1 .timePosted { - font-size: 0.85714286em; - line-height: 2.16666667em; -} -.tweets-feed-1:not(:last-child) + .btn { - margin-top: 2.78571429em; -} -.imagebg .tweets-feed-1, -.bg--dark .tweets-feed-1 { - border-color: rgba(255, 255, 255, 0.1); -} -.imagebg .tweets-feed-1 li:not(:last-child), -.bg--dark .tweets-feed-1 li:not(:last-child) { - border-color: rgba(255, 255, 255, 0.1); -} -.tweets-feed-2 .user { - display: none; -} -.tweets-feed-2 .timePosted { - display: none; -} -.tweets-feed-2 li { - overflow: hidden; -} -.tweets-feed-2 li:before { - font-family: 'socicon'; - content: "\e08d"; -} -.tweets-feed-2 li .tweet { - width: 85%; - float: right; -} -.tweets-feed.slider .user img { - display: inline-block; - clear: both; - margin-bottom: 0.92857143em; -} -.tweets-feed.slider .user [data-scribe="element:name"] { - display: none; -} -.tweets-feed.slider .user [data-scribe="element:screen_name"] { - display: block; - font-size: 1.35714286em; - line-height: 1.36842105em; - font-weight: normal; -} -.tweets-feed.slider .tweet { - margin-top: 1.36842105263158em; - margin-bottom: 0.68421052631579em; - font-size: 1.35714286em; - line-height: 1.36842105em; -} -.tweets-feed.slider .timePosted { - margin: 0; -} -.tweets-feed.slider:not(:last-child) + .btn { - margin-top: 2.78571429em; -} -/*! -- Stack Instagram -- */ -.instafeed a { - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; -} -.instafeed a:hover { - opacity: .75; -} -.instafeed:not(.instafeed--gapless) li { - padding: 0.46428571em; -} -.instafeed.instafeed--gapless li { - margin-bottom: -1px; -} -.instafeed + .btn { - margin-top: 2.78571429em; -} -.instafeed[data-grid="1"][data-amount="8"] li { - display: inline-block; - width: 12.5%; -} -.instagram { - position: relative; -} -.instagram.unpad .btn { - position: absolute; - z-index: 2; - top: 50%; - transform: translate3d(-50%, -50%, 0); - -webkit-transform: translate3d(-50%, -50%, 0); - margin: 0; -} -/*! -- Stack Cards -- */ -.card__top { - position: relative; - overflow: hidden; -} -.card__action a { - color: #666666; - text-decoration: none; - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; -} -.card__action a i { - color: #252525; - font-size: 1em; -} -.card__action a span { - position: relative; - bottom: 2px; -} -.card__action a:not(:hover) { - opacity: .5; -} -.card p a { - text-decoration: none; -} -.masonry__item .card.boxed { - margin-bottom: 0; -} -.card-1 .card__avatar { - margin-bottom: 0.92857143em; -} -.card-1 .card__avatar img { - max-height: 2.78571429em; - margin-right: 0.46428571em; - margin-bottom: 0; -} -.card-1 .card__avatar, -.card-1 .card__meta { - display: inline-block; -} -.card-1 .card__meta { - float: right; -} -.card-1 .card__body { - border-bottom: 1px solid #ececec; - padding-bottom: 0.92857143em; - margin-bottom: 0.92857143em; -} -.card-1 .card__body img { - margin-bottom: 0.92857143em; -} -.card-1 .card__body h4 { - margin-bottom: 0.342105263157895em; -} -.bg--dark .card-1 .card__body { - border-color: #3f3f3f; -} -@media all and (max-width: 767px) { - .card .list-inline:not(.social-list) li { - display: inline-block; - } - .card .list-inline:not(.social-list) li:not(:first-child) { - margin-left: 0.92857143em; - } -} -.card-2 .card__top img { - border-radius: 6px 6px 0 0; -} -.card-2 .card__body { - border-bottom: 1px solid #ececec; - padding-bottom: 1.85714286em; -} -.card-2 .card__body h4 { - margin: 0; -} -.card-2 .card__body p { - margin-top: 0.92857143em; -} -.card-2 .card__bottom { - overflow: hidden; -} -.card-2 .card__bottom > div { - display: inline-block; - width: 50%; - float: left; -} -.card-2 .card__bottom .h6 { - margin-bottom: 0.541666666666667em; -} -.card-2 .card__body, -.card-2 .card__bottom { - padding: 1.85714286em; - border: 1px solid #ececec; -} -.card-2 .card__body { - border-bottom: none; - border-top: none; -} -.card-2 .card__bottom { - border-radius: 0 0 6px 6px; - padding: 0.92857143em 1.85714286em; -} -.card-2 .card__action i { - font-size: 1.78571429em; -} -.bg--dark .card-2 .card__body, -.bg--dark .card-2 .card__bottom { - border-color: #3f3f3f; -} -/*! -- Stack Checkmarks & Crosses -- */ -.checkmark { - display: inline-block; - position: relative; - width: 1.23809524em; - height: 1.23809524em; - border-radius: 50%; - text-align: center; -} -.checkmark:not([class*='bg-']) { - background: #f18f01; -} -.checkmark:before { - content: '\2713'; - color: #fff; - font-size: 11px; - position: absolute; - width: 100%; - left: 0; - top: -4px; -} -.checkmark.checkmark--cross:before { - content: '\2717'; -} -.checkmark:not(:last-child) { - margin-right: 13px; -} -/*! -- Stack Icons -- */ -.icon:not(.block) { - display: inline-block; -} -.icon.icon--xs { - font-size: 1.14285714285714em; -} -.text-block .icon + h4 { - margin-top: 0.6842105263158em; -} -.imagebg .icon { - color: #fff; -} -p .material-icons { - font-size: 1em; -} -p .material-icons:first-child { - margin-right: 0.30952381em; -} -.material-icons { - font-family: 'Material Icons' !important; -} -.icon-circle { - position: relative; - display: inline-block; - width: 3.71428571em; - height: 3.71428571em; - border-radius: 50%; - border: 1px solid #ececec; - background: #fafafa; - text-align: center; -} -.icon-circle i { - font-size: 24px; - position: absolute; - top: 50%; - transform: translateY(-50%); - width: 100%; - left: 0; -} -/*! -- Stack Tooltips -- */ -.tooltip { - position: relative; - top: 3px; - display: inline-block; - width: 1.23809524em; - height: 1.23809524em; - border-radius: 50%; - background: #252525; - text-align: center; - cursor: pointer; -} -.tooltip .tooltip__anchor { - color: #fff; - font-weight: 700; - font-size: 11px; - position: absolute; - top: -5px; - left: 6px; -} -.tooltip .tooltip__text { - transition: 0.2s ease; - -webkit-transition: 0.2s ease; - -moz-transition: 0.2s ease; - text-align: left; - z-index: 10; - position: absolute; - width: 280px; - background: #fafafa; - border: 1px solid #ececec; - padding: 0.61904762em; - left: 1.48571429em; - top: -0.92857143em; - opacity: 0; - pointer-events: none; - cursor: default; - box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); - box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.04); - line-height: 20px; -} -.tooltip:hover .tooltip__text { - opacity: 1; -} -.tooltip:last-child { - margin-left: 0.92857143em; -} -[data-tooltip] { - position: relative; - overflow: visible; -} -[data-tooltip]:after { - transition: all .2s ease; - content: attr(data-tooltip); - position: absolute; - top: -24px; - left: 50%; - transform: translateX(-50%); - background: #252525; - color: #fff; - border: 1px solid #e7e7e7; - padding: 2px 12px; - pointer-events: none; - white-space: nowrap; - font-size: 11px; - line-height: 18px; - font-weight: 600; - border-radius: 2px; - z-index: 2; - font-family: 'Open Sans'; -} -[data-tooltip]:not(:hover):after { - opacity: 0; -} -/*! -- Stack Boxes -- */ -.boxed { - border-radius: 6px; -} -.boxed .background-image-holder { - border-radius: 6px; -} -.boxed:before { - border-radius: 6px; -} -.boxed:not(:last-child) { - margin-bottom: 30px; -} -.boxed:not([class*='bg-']) { - background: #ffffff; -} -.boxed.bg--secondary .boxed { - background: #fafafa; -} -@media all and (min-width: 768px) { - .switchable .imagebg .boxed { - padding-left: 5.57142857em; - } -} -.bg--dark .boxed:not([class*='bg-']), -.imagebg:not(.image--light) .boxed:not([class*='bg-']) { - background: none; - color: #fff; -} -.bg--dark .boxed:not([class*='bg-']).boxed--border, -.imagebg:not(.image--light) .boxed:not([class*='bg-']).boxed--border { - border-color: #3f3f3f; -} -.bg--dark .boxed[class*='bg-'].boxed--border, -.imagebg:not(.image--light) .boxed[class*='bg-'].boxed--border { - border: none; -} -.imagebg:not(.image--light) .boxed:not(.bg--white):not(.bg--none) { - background: rgba(20, 20, 20, 0.3); -} -.imagebg:not(.image--light) .boxed:not(.bg--white):not(.bg--none).boxed--border { - border: none; -} -.imagebg:not(.image--light) .boxed:not(.bg--white):not(.bg--none) .boxed { - background: none; -} -.bg--primary .boxed:not(.imagebg) { - color: #666666; -} -.bg--primary .boxed:not(.imagebg) p { - color: #666666; -} -.bg--primary .boxed:not(.imagebg) h1, -.bg--primary .boxed:not(.imagebg) h2, -.bg--primary .boxed:not(.imagebg) h3, -.bg--primary .boxed:not(.imagebg) h4, -.bg--primary .boxed:not(.imagebg) h5, -.bg--primary .boxed:not(.imagebg) h6, -.bg--primary .boxed:not(.imagebg) .h1, -.bg--primary .boxed:not(.imagebg) .h2, -.bg--primary .boxed:not(.imagebg) .h3, -.bg--primary .boxed:not(.imagebg) .h4, -.bg--primary .boxed:not(.imagebg) .h5, -.bg--primary .boxed:not(.imagebg) .h6, -.bg--primary .boxed:not(.imagebg) i { - color: #252525; -} -.bg--primary .boxed:not(.imagebg) a { - color: #f18f01; -} -.bg--primary .boxed:not(.imagebg) .color--primary { - color: #f18f01 !important; -} -@media all and (min-width: 768px) { - .boxed.boxed--emphasis { - transform: scale(1.075); - -webkit-transform: scale(1.075); - } -} -/*! -- Stack Features Small -- */ -.feature:not(.boxed) { - margin-bottom: 60px; -} -.feature.feature--featured:after { - content: ''; - position: absolute; - bottom: 0; - width: 100%; - height: 4px; - background: #f18f01; - left: 0; -} -.feature h5 { - margin: 0; -} -.feature h4 { - margin-bottom: 0.342105263157895em; -} -.feature h4 + p { - max-width: 22.28571429em; -} -.feature i + h5 { - margin-top: 1.85714286em; -} -.feature i + h4 { - margin-top: 0.68421052631579em; -} -.feature i.icon--lg + h4 { - margin-top: 1.36842105263158em; -} -.feature i.icon--lg + .h5 { - margin-top: 0.92857143em; -} -.feature img + .boxed { - border-radius: 0 0 6px 6px; - border-top: none; -} -.imagebg:not(.image--light) .feature.bg--white a:not(.btn) { - color: #f18f01; -} -.imagebg:not(.image--light) .feature.bg--white .label { - color: #fff; -} -@media all and (max-width: 767px) { - .feature .feature__body form .row { - margin-left: 0; - margin-right: 0; - } -} -section.text-center .feature-6 h4 + p { - margin: 0 auto; -} -@media all and (min-width: 768px) { - .row div[class*='col-']:nth-child(1):nth-last-child(3) .feature, - .row div[class*='col-']:nth-child(2):nth-last-child(2) .feature, - .row div[class*='col-']:nth-child(3):last-child .feature { - margin-bottom: 0; - } -} -a.block > .feature { - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; -} -a.block:hover > .feature { - box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); - box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.04); -} -.feature-1 { - min-height: 11.14285714em; -} -.feature-1 p { - margin: 0; -} -.feature-1 p.lead { - min-height: 5.05263157894737em; -} -.feature-1 > img:first-child { - border-radius: 6px 6px 0 0; -} -.feature-1 > a.block img { - border-radius: 6px 6px 0 0; -} -.feature-1 > a.block + .feature__body { - border-radius: 0 0 6px 6px; -} -.feature-1[class*='box-shadow'] { - border-radius: 6px; - transition: 0.35s ease-out; - -webkit-transition: 0.35s ease-out; - -moz-transition: 0.35s ease-out; -} -.feature-1[class*='box-shadow']:hover { - transform: translate3d(0, -10px, 0); - -webkit-transform: translate3d(0, -10px, 0); - box-shadow: 0 23px 40px rgba(0, 0, 0, 0.2); -} -.hover-shadow { - border-radius: 6px; - backface-visibility: hidden; - overflow: hidden; - border: 1px solid #ececec; - transition: 0.35s ease-out; - -webkit-transition: 0.35s ease-out; - -moz-transition: 0.35s ease-out; -} -.hover-shadow:hover { - transform: translate3d(0, -10px, 0); - -webkit-transform: translate3d(0, -10px, 0); - box-shadow: 0 23px 40px rgba(0, 0, 0, 0.2); -} -.bg--dark .hover-shadow { - border-color: #222; -} -.bg--dark .hover-shadow:hover { - box-shadow: 0 23px 40px #000000; -} -.feature-2 { - overflow: hidden; -} -.feature-2 .feature__body { - width: 75%; - float: right; -} -.feature-2 h5 { - margin-bottom: 0.46428571em; -} -.feature-2 p:last-child { - margin: 0; -} -.feature-2 i { - width: 25%; - float: left; -} -.feature-large .feature-2 + .feature-2:last-child { - margin-bottom: 0; -} -@media all and (max-width: 990px) { - .feature-2 .feature__body, - .feature-2 i { - width: 100%; - float: none; - } - .feature-2 p:first-of-type { - margin-top: 0.92857143em; - } -} -.feature-3 i { - margin-bottom: 0.16666666666667em; -} -.feature-3 p { - min-height: 7.42857143em; -} -.feature-4 .btn { - position: absolute; - width: 100%; - bottom: 0; - left: 0; - border-radius: 0; - padding: 0.92857143em; -} -.feature-4 .btn:hover { - transform: none; -} -.feature-4 p { - min-height: 9.28571429em; -} -.feature-4 p:last-of-type { - margin-bottom: 3.71428571em; -} -.feature-5 i { - width: 25%; - float: left; -} -.feature-5 .feature__body { - width: 75%; - float: right; -} -.feature-5 p { - min-height: 5.57142857em; -} -.feature-5 p:last-of-type { - margin-bottom: 0.92857143em; -} -.feature-5:not([class*='bg-']) { - color: #252525; -} -.feature-6 p { - min-height: 9.28571429em; -} -.feature-6 p:last-child { - margin: 0; -} -.feature-7 { - height: 13em; - margin-bottom: 30px; -} -.feature-7[data-overlay]:before { - border-radius: 6px; - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; -} -.feature-7[data-overlay]:hover:before { - opacity: .75; -} -.feature-7 .background-image-holder { - border-radius: 6px; -} -.feature-7 h3 { - margin: 0; -} -.row--gapless .feature-7 { - margin: 0; - border-radius: 0; -} -.row--gapless .feature-7 .background-image-holder { - border-radius: 0; -} -.row--gapless .feature-7:before { - border-radius: 0; -} -@media all and (max-width: 767px) { - .feature-7 .pos-vertical-center { - top: 50%; - transform: translate3d(0, -50%, 0); - -webkit-transform: translate3d(0, -50%, 0); - } -} -.feature-8 { - padding: 2.78571429em 0 3.71428571em 0; -} -.feature-8:not(.boxed) { - margin-bottom: 0; -} -.feature-8 .feature__body { - max-width: 70%; - margin: 0 auto; -} -.feature-8 p { - min-height: 5.57142857em; -} -@media all and (max-width: 990px) { - .feature-8 .feature__body { - max-width: 85%; - } -} -@media all and (max-width: 767px) { - .feature p { - min-height: auto; - margin-left: auto; - margin-right: auto; - } - .feature.boxed { - margin-bottom: 15px; - } - .feature:not(.boxed) { - margin-bottom: 30px; - } - .feature.feature-8 { - margin-bottom: 0; - } -} -.feature-8 img { - max-height: 14.85714286em; -} -.feature-9 h4 { - margin: 0; -} -.feature-9:not(.boxed) { - margin-bottom: 30px; -} -@media all and (min-width: 768px) { - .features-small-14 .text-block { - margin-bottom: 3.71428571em; - } - .features-small-14 h4 { - min-height: 2.736842105263158em; - } -} -/*! -- Stack Features Large -- */ -@media all and (min-width: 768px) { - .staggered div[class*='col-']:nth-child(2):last-child { - margin-top: 13em; - } - .staggered div[class*='col-']:nth-child(2):last-child:not(:last-child) { - margin-bottom: 9.28571429em; - } - .staggered div[class*='col-'] .feature:not(:last-child) { - margin-bottom: 9.28571429em; - } -} -.feature-large h4:first-child { - margin-bottom: 0.68421052631579em; -} -.feature-large .feature:not(.boxed) { - margin-bottom: 30px; -} -.feature-large .feature-3.text-center p { - margin: 0 auto; -} -.feature-large .lead + .feature-large__group { - margin-top: 3.71428571em; -} -.feature-large .feature-large__group { - overflow: hidden; -} -.feature-large-1 .lead { - margin-bottom: 2.73684210526316em; -} -@media all and (min-width: 768px) { - .feature-large-2 div[class*='col-']:first-child { - margin-top: 5.57142857em; - } - .feature-large-2 div[class*='col-']:last-child { - margin-top: 7.42857143em; - } -} -@media all and (max-width: 767px) { - .feature-large-2 img { - margin: 1.85714286em 0; - } -} -.feature-large-7.switchable .boxed div[class*='col-']:only-child { - float: none; -} -.feature-large-13 p.lead + .text-block { - margin-top: 3.71428571em; -} -.feature-large-13 div[class*='col-'] .text-block + .text-block { - margin-top: 2.78571429em; -} -@media all and (min-width: 1200px) { - .feature-large-13:not(.text-center) .text-block p { - max-width: 26em; - } -} -.feature-large-14 h5 { - margin-bottom: 0.46428571em; -} -.feature-large-14 .boxed { - margin-bottom: 0; -} -.feature-large-14 .boxed.boxed--border img { - border-radius: 6px; -} -@media all and (min-width: 768px) { - .feature-large-14.switchable .switchable__text { - margin-top: 5.57142857em; - } -} -/*! -- Stack Accordions -- */ -.accordion .accordion__title { - transition: 0.5s ease; - -webkit-transition: 0.5s ease; - -moz-transition: 0.5s ease; - opacity: .5; - margin-bottom: 0.92857143em; -} -.accordion .accordion__title:hover { - opacity: 1; -} -.accordion .accordion__title:before { - font-family: "stack-interface"; - content: '\e80d'; - margin-right: 6px; - color: #252525; -} -.accordion .accordion__title span { - display: inline-block; -} -.accordion li.active { - margin-bottom: 0.92857143em; -} -.accordion li.active .accordion__title { - opacity: 1; -} -.accordion li.active .accordion__title:before { - content: '\e80a'; -} -.accordion li.active .accordion__content { - animation: fadeUp .5s ease forwards; - -webkit-animation: fadeUp .5s ease forwards; -} -.accordion-1 li.active .accordion__title { - border-color: #f18f01; -} -.accordion-1 li.active .accordion__title span { - color: #fff; -} -.accordion-1 li.active .accordion__title:before { - color: #fff; -} -.accordion-1 li .accordion__title { - border-radius: 6px; - border-bottom: 1px solid #ECECEC; -} -.accordion-2 li .accordion__title { - border-left: none; - border-right: none; - border-top: none; - border-bottom: 1px solid #ECECEC; - padding-left: 0; -} -.accordion-2 li.active .accordion__title { - background: none; - border-bottom: 1px solid rgba(0, 0, 0, 0); -} -.bg--dark .accordion-2 li .accordion__title, -.imagebg:not(.image--light) .accordion-2 li .accordion__title, -.bg--primary .accordion-2 li .accordion__title, -.bg--dark .accordion-1 li .accordion__title, -.imagebg:not(.image--light) .accordion-1 li .accordion__title, -.bg--primary .accordion-1 li .accordion__title { - border-color: #4b4b4b; -} -.bg--dark .accordion-2 li .accordion__title:before, -.imagebg:not(.image--light) .accordion-2 li .accordion__title:before, -.bg--primary .accordion-2 li .accordion__title:before, -.bg--dark .accordion-1 li .accordion__title:before, -.imagebg:not(.image--light) .accordion-1 li .accordion__title:before, -.bg--primary .accordion-1 li .accordion__title:before { - color: #fff; -} -.imagebg:not(.image--light) .accordion li .accordion__title, -.bg--primary .accordion li .accordion__title { - border-color: rgba(255, 255, 255, 0.3); -} -/*! -- Stack Tabs -- */ -.tabs-container.tabs--vertical { - overflow: hidden; -} -.tabs-container.tabs--vertical .tabs { - width: 25%; - float: left; -} -.tabs-container.tabs--vertical .tabs li { - display: block; -} -.tabs-container.tabs--vertical .tabs li:not(:last-child) { - border-right: none; - border-bottom: 1px solid #ECECEC; -} -.tabs-container.tabs--vertical .tabs-content { - width: 70%; - float: right; - margin-top: 0; -} -.tabs-container.tabs--vertical .tabs-content > li:not(.active) .tab__content { - animation: fadeOutUp .5s ease forwards; - -webkit-animation: fadeOutUp .5s ease forwards; -} -.tabs-container.tabs--vertical .tabs-content > li.active .tab__content { - animation: fadeInUp .5s ease forwards; - -webkit-animation: fadeInUp .5s ease forwards; - backface-visibility: hidden; -} -.tabs-container.tabs--vertical.tabs--icons .tabs { - width: 15%; - text-align: center; -} -.tabs-container.tabs--vertical.tabs--icons .tabs-content { - width: 80%; -} -@media all and (max-width: 767px) { - .tabs-container.tabs--vertical .tabs, - .tabs-container.tabs--vertical .tabs-content { - width: 100%; - float: none; - } - .tabs-container.tabs--vertical .tabs { - margin-bottom: 1.85714286em; - } - .tabs-container.tabs--vertical .tabs-content > li:not(.active) .tab__content { - animation: fadeOutRight .5s ease forwards; - -webkit-animation: fadeOutRight .5s ease forwards; - } - .tabs-container.tabs--vertical .tabs-content > li.active .tab__content { - animation: fadeInLeft .5s ease forwards; - -webkit-animation: fadeInLeft .5s ease forwards; - backface-visibility: hidden; - } -} -.tabs { - display: inline-block; - border: 1px solid #ECECEC; - border-radius: 6px; - margin-bottom: 1.85714286em; -} -.tabs li { - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; - padding: 0.92857143em 1.85714286em; -} -.tabs li:not(:last-child) { - border-right: 1px solid #ECECEC; -} -.tabs li.active { - opacity: 1; -} -.tabs li.active .tab__title { - color: #f18f01; -} -.tabs li.active .tab__title span { - color: #f18f01; -} -.tabs li:not(.active) { - opacity: .5; -} -.tabs li:hover { - opacity: 1; - cursor: pointer; -} -.tabs .tab__title { - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; -} -.tabs .tab__title:not(.btn) { - padding-right: 0; - padding-left: 0; -} -.tabs .tab__title i + span { - margin-top: 0.46428571em; - display: inline-block; - margin-bottom: 0; -} -.bg--primary .tabs { - border-color: #fff; -} -.bg--primary .tabs li.active .tab__title { - color: #fff; -} -.bg--primary .tabs li.active .tab__title span { - color: #fff; -} -.bg--primary .tabs li:not(:last-child) { - border-color: #fff; -} -@media all and (min-width: 768px) { - .tabs.tabs--spaced { - margin-bottom: 3.71428571em; - } -} -.tabs-content { - position: relative; -} -.tabs-content > li:not(.active) .tab__content { - position: absolute; - left: 0; - top: 0; - display: block; - opacity: 0; - pointer-events: none; - animation: fadeOutRight .5s ease forwards; - -webkit-animation: fadeOutRight .5s ease forwards; -} -.tabs-content > li.active { - animation: fadeInLeft .5s ease forwards; - -webkit-animation: fadeInLeft .5s ease forwards; - backface-visibility: hidden; -} -@media all and (max-width: 767px) { - .tabs li { - display: block; - } - .tabs li:not(:last-child) { - border-bottom: 1px solid #ECECEC; - border-right: none; - } -} -.tabs--folder .tabs { - overflow: hidden; - margin-bottom: 0; - border-radius: 6px 6px 0 0; - border-bottom: none; -} -.tabs--folder .tabs > li { - border-top: 3px solid rgba(0, 0, 0, 0); -} -.tabs--folder .tabs > li.active { - border-top: 3px solid #f18f01; -} -.tabs--folder .tabs-content { - overflow: hidden; - position: relative; - bottom: 8px; - padding: 1.85714286em; - border: 1px solid #ECECEC; - border-radius: 0 0 6px 6px; -} -.tabs--folder .tabs-content > li:not(.active) .tab__content { - top: 1.85714286em; - left: 1.85714286em; -} -.tabs--folder .tab__title .h5 { - margin: 0; - display: inline-block; -} -.tabs--folder .tab__title .label { - position: relative; - color: #fff !important; - top: -2px; - right: 0; - margin-left: 0.46428571em; - min-width: 0; -} -/*! -- Stack Switchable Sections -- */ -.switchable .switchable__text { - margin-top: 1.85714286em; -} -.switchable [class*='col-']:first-child .switchable__text { - margin-bottom: 2.78571429em; -} -.section--overlap .row { - position: relative; - margin-top: -13em; -} -@media all and (max-width: 990px) { - .switchable .switchable__text { - margin-top: 0; - } -} -@media all and (max-width: 767px) { - .switchable .switchable__text { - margin-top: 1.85714286em; - } - .switchable .imageblock__content[class*='col-'] { - float: none !important; - } - .switchable .row > div[class*='col-'] { - float: none !important; - } - .switchable .row > div[class*='col-']:last-child:not(:only-child) { - margin-top: 1.85714286em; - } -} -/*! -- Stack CTA -- */ -.cta .btn:first-child:not(:last-child) { - margin-bottom: 1.85714286em; -} -.cta.boxed:last-child { - margin-bottom: 0; -} -@media all and (min-width: 768px) { - .cta--horizontal h4, - .cta--horizontal .lead, - .cta--horizontal .btn { - margin: 0; - } - .cta--horizontal h4, - .cta--horizontal .lead { - position: relative; - top: 4px; - } - .bg--dark .cta-1 > div[class*='col-']:last-child, - .imagebg .cta-1 > div[class*='col-']:last-child { - border-left: none; - } -} -@media all and (min-width: 1200px) { - .cta-1.boxed--border { - padding: 0; - } - .cta-1 > div[class*='col-'] { - padding: 1.23809524em 15px; - } - .cta-1 > div[class*='col-']:last-child { - border-left: 1px solid #ECECEC; - } -} -@media all and (max-width: 990px) { - .cta-1 { - text-align: center; - } - .cta-1 > div[class*='col-'] { - padding-left: 0; - padding-right: 0; - } - .cta-1 > div[class*='col-']:not(:last-child) { - margin-bottom: 0.92857143em; - } - .cta-1 > div[class*='col-']:last-child { - margin-top: 1.85714286em; - } -} -@media all and (max-width: 767px) { - .cta .lead { - margin: 1.36842105263158em 0; - } -} -.cta-2 { - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; -} -.cta-2 h2 { - margin: 1.57575757575758em 0; -} -.cta-2.bg--primary:hover { - background: #fe9803; -} -.cta-2:hover { - background: #ffffff; -} -@media all and (min-width: 768px) { - .cta-3 .switchable__text { - margin-top: 5.57142857em; - } -} -/*! -- Stack Videos -- */ -.video-play-icon:before { - border-color: transparent transparent transparent #252525; - margin-top: -3px; -} -.modal-instance .video-play-icon + span { - position: relative; - display: inline-block; - margin-left: 0.92857143em; - white-space: nowrap; - bottom: 22px; -} -.modal-instance .video-play-icon.video-play-icon--xs + span { - bottom: 8px; - margin-left: 0.46428571em; -} -.video-cover { - background: #252525; -} -.video-cover.border--round { - overflow: hidden; -} -.video-cover.border--round iframe { - border-radius: 6px; -} -.video-cover:not(:last-child) { - margin-bottom: 1.85714286em; -} -.video-cover + span.h4 + span { - display: inline-block; - margin-left: 0.92857143em; -} -.video-cover .video-play-icon { - transition: 0.2s ease-out; - -webkit-transition: 0.2s ease-out; - -moz-transition: 0.2s ease-out; -} -.video-cover .video-play-icon:hover { - box-shadow: 0 23px 40px rgba(0, 0, 0, 0.2); - transform: translate3d(-50%, -52%, 0); - -webkit-transform: translate3d(-50%, -52%, 0); -} -.imagebg .video-cover .video-play-icon { - z-index: 10; -} -@media all and (min-width: 768px) { - h2 + .video-cover { - margin-top: 3.71428571em; - } -} -@media all and (min-width: 768px) { - .video-1 .video-play-icon { - margin-right: 1.85714286em; - } - .video-1 h2 { - display: inline-block; - position: relative; - bottom: 14px; - } - div[class*='col-sm-6'] .video-1 h2 { - bottom: 0; - display: block; - } - div[class*='col-sm-6'] .video-1 .video-play-icon { - margin-bottom: 0.46428571em; - } -} -.video-1 h2 { - margin: 0; -} -.imageblock__content .modal-instance { - position: absolute; - top: 50%; - left: 50%; - transform: translate3d(-50%, -50%, 0); - -webkit-transform: translate3d(-50%, -50%, 0); -} -/*! -- Stack Modals -- */ -.modal-container .modal-content:not(.height--natural) { - height: auto; - width: auto; -} -.modal-instance:not(.block) { - display: inline-block; -} -.modal-instance.block > .btn { - display: block; -} -@media all and (min-width: 768px) { - .modal-instance + span:last-child { - display: inline-block; - margin-left: 0.92857143em; - } -} -.modal-container .modal-content { - max-height: 95%; - transform: translateX(-50%) translateY(-50%); - -webkit-transform: translateX(-50%) translateY(-50%); -} -.modal-container .modal-content .feature:only-child { - margin-bottom: 0; -} -.modal-container .modal-content .feature:only-child .boxed { - margin-bottom: 0; -} -.modal-container .modal-content .imagebg:not(.image--light) .modal-close-cross:before { - color: #fff; -} -@media all and (max-width: 767px) { - .modal-container .modal-content > .modal-close-cross { - top: 3em; - background: #222; - width: 2em; - height: 2em; - text-align: center; - border-radius: 50%; - color: #fff; - } -} -.modal-content { - -ms-overflow-style: none; -} -.modal-content::-webkit-scrollbar { - display: none; -} -/*! -- Stack Notifications -- */ -.notification { - margin: 1.85714286em; - box-shadow: none; -} -.notification:not([class*='bg--']) { - background: none; -} -.notification > .boxed { - margin: 0; -} -.notification > .feature, -.notification .feature__body { - margin-bottom: 0; -} -.search-box { - width: 100%; - margin: 0; - padding: 1.85714286em; - box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); - box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.04); -} -.search-box.notification--reveal { - z-index: 9999; -} -.search-box .notification-close-cross { - top: 2.32142857em; - right: 1.85714286em; -} -.notification-close-cross.notification-close-cross--circle { - background: #222; - width: 2em; - height: 2em; - text-align: center; - border-radius: 50%; - color: #fff; -} -/*! -- Stack Loader -- */ -.loader { - border: 3px solid #f18f01; - border-radius: 30px; - height: 30px; - left: 50%; - margin: -15px 0 0 -15px; - opacity: 0; - position: fixed; - z-index: 10; - top: 50%; - width: 30px; - animation: pulsate 0.7s ease-out infinite; -} -.loader.loader--fade { - opacity: 0; - animation: none; -} -@keyframes pulsate { - 0% { - transform: scale(0.1); - opacity: 0.0; - } - 50% { - opacity: 1; - } - 100% { - transform: scale(1.2); - opacity: 0; - } -} -/*! -- Stack Lightboxes -- */ -.lb-close { - position: relative; - top: 10px; -} -.lb-close:before { - content: '\00D7'; - color: #fff; - font-size: 2.5em; - font-weight: 400; -} -.lb-close:hover { - text-decoration: none; -} -.lb-prev:after, -.lb-next:after { - font-family: 'stack-interface'; - position: fixed; -} -.lb-prev:after { - content: '\e801'; - left: 1.85714286em; -} -.lb-next:after { - content: '\e802'; - right: 1.85714286em; -} -.lb-data { - overflow: hidden; - min-height: 30px; -} -a[data-lightbox] { - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; -} -a[data-lightbox]:hover { - opacity: .8; - cursor: zoom-in; -} -/*! -- Stack Covers -- */ -.cover .typed-headline { - margin-bottom: 3.71428571em; -} -.cover .typed-headline .type--bold { - font-weight: 400; -} -.cover .triptych { - margin-top: 3.71428571em; -} -.cover .btn + .modal-instance { - margin-top: 1.85714286em; -} -.cover h3 + form, -.cover .h3 + form { - margin-top: 2.78571429em; -} -.cover .lead + .boxed { - margin-top: 3.71428571em; -} -.cover.unpad--bottom { - overflow: hidden; -} -.cover .modal-instance.block:not(:first-child):not(:last-child) { - margin: 2.78571429em 0; -} -.cover .pos-bottom { - margin-bottom: 1.85714286em; -} -@media all and (min-width: 768px) { - .cover .row .row:last-child { - margin-top: 5.57142857em; - } -} -@media all and (max-width: 767px) { - .cover .pos-bottom.pos-absolute { - position: relative; - margin-top: 1.85714286em; - } -} -@media all and (max-width: 990px) { - .cover .mt--3 { - margin-top: 0; - } -} -@media all and (min-width: 768px) { - .cover .triptych { - margin-top: 7.42857143em; - } -} -.cover-fullscreen { - min-height: 100vh; -} -.cover-fullscreen.slider[data-paging="true"] .slides .flickity-slider > li { - height: 100vh; -} -.cover-fullscreen.slider[data-paging="true"] .pos-bottom { - bottom: 5.57142857em; - width: 100%; -} -.cover-fullscreen.slider[data-paging="true"] h4 { - margin: 0; -} -.cover-slider { - overflow: hidden; -} -.cover-slider .slider { - position: relative; - width: 100%; - pointer-events: none; -} -.cover-slider .slider:nth-child(1) { - transform: translateY(-30%); -} -.cover-slider .slider:nth-child(2) { - transform: translateY(-25%); -} -.cover-slider .slider:nth-child(3) { - transform: translateY(-20%); -} -.cover-slider .slider .slide { - opacity: .05; -} -.cover-slider .typed-headline { - margin: 0; -} -.cover-slider .typed-headline + .btn { - margin-top: 0.92857143em; -} -.cover-slider .slider-container { - transform: rotateZ(-30deg) translateY(-10%); - -webkit-transform: rotateZ(-30deg) translateY(-10%); - position: absolute; - width: 100%; - height: 100%; - top: 0; -} -@media all and (min-width: 768px) { - .cover-slider + .cta-4 { - position: absolute; - background: none; - color: #fff; - border-bottom: none !important; - width: 100%; - transform: translate3d(0, -100%, 0); - -webkit-transform: translate3d(0, -100%, 0); - } - .cover-slider + .cta-4 a { - color: #fff; - font-weight: 600; - } -} -.cover-features.space--lg { - padding-bottom: 3.71428571em; -} -.cover-features .row:nth-child(2) { - margin-top: 11.14285714em; -} -@media all and (max-width: 767px) { - .cover-features.space--lg { - padding-bottom: 1.85714286em; - } - .cover-features .row:nth-child(2) { - margin-top: 3.71428571em; - } -} -/*! -- Stack Processes -- */ -.process-1 { - padding: 3.71428571em 0; - position: relative; - overflow: hidden; -} -.process-1 .process__item { - width: 50%; -} -.process-1 .process__item:not(:last-child) { - margin-bottom: 1.85714286em; -} -.process-1:before { - content: ''; - position: absolute; - width: 2px; - height: 100%; - left: 50%; - top: 0; - background: #f18f01; -} -.process__item { - position: relative; -} -.process__item:after { - content: ''; - width: 1.85714286em; - height: 1.85714286em; - background: #fff; - border: 2px solid #f18f01; - border-radius: 50%; - position: absolute; - top: 0; - margin-left: 1px; -} -@media all and (min-width: 768px) { - .process-1 .process__item:nth-child(odd) { - text-align: right; - padding-right: 3.71428571em; - } - .process-1 .process__item:nth-child(odd):after { - right: -0.92857143em; - } - .process-1 .process__item:nth-child(even) { - margin-left: 50%; - padding-left: 3.71428571em; - } - .process-1 .process__item:nth-child(even):after { - left: -0.92857143em; - } -} -@media all and (max-width: 767px) { - .process-1:before, - .process-2:before { - left: 0.92857143em; - } - .process-1 .process__item, - .process-2 .process__item { - width: 100%; - padding-left: 3.71428571em; - } - .process-1 .process__item:after, - .process-2 .process__item:after { - left: 0; - } -} -.bg--dark .process-1:before, -.imagebg .process-1:before, -.bg--dark .process-2:before, -.imagebg .process-2:before { - background: #fff; -} -.bg--dark .process-1 .process__item:after, -.imagebg .process-1 .process__item:after, -.bg--dark .process-2 .process__item:after, -.imagebg .process-2 .process__item:after { - background: #fff; -} -.bg--dark .process-1 .process__item:after, -.bg--dark .process-2 .process__item:after { - border-color: #252525; -} -.process-2 { - position: relative; -} -.process-2 .process__item { - padding-top: 3.71428571em; -} -.process-2 .process__item:after { - display: inline-block; - text-align: center; -} -.process-2:before { - content: ''; - position: absolute; - width: 100%; - height: 2px; - top: 0.92857143em; - left: 0; - background: #f18f01; -} -@media all and (max-width: 767px) { - .process-2:before { - height: 100%; - width: 2px; - left: 1.85714286em; - margin-left: 2px; - } - .process-2 .process__item:after { - top: 3.71428571em; - } -} -.process-3 { - list-style: none; - position: relative; -} -.process-3 li { - position: relative; - z-index: 1; - overflow: hidden; -} -.process-3 li .process__number { - float: left; - width: 15%; - width: 3.71428571em; - height: 3.71428571em; - border-radius: 50%; - border: 2px solid #f18f01; - background: #fff; - text-align: center; -} -.process-3 li .process__number span { - font-size: 1.35714286em; - font-weight: bold; - color: #f18f01; - position: relative; - top: 12px; -} -.process-3 li .process__body { - width: 80%; - float: right; -} -.process-3 li .process__body h4 { - margin-bottom: 0.342105263157895em; -} -.process-3 li:not(:last-child) { - margin-bottom: 3.71428571em; -} -.process-3:before { - content: ''; - position: absolute; - height: 100%; - width: 1px; - left: 1.85714286em; - top: 0; - border-left: 1px dashed #ddd; -} -.bg--dark .process-3 li .process__number { - background: #252525; -} -.bg--dark .process-3:before { - border-color: #aaa; -} -.process-stepper > li { - transition: all .3s ease; - display: inline-block; - float: left; - text-align: center; - position: relative; -} -.process-stepper > li:before { - transition: all .3s ease; - content: ''; - width: 0.92857143em; - height: 0.92857143em; - background: #ccc; - border-radius: 50%; - display: block; - margin: 0 auto; - margin-bottom: 0.92857143em; -} -.process-stepper > li:after { - transition: all .3s ease; - content: ''; - width: 100%; - height: 2px; - position: absolute; - background: #ccc; - top: 5px; - left: 0; -} -.process-stepper > li:first-child:after, -.process-stepper > li:last-child:after { - width: 50%; -} -.process-stepper > li:first-child:after { - left: 50%; -} -.process-stepper > li.active:before, -.process-stepper > li.active:after { - background: #f18f01; -} -.process-stepper > li > span { - cursor: default; -} -.process-stepper[data-process-steps="6"] > li { - width: 16.666666666666667%; -} -.process-stepper[data-process-steps="5"] > li { - width: 20%; -} -.process-stepper[data-process-steps="4"] > li { - width: 25%; -} -.process-stepper[data-process-steps="3"] > li { - width: 33.33333333%; -} -.process-stepper[data-process-steps="2"] > li { - width: 50%; -} -.bg--dark .process-stepper li:not(.active):before, -.bg--dark .process-stepper li:not(.active):after { - background: #585858; -} -/*! -- Stack Typed Text -- */ -span + .typed-text.h2 { - margin-left: 4px; -} -span + .typed-text.h1 { - margin-left: 6px; -} -@media all and (max-width: 767px) { - .typed-text { - display: block; - } - .typed-headline { - margin-bottom: 1.85714286em; - } - .typed-headline h1, - .typed-headline .h1 { - margin-bottom: 0; - } -} -/*! -- Stack Forms -- */ -.bg--dark input, -.imagebg:not(.image--light) input, -.bg--dark textarea, -.imagebg:not(.image--light) textarea, -.bg--dark select, -.imagebg:not(.image--light) select, -.bg--dark .input-select:after, -.imagebg:not(.image--light) .input-select:after { - color: #666666; -} -.bg--dark label, -.imagebg:not(.image--light) label { - color: #fff; -} -.bg--dark form.attempted-submit input.field-error { - background: #D84D4D; - color: #fff; -} -form { - position: relative; -} -form > div[class*='col-']:not(:last-child), -form > .row > div[class*='col-']:not(:last-child) { - margin-bottom: 0.92857143em; -} -form .boxed:last-child { - margin: 0; -} -form.form--clearfix { - margin-left: -15px; -} -@media all and (min-width: 768px) { - div[class*='col-'] > form div[class*='col-']:last-child:nth-child(2) { - padding-right: 0; - } - div[class*='col-'] > form div[class*='col-']:first-child:nth-last-child(2) { - padding-left: 0; - } - form.form--horizontal > div[class*='col-'] { - margin: 0; - } -} -@media all and (max-width: 767px) { - .row form > .row { - margin-left: 0; - margin-right: 0; - } -} -h2 + form, -.h2 + form { - margin-top: 2.78571429em; -} -h3 + form, -.h3 + form, -.lead + form { - margin-top: 2.78571429em; -} -.cover .lead + form { - margin-top: 3.71428571em; -} -form + span.type--fine-print { - margin-top: 1.08333333333334em; - display: inline-block; -} -.form--inline > span.h4 { - color: #666666; -} -.form--inline input, -.form--inline [class*='input-'] { - display: inline-block; - max-width: 200px; -} -.form--inline > span:not(:last-child), -.form--inline input:not(:last-child), -.form--inline [class*='input-']:not(:last-child) { - margin-right: 0.92857143em; -} -.form--inline button { - max-width: 200px; -} -.bg--dark .form--inline > span.h4, -.imagebg:not(.image--light) .form--inline > span.h4 { - color: #fff; -} -button, -input[type="submit"] { - height: 3.25000000000001em; -} -button.btn, -input[type="submit"].btn { - font-size: 0.85714286em; - font-weight: 700; - padding-left: 0; - padding-right: 0; -} -button.btn.btn--primary, -input[type="submit"].btn.btn--primary { - color: #fff; -} -button.btn.type--uppercase, -input[type="submit"].btn.type--uppercase { - letter-spacing: .5px; - margin-right: -0.5px; -} -button.checkmark.checkmark--cross, -input[type="submit"].checkmark.checkmark--cross { - width: 1.85714286em; - height: 1.85714286em; - border: none; - background: #e23636; -} -button.checkmark.checkmark--cross:before, -input[type="submit"].checkmark.checkmark--cross:before { - content: '\00d7'; - font-size: 18px; - top: -1px; -} -button[type="submit"].btn--loading:after, -input[type="submit"][type="submit"].btn--loading:after { - background: #f18f01; -} -.bg--primary button.btn { - border-color: rgba(255, 255, 255, 0.5); - color: #fff; -} -.bg--primary button.btn:hover { - border-color: #fff; -} -.bg--primary button.btn.btn--primary { - color: #f18f01; - border-color: #f18f01; -} -.bg--primary button.btn.btn--primary-1 { - border-color: #006e90; -} -input, -select { - height: 2.78571429em; -} -input.field-error { - border-color: #EBA8A8; -} -input[type] + input[type], -input[type] + .input-checkbox, -input[type] + button, -input[type] + .input-select { - margin-top: 0.92857143em; -} -input, -[class*='input-'] label, -select, -textarea { - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; -} -input:not([class*='col-']), -select:not([class*='col-']), -.input-select:not([class*='col-']), -textarea:not([class*='col-']), -button[type="submit"]:not([class*='col-']) { - width: 100%; -} -input[type], -select, -textarea { - padding-left: 0.92857143em; -} -input[type]:focus, -select:focus, -textarea:focus { - border-color: #fea627; -} -input[type="image"] { - border: none; - padding: none; - width: auto; -} -label { - font-size: .85714286em; -} -.bg--primary label, -.bg--primary-1 label { - color: #fff; -} -.input-icon i { - top: 8px; - left: 8px; -} -.input-icon input { - padding-left: 2.78571429em; -} -.text-center .input-checkbox label, -.text-center .input-radio label { - margin: 0 auto; -} -.input-checkbox label, -.input-radio label { - font-size: 1em; -} -.input-checkbox { - margin-top: 0.46428571em; -} -.input-checkbox.field-error label { - border-color: #EBA8A8; -} -.input-checkbox label { - background: none; - border: 1px solid #d3d3d3; - text-align: center; - position: relative; -} -.input-checkbox label:not(:last-child) { - margin-right: 0.46428571em; -} -.input-checkbox label:hover { - border-color: #f18f01; -} -.input-checkbox label:before { - content: ''; - left: 0; - border-radius: 6px; - position: absolute; - width: 100%; - height: 100%; - border: 1px solid #f18f01; - opacity: 0; - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; -} -.input-checkbox input:checked + label { - border-color: #f18f01; - background: #f18f01; -} -.input-checkbox input:checked + label:after { - content: 'L'; - transform: rotateY(180deg) rotateZ(-45deg); - color: #fff; - position: absolute; - width: 100%; - left: 0; - top: -2px; - font-weight: 700; -} -.input-checkbox input:checked + label:before { - animation: pulse .45s ease forwards; - -webkit-animation: pulse .45s ease forwards; -} -.input-checkbox + span { - display: inline-block; - position: relative; - bottom: 10px; - margin-left: 0.92857143em; - font-size: 0.85714286em; - white-space: nowrap; -} -.input-checkbox + button[type] { - margin-top: 0.92857143em; -} -.input-checkbox + span + button[type] { - margin-top: 0.92857143em; -} -.bg--dark .input-checkbox:not(.checked) label { - border-color: #a5a5a5; -} -.bg--dark .input-checkbox + span { - opacity: .75; -} -.input-checkbox.input-checkbox--switch label { - width: 3.71428571em; - border-radius: 60px; -} -.input-checkbox.input-checkbox--switch label:before { - width: 20px; - height: 20px; - border-radius: 50%; - border-color: #d3d3d3; - opacity: 1; - left: 2px; - top: 2px; -} -.input-checkbox.input-checkbox--switch label:hover:before { - border-color: #f18f01; -} -.input-checkbox.input-checkbox--switch input:checked + label { - background: none; -} -.input-checkbox.input-checkbox--switch input:checked + label:before { - animation: none !important; - background: #f18f01; - border-color: #f18f01; - transform: translateX(1.85714286em); -} -.input-checkbox.input-checkbox--switch input:checked + label:after { - display: none; -} -.input-radio.field-error label { - border-color: #EBA8A8; -} -.input-radio .input__label { - font-size: .85714286em; - display: inline-block; -} -.input-radio .input__label + label { - margin-top: 0.92857143em; -} -.input-radio label { - position: relative; - background: none; - border: 1px solid #d3d3d3; -} -.input-radio label:hover { - border-color: #f18f01; -} -.input-radio label:before { - content: ''; - position: absolute; - width: 100%; - height: 100%; - border-radius: 50%; - border: 1px solid #f18f01; - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; - opacity: 0; - left: 0; -} -.input-radio input:checked + label { - border-color: #f18f01; - background-color: #f18f01; -} -.input-radio input:checked + label:after { - content: ''; - position: absolute; - width: 10px; - height: 10px; - left: 7px; - top: 7px; - background-color: #fff; - border-radius: 50%; -} -.input-radio input:checked + label:before { - animation: pulse .4s ease forwards; -} -.input-radio--innerlabel label { - transition: all .3s ease; - height: 2.78571429em; - line-height: 2.50714286em; - padding: 0 0.92857143em; - border: 1px solid #ececec; - border-radius: 6px; - cursor: pointer; - width: 100%; - text-align: center; -} -.input-radio--innerlabel:hover { - border-color: #f18f01; -} -.input-radio--innerlabel input:checked + label { - border-color: #f18f01; - background: #f18f01; - color: #fff; -} -.input-radio--innerlabel input:checked + label:after { - display: none; -} -.input-radio--innerlabel input:checked + label:before { - animation: none; -} -@media all and (max-width: 1024px) { - .input-radio input:checked + label:after { - top: 6px; - left: 6px; - } -} -.bg--primary .input-radio--innerlabel { - border-color: #fea627; -} -.bg--primary .input-radio--innerlabel:hover { - border-color: #fff; -} -.bg--primary .input-radio--innerlabel.checked { - background: #fff; - border-color: #fff; -} -.bg--primary .input-radio--innerlabel.checked label { - color: #f18f01; -} -.bg--primary-1 .input-radio--innerlabel { - border-color: #0095c3; -} -.bg--primary-1 .input-radio--innerlabel:hover { - border-color: #fff; -} -.bg--primary-1 .input-radio--innerlabel.checked { - background: #fff; - border-color: #fff; -} -.bg--primary-1 .input-radio--innerlabel.checked label { - color: #006e90; -} -.input-select { - position: relative; -} -.input-select select { - -moz-appearance: none; - -webkit-appearance: none; -} -.input-select select::-ms-expand { - display: none; -} -.input-select:not(:last-child) { - margin-bottom: 0.92857143em; -} -.input-select:after { - position: absolute; - right: 0; - height: 100%; - top: 0; - font-size: 30px; - content: '\2263'; - pointer-events: none; - padding: 0 13px; - border-left: 1px solid #ececec; - line-height: 31px; -} -.input-select:focus:after { - border-color: #f18f01; -} -.input-select select:focus { - border-color: #f18f01; -} -.input-number { - position: relative; -} -.input-number > input[type="number"] { - padding-left: .46428571em; - -moz-appearance: textfield; - width: 100%; - text-align: center; -} -.input-number > input[type="number"]::-webkit-inner-spin-button { - display: none; -} -.input-number .input-number__controls { - position: absolute; - height: 100%; - width: 100%; - right: 0; - top: 0; - padding: 0 0.92857143em; -} -.input-number .input-number__controls > span { - position: absolute; - display: block; - width: 10%; - min-width: 3.71428571em; - height: 100%; - cursor: pointer; - -webkit-user-select: none; - user-select: none; - text-align: center; - padding-top: 6px; - transition: all .3s ease; -} -.input-number .input-number__controls > span:hover { - color: #f18f01; -} -.input-number .input-number__controls .input-number__increase { - right: 0; - border-left: 1px solid #ececec; -} -.input-number .input-number__controls .input-number__decrease { - left: 0; - border-right: 1px solid #ececec; -} -/*! -- Stack Subscribe Forms -- */ -.subscribe-form-1 h3 { - margin-bottom: 0.52em; -} -.subscribe-form-1.boxed form { - margin: 1.85714286em; -} -@media all and (min-width: 991px) { - .subscribe-form-2 p { - top: 2px; - position: relative; - } - .subscribe-form-2 input { - margin: 0; - } - .subscribe-form-2 form [class*='col-'] { - margin: 0 !important; - } -} -@media all and (max-width: 990px) { - .subscribe-form-2 { - text-align: center; - } - .subscribe-form-2 form { - margin-top: 1.85714286em; - } -} -/*! -- Stack Elaborate Forms -- */ -@media all and (max-width: 767px) { - .elaborate-form-1 .pos-vertical-center { - padding-left: 15px; - padding-right: 15px; - } - .elaborate-form-1 form .col-xs-6:nth-child(even) { - padding-left: 15px; - } - .elaborate-form-1 form .col-xs-6:nth-child(odd) { - padding-right: 15px; - } - .elaborate-form-1 .row form > .row { - margin-left: -15px; - margin-right: -15px; - } -} -/* Stack Boxed Forms */ -.boxed-form h4 { - margin-bottom: 0.684210526315789em; -} -.boxed-form:last-child { - margin-bottom: 0; -} -/* Stack Datepicker Form */ -.datepicker { - cursor: pointer; -} -.picker { - transition: all .3s ease; - z-index: 10; - max-width: 100%; - -webkit-transition: all .3s ease; - margin-top: 0.46428571em; - position: absolute; - background: #ffffff; - border: 1px solid #ececec; - border-radius: 6px; - padding: 0.92857143em; - box-shadow: 0 23px 40px rgba(0, 0, 0, 0.2); -} -.picker .picker__header { - text-align: center; - margin-bottom: 0.92857143em; -} -.picker .picker__header > div { - font-weight: 600; - display: inline-block; - color: #252525; -} -.picker .picker__header > div:not(:last-child) { - margin-right: 0.46428571em; -} -.picker .picker__header .picker__nav--prev, -.picker .picker__header .picker__nav--next { - height: 10px; - width: 10px; - cursor: pointer; -} -.picker .picker__header .picker__nav--prev:after, -.picker .picker__header .picker__nav--next:after { - font-family: 'stack-interface'; -} -.picker .picker__header .picker__nav--next { - float: right; -} -.picker .picker__header .picker__nav--next:after { - content: '\e80c'; -} -.picker .picker__header .picker__nav--prev { - float: left; -} -.picker .picker__header .picker__nav--prev:after { - content: '\e80b'; -} -.picker .picker__day { - transition: all .3s ease; - cursor: pointer; -} -.picker .picker__day.picker__day--highlighted { - color: #f18f01; - font-weight: 600; -} -.picker .picker__day:hover { - color: #f18f01; -} -.picker:not(.picker--opened) { - opacity: 0; - visibility: hidden; - pointer-events: none; - transform: scale(0); -} -.picker .picker__holder { - outline: none !important; - border: none !important; -} -.picker table td { - padding: 0.46428571em; - padding-top: 0; -} -.picker .picker__footer { - text-align: center; -} -.picker .picker__button--today { - float: left; -} -.picker .picker__button--close { - float: right; -} -.picker button { - transition: all .3s ease; - height: auto; - border: none; - display: inline-block; -} -.picker button:not(:hover) { - opacity: .5; -} -/*! -- Stack Sliders -- */ -.flickity-prev-next-button { - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; - border-radius: 0; - background: #252525; - width: 2.78571429em; - height: 5.57142857em; -} -.flickity-prev-next-button:not(:hover) { - opacity: .5; -} -.flickity-prev-next-button:hover { - background: #252525; -} -.flickity-prev-next-button.previous { - left: 0; -} -.flickity-prev-next-button.next { - right: 0; -} -.flickity-prev-next-button:before { - color: #fff; -} -.slider.slider--inline-arrows .flickity-prev-next-button { - background: none; -} -.slider.slider--inline-arrows .flickity-prev-next-button:before { - font-size: 1.78571429em; - color: #252525; - content: '\e802'; -} -.slider.slider--inline-arrows .flickity-prev-next-button.previous:before { - content: '\e801'; -} -.slider.slider--columns .previous { - left: 15px; -} -.slider.slider--columns .next { - right: 15px; -} -.slider.border--round .slides li { - border-radius: 6px; - overflow: hidden; -} -.slider.boxed--border .slides li { - border: 1px solid #ececec; -} -.slider .slides li .feature:not(.feature-9) { - margin-bottom: 0; -} -.slide .boxed:last-child { - margin-bottom: 0; -} -.slide:not([class*='col-']) > img:only-child { - width: 100%; -} -.bg--dark .slider.slider--inline-arrows .flickity-prev-next-button:before, -.bg--primary .slider.slider--inline-arrows .flickity-prev-next-button:before, -.imagebg:not(.image--light) .slider.slider--inline-arrows .flickity-prev-next-button:before { - color: #fff; -} -@media all and (max-width: 990px) { - .flickity-prev-next-button { - display: none; - } -} -@media all and (min-width: 768px) { - h2 + .slider, - .h2 + .slider { - margin-top: 3.71428571em; - } -} -.slider.slider--ken-burns:not(.parallax) .slide.is-selected > .background-image-holder, -.slider.slider--ken-burns:not(.parallax) .slide.is-selected > img:only-child { - animation: kenBurns 15s ease alternate infinite; - -webkit-animation: kenBurns 15s ease alternate infinite; -} -.radial { - margin-left: auto; - margin-right: auto; -} -.radial .radial__label { - transition: opacity .3s ease; - -webkit-transition: opacity .3s ease; -} -.radial:not(.radial--active) .radial__label { - opacity: 0; -} -.radial:not(:last-child) { - margin-bottom: 1.85714286em; -} -@media all and (max-width: 767px) { - .radial { - margin-bottom: 1.85714286em; - } -} -/*! -- Stack Pricing -- */ -.pricing { - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; - position: relative; -} -.pricing h3:first-child { - margin: 0; -} -.pricing .label { - top: 2.78571429em; - right: 2.78571429em; -} -.pricing .h2 { - margin-bottom: 0.3939393939394em; -} -.pricing ul li:not(:last-child) { - margin-bottom: 0.46428571em; -} -.pricing ul li .checkmark + span { - position: relative; - bottom: 3px; -} -.pricing:hover { - box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); - box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.04); -} -.pricing .h1 { - font-size: 4.21428571428571em; - line-height: 1.10169491525424em; - margin-bottom: 0.22033898305085em; -} -.pricing .h1 .pricing__dollar { - font-size: 0.51020408163265em; - position: relative; - bottom: 20px; -} -.pricing .feature-6 p { - min-height: 5.57142857em; -} -.pricing-1 .btn:last-child { - position: absolute; - width: 100%; - bottom: 0; - left: 0; - border-radius: 0 0 6px 6px; - padding: 0.92857143em 0; - margin: 0; -} -.pricing-1 .btn:last-child:hover { - transform: none !important; -} -.pricing-1 ul { - margin-bottom: 5.57142857em; -} -.pricing-1 p { - min-height: 5.57142857em; -} -.pricing-1 p:first-of-type { - margin-top: 1.85714286em; -} -.pricing-1 p:last-of-type { - margin-bottom: 5.57142857em; -} -.pricing-1 img + p:first-of-type { - margin-top: 0; -} -@media all and (min-width: 991px) { - .pricing-2 ul:first-child { - margin-top: 4.64285714em; - } -} -@media all and (max-width: 990px) { - .pricing-2 { - text-align: center; - } - .pricing-2 ul:first-child { - margin-top: 1.85714286em; - } -} -.pricing-3 { - border: 1px solid #ececec; - border-radius: 6px; -} -.pricing-3 .pricing__head { - margin: 0; - border-bottom: 1px solid #ececec; -} -.pricing-3 .pricing__head + .btn { - display: block; - border-radius: 0; - padding: 0.92857143em 0; -} -.pricing-3 ul { - border-radius: 0 0 6px 6px; -} -.pricing-3 ul li { - padding: 0.92857143em 0; -} -.pricing-3 ul li:not(:last-child) { - border-bottom: 1px solid #ececec; - margin: 0; -} -.pricing-3 ul:last-child { - margin: 0; -} -@media all and (max-width: 990px) { - .pricing-3 { - margin-bottom: 1.85714286em; - } -} -@media all and (min-width: 768px) { - .pricing-section-1 .pricing:not(.boxed--emphasis) { - left: 0.92857143em; - } - .pricing-section-1 .pricing.boxed--emphasis { - right: 0.92857143em; - } -} -@media all and (min-width: 990px) { - .pricing-section-2 div[class*='col-'] { - padding: 0; - } - .pricing-section-2 div[class*='col-']:not(:first-child):not(:last-child) .pricing__head { - border-radius: 0; - } - .pricing-section-2 div[class*='col-']:first-child .pricing { - border-radius: 6px 0 0 6px; - } - .pricing-section-2 div[class*='col-']:first-child .pricing .pricing__head { - border-radius: 6px 0 0 0; - } - .pricing-section-2 div[class*='col-']:last-child .pricing { - border-radius: 0 6px 6px 6px; - border-right: 1px solid #ececec; - } - .pricing-section-2 div[class*='col-']:last-child .pricing .pricing__head { - border-radius: 0 6px 0 0; - } - .pricing-section-2 .pricing { - border: 1px solid #ececec; - border-radius: 0 0 0 6px; - border-right: none; - } - .pricing-section-2 .pricing:hover { - box-shadow: none; - } - .pricing-section-2 .pricing ul { - margin: 0; - } -} -.pricing-section-2.bg--dark .pricing, -.pricing-section-2.bg--dark .pricing .pricing__head, -.pricing-section-2.bg--dark .pricing ul li:not(:last-child), -.pricing-section-2.bg--dark div[class*='col-']:last-child .pricing { - border-color: #3f3f3f; -} -.pricing-section-2.imagebg .pricing, -.pricing-section-2.imagebg .pricing .pricing__head, -.pricing-section-2.imagebg .pricing ul li:not(:last-child), -.pricing-section-2.imagebg div[class*='col-']:last-child .pricing { - border-color: rgba(255, 255, 255, 0.2); -} -/*! -- Stack Progress Horizontal -- */ -.progress-horizontal:not(:last-child) { - margin-bottom: 1.85714286em; -} -.progress-horizontal.progress-horizontal--lg .progress-horizontal__bar { - height: 1.85714286em; -} -.progress-horizontal.progress-horizontal--sm .progress-horizontal__bar { - height: 0.46428571em; -} -.progress-horizontal__bar { - height: 0.92857143em; - border-radius: 100px; - background: #fafafa; - border: 1px solid rgba(0, 0, 0, 0.1); -} -.progress-horizontal__bar:not(:last-child) { - margin-bottom: 0.46428571em; -} -.progress-horizontal__progress { - background: #f18f01; - border-radius: 100px; -} -/*! -- Stack Maps -- */ -iframe[src*='google.com/maps'] { - border: none; -} -.map-container { - min-height: 400px; -} -.map-container:not(:last-child) { - margin-bottom: 1.85714286em; -} -.map-container.border--round { - overflow: hidden; - z-index: 2; -} -.map-container.border--round .gm-style { - border-radius: 6px; -} -.map-container iframe { - left: 0; -} -@media all and (min-width: 768px) { - .background-image-holder .map-container, - .imageblock__content .map-container { - position: absolute; - width: 100%; - height: 100%; - top: 0; - left: 0; - } - .map-container + div[class*='col-'] { - margin-top: 3.71428571em; - } -} -/*! -- Stack Testimonials -- */ -.testimonial { - position: relative; - overflow: hidden; -} -.testimonial h5:nth-last-child(2) { - margin: 0; -} -.testimonial .testimonial__image { - margin-bottom: 1.85714286em; -} -@media all and (min-width: 1025px) { - .testimonial-1 .switchable__text { - margin-top: 7.42857143em; - } -} -.testimonial-2 { - float: none; - width: 100%; -} -.testimonial-2 .testimonial__image img { - max-height: 3.71428571em; - float: left; - margin-right: 1.85714286em; -} -.testimonial-2 .boxed { - width: 100%; -} -@media all and (max-width: 990px) { - .testimonial-2 p { - min-height: 7.42857143em; - } -} -@media all and (max-width: 767px) { - .testimonial-2 p { - min-height: 0; - } -} -@media all and (min-width: 768px) { - .lead + .testimonial-2 { - margin-top: 3.71428571em; - } -} -@media all and (min-width: 768px) { - .testimonials-1 .list-inline { - position: relative; - top: 0.92857143em; - } - .testimonials-1 .list-inline li:not(:last-child) { - margin-right: 3.71428571em; - } -} -@media all and (max-width: 767px) { - .testimonials-1 .list-inline { - margin-top: 1.85714286em; - } - .testimonials-1 .list-inline li { - margin-bottom: 1.85714286em; - } -} -/*! -- Stack Masonry -- */ -.masonry__item:not(:empty) { - margin-bottom: 30px; - transform-style: preserve-3d; -} -.masonry__item:not(:empty) article { - margin: 0; -} -.masonry__item:not(:empty) article .boxed { - margin: 0; -} -.masonry__item:empty { - height: 0; - min-height: 0; -} -.masonry hr + .masonry__container, -.masonry hr + .row { - margin-top: 4.64285714em; -} -.masonry-filter-holder:not(.masonry-filters--horizontal) { - display: inline-block; - cursor: pointer; - height: 3.71428571em; - position: relative; - z-index: 9; - min-width: 143px; -} -.masonry-filter-holder:not(.masonry-filters--horizontal) .masonry__filters { - cursor: pointer; - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; - z-index: 2; - display: inline-block; - position: absolute; - left: 0; - text-align: left; - padding: 0.92857143em 1.85714286em; - border: 1px solid #ececec; - background: #ffffff; - border-radius: 6px; -} -.masonry-filter-holder:not(.masonry-filters--horizontal) .masonry__filters ul { - margin: 0; - cursor: pointer; -} -.masonry-filter-holder:not(.masonry-filters--horizontal) .masonry__filters ul li { - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; - display: block; - color: #666666; - white-space: nowrap; -} -.masonry-filter-holder:not(.masonry-filters--horizontal) .masonry__filters ul li:not(:last-child) { - margin-bottom: 0.92857143em; -} -.masonry-filter-holder:not(.masonry-filters--horizontal) .masonry__filters ul li.active { - color: #f18f01; - cursor: pointer; -} -.masonry-filter-holder:not(.masonry-filters--horizontal) .masonry__filters ul li.active:after { - content: '\25bc'; - font-size: 8px; - margin-left: 6px; - position: relative; - bottom: 2px; - display: inline-block; - transform: scaleX(1.4) scaleY(0.9); - transition: 0.2s linear; - -webkit-transition: 0.2s linear; - -moz-transition: 0.2s linear; -} -.masonry-filter-holder:not(.masonry-filters--horizontal) .masonry__filters ul li:hover { - color: #f18f01; -} -.masonry-filter-holder:not(.masonry-filters--horizontal) .masonry__filters ul:hover li.active:after { - opacity: 0; -} -.masonry-filter-holder:not(.masonry-filters--horizontal):not(:hover) .masonry__filters ul { - max-height: 1.85714286em; - overflow: hidden; -} -.masonry-filter-holder:not(.masonry-filters--horizontal):not(:hover) .masonry__filters ul li:not(.active) { - display: none; -} -.masonry-filter-holder:not(.masonry-filters--horizontal):hover .masonry__filters { - box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); - box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.04); -} -.masonry-filter-holder:not(.masonry-filters--horizontal):hover .masonry__filters ul li.active { - cursor: default; -} -.masonry-filters--horizontal { - display: inline-block; -} -.masonry-filters--horizontal .masonry__filters { - display: inline-block; - position: relative; - bottom: 20px; - margin-left: 0.92857143em; -} -.masonry-filters--horizontal .masonry__filters ul li { - transition: all .3s ease; - cursor: pointer; - display: inline-block; -} -.masonry-filters--horizontal .masonry__filters ul li:not(:last-child) { - margin-right: 1.85714286em; -} -.masonry-filters--horizontal .masonry__filters ul li.active { - color: #f18f01; -} -.masonry-filters--horizontal .masonry__filters ul li:not(.active) { - opacity: .5; -} -.masonry-filters--horizontal .masonry__filters ul li:hover { - opacity: 1; -} -.masonry-filter-holder + .masonry__container { - margin-top: 3.71428571em; -} -.bg--dark .masonry-filter-holder .masonry__filters { - background: #2a2a2a; - border-color: #3f3f3f; -} -.bg--dark .masonry-filter-holder .masonry__filters li { - color: #fff; -} -.masonry.masonry-demos .masonry__item:not(:empty) { - margin-bottom: 3.71428571em; -} -.masonry.masonry-demos .masonry__item h5 { - margin-bottom: 0; -} -.masonry.masonry-demos .masonry__item:not([style]) .hover-item { - min-height: 450px; - background: #323232; - border: 1px solid #3f3f3f; -} -.masonry.masonry-demos .hover-item { - transition: 0.35s ease-out; - -webkit-transition: 0.35s ease-out; - -moz-transition: 0.35s ease-out; - border-radius: 6px; - overflow: hidden; -} -.masonry.masonry-demos .hover-item:hover { - transform: translateY(-10px); -} -.masonry.masonry-demos .masonry__container { - margin-top: 3.71428571em; -} -/*! -- Stack Blog -- */ -article .article__title { - margin-bottom: 3.71428571em; -} -article .article__title > a { - display: block; -} -article .article__title > a:hover { - text-decoration: none; - opacity: .75; -} -article .article__title h2 { - margin-bottom: 0.3939393939394em; -} -article .article__title h1 { - margin-bottom: 0.29545454545455em; -} -article .article__body img, -article .article__body iframe, -article .article__body .video-cover { - border-radius: 6px; -} -article .article__body img:not(:last-child), -article .article__body iframe:not(:last-child), -article .article__body .video-cover:not(:last-child) { - margin-bottom: 1.85714286em; -} -article .article__body > a:first-child > img { - margin-bottom: 1.85714286em; -} -article .article__body p, -article .article__body ul { - font-size: 1.35714286em; - line-height: 1.68421053em; - font-weight: 400; - color: #808080; -} -article .article__body p:not(:last-child), -article .article__body ul:not(:last-child) { - margin-bottom: 1.36842105263158em; -} -article .article__body p + .btn:last-child, -article .article__body ul + .btn:last-child { - margin-top: 0.92857143em; -} -article .article__body p + h5, -article .article__body ul + h5 { - margin-top: 2.78571429em; -} -article .article__body blockquote { - text-align: center; -} -article .article__body blockquote:not(:last-child) { - margin-top: 2.08em; - margin-bottom: 2.08em; -} -article .article__share { - margin-top: 5.57142857em; -} -article.imagebg { - padding: 1.85714286em; - overflow: hidden; -} -article.imagebg:before { - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; -} -article.imagebg:hover:before { - opacity: .6; -} -article.imagebg .article__title { - margin: 0; - position: absolute; - bottom: 0; - z-index: 2; - max-width: 90%; -} -article.imagebg .article__title span { - font-size: 0.85714286em; -} -article.imagebg .label { - z-index: 2; - top: 1.85714286em; - right: 1.85714286em; -} -article.feature-1 h5 { - min-height: 3.71428571em; -} -article.feature-1 a img { - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; -} -article.feature-1 a:hover img { - opacity: .85; -} -figure[class*='col-'] { - padding: 0 !important; -} -figure.pull-right { - margin-left: 2.78571429em; -} -figure.pull-left { - margin-right: 2.78571429em; -} -figure img:not(:last-child) { - margin-bottom: 0.46428571em !important; -} -figure figcaption { - font-size: 0.85714286em; - font-style: italic; -} -section.unpad > article .imagebg + div { - padding: 5.57142857em 0; -} -.article__author { - padding-bottom: 1.85714286em; -} -.article__author img { - max-height: 3.71428571em; - margin-bottom: 0.46428571em; -} -.slides--gapless article.imagebg { - height: 27.85714286em; -} -.masonry-blog-magazine article, -.masonry-blog-magazine .masonry__promo { - height: 338px; -} -.masonry-blog-magazine .height--tall { - height: calc(706px); -} -@media all and (min-width: 991px) { - .masonry__promo.boxed--lg { - padding: 7.42857143em; - } -} -@media all and (max-width: 990px) { - .masonry-blog-magazine .height--tall { - height: 338px; - } - .masonry__promo .pos-vertical-center { - top: 0; - transform: none; - } -} -@media all and (max-width: 1200px) { - .masonry__promo.boxed--lg { - padding: 3.71428571em; - } -} -.pagination { - text-align: center; - margin-top: 1.85714286em; -} -.pagination:after { - content: ""; - display: table; - clear: both; -} -.pagination a { - font-weight: normal; -} -.pagination div[class*='col-'] { - padding: 0; -} -.pagination ol { - margin-bottom: 0; - display: inline-block; -} -.pagination ol li { - display: inline-block; - margin: 0; - font-weight: 700; - line-height: 23px; - width: 1.85714286em; - height: 1.85714286em; - border-radius: 50%; - border: 1px solid #ececec; -} -.pagination ol li > a { - font-weight: 700; -} -.pagination ol li:not(:last-child) { - margin-right: 0.46428571em; -} -.pagination ol li.pagination__current { - cursor: default; - background: #ececec; - color: #aaa; -} -.pagination__prev, -.pagination__next { - display: inline-block; -} -.pagination__next { - float: right; -} -.pagination__prev { - float: left; -} -.blog-article-wide:not(:last-child) { - border-bottom: 1px solid #ececec; - margin-bottom: 3.71428571em; -} -.masonry-blog-list hr + .masonry__container { - margin-top: 0; -} -.masonry-blog-list article { - border-bottom: 1px solid #ececec; - padding-top: 2.78571429em; - margin-bottom: 5.57142857em; -} -.masonry-blog-list article .article__body { - padding-bottom: 5.57142857em; -} -.masonry-blog-magazine .masonry__item a { - font-weight: normal; -} -.masonry-blog-magazine .masonry__item a:hover { - text-decoration: none; -} -.masonry-filter-container { - margin-bottom: 1.85714286em; -} -.masonry-filter-container > span { - position: relative; - bottom: 20px; -} -.masonry-filter-container > span + .masonry-filter-holder { - margin-left: 0.92857143em; -} -.comments__list li { - padding: 1.85714286em; - border: 1px solid #ececec; - border-bottom: none; -} -.comments__list li:last-child { - border-bottom: 1px solid #ececec; -} -.comments__list li:nth-child(odd) { - background: #fcfcfc; -} -.comments__list li:nth-child(even) { - background: #f9f9f9; -} -.comments__list li:first-child { - border-radius: 6px 6px 0 0; -} -.comments__list li:last-child { - border-radius: 0 0 6px 6px; -} -.bg--secondary .comments__list li:nth-child(even) { - background: #fff; -} -@media all and (min-width: 768px) { - .comments__list li { - padding: 2.78571429em; - } -} -.comment { - overflow: hidden; -} -.comment:not(:last-child) { - border-bottom: 1px solid #ececec; - padding-bottom: 1.85714286em; -} -.comment .comment__avatar { - width: 15%; - float: left; -} -.comment .comment__avatar img { - max-height: 3.71428571em; -} -.comment .comment__meta { - font-size: 0.85714286em; -} -.comment .comment__meta a { - display: inline-block; -} -.comment .comment__meta a:not(:first-child) { - margin-left: 1.08333333333334em; -} -.comment .comment__meta + p { - margin-top: 0.92857143em; -} -.comment .comment__body { - width: 85%; - float: right; -} -.comment .comment__body h5.type--fine-print { - margin: 0; -} -.comment + .comment { - margin-top: 1.85714286em; - padding-left: 15%; -} -@media all and (min-width: 768px) { - .comments + .comments-form { - margin-top: 3.71428571em; - } -} -@media all and (min-width: 768px) { - h3 + .related-blog-list { - margin-top: 3.71428571em; - } -} -.related-blog-list li:not(:last-child) { - margin-bottom: 1.85714286em; -} -.related-blog-list article img { - border-radius: 6px; -} -.related-blog-list article .article__title { - margin-top: 0.92857143em; - margin-bottom: 0; -} -.related-blog-list article .article__title .h4 { - margin-bottom: 0.68421052631579em; -} -@media all and (min-width: 991px) { - .sidebar { - margin-top: 7.42857143em; - position: relative; - bottom: 18px; - } -} -.sidebar__widget > h5:first-child { - margin-bottom: 0.92857143em; -} -.sidebar__widget:not(:last-child) { - margin-bottom: 3.71428571em; -} -.tag-cloud li { - display: inline-block; -} -.tag-cloud li:not(:last-child) { - margin-right: 0.46428571em; -} -.tag-cloud li:not(:last-child):after { - content: ','; -} -.conversation__head { - border-radius: 6px 6px 0 0; -} -.conversation__head.boxed:not(:last-child) { - margin: 0; -} -.conversation__head h4 { - margin: 0; -} -.conversation__head .conversation__avatar { - margin-top: 0.92857143em; -} -.conversation__head .conversation__avatar img { - max-height: 1.85714286em; - display: inline-block; - margin-right: 0.46428571em; - margin-bottom: 0; -} -@media all and (min-width: 768px) { - .conversation__avatar { - position: absolute; - top: 1.85714286em; - right: 2.78571429em; - } -} -.conversation__reply { - border-top: none !important; - border-bottom: none; - border-radius: 0; -} -.conversation__reply.boxed:not(:last-child) { - margin-bottom: 0; -} -.conversation__reply + .conversation__comments .comments__list li:first-child { - border-radius: 0; - border-top: none; -} -/*! -- Stack Portfolio -- */ -.project-thumb > a { - display: block; -} -.project-thumb:not(.hover-element) > a { - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; - margin-bottom: 1.85714286em; -} -.project-thumb:not(.hover-element) > a:hover { - opacity: .85; -} -.project-thumb.hover-element { - margin: 0; -} -.project-thumb.hover-element > a { - height: 24.14285714em; - text-decoration: none; - font-weight: normal; -} -.project-thumb.hover-element .background-image-holder { - transition: 0.5s ease-out; - -webkit-transition: 0.5s ease-out; - -moz-transition: 0.5s ease-out; -} -.project-thumb.hover-element .hover-element__reveal .project-thumb__title { - padding: 1.85714286em; - z-index: 2; - position: relative; - color: #fff; -} -.project-thumb.hover-element .hover-element__reveal .project-thumb__title h5 { - margin: 0; -} -.project-thumb.hover-element.hover--active { - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; -} -.project-thumb.hover-element.hover--active:hover { - opacity: .85; -} -.project-thumb.hover-element:not(.hover--active)[data-scrim-top] .hover-element__reveal { - transition: 0.5s ease; - -webkit-transition: 0.5s ease; - -moz-transition: 0.5s ease; - transform: translate3d(0, -100px, 0); - -webkit-transform: translate3d(0, -100px, 0); -} -.project-thumb.hover-element:not(.hover--active)[data-scrim-top]:hover .hover-element__reveal { - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); -} -.project-thumb.hover-element [data-scrim-top]:before { - height: 100%; -} -.project-thumb h4 { - margin-bottom: 0; -} -.project-thumb.height-40 { - min-height: 350px; -} -@media all and (max-width: 767px) { - .project-thumb.height-40 { - height: 350px; - min-width: 100%; - } -} -@media all and (min-width: 768px) { - .col-xs-12:not(.col-sm-6) .project-thumb.hover-element > a { - height: 46.42857143em; - } -} -.project-thumb.border--round .background-image-holder { - border-radius: 6px; -} -.project-thumb.border--round > a { - border-radius: 6px; - overflow: hidden; -} -.project-thumb.border--round:before { - border-radius: 6px; - overflow: hidden; -} -.col-md-4 .project-thumb > a:not(.imagebg) { - margin-bottom: 0.92857143em; -} -/*! -- Stack Shop -- */ -.cart-form button[type="submit"] { - margin-top: 1.85714286em; -} -.cart-total > div { - overflow: hidden; -} -@media all and (min-width: 768px) { - .cart-total { - margin-top: 3.71428571em; - } - .cart-customer-details { - margin-top: 7.42857143em; - } -} -@media all and (max-width: 767px) { - .cart-total { - margin-top: 1.85714286em; - } -} -.cart-customer-details div[class*='col-'] { - margin-top: 0.46428571em; -} -.cart-customer-details .input-checkbox { - margin: 1.85714286em 0; -} -.cart-customer-details .input-checkbox + span { - bottom: 38px; -} -.product { - margin-bottom: 0.92857143em; -} -.product img { - margin-bottom: 0.92857143em; - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; - backface-visibility: hidden; -} -.product a:hover img { - transform: translate3d(0, -5px, 0); - -webkit-transform: translate3d(0, -5px, 0); -} -.product .label + img { - margin-top: 2.78571429em; -} -.product h5 { - display: inline-block; - margin-bottom: 0; - margin-right: 0.46428571em; -} -.product .h4 { - margin-bottom: 0; -} -.product .h4:first-child { - clear: left; -} -.product .product__controls { - overflow: hidden; - margin-bottom: 0.92857143em; -} -.product .product__controls label, -.product .product__controls button { - position: relative; - top: 6px; -} -.product.product--tile { - padding: 1.85714286em; - border-radius: 6px; -} -@media all and (min-width: 1200px) { - .product .btn--cart { - position: absolute; - right: 1.85714286em; - bottom: 1.85714286em; - } -} -.col-sm-6:not(.col-md-3) .product { - text-align: center; -} -.col-md-3 .product--tile h5 { - display: block; -} -.masonry--tiles { - padding: 10px; -} -.masonry--tiles .masonry__item:not(:empty) { - padding: 0 6px; - margin-bottom: 12px; -} -.masonry--tiles .masonry__item:not(:empty) .product--tile { - margin: 0; -} -.masonry--tiles .masonry__item:not(:empty) .product--tile .label { - top: 1.85714286em; - right: 2.78571429em; -} -/*! -- Stack Wizard -- */ -.wizard { - transition: opacity .3s ease; - opacity: 0; -} -.wizard.active { - opacity: 1; -} -.wizard > .actions a, -.wizard > .actions a:hover, -.wizard > .actions a:active { - background: #f18f01; - transition: all .3s ease; - padding: 0.46428571em 1.85714286em; - font-size: 12px; - text-transform: uppercase; - font-weight: 700; - letter-spacing: 1px; - color: #fff; -} -.wizard > .steps .current a, -.wizard > .steps .current a:hover, -.wizard > .steps .current a:active { - background: none; - color: #252525; -} -.wizard > .steps a { - position: relative; -} -.wizard > .steps a:before { - content: ''; - width: 15px; - height: 15px; - border-radius: 50%; - position: absolute; - left: 50%; - margin-left: -10px; - background: #eee; - display: block; - bottom: 0; - transition: all .2s ease; -} -.wizard > .steps a:after { - content: ''; - position: absolute; - width: 100%; - bottom: 7px; - height: 2px; - background: #eee; - left: 0; - transition: all .2s ease; -} -.wizard > .steps li:first-child a:after { - width: 50%; - left: 50%; -} -.wizard > .steps li:last-child a:after { - width: 50%; -} -.wizard > .steps li.current a:after, -.wizard > .steps li.current a:before { - background-color: #f18f01; -} -.wizard > .steps a, -.wizard > .steps a:hover { - padding-bottom: 2.78571429em; -} -.wizard > .steps .done a, -.wizard > .steps .done a:hover, -.wizard > .steps .done a:active, -.wizard > .steps .disabled a, -.wizard > .steps .disabled a:hover, -.wizard > .steps .disabled a:active { - background: none; - color: #252525; -} -.wizard > .steps a, -.wizard > .steps a:hover, -.wizard > .steps a:active { - margin: 0; -} -.wizard > .actions a, -.wizard > .actions a:hover, -.wizard > .actions a:active { - user-select: none; - -moz-user-select: none; - -webkit-user-select: none; -} -.wizard > .steps > ul, -.wizard > .actions { - text-align: center; -} -.wizard > .steps > ul > li, -.wizard > .actions > ul > li { - float: none; - display: inline-block; -} -.wizard > section { - padding: 0; -} -.wizard > .content { - background: #fafafa; - margin-top: 1.85714286em; - margin-bottom: 1.85714286em; - border: 1px solid #ececec; -} -.wizard > .content > .body { - padding: 1.85714286em; - width: 100%; - height: 100%; -} -.wizard > .steps .number { - font-size: 1em; -} -@media all and (max-width: 767px) { - .wizard > .steps .number { - display: block; - } - .wizard > .content { - min-height: 25em; - } - .wizard .pos-vertical-center { - top: 50%; - transform: translateY(-50%); - -wekbit-transform: translateY(-50%); - } -} -.wizard.bg--white { - background: none !important; -} -.wizard.bg--white > .content { - background: #fff; -} -.wizard > .content img { - max-height: 240px; -} -@media all and (max-width: 767px) { - .wizard > .content img { - max-height: 120px; - margin-bottom: 0.92857143em; - } -} -/*! -- Stack Footers -- */ -footer .type--fine-print:not(p) { - opacity: .5; -} -footer a { - font-weight: normal; -} -footer:not(.bg--primary):not(.bg--dark) a { - color: #666666; -} -footer a.type--fine-print:not(:first-child) { - margin-left: 1.85714286em; -} -footer .logo { - max-height: 1.67142857em; -} -footer ul:not(.list-inline):not(.slides) > li { - line-height: 2.32142857em !important; -} -footer.footer-2 .row:last-child { - margin-top: 3.71428571em; -} -footer.footer-5 .row [class*='col-'] > div:nth-last-child(2) { - margin: 0.92857143em; -} -footer.footer-5 .row [class*='col-'] > div:nth-last-child(2) .type--fine-print { - opacity: 1; -} -footer.footer-6 .footer__lower { - background: #fafafa; - margin-top: 1.85714286em; - padding: 1.85714286em 0; -} -footer.footer-6.bg--dark .footer__lower { - background: #181818; -} -footer.footer-6.bg--secondary .footer__lower { - background: #f5f5f5; -} -footer.footer-6.bg--primary .footer__lower { - background: #d88001; -} -footer.footer-7 { - padding: 1.85714286em 0; -} -@media all and (min-width: 768px) { - footer .list-inline + .btn { - position: relative; - bottom: 4px; - } - footer .logo { - margin: 0; - } - footer .logo:not(:last-child) { - margin-right: 1.85714286em; - } - footer.footer-3 .logo + ul { - position: relative; - top: 5px; - } - footer.footer-3 .logo + ul a { - color: #252525; - } - footer.footer-3 .social-list { - position: relative; - top: 9px; - } - footer.footer-3 .row:last-child { - margin-top: 1.85714286em; - } - footer.footer-4 .logo + span { - position: relative; - top: 8px; - } - footer.footer-4 form { - position: relative; - bottom: 4px; - } - footer.footer-4 .row:last-child { - margin-top: 1.85714286em; - } - footer.imagebg:not(.image--light) span, - footer.imagebg:not(.image--light) p, - footer.imagebg:not(.image--light) a { - color: #fff; - } - .footer-1 .type--fine-print { - position: relative; - top: 2px; - } -} -@media all and (max-width: 767px) { - footer .social-list { - margin: 1.85714286em 0; - } - .footer-4 form { - margin: 1.85714286em 0; - } - .footer-4 .logo { - margin: 0; - } - .footer-6 .footer__lower .social-list { - margin-top: 1.85714286em; - } - .footer-7 .social-list { - margin-top: 1.85714286em; - } - .footer-1 .social-list { - margin-top: 1.85714286em; - } - .footer-1 .logo { - display: block; - margin-top: 1.85714286em; - margin-bottom: 0.92857143em; - margin-left: auto; - margin-right: auto; - } -} diff --git a/html/css/theme-yeller.css b/html/css/theme-yeller.css deleted file mode 100644 index 2932cefa..00000000 --- a/html/css/theme-yeller.css +++ /dev/null @@ -1,9016 +0,0 @@ -/**!**************/ -/**! Contents **/ -/**! 01. Reset **/ -/**! 02. Typography **/ -/**! 03. Position **/ -/**! 04. Element Size **/ -/**! 05. Images **/ -/**! 06. Buttons **/ -/**! 07. Icons **/ -/**! 08. Lists **/ -/**! 09. Lightbox **/ -/**! 10. Menus **/ -/**! 11. Dropdowns **/ -/**! 12. Form Elements **/ -/**! 13. Accordions **/ -/**! 14. Breadcrumbs **/ -/**! 15. Radials **/ -/**! 16. Tabs **/ -/**! 17. Boxes **/ -/**! 18. Sliders Flickity **/ -/**! 19. Hover Elements **/ -/**! 20. Masonry **/ -/**! 21. Modals **/ -/**! 22. Maps **/ -/**! 23. Parallax **/ -/**! 24. Notifications **/ -/**! 25. Video **/ -/**! 26. Colors **/ -/**! 27. Image Blocks **/ -/**! 28. MailChimp & Campaign Monitor **/ -/**! 29. Twitter **/ -/**! 30. Transitions **/ -/**! 31. Switchable Sections **/ -/**! 32. Typed Effect **/ -/**! 33. Gradient BG **/ -/**! 34. Bars **/ -/**! 35. Navigation In Page **/ -/**! 36. Helper Classes **/ -/**! 37. Spacing **/ -/**! 38. Boxed Layout **/ -/**! 39. Wizard **/ -/**! 40. Alerts **/ -/**! 41. Progress - Horizontal **/ -/**! 42. Theme Overrides **/ -/**!**************/ -/**!**************/ -/**!**************/ -/**! 01. Reset **/ -*, -h1, -h2, -h3, -h4, -h5, -h6, -p, -ul, -a { - margin: 0; - padding: 0; -} -/**! 02. Typography **/ -html { - font-size: 87.5%; -} -@media all and (max-width: 768px) { - html { - font-size: 81.25%; - } -} -body { - font-size: 1em; - line-height: 1.85714286em; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; - font-family: 'Open Sans', 'Helvetica', 'Arial', sans-serif; - color: #666666; - font-weight: 400; -} -h1, -h2, -h3, -h4, -h5, -h6, -.h1, -.h2, -.h3, -.h4, -.h5, -.h6 { - font-family: 'Open Sans', 'Helvetica', 'Arial', sans-serif; - color: #252525; - font-weight: 300; - font-variant-ligatures: common-ligatures; - margin-top: 0; - margin-bottom: 0; -} -h1, -.h1 { - font-size: 3.14285714em; - line-height: 1.31818182em; -} -h2, -.h2 { - font-size: 2.35714286em; - line-height: 1.36363636em; -} -h3, -.h3 { - font-size: 1.78571429em; - line-height: 1.5em; -} -h4, -.h4 { - font-size: 1.35714286em; - line-height: 1.36842105em; -} -h5, -.h5 { - font-size: 1em; - line-height: 1.85714286em; -} -h6, -.h6 { - font-size: 0.85714286em; - line-height: 2.16666667em; -} -.lead { - font-size: 1.35714286em; - line-height: 1.68421053em; -} -@media all and (max-width: 767px) { - h1, - .h1 { - font-size: 2.35714286em; - line-height: 1.36363636em; - } - h2, - .h2 { - font-size: 1.78571429em; - line-height: 1.5em; - } - h3, - .h3 { - font-size: 1.35714286em; - line-height: 1.85714286em; - } - .lead { - font-size: 1.35714286em; - line-height: 1.36842105em; - } -} -p, -ul, -ol, -pre, -table, -blockquote { - margin-bottom: 1.85714286em; -} -ul, -ol { - list-style: none; - line-height: 1.85714286em; -} -ul.bullets { - list-style: inside; -} -ol { - list-style-type: upper-roman; - list-style-position: inside; -} -blockquote { - font-size: 1.78571429em; - line-height: 1.5em; - padding: 0; - margin: 0; - border-left: 0; -} -strong { - font-weight: 600; -} -hr { - margin: 1.85714286em 0; - border-color: #fafafa; -} -a:hover, -a:focus, -a:active { - text-decoration: none; - outline: none; -} -/*! Typography -- Helpers */ -.type--fade { - opacity: .5; -} -.type--uppercase { - text-transform: uppercase; -} -.type--bold { - font-weight: bold; -} -.type--italic { - font-style: italic; -} -.type--fine-print { - font-size: 0.85714286em; -} -.type--strikethrough { - text-decoration: line-through; - opacity: .5; -} -.type--underline { - text-decoration: underline; -} -.type--body-font { - font-family: 'Open Sans', 'Helvetica'; -} -/**! 03. Position **/ -body { - overflow-x: hidden; -} -.pos-relative { - position: relative; -} -.pos-absolute { - position: absolute; -} -.pos-absolute.container { - left: 0; - right: 0; -} -.pos-top { - top: 0; -} -.pos-bottom { - bottom: 0; -} -.pos-right { - right: 0; -} -.pos-left { - left: 0; -} -.float-left { - float: left; -} -.float-right { - float: right; -} -@media all and (max-width: 767px) { - .float-left, - .float-right { - float: none; - } - .float-left-xs { - float: left; - } - .float-right-xs { - float: right; - } -} -.pos-vertical-center { - position: relative; - top: 50%; - transform: translateY(-50%); - -webkit-transform: translateY(-50%); -} -@media all and (max-width: 767px) { - .pos-vertical-center { - top: 0; - transform: none; - -webkit-transform: none; - } -} -@media all and (max-height: 600px) { - .pos-vertical-center { - top: 0; - transform: none; - -webkit-transform: none; - } -} -.pos-vertical-align-columns { - display: table; - table-layout: fixed; - width: 100%; -} -.pos-vertical-align-columns > div[class*='col-'] { - display: table-cell; - float: none; - vertical-align: middle; -} -@media all and (max-width: 990px) { - .pos-vertical-align-columns { - display: block; - width: auto; - } - .pos-vertical-align-columns > div[class*='col-'] { - display: block; - } -} -.inline-block { - display: inline-block; -} -.block { - display: block; -} -@media all and (max-width: 767px) { - .block--xs { - display: block; - } -} -@media all and (max-width: 990px) { - .text-center-md { - text-align: center; - } - .text-left-md { - text-align: left; - } - .text-right-md { - text-align: right; - } -} -@media all and (max-width: 767px) { - .text-center-xs { - text-align: center; - } - .text-left-xs { - text-align: left; - } - .text-right-xs { - text-align: right; - } -} -/**! 04. Element Size **/ -.height-100, -.height-90, -.height-80, -.height-70, -.height-60, -.height-50, -.height-40, -.height-30, -.height-20, -.height-10 { - height: auto; - padding: 5em 0; -} -@media all and (max-width: 767px) { - .height-100, - .height-90, - .height-80, - .height-70, - .height-60, - .height-50, - .height-40, - .height-30, - .height-20, - .height-10 { - height: auto; - padding: 4em 0; - } -} -@media all and (min-height: 600px) and (min-width: 767px) { - .height-10 { - height: 10vh; - } - .height-20 { - height: 20vh; - } - .height-30 { - height: 30vh; - } - .height-40 { - height: 40vh; - } - .height-50 { - height: 50vh; - } - .height-60 { - height: 60vh; - } - .height-70 { - height: 70vh; - } - .height-80 { - height: 80vh; - } - .height-90 { - height: 90vh; - } - .height-100 { - height: 100vh; - } -} -section.height-auto { - height: auto; -} -section.height-auto .pos-vertical-center { - top: 0; - position: relative; - transform: none; -} -@media all and (max-width: 767px) { - div[class*='col-'][class*='height-'] { - padding-top: 5.57142857em !important; - padding-bottom: 5.57142857em !important; - } -} -/**! 05. Images **/ -img { - max-width: 100%; - margin-bottom: 1.85714286em; -} -/*p+img, img:last-child{ - margin-bottom: 0; -}*/ -.img--fullwidth { - width: 100%; -} -[data-grid="2"].masonry { - -webkit-column-count: 2; - -webkit-column-gap: 0; - -moz-column-count: 2; - -moz-column-gap: 0; - column-count: 2; - column-gap: 0; -} -[data-grid="2"].masonry li { - width: 100%; - float: none; -} -[data-grid="2"] li { - width: 50%; - display: inline-block; -} -[data-grid="3"].masonry { - -webkit-column-count: 3; - -webkit-column-gap: 0; - -moz-column-count: 3; - -moz-column-gap: 0; - column-count: 3; - column-gap: 0; -} -[data-grid="3"].masonry li { - width: 100%; - float: none; -} -[data-grid="3"] li { - width: 33.33333333%; - display: inline-block; -} -[data-grid="4"].masonry { - -webkit-column-count: 4; - -webkit-column-gap: 0; - -moz-column-count: 4; - -moz-column-gap: 0; - column-count: 4; - column-gap: 0; -} -[data-grid="4"].masonry li { - width: 100%; - float: none; -} -[data-grid="4"] li { - width: 25%; - display: inline-block; -} -[data-grid="5"].masonry { - -webkit-column-count: 5; - -webkit-column-gap: 0; - -moz-column-count: 5; - -moz-column-gap: 0; - column-count: 5; - column-gap: 0; -} -[data-grid="5"].masonry li { - width: 100%; - float: none; -} -[data-grid="5"] li { - width: 20%; - display: inline-block; -} -[data-grid="6"].masonry { - -webkit-column-count: 6; - -webkit-column-gap: 0; - -moz-column-count: 6; - -moz-column-gap: 0; - column-count: 6; - column-gap: 0; -} -[data-grid="6"].masonry li { - width: 100%; - float: none; -} -[data-grid="6"] li { - width: 16.66666667%; - display: inline-block; -} -[data-grid="7"].masonry { - -webkit-column-count: 7; - -webkit-column-gap: 0; - -moz-column-count: 7; - -moz-column-gap: 0; - column-count: 7; - column-gap: 0; -} -[data-grid="7"].masonry li { - width: 100%; - float: none; -} -[data-grid="7"] li { - width: 14.28571429%; - display: inline-block; -} -[data-grid="8"].masonry { - -webkit-column-count: 8; - -webkit-column-gap: 0; - -moz-column-count: 8; - -moz-column-gap: 0; - column-count: 8; - column-gap: 0; -} -[data-grid="8"].masonry li { - width: 100%; - float: none; -} -[data-grid="8"] li { - width: 12.5%; - display: inline-block; -} -@media all and (max-width: 767px) { - [data-grid]:not(.masonry) li { - width: 33.333333%; - } - [data-grid="2"]:not(.masonry) li { - width: 50%; - } - [data-grid].masonry { - -webkit-column-count: 1; - -moz-column-count: 1; - column-count: 1; - } -} -.background-image-holder { - position: absolute; - height: 100%; - top: 0; - left: 0; - background-size: cover !important; - background-position: 50% 50% !important; - z-index: 0; - transition: opacity .3s linear; - -webkit-transition: opacity .3s linear; - opacity: 0; - background: #252525; -} -.background-image-holder:not([class*='col-']) { - width: 100%; -} -.background-image-holder.background--bottom { - background-position: 50% 100% !important; -} -.background-image-holder.background--top { - background-position: 50% 0% !important; -} -.image--light .background-image-holder { - background: none; -} -.background-image-holder img { - display: none; -} -[data-overlay] { - position: relative; -} -[data-overlay]:before { - position: absolute; - content: ''; - background: #252525; - width: 100%; - height: 100%; - top: 0; - left: 0; - z-index: 1; -} -[data-overlay] *:not(.container):not(.background-image-holder) { - z-index: 2; -} -[data-overlay].image--light:before { - background: #fff; -} -[data-overlay].bg--primary:before { - background: #dcbb55; -} -[data-overlay="1"]:before { - opacity: 0.1; -} -[data-overlay="2"]:before { - opacity: 0.2; -} -[data-overlay="3"]:before { - opacity: 0.3; -} -[data-overlay="4"]:before { - opacity: 0.4; -} -[data-overlay="5"]:before { - opacity: 0.5; -} -[data-overlay="6"]:before { - opacity: 0.6; -} -[data-overlay="7"]:before { - opacity: 0.7; -} -[data-overlay="8"]:before { - opacity: 0.8; -} -[data-overlay="9"]:before { - opacity: 0.9; -} -[data-overlay="10"]:before { - opacity: 1; -} -[data-overlay="0"]:before { - opacity: 0; -} -[data-scrim-bottom] { - position: relative; -} -[data-scrim-bottom]:before { - position: absolute; - content: ''; - width: 100%; - height: 80%; - background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, #252525 100%); - /* FF3.6+ */ - background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(0, 0, 0, 0)), color-stop(100%, #252525)); - /* Chrome,Safari4+ */ - background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, #252525 100%); - /* Chrome10+,Safari5.1+ */ - background: -o-linear-gradient(top, rgba(0, 0, 0, 0) 0%, #252525 100%); - /* Opera 11.10+ */ - background: -ms-linear-gradient(top, rgba(0, 0, 0, 0) 0%, #252525 100%); - /* IE10+ */ - background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, #252525 100%); - bottom: 0; - left: 0; - z-index: 1; - backface-visibility: hidden; -} -[data-scrim-bottom]:not(.image--light) h1, -[data-scrim-bottom]:not(.image--light) h2, -[data-scrim-bottom]:not(.image--light) h3, -[data-scrim-bottom]:not(.image--light) h4, -[data-scrim-bottom]:not(.image--light) h5, -[data-scrim-bottom]:not(.image--light) h6 { - color: #a5a5a5; - color: #f1f1f1; -} -[data-scrim-bottom]:not(.image--light) p, -[data-scrim-bottom]:not(.image--light) span, -[data-scrim-bottom]:not(.image--light) ul { - color: #e6e6e6; -} -[data-scrim-bottom].image--light:before { - background: #fff; -} -[data-scrim-bottom="1"]:before { - opacity: 0.1; -} -[data-scrim-bottom="2"]:before { - opacity: 0.2; -} -[data-scrim-bottom="3"]:before { - opacity: 0.3; -} -[data-scrim-bottom="4"]:before { - opacity: 0.4; -} -[data-scrim-bottom="5"]:before { - opacity: 0.5; -} -[data-scrim-bottom="6"]:before { - opacity: 0.6; -} -[data-scrim-bottom="7"]:before { - opacity: 0.7; -} -[data-scrim-bottom="8"]:before { - opacity: 0.8; -} -[data-scrim-bottom="9"]:before { - opacity: 0.9; -} -[data-scrim-bottom="10"]:before { - opacity: 1; -} -[data-scrim-top] { - position: relative; -} -[data-scrim-top]:before { - position: absolute; - content: ''; - width: 100%; - height: 80%; - background: -moz-linear-gradient(bottom, #252525 0%, rgba(0, 0, 0, 0) 100%); - /* FF3.6+ */ - background: -webkit-gradient(linear, left bottom, left bottom, color-stop(0%, #252525), color-stop(100%, rgba(0, 0, 0, 0))); - /* Chrome,Safari4+ */ - background: -webkit-linear-gradient(bottom, #252525 0%, rgba(0, 0, 0, 0) 100%); - /* Chrome10+,Safari5.1+ */ - background: -o-linear-gradient(bottom, #252525 0%, rgba(0, 0, 0, 0) 100%); - /* Opera 11.10+ */ - background: -ms-linear-gradient(bottom, #252525 0%, rgba(0, 0, 0, 0) 100%); - /* IE10+ */ - background: linear-gradient(to bottom, #252525 0%, rgba(0, 0, 0, 0) 100%); - top: 0; - left: 0; - z-index: 1; -} -[data-scrim-top]:not(.image--light) h1, -[data-scrim-top]:not(.image--light) h2, -[data-scrim-top]:not(.image--light) h3, -[data-scrim-top]:not(.image--light) h4, -[data-scrim-top]:not(.image--light) h5, -[data-scrim-top]:not(.image--light) h6 { - color: #fff; -} -[data-scrim-top]:not(.image--light) p, -[data-scrim-top]:not(.image--light) span, -[data-scrim-top]:not(.image--light) ul { - color: #e6e6e6; -} -[data-scrim-top].image--light:before { - background: #fff; -} -[data-scrim-top="1"]:before { - opacity: 0.1; -} -[data-scrim-top="2"]:before { - opacity: 0.2; -} -[data-scrim-top="3"]:before { - opacity: 0.3; -} -[data-scrim-top="4"]:before { - opacity: 0.4; -} -[data-scrim-top="5"]:before { - opacity: 0.5; -} -[data-scrim-top="6"]:before { - opacity: 0.6; -} -[data-scrim-top="7"]:before { - opacity: 0.7; -} -[data-scrim-top="8"]:before { - opacity: 0.8; -} -[data-scrim-top="9"]:before { - opacity: 0.9; -} -[data-scrim-top="10"]:before { - opacity: 1; -} -.imagebg { - position: relative; -} -.imagebg .container { - z-index: 2; -} -.imagebg .container:not(.pos-absolute) { - position: relative; -} -.imagebg:not(.image--light) h1, -.imagebg:not(.image--light) h2, -.imagebg:not(.image--light) h3, -.imagebg:not(.image--light) h4, -.imagebg:not(.image--light) h5, -.imagebg:not(.image--light) h6, -.imagebg:not(.image--light) p, -.imagebg:not(.image--light) ul, -.imagebg:not(.image--light) blockquote { - color: #fff; -} -.imagebg:not(.image--light) .bg--white h1, -.imagebg:not(.image--light) .bg--white h2, -.imagebg:not(.image--light) .bg--white h3, -.imagebg:not(.image--light) .bg--white h4, -.imagebg:not(.image--light) .bg--white h5, -.imagebg:not(.image--light) .bg--white h6 { - color: #252525; -} -.imagebg:not(.image--light) .bg--white p, -.imagebg:not(.image--light) .bg--white ul { - color: #666666; -} -div[data-overlay] h1, -div[data-overlay] h2, -div[data-overlay] h3, -div[data-overlay] h4, -div[data-overlay] h5, -div[data-overlay] h6 { - color: #fff; -} -div[data-overlay] p, -div[data-overlay] ul { - color: #fff; -} -.parallax { - overflow: hidden; -} -.parallax .background-image-holder { - transition: none !important; - -webkit-transition: none !important; - -moz-transition: none !important; -} -.image--xxs { - max-height: 1.85714286em; -} -.image--xs { - max-height: 3.71428571em; -} -.image--sm { - max-height: 5.57142857em; -} -.image--md { - max-height: 7.42857143em; -} -/**! 06. Buttons **/ -.btn { - font-family: 'Open Sans', 'Helvetica', 'Arial', sans-serif; - transition: 0.1s linear; - -webkit-transition: 0.1s linear; - -moz-transition: 0.1s linear; - border-radius: 6px; - padding-top: 0.46428571em; - padding-bottom: 0.46428571em; - padding-right: 2.78571429em; - padding-left: 2.78571429em; - border: 1px solid #252525; - border-width: 1px; - font-size: inherit; - line-height: 1.85714286em; -} -.btn .btn__text, -.btn i { - color: #252525; - border-color: #252525; - font-weight: 700; - font-size: 0.85714286em; -} -.btn[class*='col-'] { - margin-left: 0; - margin-right: 0; -} -.btn:active { - box-shadow: none; - -webkit-box-shadow: none; -} -.btn.bg--facebook, -.btn.bg--twitter, -.btn.bg--instagram, -.btn.bg--googleplus, -.btn.bg--pinterest, -.btn.bg--dribbble, -.btn.bg--behance, -.btn.bg--dark { - border-color: rgba(0, 0, 0, 0) !important; -} -.btn.bg--facebook .btn__text, -.btn.bg--twitter .btn__text, -.btn.bg--instagram .btn__text, -.btn.bg--googleplus .btn__text, -.btn.bg--pinterest .btn__text, -.btn.bg--dribbble .btn__text, -.btn.bg--behance .btn__text, -.btn.bg--dark .btn__text { - color: #fff; -} -.btn.bg--facebook .btn__text i, -.btn.bg--twitter .btn__text i, -.btn.bg--instagram .btn__text i, -.btn.bg--googleplus .btn__text i, -.btn.bg--pinterest .btn__text i, -.btn.bg--dribbble .btn__text i, -.btn.bg--behance .btn__text i, -.btn.bg--dark .btn__text i { - color: #fff; -} -.btn.bg--facebook:hover, -.btn.bg--twitter:hover, -.btn.bg--instagram:hover, -.btn.bg--googleplus:hover, -.btn.bg--pinterest:hover, -.btn.bg--dribbble:hover, -.btn.bg--behance:hover, -.btn.bg--dark:hover { - opacity: .9; -} -.btn.bg--error { - background: #e23636; - border-color: #e23636 !important; -} -.btn.bg--error:hover { - background: #e54c4c; - border-color: #e54c4c !important; - color: #fff !important; -} -.btn.bg--error .btn__text { - color: #fff; -} -.btn.bg--error .btn__text i { - color: #fff; -} -@media all and (min-width: 768px) { - .btn + .btn { - margin-left: 1.85714286em; - } -} -.btn:first-child { - margin-left: 0; -} -.btn:last-child { - margin-right: 0; -} -.btn--xs { - padding-top: 0; - padding-bottom: 0; - padding-right: 1.39285714em; - padding-left: 1.39285714em; -} -.btn--sm { - padding-top: 0.30952381em; - padding-bottom: 0.30952381em; - padding-right: 1.85714286em; - padding-left: 1.85714286em; -} -.btn--lg { - padding-top: 0.58035714em; - padding-bottom: 0.58035714em; - padding-right: 3.48214286em; - padding-left: 3.48214286em; -} -.btn--lg .btn__text { - font-size: 1.07142857em; -} -.btn--primary, -.btn--primary:visited { - background: #dcbb55; - border-color: #dcbb55; -} -.btn--primary .btn__text, -.btn--primary:visited .btn__text { - color: #fff; -} -.btn--primary .btn__text i, -.btn--primary:visited .btn__text i { - color: #fff; -} -.btn--primary:hover { - background: #e0c36a; -} -.btn--primary:active { - background: #d8b340; -} -.btn--primary-1, -.btn--primary-1:visited { - background: #3d4950; - border-color: #3d4950; -} -.btn--primary-1 .btn__text, -.btn--primary-1:visited .btn__text { - color: #fff; -} -.btn--primary-1:hover { - background: #48565e; -} -.btn--primary-1:active { - background: #323c42; -} -.btn--primary-2, -.btn--primary-2:visited { - background: #727178; - border-color: #727178; -} -.btn--primary-2 .btn__text, -.btn--primary-2:visited .btn__text { - color: #fff; -} -.btn--primary-2:hover { - background: #7f7d85; -} -.btn--primary-2:active { - background: #66656b; -} -.btn--secondary { - background: #fafafa; - border-color: #fafafa; -} -.btn--secondary:hover { - background: #ffffff; -} -.btn--secondary:active { - background: #f5f5f5; -} -.btn--white { - background: #fff; - color: #252525; - border-color: #fff; -} -.btn--white i { - color: #252525; -} -.btn--transparent { - background: none; - border-color: rgba(0, 0, 0, 0); - padding-left: 0; - padding-right: 0; -} -.btn--transparent.btn--white .btn__text { - color: #fff; -} -.btn--unfilled { - background: none; -} -.btn--unfilled.btn--white .btn__text { - color: #fff; -} -.btn--unfilled.btn--white i { - color: #fff; -} -.btn--floating { - position: fixed; - bottom: 3.71428571em; - right: 3.71428571em; - z-index: 10; -} -/**! 07. Icons **/ -.icon { - line-height: 1em; - font-size: 3.14285714em; -} -.icon--xs { - font-size: 1em; -} -.icon--sm { - font-size: 2.35714286em; -} -.icon--lg { - font-size: 5.57142857em; -} -/**! 08. Lists **/ -ul:last-child { - margin: 0; -} -.list-inline li { - padding: 0 1em; - margin-left: 0; -} -.list-inline li:first-child { - padding-left: 0; -} -.list-inline li:last-child { - padding-right: 0; -} -.list-inline.list-inline--narrow li { - padding: 0 .5em; -} -.list-inline.list-inline--wide li { - padding: 0 2em; -} -/**! 09. Lightbox **/ -.lb-outerContainer { - border-radius: 0; -} -.lb-outerContainer .lb-container { - padding: 0; -} -.lb-outerContainer .lb-container img { - margin: 0; -} -.lightbox-gallery { - overflow: hidden; -} -.lightbox-gallery li { - float: left; -} -.lightbox-gallery li img { - margin: 0; - width: 100%; -} -.lightbox-gallery.gallery--gaps li { - padding: 0.46428571em; -} -/**! 10. Menus **/ -.menu-horizontal > li:not(:hover) > a, -.menu-horizontal > li:not(:hover) > span, -.menu-horizontal > li:not(:hover) > .modal-instance > .modal-trigger { - opacity: .5; -} -.menu-horizontal > li > a, -.menu-horizontal > li > span, -.menu-horizontal > li > .modal-instance > .modal-trigger { - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; - color: #252525; -} -.menu-horizontal > li > a:hover, -.menu-horizontal > li > span:hover, -.menu-horizontal > li > .modal-instance > .modal-trigger:hover { - color: #252525; -} -.bg--dark .menu-horizontal > li > a, -.bg--dark .menu-horizontal > li > span { - color: #fff; -} -.bg--dark .menu-horizontal > li > a:hover, -.bg--dark .menu-horizontal > li > span:hover { - color: #fff; -} -.menu-vertical { - width: 100%; -} -.menu-vertical li { - width: 100%; -} -.menu-vertical li a { - font-weight: normal; -} -@media all and (min-width: 990px) { - .menu-horizontal { - display: inline-block; - } - .menu-horizontal > li { - display: inline-block; - } - .menu-horizontal > li:not(:last-child) { - margin-right: 1.85714286em; - } - .menu-vertical { - display: inline-block; - } - .menu-vertical li { - white-space: nowrap; - } - .menu-vertical .dropdown__container { - top: 0; - } - .menu-vertical .dropdown__container .dropdown__content:not([class*='bg-']) { - background: #ffffff; - } - .menu-vertical .dropdown__container .dropdown__content { - transform: translateX(75%); - } -} -/**! 11. Dropdowns **/ -.dropdown { - position: relative; -} -.dropdown .dropdown__container { - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; - opacity: 0; - pointer-events: none; - position: absolute; - z-index: 999; -} -.dropdown .dropdown__container .dropdown__container:before { - height: 0; -} -.dropdown .dropdown__content { - padding: 1.85714286em; -} -.dropdown .dropdown__content:not([class*='col-']) { - width: 18.57142857em; -} -.dropdown .dropdown__content:not([class*='bg-']) { - background: #ffffff; -} -.dropdown .dropdown__content:not([class='bg--dark']) .menu-vertical a { - color: #666666; -} -.dropdown .dropdown__trigger { - cursor: pointer; - user-select: none; -} -.dropdown.dropdown--active > .dropdown__container { - opacity: 1; -} -.dropdown.dropdown--active > .dropdown__container > .container > .row > .dropdown__content { - pointer-events: all; -} -@media all and (min-width: 991px) { - .dropdown .dropdown__container:before { - height: 0.92857143em; - width: 100%; - content: ''; - display: block; - } - .dropdown .dropdown__content.dropdown__content--md { - padding: 2.78571429em; - } - .dropdown .dropdown__content.dropdown__content--lg { - padding: 3.71428571em; - } - .dropdown .dropdown__content.dropdown__content--xlg { - padding: 4.64285714em; - } -} -@media all and (max-width: 767px) { - .dropdown .dropdown__container { - min-width: 100%; - position: relative; - display: none; - } - .dropdown .dropdown__content { - padding: 1.85714286em; - left: 0 !important; - } - .dropdown.dropdown--active > .dropdown__container { - display: block; - } -} -body.dropdowns--hover .dropdown:not(.dropdown--click):hover > .dropdown__container { - opacity: 1; -} -body.dropdowns--hover .dropdown:not(.dropdown--click):hover > .dropdown__container:before { - pointer-events: all; -} -body.dropdowns--hover .dropdown:not(.dropdown--click):hover > .dropdown__container .dropdown__content { - pointer-events: all; -} -body:not(.dropdowns--hover) .dropdown.dropdown--hover:hover > .dropdown__container { - opacity: 1; -} -body:not(.dropdowns--hover) .dropdown.dropdown--hover:hover > .dropdown__container:before { - pointer-events: all; -} -body:not(.dropdowns--hover) .dropdown.dropdown--hover:hover > .dropdown__container .dropdown__content { - pointer-events: all; -} -@media all and (max-width: 990px) { - body.dropdowns--hover .dropdown:not(.dropdown--click).dropdown--active > .dropdown__container { - display: block; - } - body.dropdowns--hover .dropdown:not(.dropdown--click).dropdown--active > .dropdown__container:before { - pointer-events: all; - } -} -@media all and (max-width: 767px) { - .dropdown.dropdown--absolute .dropdown__container { - position: absolute; - } -} -/**! 12. Form Elements **/ -form { - max-width: 100%; -} -form + form { - margin-top: 30px; -} -form:before, -form:after { - content: "."; - display: block; - height: 0; - overflow: hidden; -} -form:after { - clear: both; -} -label { - margin: 0; - font-size: 1.14285714em; - font-weight: 400; -} -input[type], -textarea, -select { - -webkit-appearance: none; - background: #fcfcfc; - padding: 0.46428571em; - border-radius: 6px; - border: 1px solid #ececec; -} -input[type]:focus, -textarea:focus, -select:focus { - outline: none; -} -input[type]:active, -textarea:active, -select:active { - outline: none; -} -input[type]::-webkit-input-placeholder, -textarea::-webkit-input-placeholder, -select::-webkit-input-placeholder { - color: #b3b3b3; - font-size: 1.14285714em; -} -input[type]:-moz-placeholder, -textarea:-moz-placeholder, -select:-moz-placeholder { - /* Firefox 18- */ - color: #b3b3b3; - font-size: 1.14285714em; -} -input[type]::-moz-placeholder, -textarea::-moz-placeholder, -select::-moz-placeholder { - /* Firefox 19+ */ - color: #b3b3b3; - font-size: 1.14285714em; -} -input[type]:-ms-input-placeholder, -textarea:-ms-input-placeholder, -select:-ms-input-placeholder { - color: #b3b3b3; - font-size: 1.14285714em; -} -input[type="image"] { - border: none; - padding: none; - width: auto; -} -textarea { - display: block; - width: 100%; - max-width: 100%; -} -select { - cursor: pointer; - padding-right: 1.85714286em; - -webkit-appearance: none; -} -select::ms-expand { - display: none; -} -input[type="submit"] { - background: none; - outline: none; - border: none; - background: #dcbb55; - padding: 0.46428571em 2.78571429em 0.46428571em 2.78571429em; - color: #fff; -} -@keyframes load { - 0% { - opacity: 0; - width: 0; - } - 50% { - width: 100%; - opacity: .8; - left: 0; - } - 100% { - left: 100%; - opacity: 0; - } -} -button { - background: none; -} -button[type="submit"].btn--loading { - position: relative; - overflow: hidden; - pointer-events: none; - color: rgba(0, 0, 0, 0); -} -button[type="submit"].btn--loading * { - opacity: 0; -} -button[type="submit"].btn--loading:after { - content: ''; - position: absolute; - width: 0; - height: 100%; - background: #ddd; - animation: load 1.5s ease-out infinite; - left: 0; - top: 0; -} -button[type="submit"].btn--loading .btn__text { - opacity: 0; -} -button:focus { - outline: none !important; -} -button.bg--error { - color: #fff; -} -.input-icon { - position: relative; -} -.input-icon i { - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; - cursor: default; - position: absolute; -} -.input-checkbox, -.input-radio, -.input-select { - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; - display: inline-block; -} -.input-checkbox input, -.input-radio input, -.input-select input { - opacity: 0 !important; - height: 0 !important; - width: 0 !important; - position: absolute !important; -} -.input-checkbox label, -.input-radio label, -.input-select label { - display: block !important; - cursor: pointer; -} -.input-checkbox { - padding: 0; -} -.input-checkbox label { - width: 1.85714286em; - height: 1.85714286em; - border-radius: 6px; - background: #000; -} -.input-radio { - padding: 0; -} -.input-radio label { - width: 1.85714286em; - height: 1.85714286em; - border-radius: 50%; - background: #000; -} -.input-select { - position: relative; -} -.input-select i { - position: absolute; - top: 50%; - transform: translateY(-50%); - -webkit-transform: translateY(-50%); - right: 1em; - font-size: .87em; -} -.input-file { - position: relative; - display: inline-block; -} -.input-file input { - display: none; -} -.form-error { - margin-top: 1.5625em; - padding: 0.78125em; - background: #D84D4D; - color: #fff; - position: fixed; - min-width: 350px; - left: 50%; - bottom: 1.5625em; - transform: translate3d(-50%, 0, 0); - -webkit-transform: translate3d(-50%, 0, 0); - z-index: 999; - box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); - box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1); -} -.form-success { - margin-top: 1.5625em; - padding: 0.78125em; - background: #1DC020; - color: #fff; - position: fixed; - min-width: 350px; - left: 50%; - bottom: 1.5625em; - transform: translate3d(-50%, 0, 0); - -webkit-transform: translate3d(-50%, 0, 0); - z-index: 999; - box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); - box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1); -} -.attempted-submit .field-error { - border-color: #D84D4D !important; -} -.attempted-submit div.recaptcha.field-error { - border-color: #D84D4D !important; - border-style: solid; - border: 1px solid; - border-radius: 5px; - padding: 5px; -} -div.recaptcha iframe { - min-height: 0; -} -/**! 13. Accordions **/ -.accordion li .accordion__title, -.accordion li .accordion__content, -.accordion li .accordion__content * { - transition: 0.3s linear; - -webkit-transition: 0.3s linear; - -moz-transition: 0.3s linear; -} -.accordion li .accordion__title { - cursor: pointer; - padding: 0.46428571em 0.92857143em; - border: 1px solid #ececec; - border-bottom: none; - background: none; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; -} -.accordion li:last-child .accordion__title { - border-bottom: 1px solid #ececec; -} -.accordion li .accordion__content { - opacity: 0; - visibility: hidden; - max-height: 0; -} -.accordion li .accordion__content > * { - display: none; -} -.accordion li .accordion__content > *:first-child { - padding-top: 0; -} -.accordion li .accordion__content > *:last-child { - padding-bottom: 0; -} -.accordion li.active .accordion__title { - background: #dcbb55; - border-bottom: 1px solid #ececec; -} -.accordion li.active .accordion__content { - opacity: 1; - visibility: visible; - max-height: 500px; -} -.accordion li.active .accordion__content > * { - display: inline-block; -} -/**! 14. Breadcrumbs **/ -.breadcrumb { - padding: 0; - margin: 0; - background: none; - display: inline-block; -} -.breadcrumb li { - font-size: 1em; -} -.breadcrumb li + li:before { - padding: 0 0.46428571em; -} -/**! 15. Pie Charts **/ -.radial { - position: relative; -} -.radial .radial__label { - position: absolute; - top: 50%; - left: 50%; - transform: translateX(-50%) translateY(-50%); - -webkit-transform: translateX(-50%) translateY(-50%); - margin-bottom: 0; -} -/**! 16. Tabs **/ -.tabs { - display: block; - margin-bottom: 0; -} -.tabs > li { - display: inline-block; - opacity: .5; - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; -} -.tabs > .active, -.tabs:hover { - opacity: 1; -} -.tabs .tab__title { - cursor: pointer; -} -.tabs .tab__title:not(.btn) { - padding: 0 1.85714286em; -} -.tabs li:first-child .tab__title:not(.btn) { - padding-left: 0; -} -.tabs .tab__content { - display: none; -} -.tabs-content { - margin-top: 1em; -} -.tabs-content li > .tab__content { - width: 100%; - display: none; -} -.tabs-content > .active > .tab__content { - display: block; -} -.tabs-container[data-content-align="left"] .tabs-content { - text-align: left; -} -@media all and (max-width: 767px) { - .tabs-content > li:not(.active) .tab__content { - display: none !important; - } -} -/**! 17. Boxes **/ -.boxed { - position: relative; - overflow: hidden; - padding: 1.85714286em; - margin-bottom: 30px; -} -.boxed.boxed--lg { - padding: 2.78571429em; -} -.boxed.boxed--sm { - padding: 1.23809524em; -} -.boxed.boxed--border { - border: 1px solid #ececec; -} -.boxed > div[class*='col-']:first-child:not(.boxed) { - padding-left: 0; -} -.boxed > div[class*='col-']:last-child:not(.boxed) { - padding-right: 0; -} -img + .boxed { - margin-top: -1.85714286em; -} -@media all and (max-width: 767px) { - .boxed { - padding: 1.23809524em; - margin-bottom: 15px; - } - .boxed.boxed--lg { - padding: 1.23809524em; - } - .boxed div[class*='col-']:not(.boxed) { - padding: 0; - } - .boxed:last-child { - margin-bottom: 15px; - } -} -/**! 18. Sliders Flickity **/ -.slides:not(.flickity-enabled) li.imagebg:not(:first-child) { - display: none; -} -.slides:not(.flickity-enabled) li.imagebg:first-child { - background: #252525; - animation: backgroundLoad .5s ease alternate infinite; -} -.slides:not(.flickity-enabled) li.imagebg:first-child .container { - opacity: 0; -} -@keyframes backgroundLoad { - 0% { - background: #252525; - } - 100% { - background: #3f3f3f; - } -} -.slider.height-10 { - height: auto; -} -.slider.height-10 .slides .flickity-slider > li { - height: 10vh; - padding: 0; -} -@media all and (min-width: 768px) { - .slider.height-10 .slides li.imagebg { - min-height: 10vh; - } -} -.slider.height-20 { - height: auto; -} -.slider.height-20 .slides .flickity-slider > li { - height: 20vh; - padding: 0; -} -@media all and (min-width: 768px) { - .slider.height-20 .slides li.imagebg { - min-height: 20vh; - } -} -.slider.height-30 { - height: auto; -} -.slider.height-30 .slides .flickity-slider > li { - height: 30vh; - padding: 0; -} -@media all and (min-width: 768px) { - .slider.height-30 .slides li.imagebg { - min-height: 30vh; - } -} -.slider.height-40 { - height: auto; -} -.slider.height-40 .slides .flickity-slider > li { - height: 40vh; - padding: 0; -} -@media all and (min-width: 768px) { - .slider.height-40 .slides li.imagebg { - min-height: 40vh; - } -} -.slider.height-50 { - height: auto; -} -.slider.height-50 .slides .flickity-slider > li { - height: 50vh; - padding: 0; -} -@media all and (min-width: 768px) { - .slider.height-50 .slides li.imagebg { - min-height: 50vh; - } -} -.slider.height-60 { - height: auto; -} -.slider.height-60 .slides .flickity-slider > li { - height: 60vh; - padding: 0; -} -@media all and (min-width: 768px) { - .slider.height-60 .slides li.imagebg { - min-height: 60vh; - } -} -.slider.height-70 { - height: auto; -} -.slider.height-70 .slides .flickity-slider > li { - height: 70vh; - padding: 0; -} -@media all and (min-width: 768px) { - .slider.height-70 .slides li.imagebg { - min-height: 70vh; - } -} -.slider.height-80 { - height: auto; -} -.slider.height-80 .slides .flickity-slider > li { - height: 80vh; - padding: 0; -} -@media all and (min-width: 768px) { - .slider.height-80 .slides li.imagebg { - min-height: 80vh; - } -} -.slider.height-90 { - height: auto; -} -.slider.height-90 .slides .flickity-slider > li { - height: 90vh; - padding: 0; -} -@media all and (min-width: 768px) { - .slider.height-90 .slides li.imagebg { - min-height: 90vh; - } -} -.slider.height-100 { - height: auto; -} -.slider.height-100 .slides .flickity-slider > li { - height: 100vh; - padding: 0; -} -@media all and (min-width: 768px) { - .slider.height-100 .slides li.imagebg { - min-height: 100vh; - } -} -.slider .slides .flickity-slider > li:not([class*='col-']) { - width: 100%; -} -.slider .slides.slides--gapless li[class*='col-'] { - padding-left: 0; - padding-right: 0; -} -.slider[data-arrows="true"].slider--arrows-hover:not(:hover) .flickity-prev-next-button { - opacity: 0; -} -.slider[data-paging="true"]:not(section) { - margin-bottom: 3.71428571em; -} -.slider[data-paging="true"]:not(section) .flickity-page-dots { - bottom: -3.71428571em; -} -.slider[data-paging="true"]:not([class*='text-']) .flickity-page-dots { - text-align: center; -} -.slider[data-children="1"] .flickity-prev-next-button { - display: none; -} -.slider:not([data-paging="true"]) .slides { - margin: 0; -} -.slider.controls--dark .flickity-page-dots .dot { - background: #252525; -} -.slider.controls--dark .flickity-prev-next-button:before { - color: #252525; -} -section.slider { - padding: 0; -} -section.slider.height-10 { - height: auto; -} -section.slider.height-10 .slides .flickity-slider > li { - height: 10vh; - padding: 0; -} -@media all and (min-width: 768px) { - section.slider.height-10 .slides li.imagebg { - min-height: 10vh; - } -} -section.slider.height-20 { - height: auto; -} -section.slider.height-20 .slides .flickity-slider > li { - height: 20vh; - padding: 0; -} -@media all and (min-width: 768px) { - section.slider.height-20 .slides li.imagebg { - min-height: 20vh; - } -} -section.slider.height-30 { - height: auto; -} -section.slider.height-30 .slides .flickity-slider > li { - height: 30vh; - padding: 0; -} -@media all and (min-width: 768px) { - section.slider.height-30 .slides li.imagebg { - min-height: 30vh; - } -} -section.slider.height-40 { - height: auto; -} -section.slider.height-40 .slides .flickity-slider > li { - height: 40vh; - padding: 0; -} -@media all and (min-width: 768px) { - section.slider.height-40 .slides li.imagebg { - min-height: 40vh; - } -} -section.slider.height-50 { - height: auto; -} -section.slider.height-50 .slides .flickity-slider > li { - height: 50vh; - padding: 0; -} -@media all and (min-width: 768px) { - section.slider.height-50 .slides li.imagebg { - min-height: 50vh; - } -} -section.slider.height-60 { - height: auto; -} -section.slider.height-60 .slides .flickity-slider > li { - height: 60vh; - padding: 0; -} -@media all and (min-width: 768px) { - section.slider.height-60 .slides li.imagebg { - min-height: 60vh; - } -} -section.slider.height-70 { - height: auto; -} -section.slider.height-70 .slides .flickity-slider > li { - height: 70vh; - padding: 0; -} -@media all and (min-width: 768px) { - section.slider.height-70 .slides li.imagebg { - min-height: 70vh; - } -} -section.slider.height-80 { - height: auto; -} -section.slider.height-80 .slides .flickity-slider > li { - height: 80vh; - padding: 0; -} -@media all and (min-width: 768px) { - section.slider.height-80 .slides li.imagebg { - min-height: 80vh; - } -} -section.slider.height-90 { - height: auto; -} -section.slider.height-90 .slides .flickity-slider > li { - height: 90vh; - padding: 0; -} -@media all and (min-width: 768px) { - section.slider.height-90 .slides li.imagebg { - min-height: 90vh; - } -} -section.slider.height-100 { - height: auto; -} -section.slider.height-100 .slides .flickity-slider > li { - height: 100vh; - padding: 0; -} -@media all and (min-width: 768px) { - section.slider.height-100 .slides li.imagebg { - min-height: 100vh; - } -} -section.slider[data-paging="true"] .flickity-page-dots { - bottom: 1.85714286em; -} -section.slider:not(.image--light)[data-paging="true"] .flickity-page-dots .dot { - background: #fff; -} -section.slider .slides { - margin: 0; -} -@media all and (max-width: 767px) { - section.slider[class*='height-'] .slides .flickity-slider > li { - height: auto; - padding: 7.42857143em 0; - } - section.slider.space--lg .slides .flickity-slider > li { - padding: 11.14285714em 0; - } - section.slider.space--xlg .slides .flickity-slider > li { - padding: 11.14285714em 0; - } -} -section.bg--dark .slider[data-paging="true"] .flickity-page-dots .dot, -section.bg--primary .slider[data-paging="true"] .flickity-page-dots .dot { - background: #fff; -} -.flickity-page-dots .dot { - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; - width: 8px; - height: 8px; - border-radius: 50%; - background: #252525; - border: none; - margin: 0 0.46428571em; -} -.flickity-page-dots .dot:hover:not(.is-selected) { - opacity: .6; -} -.text-center .flickity-page-dots, -section.slider .flickity-page-dots { - text-align: center; -} -.flickity-prev-next-button svg { - display: none; -} -.flickity-prev-next-button:before { - font-family: 'stack-interface'; - content: "\e80c"; - font-size: 1em; - font-weight: normal; -} -.flickity-prev-next-button.previous:before { - content: "\e80b"; -} -.imagebg:not(.image--light) .flickity-page-dots .dot, -.bg--dark .flickity-page-dots .dot { - background: #fff; -} -/**! 19. Hover Elements **/ -.hover-element { - position: relative; - overflow: hidden; - margin-bottom: 30px; -} -.hover-element * { - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; -} -.hover-element .hover-element__reveal { - position: absolute; - top: 0; - left: 0; - opacity: 0; - width: 100%; - height: 100%; -} -.hover-element .hover-element__reveal .boxed { - height: 100%; -} -.hover-element:hover .hover-element__reveal, -.hover-element.hover--active .hover-element__reveal { - opacity: 1; -} -.hover-element img { - margin-bottom: 0; -} -@media all and (max-width: 1024px) { - .hover-element { - cursor: pointer; - } -} -.row:last-child div[class*='col-']:last-child .hover-element { - margin-bottom: 0; -} -/**! 20. Masonry **/ -.masonry .masonry__container.masonry--active .masonry__item { - opacity: 1; - pointer-events: initial; -} -.masonry .masonry__container .masonry__item { - opacity: 0; - pointer-events: none; -} -.masonry .masonry__filters li { - display: inline-block; - cursor: pointer; - text-transform: capitalize; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; -} -.masonry .masonry__filters li.active { - cursor: default; -} -.masonry.masonry--gapless .masonry__item { - padding: 0 !important; - margin-bottom: 0; -} -/**! 21. Modals **/ -.modal-instance .modal-body { - display: none; -} -.modal-container { - transition: 0.3s linear; - -webkit-transition: 0.3s linear; - -moz-transition: 0.3s linear; - padding: 0; - visibility: hidden; - opacity: 0; - z-index: 999; - pointer-events: none; - position: fixed; - width: 100%; - height: 100%; - top: 0; - left: 0; -} -.modal-container.modal-active { - opacity: 1; - visibility: visible; - pointer-events: all; -} -.modal-container:before { - background: rgba(0, 0, 0, 0.85); - content: ''; - position: fixed; - width: 100%; - height: 100%; - top: 0; - left: 0; - z-index: 1; -} -.modal-container .modal-content { - backface-visibility: hidden; - position: fixed; - z-index: 2; - top: 50%; - left: 50%; - max-height: 100%; - overflow-y: scroll; - border: none; - transform: translate3d(-50%, -50%, 0); - -webkit-transform: translate3d(-50%, -50%, 0); - padding: 0; - border-radius: 0; - box-shadow: none; -} -.modal-container .modal-content:not(.height--natural) { - width: 50%; - height: 50%; -} -.modal-container .modal-content .modal-close-cross { - cursor: pointer; - position: absolute; - opacity: .5; - transition: 0.1s linear; - -webkit-transition: 0.1s linear; - -moz-transition: 0.1s linear; - top: 1em; - right: 1em; - z-index: 99; -} -.modal-container .modal-content .modal-close-cross:before { - content: '\00D7'; - font-size: 1.5em; -} -.modal-container .modal-content .modal-close-cross:hover { - opacity: 1; -} -.modal-container .modal-content.imagebg:not(.image--light) .modal-close-cross:before { - color: #fff; -} -.modal-container .modal-content iframe { - width: 100%; - outline: none; - border: none; - height: 100%; - backface-visibility: hidden; -} -.modal-container .modal-content iframe:first-child + .modal-close-cross:last-child { - top: -3.71428571em; -} -@media all and (max-width: 767px) { - .modal-container .modal-content { - width: 97% !important; - height: auto !important; - padding-top: 2em; - padding-bottom: 2em; - } -} -/**! 22. Maps **/ -.map-container { - position: relative; - overflow: hidden; -} -.map-container iframe, -.map-container .map-canvas { - position: absolute; - width: 100%; - height: 100%; - top: 0; -} -/**! 23. Parallax **/ -.parallax > .background-image-holder, -.parallax .slides li > .background-image-holder { - height: 100%; - min-height: 100vh; - top: -50vh; - transition: opacity 0.3s ease !important; - -webkit-transition: opacity 0.3s ease !important; - -webkit-transform-style: preserve-3d; -} -.parallax:first-child .slides li > .background-image-holder, -.parallax:first-child .background-image-holder { - top: 0; -} -.main-container > a:first-child + .parallax .background-image-holder { - top: 0; -} -@media all and (max-width: 1024px) { - .parallax > .background-image-holder, - .parallax .slides li > .background-image-holder { - -webkit-transition: transform 0.016s linear !important; - transition: transform 0.016s linear !important; - } - .parallax.parallax-disable-mobile .background-image-holder, - .parallax.parallax-disable-mobile .slides li > .background-image-holder { - top: 0 !important; - transform: none !important; - } -} -/**! 24. Notifications **/ -.notification { - max-width: 100%; - box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); - position: fixed; - z-index: 99; - pointer-events: none; - padding: 0; - margin: 1em; - opacity: 0; - transition: 0.3s linear; - -webkit-transition: 0.3s linear; - -moz-transition: 0.3s linear; -} -.notification:not([class*='bg-']) { - background: #fff; -} -.notification[class*='col-'] { - min-width: 400px; -} -.notification .notification-close-cross { - position: absolute; - top: 1em; - z-index: 99; - right: 1em; - cursor: pointer; - transition: 0.1s linear; - -webkit-transition: 0.1s linear; - -moz-transition: 0.1s linear; - opacity: .7; -} -.notification .notification-close-cross:before { - content: '\00D7'; - font-size: 1.5em; -} -.notification .notification-close-cross:hover { - opacity: 1; -} -.notification.notification--reveal { - z-index: 99; - pointer-events: initial; -} -.notification.notification--reveal[data-animation="from-bottom"] { - animation: from-bottom 0.3s linear 0s forwards; - -webkit-animation: from-bottom 0.3s linear 0s forwards; - -moz-animation: from-bottom 0.3s linear 0s forwards; -} -.notification.notification--reveal[data-animation="from-top"] { - animation: from-top 0.3s linear 0s forwards; - -webkit-animation: from-top 0.3s linear 0s forwards; - -moz-animation: from-top 0.3s linear 0s forwards; -} -.notification.notification--reveal[data-animation="from-left"] { - animation: from-left 0.3s linear 0s forwards; - -webkit-animation: from-left 0.3s linear 0s forwards; - -moz-animation: from-left 0.3s linear 0s forwards; -} -.notification.notification--reveal[data-animation="from-right"] { - animation: from-right 0.3s linear 0s forwards; - -webkit-animation: from-right 0.3s linear 0s forwards; - -moz-animation: from-right 0.3s linear 0s forwards; -} -.notification.notification--dismissed { - animation: fade-out 0.4s linear 0s forwards !important; - -webkit-animation: fade-out 0.4s linear 0s forwards !important; - -moz-animation: fade-out 0.4s linear 0s forwards !important; - pointer-events: none; -} -.bg--dark + .notification-close-cross:before { - color: #fff; -} -a[data-notification-link] { - text-decoration: none; -} -a[data-notification-link]:hover { - text-decoration: none; -} -@media all and (max-width: 767px) { - .notification[class*='col-'] { - min-width: 0; - } -} -@keyframes from-bottom { - from { - transform: translate3d(0, 100%, 0); - -webkit-transform: translate3d(0, 100%, 0); - opacity: 0; - } - to { - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); - opacity: 1; - } -} -@-moz-keyframes from-bottom { - from { - transform: translate3d(0, 100%, 0); - -webkit-transform: translate3d(0, 100%, 0); - opacity: 0; - } - to { - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); - opacity: 1; - } -} -@-webkit-keyframes from-bottom { - from { - transform: translate3d(0, 100%, 0); - -webkit-transform: translate3d(0, 100%, 0); - opacity: 0; - } - to { - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); - opacity: 1; - } -} -@keyframes from-top { - from { - transform: translate3d(0, -100%, 0); - -webkit-transform: translate3d(0, -100%, 0); - opacity: 0; - } - to { - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); - opacity: 1; - } -} -@-moz-keyframes from-top { - from { - transform: translate3d(0, -100%, 0); - -webkit-transform: translate3d(0, -100%, 0); - opacity: 0; - } - to { - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); - opacity: 1; - } -} -@-webkit-keyframes from-top { - from { - transform: translate3d(0, -100%, 0); - -webkit-transform: translate3d(0, -100%, 0); - opacity: 0; - } - to { - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); - opacity: 1; - } -} -@keyframes from-left { - from { - transform: translate3d(-100%, 0, 0); - -webkit-transform: translate3d(-100%, 0, 0); - opacity: 0; - } - to { - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); - opacity: 1; - } -} -@-moz-keyframes from-left { - from { - transform: translate3d(-100%, 0, 0); - -webkit-transform: translate3d(-100%, 0, 0); - opacity: 0; - } - to { - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); - opacity: 1; - } -} -@-webkit-keyframes from-left { - from { - transform: translate3d(-100%, 0, 0); - -webkit-transform: translate3d(-100%, 0, 0); - opacity: 0; - } - to { - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); - opacity: 1; - } -} -@keyframes from-right { - from { - transform: translate3d(100%, 0, 0); - -webkit-transform: translate3d(100%, 0, 0); - opacity: 1; - } - to { - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); - opacity: 1; - } -} -@-moz-keyframes from-right { - from { - transform: translate3d(100%, 0, 0); - -webkit-transform: translate3d(100%, 0, 0); - opacity: 0; - } - to { - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); - opacity: 1; - } -} -@-webkit-keyframes from-right { - from { - transform: translate3d(100%, 0, 0); - -webkit-transform: translate3d(100%, 0, 0); - opacity: 0; - } - to { - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); - opacity: 1; - } -} -@keyframes fade-out { - 0% { - opacity: 1; - } - 100% { - opacity: 0; - } -} -@-webkit-keyframes fade-out { - 0% { - opacity: 1; - } - 100% { - opacity: 0; - } -} -@-moz-keyframes fade-out { - 0% { - opacity: 1; - } - 100% { - opacity: 0; - } -} -/**! 25. Video **/ -iframe { - width: 100%; - min-height: 350px; - border: none; -} -@media all and (max-width: 767px) { - iframe { - min-height: 220px; - } -} -.videobg { - background: #252525; - position: relative; - overflow: hidden; -} -.videobg .container, -.videobg .background-image-holder { - opacity: 0; - transition: 0.3s linear; - -webkit-transition: 0.3s linear; - -moz-transition: 0.3s linear; -} -.videobg .background-image-holder { - opacity: 0 !important; -} -.videobg.video-active .container { - opacity: 1; -} -.videobg.video-active .loading-indicator { - opacity: 0; - visibility: hidden; -} -.videobg video { - object-fit: cover; - height: 100%; - min-width: 100%; - position: absolute; - top: 0; - z-index: 0 !important; - left: 0; -} -@media all and (max-width: 1024px) { - .videobg .background-image-holder, - .videobg .container { - opacity: 1 !important; - } - .videobg .loading-indicator { - display: none; - } - .videobg video { - display: none; - } -} -.youtube-background { - position: absolute; - height: 100%; - width: 100%; - top: 0; - z-index: 0 !important; -} -.youtube-background .mb_YTPBar { - opacity: 0; - height: 0; - visibility: hidden; -} -@media all and (max-width: 1024px) { - .youtube-background { - display: none; - } -} -.loading-indicator { - position: absolute !important; - top: 50%; - left: 50%; - z-index: 99 !important; - width: 50px; - height: 50px; - margin-top: -25px; - margin-left: -25px; - background-color: #fff; - border-radius: 100%; - -webkit-animation: loading-spinner 1s infinite ease-in-out; - animation: loading-spinner 1s infinite ease-in-out; - transition: 0.3s linear; - -webkit-transition: 0.3s linear; - -moz-transition: 0.3s linear; -} -@-webkit-keyframes loading-spinner { - 0% { - -webkit-transform: scale(0); - } - 100% { - -webkit-transform: scale(1); - opacity: 0; - } -} -@keyframes loading-spinner { - 0% { - -webkit-transform: scale(0); - transform: scale(0); - } - 100% { - -webkit-transform: scale(1); - transform: scale(1); - opacity: 0; - } -} -.video-cover { - position: relative; -} -.video-cover video { - max-width: 100%; -} -.video-cover iframe { - background: #252525; -} -.video-cover .background-image-holder { - z-index: 3; -} -.video-cover .video-play-icon { - position: absolute; - top: 50%; - left: 50%; - transform: translate3d(-50%, -50%, 0); - -webkit-transform: translate3d(-50%, -50%, 0); -} -.video-cover .video-play-icon, -.video-cover .background-image-holder { - transition: 0.3s linear; - -webkit-transition: 0.3s linear; - -moz-transition: 0.3s linear; -} -.video-cover.reveal-video .video-play-icon, -.video-cover.reveal-video .background-image-holder { - opacity: 0 !important; - pointer-events: none; -} -.video-cover[data-scrim-bottom]:before, -.video-cover[data-overlay]:before, -.video-cover[data-scrim-top]:before { - transition: 0.3s linear; - -webkit-transition: 0.3s linear; - -moz-transition: 0.3s linear; - z-index: 4; -} -.video-cover.reveal-video[data-scrim-bottom]:before, -.video-cover.reveal-video[data-overlay]:before, -.video-cover.reveal-video[data-scrim-top]:before { - opacity: 0; - pointer-events: none; -} -.video-play-icon { - width: 7.42857143em; - height: 7.42857143em; - border-radius: 50%; - position: relative; - z-index: 4; - display: inline-block; - border: 2px solid #ffffff; - cursor: pointer; - background: #ffffff; -} -.video-play-icon.video-play-icon--sm { - width: 3.71428571em; - height: 3.71428571em; -} -.video-play-icon.video-play-icon--sm:before { - border-width: 4px 0 4px 9px; -} -.video-play-icon.video-play-icon--xs { - width: 1.85714286em; - height: 1.85714286em; -} -.video-play-icon.video-play-icon--xs:before { - border-width: 3px 0 3px 6px; - margin-left: -3px; -} -.video-play-icon.bg--primary:before { - border-color: transparent transparent transparent #fff; -} -.video-play-icon:before { - position: absolute; - top: 50%; - margin-top: -5px; - left: 50%; - margin-left: -4px; - content: ''; - width: 0; - height: 0; - border-style: solid; - border-width: 6px 0 6px 12px; - border-color: transparent transparent transparent #ffffff; - border-color: transparent transparent transparent #808080; -} -.video-play-icon.video-play-icon--dark { - border-color: #252525; - background: #252525; -} -.video-play-icon.video-play-icon--dark:before { - border-color: transparent transparent transparent #252525; -} -.video-play-icon.video-play-icon--dark:before { - border-color: transparent transparent transparent #fff; -} -@media all and (max-width: 767px) { - .video-play-icon { - width: 4.95238095em; - height: 4.95238095em; - } -} -div[class*='col-'][class*='-12']:not([class*='xs-12']) .video-cover iframe { - min-height: 550px; -} -@media all and (max-width: 990px) { - div[class*='col-'][class*='-12']:not([class*='xs-12']) .video-cover iframe { - min-height: 350px; - } -} -div[class*='col-'][class*='-10'] .video-cover iframe { - min-height: 450px; -} -div[class*='col-'][class*='-8'] .video-cover iframe { - min-height: 400px; -} -div[class*='col-'][class*='-6'] .video-cover iframe { - min-height: 350px; -} -@media all and (max-width: 1200px) { - div[class*='col-'][class*='-6'] .video-cover iframe { - min-height: 300px; - } -} -@media all and (max-width: 990px) { - div[class*='col-'][class*='-6'] .video-cover iframe { - min-height: 220px; - } -} -@media all and (max-width: 767px) { - div[class*='col-'] .video-cover iframe { - min-height: 220px !important; - } -} -.modal-container video { - max-width: 100%; -} -/**! 26. Colors **/ -body { - background: #ffffff; -} -.color--primary { - color: #dcbb55 !important; -} -a { - color: #dcbb55; -} -.color--primary-1 { - color: #3d4950 !important; -} -.color--primary-2 { - color: #727178 !important; -} -.color--white { - color: #fff; -} -.color--dark { - color: #252525; -} -.color--success { - color: #4ebf56; -} -.color--error { - color: #e23636; -} -.bg--dark { - background: #252525; -} -.bg--dark:not(.nav-bar):not(.bar) { - color: #ffffff; -} -.bg--dark:not(.nav-bar):not(.bar) h1, -.bg--dark:not(.nav-bar):not(.bar) h2, -.bg--dark:not(.nav-bar):not(.bar) h3, -.bg--dark:not(.nav-bar):not(.bar) h4, -.bg--dark:not(.nav-bar):not(.bar) h5, -.bg--dark:not(.nav-bar):not(.bar) h6, -.bg--dark:not(.nav-bar):not(.bar) i, -.bg--dark:not(.nav-bar):not(.bar) span:not(.btn__text), -.bg--dark:not(.nav-bar):not(.bar) p { - color: #ffffff; -} -.bg--dark:not(.nav-bar):not(.bar) a:not(.btn) { - color: #fff; -} -.bg--site { - background: #ffffff; -} -.bg--secondary { - background: #fafafa; -} -.bg--primary { - background: #dcbb55; -} -.bg--primary p, -.bg--primary span, -.bg--primary ul, -.bg--primary a:not(.btn) { - color: #fff; -} -.bg--primary h1, -.bg--primary h2, -.bg--primary h3, -.bg--primary h4, -.bg--primary h5, -.bg--primary h6, -.bg--primary i { - color: #fff; -} -.bg--primary .color--primary { - color: #fff !important; -} -.bg--white { - background: #fff; -} -.bg--white p, -.bg--white span, -.bg--white ul, -.bg--white a:not(.btn) { - color: #666666; -} -.bg--white h1, -.bg--white h2, -.bg--white h3, -.bg--white h4, -.bg--white h5, -.bg--white h6, -.bg--white i { - color: #252525; -} -.bg--error { - background: #e23636; -} -.bg--success { - background: #4ebf56; -} -.imagebg:not(.image--light) .bg--white p, -.imagebg:not(.image--light) .bg--white span, -.imagebg:not(.image--light) .bg--white ul, -.imagebg:not(.image--light) .bg--white a:not(.btn) { - color: #666666; -} -.imagebg:not(.image--light) .bg--white h1, -.imagebg:not(.image--light) .bg--white h2, -.imagebg:not(.image--light) .bg--white h3, -.imagebg:not(.image--light) .bg--white h4, -.imagebg:not(.image--light) .bg--white h5, -.imagebg:not(.image--light) .bg--white h6, -.imagebg:not(.image--light) .bg--white i { - color: #252525; -} -.imagebg:not(.image--light) .bg--secondary { - background: rgba(250, 250, 250, 0.2); -} -.bg--primary-1 { - background: #3d4950; -} -.bg--primary-1 p, -.bg--primary-1 span, -.bg--primary-1 ul, -.bg--primary-1 a:not(.btn) { - color: #fff; -} -.bg--primary-1 h1, -.bg--primary-1 h2, -.bg--primary-1 h3, -.bg--primary-1 h4, -.bg--primary-1 h5, -.bg--primary-1 h6, -.bg--primary-1 i { - color: #fff; -} -.bg--primary-2 { - background: #727178; -} -.bg--primary-2 p, -.bg--primary-2 span, -.bg--primary-2 ul, -.bg--primary-2 a:not(.btn) { - color: #fff; -} -.bg--primary-2 h1, -.bg--primary-2 h2, -.bg--primary-2 h3, -.bg--primary-2 h4, -.bg--primary-2 h5, -.bg--primary-2 h6, -.bg--primary-2 i { - color: #fff; -} -.image-bg:not(.image-light) *:not(a) { - color: #fff; -} -.color--facebook { - color: #3b5998; -} -.color--twitter { - color: #00aced; -} -.color--googleplus { - color: #dd4b39; -} -.color--instagram { - color: #125688; -} -.color--pinterest { - color: #cb2027; -} -.color--dribbble { - color: #ea4c89; -} -.color--behance { - color: #053eff; -} -.bg--facebook { - background: #3b5998; - color: #fff; -} -.bg--twitter { - background: #00aced; - color: #fff; -} -.bg--googleplus { - background: #dd4b39; - color: #fff; -} -.bg--instagram { - background: #125688; - color: #fff; -} -.bg--pinterest { - background: #cb2027; - color: #fff; -} -.bg--dribbble { - background: #ea4c89; - color: #fff; -} -.bg--behance { - background: #053eff; - color: #fff; -} -/**! 27. Image Blocks **/ -.imageblock { - position: relative; - padding: 0; -} -.imageblock > .container, -.imageblock > div[class*='col-']:not(.imageblock__content) { - padding-top: 7.42857143em; - padding-bottom: 7.42857143em; - float: none; - overflow: hidden; -} -.imageblock.imageblock--lg > .container, -.imageblock.imageblock--lg > div[class*='col-']:not(.imageblock__content) { - padding-top: 9.28571429em; - padding-bottom: 9.28571429em; - float: none; - overflow: hidden; -} -.imageblock .imageblock__content { - position: absolute; - height: 100%; - top: 0; - z-index: 2; - padding: 0; -} -.imageblock .imageblock__content .slider { - position: absolute; - width: 100%; - height: 100%; - top: 0; -} -.imageblock .imageblock__content .slider .slides > li { - padding: 0; - min-height: 100%; - position: absolute !important; -} -.imageblock.allow-overflow .imageblock__content { - overflow: visible; -} -@media all and (max-height: 728px) { - .imageblock > .container, - .imageblock > div[class*='col-']:not(.imageblock__content) { - padding-top: 3.71428571em; - padding-bottom: 3.71428571em; - } -} -@media all and (max-width: 767px) { - .imageblock[class*='space-'] { - padding-bottom: 0; - padding-top: 0; - } - .imageblock .imageblock__content { - position: relative; - min-height: 18.57142857em; - } - .imageblock > .container, - .imageblock > div[class*='col-']:not(.imageblock__content) { - padding-top: 5.57142857em; - padding-bottom: 5.57142857em; - float: none; - overflow: hidden; - } - .imageblock.imageblock--lg > .container, - .imageblock.imageblock--lg > div[class*='col-']:not(.imageblock__content) { - padding-top: 5.57142857em; - padding-bottom: 5.57142857em; - float: none; - overflow: hidden; - } -} -/**! 28. MailChimp & Campaign Monitor **/ -form[action*='createsend.com'] * { - transition: 0.3s linear; - -webkit-transition: 0.3s linear; - -moz-transition: 0.3s linear; - opacity: 0; -} -form[action*='createsend.com'].form--active * { - opacity: 1; -} -form[action*='createsend.com'] .input-checkbox + br { - display: none; -} -form[action*='createsend.com'].no-labels label { - display: none; -} -form[action*='createsend.com'] br { - display: none; -} -form[action*='createsend.com'] p > label:first-child { - margin-bottom: 0.92857143em; -} -form[action*='list-manage.com'] h2 { - font-family: 'Open Sans', 'Helvetica', 'Arial', sans-serif; - color: #252525; - font-weight: 300; - font-variant-ligatures: common-ligatures; - margin-top: 0; - margin-bottom: 0; - font-size: 1.35714286em; - line-height: 1.36842105em; - margin-bottom: 1.36842105263158em; - font-weight: 400; -} -form[action*='list-manage.com'] h2.inline-block + .h4.inline-block:not(.typed-text) { - margin-left: 0.68421052631579em; -} -form[action*='list-manage.com'] .input-group ul { - overflow: hidden; -} -form[action*='list-manage.com'] .input-group ul li { - float: left; -} -form[action*='list-manage.com'] * { - transition: 0.3s linear; - -webkit-transition: 0.3s linear; - -moz-transition: 0.3s linear; - opacity: 0; -} -form[action*='list-manage.com'].form--active * { - opacity: 1; -} -form[action*='list-manage.com'].no-labels label { - display: none; -} -form[action*='list-manage.com'] .small-meta { - font-size: 0.5em; -} -/**! 29. Twitter **/ -.twitter-feed .user { - display: none; -} -.twitter-feed .interact { - display: none; -} -.twitter-feed .timePosted { - font-size: .87em; -} -/**! 30. Transitions **/ -[class*='transition--'] { - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; - opacity: 0; -} -[class*='transition--'].transition--active { - opacity: 1; -} -.transition--scale { - transform: scale(0.98); - -webkit-transform: scale(0.98); -} -.transition--scale.transition--active { - opacity: 1; - transform: scale(1); - -webkit-transform: scale(1); -} -.transition--slide { - transform: translate3d(200px, 0, 0); - -webkit-transform: translate3d(200px, 0, 0); - transform: translate3d(30vw, 0, 0); - -webkit-transform: translate3d(30vw, 0, 0); -} -.transition--slide.transition--active { - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); -} -/**! 31. Switchable Sections **/ -.switchable { - position: relative; -} -.switchable div[class*='col-']:first-child { - float: left; - right: auto; -} -.switchable div[class*='col-']:first-child:not([class*='pull']):not([class*='push']) { - left: 0; -} -.switchable div[class*='col-']:last-child { - float: right; - left: auto; -} -.switchable div[class*='col-']:last-child:not([class*='pull']):not([class*='push']) { - right: 0; -} -.switchable.switchable--switch div[class*='col-']:first-child { - float: right; - right: 0; - left: auto; -} -.switchable.switchable--switch div[class*='col-']:first-child:not([class*='pull']):not([class*='push']) { - left: auto; -} -.switchable.switchable--switch div[class*='col-']:last-child { - float: left; - left: 0; - right: auto; -} -.switchable .switchable__text { - margin-top: 3.71428571em; -} -.switchable > div[class*='col-'] { - padding: 0; -} -/**! 32. Typed Effect **/ -.typed-text { - display: inline-block; -} -.typed-text.typed-text--cursor:after { - content: '|'; - font-size: 1.2em; - -webkit-animation: blink 0.7s infinite; - animation: blink 0.7s infinite; - position: relative; - right: 6px; -} -@keyframes blink { - 0% { - opacity: 1; - } - 50% { - opacity: 0; - } - 100% { - opacity: 1; - } -} -@-webkit-keyframes blink { - 0% { - opacity: 1; - } - 50% { - opacity: 0; - } - 100% { - opacity: 1; - } -} -/**! 33. Gradient BG **/ -[data-gradient-bg] { - position: relative; - background: #252525; -} -[data-gradient-bg] > canvas { - position: absolute; - width: 100%; - height: 100%; - top: 0; - left: 0; -} -[data-gradient-bg] > canvas + .background-image-holder { - opacity: .2 !important; -} -/**! 34. Bars **/ -.bar { - padding: 1.85714286em 0; -} -.bar .logo { - margin: 0; - position: relative; - top: 4px; -} -.bar .menu-horizontal { - position: relative; - top: 6px; -} -.bar:not([class*='visible-']) + .bar { - margin-top: 0.92857143em; -} -.bar.bar--xs { - padding: 0.46428571em 0; -} -.bar.bar--sm { - padding: 0.92857143em 0; -} -.bar.bar--lg { - padding: 2.78571429em 0; -} -.bar.bar--lg .logo { - top: 0; -} -.bar.bar--xlg { - padding: 4.64285714em 0; -} -.bar.bar--xlg .logo { - top: 0; -} -.bar.bg--dark .logo-dark { - display: none; -} -.bar:not(.bg--dark):not(.bar--transparent) .logo-light { - display: none; -} -@media all and (max-width: 767px) { - .bar.bar--mobile-sticky[data-scroll-class*='fixed'].pos-fixed { - position: fixed; - width: 100%; - background: #fff; - z-index: 999; - } - .bar.bar--mobile-sticky[data-scroll-class*='fixed'] + .bar.pos-fixed { - top: 3.71428571em; - position: fixed; - width: 100%; - background: #fff; - z-index: 999; - } -} -@media all and (min-width: 991px) { - .bar__module:not(:only-child) { - display: inline-block; - } - .bar__module:not(:last-child) { - margin-right: 0.92857143em; - } - .bar--transparent:not(.bar--dark) { - background: none; - } - .bar--transparent:not(.bar--dark) .logo-dark { - display: none; - } - .bar--transparent:not(.bar--dark) .logo-light { - display: inline-block; - } - .bar--transparent:not(.bar--dark):not(.pos-fixed) .menu-horizontal > li > a, - .bar--transparent:not(.bar--dark):not(.pos-fixed) .menu-horizontal > li > span { - color: #fff; - } - .bar--transparent:not(.bar--dark):not(.pos-fixed) .btn:not([class*='primary']) { - border-color: rgba(255, 255, 255, 0.3); - } - .bar--transparent:not(.bar--dark):not(.pos-fixed) .btn:not([class*='primary']) .btn__text { - color: #fff; - } - .bar--transparent:not(.bar--dark):not(.pos-fixed) .btn:not([class*='primary']):hover { - border-color: rgba(255, 255, 255, 0.7); - } - .bar--absolute { - position: absolute; - } - .bar--absolute, - .pos-fixed { - z-index: 99; - width: 100%; - } - .bar.pos-fixed { - position: fixed; - top: 0; - animation: fadeInDown 0.3s ease-out forwards; - box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); - box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.04); - } - .bar.pos-fixed:not([class*='bg-']) { - background: #ffffff; - } - .bar.pos-fixed:not([class*='bg-']) .logo-dark { - display: inline-block; - } - .bar.pos-fixed:not([class*='bg-']) .logo-light { - display: none; - } - .bar.pos-fixed.bg--dark { - background: #252525; - } -} -@media all and (max-width: 767px) { - .bar__module { - margin-bottom: 0.92857143em; - } - .bar__module + .bar__module { - margin-top: 1.85714286em; - } - .bar__module .btn { - display: block; - } - .bar__module .btn + .btn { - margin-left: 0 !important; - } - .bar__module .btn:not(:last-child) { - margin-bottom: 0.92857143em; - } - .bar + nav.bar { - padding-top: 0; - } -} -/**! 35. Navigation InPage **/ -.page-navigator { - position: fixed; - padding: 0; - top: 50%; - transform: translateY(-50%); - right: 1.85714286em; - z-index: 10; -} -.page-navigator ul { - display: inline-block; - padding: 0.92857143em; - background: rgba(0, 0, 0, 0.4); - border-radius: 1.85714286em; - transition: all .2s ease; -} -.page-navigator ul:hover { - background: rgba(0, 0, 0, 0.6); -} -.page-navigator ul li:not(:last-child) { - margin-bottom: 1.85714286em; -} -@media all and (max-width: 767px) { - .page-navigator { - right: 0; - } - .page-navigator ul { - border-radius: 1.85714286em 0 0 1.85714286em; - padding: 1.85714286em 0.92857143em; - } -} -.page-navigator li a { - width: 8px; - height: 8px; - background: #fff; - border-radius: 50%; - transition: all .2s ease; - display: block; - position: relative; -} -.page-navigator li a:not(:hover) { - opacity: .5; -} -.page-navigator li a.inner-link--active { - opacity: 1; - animation: bulge .5s ease; - -webkit-animation: bulge .5s ease; -} -@keyframes bulge { - 0% { - transform: scale(1); - } - 50% { - transform: scale(1.3); - } - 100% { - transform: scale(1); - } -} -@-webkit-keyframes bulge { - 0% { - transform: scale(1); - } - 50% { - transform: scale(1.3); - } - 100% { - transform: scale(1); - } -} -.page-navigator li a[data-title]:before { - content: attr(data-title); - position: absolute; - right: 12px; - top: -14px; - background: #222; - color: #fff; - border-radius: 6px; - padding: 4px 8px; - display: inline-block; - transition: all .2s ease; - white-space: nowrap; -} -.page-navigator li a[data-title]:not(:hover):before { - opacity: 0; - transform: translateX(-20px); -} -/**! 36. Helper Classes **/ -.clearfix { - overflow: hidden; -} -.clearfix-after:after { - content: ""; - display: table; - clear: both; -} -.allow-overflow { - overflow: visible; -} -.container .row--gapless { - padding-left: 15px; - padding-right: 15px; -} -.container .row--gapless > div[class*='col-'] { - padding: 0; -} -@media all and (max-width: 767px) { - .text-left-xs { - text-align: left; - } -} -@media all and (max-width: 991px) { - .text-left-sm { - text-align: left; - } -} -section > .row--gapless { - padding-left: 0; - padding-right: 0; -} -section > .row--gapless > div[class*='col-'] { - padding: 0; -} -div.right { - float: right; -} -div.left { - float: left; -} -section.text-right > .container:last-child > .row:only-child > div[class*='col-']:only-child { - float: right; -} -/**! 37. Spacing **/ -section, -footer { - padding-top: 7.42857143em; - padding-bottom: 7.42857143em; -} -section.space--xxs, -footer.space--xxs { - padding-top: 1.85714286em; - padding-bottom: 1.85714286em; -} -section.space--xs, -footer.space--xs { - padding-top: 3.71428571em; - padding-bottom: 3.71428571em; -} -section.space--sm, -footer.space--sm { - padding-top: 4.95238095em; - padding-bottom: 4.95238095em; -} -section.space--md, -footer.space--md { - padding-top: 11.14285714em; - padding-bottom: 11.14285714em; -} -section.space--lg, -footer.space--lg { - padding-top: 14.85714286em; - padding-bottom: 14.85714286em; -} -section.space--xlg, -footer.space--xlg { - padding-top: 29.71428571em; - padding-bottom: 29.71428571em; -} -section.space--0, -footer.space--0 { - padding: 0; -} -section.section--even, -footer.section--even { - padding-top: 7.42857143em; - padding-bottom: 7.42857143em; -} -section.space-bottom--sm, -footer.space-bottom--sm { - padding-bottom: 4.95238095em; -} -@media all and (max-width: 767px) { - section, - footer, - section.section--even { - padding: 5.57142857em 0; - } - section.space--lg, - footer.space--lg, - section.section--even.space--lg, - section.space--md, - footer.space--md, - section.section--even.space--md { - padding: 5.57142857em 0; - } - section.space--xlg, - footer.space--xlg, - section.section--even.space--xlg { - padding: 8.35714286em 0; - } -} -div[class*='col-'] > div[class*='col-']:first-child { - padding-left: 0; -} -div[class*='col-'] > div[class*='col-']:last-child { - padding-right: 0; -} -@media all and (max-width: 767px) { - .col-xs-6:nth-child(odd) { - padding-right: 7.5px; - } - .col-xs-6:nth-child(even) { - padding-left: 7.5px; - } -} -@media all and (min-width: 768px) { - .mt--1 { - margin-top: 1.85714286em; - } - .mt--2 { - margin-top: 3.71428571em; - } - .mt--3 { - margin-top: 5.57142857em; - } - .mb--1 { - margin-bottom: 1.85714286em; - } - .mb--2 { - margin-bottom: 3.71428571em; - } - .mb--3 { - margin-bottom: 5.57142857em; - } -} -@media all and (max-width: 990px) { - .mt--1, - .mt--2 { - margin-top: 1.85714286em; - } - .mt--3 { - margin-top: 2.78571429em; - } -} -.unpad { - padding: 0; -} -.unpad--bottom { - padding-bottom: 0; -} -.unpad--top { - padding-top: 0; -} -section.unpad--bottom { - padding-bottom: 0; -} -section.unpad { - padding: 0; -} -section.unpad--top { - padding-top: 0; -} -.unmarg--bottom { - margin-bottom: 0; -} -.unmarg { - margin: 0; -} -.unmarg--top { - margin-top: 0; -} -/**! 38. Boxed Layout **/ -@media all and (min-width: 1280px) { - body.boxed-layout { - padding: 3.71428571em 0; - background: #ededed; - } - body.boxed-layout section:not([class*='bg-']):not(.imagebg), - body.boxed-layout footer:not([class*='bg-']):not(.imagebg), - body.boxed-layout nav:not([class*='bg-']):not(.bar--transparent):not(.bar--absolute), - body.boxed-layout .tabs-container:not([class*='bg-']):not(.imagebg) { - background: #ffffff; - } - body.boxed-layout .nav-container, - body.boxed-layout .main-container, - body.boxed-layout > section, - body.boxed-layout nav { - max-width: 1280px; - margin: 0 auto; - } -} -/**! 39. Wizard **/ -.wizard__body { - list-style: none; -} -.wizard__step:not(.active) { - display: none; -} -.wizard__step .wizard__title { - display: none; -} -.wizard__controls { - overflow: hidden; -} -.wizard__controls .wizard-prev { - float: left; -} -.wizard__controls .wizard-next { - float: right; -} -.wizard__controls .wizard-prev:hover, -.wizard__controls .wizard-next:hover { - transform: none !important; -} -.wizard__controls .wizard-prev.inactive, -.wizard__controls .wizard-next.inactive { - pointer-events: none; - opacity: .3; - cursor: not-allowed; -} -/**! 40. Alerts **/ -.alert { - overflow: hidden; - border: 1px solid #e6e6e6; - padding: 0.92857143em; -} -.alert .alert__body, -.alert .alert__close { - display: inline-block; - user-select: none; -} -.alert .alert__body { - float: left; -} -.alert .alert__close { - float: right; - cursor: pointer; -} -.alert.bg--error { - background: #fce8e8; - border-color: #e23636; -} -.alert.bg--error .alert__close { - color: #e23636; -} -.alert.bg--success { - background: #e4f5e5; - border-color: #4ebf56; -} -.alert.bg--success .alert__close { - color: #4ebf56; -} -.alert.bg--primary { - background: #fffffe; - border-color: #dcbb55; -} -.alert.bg--primary .alert__body > span { - color: #666666; -} -.alert.bg--primary .alert__close { - color: #dcbb55; -} -.alert.alert--dismissed { - display: none; -} -/**! 41. Progress - Horizontal **/ -.progress-horizontal:after { - content: ""; - display: table; - clear: both; -} -.progress-horizontal .progress-horizontal__bar { - position: relative; - overflow: hidden; -} -.progress-horizontal .progress-horizontal__progress { - position: absolute; - top: 0; - left: 0; - height: 100%; -} -/**! 42. Theme Overrides **/ -/*! -- Stack Customizers -- */ -.box-shadow { - box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.04); -} -.box-shadow-shallow { - box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.06); -} -.box-shadow-wide { - box-shadow: 0 23px 40px rgba(0, 0, 0, 0.2); -} -.border--round { - border-radius: 6px; -} -.border--round:before { - border-radius: 6px; -} -.border--round .background-image-holder { - border-radius: 6px; -} -.border--round [data-scrim-top]:before, -.border--round [data-scrim-bottom]:before, -.border--round [data-overlay]:before { - border-radius: 6px; -} -.imageblock.border--round .background-image-holder { - border-radius: 6px 0 0 6px; -} -@media all and (max-width: 767px) { - .imageblock.border--round .background-image-holder { - border-radius: 6px 6px 0 0; - } -} -.theme--square .border--round, -.theme--square .btn { - border-radius: 0px; -} -.theme--bordered { - border: 0.92857143em solid #252525; -} -.main-container.transition--fade:not(.transition--active) { - cursor: wait; -} -@media all and (min-width: 1280px) { - body.boxed-layout > section.bar-3:first-of-type { - border-radius: 6px 6px 0 0; - } - body.boxed-layout .main-container > footer:last-child { - border-radius: 0 0 6px 6px; - } -} -body.boxed-layout .modal-container section:not([class*='bg-']) { - background: none; -} -/*! -- Stack Helpers -- */ -@media all and (max-width: 767px) { - .block--xs { - margin-top: 0.92857143em; - } -} -.container .container { - max-width: 100%; -} -.switchable-toggle { - cursor: pointer; - user-select: none; - -webkit-user-select: none; -} -.back-to-top { - position: fixed; - width: 3.71428571em; - height: 3.71428571em; - background: #fff; - border-radius: 50%; - text-align: center; - right: 1.85714286em; - bottom: 3.71428571em; - padding-top: 12px; - box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); - box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.04); - z-index: 99; - border: 1px solid #ececec; - transition: 0.2s ease-out; - -webkit-transition: 0.2s ease-out; - -moz-transition: 0.2s ease-out; -} -.back-to-top i { - color: #252525; -} -.back-to-top:not(.active) { - opacity: 0; - transform: translate3d(0, 20px, 0); - -webkit-transform: translate3d(0, 20px, 0); - pointer-events: none; -} -.back-to-top.active:hover { - transform: translate3d(0, -5px, 0); - -webkit-transform: translate3d(0, -5px, 0); -} -.disable-scroll-bars { - -ms-overflow-style: none; -} -.disable-scroll-bars::-webkit-scrollbar { - display: none; -} -/*! -- Stack Animations -- */ -@keyframes fadeInUp { - from { - opacity: 0; - transform: translate3d(0, 50px, 0); - -webkit-transform: translate3d(0, 50px, 0); - } - to { - opacity: 1; - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); - -webkit-font-smoothing: antialiased; - } -} -@-webkit-keyframes fadeInUp { - from { - opacity: 0; - transform: translate3d(0, 50px, 0); - -webkit-transform: translate3d(0, 50px, 0); - } - to { - opacity: 1; - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); - -webkit-font-smoothing: antialiased; - } -} -@keyframes fadeInDown { - from { - opacity: 0; - transform: translate3d(0, -100px, 0); - -webkit-transform: translate3d(0, -100px, 0); - } - to { - opacity: 1; - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); - -webkit-font-smoothing: antialiased; - } -} -@-webkit-keyframes fadeInDown { - from { - opacity: 0; - transform: translate3d(0, -100px, 0); - -webkit-transform: translate3d(0, -100px, 0); - } - to { - opacity: 1; - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); - -webkit-font-smoothing: antialiased; - } -} -@keyframes fadeOutUp { - from { - opacity: 1; - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); - } - to { - opacity: 0; - transform: translate3d(0, -50px, 0); - -webkit-transform: translate3d(0, -50px, 0); - -webkit-font-smoothing: antialiased; - } -} -@-webkit-keyframes fadeOutUp { - from { - opacity: 1; - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); - } - to { - opacity: 0; - transform: translate3d(0, -50px, 0); - -webkit-transform: translate3d(0, -50px, 0); - -webkit-font-smoothing: antialiased; - } -} -@keyframes fadeOutRight { - from { - opacity: 1; - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); - } - to { - opacity: 0; - transform: translate3d(50px, 0, 0); - -webkit-transform: translate3d(50px, 0, 0); - -webkit-font-smoothing: antialiased; - } -} -@-webkit-keyframes fadeOutRight { - from { - opacity: 1; - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); - } - to { - opacity: 0; - transform: translate3d(50px, 0, 0); - -webkit-transform: translate3d(50px, 0, 0); - -webkit-font-smoothing: antialiased; - } -} -@keyframes fadeInLeft { - from { - opacity: 0; - transform: translate3d(-50px, 0, 0); - -webkit-transform: translate3d(-50px, 0, 0); - } - to { - opacity: 1; - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); - -webkit-font-smoothing: antialiased; - } -} -@-webkit-keyframes fadeInLeft { - from { - opacity: 0; - transform: translate3d(-50px, 0, 0); - -webkit-transform: translate3d(-50px, 0, 0); - } - to { - opacity: 1; - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); - -webkit-font-smoothing: antialiased; - } -} -@keyframes pulse { - 0% { - opacity: 0; - transform: scale(1); - -webkit-transform: scale(1); - } - 50% { - opacity: 1; - } - 100% { - opacity: 0; - transform: scale(2); - -webkit-transform: scale(2); - } -} -@-webkit-keyframes pulse { - 0% { - opacity: 0; - transform: scale(1); - -webkit-transform: scale(1); - } - 50% { - opacity: 1; - } - 100% { - opacity: 0; - transform: scale(2); - -webkit-transform: scale(2); - } -} -@keyframes kenBurns { - 0% { - transform: scale(1); - } - 100% { - transform: scale(1.1); - } -} -@-webkit-keyframes kenBurns { - 0% { - transform: scale(1); - } - 100% { - transform: scale(1.1); - } -} -/*! -- Stack Sections -- */ -section:not(.unpad):not(.imagebg):not([class*='bg--']):not(.imageblock):not(.unpad--bottom):not(.border--bottom):not(.space--xxs) + section:not(.unpad):not(.imagebg):not([class*='bg--']):not(.imageblock):not(.border--bottom):not(.space--xxs) { - padding-top: 0; -} -section:not(.unpad):not(.imagebg):not([class*='bg--']):not(.imageblock):not(.unpad--bottom):not(.border--bottom) + footer:not(.unpad):not(.imagebg):not([class*='bg--']):not(.imageblock):not(.unpad--bottom):not(.border--bottom) { - padding-top: 0; -} -section:not(.imagebg):not([class*='bg-']) + section.bg--secondary { - border-top: 1px solid #ebebeb; -} -section.bg--secondary:not(.imagebg) + section:not(.imagebg):not([class*='bg-']) { - border-top: 1px solid #ebebeb; -} -section.bg--secondary:not(.unpad):not(.imageblock):not(.unpad--bottom):not(.border--bottom) + section.bg--secondary { - padding-top: 0; -} -section.bg--secondary + footer:not(.bg--dark):not(.bg--secondary) { - border-top: 1px solid #ebebeb; -} -section.bg--dark + section.bg--dark { - padding-top: 0; -} -section.bg--dark:last-of-type + footer.bg--dark { - background: #1b1b1b; -} -section.border--bottom:not([data-gradient-bg]) { - border-bottom: 1px solid #ececec; -} -section.unpad { - overflow: hidden; -} -section:not([class*='bg--']) + footer.bg--secondary { - border-top: 1px solid #ebebeb; -} -section.text-center div[class*='col-']:first-child:last-child { - margin: 0 auto; - float: none; -} -.section--overlap { - z-index: 2; - position: relative; -} -/*! -- Stack Typography -- */ -@media all and (max-width: 1024px) { - html { - font-size: 80%; - } -} -h1, -.h1 { - letter-spacing: -0.01em; -} -h1:not(:last-child), -.h1:not(:last-child) { - margin-bottom: 0.59090909090909em; -} -@media all and (min-width: 768px) { - h1.h1--large, - .h1.h1--large { - font-weight: 200; - font-size: 4.428571428571429em; - line-height: 1.048387096774194em; - } - h1.h1--large:not(:last-child), - .h1.h1--large:not(:last-child) { - margin-bottom: 0.419354838709677em; - } - h1.h1--large.type--uppercase, - .h1.h1--large.type--uppercase { - letter-spacing: 10px; - margin-right: -10px; - } - h1.h1--large + p.lead, - .h1.h1--large + p.lead { - margin-top: 2.052631578947368em; - } -} -h2, -.h2 { - margin-bottom: 0.78787878787879em; -} -h3, -.h3 { - margin-bottom: 1.04em; -} -h3 strong, -.h3 strong { - font-weight: 400; -} -blockquote { - font-family: 'Merriweather', serif; - font-style: italic; - font-weight: 300; -} -blockquote:not(:last-child) { - margin-bottom: 1.04em; -} -blockquote > p { - font-size: 1em !important; -} -h4, -.h4 { - margin-bottom: 1.36842105263158em; - font-weight: 400; -} -h4.inline-block + .h4.inline-block:not(.typed-text), -.h4.inline-block + .h4.inline-block:not(.typed-text) { - margin-left: 0.68421052631579em; -} -h5, -.h5 { - font-weight: 600; -} -h5:not(:last-child), -.h5:not(:last-child) { - margin-bottom: 1.85714286em; -} -h6, -.h6 { - font-weight: 700; -} -h6:not(:last-child), -.h6:not(:last-child) { - margin-bottom: 2.16666666666667em; -} -h6.type--uppercase, -.h6.type--uppercase { - letter-spacing: 1px; - margin-right: -1px; -} -span.h1:not(.inline-block), -span.h2:not(.inline-block), -span.h3:not(.inline-block), -span.h4:not(.inline-block), -span.h5:not(.inline-block), -span.h6:not(.inline-block) { - display: block; -} -b { - font-weight: 600; -} -hr { - border-color: #ECECEC; -} -.bg--dark hr { - border-color: #585858; -} -[class*='bg-']:not(.bg--white):not(.bg--secondary) p, -[class*='imagebg']:not(.image--light) p { - opacity: .9; -} -.lead { - font-weight: 400; - color: #808080; -} -.lead:not(:last-child) { - margin-bottom: 1.36842105263158em; -} -.lead + .btn:last-child { - margin-top: 0.92857143em; -} -p:last-child { - margin-bottom: 0; -} -p strong { - color: #252525; -} -pre { - padding: 0.92857143em; - background: #fafafa; - border: 1px solid #ececec; - border-radius: 6px; - line-height: 20px; - max-height: 500px; -} -.bg--secondary > pre { - background: #f5f5f5; - border-color: #ddd; -} -.text-block:not(:last-child) { - margin-bottom: 1.85714286em; -} -.text-block h2, -.text-block .h2 { - margin-bottom: 0.3939393939394em; -} -.text-block h5, -.text-block .h5 { - margin: 0; -} -.text-block h4:not(:last-child), -.text-block .h4:not(:last-child) { - margin-bottom: 0.3421052631579em; -} -.text-block h3, -.text-block .h3 { - margin-bottom: 0.52em; -} -@media all and (min-width: 768px) { - div[class*='col-'] .text-block + .text-block { - margin-top: 3.71428571em; - } -} -.heading-block { - margin-bottom: 3.71428571em; -} -.heading-block h1, -.heading-block h2, -.heading-block h3, -.heading-block h4, -.heading-block h5, -.heading-block h6, -.heading-block .h1, -.heading-block .h2, -.heading-block .h3, -.heading-block .h4, -.heading-block .h5, -.heading-block .h6 { - margin-bottom: 0; -} -/*! -- Stack Colours -- */ -.bg--dark .bg--secondary { - background: #343434; -} -/*! -- Stack Links -- */ -a { - color: #dcbb55; - font-weight: 700; -} -a:hover { - color: #d3aa2b; - text-decoration: underline; -} -a.block { - font-weight: normal; - text-decoration: none; - color: #666666; -} -p a, -span a, -label a { - font-size: 1em; - text-decoration: underline; - font-weight: 400; - line-height: 1.85714286em; -} -p + a:not(.btn) { - font-size: 0.85714286em; - line-height: 2.16666667em; -} -.imagebg:not(.image--light) a { - color: #fff; - font-weight: 600; -} -/*! -- Stack Tables -- */ -table { - width: 100%; - border-collapse: separate; -} -table th, -table td { - padding: 0.92857143em; -} -table th { - background: #fafafa; - color: #252525; -} -table tr:not(:last-of-type) { - border-bottom: 1px solid #ececec; -} -table.border--round { - border-radius: 6px; - border: 1px solid #ececec; -} -.table--alternate-column th:nth-child(odd) { - background: none; -} -.table--alternate-column td:nth-child(even) { - background: #fafafa; -} -.table--alternate-row tbody tr:nth-child(even) { - background: #fafafa; -} -.bg--dark table.border--round { - border-radius: 6px; - border: 1px solid #3f3f3f; -} -.bg--dark table th { - background: #3f3f3f; - color: #fff; -} -.bg--dark .table--alternate-row tbody tr:nth-child(even) { - background: #323232; -} -/*! -- Stack Lists -- */ -ul:not([class*='menu']) li > a { - font-weight: normal; -} -ul:not([class*='menu']) li > a:hover { - text-decoration: none; -} -ol { - list-style-position: outside; - list-style-type: decimal; -} -ol li:not(:last-child) { - margin-bottom: 1.85714286em; -} -ol.lead li:not(:last-child) { - margin-bottom: 1.26315789473684em; -} -.list-inline { - margin-left: 0; - display: inline-block; -} -.list-inline li { - padding: 0; -} -.list-inline li:not(:last-child) { - margin-right: 1.85714286em; -} -.list-inline:not(:last-child) { - margin-right: 1.85714286em; -} -.list-inline--images img { - max-height: 2.78571429em; -} -@media all and (min-width: 768px) { - .list-inline--images li:not(:last-child) { - margin-right: 5.57142857em; - } -} -@media all and (max-width: 767px) { - .list-inline--images li:not(:last-child) { - margin-bottom: 1.85714286em; - } -} -.list--loose > li:not(:last-child) { - margin-bottom: 0.46428571em; -} -.list--hover li { - transition: 0.2s ease; - -webkit-transition: 0.2s ease; - -moz-transition: 0.2s ease; -} -.list--hover li:not(:hover) { - opacity: .6; -} -.social-list a { - color: #252525; -} -.imagebg:not(.image--light) .social-list a { - color: #fff; -} -.results-list > li > a:first-child { - display: flex; - align-items: center; - margin-bottom: 0.92857143em; -} -.results-list > li > a:first-child span { - display: inline-block; - margin-left: 0.46428571em; -} -.results-list > li > a:first-child h4 { - display: inline-block; - margin-bottom: 0; -} -.results-list > li > a:first-child:hover h4, -.results-list > li > a:first-child:hover span { - text-decoration: underline; -} -.results-list > li:not(:last-child) { - margin-bottom: 1.85714286em; - padding-bottom: 1.85714286em; - border-bottom: 1px solid rgba(0, 0, 0, 0.1); -} -@media all and (max-width: 767px) { - .list-inline:not(.social-list):not(.list-inline--images) { - display: block; - } - .list-inline:not(.social-list):not(.list-inline--images) li { - display: block; - margin: 0; - } - .list-inline:not(.social-list):not(.list-inline--images) li:not(:last-child) { - margin-bottom: 0.46428571em; - } -} -@media all and (max-width: 767px) { - .list-inline { - min-width: 100%; - } -} -.row--list span.h6 { - margin-bottom: 0; -} -.row--list span.h3:last-child { - margin-bottom: 0; -} -@media all and (max-width: 767px) { - .row--list > li { - margin-bottom: 0.92857143em; - } -} -/*! -- Stack Rules -- */ -hr:first-child { - margin-top: 0; -} -hr.short { - width: 2.78571429em; - border-color: #dcbb55; -} -hr[data-title] { - margin: 2.78571429em 0; - text-align: center; -} -hr[data-title]:before { - content: attr(data-title); - background: #ffffff; - position: relative; - bottom: 14px; - padding: 0.92857143em; - font-style: italic; -} -.bg--dark hr:not(.short), -.imagebg hr:not(.short), -.bg--primary hr:not(.short) { - opacity: .3; -} -/*! -- Stack Buttons -- */ -.btn { - position: relative; -} -.btn:not([class*='primary']) { - border-color: #d3d3d3; -} -.btn:not([class*='primary']):hover { - border-color: #252525; -} -.btn.type--uppercase { - letter-spacing: .5px; -} -.btn.type--uppercase .btn__text { - letter-spacing: .5px; - margin-right: -0.5px; -} -.btn .label { - top: -0.92857143em; - right: -3.71428571em; -} -.btn.btn--lg .btn__text { - font-weight: 600; -} -.btn.btn--lg.type--uppercase .btn__text { - letter-spacing: 1px; -} -.btn + p.type--fine-print, -.btn + span.type--fine-print { - margin-top: 1.08333333333334em; -} -.btn.block { - margin-left: 0; -} -.btn.block + .btn.block { - margin-top: 0.92857143em; -} -.btn:hover { - transform: translate3d(0, -2px, 0); - -webkit-transform: translate3d(0, -2px, 0); -} -.btn.btn--sm + .btn--sm { - margin-left: 0.92857143em; -} -p > .btn { - text-decoration: none; -} -@media all and (max-width: 767px) { - .btn:not(:last-child) { - margin-bottom: 1.85714286em; - } -} -.btn--icon { - padding-left: 5.57142857em; -} -.btn--icon i { - position: absolute; - height: 100%; - left: 0; - top: 0; - background: rgba(0, 0, 0, 0.1); - padding: 0 13px; - border-radius: 6px 0 0 6px; - font-size: 16px; - line-height: 41px; -} -.btn--icon i.socicon { - line-height: 42px; -} -.btn--cart { - width: 3.71428571em; - height: 3.71428571em; - border: 2px solid #252525; - display: block; - text-align: center; - border-radius: 6px; - opacity: .4; - padding: 0; -} -.btn--cart:hover { - opacity: 1; -} -.btn--cart .btn__text { - position: absolute; - width: 100%; - left: 0; - top: 50%; - transform: translateY(-50%); - font-size: 1.142857142857143em; -} -.imagebg:not(.image--light) .btn--icon:not([class*='bg']):not([class*='primary']) i { - color: #fff; - background: rgba(255, 255, 255, 0.2); -} -@media all and (min-width: 768px) { - .btn-group .btn { - margin-bottom: 0 !important; - margin-left: 0; - } - .btn-group .btn + .btn { - margin-left: 0; - } - .btn-group .btn:not(:first-child):not(:last-child) { - border-radius: 0; - } - .btn-group .btn:first-child { - border-radius: 6px 0 0 6px; - } - .btn-group .btn:last-child { - border-radius: 0 6px 6px 0; - } - .btn-group .btn:first-child:nth-last-child(2), - .btn-group .btn:last-child:nth-child(2) { - width: 50%; - } -} -.btn-group { - border: none; - padding: 0; -} -@media all and (max-width: 767px) { - .btn-group .btn { - display: block; - } -} -.bg--primary div:not([class*='feature']) .btn--primary { - background: #fff; - border-color: #fff; -} -.bg--primary div:not([class*='feature']) .btn--primary .btn__text { - color: #dcbb55; -} -.bg--primary > .btn--primary { - background: #fff; - border-color: #fff; -} -.bg--primary > .btn--primary .btn__text { - color: #dcbb55; -} -.bg--dark .btn:not(.btn--primary) { - border-color: #3f3f3f; -} -.bg--dark .btn:not(.btn--primary):hover { - border-color: #656565; -} -.bg--dark .btn .btn__text { - color: #fff; -} -.imagebg:not(.image--light) .btn:not([class*='primary']) { - border-color: rgba(255, 255, 255, 0.3); -} -.imagebg:not(.image--light) .btn:not([class*='primary']):hover { - border-color: #fff; -} -.imagebg.image--light .btn:not([class*='primary']) { - border-color: #252525; - background: rgba(255, 255, 255, 0.3); -} -.imagebg.image--light .btn:not([class*='primary']):hover { - background: rgba(255, 255, 255, 0.5); -} -h1 + .btn, -.h1 + .btn { - margin-top: 1.85714286em; -} -h2 + .btn, -.h2 + .btn { - margin-top: 0.92857143em; -} -/*! -- Stack Images -- */ -img:last-child { - margin-bottom: 0; -} -img.flag { - max-height: 1.85714286em; -} -img.image--sm:not(:last-child) { - margin-bottom: 0.92857143em; -} -img.promo.border--round { - border: 1px solid #ececec; -} -p.lead img { - max-height: 1.68421053em; -} -.imagebg h1, -.imagebg h2, -.imagebg h3, -.imagebg h4, -.imagebg h5, -.imagebg h6 { - position: relative; -} -.imagebg:not(.image--light) span { - color: #fff; -} -.imagebg.border--round { - overflow: hidden; -} -section.parallax .row .background-image-holder { - transform: none !important; - top: 0 !important; -} -.triptych.border--round img { - position: relative; - border-radius: 6px; - width: 33.333333%; - float: left; - margin: 0; -} -.triptych.border--round img:nth-child(2) { - transform: scale(1.2); - -webkit-transform: scale(1.2); - z-index: 2; - box-shadow: 0 23px 40px rgba(0, 0, 0, 0.2); -} -.gallery > div[class*='col-'] { - margin-bottom: 30px; -} -.gallery-1 { - overflow: hidden; - position: relative; -} -.gallery-1 .gallery__image:not(:last-child) { - margin-bottom: 30px; -} -.gallery-1 > div[class*='col-']:first-child > .gallery__image { - height: 800px; -} -.gallery-1 > div[class*='col-']:last-child > .gallery__image { - height: calc(385px); -} -.gallery__image { - position: relative; - overflow: hidden; -} -@media all and (max-width: 767px) { - .gallery-1 .gallery__image { - max-height: 300px; - margin-bottom: 15px; - } - .gallery-1 .gallery__image:not(:last-child) { - margin-bottom: 15px; - } -} -.section--ken-burns { - overflow: hidden; -} -.section--ken-burns > .background-image-holder, -.section--ken-burns > img:only-child { - animation: kenBurns 15s ease alternate infinite; - -webkit-animation: kenBurns 15s ease alternate infinite; -} -/*! -- Stack Titles -- */ -.breadcrumbs { - list-style: none; -} -.breadcrumbs li { - font-size: 0.85714285714286em; - display: inline-block; -} -.breadcrumbs li:not(:last-child) { - margin-right: 1.08333333333334em; -} -.breadcrumbs li:not(:last-child):after { - content: '\00bb'; - margin-left: 1.08333333333334em; -} -.breadcrumbs li a { - font-weight: normal; -} -.imagebg .breadcrumbs, -.bg--primary .breadcrumbs { - color: #fff; -} -.imagebg .breadcrumbs a, -.bg--primary .breadcrumbs a { - color: #fff; - font-weight: 600; -} -.elements-title { - border-top: none !important; -} -.elements-title + .tabs-container:not( :nth-last-child(2)), -.elements-title + section:not( :nth-last-child(2)) { - margin-bottom: 9.28571429em; -} -.elements-title + section:not(.imagebg):not([class*='bg-']):not(.unpad) { - padding-top: 1.85714286em; -} -/*! -- Stack Labels -- */ -.label { - display: inline-block; - font-size: 9px; - font-weight: 700; - letter-spacing: .5px; - color: #fff; - text-transform: uppercase; - height: 26px; - min-width: 65px; - padding: 0 10px; - text-align: center; - border-radius: 50px; - position: absolute; - z-index: 3; - top: 1.23809524em; - right: 1.23809524em; -} -.label:not([class*='bg--']) { - background: #3d4950; -} -.label.label--inline { - position: relative; - top: 0; - right: 0; -} -.label.label--inline:not(:last-child) { - margin-right: 0.92857143em; -} -.label.label--inline + span, -.label.label--inline + p { - position: relative; - top: 1px; -} -.label.switchable-toggle { - left: 50%; - right: auto; - transform: translate3d(-50%, 0, 0); - -webkit-transform: translate3d(-50%, 0, 0); - box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.06); -} -.bg--primary-1 .label:not([class*='bg--']) { - background: #727178; -} -/*! -- Stack Bars -- */ -.menu-horizontal > li, -.menu-vertical > li { - font-family: 'Open Sans', 'Roboto', 'Helvetica', Sans-Serif; -} -.bar .logo { - max-height: 1.85714286em; - max-width: none; -} -.menu-horizontal > li > a, -.menu-horizontal > li > .modal-instance > a { - font-weight: 500; -} -.menu-horizontal > li a:hover { - text-decoration: none; -} -.hamburger-toggle i { - color: #252525; -} -@media all and (min-width: 990px) { - .menu-horizontal li:not(:last-child) { - margin-right: 1.23809524em; - } - .bar__module:not(:only-child) .menu-horizontal { - top: 0; - } -} -@media all and (min-width: 768px) and (max-width: 1023px) { - .bar-2 .menu-horizontal > li, - .bar-1 .menu-horizontal > li { - display: inline-block; - } - .bar-2 .menu-horizontal > li:not(:first-child), - .bar-1 .menu-horizontal > li:not(:first-child) { - margin-left: 0.92857143em; - } - .bar-2 .bar__module, - .bar-1 .bar__module { - margin-bottom: 1.85714286em; - } - .bar-2 .row div[class*='col-']:last-child .bar__module:last-child, - .bar-1 .row div[class*='col-']:last-child .bar__module:last-child { - margin-bottom: 0; - } -} -.bar-1 .menu-horizontal > li > .dropdown__trigger, -.bar-1 .menu-horizontal > li > a { - font-size: 0.857142857142857em; - line-height: 2.166666666666667em; - text-transform: uppercase; - font-weight: 600; - letter-spacing: .5px; -} -@media all and (min-width: 1024px) { - .bar-1 .bar__module + .bar__module { - margin-left: 1.85714286em; - } -} -@media all and (min-width: 991px) { - .bar-2 .logo { - position: absolute; - left: 50%; - transform: translateX(-50%); - } -} -.bar-3 { - font-size: 0.85714286em; -} -.bar-3 .menu-horizontal { - top: 0; -} -@media all and (max-width: 990px) { - .bar-3 .menu-horizontal li { - display: inline-block; - } - .bar-3 .menu-horizontal li:not(:last-child) { - margin-right: 0.92857143em; - } -} -@media all and (min-width: 990px) { - .bar-toggle .col-md-1 .logo { - top: 10px; - } -} -@media all and (max-width: 767px) { - .bar-4 .logo-light { - display: none; - } - .bar-4 .logo-dark { - margin-bottom: 1.85714286em; - } - .bar.bg--dark { - background: #252525; - } - .bar.bg--dark .hamburger-toggle i { - color: #fff; - } -} -/*! -- Stack Alerts -- */ -.alert { - border-radius: 6px; -} -.alert:not(:last-child) { - margin-bottom: 1.85714286em; -} -.alert .alert__close { - font-size: 1.35714286em; -} -/*! -- Stack Menu Toggle -- */ -.menu-toggle { - box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); - box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.04); - width: 3.71428571em; - height: 3.71428571em; - border-radius: 50%; - text-align: center; - background: #fff; - display: inline-block; - transition: 0.2s ease; - -webkit-transition: 0.2s ease; - -moz-transition: 0.2s ease; -} -.menu-toggle i { - font-size: 1.78571429em; - position: relative; - top: 13px; - color: #252525; -} -.menu-toggle:hover { - box-shadow: 0 23px 40px rgba(0, 0, 0, 0.2); - transform: translate3d(0, -2px, 0); - -webkit-transform: translate3d(0, -2px, 0); -} -/*! -- Stack Nav Utility -- */ -.nav-utility { - padding: 0.92857143em 0; -} -.nav-utility .nav-utility__module { - font-size: 0.85714285714286em; -} -.nav-utility .nav-utility__module a { - color: #666666; - font-weight: normal; -} -.nav-utility .nav-utility__module a i { - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; - display: inline-block; -} -.nav-utility .nav-utility__module a:hover i { - transform: scale(1.5); - -webkit-transform: scale(1.5); -} -.nav-utility .nav-utility__module.right:not(:last-child) { - margin-left: 2.16666666666667em; -} -.utility-toggle { - display: inline-block; - cursor: pointer; - width: 3px; - height: 3px; - position: relative; - bottom: 8px; - border-radius: 50%; - background: #252525; -} -.utility-toggle:before, -.utility-toggle:after { - content: ''; - width: 3px; - height: 3px; - border-radius: 50%; - position: absolute; - background: #252525; -} -.utility-toggle:before { - top: 6px; -} -.utility-toggle:after { - top: 12px; -} -/*! -- Stack Nav Stacked -- */ -.bar-stacked .logo { - margin-bottom: 3.71428571em; -} -/*! -- Stack Nav Side Menu -- */ -.notification.side-menu { - z-index: 9999; - background: #ffffff; - padding-top: 1.85714286em; - margin: 0; - height: 100%; - box-shadow: 0 23px 40px rgba(0, 0, 0, 0.2); - width: 27.85714286em; -} -.notification.side-menu .side-menu__module { - overflow: hidden; - padding: 2.78571429em; -} -.notification.side-menu .side-menu__module + hr:not(:last-child) { - margin: 0; -} -.notification.side-menu .menu-vertical li a { - font-size: 1.35714286em; - line-height: 1.36842105em; -} -.notification.side-menu .menu-vertical li a:hover { - text-decoration: none; -} -.notification.side-menu .btn:not(:last-child) { - margin-bottom: 1.85714286em; -} -.notification.side-menu .btn + ul.list--loose { - margin-top: 0.92857143em; -} -.notification.side-menu .notification-close-cross { - top: 0.92857143em; - right: 2.78571429em; - margin-top: 8px; -} -.notification.side-menu .social-list:not(:first-child) { - margin-top: 1.85714286em; -} -.menu-toggle.pos-fixed { - position: fixed; - right: 5.57142857em; - animation: fadeInDown .3s ease forwards; -} -@media all and (min-width: 768px) { - .side-menu .side-menu__module span.type--fine-print { - position: relative; - top: 8px; - } -} -@media all and (max-width: 767px) { - .side-menu { - width: 100%; - } - .side-menu .side-menu__module .float-right, - .side-menu .side-menu__module .float-left { - display: block; - } -} -/*! -- Stack Nav Sidebar Column -- */ -.nav-container.nav-container--sidebar + .main-container { - width: calc(100vw - 20.428571428571463em); - float: right; -} -.nav-container.nav-container--sidebar + .main-container .container { - max-width: 100%; -} -.nav-sidebar-column { - position: fixed; - z-index: 3; - left: 0; - width: 20.42857143em; - border-right: 1px solid #ececec; - height: 100vh; - overflow-y: scroll; - -ms-overflow-style: none; - padding: 2.78571429em 1.85714286em; -} -.nav-sidebar-column:not([class*='bg-']) { - background: #ffffff; -} -.nav-sidebar-column.bg--dark { - border-right: 1px solid #3f3f3f; -} -.nav-sidebar-column::-webkit-scrollbar { - display: none; -} -.nav-sidebar-column .logo { - max-height: 2.32142857em; - margin-bottom: 0.92857143em; -} -.nav-sidebar-column .text-block > p { - margin-bottom: 0.92857143em; -} -.nav-sidebar-column .menu-vertical li.dropdown:not(:hover):after { - opacity: .35; -} -.nav-sidebar-column .menu-vertical a:hover { - text-decoration: none; -} -.nav-sidebar-column .dropdown .dropdown__container, -.nav-sidebar-column .dropdown .dropdown__content { - left: 0 !important; - position: relative; - pointer-events: all; -} -.nav-sidebar-column .dropdown .dropdown__container:before { - height: 0; -} -.nav-sidebar-column .dropdown .dropdown__content { - transform: none !important; - box-shadow: none; - -webkit-box-shadow: none; - padding-top: 0.46428571em; - padding-right: 0; - padding-left: 0.46428571em; - background: none !important; -} -.nav-sidebar-column .dropdown .menu-vertical li.dropdown:after { - right: 1.85714286em; -} -.nav-sidebar-column .dropdown:not(.dropdown--active) .dropdown__container { - display: none; -} -.nav-sidebar-column .dropdown.dropdown--hover:hover > .dropdown__container { - display: block; -} -.nav-sidebar-column .social-list { - margin-bottom: 0.92857143em; -} -body.dropdowns--hover .nav-sidebar-column .dropdown:hover > .dropdown__container { - display: block; -} -.nav-sidebar-column-toggle { - transition: all .3s ease; - left: 0; - width: 3.71428571em; - height: 3.71428571em; - background: #ffffff; - text-align: center; - position: fixed; - z-index: 4; - cursor: pointer; - border-radius: 0 0 6px 0; - box-shadow: 2px 1px 4px rgba(0, 0, 0, 0.1); -} -.nav-sidebar-column-toggle > i { - transition: all .3s ease; - font-size: 1.78571429em; - position: relative; - top: 11px; -} -.nav-sidebar-column-toggle:not(.toggled-class) > i { - opacity: .5; -} -.nav-sidebar-column-toggle.toggled-class i:before { - content: '\e80b'; -} -@media all and (max-width: 990px) { - .nav-sidebar-column { - transition: all .3s ease; - left: -20.42857143em; - box-shadow: 2px 0px 4px rgba(0, 0, 0, 0); - } - .nav-sidebar-column.active { - left: 0; - box-shadow: 2px 0px 4px rgba(0, 0, 0, 0.1); - } - .nav-sidebar-column-toggle.toggled-class { - left: 20.42857143em; - } - .nav-container.nav-container--sidebar + .main-container { - width: 100%; - float: none; - } -} -.nav-container.nav-container--right .nav-sidebar-column { - right: 0; - left: auto; -} -.nav-container.nav-container--right + .main-container { - float: left; -} -.nav-container.nav-container--right .nav-sidebar-column-toggle { - left: auto; - right: 0; - border-radius: 0 0 0 6px; - box-shadow: -2px 1px 4px rgba(0, 0, 0, 0.1); -} -@media all and (max-width: 990px) { - .nav-container.nav-container--right .nav-sidebar-column { - right: -20.42857143em; - left: auto; - } - .nav-container.nav-container--right .nav-sidebar-column.active { - left: auto; - right: 0; - box-shadow: -2px 0px 4px rgba(0, 0, 0, 0.1); - } - .nav-container.nav-container--right .nav-sidebar-column-toggle.toggled-class { - left: auto; - right: 20.42857143em; - } -} -/*! -- Stack Nav Fullscreen -- */ -.menu-fullscreen { - color: #fff; -} -.menu-fullscreen .pos-absolute { - width: 100%; -} -.menu-fullscreen a { - color: #fff; -} -.menu-fullscreen a:hover { - text-decoration: none; -} -.menu-fullscreen .social-list { - margin-right: 0; -} -.menu-fullscreen:before { - background: rgba(0, 0, 0, 0.9); -} -.menu-fullscreen .modal-content .modal-close-cross { - right: 3.71428571em; - top: 1em; -} -@media all and (max-width: 767px) { - .menu-fullscreen .pos-bottom { - position: relative; - } -} -/*! -- Stack Dropdowns -- */ -.dropdown > .dropdown__trigger:after { - font-family: "stack-interface"; - display: inline-block; - font-size: 8px; - position: relative; - bottom: 2px; -} -.dropdown > .dropdown__trigger .image--xxs { - margin-right: 0.46428571em; -} -.dropdown .dropdown__content { - border-radius: 6px; - box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.08); - -webkit-box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.08); - padding: 1.23809524em 1.85714286em; -} -.dropdown .dropdown__content h5:not(:last-child) { - margin-bottom: 0.92857143em; -} -.dropdown .dropdown__content .background-image-holder { - border-radius: 6px 0 0 6px; -} -.dropdown .dropdown__content > .pos-absolute[class*='col-'] { - left: 0; - top: 0; - height: 100%; - position: absolute !important; -} -.dropdown .dropdown__content > .pos-absolute[class*='col-'][data-overlay]:before { - border-radius: 6px 0 0 6px; -} -.menu-horizontal > .dropdown > .dropdown__trigger:after { - content: '\e80a'; - margin-left: 4px; -} -.menu-vertical > .dropdown > .dropdown__trigger { - display: inline-block; - width: 100%; -} -@media all and (max-width: 767px) { - .dropdown [class*='col-'] + [class*='col-'] { - margin-top: 0.92857143em; - } - .dropdown .dropdown__content:not([class*='bg-']) { - border: none; - box-shadow: none; - } -} -@media all and (max-width: 767px) { - .dropdown__container { - left: 0 !important; - } -} -.menu-vertical li { - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; -} -.menu-vertical li:not(:hover):not(.dropdown--active) { - opacity: .75; -} -.menu-vertical li:not(:last-child) { - margin-bottom: 0.30952381em; -} -.menu-vertical li.dropdown { - position: relative; -} -.menu-vertical li.dropdown:after { - content: '\e80c'; - font-family: 'stack-interface'; - right: 0; - top: 0; - position: absolute; - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; - display: inline-block; - transform: translate3d(-10px, 0, 0); - -webkit-transform: translate3d(-10px, 0, 0); -} -.menu-vertical li.dropdown:hover:after { - transform: translate3d(-5px, 0, 0); - -webkit-transform: translate3d(-5px, 0, 0); -} -.menu-vertical li.separate { - border-top: 1px solid #e6e6e6; - margin-top: 0.92857143em; - padding-top: 0.92857143em; -} -.menu-vertical li.separate.dropdown:after { - top: .92857143em; -} -.menu-vertical + h5 { - margin-top: 1.85714286em; -} -@media all and (max-width: 990px) { - .menu-vertical .dropdown.dropdown--active:after { - opacity: 0; - } -} -@media all and (min-width: 991px) { - .dropdown .dropdown__container:before { - height: 18px; - } -} -/*! -- Stack Twitter Feeds -- */ -.tweets-feed .interact { - display: none; -} -.tweets-feed .user a:hover { - text-decoration: none; -} -.tweets-feed .user img { - border-radius: 50%; -} -.tweets-feed-1 { - border-radius: 6px; - border: 1px solid #ececec; - overflow: hidden; -} -.tweets-feed-1 li { - overflow: hidden; - padding: 1.85714286em; - padding-bottom: 0; -} -.tweets-feed-1 li:not(:last-child) { - border-bottom: 1px solid #ececec; -} -.tweets-feed-1 .user { - width: 20%; - float: left; - margin-bottom: 0.92857143em; -} -.tweets-feed-1 .user img { - max-height: 3.71428571em; - margin-right: 0.46428571em; -} -.tweets-feed-1 .user [data-scribe="element:name"], -.tweets-feed-1 .user [data-scribe="element:screen_name"] { - display: none; -} -.tweets-feed-1 .tweet, -.tweets-feed-1 .timePosted { - width: 80%; - float: right; -} -.tweets-feed-1 .tweet { - margin-bottom: 0.46428571em; -} -.tweets-feed-1 .timePosted { - font-size: 0.85714286em; - line-height: 2.16666667em; -} -.tweets-feed-1:not(:last-child) + .btn { - margin-top: 2.78571429em; -} -.imagebg .tweets-feed-1, -.bg--dark .tweets-feed-1 { - border-color: rgba(255, 255, 255, 0.1); -} -.imagebg .tweets-feed-1 li:not(:last-child), -.bg--dark .tweets-feed-1 li:not(:last-child) { - border-color: rgba(255, 255, 255, 0.1); -} -.tweets-feed-2 .user { - display: none; -} -.tweets-feed-2 .timePosted { - display: none; -} -.tweets-feed-2 li { - overflow: hidden; -} -.tweets-feed-2 li:before { - font-family: 'socicon'; - content: "\e08d"; -} -.tweets-feed-2 li .tweet { - width: 85%; - float: right; -} -.tweets-feed.slider .user img { - display: inline-block; - clear: both; - margin-bottom: 0.92857143em; -} -.tweets-feed.slider .user [data-scribe="element:name"] { - display: none; -} -.tweets-feed.slider .user [data-scribe="element:screen_name"] { - display: block; - font-size: 1.35714286em; - line-height: 1.36842105em; - font-weight: normal; -} -.tweets-feed.slider .tweet { - margin-top: 1.36842105263158em; - margin-bottom: 0.68421052631579em; - font-size: 1.35714286em; - line-height: 1.36842105em; -} -.tweets-feed.slider .timePosted { - margin: 0; -} -.tweets-feed.slider:not(:last-child) + .btn { - margin-top: 2.78571429em; -} -/*! -- Stack Instagram -- */ -.instafeed a { - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; -} -.instafeed a:hover { - opacity: .75; -} -.instafeed:not(.instafeed--gapless) li { - padding: 0.46428571em; -} -.instafeed.instafeed--gapless li { - margin-bottom: -1px; -} -.instafeed + .btn { - margin-top: 2.78571429em; -} -.instafeed[data-grid="1"][data-amount="8"] li { - display: inline-block; - width: 12.5%; -} -.instagram { - position: relative; -} -.instagram.unpad .btn { - position: absolute; - z-index: 2; - top: 50%; - transform: translate3d(-50%, -50%, 0); - -webkit-transform: translate3d(-50%, -50%, 0); - margin: 0; -} -/*! -- Stack Cards -- */ -.card__top { - position: relative; - overflow: hidden; -} -.card__action a { - color: #666666; - text-decoration: none; - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; -} -.card__action a i { - color: #252525; - font-size: 1em; -} -.card__action a span { - position: relative; - bottom: 2px; -} -.card__action a:not(:hover) { - opacity: .5; -} -.card p a { - text-decoration: none; -} -.masonry__item .card.boxed { - margin-bottom: 0; -} -.card-1 .card__avatar { - margin-bottom: 0.92857143em; -} -.card-1 .card__avatar img { - max-height: 2.78571429em; - margin-right: 0.46428571em; - margin-bottom: 0; -} -.card-1 .card__avatar, -.card-1 .card__meta { - display: inline-block; -} -.card-1 .card__meta { - float: right; -} -.card-1 .card__body { - border-bottom: 1px solid #ececec; - padding-bottom: 0.92857143em; - margin-bottom: 0.92857143em; -} -.card-1 .card__body img { - margin-bottom: 0.92857143em; -} -.card-1 .card__body h4 { - margin-bottom: 0.342105263157895em; -} -.bg--dark .card-1 .card__body { - border-color: #3f3f3f; -} -@media all and (max-width: 767px) { - .card .list-inline:not(.social-list) li { - display: inline-block; - } - .card .list-inline:not(.social-list) li:not(:first-child) { - margin-left: 0.92857143em; - } -} -.card-2 .card__top img { - border-radius: 6px 6px 0 0; -} -.card-2 .card__body { - border-bottom: 1px solid #ececec; - padding-bottom: 1.85714286em; -} -.card-2 .card__body h4 { - margin: 0; -} -.card-2 .card__body p { - margin-top: 0.92857143em; -} -.card-2 .card__bottom { - overflow: hidden; -} -.card-2 .card__bottom > div { - display: inline-block; - width: 50%; - float: left; -} -.card-2 .card__bottom .h6 { - margin-bottom: 0.541666666666667em; -} -.card-2 .card__body, -.card-2 .card__bottom { - padding: 1.85714286em; - border: 1px solid #ececec; -} -.card-2 .card__body { - border-bottom: none; - border-top: none; -} -.card-2 .card__bottom { - border-radius: 0 0 6px 6px; - padding: 0.92857143em 1.85714286em; -} -.card-2 .card__action i { - font-size: 1.78571429em; -} -.bg--dark .card-2 .card__body, -.bg--dark .card-2 .card__bottom { - border-color: #3f3f3f; -} -/*! -- Stack Checkmarks & Crosses -- */ -.checkmark { - display: inline-block; - position: relative; - width: 1.23809524em; - height: 1.23809524em; - border-radius: 50%; - text-align: center; -} -.checkmark:not([class*='bg-']) { - background: #dcbb55; -} -.checkmark:before { - content: '\2713'; - color: #fff; - font-size: 11px; - position: absolute; - width: 100%; - left: 0; - top: -4px; -} -.checkmark.checkmark--cross:before { - content: '\2717'; -} -.checkmark:not(:last-child) { - margin-right: 13px; -} -/*! -- Stack Icons -- */ -.icon:not(.block) { - display: inline-block; -} -.icon.icon--xs { - font-size: 1.14285714285714em; -} -.text-block .icon + h4 { - margin-top: 0.6842105263158em; -} -.imagebg .icon { - color: #fff; -} -p .material-icons { - font-size: 1em; -} -p .material-icons:first-child { - margin-right: 0.30952381em; -} -.material-icons { - font-family: 'Material Icons' !important; -} -.icon-circle { - position: relative; - display: inline-block; - width: 3.71428571em; - height: 3.71428571em; - border-radius: 50%; - border: 1px solid #ececec; - background: #fafafa; - text-align: center; -} -.icon-circle i { - font-size: 24px; - position: absolute; - top: 50%; - transform: translateY(-50%); - width: 100%; - left: 0; -} -/*! -- Stack Tooltips -- */ -.tooltip { - position: relative; - top: 3px; - display: inline-block; - width: 1.23809524em; - height: 1.23809524em; - border-radius: 50%; - background: #252525; - text-align: center; - cursor: pointer; -} -.tooltip .tooltip__anchor { - color: #fff; - font-weight: 700; - font-size: 11px; - position: absolute; - top: -5px; - left: 6px; -} -.tooltip .tooltip__text { - transition: 0.2s ease; - -webkit-transition: 0.2s ease; - -moz-transition: 0.2s ease; - text-align: left; - z-index: 10; - position: absolute; - width: 280px; - background: #fafafa; - border: 1px solid #ececec; - padding: 0.61904762em; - left: 1.48571429em; - top: -0.92857143em; - opacity: 0; - pointer-events: none; - cursor: default; - box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); - box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.04); - line-height: 20px; -} -.tooltip:hover .tooltip__text { - opacity: 1; -} -.tooltip:last-child { - margin-left: 0.92857143em; -} -[data-tooltip] { - position: relative; - overflow: visible; -} -[data-tooltip]:after { - transition: all .2s ease; - content: attr(data-tooltip); - position: absolute; - top: -24px; - left: 50%; - transform: translateX(-50%); - background: #252525; - color: #fff; - border: 1px solid #e7e7e7; - padding: 2px 12px; - pointer-events: none; - white-space: nowrap; - font-size: 11px; - line-height: 18px; - font-weight: 600; - border-radius: 2px; - z-index: 2; - font-family: 'Open Sans'; -} -[data-tooltip]:not(:hover):after { - opacity: 0; -} -/*! -- Stack Boxes -- */ -.boxed { - border-radius: 6px; -} -.boxed .background-image-holder { - border-radius: 6px; -} -.boxed:before { - border-radius: 6px; -} -.boxed:not(:last-child) { - margin-bottom: 30px; -} -.boxed:not([class*='bg-']) { - background: #ffffff; -} -.boxed.bg--secondary .boxed { - background: #fafafa; -} -@media all and (min-width: 768px) { - .switchable .imagebg .boxed { - padding-left: 5.57142857em; - } -} -.bg--dark .boxed:not([class*='bg-']), -.imagebg:not(.image--light) .boxed:not([class*='bg-']) { - background: none; - color: #fff; -} -.bg--dark .boxed:not([class*='bg-']).boxed--border, -.imagebg:not(.image--light) .boxed:not([class*='bg-']).boxed--border { - border-color: #3f3f3f; -} -.bg--dark .boxed[class*='bg-'].boxed--border, -.imagebg:not(.image--light) .boxed[class*='bg-'].boxed--border { - border: none; -} -.imagebg:not(.image--light) .boxed:not(.bg--white):not(.bg--none) { - background: rgba(20, 20, 20, 0.3); -} -.imagebg:not(.image--light) .boxed:not(.bg--white):not(.bg--none).boxed--border { - border: none; -} -.imagebg:not(.image--light) .boxed:not(.bg--white):not(.bg--none) .boxed { - background: none; -} -.bg--primary .boxed:not(.imagebg) { - color: #666666; -} -.bg--primary .boxed:not(.imagebg) p { - color: #666666; -} -.bg--primary .boxed:not(.imagebg) h1, -.bg--primary .boxed:not(.imagebg) h2, -.bg--primary .boxed:not(.imagebg) h3, -.bg--primary .boxed:not(.imagebg) h4, -.bg--primary .boxed:not(.imagebg) h5, -.bg--primary .boxed:not(.imagebg) h6, -.bg--primary .boxed:not(.imagebg) .h1, -.bg--primary .boxed:not(.imagebg) .h2, -.bg--primary .boxed:not(.imagebg) .h3, -.bg--primary .boxed:not(.imagebg) .h4, -.bg--primary .boxed:not(.imagebg) .h5, -.bg--primary .boxed:not(.imagebg) .h6, -.bg--primary .boxed:not(.imagebg) i { - color: #252525; -} -.bg--primary .boxed:not(.imagebg) a { - color: #dcbb55; -} -.bg--primary .boxed:not(.imagebg) .color--primary { - color: #dcbb55 !important; -} -@media all and (min-width: 768px) { - .boxed.boxed--emphasis { - transform: scale(1.075); - -webkit-transform: scale(1.075); - } -} -/*! -- Stack Features Small -- */ -.feature:not(.boxed) { - margin-bottom: 60px; -} -.feature.feature--featured:after { - content: ''; - position: absolute; - bottom: 0; - width: 100%; - height: 4px; - background: #dcbb55; - left: 0; -} -.feature h5 { - margin: 0; -} -.feature h4 { - margin-bottom: 0.342105263157895em; -} -.feature h4 + p { - max-width: 22.28571429em; -} -.feature i + h5 { - margin-top: 1.85714286em; -} -.feature i + h4 { - margin-top: 0.68421052631579em; -} -.feature i.icon--lg + h4 { - margin-top: 1.36842105263158em; -} -.feature i.icon--lg + .h5 { - margin-top: 0.92857143em; -} -.feature img + .boxed { - border-radius: 0 0 6px 6px; - border-top: none; -} -.imagebg:not(.image--light) .feature.bg--white a:not(.btn) { - color: #dcbb55; -} -.imagebg:not(.image--light) .feature.bg--white .label { - color: #fff; -} -@media all and (max-width: 767px) { - .feature .feature__body form .row { - margin-left: 0; - margin-right: 0; - } -} -section.text-center .feature-6 h4 + p { - margin: 0 auto; -} -@media all and (min-width: 768px) { - .row div[class*='col-']:nth-child(1):nth-last-child(3) .feature, - .row div[class*='col-']:nth-child(2):nth-last-child(2) .feature, - .row div[class*='col-']:nth-child(3):last-child .feature { - margin-bottom: 0; - } -} -a.block > .feature { - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; -} -a.block:hover > .feature { - box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); - box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.04); -} -.feature-1 { - min-height: 11.14285714em; -} -.feature-1 p { - margin: 0; -} -.feature-1 p.lead { - min-height: 5.05263157894737em; -} -.feature-1 > img:first-child { - border-radius: 6px 6px 0 0; -} -.feature-1 > a.block img { - border-radius: 6px 6px 0 0; -} -.feature-1 > a.block + .feature__body { - border-radius: 0 0 6px 6px; -} -.feature-1[class*='box-shadow'] { - border-radius: 6px; - transition: 0.35s ease-out; - -webkit-transition: 0.35s ease-out; - -moz-transition: 0.35s ease-out; -} -.feature-1[class*='box-shadow']:hover { - transform: translate3d(0, -10px, 0); - -webkit-transform: translate3d(0, -10px, 0); - box-shadow: 0 23px 40px rgba(0, 0, 0, 0.2); -} -.hover-shadow { - border-radius: 6px; - backface-visibility: hidden; - overflow: hidden; - border: 1px solid #ececec; - transition: 0.35s ease-out; - -webkit-transition: 0.35s ease-out; - -moz-transition: 0.35s ease-out; -} -.hover-shadow:hover { - transform: translate3d(0, -10px, 0); - -webkit-transform: translate3d(0, -10px, 0); - box-shadow: 0 23px 40px rgba(0, 0, 0, 0.2); -} -.bg--dark .hover-shadow { - border-color: #222; -} -.bg--dark .hover-shadow:hover { - box-shadow: 0 23px 40px #000000; -} -.feature-2 { - overflow: hidden; -} -.feature-2 .feature__body { - width: 75%; - float: right; -} -.feature-2 h5 { - margin-bottom: 0.46428571em; -} -.feature-2 p:last-child { - margin: 0; -} -.feature-2 i { - width: 25%; - float: left; -} -.feature-large .feature-2 + .feature-2:last-child { - margin-bottom: 0; -} -@media all and (max-width: 990px) { - .feature-2 .feature__body, - .feature-2 i { - width: 100%; - float: none; - } - .feature-2 p:first-of-type { - margin-top: 0.92857143em; - } -} -.feature-3 i { - margin-bottom: 0.16666666666667em; -} -.feature-3 p { - min-height: 7.42857143em; -} -.feature-4 .btn { - position: absolute; - width: 100%; - bottom: 0; - left: 0; - border-radius: 0; - padding: 0.92857143em; -} -.feature-4 .btn:hover { - transform: none; -} -.feature-4 p { - min-height: 9.28571429em; -} -.feature-4 p:last-of-type { - margin-bottom: 3.71428571em; -} -.feature-5 i { - width: 25%; - float: left; -} -.feature-5 .feature__body { - width: 75%; - float: right; -} -.feature-5 p { - min-height: 5.57142857em; -} -.feature-5 p:last-of-type { - margin-bottom: 0.92857143em; -} -.feature-5:not([class*='bg-']) { - color: #252525; -} -.feature-6 p { - min-height: 9.28571429em; -} -.feature-6 p:last-child { - margin: 0; -} -.feature-7 { - height: 13em; - margin-bottom: 30px; -} -.feature-7[data-overlay]:before { - border-radius: 6px; - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; -} -.feature-7[data-overlay]:hover:before { - opacity: .75; -} -.feature-7 .background-image-holder { - border-radius: 6px; -} -.feature-7 h3 { - margin: 0; -} -.row--gapless .feature-7 { - margin: 0; - border-radius: 0; -} -.row--gapless .feature-7 .background-image-holder { - border-radius: 0; -} -.row--gapless .feature-7:before { - border-radius: 0; -} -@media all and (max-width: 767px) { - .feature-7 .pos-vertical-center { - top: 50%; - transform: translate3d(0, -50%, 0); - -webkit-transform: translate3d(0, -50%, 0); - } -} -.feature-8 { - padding: 2.78571429em 0 3.71428571em 0; -} -.feature-8:not(.boxed) { - margin-bottom: 0; -} -.feature-8 .feature__body { - max-width: 70%; - margin: 0 auto; -} -.feature-8 p { - min-height: 5.57142857em; -} -@media all and (max-width: 990px) { - .feature-8 .feature__body { - max-width: 85%; - } -} -@media all and (max-width: 767px) { - .feature p { - min-height: auto; - margin-left: auto; - margin-right: auto; - } - .feature.boxed { - margin-bottom: 15px; - } - .feature:not(.boxed) { - margin-bottom: 30px; - } - .feature.feature-8 { - margin-bottom: 0; - } -} -.feature-8 img { - max-height: 14.85714286em; -} -.feature-9 h4 { - margin: 0; -} -.feature-9:not(.boxed) { - margin-bottom: 30px; -} -@media all and (min-width: 768px) { - .features-small-14 .text-block { - margin-bottom: 3.71428571em; - } - .features-small-14 h4 { - min-height: 2.736842105263158em; - } -} -/*! -- Stack Features Large -- */ -@media all and (min-width: 768px) { - .staggered div[class*='col-']:nth-child(2):last-child { - margin-top: 13em; - } - .staggered div[class*='col-']:nth-child(2):last-child:not(:last-child) { - margin-bottom: 9.28571429em; - } - .staggered div[class*='col-'] .feature:not(:last-child) { - margin-bottom: 9.28571429em; - } -} -.feature-large h4:first-child { - margin-bottom: 0.68421052631579em; -} -.feature-large .feature:not(.boxed) { - margin-bottom: 30px; -} -.feature-large .feature-3.text-center p { - margin: 0 auto; -} -.feature-large .lead + .feature-large__group { - margin-top: 3.71428571em; -} -.feature-large .feature-large__group { - overflow: hidden; -} -.feature-large-1 .lead { - margin-bottom: 2.73684210526316em; -} -@media all and (min-width: 768px) { - .feature-large-2 div[class*='col-']:first-child { - margin-top: 5.57142857em; - } - .feature-large-2 div[class*='col-']:last-child { - margin-top: 7.42857143em; - } -} -@media all and (max-width: 767px) { - .feature-large-2 img { - margin: 1.85714286em 0; - } -} -.feature-large-7.switchable .boxed div[class*='col-']:only-child { - float: none; -} -.feature-large-13 p.lead + .text-block { - margin-top: 3.71428571em; -} -.feature-large-13 div[class*='col-'] .text-block + .text-block { - margin-top: 2.78571429em; -} -@media all and (min-width: 1200px) { - .feature-large-13:not(.text-center) .text-block p { - max-width: 26em; - } -} -.feature-large-14 h5 { - margin-bottom: 0.46428571em; -} -.feature-large-14 .boxed { - margin-bottom: 0; -} -.feature-large-14 .boxed.boxed--border img { - border-radius: 6px; -} -@media all and (min-width: 768px) { - .feature-large-14.switchable .switchable__text { - margin-top: 5.57142857em; - } -} -/*! -- Stack Accordions -- */ -.accordion .accordion__title { - transition: 0.5s ease; - -webkit-transition: 0.5s ease; - -moz-transition: 0.5s ease; - opacity: .5; - margin-bottom: 0.92857143em; -} -.accordion .accordion__title:hover { - opacity: 1; -} -.accordion .accordion__title:before { - font-family: "stack-interface"; - content: '\e80d'; - margin-right: 6px; - color: #252525; -} -.accordion .accordion__title span { - display: inline-block; -} -.accordion li.active { - margin-bottom: 0.92857143em; -} -.accordion li.active .accordion__title { - opacity: 1; -} -.accordion li.active .accordion__title:before { - content: '\e80a'; -} -.accordion li.active .accordion__content { - animation: fadeUp .5s ease forwards; - -webkit-animation: fadeUp .5s ease forwards; -} -.accordion-1 li.active .accordion__title { - border-color: #dcbb55; -} -.accordion-1 li.active .accordion__title span { - color: #fff; -} -.accordion-1 li.active .accordion__title:before { - color: #fff; -} -.accordion-1 li .accordion__title { - border-radius: 6px; - border-bottom: 1px solid #ECECEC; -} -.accordion-2 li .accordion__title { - border-left: none; - border-right: none; - border-top: none; - border-bottom: 1px solid #ECECEC; - padding-left: 0; -} -.accordion-2 li.active .accordion__title { - background: none; - border-bottom: 1px solid rgba(0, 0, 0, 0); -} -.bg--dark .accordion-2 li .accordion__title, -.imagebg:not(.image--light) .accordion-2 li .accordion__title, -.bg--primary .accordion-2 li .accordion__title, -.bg--dark .accordion-1 li .accordion__title, -.imagebg:not(.image--light) .accordion-1 li .accordion__title, -.bg--primary .accordion-1 li .accordion__title { - border-color: #4b4b4b; -} -.bg--dark .accordion-2 li .accordion__title:before, -.imagebg:not(.image--light) .accordion-2 li .accordion__title:before, -.bg--primary .accordion-2 li .accordion__title:before, -.bg--dark .accordion-1 li .accordion__title:before, -.imagebg:not(.image--light) .accordion-1 li .accordion__title:before, -.bg--primary .accordion-1 li .accordion__title:before { - color: #fff; -} -.imagebg:not(.image--light) .accordion li .accordion__title, -.bg--primary .accordion li .accordion__title { - border-color: rgba(255, 255, 255, 0.3); -} -/*! -- Stack Tabs -- */ -.tabs-container.tabs--vertical { - overflow: hidden; -} -.tabs-container.tabs--vertical .tabs { - width: 25%; - float: left; -} -.tabs-container.tabs--vertical .tabs li { - display: block; -} -.tabs-container.tabs--vertical .tabs li:not(:last-child) { - border-right: none; - border-bottom: 1px solid #ECECEC; -} -.tabs-container.tabs--vertical .tabs-content { - width: 70%; - float: right; - margin-top: 0; -} -.tabs-container.tabs--vertical .tabs-content > li:not(.active) .tab__content { - animation: fadeOutUp .5s ease forwards; - -webkit-animation: fadeOutUp .5s ease forwards; -} -.tabs-container.tabs--vertical .tabs-content > li.active .tab__content { - animation: fadeInUp .5s ease forwards; - -webkit-animation: fadeInUp .5s ease forwards; - backface-visibility: hidden; -} -.tabs-container.tabs--vertical.tabs--icons .tabs { - width: 15%; - text-align: center; -} -.tabs-container.tabs--vertical.tabs--icons .tabs-content { - width: 80%; -} -@media all and (max-width: 767px) { - .tabs-container.tabs--vertical .tabs, - .tabs-container.tabs--vertical .tabs-content { - width: 100%; - float: none; - } - .tabs-container.tabs--vertical .tabs { - margin-bottom: 1.85714286em; - } - .tabs-container.tabs--vertical .tabs-content > li:not(.active) .tab__content { - animation: fadeOutRight .5s ease forwards; - -webkit-animation: fadeOutRight .5s ease forwards; - } - .tabs-container.tabs--vertical .tabs-content > li.active .tab__content { - animation: fadeInLeft .5s ease forwards; - -webkit-animation: fadeInLeft .5s ease forwards; - backface-visibility: hidden; - } -} -.tabs { - display: inline-block; - border: 1px solid #ECECEC; - border-radius: 6px; - margin-bottom: 1.85714286em; -} -.tabs li { - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; - padding: 0.92857143em 1.85714286em; -} -.tabs li:not(:last-child) { - border-right: 1px solid #ECECEC; -} -.tabs li.active { - opacity: 1; -} -.tabs li.active .tab__title { - color: #dcbb55; -} -.tabs li.active .tab__title span { - color: #dcbb55; -} -.tabs li:not(.active) { - opacity: .5; -} -.tabs li:hover { - opacity: 1; - cursor: pointer; -} -.tabs .tab__title { - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; -} -.tabs .tab__title:not(.btn) { - padding-right: 0; - padding-left: 0; -} -.tabs .tab__title i + span { - margin-top: 0.46428571em; - display: inline-block; - margin-bottom: 0; -} -.bg--primary .tabs { - border-color: #fff; -} -.bg--primary .tabs li.active .tab__title { - color: #fff; -} -.bg--primary .tabs li.active .tab__title span { - color: #fff; -} -.bg--primary .tabs li:not(:last-child) { - border-color: #fff; -} -@media all and (min-width: 768px) { - .tabs.tabs--spaced { - margin-bottom: 3.71428571em; - } -} -.tabs-content { - position: relative; -} -.tabs-content > li:not(.active) .tab__content { - position: absolute; - left: 0; - top: 0; - display: block; - opacity: 0; - pointer-events: none; - animation: fadeOutRight .5s ease forwards; - -webkit-animation: fadeOutRight .5s ease forwards; -} -.tabs-content > li.active { - animation: fadeInLeft .5s ease forwards; - -webkit-animation: fadeInLeft .5s ease forwards; - backface-visibility: hidden; -} -@media all and (max-width: 767px) { - .tabs li { - display: block; - } - .tabs li:not(:last-child) { - border-bottom: 1px solid #ECECEC; - border-right: none; - } -} -.tabs--folder .tabs { - overflow: hidden; - margin-bottom: 0; - border-radius: 6px 6px 0 0; - border-bottom: none; -} -.tabs--folder .tabs > li { - border-top: 3px solid rgba(0, 0, 0, 0); -} -.tabs--folder .tabs > li.active { - border-top: 3px solid #dcbb55; -} -.tabs--folder .tabs-content { - overflow: hidden; - position: relative; - bottom: 8px; - padding: 1.85714286em; - border: 1px solid #ECECEC; - border-radius: 0 0 6px 6px; -} -.tabs--folder .tabs-content > li:not(.active) .tab__content { - top: 1.85714286em; - left: 1.85714286em; -} -.tabs--folder .tab__title .h5 { - margin: 0; - display: inline-block; -} -.tabs--folder .tab__title .label { - position: relative; - color: #fff !important; - top: -2px; - right: 0; - margin-left: 0.46428571em; - min-width: 0; -} -/*! -- Stack Switchable Sections -- */ -.switchable .switchable__text { - margin-top: 1.85714286em; -} -.switchable [class*='col-']:first-child .switchable__text { - margin-bottom: 2.78571429em; -} -.section--overlap .row { - position: relative; - margin-top: -13em; -} -@media all and (max-width: 990px) { - .switchable .switchable__text { - margin-top: 0; - } -} -@media all and (max-width: 767px) { - .switchable .switchable__text { - margin-top: 1.85714286em; - } - .switchable .imageblock__content[class*='col-'] { - float: none !important; - } - .switchable .row > div[class*='col-'] { - float: none !important; - } - .switchable .row > div[class*='col-']:last-child:not(:only-child) { - margin-top: 1.85714286em; - } -} -/*! -- Stack CTA -- */ -.cta .btn:first-child:not(:last-child) { - margin-bottom: 1.85714286em; -} -.cta.boxed:last-child { - margin-bottom: 0; -} -@media all and (min-width: 768px) { - .cta--horizontal h4, - .cta--horizontal .lead, - .cta--horizontal .btn { - margin: 0; - } - .cta--horizontal h4, - .cta--horizontal .lead { - position: relative; - top: 4px; - } - .bg--dark .cta-1 > div[class*='col-']:last-child, - .imagebg .cta-1 > div[class*='col-']:last-child { - border-left: none; - } -} -@media all and (min-width: 1200px) { - .cta-1.boxed--border { - padding: 0; - } - .cta-1 > div[class*='col-'] { - padding: 1.23809524em 15px; - } - .cta-1 > div[class*='col-']:last-child { - border-left: 1px solid #ECECEC; - } -} -@media all and (max-width: 990px) { - .cta-1 { - text-align: center; - } - .cta-1 > div[class*='col-'] { - padding-left: 0; - padding-right: 0; - } - .cta-1 > div[class*='col-']:not(:last-child) { - margin-bottom: 0.92857143em; - } - .cta-1 > div[class*='col-']:last-child { - margin-top: 1.85714286em; - } -} -@media all and (max-width: 767px) { - .cta .lead { - margin: 1.36842105263158em 0; - } -} -.cta-2 { - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; -} -.cta-2 h2 { - margin: 1.57575757575758em 0; -} -.cta-2.bg--primary:hover { - background: #dfc062; -} -.cta-2:hover { - background: #ffffff; -} -@media all and (min-width: 768px) { - .cta-3 .switchable__text { - margin-top: 5.57142857em; - } -} -/*! -- Stack Videos -- */ -.video-play-icon:before { - border-color: transparent transparent transparent #252525; - margin-top: -3px; -} -.modal-instance .video-play-icon + span { - position: relative; - display: inline-block; - margin-left: 0.92857143em; - white-space: nowrap; - bottom: 22px; -} -.modal-instance .video-play-icon.video-play-icon--xs + span { - bottom: 8px; - margin-left: 0.46428571em; -} -.video-cover { - background: #252525; -} -.video-cover.border--round { - overflow: hidden; -} -.video-cover.border--round iframe { - border-radius: 6px; -} -.video-cover:not(:last-child) { - margin-bottom: 1.85714286em; -} -.video-cover + span.h4 + span { - display: inline-block; - margin-left: 0.92857143em; -} -.video-cover .video-play-icon { - transition: 0.2s ease-out; - -webkit-transition: 0.2s ease-out; - -moz-transition: 0.2s ease-out; -} -.video-cover .video-play-icon:hover { - box-shadow: 0 23px 40px rgba(0, 0, 0, 0.2); - transform: translate3d(-50%, -52%, 0); - -webkit-transform: translate3d(-50%, -52%, 0); -} -.imagebg .video-cover .video-play-icon { - z-index: 10; -} -@media all and (min-width: 768px) { - h2 + .video-cover { - margin-top: 3.71428571em; - } -} -@media all and (min-width: 768px) { - .video-1 .video-play-icon { - margin-right: 1.85714286em; - } - .video-1 h2 { - display: inline-block; - position: relative; - bottom: 14px; - } - div[class*='col-sm-6'] .video-1 h2 { - bottom: 0; - display: block; - } - div[class*='col-sm-6'] .video-1 .video-play-icon { - margin-bottom: 0.46428571em; - } -} -.video-1 h2 { - margin: 0; -} -.imageblock__content .modal-instance { - position: absolute; - top: 50%; - left: 50%; - transform: translate3d(-50%, -50%, 0); - -webkit-transform: translate3d(-50%, -50%, 0); -} -/*! -- Stack Modals -- */ -.modal-container .modal-content:not(.height--natural) { - height: auto; - width: auto; -} -.modal-instance:not(.block) { - display: inline-block; -} -.modal-instance.block > .btn { - display: block; -} -@media all and (min-width: 768px) { - .modal-instance + span:last-child { - display: inline-block; - margin-left: 0.92857143em; - } -} -.modal-container .modal-content { - max-height: 95%; - transform: translateX(-50%) translateY(-50%); - -webkit-transform: translateX(-50%) translateY(-50%); -} -.modal-container .modal-content .feature:only-child { - margin-bottom: 0; -} -.modal-container .modal-content .feature:only-child .boxed { - margin-bottom: 0; -} -.modal-container .modal-content .imagebg:not(.image--light) .modal-close-cross:before { - color: #fff; -} -@media all and (max-width: 767px) { - .modal-container .modal-content > .modal-close-cross { - top: 3em; - background: #222; - width: 2em; - height: 2em; - text-align: center; - border-radius: 50%; - color: #fff; - } -} -.modal-content { - -ms-overflow-style: none; -} -.modal-content::-webkit-scrollbar { - display: none; -} -/*! -- Stack Notifications -- */ -.notification { - margin: 1.85714286em; - box-shadow: none; -} -.notification:not([class*='bg--']) { - background: none; -} -.notification > .boxed { - margin: 0; -} -.notification > .feature, -.notification .feature__body { - margin-bottom: 0; -} -.search-box { - width: 100%; - margin: 0; - padding: 1.85714286em; - box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); - box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.04); -} -.search-box.notification--reveal { - z-index: 9999; -} -.search-box .notification-close-cross { - top: 2.32142857em; - right: 1.85714286em; -} -.notification-close-cross.notification-close-cross--circle { - background: #222; - width: 2em; - height: 2em; - text-align: center; - border-radius: 50%; - color: #fff; -} -/*! -- Stack Loader -- */ -.loader { - border: 3px solid #dcbb55; - border-radius: 30px; - height: 30px; - left: 50%; - margin: -15px 0 0 -15px; - opacity: 0; - position: fixed; - z-index: 10; - top: 50%; - width: 30px; - animation: pulsate 0.7s ease-out infinite; -} -.loader.loader--fade { - opacity: 0; - animation: none; -} -@keyframes pulsate { - 0% { - transform: scale(0.1); - opacity: 0.0; - } - 50% { - opacity: 1; - } - 100% { - transform: scale(1.2); - opacity: 0; - } -} -/*! -- Stack Lightboxes -- */ -.lb-close { - position: relative; - top: 10px; -} -.lb-close:before { - content: '\00D7'; - color: #fff; - font-size: 2.5em; - font-weight: 400; -} -.lb-close:hover { - text-decoration: none; -} -.lb-prev:after, -.lb-next:after { - font-family: 'stack-interface'; - position: fixed; -} -.lb-prev:after { - content: '\e801'; - left: 1.85714286em; -} -.lb-next:after { - content: '\e802'; - right: 1.85714286em; -} -.lb-data { - overflow: hidden; - min-height: 30px; -} -a[data-lightbox] { - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; -} -a[data-lightbox]:hover { - opacity: .8; - cursor: zoom-in; -} -/*! -- Stack Covers -- */ -.cover .typed-headline { - margin-bottom: 3.71428571em; -} -.cover .typed-headline .type--bold { - font-weight: 400; -} -.cover .triptych { - margin-top: 3.71428571em; -} -.cover .btn + .modal-instance { - margin-top: 1.85714286em; -} -.cover h3 + form, -.cover .h3 + form { - margin-top: 2.78571429em; -} -.cover .lead + .boxed { - margin-top: 3.71428571em; -} -.cover.unpad--bottom { - overflow: hidden; -} -.cover .modal-instance.block:not(:first-child):not(:last-child) { - margin: 2.78571429em 0; -} -.cover .pos-bottom { - margin-bottom: 1.85714286em; -} -@media all and (min-width: 768px) { - .cover .row .row:last-child { - margin-top: 5.57142857em; - } -} -@media all and (max-width: 767px) { - .cover .pos-bottom.pos-absolute { - position: relative; - margin-top: 1.85714286em; - } -} -@media all and (max-width: 990px) { - .cover .mt--3 { - margin-top: 0; - } -} -@media all and (min-width: 768px) { - .cover .triptych { - margin-top: 7.42857143em; - } -} -.cover-fullscreen { - min-height: 100vh; -} -.cover-fullscreen.slider[data-paging="true"] .slides .flickity-slider > li { - height: 100vh; -} -.cover-fullscreen.slider[data-paging="true"] .pos-bottom { - bottom: 5.57142857em; - width: 100%; -} -.cover-fullscreen.slider[data-paging="true"] h4 { - margin: 0; -} -.cover-slider { - overflow: hidden; -} -.cover-slider .slider { - position: relative; - width: 100%; - pointer-events: none; -} -.cover-slider .slider:nth-child(1) { - transform: translateY(-30%); -} -.cover-slider .slider:nth-child(2) { - transform: translateY(-25%); -} -.cover-slider .slider:nth-child(3) { - transform: translateY(-20%); -} -.cover-slider .slider .slide { - opacity: .05; -} -.cover-slider .typed-headline { - margin: 0; -} -.cover-slider .typed-headline + .btn { - margin-top: 0.92857143em; -} -.cover-slider .slider-container { - transform: rotateZ(-30deg) translateY(-10%); - -webkit-transform: rotateZ(-30deg) translateY(-10%); - position: absolute; - width: 100%; - height: 100%; - top: 0; -} -@media all and (min-width: 768px) { - .cover-slider + .cta-4 { - position: absolute; - background: none; - color: #fff; - border-bottom: none !important; - width: 100%; - transform: translate3d(0, -100%, 0); - -webkit-transform: translate3d(0, -100%, 0); - } - .cover-slider + .cta-4 a { - color: #fff; - font-weight: 600; - } -} -.cover-features.space--lg { - padding-bottom: 3.71428571em; -} -.cover-features .row:nth-child(2) { - margin-top: 11.14285714em; -} -@media all and (max-width: 767px) { - .cover-features.space--lg { - padding-bottom: 1.85714286em; - } - .cover-features .row:nth-child(2) { - margin-top: 3.71428571em; - } -} -/*! -- Stack Processes -- */ -.process-1 { - padding: 3.71428571em 0; - position: relative; - overflow: hidden; -} -.process-1 .process__item { - width: 50%; -} -.process-1 .process__item:not(:last-child) { - margin-bottom: 1.85714286em; -} -.process-1:before { - content: ''; - position: absolute; - width: 2px; - height: 100%; - left: 50%; - top: 0; - background: #dcbb55; -} -.process__item { - position: relative; -} -.process__item:after { - content: ''; - width: 1.85714286em; - height: 1.85714286em; - background: #fff; - border: 2px solid #dcbb55; - border-radius: 50%; - position: absolute; - top: 0; - margin-left: 1px; -} -@media all and (min-width: 768px) { - .process-1 .process__item:nth-child(odd) { - text-align: right; - padding-right: 3.71428571em; - } - .process-1 .process__item:nth-child(odd):after { - right: -0.92857143em; - } - .process-1 .process__item:nth-child(even) { - margin-left: 50%; - padding-left: 3.71428571em; - } - .process-1 .process__item:nth-child(even):after { - left: -0.92857143em; - } -} -@media all and (max-width: 767px) { - .process-1:before, - .process-2:before { - left: 0.92857143em; - } - .process-1 .process__item, - .process-2 .process__item { - width: 100%; - padding-left: 3.71428571em; - } - .process-1 .process__item:after, - .process-2 .process__item:after { - left: 0; - } -} -.bg--dark .process-1:before, -.imagebg .process-1:before, -.bg--dark .process-2:before, -.imagebg .process-2:before { - background: #fff; -} -.bg--dark .process-1 .process__item:after, -.imagebg .process-1 .process__item:after, -.bg--dark .process-2 .process__item:after, -.imagebg .process-2 .process__item:after { - background: #fff; -} -.bg--dark .process-1 .process__item:after, -.bg--dark .process-2 .process__item:after { - border-color: #252525; -} -.process-2 { - position: relative; -} -.process-2 .process__item { - padding-top: 3.71428571em; -} -.process-2 .process__item:after { - display: inline-block; - text-align: center; -} -.process-2:before { - content: ''; - position: absolute; - width: 100%; - height: 2px; - top: 0.92857143em; - left: 0; - background: #dcbb55; -} -@media all and (max-width: 767px) { - .process-2:before { - height: 100%; - width: 2px; - left: 1.85714286em; - margin-left: 2px; - } - .process-2 .process__item:after { - top: 3.71428571em; - } -} -.process-3 { - list-style: none; - position: relative; -} -.process-3 li { - position: relative; - z-index: 1; - overflow: hidden; -} -.process-3 li .process__number { - float: left; - width: 15%; - width: 3.71428571em; - height: 3.71428571em; - border-radius: 50%; - border: 2px solid #dcbb55; - background: #fff; - text-align: center; -} -.process-3 li .process__number span { - font-size: 1.35714286em; - font-weight: bold; - color: #dcbb55; - position: relative; - top: 12px; -} -.process-3 li .process__body { - width: 80%; - float: right; -} -.process-3 li .process__body h4 { - margin-bottom: 0.342105263157895em; -} -.process-3 li:not(:last-child) { - margin-bottom: 3.71428571em; -} -.process-3:before { - content: ''; - position: absolute; - height: 100%; - width: 1px; - left: 1.85714286em; - top: 0; - border-left: 1px dashed #ddd; -} -.bg--dark .process-3 li .process__number { - background: #252525; -} -.bg--dark .process-3:before { - border-color: #aaa; -} -.process-stepper > li { - transition: all .3s ease; - display: inline-block; - float: left; - text-align: center; - position: relative; -} -.process-stepper > li:before { - transition: all .3s ease; - content: ''; - width: 0.92857143em; - height: 0.92857143em; - background: #ccc; - border-radius: 50%; - display: block; - margin: 0 auto; - margin-bottom: 0.92857143em; -} -.process-stepper > li:after { - transition: all .3s ease; - content: ''; - width: 100%; - height: 2px; - position: absolute; - background: #ccc; - top: 5px; - left: 0; -} -.process-stepper > li:first-child:after, -.process-stepper > li:last-child:after { - width: 50%; -} -.process-stepper > li:first-child:after { - left: 50%; -} -.process-stepper > li.active:before, -.process-stepper > li.active:after { - background: #dcbb55; -} -.process-stepper > li > span { - cursor: default; -} -.process-stepper[data-process-steps="6"] > li { - width: 16.666666666666667%; -} -.process-stepper[data-process-steps="5"] > li { - width: 20%; -} -.process-stepper[data-process-steps="4"] > li { - width: 25%; -} -.process-stepper[data-process-steps="3"] > li { - width: 33.33333333%; -} -.process-stepper[data-process-steps="2"] > li { - width: 50%; -} -.bg--dark .process-stepper li:not(.active):before, -.bg--dark .process-stepper li:not(.active):after { - background: #585858; -} -/*! -- Stack Typed Text -- */ -span + .typed-text.h2 { - margin-left: 4px; -} -span + .typed-text.h1 { - margin-left: 6px; -} -@media all and (max-width: 767px) { - .typed-text { - display: block; - } - .typed-headline { - margin-bottom: 1.85714286em; - } - .typed-headline h1, - .typed-headline .h1 { - margin-bottom: 0; - } -} -/*! -- Stack Forms -- */ -.bg--dark input, -.imagebg:not(.image--light) input, -.bg--dark textarea, -.imagebg:not(.image--light) textarea, -.bg--dark select, -.imagebg:not(.image--light) select, -.bg--dark .input-select:after, -.imagebg:not(.image--light) .input-select:after { - color: #666666; -} -.bg--dark label, -.imagebg:not(.image--light) label { - color: #fff; -} -.bg--dark form.attempted-submit input.field-error { - background: #D84D4D; - color: #fff; -} -form { - position: relative; -} -form > div[class*='col-']:not(:last-child), -form > .row > div[class*='col-']:not(:last-child) { - margin-bottom: 0.92857143em; -} -form .boxed:last-child { - margin: 0; -} -form.form--clearfix { - margin-left: -15px; -} -@media all and (min-width: 768px) { - div[class*='col-'] > form div[class*='col-']:last-child:nth-child(2) { - padding-right: 0; - } - div[class*='col-'] > form div[class*='col-']:first-child:nth-last-child(2) { - padding-left: 0; - } - form.form--horizontal > div[class*='col-'] { - margin: 0; - } -} -@media all and (max-width: 767px) { - .row form > .row { - margin-left: 0; - margin-right: 0; - } -} -h2 + form, -.h2 + form { - margin-top: 2.78571429em; -} -h3 + form, -.h3 + form, -.lead + form { - margin-top: 2.78571429em; -} -.cover .lead + form { - margin-top: 3.71428571em; -} -form + span.type--fine-print { - margin-top: 1.08333333333334em; - display: inline-block; -} -.form--inline > span.h4 { - color: #666666; -} -.form--inline input, -.form--inline [class*='input-'] { - display: inline-block; - max-width: 200px; -} -.form--inline > span:not(:last-child), -.form--inline input:not(:last-child), -.form--inline [class*='input-']:not(:last-child) { - margin-right: 0.92857143em; -} -.form--inline button { - max-width: 200px; -} -.bg--dark .form--inline > span.h4, -.imagebg:not(.image--light) .form--inline > span.h4 { - color: #fff; -} -button, -input[type="submit"] { - height: 3.25000000000001em; -} -button.btn, -input[type="submit"].btn { - font-size: 0.85714286em; - font-weight: 700; - padding-left: 0; - padding-right: 0; -} -button.btn.btn--primary, -input[type="submit"].btn.btn--primary { - color: #fff; -} -button.btn.type--uppercase, -input[type="submit"].btn.type--uppercase { - letter-spacing: .5px; - margin-right: -0.5px; -} -button.checkmark.checkmark--cross, -input[type="submit"].checkmark.checkmark--cross { - width: 1.85714286em; - height: 1.85714286em; - border: none; - background: #e23636; -} -button.checkmark.checkmark--cross:before, -input[type="submit"].checkmark.checkmark--cross:before { - content: '\00d7'; - font-size: 18px; - top: -1px; -} -button[type="submit"].btn--loading:after, -input[type="submit"][type="submit"].btn--loading:after { - background: #dcbb55; -} -.bg--primary button.btn { - border-color: rgba(255, 255, 255, 0.5); - color: #fff; -} -.bg--primary button.btn:hover { - border-color: #fff; -} -.bg--primary button.btn.btn--primary { - color: #dcbb55; - border-color: #dcbb55; -} -.bg--primary button.btn.btn--primary-1 { - border-color: #3d4950; -} -input, -select { - height: 2.78571429em; -} -input.field-error { - border-color: #EBA8A8; -} -input[type] + input[type], -input[type] + .input-checkbox, -input[type] + button, -input[type] + .input-select { - margin-top: 0.92857143em; -} -input, -[class*='input-'] label, -select, -textarea { - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; -} -input:not([class*='col-']), -select:not([class*='col-']), -.input-select:not([class*='col-']), -textarea:not([class*='col-']), -button[type="submit"]:not([class*='col-']) { - width: 100%; -} -input[type], -select, -textarea { - padding-left: 0.92857143em; -} -input[type]:focus, -select:focus, -textarea:focus { - border-color: #e5cc7f; -} -input[type="image"] { - border: none; - padding: none; - width: auto; -} -label { - font-size: .85714286em; -} -.bg--primary label, -.bg--primary-1 label { - color: #fff; -} -.input-icon i { - top: 8px; - left: 8px; -} -.input-icon input { - padding-left: 2.78571429em; -} -.text-center .input-checkbox label, -.text-center .input-radio label { - margin: 0 auto; -} -.input-checkbox label, -.input-radio label { - font-size: 1em; -} -.input-checkbox { - margin-top: 0.46428571em; -} -.input-checkbox.field-error label { - border-color: #EBA8A8; -} -.input-checkbox label { - background: none; - border: 1px solid #d3d3d3; - text-align: center; - position: relative; -} -.input-checkbox label:not(:last-child) { - margin-right: 0.46428571em; -} -.input-checkbox label:hover { - border-color: #dcbb55; -} -.input-checkbox label:before { - content: ''; - left: 0; - border-radius: 6px; - position: absolute; - width: 100%; - height: 100%; - border: 1px solid #dcbb55; - opacity: 0; - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; -} -.input-checkbox input:checked + label { - border-color: #dcbb55; - background: #dcbb55; -} -.input-checkbox input:checked + label:after { - content: 'L'; - transform: rotateY(180deg) rotateZ(-45deg); - color: #fff; - position: absolute; - width: 100%; - left: 0; - top: -2px; - font-weight: 700; -} -.input-checkbox input:checked + label:before { - animation: pulse .45s ease forwards; - -webkit-animation: pulse .45s ease forwards; -} -.input-checkbox + span { - display: inline-block; - position: relative; - bottom: 10px; - margin-left: 0.92857143em; - font-size: 0.85714286em; - white-space: nowrap; -} -.input-checkbox + button[type] { - margin-top: 0.92857143em; -} -.input-checkbox + span + button[type] { - margin-top: 0.92857143em; -} -.bg--dark .input-checkbox:not(.checked) label { - border-color: #a5a5a5; -} -.bg--dark .input-checkbox + span { - opacity: .75; -} -.input-checkbox.input-checkbox--switch label { - width: 3.71428571em; - border-radius: 60px; -} -.input-checkbox.input-checkbox--switch label:before { - width: 20px; - height: 20px; - border-radius: 50%; - border-color: #d3d3d3; - opacity: 1; - left: 2px; - top: 2px; -} -.input-checkbox.input-checkbox--switch label:hover:before { - border-color: #dcbb55; -} -.input-checkbox.input-checkbox--switch input:checked + label { - background: none; -} -.input-checkbox.input-checkbox--switch input:checked + label:before { - animation: none !important; - background: #dcbb55; - border-color: #dcbb55; - transform: translateX(1.85714286em); -} -.input-checkbox.input-checkbox--switch input:checked + label:after { - display: none; -} -.input-radio.field-error label { - border-color: #EBA8A8; -} -.input-radio .input__label { - font-size: .85714286em; - display: inline-block; -} -.input-radio .input__label + label { - margin-top: 0.92857143em; -} -.input-radio label { - position: relative; - background: none; - border: 1px solid #d3d3d3; -} -.input-radio label:hover { - border-color: #dcbb55; -} -.input-radio label:before { - content: ''; - position: absolute; - width: 100%; - height: 100%; - border-radius: 50%; - border: 1px solid #dcbb55; - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; - opacity: 0; - left: 0; -} -.input-radio input:checked + label { - border-color: #dcbb55; - background-color: #dcbb55; -} -.input-radio input:checked + label:after { - content: ''; - position: absolute; - width: 10px; - height: 10px; - left: 7px; - top: 7px; - background-color: #fff; - border-radius: 50%; -} -.input-radio input:checked + label:before { - animation: pulse .4s ease forwards; -} -.input-radio--innerlabel label { - transition: all .3s ease; - height: 2.78571429em; - line-height: 2.50714286em; - padding: 0 0.92857143em; - border: 1px solid #ececec; - border-radius: 6px; - cursor: pointer; - width: 100%; - text-align: center; -} -.input-radio--innerlabel:hover { - border-color: #dcbb55; -} -.input-radio--innerlabel input:checked + label { - border-color: #dcbb55; - background: #dcbb55; - color: #fff; -} -.input-radio--innerlabel input:checked + label:after { - display: none; -} -.input-radio--innerlabel input:checked + label:before { - animation: none; -} -@media all and (max-width: 1024px) { - .input-radio input:checked + label:after { - top: 6px; - left: 6px; - } -} -.bg--primary .input-radio--innerlabel { - border-color: #e5cc7f; -} -.bg--primary .input-radio--innerlabel:hover { - border-color: #fff; -} -.bg--primary .input-radio--innerlabel.checked { - background: #fff; - border-color: #fff; -} -.bg--primary .input-radio--innerlabel.checked label { - color: #dcbb55; -} -.bg--primary-1 .input-radio--innerlabel { - border-color: #53636d; -} -.bg--primary-1 .input-radio--innerlabel:hover { - border-color: #fff; -} -.bg--primary-1 .input-radio--innerlabel.checked { - background: #fff; - border-color: #fff; -} -.bg--primary-1 .input-radio--innerlabel.checked label { - color: #3d4950; -} -.input-select { - position: relative; -} -.input-select select { - -moz-appearance: none; - -webkit-appearance: none; -} -.input-select select::-ms-expand { - display: none; -} -.input-select:not(:last-child) { - margin-bottom: 0.92857143em; -} -.input-select:after { - position: absolute; - right: 0; - height: 100%; - top: 0; - font-size: 30px; - content: '\2263'; - pointer-events: none; - padding: 0 13px; - border-left: 1px solid #ececec; - line-height: 31px; -} -.input-select:focus:after { - border-color: #dcbb55; -} -.input-select select:focus { - border-color: #dcbb55; -} -.input-number { - position: relative; -} -.input-number > input[type="number"] { - padding-left: .46428571em; - -moz-appearance: textfield; - width: 100%; - text-align: center; -} -.input-number > input[type="number"]::-webkit-inner-spin-button { - display: none; -} -.input-number .input-number__controls { - position: absolute; - height: 100%; - width: 100%; - right: 0; - top: 0; - padding: 0 0.92857143em; -} -.input-number .input-number__controls > span { - position: absolute; - display: block; - width: 10%; - min-width: 3.71428571em; - height: 100%; - cursor: pointer; - -webkit-user-select: none; - user-select: none; - text-align: center; - padding-top: 6px; - transition: all .3s ease; -} -.input-number .input-number__controls > span:hover { - color: #dcbb55; -} -.input-number .input-number__controls .input-number__increase { - right: 0; - border-left: 1px solid #ececec; -} -.input-number .input-number__controls .input-number__decrease { - left: 0; - border-right: 1px solid #ececec; -} -/*! -- Stack Subscribe Forms -- */ -.subscribe-form-1 h3 { - margin-bottom: 0.52em; -} -.subscribe-form-1.boxed form { - margin: 1.85714286em; -} -@media all and (min-width: 991px) { - .subscribe-form-2 p { - top: 2px; - position: relative; - } - .subscribe-form-2 input { - margin: 0; - } - .subscribe-form-2 form [class*='col-'] { - margin: 0 !important; - } -} -@media all and (max-width: 990px) { - .subscribe-form-2 { - text-align: center; - } - .subscribe-form-2 form { - margin-top: 1.85714286em; - } -} -/*! -- Stack Elaborate Forms -- */ -@media all and (max-width: 767px) { - .elaborate-form-1 .pos-vertical-center { - padding-left: 15px; - padding-right: 15px; - } - .elaborate-form-1 form .col-xs-6:nth-child(even) { - padding-left: 15px; - } - .elaborate-form-1 form .col-xs-6:nth-child(odd) { - padding-right: 15px; - } - .elaborate-form-1 .row form > .row { - margin-left: -15px; - margin-right: -15px; - } -} -/* Stack Boxed Forms */ -.boxed-form h4 { - margin-bottom: 0.684210526315789em; -} -.boxed-form:last-child { - margin-bottom: 0; -} -/* Stack Datepicker Form */ -.datepicker { - cursor: pointer; -} -.picker { - transition: all .3s ease; - z-index: 10; - max-width: 100%; - -webkit-transition: all .3s ease; - margin-top: 0.46428571em; - position: absolute; - background: #ffffff; - border: 1px solid #ececec; - border-radius: 6px; - padding: 0.92857143em; - box-shadow: 0 23px 40px rgba(0, 0, 0, 0.2); -} -.picker .picker__header { - text-align: center; - margin-bottom: 0.92857143em; -} -.picker .picker__header > div { - font-weight: 600; - display: inline-block; - color: #252525; -} -.picker .picker__header > div:not(:last-child) { - margin-right: 0.46428571em; -} -.picker .picker__header .picker__nav--prev, -.picker .picker__header .picker__nav--next { - height: 10px; - width: 10px; - cursor: pointer; -} -.picker .picker__header .picker__nav--prev:after, -.picker .picker__header .picker__nav--next:after { - font-family: 'stack-interface'; -} -.picker .picker__header .picker__nav--next { - float: right; -} -.picker .picker__header .picker__nav--next:after { - content: '\e80c'; -} -.picker .picker__header .picker__nav--prev { - float: left; -} -.picker .picker__header .picker__nav--prev:after { - content: '\e80b'; -} -.picker .picker__day { - transition: all .3s ease; - cursor: pointer; -} -.picker .picker__day.picker__day--highlighted { - color: #dcbb55; - font-weight: 600; -} -.picker .picker__day:hover { - color: #dcbb55; -} -.picker:not(.picker--opened) { - opacity: 0; - visibility: hidden; - pointer-events: none; - transform: scale(0); -} -.picker .picker__holder { - outline: none !important; - border: none !important; -} -.picker table td { - padding: 0.46428571em; - padding-top: 0; -} -.picker .picker__footer { - text-align: center; -} -.picker .picker__button--today { - float: left; -} -.picker .picker__button--close { - float: right; -} -.picker button { - transition: all .3s ease; - height: auto; - border: none; - display: inline-block; -} -.picker button:not(:hover) { - opacity: .5; -} -/*! -- Stack Sliders -- */ -.flickity-prev-next-button { - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; - border-radius: 0; - background: #252525; - width: 2.78571429em; - height: 5.57142857em; -} -.flickity-prev-next-button:not(:hover) { - opacity: .5; -} -.flickity-prev-next-button:hover { - background: #252525; -} -.flickity-prev-next-button.previous { - left: 0; -} -.flickity-prev-next-button.next { - right: 0; -} -.flickity-prev-next-button:before { - color: #fff; -} -.slider.slider--inline-arrows .flickity-prev-next-button { - background: none; -} -.slider.slider--inline-arrows .flickity-prev-next-button:before { - font-size: 1.78571429em; - color: #252525; - content: '\e802'; -} -.slider.slider--inline-arrows .flickity-prev-next-button.previous:before { - content: '\e801'; -} -.slider.slider--columns .previous { - left: 15px; -} -.slider.slider--columns .next { - right: 15px; -} -.slider.border--round .slides li { - border-radius: 6px; - overflow: hidden; -} -.slider.boxed--border .slides li { - border: 1px solid #ececec; -} -.slider .slides li .feature:not(.feature-9) { - margin-bottom: 0; -} -.slide .boxed:last-child { - margin-bottom: 0; -} -.slide:not([class*='col-']) > img:only-child { - width: 100%; -} -.bg--dark .slider.slider--inline-arrows .flickity-prev-next-button:before, -.bg--primary .slider.slider--inline-arrows .flickity-prev-next-button:before, -.imagebg:not(.image--light) .slider.slider--inline-arrows .flickity-prev-next-button:before { - color: #fff; -} -@media all and (max-width: 990px) { - .flickity-prev-next-button { - display: none; - } -} -@media all and (min-width: 768px) { - h2 + .slider, - .h2 + .slider { - margin-top: 3.71428571em; - } -} -.slider.slider--ken-burns:not(.parallax) .slide.is-selected > .background-image-holder, -.slider.slider--ken-burns:not(.parallax) .slide.is-selected > img:only-child { - animation: kenBurns 15s ease alternate infinite; - -webkit-animation: kenBurns 15s ease alternate infinite; -} -.radial { - margin-left: auto; - margin-right: auto; -} -.radial .radial__label { - transition: opacity .3s ease; - -webkit-transition: opacity .3s ease; -} -.radial:not(.radial--active) .radial__label { - opacity: 0; -} -.radial:not(:last-child) { - margin-bottom: 1.85714286em; -} -@media all and (max-width: 767px) { - .radial { - margin-bottom: 1.85714286em; - } -} -/*! -- Stack Pricing -- */ -.pricing { - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; - position: relative; -} -.pricing h3:first-child { - margin: 0; -} -.pricing .label { - top: 2.78571429em; - right: 2.78571429em; -} -.pricing .h2 { - margin-bottom: 0.3939393939394em; -} -.pricing ul li:not(:last-child) { - margin-bottom: 0.46428571em; -} -.pricing ul li .checkmark + span { - position: relative; - bottom: 3px; -} -.pricing:hover { - box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); - box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.04); -} -.pricing .h1 { - font-size: 4.21428571428571em; - line-height: 1.10169491525424em; - margin-bottom: 0.22033898305085em; -} -.pricing .h1 .pricing__dollar { - font-size: 0.51020408163265em; - position: relative; - bottom: 20px; -} -.pricing .feature-6 p { - min-height: 5.57142857em; -} -.pricing-1 .btn:last-child { - position: absolute; - width: 100%; - bottom: 0; - left: 0; - border-radius: 0 0 6px 6px; - padding: 0.92857143em 0; - margin: 0; -} -.pricing-1 .btn:last-child:hover { - transform: none !important; -} -.pricing-1 ul { - margin-bottom: 5.57142857em; -} -.pricing-1 p { - min-height: 5.57142857em; -} -.pricing-1 p:first-of-type { - margin-top: 1.85714286em; -} -.pricing-1 p:last-of-type { - margin-bottom: 5.57142857em; -} -.pricing-1 img + p:first-of-type { - margin-top: 0; -} -@media all and (min-width: 991px) { - .pricing-2 ul:first-child { - margin-top: 4.64285714em; - } -} -@media all and (max-width: 990px) { - .pricing-2 { - text-align: center; - } - .pricing-2 ul:first-child { - margin-top: 1.85714286em; - } -} -.pricing-3 { - border: 1px solid #ececec; - border-radius: 6px; -} -.pricing-3 .pricing__head { - margin: 0; - border-bottom: 1px solid #ececec; -} -.pricing-3 .pricing__head + .btn { - display: block; - border-radius: 0; - padding: 0.92857143em 0; -} -.pricing-3 ul { - border-radius: 0 0 6px 6px; -} -.pricing-3 ul li { - padding: 0.92857143em 0; -} -.pricing-3 ul li:not(:last-child) { - border-bottom: 1px solid #ececec; - margin: 0; -} -.pricing-3 ul:last-child { - margin: 0; -} -@media all and (max-width: 990px) { - .pricing-3 { - margin-bottom: 1.85714286em; - } -} -@media all and (min-width: 768px) { - .pricing-section-1 .pricing:not(.boxed--emphasis) { - left: 0.92857143em; - } - .pricing-section-1 .pricing.boxed--emphasis { - right: 0.92857143em; - } -} -@media all and (min-width: 990px) { - .pricing-section-2 div[class*='col-'] { - padding: 0; - } - .pricing-section-2 div[class*='col-']:not(:first-child):not(:last-child) .pricing__head { - border-radius: 0; - } - .pricing-section-2 div[class*='col-']:first-child .pricing { - border-radius: 6px 0 0 6px; - } - .pricing-section-2 div[class*='col-']:first-child .pricing .pricing__head { - border-radius: 6px 0 0 0; - } - .pricing-section-2 div[class*='col-']:last-child .pricing { - border-radius: 0 6px 6px 6px; - border-right: 1px solid #ececec; - } - .pricing-section-2 div[class*='col-']:last-child .pricing .pricing__head { - border-radius: 0 6px 0 0; - } - .pricing-section-2 .pricing { - border: 1px solid #ececec; - border-radius: 0 0 0 6px; - border-right: none; - } - .pricing-section-2 .pricing:hover { - box-shadow: none; - } - .pricing-section-2 .pricing ul { - margin: 0; - } -} -.pricing-section-2.bg--dark .pricing, -.pricing-section-2.bg--dark .pricing .pricing__head, -.pricing-section-2.bg--dark .pricing ul li:not(:last-child), -.pricing-section-2.bg--dark div[class*='col-']:last-child .pricing { - border-color: #3f3f3f; -} -.pricing-section-2.imagebg .pricing, -.pricing-section-2.imagebg .pricing .pricing__head, -.pricing-section-2.imagebg .pricing ul li:not(:last-child), -.pricing-section-2.imagebg div[class*='col-']:last-child .pricing { - border-color: rgba(255, 255, 255, 0.2); -} -/*! -- Stack Progress Horizontal -- */ -.progress-horizontal:not(:last-child) { - margin-bottom: 1.85714286em; -} -.progress-horizontal.progress-horizontal--lg .progress-horizontal__bar { - height: 1.85714286em; -} -.progress-horizontal.progress-horizontal--sm .progress-horizontal__bar { - height: 0.46428571em; -} -.progress-horizontal__bar { - height: 0.92857143em; - border-radius: 100px; - background: #fafafa; - border: 1px solid rgba(0, 0, 0, 0.1); -} -.progress-horizontal__bar:not(:last-child) { - margin-bottom: 0.46428571em; -} -.progress-horizontal__progress { - background: #dcbb55; - border-radius: 100px; -} -/*! -- Stack Maps -- */ -iframe[src*='google.com/maps'] { - border: none; -} -.map-container { - min-height: 400px; -} -.map-container:not(:last-child) { - margin-bottom: 1.85714286em; -} -.map-container.border--round { - overflow: hidden; - z-index: 2; -} -.map-container.border--round .gm-style { - border-radius: 6px; -} -.map-container iframe { - left: 0; -} -@media all and (min-width: 768px) { - .background-image-holder .map-container, - .imageblock__content .map-container { - position: absolute; - width: 100%; - height: 100%; - top: 0; - left: 0; - } - .map-container + div[class*='col-'] { - margin-top: 3.71428571em; - } -} -/*! -- Stack Testimonials -- */ -.testimonial { - position: relative; - overflow: hidden; -} -.testimonial h5:nth-last-child(2) { - margin: 0; -} -.testimonial .testimonial__image { - margin-bottom: 1.85714286em; -} -@media all and (min-width: 1025px) { - .testimonial-1 .switchable__text { - margin-top: 7.42857143em; - } -} -.testimonial-2 { - float: none; - width: 100%; -} -.testimonial-2 .testimonial__image img { - max-height: 3.71428571em; - float: left; - margin-right: 1.85714286em; -} -.testimonial-2 .boxed { - width: 100%; -} -@media all and (max-width: 990px) { - .testimonial-2 p { - min-height: 7.42857143em; - } -} -@media all and (max-width: 767px) { - .testimonial-2 p { - min-height: 0; - } -} -@media all and (min-width: 768px) { - .lead + .testimonial-2 { - margin-top: 3.71428571em; - } -} -@media all and (min-width: 768px) { - .testimonials-1 .list-inline { - position: relative; - top: 0.92857143em; - } - .testimonials-1 .list-inline li:not(:last-child) { - margin-right: 3.71428571em; - } -} -@media all and (max-width: 767px) { - .testimonials-1 .list-inline { - margin-top: 1.85714286em; - } - .testimonials-1 .list-inline li { - margin-bottom: 1.85714286em; - } -} -/*! -- Stack Masonry -- */ -.masonry__item:not(:empty) { - margin-bottom: 30px; - transform-style: preserve-3d; -} -.masonry__item:not(:empty) article { - margin: 0; -} -.masonry__item:not(:empty) article .boxed { - margin: 0; -} -.masonry__item:empty { - height: 0; - min-height: 0; -} -.masonry hr + .masonry__container, -.masonry hr + .row { - margin-top: 4.64285714em; -} -.masonry-filter-holder:not(.masonry-filters--horizontal) { - display: inline-block; - cursor: pointer; - height: 3.71428571em; - position: relative; - z-index: 9; - min-width: 143px; -} -.masonry-filter-holder:not(.masonry-filters--horizontal) .masonry__filters { - cursor: pointer; - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; - z-index: 2; - display: inline-block; - position: absolute; - left: 0; - text-align: left; - padding: 0.92857143em 1.85714286em; - border: 1px solid #ececec; - background: #ffffff; - border-radius: 6px; -} -.masonry-filter-holder:not(.masonry-filters--horizontal) .masonry__filters ul { - margin: 0; - cursor: pointer; -} -.masonry-filter-holder:not(.masonry-filters--horizontal) .masonry__filters ul li { - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; - display: block; - color: #666666; - white-space: nowrap; -} -.masonry-filter-holder:not(.masonry-filters--horizontal) .masonry__filters ul li:not(:last-child) { - margin-bottom: 0.92857143em; -} -.masonry-filter-holder:not(.masonry-filters--horizontal) .masonry__filters ul li.active { - color: #dcbb55; - cursor: pointer; -} -.masonry-filter-holder:not(.masonry-filters--horizontal) .masonry__filters ul li.active:after { - content: '\25bc'; - font-size: 8px; - margin-left: 6px; - position: relative; - bottom: 2px; - display: inline-block; - transform: scaleX(1.4) scaleY(0.9); - transition: 0.2s linear; - -webkit-transition: 0.2s linear; - -moz-transition: 0.2s linear; -} -.masonry-filter-holder:not(.masonry-filters--horizontal) .masonry__filters ul li:hover { - color: #dcbb55; -} -.masonry-filter-holder:not(.masonry-filters--horizontal) .masonry__filters ul:hover li.active:after { - opacity: 0; -} -.masonry-filter-holder:not(.masonry-filters--horizontal):not(:hover) .masonry__filters ul { - max-height: 1.85714286em; - overflow: hidden; -} -.masonry-filter-holder:not(.masonry-filters--horizontal):not(:hover) .masonry__filters ul li:not(.active) { - display: none; -} -.masonry-filter-holder:not(.masonry-filters--horizontal):hover .masonry__filters { - box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); - box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.04); -} -.masonry-filter-holder:not(.masonry-filters--horizontal):hover .masonry__filters ul li.active { - cursor: default; -} -.masonry-filters--horizontal { - display: inline-block; -} -.masonry-filters--horizontal .masonry__filters { - display: inline-block; - position: relative; - bottom: 20px; - margin-left: 0.92857143em; -} -.masonry-filters--horizontal .masonry__filters ul li { - transition: all .3s ease; - cursor: pointer; - display: inline-block; -} -.masonry-filters--horizontal .masonry__filters ul li:not(:last-child) { - margin-right: 1.85714286em; -} -.masonry-filters--horizontal .masonry__filters ul li.active { - color: #dcbb55; -} -.masonry-filters--horizontal .masonry__filters ul li:not(.active) { - opacity: .5; -} -.masonry-filters--horizontal .masonry__filters ul li:hover { - opacity: 1; -} -.masonry-filter-holder + .masonry__container { - margin-top: 3.71428571em; -} -.bg--dark .masonry-filter-holder .masonry__filters { - background: #2a2a2a; - border-color: #3f3f3f; -} -.bg--dark .masonry-filter-holder .masonry__filters li { - color: #fff; -} -.masonry.masonry-demos .masonry__item:not(:empty) { - margin-bottom: 3.71428571em; -} -.masonry.masonry-demos .masonry__item h5 { - margin-bottom: 0; -} -.masonry.masonry-demos .masonry__item:not([style]) .hover-item { - min-height: 450px; - background: #323232; - border: 1px solid #3f3f3f; -} -.masonry.masonry-demos .hover-item { - transition: 0.35s ease-out; - -webkit-transition: 0.35s ease-out; - -moz-transition: 0.35s ease-out; - border-radius: 6px; - overflow: hidden; -} -.masonry.masonry-demos .hover-item:hover { - transform: translateY(-10px); -} -.masonry.masonry-demos .masonry__container { - margin-top: 3.71428571em; -} -/*! -- Stack Blog -- */ -article .article__title { - margin-bottom: 3.71428571em; -} -article .article__title > a { - display: block; -} -article .article__title > a:hover { - text-decoration: none; - opacity: .75; -} -article .article__title h2 { - margin-bottom: 0.3939393939394em; -} -article .article__title h1 { - margin-bottom: 0.29545454545455em; -} -article .article__body img, -article .article__body iframe, -article .article__body .video-cover { - border-radius: 6px; -} -article .article__body img:not(:last-child), -article .article__body iframe:not(:last-child), -article .article__body .video-cover:not(:last-child) { - margin-bottom: 1.85714286em; -} -article .article__body > a:first-child > img { - margin-bottom: 1.85714286em; -} -article .article__body p, -article .article__body ul { - font-size: 1.35714286em; - line-height: 1.68421053em; - font-weight: 400; - color: #808080; -} -article .article__body p:not(:last-child), -article .article__body ul:not(:last-child) { - margin-bottom: 1.36842105263158em; -} -article .article__body p + .btn:last-child, -article .article__body ul + .btn:last-child { - margin-top: 0.92857143em; -} -article .article__body p + h5, -article .article__body ul + h5 { - margin-top: 2.78571429em; -} -article .article__body blockquote { - text-align: center; -} -article .article__body blockquote:not(:last-child) { - margin-top: 2.08em; - margin-bottom: 2.08em; -} -article .article__share { - margin-top: 5.57142857em; -} -article.imagebg { - padding: 1.85714286em; - overflow: hidden; -} -article.imagebg:before { - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; -} -article.imagebg:hover:before { - opacity: .6; -} -article.imagebg .article__title { - margin: 0; - position: absolute; - bottom: 0; - z-index: 2; - max-width: 90%; -} -article.imagebg .article__title span { - font-size: 0.85714286em; -} -article.imagebg .label { - z-index: 2; - top: 1.85714286em; - right: 1.85714286em; -} -article.feature-1 h5 { - min-height: 3.71428571em; -} -article.feature-1 a img { - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; -} -article.feature-1 a:hover img { - opacity: .85; -} -figure[class*='col-'] { - padding: 0 !important; -} -figure.pull-right { - margin-left: 2.78571429em; -} -figure.pull-left { - margin-right: 2.78571429em; -} -figure img:not(:last-child) { - margin-bottom: 0.46428571em !important; -} -figure figcaption { - font-size: 0.85714286em; - font-style: italic; -} -section.unpad > article .imagebg + div { - padding: 5.57142857em 0; -} -.article__author { - padding-bottom: 1.85714286em; -} -.article__author img { - max-height: 3.71428571em; - margin-bottom: 0.46428571em; -} -.slides--gapless article.imagebg { - height: 27.85714286em; -} -.masonry-blog-magazine article, -.masonry-blog-magazine .masonry__promo { - height: 338px; -} -.masonry-blog-magazine .height--tall { - height: calc(706px); -} -@media all and (min-width: 991px) { - .masonry__promo.boxed--lg { - padding: 7.42857143em; - } -} -@media all and (max-width: 990px) { - .masonry-blog-magazine .height--tall { - height: 338px; - } - .masonry__promo .pos-vertical-center { - top: 0; - transform: none; - } -} -@media all and (max-width: 1200px) { - .masonry__promo.boxed--lg { - padding: 3.71428571em; - } -} -.pagination { - text-align: center; - margin-top: 1.85714286em; -} -.pagination:after { - content: ""; - display: table; - clear: both; -} -.pagination a { - font-weight: normal; -} -.pagination div[class*='col-'] { - padding: 0; -} -.pagination ol { - margin-bottom: 0; - display: inline-block; -} -.pagination ol li { - display: inline-block; - margin: 0; - font-weight: 700; - line-height: 23px; - width: 1.85714286em; - height: 1.85714286em; - border-radius: 50%; - border: 1px solid #ececec; -} -.pagination ol li > a { - font-weight: 700; -} -.pagination ol li:not(:last-child) { - margin-right: 0.46428571em; -} -.pagination ol li.pagination__current { - cursor: default; - background: #ececec; - color: #aaa; -} -.pagination__prev, -.pagination__next { - display: inline-block; -} -.pagination__next { - float: right; -} -.pagination__prev { - float: left; -} -.blog-article-wide:not(:last-child) { - border-bottom: 1px solid #ececec; - margin-bottom: 3.71428571em; -} -.masonry-blog-list hr + .masonry__container { - margin-top: 0; -} -.masonry-blog-list article { - border-bottom: 1px solid #ececec; - padding-top: 2.78571429em; - margin-bottom: 5.57142857em; -} -.masonry-blog-list article .article__body { - padding-bottom: 5.57142857em; -} -.masonry-blog-magazine .masonry__item a { - font-weight: normal; -} -.masonry-blog-magazine .masonry__item a:hover { - text-decoration: none; -} -.masonry-filter-container { - margin-bottom: 1.85714286em; -} -.masonry-filter-container > span { - position: relative; - bottom: 20px; -} -.masonry-filter-container > span + .masonry-filter-holder { - margin-left: 0.92857143em; -} -.comments__list li { - padding: 1.85714286em; - border: 1px solid #ececec; - border-bottom: none; -} -.comments__list li:last-child { - border-bottom: 1px solid #ececec; -} -.comments__list li:nth-child(odd) { - background: #fcfcfc; -} -.comments__list li:nth-child(even) { - background: #f9f9f9; -} -.comments__list li:first-child { - border-radius: 6px 6px 0 0; -} -.comments__list li:last-child { - border-radius: 0 0 6px 6px; -} -.bg--secondary .comments__list li:nth-child(even) { - background: #fff; -} -@media all and (min-width: 768px) { - .comments__list li { - padding: 2.78571429em; - } -} -.comment { - overflow: hidden; -} -.comment:not(:last-child) { - border-bottom: 1px solid #ececec; - padding-bottom: 1.85714286em; -} -.comment .comment__avatar { - width: 15%; - float: left; -} -.comment .comment__avatar img { - max-height: 3.71428571em; -} -.comment .comment__meta { - font-size: 0.85714286em; -} -.comment .comment__meta a { - display: inline-block; -} -.comment .comment__meta a:not(:first-child) { - margin-left: 1.08333333333334em; -} -.comment .comment__meta + p { - margin-top: 0.92857143em; -} -.comment .comment__body { - width: 85%; - float: right; -} -.comment .comment__body h5.type--fine-print { - margin: 0; -} -.comment + .comment { - margin-top: 1.85714286em; - padding-left: 15%; -} -@media all and (min-width: 768px) { - .comments + .comments-form { - margin-top: 3.71428571em; - } -} -@media all and (min-width: 768px) { - h3 + .related-blog-list { - margin-top: 3.71428571em; - } -} -.related-blog-list li:not(:last-child) { - margin-bottom: 1.85714286em; -} -.related-blog-list article img { - border-radius: 6px; -} -.related-blog-list article .article__title { - margin-top: 0.92857143em; - margin-bottom: 0; -} -.related-blog-list article .article__title .h4 { - margin-bottom: 0.68421052631579em; -} -@media all and (min-width: 991px) { - .sidebar { - margin-top: 7.42857143em; - position: relative; - bottom: 18px; - } -} -.sidebar__widget > h5:first-child { - margin-bottom: 0.92857143em; -} -.sidebar__widget:not(:last-child) { - margin-bottom: 3.71428571em; -} -.tag-cloud li { - display: inline-block; -} -.tag-cloud li:not(:last-child) { - margin-right: 0.46428571em; -} -.tag-cloud li:not(:last-child):after { - content: ','; -} -.conversation__head { - border-radius: 6px 6px 0 0; -} -.conversation__head.boxed:not(:last-child) { - margin: 0; -} -.conversation__head h4 { - margin: 0; -} -.conversation__head .conversation__avatar { - margin-top: 0.92857143em; -} -.conversation__head .conversation__avatar img { - max-height: 1.85714286em; - display: inline-block; - margin-right: 0.46428571em; - margin-bottom: 0; -} -@media all and (min-width: 768px) { - .conversation__avatar { - position: absolute; - top: 1.85714286em; - right: 2.78571429em; - } -} -.conversation__reply { - border-top: none !important; - border-bottom: none; - border-radius: 0; -} -.conversation__reply.boxed:not(:last-child) { - margin-bottom: 0; -} -.conversation__reply + .conversation__comments .comments__list li:first-child { - border-radius: 0; - border-top: none; -} -/*! -- Stack Portfolio -- */ -.project-thumb > a { - display: block; -} -.project-thumb:not(.hover-element) > a { - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; - margin-bottom: 1.85714286em; -} -.project-thumb:not(.hover-element) > a:hover { - opacity: .85; -} -.project-thumb.hover-element { - margin: 0; -} -.project-thumb.hover-element > a { - height: 24.14285714em; - text-decoration: none; - font-weight: normal; -} -.project-thumb.hover-element .background-image-holder { - transition: 0.5s ease-out; - -webkit-transition: 0.5s ease-out; - -moz-transition: 0.5s ease-out; -} -.project-thumb.hover-element .hover-element__reveal .project-thumb__title { - padding: 1.85714286em; - z-index: 2; - position: relative; - color: #fff; -} -.project-thumb.hover-element .hover-element__reveal .project-thumb__title h5 { - margin: 0; -} -.project-thumb.hover-element.hover--active { - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; -} -.project-thumb.hover-element.hover--active:hover { - opacity: .85; -} -.project-thumb.hover-element:not(.hover--active)[data-scrim-top] .hover-element__reveal { - transition: 0.5s ease; - -webkit-transition: 0.5s ease; - -moz-transition: 0.5s ease; - transform: translate3d(0, -100px, 0); - -webkit-transform: translate3d(0, -100px, 0); -} -.project-thumb.hover-element:not(.hover--active)[data-scrim-top]:hover .hover-element__reveal { - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); -} -.project-thumb.hover-element [data-scrim-top]:before { - height: 100%; -} -.project-thumb h4 { - margin-bottom: 0; -} -.project-thumb.height-40 { - min-height: 350px; -} -@media all and (max-width: 767px) { - .project-thumb.height-40 { - height: 350px; - min-width: 100%; - } -} -@media all and (min-width: 768px) { - .col-xs-12:not(.col-sm-6) .project-thumb.hover-element > a { - height: 46.42857143em; - } -} -.project-thumb.border--round .background-image-holder { - border-radius: 6px; -} -.project-thumb.border--round > a { - border-radius: 6px; - overflow: hidden; -} -.project-thumb.border--round:before { - border-radius: 6px; - overflow: hidden; -} -.col-md-4 .project-thumb > a:not(.imagebg) { - margin-bottom: 0.92857143em; -} -/*! -- Stack Shop -- */ -.cart-form button[type="submit"] { - margin-top: 1.85714286em; -} -.cart-total > div { - overflow: hidden; -} -@media all and (min-width: 768px) { - .cart-total { - margin-top: 3.71428571em; - } - .cart-customer-details { - margin-top: 7.42857143em; - } -} -@media all and (max-width: 767px) { - .cart-total { - margin-top: 1.85714286em; - } -} -.cart-customer-details div[class*='col-'] { - margin-top: 0.46428571em; -} -.cart-customer-details .input-checkbox { - margin: 1.85714286em 0; -} -.cart-customer-details .input-checkbox + span { - bottom: 38px; -} -.product { - margin-bottom: 0.92857143em; -} -.product img { - margin-bottom: 0.92857143em; - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; - backface-visibility: hidden; -} -.product a:hover img { - transform: translate3d(0, -5px, 0); - -webkit-transform: translate3d(0, -5px, 0); -} -.product .label + img { - margin-top: 2.78571429em; -} -.product h5 { - display: inline-block; - margin-bottom: 0; - margin-right: 0.46428571em; -} -.product .h4 { - margin-bottom: 0; -} -.product .h4:first-child { - clear: left; -} -.product .product__controls { - overflow: hidden; - margin-bottom: 0.92857143em; -} -.product .product__controls label, -.product .product__controls button { - position: relative; - top: 6px; -} -.product.product--tile { - padding: 1.85714286em; - border-radius: 6px; -} -@media all and (min-width: 1200px) { - .product .btn--cart { - position: absolute; - right: 1.85714286em; - bottom: 1.85714286em; - } -} -.col-sm-6:not(.col-md-3) .product { - text-align: center; -} -.col-md-3 .product--tile h5 { - display: block; -} -.masonry--tiles { - padding: 10px; -} -.masonry--tiles .masonry__item:not(:empty) { - padding: 0 6px; - margin-bottom: 12px; -} -.masonry--tiles .masonry__item:not(:empty) .product--tile { - margin: 0; -} -.masonry--tiles .masonry__item:not(:empty) .product--tile .label { - top: 1.85714286em; - right: 2.78571429em; -} -/*! -- Stack Wizard -- */ -.wizard { - transition: opacity .3s ease; - opacity: 0; -} -.wizard.active { - opacity: 1; -} -.wizard > .actions a, -.wizard > .actions a:hover, -.wizard > .actions a:active { - background: #dcbb55; - transition: all .3s ease; - padding: 0.46428571em 1.85714286em; - font-size: 12px; - text-transform: uppercase; - font-weight: 700; - letter-spacing: 1px; - color: #fff; -} -.wizard > .steps .current a, -.wizard > .steps .current a:hover, -.wizard > .steps .current a:active { - background: none; - color: #252525; -} -.wizard > .steps a { - position: relative; -} -.wizard > .steps a:before { - content: ''; - width: 15px; - height: 15px; - border-radius: 50%; - position: absolute; - left: 50%; - margin-left: -10px; - background: #eee; - display: block; - bottom: 0; - transition: all .2s ease; -} -.wizard > .steps a:after { - content: ''; - position: absolute; - width: 100%; - bottom: 7px; - height: 2px; - background: #eee; - left: 0; - transition: all .2s ease; -} -.wizard > .steps li:first-child a:after { - width: 50%; - left: 50%; -} -.wizard > .steps li:last-child a:after { - width: 50%; -} -.wizard > .steps li.current a:after, -.wizard > .steps li.current a:before { - background-color: #dcbb55; -} -.wizard > .steps a, -.wizard > .steps a:hover { - padding-bottom: 2.78571429em; -} -.wizard > .steps .done a, -.wizard > .steps .done a:hover, -.wizard > .steps .done a:active, -.wizard > .steps .disabled a, -.wizard > .steps .disabled a:hover, -.wizard > .steps .disabled a:active { - background: none; - color: #252525; -} -.wizard > .steps a, -.wizard > .steps a:hover, -.wizard > .steps a:active { - margin: 0; -} -.wizard > .actions a, -.wizard > .actions a:hover, -.wizard > .actions a:active { - user-select: none; - -moz-user-select: none; - -webkit-user-select: none; -} -.wizard > .steps > ul, -.wizard > .actions { - text-align: center; -} -.wizard > .steps > ul > li, -.wizard > .actions > ul > li { - float: none; - display: inline-block; -} -.wizard > section { - padding: 0; -} -.wizard > .content { - background: #fafafa; - margin-top: 1.85714286em; - margin-bottom: 1.85714286em; - border: 1px solid #ececec; -} -.wizard > .content > .body { - padding: 1.85714286em; - width: 100%; - height: 100%; -} -.wizard > .steps .number { - font-size: 1em; -} -@media all and (max-width: 767px) { - .wizard > .steps .number { - display: block; - } - .wizard > .content { - min-height: 25em; - } - .wizard .pos-vertical-center { - top: 50%; - transform: translateY(-50%); - -wekbit-transform: translateY(-50%); - } -} -.wizard.bg--white { - background: none !important; -} -.wizard.bg--white > .content { - background: #fff; -} -.wizard > .content img { - max-height: 240px; -} -@media all and (max-width: 767px) { - .wizard > .content img { - max-height: 120px; - margin-bottom: 0.92857143em; - } -} -/*! -- Stack Footers -- */ -footer .type--fine-print:not(p) { - opacity: .5; -} -footer a { - font-weight: normal; -} -footer:not(.bg--primary):not(.bg--dark) a { - color: #666666; -} -footer a.type--fine-print:not(:first-child) { - margin-left: 1.85714286em; -} -footer .logo { - max-height: 1.67142857em; -} -footer ul:not(.list-inline):not(.slides) > li { - line-height: 2.32142857em !important; -} -footer.footer-2 .row:last-child { - margin-top: 3.71428571em; -} -footer.footer-5 .row [class*='col-'] > div:nth-last-child(2) { - margin: 0.92857143em; -} -footer.footer-5 .row [class*='col-'] > div:nth-last-child(2) .type--fine-print { - opacity: 1; -} -footer.footer-6 .footer__lower { - background: #fafafa; - margin-top: 1.85714286em; - padding: 1.85714286em 0; -} -footer.footer-6.bg--dark .footer__lower { - background: #181818; -} -footer.footer-6.bg--secondary .footer__lower { - background: #f5f5f5; -} -footer.footer-6.bg--primary .footer__lower { - background: #d8b340; -} -footer.footer-7 { - padding: 1.85714286em 0; -} -@media all and (min-width: 768px) { - footer .list-inline + .btn { - position: relative; - bottom: 4px; - } - footer .logo { - margin: 0; - } - footer .logo:not(:last-child) { - margin-right: 1.85714286em; - } - footer.footer-3 .logo + ul { - position: relative; - top: 5px; - } - footer.footer-3 .logo + ul a { - color: #252525; - } - footer.footer-3 .social-list { - position: relative; - top: 9px; - } - footer.footer-3 .row:last-child { - margin-top: 1.85714286em; - } - footer.footer-4 .logo + span { - position: relative; - top: 8px; - } - footer.footer-4 form { - position: relative; - bottom: 4px; - } - footer.footer-4 .row:last-child { - margin-top: 1.85714286em; - } - footer.imagebg:not(.image--light) span, - footer.imagebg:not(.image--light) p, - footer.imagebg:not(.image--light) a { - color: #fff; - } - .footer-1 .type--fine-print { - position: relative; - top: 2px; - } -} -@media all and (max-width: 767px) { - footer .social-list { - margin: 1.85714286em 0; - } - .footer-4 form { - margin: 1.85714286em 0; - } - .footer-4 .logo { - margin: 0; - } - .footer-6 .footer__lower .social-list { - margin-top: 1.85714286em; - } - .footer-7 .social-list { - margin-top: 1.85714286em; - } - .footer-1 .social-list { - margin-top: 1.85714286em; - } - .footer-1 .logo { - display: block; - margin-top: 1.85714286em; - margin-bottom: 0.92857143em; - margin-left: auto; - margin-right: auto; - } -} diff --git a/html/css/theme.css b/html/css/theme.css deleted file mode 100644 index 83c19c1c..00000000 --- a/html/css/theme.css +++ /dev/null @@ -1,9015 +0,0 @@ -/**!**************/ -/**! Contents **/ -/**! 01. Reset **/ -/**! 02. Typography **/ -/**! 03. Position **/ -/**! 04. Element Size **/ -/**! 05. Images **/ -/**! 06. Buttons **/ -/**! 07. Icons **/ -/**! 08. Lists **/ -/**! 09. Lightbox **/ -/**! 10. Menus **/ -/**! 11. Dropdowns **/ -/**! 12. Form Elements **/ -/**! 13. Accordions **/ -/**! 14. Breadcrumbs **/ -/**! 15. Radials **/ -/**! 16. Tabs **/ -/**! 17. Boxes **/ -/**! 18. Sliders Flickity **/ -/**! 19. Hover Elements **/ -/**! 20. Masonry **/ -/**! 21. Modals **/ -/**! 22. Maps **/ -/**! 23. Parallax **/ -/**! 24. Notifications **/ -/**! 25. Video **/ -/**! 26. Colors **/ -/**! 27. Image Blocks **/ -/**! 28. MailChimp & Campaign Monitor **/ -/**! 29. Twitter **/ -/**! 30. Transitions **/ -/**! 31. Switchable Sections **/ -/**! 32. Typed Effect **/ -/**! 33. Gradient BG **/ -/**! 34. Bars **/ -/**! 35. Navigation In Page **/ -/**! 36. Helper Classes **/ -/**! 37. Spacing **/ -/**! 38. Boxed Layout **/ -/**! 39. Wizard **/ -/**! 40. Alerts **/ -/**! 41. Progress - Horizontal **/ -/**! 42. Theme Overrides **/ -/**!**************/ -/**!**************/ -/**!**************/ -/**! 01. Reset **/ -*, -h1, -h2, -h3, -h4, -h5, -h6, -p, -ul, -a { - margin: 0; - padding: 0; -} -/**! 02. Typography **/ -html { - font-size: 87.5%; -} -@media all and (max-width: 768px) { - html { - font-size: 81.25%; - } -} -body { - font-size: 1.5em; - line-height: 1.85714286em; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; - font-family: 'Open Sans', 'Helvetica', 'Arial', sans-serif; - color: #666666; - font-weight: 400; -} -h1, -h2, -h3, -h4, -h5, -h6, -.h1, -.h2, -.h3, -.h4, -.h5, -.h6 { - font-family: 'Open Sans', 'Helvetica', 'Arial', sans-serif; - color: #252525; - font-weight: 300; - font-variant-ligatures: common-ligatures; - margin-top: 0; - margin-bottom: 0; -} -h1, -.h1 { - font-size: 3.14285714em; - line-height: 1.31818182em; -} -h2, -.h2 { - font-size: 2.35714286em; - line-height: 1.36363636em; -} -h3, -.h3 { - font-size: 1.78571429em; - line-height: 1.5em; -} -h4, -.h4 { - font-size: 1.35714286em; - line-height: 1.36842105em; -} -h5, -.h5 { - font-size: 1em; - line-height: 1.85714286em; -} -h6, -.h6 { - font-size: 0.85714286em; - line-height: 2.16666667em; -} -.lead { - font-size: 1.35714286em; - line-height: 1.68421053em; -} -@media all and (max-width: 767px) { - h1, - .h1 { - font-size: 2.35714286em; - line-height: 1.36363636em; - } - h2, - .h2 { - font-size: 1.78571429em; - line-height: 1.5em; - } - h3, - .h3 { - font-size: 1.35714286em; - line-height: 1.85714286em; - } - .lead { - font-size: 1.35714286em; - line-height: 1.36842105em; - } -} -p, -ul, -ol, -pre, -table, -blockquote { - margin-bottom: 1.85714286em; -} -ul, -ol { - list-style: none; - line-height: 1.85714286em; -} -ul.bullets { - list-style: inside; -} -ol { - list-style-type: upper-roman; - list-style-position: inside; -} -blockquote { - font-size: 1.78571429em; - line-height: 1.5em; - padding: 0; - margin: 0; - border-left: 0; -} -strong { - font-weight: 600; -} -hr { - margin: 1.85714286em 0; - border-color: #fafafa; -} -a:hover, -a:focus, -a:active { - text-decoration: none; - outline: none; -} -/*! Typography -- Helpers */ -.type--fade { - opacity: .5; -} -.type--uppercase { - text-transform: uppercase; -} -.type--bold { - font-weight: bold; -} -.type--italic { - font-style: italic; -} -.type--fine-print { - font-size: 0.85714286em; -} -.type--strikethrough { - text-decoration: line-through; - opacity: .5; -} -.type--underline { - text-decoration: underline; -} -.type--body-font { - font-family: 'Open Sans', 'Helvetica'; -} -/**! 03. Position **/ -body { - overflow-x: hidden; -} -.pos-relative { - position: relative; -} -.pos-absolute { - position: absolute; -} -.pos-absolute.container { - left: 0; - right: 0; -} -.pos-top { - top: 0; -} -.pos-bottom { - bottom: 0; -} -.pos-right { - right: 0; -} -.pos-left { - left: 0; -} -.float-left { - float: left; -} -.float-right { - float: right; -} -@media all and (max-width: 767px) { - .float-left, - .float-right { - float: none; - } - .float-left-xs { - float: left; - } - .float-right-xs { - float: right; - } -} -.pos-vertical-center { - position: relative; - top: 50%; - transform: translateY(-50%); - -webkit-transform: translateY(-50%); -} -@media all and (max-width: 767px) { - .pos-vertical-center { - top: 0; - transform: none; - -webkit-transform: none; - } -} -@media all and (max-height: 600px) { - .pos-vertical-center { - top: 0; - transform: none; - -webkit-transform: none; - } -} -.pos-vertical-align-columns { - display: table; - table-layout: fixed; - width: 100%; -} -.pos-vertical-align-columns > div[class*='col-'] { - display: table-cell; - float: none; - vertical-align: middle; -} -@media all and (max-width: 990px) { - .pos-vertical-align-columns { - display: block; - width: auto; - } - .pos-vertical-align-columns > div[class*='col-'] { - display: block; - } -} -.inline-block { - display: inline-block; -} -.block { - display: block; -} -@media all and (max-width: 767px) { - .block--xs { - display: block; - } -} -@media all and (max-width: 990px) { - .text-center-md { - text-align: center; - } - .text-left-md { - text-align: left; - } - .text-right-md { - text-align: right; - } -} -@media all and (max-width: 767px) { - .text-center-xs { - text-align: center; - } - .text-left-xs { - text-align: left; - } - .text-right-xs { - text-align: right; - } -} -/**! 04. Element Size **/ -.height-100, -.height-90, -.height-80, -.height-70, -.height-60, -.height-50, -.height-40, -.height-30, -.height-20, -.height-10 { - height: auto; - padding: 5em 0; -} -@media all and (max-width: 767px) { - .height-100, - .height-90, - .height-80, - .height-70, - .height-60, - .height-50, - .height-40, - .height-30, - .height-20, - .height-10 { - height: auto; - padding: 4em 0; - } -} -@media all and (min-height: 600px) and (min-width: 767px) { - .height-10 { - height: 10vh; - } - .height-20 { - height: 20vh; - } - .height-30 { - height: 30vh; - } - .height-40 { - height: 40vh; - } - .height-50 { - height: 50vh; - } - .height-60 { - height: 60vh; - } - .height-70 { - height: 70vh; - } - .height-80 { - height: 80vh; - } - .height-90 { - height: 90vh; - } - .height-100 { - height: 100vh; - } -} -section.height-auto { - height: auto; -} -section.height-auto .pos-vertical-center { - top: 0; - position: relative; - transform: none; -} -@media all and (max-width: 767px) { - div[class*='col-'][class*='height-'] { - padding-top: 5.57142857em !important; - padding-bottom: 5.57142857em !important; - } -} -/**! 05. Images **/ -img { - max-width: 100%; -} -/*p+img, img:last-child{ - margin-bottom: 0; -}*/ -.img--fullwidth { - width: 100%; -} -[data-grid="2"].masonry { - -webkit-column-count: 2; - -webkit-column-gap: 0; - -moz-column-count: 2; - -moz-column-gap: 0; - column-count: 2; - column-gap: 0; -} -[data-grid="2"].masonry li { - width: 100%; - float: none; -} -[data-grid="2"] li { - width: 50%; - display: inline-block; -} -[data-grid="3"].masonry { - -webkit-column-count: 3; - -webkit-column-gap: 0; - -moz-column-count: 3; - -moz-column-gap: 0; - column-count: 3; - column-gap: 0; -} -[data-grid="3"].masonry li { - width: 100%; - float: none; -} -[data-grid="3"] li { - width: 33.33333333%; - display: inline-block; -} -[data-grid="4"].masonry { - -webkit-column-count: 4; - -webkit-column-gap: 0; - -moz-column-count: 4; - -moz-column-gap: 0; - column-count: 4; - column-gap: 0; -} -[data-grid="4"].masonry li { - width: 100%; - float: none; -} -[data-grid="4"] li { - width: 25%; - display: inline-block; -} -[data-grid="5"].masonry { - -webkit-column-count: 5; - -webkit-column-gap: 0; - -moz-column-count: 5; - -moz-column-gap: 0; - column-count: 5; - column-gap: 0; -} -[data-grid="5"].masonry li { - width: 100%; - float: none; -} -[data-grid="5"] li { - width: 20%; - display: inline-block; -} -[data-grid="6"].masonry { - -webkit-column-count: 6; - -webkit-column-gap: 0; - -moz-column-count: 6; - -moz-column-gap: 0; - column-count: 6; - column-gap: 0; -} -[data-grid="6"].masonry li { - width: 100%; - float: none; -} -[data-grid="6"] li { - width: 16.66666667%; - display: inline-block; -} -[data-grid="7"].masonry { - -webkit-column-count: 7; - -webkit-column-gap: 0; - -moz-column-count: 7; - -moz-column-gap: 0; - column-count: 7; - column-gap: 0; -} -[data-grid="7"].masonry li { - width: 100%; - float: none; -} -[data-grid="7"] li { - width: 14.28571429%; - display: inline-block; -} -[data-grid="8"].masonry { - -webkit-column-count: 8; - -webkit-column-gap: 0; - -moz-column-count: 8; - -moz-column-gap: 0; - column-count: 8; - column-gap: 0; -} -[data-grid="8"].masonry li { - width: 100%; - float: none; -} -[data-grid="8"] li { - width: 12.5%; - display: inline-block; -} -@media all and (max-width: 767px) { - [data-grid]:not(.masonry) li { - width: 33.333333%; - } - [data-grid="2"]:not(.masonry) li { - width: 50%; - } - [data-grid].masonry { - -webkit-column-count: 1; - -moz-column-count: 1; - column-count: 1; - } -} -.background-image-holder { - position: absolute; - height: 100%; - top: 0; - left: 0; - background-size: cover !important; - background-position: 50% 50% !important; - z-index: 0; - transition: opacity .3s linear; - -webkit-transition: opacity .3s linear; - opacity: 0; - background: #252525; -} -.background-image-holder:not([class*='col-']) { - width: 100%; -} -.background-image-holder.background--bottom { - background-position: 50% 100% !important; -} -.background-image-holder.background--top { - background-position: 50% 0% !important; -} -.image--light .background-image-holder { - background: none; -} -.background-image-holder img { - display: none; -} -[data-overlay] { - position: relative; -} -[data-overlay]:before { - position: absolute; - content: ''; - background: #252525; - width: 100%; - height: 100%; - top: 0; - left: 0; - z-index: 1; -} -[data-overlay] *:not(.container):not(.background-image-holder) { - z-index: 2; -} -[data-overlay].image--light:before { - background: #fff; -} -[data-overlay].bg--primary:before { - background: #4a90e2; -} -[data-overlay="1"]:before { - opacity: 0.1; -} -[data-overlay="2"]:before { - opacity: 0.2; -} -[data-overlay="3"]:before { - opacity: 0.3; -} -[data-overlay="4"]:before { - opacity: 0.4; -} -[data-overlay="5"]:before { - opacity: 0.5; -} -[data-overlay="6"]:before { - opacity: 0.6; -} -[data-overlay="7"]:before { - opacity: 0.7; -} -[data-overlay="8"]:before { - opacity: 0.8; -} -[data-overlay="9"]:before { - opacity: 0.9; -} -[data-overlay="10"]:before { - opacity: 1; -} -[data-overlay="0"]:before { - opacity: 0; -} -[data-scrim-bottom] { - position: relative; -} -[data-scrim-bottom]:before { - position: absolute; - content: ''; - width: 100%; - height: 80%; - background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, #252525 100%); - /* FF3.6+ */ - background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(0, 0, 0, 0)), color-stop(100%, #252525)); - /* Chrome,Safari4+ */ - background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, #252525 100%); - /* Chrome10+,Safari5.1+ */ - background: -o-linear-gradient(top, rgba(0, 0, 0, 0) 0%, #252525 100%); - /* Opera 11.10+ */ - background: -ms-linear-gradient(top, rgba(0, 0, 0, 0) 0%, #252525 100%); - /* IE10+ */ - background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, #252525 100%); - bottom: 0; - left: 0; - z-index: 1; - backface-visibility: hidden; -} -[data-scrim-bottom]:not(.image--light) h1, -[data-scrim-bottom]:not(.image--light) h2, -[data-scrim-bottom]:not(.image--light) h3, -[data-scrim-bottom]:not(.image--light) h4, -[data-scrim-bottom]:not(.image--light) h5, -[data-scrim-bottom]:not(.image--light) h6 { - color: #a5a5a5; - color: #f1f1f1; -} -[data-scrim-bottom]:not(.image--light) p, -[data-scrim-bottom]:not(.image--light) span, -[data-scrim-bottom]:not(.image--light) ul { - color: #e6e6e6; -} -[data-scrim-bottom].image--light:before { - background: #fff; -} -[data-scrim-bottom="1"]:before { - opacity: 0.1; -} -[data-scrim-bottom="2"]:before { - opacity: 0.2; -} -[data-scrim-bottom="3"]:before { - opacity: 0.3; -} -[data-scrim-bottom="4"]:before { - opacity: 0.4; -} -[data-scrim-bottom="5"]:before { - opacity: 0.5; -} -[data-scrim-bottom="6"]:before { - opacity: 0.6; -} -[data-scrim-bottom="7"]:before { - opacity: 0.7; -} -[data-scrim-bottom="8"]:before { - opacity: 0.8; -} -[data-scrim-bottom="9"]:before { - opacity: 0.9; -} -[data-scrim-bottom="10"]:before { - opacity: 1; -} -[data-scrim-top] { - position: relative; -} -[data-scrim-top]:before { - position: absolute; - content: ''; - width: 100%; - height: 80%; - background: -moz-linear-gradient(bottom, #252525 0%, rgba(0, 0, 0, 0) 100%); - /* FF3.6+ */ - background: -webkit-gradient(linear, left bottom, left bottom, color-stop(0%, #252525), color-stop(100%, rgba(0, 0, 0, 0))); - /* Chrome,Safari4+ */ - background: -webkit-linear-gradient(bottom, #252525 0%, rgba(0, 0, 0, 0) 100%); - /* Chrome10+,Safari5.1+ */ - background: -o-linear-gradient(bottom, #252525 0%, rgba(0, 0, 0, 0) 100%); - /* Opera 11.10+ */ - background: -ms-linear-gradient(bottom, #252525 0%, rgba(0, 0, 0, 0) 100%); - /* IE10+ */ - background: linear-gradient(to bottom, #252525 0%, rgba(0, 0, 0, 0) 100%); - top: 0; - left: 0; - z-index: 1; -} -[data-scrim-top]:not(.image--light) h1, -[data-scrim-top]:not(.image--light) h2, -[data-scrim-top]:not(.image--light) h3, -[data-scrim-top]:not(.image--light) h4, -[data-scrim-top]:not(.image--light) h5, -[data-scrim-top]:not(.image--light) h6 { - color: #fff; -} -[data-scrim-top]:not(.image--light) p, -[data-scrim-top]:not(.image--light) span, -[data-scrim-top]:not(.image--light) ul { - color: #e6e6e6; -} -[data-scrim-top].image--light:before { - background: #fff; -} -[data-scrim-top="1"]:before { - opacity: 0.1; -} -[data-scrim-top="2"]:before { - opacity: 0.2; -} -[data-scrim-top="3"]:before { - opacity: 0.3; -} -[data-scrim-top="4"]:before { - opacity: 0.4; -} -[data-scrim-top="5"]:before { - opacity: 0.5; -} -[data-scrim-top="6"]:before { - opacity: 0.6; -} -[data-scrim-top="7"]:before { - opacity: 0.7; -} -[data-scrim-top="8"]:before { - opacity: 0.8; -} -[data-scrim-top="9"]:before { - opacity: 0.9; -} -[data-scrim-top="10"]:before { - opacity: 1; -} -.imagebg { - position: relative; -} -.imagebg .container { - z-index: 2; -} -.imagebg .container:not(.pos-absolute) { - position: relative; -} -.imagebg:not(.image--light) h1, -.imagebg:not(.image--light) h2, -.imagebg:not(.image--light) h3, -.imagebg:not(.image--light) h4, -.imagebg:not(.image--light) h5, -.imagebg:not(.image--light) h6, -.imagebg:not(.image--light) p, -.imagebg:not(.image--light) ul, -.imagebg:not(.image--light) blockquote { - color: #fff; -} -.imagebg:not(.image--light) .bg--white h1, -.imagebg:not(.image--light) .bg--white h2, -.imagebg:not(.image--light) .bg--white h3, -.imagebg:not(.image--light) .bg--white h4, -.imagebg:not(.image--light) .bg--white h5, -.imagebg:not(.image--light) .bg--white h6 { - color: #252525; -} -.imagebg:not(.image--light) .bg--white p, -.imagebg:not(.image--light) .bg--white ul { - color: #666666; -} -div[data-overlay] h1, -div[data-overlay] h2, -div[data-overlay] h3, -div[data-overlay] h4, -div[data-overlay] h5, -div[data-overlay] h6 { - color: #fff; -} -div[data-overlay] p, -div[data-overlay] ul { - color: #fff; -} -.parallax { - overflow: hidden; -} -.parallax .background-image-holder { - transition: none !important; - -webkit-transition: none !important; - -moz-transition: none !important; -} -.image--xxs { - max-height: 1.85714286em; -} -.image--xs { - max-height: 3.71428571em; -} -.image--sm { - max-height: 5.57142857em; -} -.image--md { - max-height: 7.42857143em; -} -/**! 06. Buttons **/ -.btn { - font-family: 'Open Sans', 'Helvetica', 'Arial', sans-serif; - transition: 0.1s linear; - -webkit-transition: 0.1s linear; - -moz-transition: 0.1s linear; - border-radius: 6px; - padding-top: 0.46428571em; - padding-bottom: 0.46428571em; - padding-right: 2.78571429em; - padding-left: 2.78571429em; - border: 1px solid #252525; - border-width: 1px; - font-size: inherit; - line-height: 1.85714286em; -} -.btn .btn__text, -.btn i { - color: #252525; - border-color: #252525; - font-weight: 700; - font-size: 0.85714286em; -} -.btn[class*='col-'] { - margin-left: 0; - margin-right: 0; -} -.btn:active { - box-shadow: none; - -webkit-box-shadow: none; -} -.btn.bg--facebook, -.btn.bg--twitter, -.btn.bg--instagram, -.btn.bg--googleplus, -.btn.bg--pinterest, -.btn.bg--dribbble, -.btn.bg--behance, -.btn.bg--dark { - border-color: rgba(0, 0, 0, 0) !important; -} -.btn.bg--facebook .btn__text, -.btn.bg--twitter .btn__text, -.btn.bg--instagram .btn__text, -.btn.bg--googleplus .btn__text, -.btn.bg--pinterest .btn__text, -.btn.bg--dribbble .btn__text, -.btn.bg--behance .btn__text, -.btn.bg--dark .btn__text { - color: #fff; -} -.btn.bg--facebook .btn__text i, -.btn.bg--twitter .btn__text i, -.btn.bg--instagram .btn__text i, -.btn.bg--googleplus .btn__text i, -.btn.bg--pinterest .btn__text i, -.btn.bg--dribbble .btn__text i, -.btn.bg--behance .btn__text i, -.btn.bg--dark .btn__text i { - color: #fff; -} -.btn.bg--facebook:hover, -.btn.bg--twitter:hover, -.btn.bg--instagram:hover, -.btn.bg--googleplus:hover, -.btn.bg--pinterest:hover, -.btn.bg--dribbble:hover, -.btn.bg--behance:hover, -.btn.bg--dark:hover { - opacity: .9; -} -.btn.bg--error { - background: #e23636; - border-color: #e23636 !important; -} -.btn.bg--error:hover { - background: #e54c4c; - border-color: #e54c4c !important; - color: #fff !important; -} -.btn.bg--error .btn__text { - color: #fff; -} -.btn.bg--error .btn__text i { - color: #fff; -} -@media all and (min-width: 768px) { - .btn + .btn { - margin-left: 1.85714286em; - } -} -.btn:first-child { - margin-left: 0; -} -.btn:last-child { - margin-right: 0; -} -.btn--xs { - padding-top: 0; - padding-bottom: 0; - padding-right: 1.39285714em; - padding-left: 1.39285714em; -} -.btn--sm { - padding-top: 0.30952381em; - padding-bottom: 0.30952381em; - padding-right: 1.85714286em; - padding-left: 1.85714286em; -} -.btn--lg { - padding-top: 0.58035714em; - padding-bottom: 0.58035714em; - padding-right: 3.48214286em; - padding-left: 3.48214286em; -} -.btn--lg .btn__text { - font-size: 1.07142857em; -} -.btn--primary, -.btn--primary:visited { - background: #4a90e2; - border-color: #4a90e2; -} -.btn--primary .btn__text, -.btn--primary:visited .btn__text { - color: #fff; -} -.btn--primary .btn__text i, -.btn--primary:visited .btn__text i { - color: #fff; -} -.btn--primary:hover { - background: #609de6; -} -.btn--primary:active { - background: #3483de; -} -.btn--primary-1, -.btn--primary-1:visited { - background: #31639c; - border-color: #31639c; -} -.btn--primary-1 .btn__text, -.btn--primary-1:visited .btn__text { - color: #fff; -} -.btn--primary-1:hover { - background: #376faf; -} -.btn--primary-1:active { - background: #2b5789; -} -.btn--primary-2, -.btn--primary-2:visited { - background: #465773; - border-color: #465773; -} -.btn--primary-2 .btn__text, -.btn--primary-2:visited .btn__text { - color: #fff; -} -.btn--primary-2:hover { - background: #506383; -} -.btn--primary-2:active { - background: #3c4b63; -} -.btn--secondary { - background: #fafafa; - border-color: #fafafa; -} -.btn--secondary:hover { - background: #ffffff; -} -.btn--secondary:active { - background: #f5f5f5; -} -.btn--white { - background: #fff; - color: #252525; - border-color: #fff; -} -.btn--white i { - color: #252525; -} -.btn--transparent { - background: none; - border-color: rgba(0, 0, 0, 0); - padding-left: 0; - padding-right: 0; -} -.btn--transparent.btn--white .btn__text { - color: #fff; -} -.btn--unfilled { - background: none; -} -.btn--unfilled.btn--white .btn__text { - color: #fff; -} -.btn--unfilled.btn--white i { - color: #fff; -} -.btn--floating { - position: fixed; - bottom: 3.71428571em; - right: 3.71428571em; - z-index: 10; -} -/**! 07. Icons **/ -.icon { - line-height: 1em; - font-size: 3.14285714em; -} -.icon--xs { - font-size: 1em; -} -.icon--sm { - font-size: 2.35714286em; -} -.icon--lg { - font-size: 5.57142857em; -} -/**! 08. Lists **/ -ul:last-child { - margin: 0; -} -.list-inline li { - padding: 0 1em; - margin-left: 0; -} -.list-inline li:first-child { - padding-left: 0; -} -.list-inline li:last-child { - padding-right: 0; -} -.list-inline.list-inline--narrow li { - padding: 0 .5em; -} -.list-inline.list-inline--wide li { - padding: 0 2em; -} -/**! 09. Lightbox **/ -.lb-outerContainer { - border-radius: 0; -} -.lb-outerContainer .lb-container { - padding: 0; -} -.lb-outerContainer .lb-container img { - margin: 0; -} -.lightbox-gallery { - overflow: hidden; -} -.lightbox-gallery li { - float: left; -} -.lightbox-gallery li img { - margin: 0; - width: 100%; -} -.lightbox-gallery.gallery--gaps li { - padding: 0.46428571em; -} -/**! 10. Menus **/ -.menu-horizontal > li:not(:hover) > a, -.menu-horizontal > li:not(:hover) > span, -.menu-horizontal > li:not(:hover) > .modal-instance > .modal-trigger { - opacity: .5; -} -.menu-horizontal > li > a, -.menu-horizontal > li > span, -.menu-horizontal > li > .modal-instance > .modal-trigger { - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; - color: #252525; -} -.menu-horizontal > li > a:hover, -.menu-horizontal > li > span:hover, -.menu-horizontal > li > .modal-instance > .modal-trigger:hover { - color: #252525; -} -.bg--dark .menu-horizontal > li > a, -.bg--dark .menu-horizontal > li > span { - color: #fff; -} -.bg--dark .menu-horizontal > li > a:hover, -.bg--dark .menu-horizontal > li > span:hover { - color: #fff; -} -.menu-vertical { - width: 100%; -} -.menu-vertical li { - width: 100%; -} -.menu-vertical li a { - font-weight: normal; -} -@media all and (min-width: 990px) { - .menu-horizontal { - display: inline-block; - } - .menu-horizontal > li { - display: inline-block; - } - .menu-horizontal > li:not(:last-child) { - margin-right: 1.85714286em; - } - .menu-vertical { - display: inline-block; - } - .menu-vertical li { - white-space: nowrap; - } - .menu-vertical .dropdown__container { - top: 0; - } - .menu-vertical .dropdown__container .dropdown__content:not([class*='bg-']) { - background: #ffffff; - } - .menu-vertical .dropdown__container .dropdown__content { - transform: translateX(75%); - } -} -/**! 11. Dropdowns **/ -.dropdown { - position: relative; -} -.dropdown .dropdown__container { - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; - opacity: 0; - pointer-events: none; - position: absolute; - z-index: 999; -} -.dropdown .dropdown__container .dropdown__container:before { - height: 0; -} -.dropdown .dropdown__content { - padding: 1.85714286em; -} -.dropdown .dropdown__content:not([class*='col-']) { - width: 18.57142857em; -} -.dropdown .dropdown__content:not([class*='bg-']) { - background: #ffffff; -} -.dropdown .dropdown__content:not([class='bg--dark']) .menu-vertical a { - color: #666666; -} -.dropdown .dropdown__trigger { - cursor: pointer; - user-select: none; -} -.dropdown.dropdown--active > .dropdown__container { - opacity: 1; -} -.dropdown.dropdown--active > .dropdown__container > .container > .row > .dropdown__content { - pointer-events: all; -} -@media all and (min-width: 991px) { - .dropdown .dropdown__container:before { - height: 0.92857143em; - width: 100%; - content: ''; - display: block; - } - .dropdown .dropdown__content.dropdown__content--md { - padding: 2.78571429em; - } - .dropdown .dropdown__content.dropdown__content--lg { - padding: 3.71428571em; - } - .dropdown .dropdown__content.dropdown__content--xlg { - padding: 4.64285714em; - } -} -@media all and (max-width: 767px) { - .dropdown .dropdown__container { - min-width: 100%; - position: relative; - display: none; - } - .dropdown .dropdown__content { - padding: 1.85714286em; - left: 0 !important; - } - .dropdown.dropdown--active > .dropdown__container { - display: block; - } -} -body.dropdowns--hover .dropdown:not(.dropdown--click):hover > .dropdown__container { - opacity: 1; -} -body.dropdowns--hover .dropdown:not(.dropdown--click):hover > .dropdown__container:before { - pointer-events: all; -} -body.dropdowns--hover .dropdown:not(.dropdown--click):hover > .dropdown__container .dropdown__content { - pointer-events: all; -} -body:not(.dropdowns--hover) .dropdown.dropdown--hover:hover > .dropdown__container { - opacity: 1; -} -body:not(.dropdowns--hover) .dropdown.dropdown--hover:hover > .dropdown__container:before { - pointer-events: all; -} -body:not(.dropdowns--hover) .dropdown.dropdown--hover:hover > .dropdown__container .dropdown__content { - pointer-events: all; -} -@media all and (max-width: 990px) { - body.dropdowns--hover .dropdown:not(.dropdown--click).dropdown--active > .dropdown__container { - display: block; - } - body.dropdowns--hover .dropdown:not(.dropdown--click).dropdown--active > .dropdown__container:before { - pointer-events: all; - } -} -@media all and (max-width: 767px) { - .dropdown.dropdown--absolute .dropdown__container { - position: absolute; - } -} -/**! 12. Form Elements **/ -form { - max-width: 100%; -} -form + form { - margin-top: 30px; -} -form:before, -form:after { - content: "."; - display: block; - height: 0; - overflow: hidden; -} -form:after { - clear: both; -} -label { - margin: 0; - font-size: 1.14285714em; - font-weight: 400; -} -input[type], -textarea, -select { - -webkit-appearance: none; - background: #fcfcfc; - padding: 0.46428571em; - border-radius: 6px; - border: 1px solid #ececec; -} -input[type]:focus, -textarea:focus, -select:focus { - outline: none; -} -input[type]:active, -textarea:active, -select:active { - outline: none; -} -input[type]::-webkit-input-placeholder, -textarea::-webkit-input-placeholder, -select::-webkit-input-placeholder { - color: #b3b3b3; - font-size: 1.14285714em; -} -input[type]:-moz-placeholder, -textarea:-moz-placeholder, -select:-moz-placeholder { - /* Firefox 18- */ - color: #b3b3b3; - font-size: 1.14285714em; -} -input[type]::-moz-placeholder, -textarea::-moz-placeholder, -select::-moz-placeholder { - /* Firefox 19+ */ - color: #b3b3b3; - font-size: 1.14285714em; -} -input[type]:-ms-input-placeholder, -textarea:-ms-input-placeholder, -select:-ms-input-placeholder { - color: #b3b3b3; - font-size: 1.14285714em; -} -input[type="image"] { - border: none; - padding: none; - width: auto; -} -textarea { - display: block; - width: 100%; - max-width: 100%; -} -select { - cursor: pointer; - padding-right: 1.85714286em; - -webkit-appearance: none; -} -select::ms-expand { - display: none; -} -input[type="submit"] { - background: none; - outline: none; - border: none; - background: #4a90e2; - padding: 0.46428571em 2.78571429em 0.46428571em 2.78571429em; - color: #fff; -} -@keyframes load { - 0% { - opacity: 0; - width: 0; - } - 50% { - width: 100%; - opacity: .8; - left: 0; - } - 100% { - left: 100%; - opacity: 0; - } -} -button { - background: none; -} -button[type="submit"].btn--loading { - position: relative; - overflow: hidden; - pointer-events: none; - color: rgba(0, 0, 0, 0); -} -button[type="submit"].btn--loading * { - opacity: 0; -} -button[type="submit"].btn--loading:after { - content: ''; - position: absolute; - width: 0; - height: 100%; - background: #ddd; - animation: load 1.5s ease-out infinite; - left: 0; - top: 0; -} -button[type="submit"].btn--loading .btn__text { - opacity: 0; -} -button:focus { - outline: none !important; -} -button.bg--error { - color: #fff; -} -.input-icon { - position: relative; -} -.input-icon i { - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; - cursor: default; - position: absolute; -} -.input-checkbox, -.input-radio, -.input-select { - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; - display: inline-block; -} -.input-checkbox input, -.input-radio input, -.input-select input { - opacity: 0 !important; - height: 0 !important; - width: 0 !important; - position: absolute !important; -} -.input-checkbox label, -.input-radio label, -.input-select label { - display: block !important; - cursor: pointer; -} -.input-checkbox { - padding: 0; -} -.input-checkbox label { - width: 1.85714286em; - height: 1.85714286em; - border-radius: 6px; - background: #000; -} -.input-radio { - padding: 0; -} -.input-radio label { - width: 1.85714286em; - height: 1.85714286em; - border-radius: 50%; - background: #000; -} -.input-select { - position: relative; -} -.input-select i { - position: absolute; - top: 50%; - transform: translateY(-50%); - -webkit-transform: translateY(-50%); - right: 1em; - font-size: .87em; -} -.input-file { - position: relative; - display: inline-block; -} -.input-file input { - display: none; -} -.form-error { - margin-top: 1.5625em; - padding: 0.78125em; - background: #D84D4D; - color: #fff; - position: fixed; - min-width: 350px; - left: 50%; - bottom: 1.5625em; - transform: translate3d(-50%, 0, 0); - -webkit-transform: translate3d(-50%, 0, 0); - z-index: 999; - box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); - box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1); -} -.form-success { - margin-top: 1.5625em; - padding: 0.78125em; - background: #1DC020; - color: #fff; - position: fixed; - min-width: 350px; - left: 50%; - bottom: 1.5625em; - transform: translate3d(-50%, 0, 0); - -webkit-transform: translate3d(-50%, 0, 0); - z-index: 999; - box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); - box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1); -} -.attempted-submit .field-error { - border-color: #D84D4D !important; -} -.attempted-submit div.recaptcha.field-error { - border-color: #D84D4D !important; - border-style: solid; - border: 1px solid; - border-radius: 5px; - padding: 5px; -} -div.recaptcha iframe { - min-height: 0; -} -/**! 13. Accordions **/ -.accordion li .accordion__title, -.accordion li .accordion__content, -.accordion li .accordion__content * { - transition: 0.3s linear; - -webkit-transition: 0.3s linear; - -moz-transition: 0.3s linear; -} -.accordion li .accordion__title { - cursor: pointer; - padding: 0.46428571em 0.92857143em; - border: 1px solid #ececec; - border-bottom: none; - background: none; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; -} -.accordion li:last-child .accordion__title { - border-bottom: 1px solid #ececec; -} -.accordion li .accordion__content { - opacity: 0; - visibility: hidden; - max-height: 0; -} -.accordion li .accordion__content > * { - display: none; -} -.accordion li .accordion__content > *:first-child { - padding-top: 0; -} -.accordion li .accordion__content > *:last-child { - padding-bottom: 0; -} -.accordion li.active .accordion__title { - background: #4a90e2; - border-bottom: 1px solid #ececec; -} -.accordion li.active .accordion__content { - opacity: 1; - visibility: visible; - max-height: 500px; -} -.accordion li.active .accordion__content > * { - display: inline-block; -} -/**! 14. Breadcrumbs **/ -.breadcrumb { - padding: 0; - margin: 0; - background: none; - display: inline-block; -} -.breadcrumb li { - font-size: 1em; -} -.breadcrumb li + li:before { - padding: 0 0.46428571em; -} -/**! 15. Pie Charts **/ -.radial { - position: relative; -} -.radial .radial__label { - position: absolute; - top: 50%; - left: 50%; - transform: translateX(-50%) translateY(-50%); - -webkit-transform: translateX(-50%) translateY(-50%); - margin-bottom: 0; -} -/**! 16. Tabs **/ -.tabs { - display: block; - margin-bottom: 0; -} -.tabs > li { - display: inline-block; - opacity: .5; - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; -} -.tabs > .active, -.tabs:hover { - opacity: 1; -} -.tabs .tab__title { - cursor: pointer; -} -.tabs .tab__title:not(.btn) { - padding: 0 1.85714286em; -} -.tabs li:first-child .tab__title:not(.btn) { - padding-left: 0; -} -.tabs .tab__content { - display: none; -} -.tabs-content { - margin-top: 1em; -} -.tabs-content li > .tab__content { - width: 100%; - display: none; -} -.tabs-content > .active > .tab__content { - display: block; -} -.tabs-container[data-content-align="left"] .tabs-content { - text-align: left; -} -@media all and (max-width: 767px) { - .tabs-content > li:not(.active) .tab__content { - display: none !important; - } -} -/**! 17. Boxes **/ -.boxed { - position: relative; - overflow: hidden; - padding: 1.85714286em; - margin-bottom: 30px; -} -.boxed.boxed--lg { - padding: 2.78571429em; -} -.boxed.boxed--sm { - padding: 1.23809524em; -} -.boxed.boxed--border { - border: 1px solid #ececec; -} -.boxed > div[class*='col-']:first-child:not(.boxed) { - padding-left: 0; -} -.boxed > div[class*='col-']:last-child:not(.boxed) { - padding-right: 0; -} -img + .boxed { - margin-top: -1.85714286em; -} -@media all and (max-width: 767px) { - .boxed { - padding: 1.23809524em; - margin-bottom: 15px; - } - .boxed.boxed--lg { - padding: 1.23809524em; - } - .boxed div[class*='col-']:not(.boxed) { - padding: 0; - } - .boxed:last-child { - margin-bottom: 15px; - } -} -/**! 18. Sliders Flickity **/ -.slides:not(.flickity-enabled) li.imagebg:not(:first-child) { - display: none; -} -.slides:not(.flickity-enabled) li.imagebg:first-child { - background: #252525; - animation: backgroundLoad .5s ease alternate infinite; -} -.slides:not(.flickity-enabled) li.imagebg:first-child .container { - opacity: 0; -} -@keyframes backgroundLoad { - 0% { - background: #252525; - } - 100% { - background: #3f3f3f; - } -} -.slider.height-10 { - height: auto; -} -.slider.height-10 .slides .flickity-slider > li { - height: 10vh; - padding: 0; -} -@media all and (min-width: 768px) { - .slider.height-10 .slides li.imagebg { - min-height: 10vh; - } -} -.slider.height-20 { - height: auto; -} -.slider.height-20 .slides .flickity-slider > li { - height: 20vh; - padding: 0; -} -@media all and (min-width: 768px) { - .slider.height-20 .slides li.imagebg { - min-height: 20vh; - } -} -.slider.height-30 { - height: auto; -} -.slider.height-30 .slides .flickity-slider > li { - height: 30vh; - padding: 0; -} -@media all and (min-width: 768px) { - .slider.height-30 .slides li.imagebg { - min-height: 30vh; - } -} -.slider.height-40 { - height: auto; -} -.slider.height-40 .slides .flickity-slider > li { - height: 40vh; - padding: 0; -} -@media all and (min-width: 768px) { - .slider.height-40 .slides li.imagebg { - min-height: 40vh; - } -} -.slider.height-50 { - height: auto; -} -.slider.height-50 .slides .flickity-slider > li { - height: 50vh; - padding: 0; -} -@media all and (min-width: 768px) { - .slider.height-50 .slides li.imagebg { - min-height: 50vh; - } -} -.slider.height-60 { - height: auto; -} -.slider.height-60 .slides .flickity-slider > li { - height: 60vh; - padding: 0; -} -@media all and (min-width: 768px) { - .slider.height-60 .slides li.imagebg { - min-height: 60vh; - } -} -.slider.height-70 { - height: auto; -} -.slider.height-70 .slides .flickity-slider > li { - height: 70vh; - padding: 0; -} -@media all and (min-width: 768px) { - .slider.height-70 .slides li.imagebg { - min-height: 70vh; - } -} -.slider.height-80 { - height: auto; -} -.slider.height-80 .slides .flickity-slider > li { - height: 80vh; - padding: 0; -} -@media all and (min-width: 768px) { - .slider.height-80 .slides li.imagebg { - min-height: 80vh; - } -} -.slider.height-90 { - height: auto; -} -.slider.height-90 .slides .flickity-slider > li { - height: 90vh; - padding: 0; -} -@media all and (min-width: 768px) { - .slider.height-90 .slides li.imagebg { - min-height: 90vh; - } -} -.slider.height-100 { - height: auto; -} -.slider.height-100 .slides .flickity-slider > li { - height: 100vh; - padding: 0; -} -@media all and (min-width: 768px) { - .slider.height-100 .slides li.imagebg { - min-height: 100vh; - } -} -.slider .slides .flickity-slider > li:not([class*='col-']) { - width: 100%; -} -.slider .slides.slides--gapless li[class*='col-'] { - padding-left: 0; - padding-right: 0; -} -.slider[data-arrows="true"].slider--arrows-hover:not(:hover) .flickity-prev-next-button { - opacity: 0; -} -.slider[data-paging="true"]:not(section) { - margin-bottom: 3.71428571em; -} -.slider[data-paging="true"]:not(section) .flickity-page-dots { - bottom: -3.71428571em; -} -.slider[data-paging="true"]:not([class*='text-']) .flickity-page-dots { - text-align: center; -} -.slider[data-children="1"] .flickity-prev-next-button { - display: none; -} -.slider:not([data-paging="true"]) .slides { - margin: 0; -} -.slider.controls--dark .flickity-page-dots .dot { - background: #252525; -} -.slider.controls--dark .flickity-prev-next-button:before { - color: #252525; -} -section.slider { - padding: 0; -} -section.slider.height-10 { - height: auto; -} -section.slider.height-10 .slides .flickity-slider > li { - height: 10vh; - padding: 0; -} -@media all and (min-width: 768px) { - section.slider.height-10 .slides li.imagebg { - min-height: 10vh; - } -} -section.slider.height-20 { - height: auto; -} -section.slider.height-20 .slides .flickity-slider > li { - height: 20vh; - padding: 0; -} -@media all and (min-width: 768px) { - section.slider.height-20 .slides li.imagebg { - min-height: 20vh; - } -} -section.slider.height-30 { - height: auto; -} -section.slider.height-30 .slides .flickity-slider > li { - height: 30vh; - padding: 0; -} -@media all and (min-width: 768px) { - section.slider.height-30 .slides li.imagebg { - min-height: 30vh; - } -} -section.slider.height-40 { - height: auto; -} -section.slider.height-40 .slides .flickity-slider > li { - height: 40vh; - padding: 0; -} -@media all and (min-width: 768px) { - section.slider.height-40 .slides li.imagebg { - min-height: 40vh; - } -} -section.slider.height-50 { - height: auto; -} -section.slider.height-50 .slides .flickity-slider > li { - height: 50vh; - padding: 0; -} -@media all and (min-width: 768px) { - section.slider.height-50 .slides li.imagebg { - min-height: 50vh; - } -} -section.slider.height-60 { - height: auto; -} -section.slider.height-60 .slides .flickity-slider > li { - height: 60vh; - padding: 0; -} -@media all and (min-width: 768px) { - section.slider.height-60 .slides li.imagebg { - min-height: 60vh; - } -} -section.slider.height-70 { - height: auto; -} -section.slider.height-70 .slides .flickity-slider > li { - height: 70vh; - padding: 0; -} -@media all and (min-width: 768px) { - section.slider.height-70 .slides li.imagebg { - min-height: 70vh; - } -} -section.slider.height-80 { - height: auto; -} -section.slider.height-80 .slides .flickity-slider > li { - height: 80vh; - padding: 0; -} -@media all and (min-width: 768px) { - section.slider.height-80 .slides li.imagebg { - min-height: 80vh; - } -} -section.slider.height-90 { - height: auto; -} -section.slider.height-90 .slides .flickity-slider > li { - height: 90vh; - padding: 0; -} -@media all and (min-width: 768px) { - section.slider.height-90 .slides li.imagebg { - min-height: 90vh; - } -} -section.slider.height-100 { - height: auto; -} -section.slider.height-100 .slides .flickity-slider > li { - height: 100vh; - padding: 0; -} -@media all and (min-width: 768px) { - section.slider.height-100 .slides li.imagebg { - min-height: 100vh; - } -} -section.slider[data-paging="true"] .flickity-page-dots { - bottom: 1.85714286em; -} -section.slider:not(.image--light)[data-paging="true"] .flickity-page-dots .dot { - background: #fff; -} -section.slider .slides { - margin: 0; -} -@media all and (max-width: 767px) { - section.slider[class*='height-'] .slides .flickity-slider > li { - height: auto; - padding: 7.42857143em 0; - } - section.slider.space--lg .slides .flickity-slider > li { - padding: 11.14285714em 0; - } - section.slider.space--xlg .slides .flickity-slider > li { - padding: 11.14285714em 0; - } -} -section.bg--dark .slider[data-paging="true"] .flickity-page-dots .dot, -section.bg--primary .slider[data-paging="true"] .flickity-page-dots .dot { - background: #fff; -} -.flickity-page-dots .dot { - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; - width: 8px; - height: 8px; - border-radius: 50%; - background: #252525; - border: none; - margin: 0 0.46428571em; -} -.flickity-page-dots .dot:hover:not(.is-selected) { - opacity: .6; -} -.text-center .flickity-page-dots, -section.slider .flickity-page-dots { - text-align: center; -} -.flickity-prev-next-button svg { - display: none; -} -.flickity-prev-next-button:before { - font-family: 'stack-interface'; - content: "\e80c"; - font-size: 1em; - font-weight: normal; -} -.flickity-prev-next-button.previous:before { - content: "\e80b"; -} -.imagebg:not(.image--light) .flickity-page-dots .dot, -.bg--dark .flickity-page-dots .dot { - background: #fff; -} -/**! 19. Hover Elements **/ -.hover-element { - position: relative; - overflow: hidden; - margin-bottom: 30px; -} -.hover-element * { - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; -} -.hover-element .hover-element__reveal { - position: absolute; - top: 0; - left: 0; - opacity: 0; - width: 100%; - height: 100%; -} -.hover-element .hover-element__reveal .boxed { - height: 100%; -} -.hover-element:hover .hover-element__reveal, -.hover-element.hover--active .hover-element__reveal { - opacity: 1; -} -.hover-element img { - margin-bottom: 0; -} -@media all and (max-width: 1024px) { - .hover-element { - cursor: pointer; - } -} -.row:last-child div[class*='col-']:last-child .hover-element { - margin-bottom: 0; -} -/**! 20. Masonry **/ -.masonry .masonry__container.masonry--active .masonry__item { - opacity: 1; - pointer-events: initial; -} -.masonry .masonry__container .masonry__item { - opacity: 0; - pointer-events: none; -} -.masonry .masonry__filters li { - display: inline-block; - cursor: pointer; - text-transform: capitalize; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; -} -.masonry .masonry__filters li.active { - cursor: default; -} -.masonry.masonry--gapless .masonry__item { - padding: 0 !important; - margin-bottom: 0; -} -/**! 21. Modals **/ -.modal-instance .modal-body { - display: none; -} -.modal-container { - transition: 0.3s linear; - -webkit-transition: 0.3s linear; - -moz-transition: 0.3s linear; - padding: 0; - visibility: hidden; - opacity: 0; - z-index: 999; - pointer-events: none; - position: fixed; - width: 100%; - height: 100%; - top: 0; - left: 0; -} -.modal-container.modal-active { - opacity: 1; - visibility: visible; - pointer-events: all; -} -.modal-container:before { - background: rgba(0, 0, 0, 0.85); - content: ''; - position: fixed; - width: 100%; - height: 100%; - top: 0; - left: 0; - z-index: 1; -} -.modal-container .modal-content { - backface-visibility: hidden; - position: fixed; - z-index: 2; - top: 50%; - left: 50%; - max-height: 100%; - overflow-y: scroll; - border: none; - transform: translate3d(-50%, -50%, 0); - -webkit-transform: translate3d(-50%, -50%, 0); - padding: 0; - border-radius: 0; - box-shadow: none; -} -.modal-container .modal-content:not(.height--natural) { - width: 50%; - height: 50%; -} -.modal-container .modal-content .modal-close-cross { - cursor: pointer; - position: absolute; - opacity: .5; - transition: 0.1s linear; - -webkit-transition: 0.1s linear; - -moz-transition: 0.1s linear; - top: 1em; - right: 1em; - z-index: 99; -} -.modal-container .modal-content .modal-close-cross:before { - content: '\00D7'; - font-size: 1.5em; -} -.modal-container .modal-content .modal-close-cross:hover { - opacity: 1; -} -.modal-container .modal-content.imagebg:not(.image--light) .modal-close-cross:before { - color: #fff; -} -.modal-container .modal-content iframe { - width: 100%; - outline: none; - border: none; - height: 100%; - backface-visibility: hidden; -} -.modal-container .modal-content iframe:first-child + .modal-close-cross:last-child { - top: -3.71428571em; -} -@media all and (max-width: 767px) { - .modal-container .modal-content { - width: 97% !important; - height: auto !important; - padding-top: 2em; - padding-bottom: 2em; - } -} -/**! 22. Maps **/ -.map-container { - position: relative; - overflow: hidden; -} -.map-container iframe, -.map-container .map-canvas { - position: absolute; - width: 100%; - height: 100%; - top: 0; -} -/**! 23. Parallax **/ -.parallax > .background-image-holder, -.parallax .slides li > .background-image-holder { - height: 100%; - min-height: 100vh; - top: -50vh; - transition: opacity 0.3s ease !important; - -webkit-transition: opacity 0.3s ease !important; - -webkit-transform-style: preserve-3d; -} -.parallax:first-child .slides li > .background-image-holder, -.parallax:first-child .background-image-holder { - top: 0; -} -.main-container > a:first-child + .parallax .background-image-holder { - top: 0; -} -@media all and (max-width: 1024px) { - .parallax > .background-image-holder, - .parallax .slides li > .background-image-holder { - -webkit-transition: transform 0.016s linear !important; - transition: transform 0.016s linear !important; - } - .parallax.parallax-disable-mobile .background-image-holder, - .parallax.parallax-disable-mobile .slides li > .background-image-holder { - top: 0 !important; - transform: none !important; - } -} -/**! 24. Notifications **/ -.notification { - max-width: 100%; - box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); - position: fixed; - z-index: 99; - pointer-events: none; - padding: 0; - margin: 1em; - opacity: 0; - transition: 0.3s linear; - -webkit-transition: 0.3s linear; - -moz-transition: 0.3s linear; -} -.notification:not([class*='bg-']) { - background: #fff; -} -.notification[class*='col-'] { - min-width: 400px; -} -.notification .notification-close-cross { - position: absolute; - top: 1em; - z-index: 99; - right: 1em; - cursor: pointer; - transition: 0.1s linear; - -webkit-transition: 0.1s linear; - -moz-transition: 0.1s linear; - opacity: .7; -} -.notification .notification-close-cross:before { - content: '\00D7'; - font-size: 1.5em; -} -.notification .notification-close-cross:hover { - opacity: 1; -} -.notification.notification--reveal { - z-index: 99; - pointer-events: initial; -} -.notification.notification--reveal[data-animation="from-bottom"] { - animation: from-bottom 0.3s linear 0s forwards; - -webkit-animation: from-bottom 0.3s linear 0s forwards; - -moz-animation: from-bottom 0.3s linear 0s forwards; -} -.notification.notification--reveal[data-animation="from-top"] { - animation: from-top 0.3s linear 0s forwards; - -webkit-animation: from-top 0.3s linear 0s forwards; - -moz-animation: from-top 0.3s linear 0s forwards; -} -.notification.notification--reveal[data-animation="from-left"] { - animation: from-left 0.3s linear 0s forwards; - -webkit-animation: from-left 0.3s linear 0s forwards; - -moz-animation: from-left 0.3s linear 0s forwards; -} -.notification.notification--reveal[data-animation="from-right"] { - animation: from-right 0.3s linear 0s forwards; - -webkit-animation: from-right 0.3s linear 0s forwards; - -moz-animation: from-right 0.3s linear 0s forwards; -} -.notification.notification--dismissed { - animation: fade-out 0.4s linear 0s forwards !important; - -webkit-animation: fade-out 0.4s linear 0s forwards !important; - -moz-animation: fade-out 0.4s linear 0s forwards !important; - pointer-events: none; -} -.bg--dark + .notification-close-cross:before { - color: #fff; -} -a[data-notification-link] { - text-decoration: none; -} -a[data-notification-link]:hover { - text-decoration: none; -} -@media all and (max-width: 767px) { - .notification[class*='col-'] { - min-width: 0; - } -} -@keyframes from-bottom { - from { - transform: translate3d(0, 100%, 0); - -webkit-transform: translate3d(0, 100%, 0); - opacity: 0; - } - to { - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); - opacity: 1; - } -} -@-moz-keyframes from-bottom { - from { - transform: translate3d(0, 100%, 0); - -webkit-transform: translate3d(0, 100%, 0); - opacity: 0; - } - to { - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); - opacity: 1; - } -} -@-webkit-keyframes from-bottom { - from { - transform: translate3d(0, 100%, 0); - -webkit-transform: translate3d(0, 100%, 0); - opacity: 0; - } - to { - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); - opacity: 1; - } -} -@keyframes from-top { - from { - transform: translate3d(0, -100%, 0); - -webkit-transform: translate3d(0, -100%, 0); - opacity: 0; - } - to { - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); - opacity: 1; - } -} -@-moz-keyframes from-top { - from { - transform: translate3d(0, -100%, 0); - -webkit-transform: translate3d(0, -100%, 0); - opacity: 0; - } - to { - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); - opacity: 1; - } -} -@-webkit-keyframes from-top { - from { - transform: translate3d(0, -100%, 0); - -webkit-transform: translate3d(0, -100%, 0); - opacity: 0; - } - to { - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); - opacity: 1; - } -} -@keyframes from-left { - from { - transform: translate3d(-100%, 0, 0); - -webkit-transform: translate3d(-100%, 0, 0); - opacity: 0; - } - to { - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); - opacity: 1; - } -} -@-moz-keyframes from-left { - from { - transform: translate3d(-100%, 0, 0); - -webkit-transform: translate3d(-100%, 0, 0); - opacity: 0; - } - to { - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); - opacity: 1; - } -} -@-webkit-keyframes from-left { - from { - transform: translate3d(-100%, 0, 0); - -webkit-transform: translate3d(-100%, 0, 0); - opacity: 0; - } - to { - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); - opacity: 1; - } -} -@keyframes from-right { - from { - transform: translate3d(100%, 0, 0); - -webkit-transform: translate3d(100%, 0, 0); - opacity: 1; - } - to { - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); - opacity: 1; - } -} -@-moz-keyframes from-right { - from { - transform: translate3d(100%, 0, 0); - -webkit-transform: translate3d(100%, 0, 0); - opacity: 0; - } - to { - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); - opacity: 1; - } -} -@-webkit-keyframes from-right { - from { - transform: translate3d(100%, 0, 0); - -webkit-transform: translate3d(100%, 0, 0); - opacity: 0; - } - to { - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); - opacity: 1; - } -} -@keyframes fade-out { - 0% { - opacity: 1; - } - 100% { - opacity: 0; - } -} -@-webkit-keyframes fade-out { - 0% { - opacity: 1; - } - 100% { - opacity: 0; - } -} -@-moz-keyframes fade-out { - 0% { - opacity: 1; - } - 100% { - opacity: 0; - } -} -/**! 25. Video **/ -iframe { - width: 100%; - min-height: 350px; - border: none; -} -@media all and (max-width: 767px) { - iframe { - min-height: 220px; - } -} -.videobg { - background: #252525; - position: relative; - overflow: hidden; -} -.videobg .container, -.videobg .background-image-holder { - opacity: 0; - transition: 0.3s linear; - -webkit-transition: 0.3s linear; - -moz-transition: 0.3s linear; -} -.videobg .background-image-holder { - opacity: 0 !important; -} -.videobg.video-active .container { - opacity: 1; -} -.videobg.video-active .loading-indicator { - opacity: 0; - visibility: hidden; -} -.videobg video { - object-fit: cover; - height: 100%; - min-width: 100%; - position: absolute; - top: 0; - z-index: 0 !important; - left: 0; -} -@media all and (max-width: 1024px) { - .videobg .background-image-holder, - .videobg .container { - opacity: 1 !important; - } - .videobg .loading-indicator { - display: none; - } - .videobg video { - display: none; - } -} -.youtube-background { - position: absolute; - height: 100%; - width: 100%; - top: 0; - z-index: 0 !important; -} -.youtube-background .mb_YTPBar { - opacity: 0; - height: 0; - visibility: hidden; -} -@media all and (max-width: 1024px) { - .youtube-background { - display: none; - } -} -.loading-indicator { - position: absolute !important; - top: 50%; - left: 50%; - z-index: 99 !important; - width: 50px; - height: 50px; - margin-top: -25px; - margin-left: -25px; - background-color: #fff; - border-radius: 100%; - -webkit-animation: loading-spinner 1s infinite ease-in-out; - animation: loading-spinner 1s infinite ease-in-out; - transition: 0.3s linear; - -webkit-transition: 0.3s linear; - -moz-transition: 0.3s linear; -} -@-webkit-keyframes loading-spinner { - 0% { - -webkit-transform: scale(0); - } - 100% { - -webkit-transform: scale(1); - opacity: 0; - } -} -@keyframes loading-spinner { - 0% { - -webkit-transform: scale(0); - transform: scale(0); - } - 100% { - -webkit-transform: scale(1); - transform: scale(1); - opacity: 0; - } -} -.video-cover { - position: relative; -} -.video-cover video { - max-width: 100%; -} -.video-cover iframe { - background: #252525; -} -.video-cover .background-image-holder { - z-index: 3; -} -.video-cover .video-play-icon { - position: absolute; - top: 50%; - left: 50%; - transform: translate3d(-50%, -50%, 0); - -webkit-transform: translate3d(-50%, -50%, 0); -} -.video-cover .video-play-icon, -.video-cover .background-image-holder { - transition: 0.3s linear; - -webkit-transition: 0.3s linear; - -moz-transition: 0.3s linear; -} -.video-cover.reveal-video .video-play-icon, -.video-cover.reveal-video .background-image-holder { - opacity: 0 !important; - pointer-events: none; -} -.video-cover[data-scrim-bottom]:before, -.video-cover[data-overlay]:before, -.video-cover[data-scrim-top]:before { - transition: 0.3s linear; - -webkit-transition: 0.3s linear; - -moz-transition: 0.3s linear; - z-index: 4; -} -.video-cover.reveal-video[data-scrim-bottom]:before, -.video-cover.reveal-video[data-overlay]:before, -.video-cover.reveal-video[data-scrim-top]:before { - opacity: 0; - pointer-events: none; -} -.video-play-icon { - width: 7.42857143em; - height: 7.42857143em; - border-radius: 50%; - position: relative; - z-index: 4; - display: inline-block; - border: 2px solid #ffffff; - cursor: pointer; - background: #ffffff; -} -.video-play-icon.video-play-icon--sm { - width: 3.71428571em; - height: 3.71428571em; -} -.video-play-icon.video-play-icon--sm:before { - border-width: 4px 0 4px 9px; -} -.video-play-icon.video-play-icon--xs { - width: 1.85714286em; - height: 1.85714286em; -} -.video-play-icon.video-play-icon--xs:before { - border-width: 3px 0 3px 6px; - margin-left: -3px; -} -.video-play-icon.bg--primary:before { - border-color: transparent transparent transparent #fff; -} -.video-play-icon:before { - position: absolute; - top: 50%; - margin-top: -5px; - left: 50%; - margin-left: -4px; - content: ''; - width: 0; - height: 0; - border-style: solid; - border-width: 6px 0 6px 12px; - border-color: transparent transparent transparent #ffffff; - border-color: transparent transparent transparent #808080; -} -.video-play-icon.video-play-icon--dark { - border-color: #252525; - background: #252525; -} -.video-play-icon.video-play-icon--dark:before { - border-color: transparent transparent transparent #252525; -} -.video-play-icon.video-play-icon--dark:before { - border-color: transparent transparent transparent #fff; -} -@media all and (max-width: 767px) { - .video-play-icon { - width: 4.95238095em; - height: 4.95238095em; - } -} -div[class*='col-'][class*='-12']:not([class*='xs-12']) .video-cover iframe { - min-height: 550px; -} -@media all and (max-width: 990px) { - div[class*='col-'][class*='-12']:not([class*='xs-12']) .video-cover iframe { - min-height: 350px; - } -} -div[class*='col-'][class*='-10'] .video-cover iframe { - min-height: 450px; -} -div[class*='col-'][class*='-8'] .video-cover iframe { - min-height: 400px; -} -div[class*='col-'][class*='-6'] .video-cover iframe { - min-height: 350px; -} -@media all and (max-width: 1200px) { - div[class*='col-'][class*='-6'] .video-cover iframe { - min-height: 300px; - } -} -@media all and (max-width: 990px) { - div[class*='col-'][class*='-6'] .video-cover iframe { - min-height: 220px; - } -} -@media all and (max-width: 767px) { - div[class*='col-'] .video-cover iframe { - min-height: 220px !important; - } -} -.modal-container video { - max-width: 100%; -} -/**! 26. Colors **/ -body { - background: #ffffff; -} -.color--primary { - color: #4a90e2 !important; -} -a { - color: #4a90e2; -} -.color--primary-1 { - color: #31639c !important; -} -.color--primary-2 { - color: #465773 !important; -} -.color--white { - color: #fff; -} -.color--dark { - color: #252525; -} -.color--success { - color: #4ebf56; -} -.color--error { - color: #e23636; -} -.bg--dark { - background: #252525; -} -.bg--dark:not(.nav-bar):not(.bar) { - color: #ffffff; -} -.bg--dark:not(.nav-bar):not(.bar) h1, -.bg--dark:not(.nav-bar):not(.bar) h2, -.bg--dark:not(.nav-bar):not(.bar) h3, -.bg--dark:not(.nav-bar):not(.bar) h4, -.bg--dark:not(.nav-bar):not(.bar) h5, -.bg--dark:not(.nav-bar):not(.bar) h6, -.bg--dark:not(.nav-bar):not(.bar) i, -.bg--dark:not(.nav-bar):not(.bar) span:not(.btn__text), -.bg--dark:not(.nav-bar):not(.bar) p { - color: #ffffff; -} -.bg--dark:not(.nav-bar):not(.bar) a:not(.btn) { - color: #fff; -} -.bg--site { - background: #ffffff; -} -.bg--secondary { - background: #fafafa; -} -.bg--primary { - background: #4a90e2; -} -.bg--primary p, -.bg--primary span, -.bg--primary ul, -.bg--primary a:not(.btn) { - color: #fff; -} -.bg--primary h1, -.bg--primary h2, -.bg--primary h3, -.bg--primary h4, -.bg--primary h5, -.bg--primary h6, -.bg--primary i { - color: #fff; -} -.bg--primary .color--primary { - color: #fff !important; -} -.bg--white { - background: #fff; -} -.bg--white p, -.bg--white span, -.bg--white ul, -.bg--white a:not(.btn) { - color: #666666; -} -.bg--white h1, -.bg--white h2, -.bg--white h3, -.bg--white h4, -.bg--white h5, -.bg--white h6, -.bg--white i { - color: #252525; -} -.bg--error { - background: #e23636; -} -.bg--success { - background: #4ebf56; -} -.imagebg:not(.image--light) .bg--white p, -.imagebg:not(.image--light) .bg--white span, -.imagebg:not(.image--light) .bg--white ul, -.imagebg:not(.image--light) .bg--white a:not(.btn) { - color: #666666; -} -.imagebg:not(.image--light) .bg--white h1, -.imagebg:not(.image--light) .bg--white h2, -.imagebg:not(.image--light) .bg--white h3, -.imagebg:not(.image--light) .bg--white h4, -.imagebg:not(.image--light) .bg--white h5, -.imagebg:not(.image--light) .bg--white h6, -.imagebg:not(.image--light) .bg--white i { - color: #252525; -} -.imagebg:not(.image--light) .bg--secondary { - background: rgba(250, 250, 250, 0.2); -} -.bg--primary-1 { - background: #31639c; -} -.bg--primary-1 p, -.bg--primary-1 span, -.bg--primary-1 ul, -.bg--primary-1 a:not(.btn) { - color: #fff; -} -.bg--primary-1 h1, -.bg--primary-1 h2, -.bg--primary-1 h3, -.bg--primary-1 h4, -.bg--primary-1 h5, -.bg--primary-1 h6, -.bg--primary-1 i { - color: #fff; -} -.bg--primary-2 { - background: #465773; -} -.bg--primary-2 p, -.bg--primary-2 span, -.bg--primary-2 ul, -.bg--primary-2 a:not(.btn) { - color: #fff; -} -.bg--primary-2 h1, -.bg--primary-2 h2, -.bg--primary-2 h3, -.bg--primary-2 h4, -.bg--primary-2 h5, -.bg--primary-2 h6, -.bg--primary-2 i { - color: #fff; -} -.image-bg:not(.image-light) *:not(a) { - color: #fff; -} -.color--facebook { - color: #3b5998; -} -.color--twitter { - color: #00aced; -} -.color--googleplus { - color: #dd4b39; -} -.color--instagram { - color: #125688; -} -.color--pinterest { - color: #cb2027; -} -.color--dribbble { - color: #ea4c89; -} -.color--behance { - color: #053eff; -} -.bg--facebook { - background: #3b5998; - color: #fff; -} -.bg--twitter { - background: #00aced; - color: #fff; -} -.bg--googleplus { - background: #dd4b39; - color: #fff; -} -.bg--instagram { - background: #125688; - color: #fff; -} -.bg--pinterest { - background: #cb2027; - color: #fff; -} -.bg--dribbble { - background: #ea4c89; - color: #fff; -} -.bg--behance { - background: #053eff; - color: #fff; -} -/**! 27. Image Blocks **/ -.imageblock { - position: relative; - padding: 0; -} -.imageblock > .container, -.imageblock > div[class*='col-']:not(.imageblock__content) { - padding-top: 7.42857143em; - padding-bottom: 7.42857143em; - float: none; - overflow: hidden; -} -.imageblock.imageblock--lg > .container, -.imageblock.imageblock--lg > div[class*='col-']:not(.imageblock__content) { - padding-top: 9.28571429em; - padding-bottom: 9.28571429em; - float: none; - overflow: hidden; -} -.imageblock .imageblock__content { - position: absolute; - height: 100%; - top: 0; - z-index: 2; - padding: 0; -} -.imageblock .imageblock__content .slider { - position: absolute; - width: 100%; - height: 100%; - top: 0; -} -.imageblock .imageblock__content .slider .slides > li { - padding: 0; - min-height: 100%; - position: absolute !important; -} -.imageblock.allow-overflow .imageblock__content { - overflow: visible; -} -@media all and (max-height: 728px) { - .imageblock > .container, - .imageblock > div[class*='col-']:not(.imageblock__content) { - padding-top: 3.71428571em; - padding-bottom: 3.71428571em; - } -} -@media all and (max-width: 767px) { - .imageblock[class*='space-'] { - padding-bottom: 0; - padding-top: 0; - } - .imageblock .imageblock__content { - position: relative; - min-height: 18.57142857em; - } - .imageblock > .container, - .imageblock > div[class*='col-']:not(.imageblock__content) { - padding-top: 5.57142857em; - padding-bottom: 5.57142857em; - float: none; - overflow: hidden; - } - .imageblock.imageblock--lg > .container, - .imageblock.imageblock--lg > div[class*='col-']:not(.imageblock__content) { - padding-top: 5.57142857em; - padding-bottom: 5.57142857em; - float: none; - overflow: hidden; - } -} -/**! 28. MailChimp & Campaign Monitor **/ -form[action*='createsend.com'] * { - transition: 0.3s linear; - -webkit-transition: 0.3s linear; - -moz-transition: 0.3s linear; - opacity: 0; -} -form[action*='createsend.com'].form--active * { - opacity: 1; -} -form[action*='createsend.com'] .input-checkbox + br { - display: none; -} -form[action*='createsend.com'].no-labels label { - display: none; -} -form[action*='createsend.com'] br { - display: none; -} -form[action*='createsend.com'] p > label:first-child { - margin-bottom: 0.92857143em; -} -form[action*='list-manage.com'] h2 { - font-family: 'Open Sans', 'Helvetica', 'Arial', sans-serif; - color: #252525; - font-weight: 300; - font-variant-ligatures: common-ligatures; - margin-top: 0; - margin-bottom: 0; - font-size: 1.35714286em; - line-height: 1.36842105em; - margin-bottom: 1.36842105263158em; - font-weight: 400; -} -form[action*='list-manage.com'] h2.inline-block + .h4.inline-block:not(.typed-text) { - margin-left: 0.68421052631579em; -} -form[action*='list-manage.com'] .input-group ul { - overflow: hidden; -} -form[action*='list-manage.com'] .input-group ul li { - float: left; -} -form[action*='list-manage.com'] * { - transition: 0.3s linear; - -webkit-transition: 0.3s linear; - -moz-transition: 0.3s linear; - opacity: 0; -} -form[action*='list-manage.com'].form--active * { - opacity: 1; -} -form[action*='list-manage.com'].no-labels label { - display: none; -} -form[action*='list-manage.com'] .small-meta { - font-size: 0.5em; -} -/**! 29. Twitter **/ -.twitter-feed .user { - display: none; -} -.twitter-feed .interact { - display: none; -} -.twitter-feed .timePosted { - font-size: .87em; -} -/**! 30. Transitions **/ -[class*='transition--'] { - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; - opacity: 0; -} -[class*='transition--'].transition--active { - opacity: 1; -} -.transition--scale { - transform: scale(0.98); - -webkit-transform: scale(0.98); -} -.transition--scale.transition--active { - opacity: 1; - transform: scale(1); - -webkit-transform: scale(1); -} -.transition--slide { - transform: translate3d(200px, 0, 0); - -webkit-transform: translate3d(200px, 0, 0); - transform: translate3d(30vw, 0, 0); - -webkit-transform: translate3d(30vw, 0, 0); -} -.transition--slide.transition--active { - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); -} -/**! 31. Switchable Sections **/ -.switchable { - position: relative; -} -.switchable div[class*='col-']:first-child { - float: left; - right: auto; -} -.switchable div[class*='col-']:first-child:not([class*='pull']):not([class*='push']) { - left: 0; -} -.switchable div[class*='col-']:last-child { - float: right; - left: auto; -} -.switchable div[class*='col-']:last-child:not([class*='pull']):not([class*='push']) { - right: 0; -} -.switchable.switchable--switch div[class*='col-']:first-child { - float: right; - right: 0; - left: auto; -} -.switchable.switchable--switch div[class*='col-']:first-child:not([class*='pull']):not([class*='push']) { - left: auto; -} -.switchable.switchable--switch div[class*='col-']:last-child { - float: left; - left: 0; - right: auto; -} -.switchable .switchable__text { - margin-top: 3.71428571em; -} -.switchable > div[class*='col-'] { - padding: 0; -} -/**! 32. Typed Effect **/ -.typed-text { - display: inline-block; -} -.typed-text.typed-text--cursor:after { - content: '|'; - font-size: 1.2em; - -webkit-animation: blink 0.7s infinite; - animation: blink 0.7s infinite; - position: relative; - right: 6px; -} -@keyframes blink { - 0% { - opacity: 1; - } - 50% { - opacity: 0; - } - 100% { - opacity: 1; - } -} -@-webkit-keyframes blink { - 0% { - opacity: 1; - } - 50% { - opacity: 0; - } - 100% { - opacity: 1; - } -} -/**! 33. Gradient BG **/ -[data-gradient-bg] { - position: relative; - background: #252525; -} -[data-gradient-bg] > canvas { - position: absolute; - width: 100%; - height: 100%; - top: 0; - left: 0; -} -[data-gradient-bg] > canvas + .background-image-holder { - opacity: .2 !important; -} -/**! 34. Bars **/ -.bar { - padding: 1.85714286em 0; -} -.bar .logo { - margin: 0; - position: relative; - top: 4px; -} -.bar .menu-horizontal { - position: relative; - top: 6px; -} -.bar:not([class*='visible-']) + .bar { - margin-top: 0.92857143em; -} -.bar.bar--xs { - padding: 0.46428571em 0; -} -.bar.bar--sm { - padding: 0.92857143em 0; -} -.bar.bar--lg { - padding: 2.78571429em 0; -} -.bar.bar--lg .logo { - top: 0; -} -.bar.bar--xlg { - padding: 4.64285714em 0; -} -.bar.bar--xlg .logo { - top: 0; -} -.bar.bg--dark .logo-dark { - display: none; -} -.bar:not(.bg--dark):not(.bar--transparent) .logo-light { - display: none; -} -@media all and (max-width: 767px) { - .bar.bar--mobile-sticky[data-scroll-class*='fixed'].pos-fixed { - position: fixed; - width: 100%; - background: #fff; - z-index: 999; - } - .bar.bar--mobile-sticky[data-scroll-class*='fixed'] + .bar.pos-fixed { - top: 3.71428571em; - position: fixed; - width: 100%; - background: #fff; - z-index: 999; - } -} -@media all and (min-width: 991px) { - .bar__module:not(:only-child) { - display: inline-block; - } - .bar__module:not(:last-child) { - margin-right: 0.92857143em; - } - .bar--transparent:not(.bar--dark) { - background: none; - } - .bar--transparent:not(.bar--dark) .logo-dark { - display: none; - } - .bar--transparent:not(.bar--dark) .logo-light { - display: inline-block; - } - .bar--transparent:not(.bar--dark):not(.pos-fixed) .menu-horizontal > li > a, - .bar--transparent:not(.bar--dark):not(.pos-fixed) .menu-horizontal > li > span { - color: #fff; - } - .bar--transparent:not(.bar--dark):not(.pos-fixed) .btn:not([class*='primary']) { - border-color: rgba(255, 255, 255, 0.3); - } - .bar--transparent:not(.bar--dark):not(.pos-fixed) .btn:not([class*='primary']) .btn__text { - color: #fff; - } - .bar--transparent:not(.bar--dark):not(.pos-fixed) .btn:not([class*='primary']):hover { - border-color: rgba(255, 255, 255, 0.7); - } - .bar--absolute { - position: absolute; - } - .bar--absolute, - .pos-fixed { - z-index: 99; - width: 100%; - } - .bar.pos-fixed { - position: fixed; - top: 0; - animation: fadeInDown 0.3s ease-out forwards; - box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); - box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.04); - } - .bar.pos-fixed:not([class*='bg-']) { - background: #ffffff; - } - .bar.pos-fixed:not([class*='bg-']) .logo-dark { - display: inline-block; - } - .bar.pos-fixed:not([class*='bg-']) .logo-light { - display: none; - } - .bar.pos-fixed.bg--dark { - background: #252525; - } -} -@media all and (max-width: 767px) { - .bar__module { - margin-bottom: 0.92857143em; - } - .bar__module + .bar__module { - margin-top: 1em; - } - .bar__module .btn { - display: block; - } - .bar__module .btn + .btn { - margin-left: 0 !important; - } - .bar__module .btn:not(:last-child) { - margin-bottom: 0.92857143em; - } - .bar + nav.bar { - padding-top: 0; - } -} -/**! 35. Navigation InPage **/ -.page-navigator { - position: fixed; - padding: 0; - top: 50%; - transform: translateY(-50%); - right: 1.85714286em; - z-index: 10; -} -.page-navigator ul { - display: inline-block; - padding: 0.92857143em; - background: rgba(0, 0, 0, 0.4); - border-radius: 1.85714286em; - transition: all .2s ease; -} -.page-navigator ul:hover { - background: rgba(0, 0, 0, 0.6); -} -.page-navigator ul li:not(:last-child) { - margin-bottom: 1.85714286em; -} -@media all and (max-width: 767px) { - .page-navigator { - right: 0; - } - .page-navigator ul { - border-radius: 1.85714286em 0 0 1.85714286em; - padding: 1.85714286em 0.92857143em; - } -} -.page-navigator li a { - width: 8px; - height: 8px; - background: #fff; - border-radius: 50%; - transition: all .2s ease; - display: block; - position: relative; -} -.page-navigator li a:not(:hover) { - opacity: .5; -} -.page-navigator li a.inner-link--active { - opacity: 1; - animation: bulge .5s ease; - -webkit-animation: bulge .5s ease; -} -@keyframes bulge { - 0% { - transform: scale(1); - } - 50% { - transform: scale(1.3); - } - 100% { - transform: scale(1); - } -} -@-webkit-keyframes bulge { - 0% { - transform: scale(1); - } - 50% { - transform: scale(1.3); - } - 100% { - transform: scale(1); - } -} -.page-navigator li a[data-title]:before { - content: attr(data-title); - position: absolute; - right: 12px; - top: -14px; - background: #222; - color: #fff; - border-radius: 6px; - padding: 4px 8px; - display: inline-block; - transition: all .2s ease; - white-space: nowrap; -} -.page-navigator li a[data-title]:not(:hover):before { - opacity: 0; - transform: translateX(-20px); -} -/**! 36. Helper Classes **/ -.clearfix { - overflow: hidden; -} -.clearfix-after:after { - content: ""; - display: table; - clear: both; -} -.allow-overflow { - overflow: visible; -} -.container .row--gapless { - padding-left: 15px; - padding-right: 15px; -} -.container .row--gapless > div[class*='col-'] { - padding: 0; -} -@media all and (max-width: 767px) { - .text-left-xs { - text-align: left; - } -} -@media all and (max-width: 991px) { - .text-left-sm { - text-align: left; - } -} -section > .row--gapless { - padding-left: 0; - padding-right: 0; -} -section > .row--gapless > div[class*='col-'] { - padding: 0; -} -div.right { - float: right; -} -div.left { - float: left; -} -section.text-right > .container:last-child > .row:only-child > div[class*='col-']:only-child { - float: right; -} -/**! 37. Spacing **/ -section, -footer { - padding-top: 7.42857143em; - padding-bottom: 7.42857143em; -} -section.space--xxs, -footer.space--xxs { - padding-top: 1.85714286em; - padding-bottom: 1.85714286em; -} -section.space--xs, -footer.space--xs { - padding-top: 3.71428571em; - padding-bottom: 3.71428571em; -} -section.space--sm, -footer.space--sm { - padding-top: 4.95238095em; - padding-bottom: 4.95238095em; -} -section.space--md, -footer.space--md { - padding-top: 11.14285714em; - padding-bottom: 11.14285714em; -} -section.space--lg, -footer.space--lg { - padding-top: 14.85714286em; - padding-bottom: 14.85714286em; -} -section.space--xlg, -footer.space--xlg { - padding-top: 29.71428571em; - padding-bottom: 29.71428571em; -} -section.space--0, -footer.space--0 { - padding: 0; -} -section.section--even, -footer.section--even { - padding-top: 7.42857143em; - padding-bottom: 7.42857143em; -} -section.space-bottom--sm, -footer.space-bottom--sm { - padding-bottom: 4.95238095em; -} -@media all and (max-width: 767px) { - section, - footer, - section.section--even { - padding: 5.57142857em 0; - } - section.space--lg, - footer.space--lg, - section.section--even.space--lg, - section.space--md, - footer.space--md, - section.section--even.space--md { - padding: 5.57142857em 0; - } - section.space--xlg, - footer.space--xlg, - section.section--even.space--xlg { - padding: 8.35714286em 0; - } -} -div[class*='col-'] > div[class*='col-']:first-child { - padding-left: 0; -} -div[class*='col-'] > div[class*='col-']:last-child { - padding-right: 0; -} -@media all and (max-width: 767px) { - .col-xs-6:nth-child(odd) { - padding-right: 7.5px; - } - .col-xs-6:nth-child(even) { - padding-left: 7.5px; - } -} -@media all and (min-width: 768px) { - .mt--1 { - margin-top: 1.85714286em; - } - .mt--2 { - margin-top: 3.71428571em; - } - .mt--3 { - margin-top: 5.57142857em; - } - .mb--1 { - margin-bottom: 1.85714286em; - } - .mb--2 { - margin-bottom: 3.71428571em; - } - .mb--3 { - margin-bottom: 5.57142857em; - } -} -@media all and (max-width: 990px) { - .mt--1, - .mt--2 { - margin-top: 1.85714286em; - } - .mt--3 { - margin-top: 2.78571429em; - } -} -.unpad { - padding: 0; -} -.unpad--bottom { - padding-bottom: 0; -} -.unpad--top { - padding-top: 0; -} -section.unpad--bottom { - padding-bottom: 0; -} -section.unpad { - padding: 0; -} -section.unpad--top { - padding-top: 0; -} -.unmarg--bottom { - margin-bottom: 0; -} -.unmarg { - margin: 0; -} -.unmarg--top { - margin-top: 0; -} -/**! 38. Boxed Layout **/ -@media all and (min-width: 1280px) { - body.boxed-layout { - padding: 3.71428571em 0; - background: #ededed; - } - body.boxed-layout section:not([class*='bg-']):not(.imagebg), - body.boxed-layout footer:not([class*='bg-']):not(.imagebg), - body.boxed-layout nav:not([class*='bg-']):not(.bar--transparent):not(.bar--absolute), - body.boxed-layout .tabs-container:not([class*='bg-']):not(.imagebg) { - background: #ffffff; - } - body.boxed-layout .nav-container, - body.boxed-layout .main-container, - body.boxed-layout > section, - body.boxed-layout nav { - max-width: 1280px; - margin: 0 auto; - } -} -/**! 39. Wizard **/ -.wizard__body { - list-style: none; -} -.wizard__step:not(.active) { - display: none; -} -.wizard__step .wizard__title { - display: none; -} -.wizard__controls { - overflow: hidden; -} -.wizard__controls .wizard-prev { - float: left; -} -.wizard__controls .wizard-next { - float: right; -} -.wizard__controls .wizard-prev:hover, -.wizard__controls .wizard-next:hover { - transform: none !important; -} -.wizard__controls .wizard-prev.inactive, -.wizard__controls .wizard-next.inactive { - pointer-events: none; - opacity: .3; - cursor: not-allowed; -} -/**! 40. Alerts **/ -.alert { - overflow: hidden; - border: 1px solid #e6e6e6; - padding: 0.92857143em; -} -.alert .alert__body, -.alert .alert__close { - display: inline-block; - user-select: none; -} -.alert .alert__body { - float: left; -} -.alert .alert__close { - float: right; - cursor: pointer; -} -.alert.bg--error { - background: #fce8e8; - border-color: #e23636; -} -.alert.bg--error .alert__close { - color: #e23636; -} -.alert.bg--success { - background: #e4f5e5; - border-color: #4ebf56; -} -.alert.bg--success .alert__close { - color: #4ebf56; -} -.alert.bg--primary { - background: #fafcfe; - border-color: #4a90e2; -} -.alert.bg--primary .alert__body > span { - color: #666666; -} -.alert.bg--primary .alert__close { - color: #4a90e2; -} -.alert.alert--dismissed { - display: none; -} -/**! 41. Progress - Horizontal **/ -.progress-horizontal:after { - content: ""; - display: table; - clear: both; -} -.progress-horizontal .progress-horizontal__bar { - position: relative; - overflow: hidden; -} -.progress-horizontal .progress-horizontal__progress { - position: absolute; - top: 0; - left: 0; - height: 100%; -} -/**! 42. Theme Overrides **/ -/*! -- Stack Customizers -- */ -.box-shadow { - box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.04); -} -.box-shadow-shallow { - box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.06); -} -.box-shadow-wide { - box-shadow: 0 23px 40px rgba(0, 0, 0, 0.2); -} -.border--round { - border-radius: 6px; -} -.border--round:before { - border-radius: 6px; -} -.border--round .background-image-holder { - border-radius: 6px; -} -.border--round [data-scrim-top]:before, -.border--round [data-scrim-bottom]:before, -.border--round [data-overlay]:before { - border-radius: 6px; -} -.imageblock.border--round .background-image-holder { - border-radius: 6px 0 0 6px; -} -@media all and (max-width: 767px) { - .imageblock.border--round .background-image-holder { - border-radius: 6px 6px 0 0; - } -} -.theme--square .border--round, -.theme--square .btn { - border-radius: 0px; -} -.theme--bordered { - border: 0.92857143em solid #252525; -} -.main-container.transition--fade:not(.transition--active) { - cursor: wait; -} -@media all and (min-width: 1280px) { - body.boxed-layout > section.bar-3:first-of-type { - border-radius: 6px 6px 0 0; - } - body.boxed-layout .main-container > footer:last-child { - border-radius: 0 0 6px 6px; - } -} -body.boxed-layout .modal-container section:not([class*='bg-']) { - background: none; -} -/*! -- Stack Helpers -- */ -@media all and (max-width: 767px) { - .block--xs { - margin-top: 0.92857143em; - } -} -.container .container { - max-width: 100%; -} -.switchable-toggle { - cursor: pointer; - user-select: none; - -webkit-user-select: none; -} -.back-to-top { - position: fixed; - width: 3.71428571em; - height: 3.71428571em; - background: #fff; - border-radius: 50%; - text-align: center; - right: 1.85714286em; - bottom: 3.71428571em; - padding-top: 12px; - box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); - box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.04); - z-index: 99; - border: 1px solid #ececec; - transition: 0.2s ease-out; - -webkit-transition: 0.2s ease-out; - -moz-transition: 0.2s ease-out; -} -.back-to-top i { - color: #252525; -} -.back-to-top:not(.active) { - opacity: 0; - transform: translate3d(0, 20px, 0); - -webkit-transform: translate3d(0, 20px, 0); - pointer-events: none; -} -.back-to-top.active:hover { - transform: translate3d(0, -5px, 0); - -webkit-transform: translate3d(0, -5px, 0); -} -.disable-scroll-bars { - -ms-overflow-style: none; -} -.disable-scroll-bars::-webkit-scrollbar { - display: none; -} -/*! -- Stack Animations -- */ -@keyframes fadeInUp { - from { - opacity: 0; - transform: translate3d(0, 50px, 0); - -webkit-transform: translate3d(0, 50px, 0); - } - to { - opacity: 1; - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); - -webkit-font-smoothing: antialiased; - } -} -@-webkit-keyframes fadeInUp { - from { - opacity: 0; - transform: translate3d(0, 50px, 0); - -webkit-transform: translate3d(0, 50px, 0); - } - to { - opacity: 1; - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); - -webkit-font-smoothing: antialiased; - } -} -@keyframes fadeInDown { - from { - opacity: 0; - transform: translate3d(0, -100px, 0); - -webkit-transform: translate3d(0, -100px, 0); - } - to { - opacity: 1; - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); - -webkit-font-smoothing: antialiased; - } -} -@-webkit-keyframes fadeInDown { - from { - opacity: 0; - transform: translate3d(0, -100px, 0); - -webkit-transform: translate3d(0, -100px, 0); - } - to { - opacity: 1; - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); - -webkit-font-smoothing: antialiased; - } -} -@keyframes fadeOutUp { - from { - opacity: 1; - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); - } - to { - opacity: 0; - transform: translate3d(0, -50px, 0); - -webkit-transform: translate3d(0, -50px, 0); - -webkit-font-smoothing: antialiased; - } -} -@-webkit-keyframes fadeOutUp { - from { - opacity: 1; - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); - } - to { - opacity: 0; - transform: translate3d(0, -50px, 0); - -webkit-transform: translate3d(0, -50px, 0); - -webkit-font-smoothing: antialiased; - } -} -@keyframes fadeOutRight { - from { - opacity: 1; - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); - } - to { - opacity: 0; - transform: translate3d(50px, 0, 0); - -webkit-transform: translate3d(50px, 0, 0); - -webkit-font-smoothing: antialiased; - } -} -@-webkit-keyframes fadeOutRight { - from { - opacity: 1; - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); - } - to { - opacity: 0; - transform: translate3d(50px, 0, 0); - -webkit-transform: translate3d(50px, 0, 0); - -webkit-font-smoothing: antialiased; - } -} -@keyframes fadeInLeft { - from { - opacity: 0; - transform: translate3d(-50px, 0, 0); - -webkit-transform: translate3d(-50px, 0, 0); - } - to { - opacity: 1; - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); - -webkit-font-smoothing: antialiased; - } -} -@-webkit-keyframes fadeInLeft { - from { - opacity: 0; - transform: translate3d(-50px, 0, 0); - -webkit-transform: translate3d(-50px, 0, 0); - } - to { - opacity: 1; - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); - -webkit-font-smoothing: antialiased; - } -} -@keyframes pulse { - 0% { - opacity: 0; - transform: scale(1); - -webkit-transform: scale(1); - } - 50% { - opacity: 1; - } - 100% { - opacity: 0; - transform: scale(2); - -webkit-transform: scale(2); - } -} -@-webkit-keyframes pulse { - 0% { - opacity: 0; - transform: scale(1); - -webkit-transform: scale(1); - } - 50% { - opacity: 1; - } - 100% { - opacity: 0; - transform: scale(2); - -webkit-transform: scale(2); - } -} -@keyframes kenBurns { - 0% { - transform: scale(1); - } - 100% { - transform: scale(1.1); - } -} -@-webkit-keyframes kenBurns { - 0% { - transform: scale(1); - } - 100% { - transform: scale(1.1); - } -} -/*! -- Stack Sections -- */ -section:not(.unpad):not(.imagebg):not([class*='bg--']):not(.imageblock):not(.unpad--bottom):not(.border--bottom):not(.space--xxs) + section:not(.unpad):not(.imagebg):not([class*='bg--']):not(.imageblock):not(.border--bottom):not(.space--xxs) { - padding-top: 0; -} -section:not(.unpad):not(.imagebg):not([class*='bg--']):not(.imageblock):not(.unpad--bottom):not(.border--bottom) + footer:not(.unpad):not(.imagebg):not([class*='bg--']):not(.imageblock):not(.unpad--bottom):not(.border--bottom) { - padding-top: 0; -} -section:not(.imagebg):not([class*='bg-']) + section.bg--secondary { - border-top: 1px solid #ebebeb; -} -section.bg--secondary:not(.imagebg) + section:not(.imagebg):not([class*='bg-']) { - border-top: 1px solid #ebebeb; -} -section.bg--secondary:not(.unpad):not(.imageblock):not(.unpad--bottom):not(.border--bottom) + section.bg--secondary { - padding-top: 0; -} -section.bg--secondary + footer:not(.bg--dark):not(.bg--secondary) { - border-top: 1px solid #ebebeb; -} -section.bg--dark + section.bg--dark { - padding-top: 0; -} -section.bg--dark:last-of-type + footer.bg--dark { - background: #1b1b1b; -} -section.border--bottom:not([data-gradient-bg]) { - border-bottom: 1px solid #ececec; -} -section.unpad { - overflow: hidden; -} -section:not([class*='bg--']) + footer.bg--secondary { - border-top: 1px solid #ebebeb; -} -section.text-center div[class*='col-']:first-child:last-child { - margin: 0 auto; - float: none; -} -.section--overlap { - z-index: 2; - position: relative; -} -/*! -- Stack Typography -- */ -@media all and (max-width: 1024px) { - html { - font-size: 80%; - } -} -h1, -.h1 { - letter-spacing: -0.01em; -} -h1:not(:last-child), -.h1:not(:last-child) { - margin-bottom: 0.59090909090909em; -} -@media all and (min-width: 768px) { - h1.h1--large, - .h1.h1--large { - font-weight: 200; - font-size: 4.428571428571429em; - line-height: 1.048387096774194em; - } - h1.h1--large:not(:last-child), - .h1.h1--large:not(:last-child) { - margin-bottom: 0.419354838709677em; - } - h1.h1--large.type--uppercase, - .h1.h1--large.type--uppercase { - letter-spacing: 10px; - margin-right: -10px; - } - h1.h1--large + p.lead, - .h1.h1--large + p.lead { - margin-top: 2.052631578947368em; - } -} -h2, -.h2 { - margin-bottom: 0.78787878787879em; -} -h3, -.h3 { - margin-bottom: 1.04em; -} -h3 strong, -.h3 strong { - font-weight: 400; -} -blockquote { - font-family: 'Merriweather', serif; - font-style: italic; - font-weight: 300; -} -blockquote:not(:last-child) { - margin-bottom: 1.04em; -} -blockquote > p { - font-size: 1em !important; -} -h4, -.h4 { - margin-bottom: 1.36842105263158em; - font-weight: 400; -} -h4.inline-block + .h4.inline-block:not(.typed-text), -.h4.inline-block + .h4.inline-block:not(.typed-text) { - margin-left: 0.68421052631579em; -} -h5, -.h5 { - font-weight: 600; -} -h5:not(:last-child), -.h5:not(:last-child) { - margin-bottom: 1.85714286em; -} -h6, -.h6 { - font-weight: 700; -} -h6:not(:last-child), -.h6:not(:last-child) { - margin-bottom: 2.16666666666667em; -} -h6.type--uppercase, -.h6.type--uppercase { - letter-spacing: 1px; - margin-right: -1px; -} -span.h1:not(.inline-block), -span.h2:not(.inline-block), -span.h3:not(.inline-block), -span.h4:not(.inline-block), -span.h5:not(.inline-block), -span.h6:not(.inline-block) { - display: block; -} -b { - font-weight: 600; -} -hr { - border-color: #ECECEC; -} -.bg--dark hr { - border-color: #585858; -} -[class*='bg-']:not(.bg--white):not(.bg--secondary) p, -[class*='imagebg']:not(.image--light) p { - opacity: .9; -} -.lead { - font-weight: 400; - color: #808080; -} -.lead:not(:last-child) { - margin-bottom: 1.36842105263158em; -} -.lead + .btn:last-child { - margin-top: 0.92857143em; -} -p:last-child { - margin-bottom: 0; -} -p strong { - color: #252525; -} -pre { - padding: 0.92857143em; - background: #fafafa; - border: 1px solid #ececec; - border-radius: 6px; - line-height: 20px; - max-height: 500px; -} -.bg--secondary > pre { - background: #f5f5f5; - border-color: #ddd; -} -.text-block:not(:last-child) { - margin-bottom: 1.85714286em; -} -.text-block h2, -.text-block .h2 { - margin-bottom: 0.3939393939394em; -} -.text-block h5, -.text-block .h5 { - margin: 0; -} -.text-block h4:not(:last-child), -.text-block .h4:not(:last-child) { - margin-bottom: 0.3421052631579em; -} -.text-block h3, -.text-block .h3 { - margin-bottom: 0.52em; -} -@media all and (min-width: 768px) { - div[class*='col-'] .text-block + .text-block { - margin-top: 3.71428571em; - } -} -.heading-block { - margin-bottom: 3.71428571em; -} -.heading-block h1, -.heading-block h2, -.heading-block h3, -.heading-block h4, -.heading-block h5, -.heading-block h6, -.heading-block .h1, -.heading-block .h2, -.heading-block .h3, -.heading-block .h4, -.heading-block .h5, -.heading-block .h6 { - margin-bottom: 0; -} -/*! -- Stack Colours -- */ -.bg--dark .bg--secondary { - background: #343434; -} -/*! -- Stack Links -- */ -a { - color: #4a90e2; - font-weight: 700; -} -a:hover { - color: #2275d7; - text-decoration: underline; -} -a.block { - font-weight: normal; - text-decoration: none; - color: #666666; -} -p a, -span a, -label a { - font-size: 1em; - text-decoration: underline; - font-weight: 400; - line-height: 1.85714286em; -} -p + a:not(.btn) { - font-size: 0.85714286em; - line-height: 2.16666667em; -} -.imagebg:not(.image--light) a { - color: #fff; - font-weight: 600; -} -/*! -- Stack Tables -- */ -table { - width: 100%; - border-collapse: separate; -} -table th, -table td { - padding: 0.92857143em; -} -table th { - background: #fafafa; - color: #252525; -} -table tr:not(:last-of-type) { - border-bottom: 1px solid #ececec; -} -table.border--round { - border-radius: 6px; - border: 1px solid #ececec; -} -.table--alternate-column th:nth-child(odd) { - background: none; -} -.table--alternate-column td:nth-child(even) { - background: #fafafa; -} -.table--alternate-row tbody tr:nth-child(even) { - background: #fafafa; -} -.bg--dark table.border--round { - border-radius: 6px; - border: 1px solid #3f3f3f; -} -.bg--dark table th { - background: #3f3f3f; - color: #fff; -} -.bg--dark .table--alternate-row tbody tr:nth-child(even) { - background: #323232; -} -/*! -- Stack Lists -- */ -ul:not([class*='menu']) li > a { - font-weight: normal; -} -ul:not([class*='menu']) li > a:hover { - text-decoration: none; -} -ol { - list-style-position: outside; - list-style-type: decimal; -} -ol li:not(:last-child) { - margin-bottom: 1.85714286em; -} -ol.lead li:not(:last-child) { - margin-bottom: 1.26315789473684em; -} -.list-inline { - margin-left: 0; - display: inline-block; -} -.list-inline li { - padding: 0; -} -.list-inline li:not(:last-child) { - margin-right: 1.85714286em; -} -.list-inline:not(:last-child) { - margin-right: 1.85714286em; -} -.list-inline--images img { - max-height: 2.78571429em; -} -@media all and (min-width: 768px) { - .list-inline--images li:not(:last-child) { - margin-right: 5.57142857em; - } -} -@media all and (max-width: 767px) { - .list-inline--images li:not(:last-child) { - margin-bottom: 1.85714286em; - } -} -.list--loose > li:not(:last-child) { - margin-bottom: 0.46428571em; -} -.list--hover li { - transition: 0.2s ease; - -webkit-transition: 0.2s ease; - -moz-transition: 0.2s ease; -} -.list--hover li:not(:hover) { - opacity: .6; -} -.social-list a { - color: #252525; -} -.imagebg:not(.image--light) .social-list a { - color: #fff; -} -.results-list > li > a:first-child { - display: flex; - align-items: center; - margin-bottom: 0.92857143em; -} -.results-list > li > a:first-child span { - display: inline-block; - margin-left: 0.46428571em; -} -.results-list > li > a:first-child h4 { - display: inline-block; - margin-bottom: 0; -} -.results-list > li > a:first-child:hover h4, -.results-list > li > a:first-child:hover span { - text-decoration: underline; -} -.results-list > li:not(:last-child) { - margin-bottom: 1.85714286em; - padding-bottom: 1.85714286em; - border-bottom: 1px solid rgba(0, 0, 0, 0.1); -} -@media all and (max-width: 767px) { - .list-inline:not(.social-list):not(.list-inline--images) { - display: block; - } - .list-inline:not(.social-list):not(.list-inline--images) li { - display: block; - margin: 0; - } - .list-inline:not(.social-list):not(.list-inline--images) li:not(:last-child) { - margin-bottom: 0.46428571em; - } -} -@media all and (max-width: 767px) { - .list-inline { - min-width: 100%; - } -} -.row--list span.h6 { - margin-bottom: 0; -} -.row--list span.h3:last-child { - margin-bottom: 0; -} -@media all and (max-width: 767px) { - .row--list > li { - margin-bottom: 0.92857143em; - } -} -/*! -- Stack Rules -- */ -hr:first-child { - margin-top: 0; -} -hr.short { - width: 2.78571429em; - border-color: #4a90e2; -} -hr[data-title] { - margin: 2.78571429em 0; - text-align: center; -} -hr[data-title]:before { - content: attr(data-title); - background: #ffffff; - position: relative; - bottom: 14px; - padding: 0.92857143em; - font-style: italic; -} -.bg--dark hr:not(.short), -.imagebg hr:not(.short), -.bg--primary hr:not(.short) { - opacity: .3; -} -/*! -- Stack Buttons -- */ -.btn { - position: relative; -} -.btn:not([class*='primary']) { - border-color: #d3d3d3; -} -.btn:not([class*='primary']):hover { - border-color: #252525; -} -.btn.type--uppercase { - letter-spacing: .5px; -} -.btn.type--uppercase .btn__text { - letter-spacing: .5px; - margin-right: -0.5px; -} -.btn .label { - top: -0.92857143em; - right: -3.71428571em; -} -.btn.btn--lg .btn__text { - font-weight: 600; -} -.btn.btn--lg.type--uppercase .btn__text { - letter-spacing: 1px; -} -.btn + p.type--fine-print, -.btn + span.type--fine-print { - margin-top: 1.08333333333334em; -} -.btn.block { - margin-left: 0; -} -.btn.block + .btn.block { - margin-top: 0.92857143em; -} -.btn:hover { - transform: translate3d(0, -2px, 0); - -webkit-transform: translate3d(0, -2px, 0); -} -.btn.btn--sm + .btn--sm { - margin-left: 0.92857143em; -} -p > .btn { - text-decoration: none; -} -@media all and (max-width: 767px) { - .btn:not(:last-child) { - margin-bottom: 1.85714286em; - } -} -.btn--icon { - padding-left: 5.57142857em; -} -.btn--icon i { - position: absolute; - height: 100%; - left: 0; - top: 0; - background: rgba(0, 0, 0, 0.1); - padding: 0 13px; - border-radius: 6px 0 0 6px; - font-size: 16px; - line-height: 41px; -} -.btn--icon i.socicon { - line-height: 42px; -} -.btn--cart { - width: 3.71428571em; - height: 3.71428571em; - border: 2px solid #252525; - display: block; - text-align: center; - border-radius: 6px; - opacity: .4; - padding: 0; -} -.btn--cart:hover { - opacity: 1; -} -.btn--cart .btn__text { - position: absolute; - width: 100%; - left: 0; - top: 50%; - transform: translateY(-50%); - font-size: 1.142857142857143em; -} -.imagebg:not(.image--light) .btn--icon:not([class*='bg']):not([class*='primary']) i { - color: #fff; - background: rgba(255, 255, 255, 0.2); -} -@media all and (min-width: 768px) { - .btn-group .btn { - margin-bottom: 0 !important; - margin-left: 0; - } - .btn-group .btn + .btn { - margin-left: 0; - } - .btn-group .btn:not(:first-child):not(:last-child) { - border-radius: 0; - } - .btn-group .btn:first-child { - border-radius: 6px 0 0 6px; - } - .btn-group .btn:last-child { - border-radius: 0 6px 6px 0; - } - .btn-group .btn:first-child:nth-last-child(2), - .btn-group .btn:last-child:nth-child(2) { - width: 50%; - } -} -.btn-group { - border: none; - padding: 0; -} -@media all and (max-width: 767px) { - .btn-group .btn { - display: block; - } -} -.bg--primary div:not([class*='feature']) .btn--primary { - background: #fff; - border-color: #fff; -} -.bg--primary div:not([class*='feature']) .btn--primary .btn__text { - color: #4a90e2; -} -.bg--primary > .btn--primary { - background: #fff; - border-color: #fff; -} -.bg--primary > .btn--primary .btn__text { - color: #4a90e2; -} -.bg--dark .btn:not(.btn--primary) { - border-color: #3f3f3f; -} -.bg--dark .btn:not(.btn--primary):hover { - border-color: #656565; -} -.bg--dark .btn .btn__text { - color: #fff; -} -.imagebg:not(.image--light) .btn:not([class*='primary']) { - border-color: rgba(255, 255, 255, 0.3); -} -.imagebg:not(.image--light) .btn:not([class*='primary']):hover { - border-color: #fff; -} -.imagebg.image--light .btn:not([class*='primary']) { - border-color: #252525; - background: rgba(255, 255, 255, 0.3); -} -.imagebg.image--light .btn:not([class*='primary']):hover { - background: rgba(255, 255, 255, 0.5); -} -h1 + .btn, -.h1 + .btn { - margin-top: 1.85714286em; -} -h2 + .btn, -.h2 + .btn { - margin-top: 0.92857143em; -} -/*! -- Stack Images -- */ -img:last-child { - margin-bottom: 0; -} -img.flag { - max-height: 1.85714286em; -} -img.image--sm:not(:last-child) { - margin-bottom: 0.92857143em; -} -img.promo.border--round { - border: 1px solid #ececec; -} -p.lead img { - max-height: 1.68421053em; -} -.imagebg h1, -.imagebg h2, -.imagebg h3, -.imagebg h4, -.imagebg h5, -.imagebg h6 { - position: relative; -} -.imagebg:not(.image--light) span { - color: #fff; -} -.imagebg.border--round { - overflow: hidden; -} -section.parallax .row .background-image-holder { - transform: none !important; - top: 0 !important; -} -.triptych.border--round img { - position: relative; - border-radius: 6px; - width: 33.333333%; - float: left; - margin: 0; -} -.triptych.border--round img:nth-child(2) { - transform: scale(1.2); - -webkit-transform: scale(1.2); - z-index: 2; - box-shadow: 0 23px 40px rgba(0, 0, 0, 0.2); -} -.gallery > div[class*='col-'] { - margin-bottom: 30px; -} -.gallery-1 { - overflow: hidden; - position: relative; -} -.gallery-1 .gallery__image:not(:last-child) { - margin-bottom: 30px; -} -.gallery-1 > div[class*='col-']:first-child > .gallery__image { - height: 800px; -} -.gallery-1 > div[class*='col-']:last-child > .gallery__image { - height: calc(385px); -} -.gallery__image { - position: relative; - overflow: hidden; -} -@media all and (max-width: 767px) { - .gallery-1 .gallery__image { - max-height: 300px; - margin-bottom: 15px; - } - .gallery-1 .gallery__image:not(:last-child) { - margin-bottom: 15px; - } -} -.section--ken-burns { - overflow: hidden; -} -.section--ken-burns > .background-image-holder, -.section--ken-burns > img:only-child { - animation: kenBurns 15s ease alternate infinite; - -webkit-animation: kenBurns 15s ease alternate infinite; -} -/*! -- Stack Titles -- */ -.breadcrumbs { - list-style: none; -} -.breadcrumbs li { - font-size: 0.85714285714286em; - display: inline-block; -} -.breadcrumbs li:not(:last-child) { - margin-right: 1.08333333333334em; -} -.breadcrumbs li:not(:last-child):after { - content: '\00bb'; - margin-left: 1.08333333333334em; -} -.breadcrumbs li a { - font-weight: normal; -} -.imagebg .breadcrumbs, -.bg--primary .breadcrumbs { - color: #fff; -} -.imagebg .breadcrumbs a, -.bg--primary .breadcrumbs a { - color: #fff; - font-weight: 600; -} -.elements-title { - border-top: none !important; -} -.elements-title + .tabs-container:not( :nth-last-child(2)), -.elements-title + section:not( :nth-last-child(2)) { - margin-bottom: 9.28571429em; -} -.elements-title + section:not(.imagebg):not([class*='bg-']):not(.unpad) { - padding-top: 1.85714286em; -} -/*! -- Stack Labels -- */ -.label { - display: inline-block; - font-size: 9px; - font-weight: 700; - letter-spacing: .5px; - color: #fff; - text-transform: uppercase; - height: 26px; - min-width: 65px; - padding: 0 10px; - text-align: center; - border-radius: 50px; - position: absolute; - z-index: 3; - top: 1.23809524em; - right: 1.23809524em; -} -.label:not([class*='bg--']) { - background: #31639c; -} -.label.label--inline { - position: relative; - top: 0; - right: 0; -} -.label.label--inline:not(:last-child) { - margin-right: 0.92857143em; -} -.label.label--inline + span, -.label.label--inline + p { - position: relative; - top: 1px; -} -.label.switchable-toggle { - left: 50%; - right: auto; - transform: translate3d(-50%, 0, 0); - -webkit-transform: translate3d(-50%, 0, 0); - box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.06); -} -.bg--primary-1 .label:not([class*='bg--']) { - background: #465773; -} -/*! -- Stack Bars -- */ -.menu-horizontal > li, -.menu-vertical > li { - font-family: 'Open Sans', 'Roboto', 'Helvetica', Sans-Serif; -} -.bar .logo { - max-height: 1.5em; - max-width: none; -} -.menu-horizontal > li > a, -.menu-horizontal > li > .modal-instance > a { - font-weight: 500; -} -.menu-horizontal > li a:hover { - text-decoration: none; -} -.hamburger-toggle i { - color: #252525; -} -@media all and (min-width: 990px) { - .menu-horizontal li:not(:last-child) { - margin-right: 1.23809524em; - } - .bar__module:not(:only-child) .menu-horizontal { - top: 0; - } -} -@media all and (min-width: 768px) and (max-width: 1023px) { - .bar-2 .menu-horizontal > li, - .bar-1 .menu-horizontal > li { - display: inline-block; - } - .bar-2 .menu-horizontal > li:not(:first-child), - .bar-1 .menu-horizontal > li:not(:first-child) { - margin-left: 0em; - } - .bar-2 .bar__module, - .bar-1 .bar__module { - margin-bottom: 1.0em; - } - .bar-2 .row div[class*='col-']:last-child .bar__module:last-child, - .bar-1 .row div[class*='col-']:last-child .bar__module:last-child { - margin-bottom: 0; - } -} -.bar-1 .menu-horizontal > li > .dropdown__trigger, -.bar-1 .menu-horizontal > li > a { - font-size: 0.857142857142857em; - line-height: 2.166666666666667em; - text-transform: uppercase; - font-weight: 600; - letter-spacing: .5px; -} -@media all and (min-width: 1024px) { - .bar-1 .bar__module + .bar__module { - margin-left: 0em; - } -} -@media all and (min-width: 991px) { - .bar-2 .logo { - position: absolute; - left: 50%; - transform: translateX(-50%); - } -} -.bar-3 { - font-size: 0.85714286em; -} -.bar-3 .menu-horizontal { - top: 0; -} -@media all and (max-width: 990px) { - .bar-3 .menu-horizontal li { - display: inline-block; - } - .bar-3 .menu-horizontal li:not(:last-child) { - margin-right: 0.92857143em; - } -} -@media all and (min-width: 990px) { - .bar-toggle .col-md-1 .logo { - top: 10px; - } -} -@media all and (max-width: 767px) { - .bar-4 .logo-light { - display: none; - } - .bar-4 .logo-dark { - margin-bottom: 1.85714286em; - } - .bar.bg--dark { - background: #252525; - } - .bar.bg--dark .hamburger-toggle i { - color: #fff; - } -} -/*! -- Stack Alerts -- */ -.alert { - border-radius: 6px; -} -.alert:not(:last-child) { - margin-bottom: 1.85714286em; -} -.alert .alert__close { - font-size: 1.35714286em; -} -/*! -- Stack Menu Toggle -- */ -.menu-toggle { - box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); - box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.04); - width: 3.71428571em; - height: 3.71428571em; - border-radius: 50%; - text-align: center; - background: #fff; - display: inline-block; - transition: 0.2s ease; - -webkit-transition: 0.2s ease; - -moz-transition: 0.2s ease; -} -.menu-toggle i { - font-size: 1.78571429em; - position: relative; - top: 13px; - color: #252525; -} -.menu-toggle:hover { - box-shadow: 0 23px 40px rgba(0, 0, 0, 0.2); - transform: translate3d(0, -2px, 0); - -webkit-transform: translate3d(0, -2px, 0); -} -/*! -- Stack Nav Utility -- */ -.nav-utility { - padding: 0.92857143em 0; -} -.nav-utility .nav-utility__module { - font-size: 0.85714285714286em; -} -.nav-utility .nav-utility__module a { - color: #666666; - font-weight: normal; -} -.nav-utility .nav-utility__module a i { - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; - display: inline-block; -} -.nav-utility .nav-utility__module a:hover i { - transform: scale(1.5); - -webkit-transform: scale(1.5); -} -.nav-utility .nav-utility__module.right:not(:last-child) { - margin-left: 2.16666666666667em; -} -.utility-toggle { - display: inline-block; - cursor: pointer; - width: 3px; - height: 3px; - position: relative; - bottom: 8px; - border-radius: 50%; - background: #252525; -} -.utility-toggle:before, -.utility-toggle:after { - content: ''; - width: 3px; - height: 3px; - border-radius: 50%; - position: absolute; - background: #252525; -} -.utility-toggle:before { - top: 6px; -} -.utility-toggle:after { - top: 12px; -} -/*! -- Stack Nav Stacked -- */ -.bar-stacked .logo { - margin-bottom: 3.71428571em; -} -/*! -- Stack Nav Side Menu -- */ -.notification.side-menu { - z-index: 9999; - background: #ffffff; - padding-top: 1.85714286em; - margin: 0; - height: 100%; - box-shadow: 0 23px 40px rgba(0, 0, 0, 0.2); - width: 27.85714286em; -} -.notification.side-menu .side-menu__module { - overflow: hidden; - padding: 2.78571429em; -} -.notification.side-menu .side-menu__module + hr:not(:last-child) { - margin: 0; -} -.notification.side-menu .menu-vertical li a { - font-size: 1.35714286em; - line-height: 1.36842105em; -} -.notification.side-menu .menu-vertical li a:hover { - text-decoration: none; -} -.notification.side-menu .btn:not(:last-child) { - margin-bottom: 1.85714286em; -} -.notification.side-menu .btn + ul.list--loose { - margin-top: 0.92857143em; -} -.notification.side-menu .notification-close-cross { - top: 0.92857143em; - right: 2.78571429em; - margin-top: 8px; -} -.notification.side-menu .social-list:not(:first-child) { - margin-top: 1.85714286em; -} -.menu-toggle.pos-fixed { - position: fixed; - right: 5.57142857em; - animation: fadeInDown .3s ease forwards; -} -@media all and (min-width: 768px) { - .side-menu .side-menu__module span.type--fine-print { - position: relative; - top: 8px; - } -} -@media all and (max-width: 767px) { - .side-menu { - width: 100%; - } - .side-menu .side-menu__module .float-right, - .side-menu .side-menu__module .float-left { - display: block; - } -} -/*! -- Stack Nav Sidebar Column -- */ -.nav-container.nav-container--sidebar + .main-container { - width: calc(100vw - 20.428571428571463em); - float: right; -} -.nav-container.nav-container--sidebar + .main-container .container { - max-width: 100%; -} -.nav-sidebar-column { - position: fixed; - z-index: 3; - left: 0; - width: 20.42857143em; - border-right: 1px solid #ececec; - height: 100vh; - overflow-y: scroll; - -ms-overflow-style: none; - padding: 2.78571429em 1.85714286em; -} -.nav-sidebar-column:not([class*='bg-']) { - background: #ffffff; -} -.nav-sidebar-column.bg--dark { - border-right: 1px solid #3f3f3f; -} -.nav-sidebar-column::-webkit-scrollbar { - display: none; -} -.nav-sidebar-column .logo { - max-height: 2.32142857em; - margin-bottom: 0.92857143em; -} -.nav-sidebar-column .text-block > p { - margin-bottom: 0.92857143em; -} -.nav-sidebar-column .menu-vertical li.dropdown:not(:hover):after { - opacity: .35; -} -.nav-sidebar-column .menu-vertical a:hover { - text-decoration: none; -} -.nav-sidebar-column .dropdown .dropdown__container, -.nav-sidebar-column .dropdown .dropdown__content { - left: 0 !important; - position: relative; - pointer-events: all; -} -.nav-sidebar-column .dropdown .dropdown__container:before { - height: 0; -} -.nav-sidebar-column .dropdown .dropdown__content { - transform: none !important; - box-shadow: none; - -webkit-box-shadow: none; - padding-top: 0.46428571em; - padding-right: 0; - padding-left: 0.46428571em; - background: none !important; -} -.nav-sidebar-column .dropdown .menu-vertical li.dropdown:after { - right: 1.85714286em; -} -.nav-sidebar-column .dropdown:not(.dropdown--active) .dropdown__container { - display: none; -} -.nav-sidebar-column .dropdown.dropdown--hover:hover > .dropdown__container { - display: block; -} -.nav-sidebar-column .social-list { - margin-bottom: 0.92857143em; -} -body.dropdowns--hover .nav-sidebar-column .dropdown:hover > .dropdown__container { - display: block; -} -.nav-sidebar-column-toggle { - transition: all .3s ease; - left: 0; - width: 3.71428571em; - height: 3.71428571em; - background: #ffffff; - text-align: center; - position: fixed; - z-index: 4; - cursor: pointer; - border-radius: 0 0 6px 0; - box-shadow: 2px 1px 4px rgba(0, 0, 0, 0.1); -} -.nav-sidebar-column-toggle > i { - transition: all .3s ease; - font-size: 1.78571429em; - position: relative; - top: 11px; -} -.nav-sidebar-column-toggle:not(.toggled-class) > i { - opacity: .5; -} -.nav-sidebar-column-toggle.toggled-class i:before { - content: '\e80b'; -} -@media all and (max-width: 990px) { - .nav-sidebar-column { - transition: all .3s ease; - left: -20.42857143em; - box-shadow: 2px 0px 4px rgba(0, 0, 0, 0); - } - .nav-sidebar-column.active { - left: 0; - box-shadow: 2px 0px 4px rgba(0, 0, 0, 0.1); - } - .nav-sidebar-column-toggle.toggled-class { - left: 20.42857143em; - } - .nav-container.nav-container--sidebar + .main-container { - width: 100%; - float: none; - } -} -.nav-container.nav-container--right .nav-sidebar-column { - right: 0; - left: auto; -} -.nav-container.nav-container--right + .main-container { - float: left; -} -.nav-container.nav-container--right .nav-sidebar-column-toggle { - left: auto; - right: 0; - border-radius: 0 0 0 6px; - box-shadow: -2px 1px 4px rgba(0, 0, 0, 0.1); -} -@media all and (max-width: 990px) { - .nav-container.nav-container--right .nav-sidebar-column { - right: -20.42857143em; - left: auto; - } - .nav-container.nav-container--right .nav-sidebar-column.active { - left: auto; - right: 0; - box-shadow: -2px 0px 4px rgba(0, 0, 0, 0.1); - } - .nav-container.nav-container--right .nav-sidebar-column-toggle.toggled-class { - left: auto; - right: 20.42857143em; - } -} -/*! -- Stack Nav Fullscreen -- */ -.menu-fullscreen { - color: #fff; -} -.menu-fullscreen .pos-absolute { - width: 100%; -} -.menu-fullscreen a { - color: #fff; -} -.menu-fullscreen a:hover { - text-decoration: none; -} -.menu-fullscreen .social-list { - margin-right: 0; -} -.menu-fullscreen:before { - background: rgba(0, 0, 0, 0.9); -} -.menu-fullscreen .modal-content .modal-close-cross { - right: 3.71428571em; - top: 1em; -} -@media all and (max-width: 767px) { - .menu-fullscreen .pos-bottom { - position: relative; - } -} -/*! -- Stack Dropdowns -- */ -.dropdown > .dropdown__trigger:after { - font-family: "stack-interface"; - display: inline-block; - font-size: 8px; - position: relative; - bottom: 2px; -} -.dropdown > .dropdown__trigger .image--xxs { - margin-right: 0.46428571em; -} -.dropdown .dropdown__content { - border-radius: 6px; - box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.08); - -webkit-box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.08); - padding: 1.23809524em 1.85714286em; -} -.dropdown .dropdown__content h5:not(:last-child) { - margin-bottom: 0.92857143em; -} -.dropdown .dropdown__content .background-image-holder { - border-radius: 6px 0 0 6px; -} -.dropdown .dropdown__content > .pos-absolute[class*='col-'] { - left: 0; - top: 0; - height: 100%; - position: absolute !important; -} -.dropdown .dropdown__content > .pos-absolute[class*='col-'][data-overlay]:before { - border-radius: 6px 0 0 6px; -} -.menu-horizontal > .dropdown > .dropdown__trigger:after { - content: '\e80a'; - margin-left: 4px; -} -.menu-vertical > .dropdown > .dropdown__trigger { - display: inline-block; - width: 100%; -} -@media all and (max-width: 767px) { - .dropdown [class*='col-'] + [class*='col-'] { - margin-top: 0.92857143em; - } - .dropdown .dropdown__content:not([class*='bg-']) { - border: none; - box-shadow: none; - } -} -@media all and (max-width: 767px) { - .dropdown__container { - left: 0 !important; - } -} -.menu-vertical li { - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; -} -.menu-vertical li:not(:hover):not(.dropdown--active) { - opacity: .75; -} -.menu-vertical li:not(:last-child) { - margin-bottom: 0.30952381em; -} -.menu-vertical li.dropdown { - position: relative; -} -.menu-vertical li.dropdown:after { - content: '\e80c'; - font-family: 'stack-interface'; - right: 0; - top: 0; - position: absolute; - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; - display: inline-block; - transform: translate3d(-10px, 0, 0); - -webkit-transform: translate3d(-10px, 0, 0); -} -.menu-vertical li.dropdown:hover:after { - transform: translate3d(-5px, 0, 0); - -webkit-transform: translate3d(-5px, 0, 0); -} -.menu-vertical li.separate { - border-top: 1px solid #e6e6e6; - margin-top: 0.92857143em; - padding-top: 0.92857143em; -} -.menu-vertical li.separate.dropdown:after { - top: .92857143em; -} -.menu-vertical + h5 { - margin-top: 1.85714286em; -} -@media all and (max-width: 990px) { - .menu-vertical .dropdown.dropdown--active:after { - opacity: 0; - } -} -@media all and (min-width: 991px) { - .dropdown .dropdown__container:before { - height: 18px; - } -} -/*! -- Stack Twitter Feeds -- */ -.tweets-feed .interact { - display: none; -} -.tweets-feed .user a:hover { - text-decoration: none; -} -.tweets-feed .user img { - border-radius: 50%; -} -.tweets-feed-1 { - border-radius: 6px; - border: 1px solid #ececec; - overflow: hidden; -} -.tweets-feed-1 li { - overflow: hidden; - padding: 1.85714286em; - padding-bottom: 0; -} -.tweets-feed-1 li:not(:last-child) { - border-bottom: 1px solid #ececec; -} -.tweets-feed-1 .user { - width: 20%; - float: left; - margin-bottom: 0.92857143em; -} -.tweets-feed-1 .user img { - max-height: 3.71428571em; - margin-right: 0.46428571em; -} -.tweets-feed-1 .user [data-scribe="element:name"], -.tweets-feed-1 .user [data-scribe="element:screen_name"] { - display: none; -} -.tweets-feed-1 .tweet, -.tweets-feed-1 .timePosted { - width: 80%; - float: right; -} -.tweets-feed-1 .tweet { - margin-bottom: 0.46428571em; -} -.tweets-feed-1 .timePosted { - font-size: 0.85714286em; - line-height: 2.16666667em; -} -.tweets-feed-1:not(:last-child) + .btn { - margin-top: 2.78571429em; -} -.imagebg .tweets-feed-1, -.bg--dark .tweets-feed-1 { - border-color: rgba(255, 255, 255, 0.1); -} -.imagebg .tweets-feed-1 li:not(:last-child), -.bg--dark .tweets-feed-1 li:not(:last-child) { - border-color: rgba(255, 255, 255, 0.1); -} -.tweets-feed-2 .user { - display: none; -} -.tweets-feed-2 .timePosted { - display: none; -} -.tweets-feed-2 li { - overflow: hidden; -} -.tweets-feed-2 li:before { - font-family: 'socicon'; - content: "\e08d"; -} -.tweets-feed-2 li .tweet { - width: 85%; - float: right; -} -.tweets-feed.slider .user img { - display: inline-block; - clear: both; - margin-bottom: 0.92857143em; -} -.tweets-feed.slider .user [data-scribe="element:name"] { - display: none; -} -.tweets-feed.slider .user [data-scribe="element:screen_name"] { - display: block; - font-size: 1.35714286em; - line-height: 1.36842105em; - font-weight: normal; -} -.tweets-feed.slider .tweet { - margin-top: 1.36842105263158em; - margin-bottom: 0.68421052631579em; - font-size: 1.35714286em; - line-height: 1.36842105em; -} -.tweets-feed.slider .timePosted { - margin: 0; -} -.tweets-feed.slider:not(:last-child) + .btn { - margin-top: 2.78571429em; -} -/*! -- Stack Instagram -- */ -.instafeed a { - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; -} -.instafeed a:hover { - opacity: .75; -} -.instafeed:not(.instafeed--gapless) li { - padding: 0.46428571em; -} -.instafeed.instafeed--gapless li { - margin-bottom: -1px; -} -.instafeed + .btn { - margin-top: 2.78571429em; -} -.instafeed[data-grid="1"][data-amount="8"] li { - display: inline-block; - width: 12.5%; -} -.instagram { - position: relative; -} -.instagram.unpad .btn { - position: absolute; - z-index: 2; - top: 50%; - transform: translate3d(-50%, -50%, 0); - -webkit-transform: translate3d(-50%, -50%, 0); - margin: 0; -} -/*! -- Stack Cards -- */ -.card__top { - position: relative; - overflow: hidden; -} -.card__action a { - color: #666666; - text-decoration: none; - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; -} -.card__action a i { - color: #252525; - font-size: 1em; -} -.card__action a span { - position: relative; - bottom: 2px; -} -.card__action a:not(:hover) { - opacity: .5; -} -.card p a { - text-decoration: none; -} -.masonry__item .card.boxed { - margin-bottom: 0; -} -.card-1 .card__avatar { - margin-bottom: 0.92857143em; -} -.card-1 .card__avatar img { - max-height: 2.78571429em; - margin-right: 0.46428571em; - margin-bottom: 0; -} -.card-1 .card__avatar, -.card-1 .card__meta { - display: inline-block; -} -.card-1 .card__meta { - float: right; -} -.card-1 .card__body { - border-bottom: 1px solid #ececec; - padding-bottom: 0.92857143em; - margin-bottom: 0.92857143em; -} -.card-1 .card__body img { - margin-bottom: 0.92857143em; -} -.card-1 .card__body h4 { - margin-bottom: 0.342105263157895em; -} -.bg--dark .card-1 .card__body { - border-color: #3f3f3f; -} -@media all and (max-width: 767px) { - .card .list-inline:not(.social-list) li { - display: inline-block; - } - .card .list-inline:not(.social-list) li:not(:first-child) { - margin-left: 0.92857143em; - } -} -.card-2 .card__top img { - border-radius: 6px 6px 0 0; -} -.card-2 .card__body { - border-bottom: 1px solid #ececec; - padding-bottom: 1.85714286em; -} -.card-2 .card__body h4 { - margin: 0; -} -.card-2 .card__body p { - margin-top: 0.92857143em; -} -.card-2 .card__bottom { - overflow: hidden; -} -.card-2 .card__bottom > div { - display: inline-block; - width: 50%; - float: left; -} -.card-2 .card__bottom .h6 { - margin-bottom: 0.541666666666667em; -} -.card-2 .card__body, -.card-2 .card__bottom { - padding: 1.85714286em; - border: 1px solid #ececec; -} -.card-2 .card__body { - border-bottom: none; - border-top: none; -} -.card-2 .card__bottom { - border-radius: 0 0 6px 6px; - padding: 0.92857143em 1.85714286em; -} -.card-2 .card__action i { - font-size: 1.78571429em; -} -.bg--dark .card-2 .card__body, -.bg--dark .card-2 .card__bottom { - border-color: #3f3f3f; -} -/*! -- Stack Checkmarks & Crosses -- */ -.checkmark { - display: inline-block; - position: relative; - width: 1.23809524em; - height: 1.23809524em; - border-radius: 50%; - text-align: center; -} -.checkmark:not([class*='bg-']) { - background: #4a90e2; -} -.checkmark:before { - content: '\2713'; - color: #fff; - font-size: 11px; - position: absolute; - width: 100%; - left: 0; - top: -4px; -} -.checkmark.checkmark--cross:before { - content: '\2717'; -} -.checkmark:not(:last-child) { - margin-right: 13px; -} -/*! -- Stack Icons -- */ -.icon:not(.block) { - display: inline-block; -} -.icon.icon--xs { - font-size: 1.14285714285714em; -} -.text-block .icon + h4 { - margin-top: 0.6842105263158em; -} -.imagebg .icon { - color: #fff; -} -p .material-icons { - font-size: 1em; -} -p .material-icons:first-child { - margin-right: 0.30952381em; -} -.material-icons { - font-family: 'Material Icons' !important; -} -.icon-circle { - position: relative; - display: inline-block; - width: 3.71428571em; - height: 3.71428571em; - border-radius: 50%; - border: 1px solid #ececec; - background: #fafafa; - text-align: center; -} -.icon-circle i { - font-size: 24px; - position: absolute; - top: 50%; - transform: translateY(-50%); - width: 100%; - left: 0; -} -/*! -- Stack Tooltips -- */ -.tooltip { - position: relative; - top: 3px; - display: inline-block; - width: 1.23809524em; - height: 1.23809524em; - border-radius: 50%; - background: #252525; - text-align: center; - cursor: pointer; -} -.tooltip .tooltip__anchor { - color: #fff; - font-weight: 700; - font-size: 11px; - position: absolute; - top: -5px; - left: 6px; -} -.tooltip .tooltip__text { - transition: 0.2s ease; - -webkit-transition: 0.2s ease; - -moz-transition: 0.2s ease; - text-align: left; - z-index: 10; - position: absolute; - width: 280px; - background: #fafafa; - border: 1px solid #ececec; - padding: 0.61904762em; - left: 1.48571429em; - top: -0.92857143em; - opacity: 0; - pointer-events: none; - cursor: default; - box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); - box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.04); - line-height: 20px; -} -.tooltip:hover .tooltip__text { - opacity: 1; -} -.tooltip:last-child { - margin-left: 0.92857143em; -} -[data-tooltip] { - position: relative; - overflow: visible; -} -[data-tooltip]:after { - transition: all .2s ease; - content: attr(data-tooltip); - position: absolute; - top: -24px; - left: 50%; - transform: translateX(-50%); - background: #252525; - color: #fff; - border: 1px solid #e7e7e7; - padding: 2px 12px; - pointer-events: none; - white-space: nowrap; - font-size: 11px; - line-height: 18px; - font-weight: 600; - border-radius: 2px; - z-index: 2; - font-family: 'Open Sans'; -} -[data-tooltip]:not(:hover):after { - opacity: 0; -} -/*! -- Stack Boxes -- */ -.boxed { - border-radius: 6px; -} -.boxed .background-image-holder { - border-radius: 6px; -} -.boxed:before { - border-radius: 6px; -} -.boxed:not(:last-child) { - margin-bottom: 30px; -} -.boxed:not([class*='bg-']) { - background: #ffffff; -} -.boxed.bg--secondary .boxed { - background: #fafafa; -} -@media all and (min-width: 768px) { - .switchable .imagebg .boxed { - padding-left: 5.57142857em; - } -} -.bg--dark .boxed:not([class*='bg-']), -.imagebg:not(.image--light) .boxed:not([class*='bg-']) { - background: none; - color: #fff; -} -.bg--dark .boxed:not([class*='bg-']).boxed--border, -.imagebg:not(.image--light) .boxed:not([class*='bg-']).boxed--border { - border-color: #3f3f3f; -} -.bg--dark .boxed[class*='bg-'].boxed--border, -.imagebg:not(.image--light) .boxed[class*='bg-'].boxed--border { - border: none; -} -.imagebg:not(.image--light) .boxed:not(.bg--white):not(.bg--none) { - background: rgba(20, 20, 20, 0.3); -} -.imagebg:not(.image--light) .boxed:not(.bg--white):not(.bg--none).boxed--border { - border: none; -} -.imagebg:not(.image--light) .boxed:not(.bg--white):not(.bg--none) .boxed { - background: none; -} -.bg--primary .boxed:not(.imagebg) { - color: #666666; -} -.bg--primary .boxed:not(.imagebg) p { - color: #666666; -} -.bg--primary .boxed:not(.imagebg) h1, -.bg--primary .boxed:not(.imagebg) h2, -.bg--primary .boxed:not(.imagebg) h3, -.bg--primary .boxed:not(.imagebg) h4, -.bg--primary .boxed:not(.imagebg) h5, -.bg--primary .boxed:not(.imagebg) h6, -.bg--primary .boxed:not(.imagebg) .h1, -.bg--primary .boxed:not(.imagebg) .h2, -.bg--primary .boxed:not(.imagebg) .h3, -.bg--primary .boxed:not(.imagebg) .h4, -.bg--primary .boxed:not(.imagebg) .h5, -.bg--primary .boxed:not(.imagebg) .h6, -.bg--primary .boxed:not(.imagebg) i { - color: #252525; -} -.bg--primary .boxed:not(.imagebg) a { - color: #4a90e2; -} -.bg--primary .boxed:not(.imagebg) .color--primary { - color: #4a90e2 !important; -} -@media all and (min-width: 768px) { - .boxed.boxed--emphasis { - transform: scale(1.075); - -webkit-transform: scale(1.075); - } -} -/*! -- Stack Features Small -- */ -.feature:not(.boxed) { - margin-bottom: 60px; -} -.feature.feature--featured:after { - content: ''; - position: absolute; - bottom: 0; - width: 100%; - height: 4px; - background: #4a90e2; - left: 0; -} -.feature h5 { - margin: 0; -} -.feature h4 { - margin-bottom: 0.342105263157895em; -} -.feature h4 + p { - max-width: 22.28571429em; -} -.feature i + h5 { - margin-top: 1.85714286em; -} -.feature i + h4 { - margin-top: 0.68421052631579em; -} -.feature i.icon--lg + h4 { - margin-top: 1.36842105263158em; -} -.feature i.icon--lg + .h5 { - margin-top: 0.92857143em; -} -.feature img + .boxed { - border-radius: 0 0 6px 6px; - border-top: none; -} -.imagebg:not(.image--light) .feature.bg--white a:not(.btn) { - color: #4a90e2; -} -.imagebg:not(.image--light) .feature.bg--white .label { - color: #fff; -} -@media all and (max-width: 767px) { - .feature .feature__body form .row { - margin-left: 0; - margin-right: 0; - } -} -section.text-center .feature-6 h4 + p { - margin: 0 auto; -} -@media all and (min-width: 768px) { - .row div[class*='col-']:nth-child(1):nth-last-child(3) .feature, - .row div[class*='col-']:nth-child(2):nth-last-child(2) .feature, - .row div[class*='col-']:nth-child(3):last-child .feature { - margin-bottom: 0; - } -} -a.block > .feature { - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; -} -a.block:hover > .feature { - box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); - box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.04); -} -.feature-1 { - min-height: 11.14285714em; -} -.feature-1 p { - margin: 0; -} -.feature-1 p.lead { - min-height: 5.05263157894737em; -} -.feature-1 > img:first-child { - border-radius: 6px 6px 0 0; -} -.feature-1 > a.block img { - border-radius: 6px 6px 0 0; -} -.feature-1 > a.block + .feature__body { - border-radius: 0 0 6px 6px; -} -.feature-1[class*='box-shadow'] { - border-radius: 6px; - transition: 0.35s ease-out; - -webkit-transition: 0.35s ease-out; - -moz-transition: 0.35s ease-out; -} -.feature-1[class*='box-shadow']:hover { - transform: translate3d(0, -10px, 0); - -webkit-transform: translate3d(0, -10px, 0); - box-shadow: 0 23px 40px rgba(0, 0, 0, 0.2); -} -.hover-shadow { - border-radius: 6px; - backface-visibility: hidden; - overflow: hidden; - border: 1px solid #ececec; - transition: 0.35s ease-out; - -webkit-transition: 0.35s ease-out; - -moz-transition: 0.35s ease-out; -} -.hover-shadow:hover { - transform: translate3d(0, -10px, 0); - -webkit-transform: translate3d(0, -10px, 0); - box-shadow: 0 23px 40px rgba(0, 0, 0, 0.2); -} -.bg--dark .hover-shadow { - border-color: #222; -} -.bg--dark .hover-shadow:hover { - box-shadow: 0 23px 40px #000000; -} -.feature-2 { - overflow: hidden; -} -.feature-2 .feature__body { - width: 75%; - float: right; -} -.feature-2 h5 { - margin-bottom: 0.46428571em; -} -.feature-2 p:last-child { - margin: 0; -} -.feature-2 i { - width: 25%; - float: left; -} -.feature-large .feature-2 + .feature-2:last-child { - margin-bottom: 0; -} -@media all and (max-width: 990px) { - .feature-2 .feature__body, - .feature-2 i { - width: 100%; - float: none; - } - .feature-2 p:first-of-type { - margin-top: 0.92857143em; - } -} -.feature-3 i { - margin-bottom: 0.16666666666667em; -} -.feature-3 p { - min-height: 7.42857143em; -} -.feature-4 .btn { - position: absolute; - width: 100%; - bottom: 0; - left: 0; - border-radius: 0; - padding: 0.92857143em; -} -.feature-4 .btn:hover { - transform: none; -} -.feature-4 p { - min-height: 9.28571429em; -} -.feature-4 p:last-of-type { - margin-bottom: 3.71428571em; -} -.feature-5 i { - width: 25%; - float: left; -} -.feature-5 .feature__body { - width: 75%; - float: right; -} -.feature-5 p { - min-height: 5.57142857em; -} -.feature-5 p:last-of-type { - margin-bottom: 0.92857143em; -} -.feature-5:not([class*='bg-']) { - color: #252525; -} -.feature-6 p { - min-height: 9.28571429em; -} -.feature-6 p:last-child { - margin: 0; -} -.feature-7 { - height: 13em; - margin-bottom: 30px; -} -.feature-7[data-overlay]:before { - border-radius: 6px; - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; -} -.feature-7[data-overlay]:hover:before { - opacity: .75; -} -.feature-7 .background-image-holder { - border-radius: 6px; -} -.feature-7 h3 { - margin: 0; -} -.row--gapless .feature-7 { - margin: 0; - border-radius: 0; -} -.row--gapless .feature-7 .background-image-holder { - border-radius: 0; -} -.row--gapless .feature-7:before { - border-radius: 0; -} -@media all and (max-width: 767px) { - .feature-7 .pos-vertical-center { - top: 50%; - transform: translate3d(0, -50%, 0); - -webkit-transform: translate3d(0, -50%, 0); - } -} -.feature-8 { - padding: 2.78571429em 0 3.71428571em 0; -} -.feature-8:not(.boxed) { - margin-bottom: 0; -} -.feature-8 .feature__body { - max-width: 70%; - margin: 0 auto; -} -.feature-8 p { - min-height: 5.57142857em; -} -@media all and (max-width: 990px) { - .feature-8 .feature__body { - max-width: 85%; - } -} -@media all and (max-width: 767px) { - .feature p { - min-height: auto; - margin-left: auto; - margin-right: auto; - } - .feature.boxed { - margin-bottom: 15px; - } - .feature:not(.boxed) { - margin-bottom: 30px; - } - .feature.feature-8 { - margin-bottom: 0; - } -} -.feature-8 img { - max-height: 14.85714286em; -} -.feature-9 h4 { - margin: 0; -} -.feature-9:not(.boxed) { - margin-bottom: 30px; -} -@media all and (min-width: 768px) { - .features-small-14 .text-block { - margin-bottom: 3.71428571em; - } - .features-small-14 h4 { - min-height: 2.736842105263158em; - } -} -/*! -- Stack Features Large -- */ -@media all and (min-width: 768px) { - .staggered div[class*='col-']:nth-child(2):last-child { - margin-top: 13em; - } - .staggered div[class*='col-']:nth-child(2):last-child:not(:last-child) { - margin-bottom: 9.28571429em; - } - .staggered div[class*='col-'] .feature:not(:last-child) { - margin-bottom: 9.28571429em; - } -} -.feature-large h4:first-child { - margin-bottom: 0.68421052631579em; -} -.feature-large .feature:not(.boxed) { - margin-bottom: 30px; -} -.feature-large .feature-3.text-center p { - margin: 0 auto; -} -.feature-large .lead + .feature-large__group { - margin-top: 3.71428571em; -} -.feature-large .feature-large__group { - overflow: hidden; -} -.feature-large-1 .lead { - margin-bottom: 2.73684210526316em; -} -@media all and (min-width: 768px) { - .feature-large-2 div[class*='col-']:first-child { - margin-top: 5.57142857em; - } - .feature-large-2 div[class*='col-']:last-child { - margin-top: 7.42857143em; - } -} -@media all and (max-width: 767px) { - .feature-large-2 img { - margin: 1.85714286em 0; - } -} -.feature-large-7.switchable .boxed div[class*='col-']:only-child { - float: none; -} -.feature-large-13 p.lead + .text-block { - margin-top: 3.71428571em; -} -.feature-large-13 div[class*='col-'] .text-block + .text-block { - margin-top: 2.78571429em; -} -@media all and (min-width: 1200px) { - .feature-large-13:not(.text-center) .text-block p { - max-width: 26em; - } -} -.feature-large-14 h5 { - margin-bottom: 0.46428571em; -} -.feature-large-14 .boxed { - margin-bottom: 0; -} -.feature-large-14 .boxed.boxed--border img { - border-radius: 6px; -} -@media all and (min-width: 768px) { - .feature-large-14.switchable .switchable__text { - margin-top: 5.57142857em; - } -} -/*! -- Stack Accordions -- */ -.accordion .accordion__title { - transition: 0.5s ease; - -webkit-transition: 0.5s ease; - -moz-transition: 0.5s ease; - opacity: .5; - margin-bottom: 0.92857143em; -} -.accordion .accordion__title:hover { - opacity: 1; -} -.accordion .accordion__title:before { - font-family: "stack-interface"; - content: '\e80d'; - margin-right: 6px; - color: #252525; -} -.accordion .accordion__title span { - display: inline-block; -} -.accordion li.active { - margin-bottom: 0.92857143em; -} -.accordion li.active .accordion__title { - opacity: 1; -} -.accordion li.active .accordion__title:before { - content: '\e80a'; -} -.accordion li.active .accordion__content { - animation: fadeUp .5s ease forwards; - -webkit-animation: fadeUp .5s ease forwards; -} -.accordion-1 li.active .accordion__title { - border-color: #4a90e2; -} -.accordion-1 li.active .accordion__title span { - color: #fff; -} -.accordion-1 li.active .accordion__title:before { - color: #fff; -} -.accordion-1 li .accordion__title { - border-radius: 6px; - border-bottom: 1px solid #ECECEC; -} -.accordion-2 li .accordion__title { - border-left: none; - border-right: none; - border-top: none; - border-bottom: 1px solid #ECECEC; - padding-left: 0; -} -.accordion-2 li.active .accordion__title { - background: none; - border-bottom: 1px solid rgba(0, 0, 0, 0); -} -.bg--dark .accordion-2 li .accordion__title, -.imagebg:not(.image--light) .accordion-2 li .accordion__title, -.bg--primary .accordion-2 li .accordion__title, -.bg--dark .accordion-1 li .accordion__title, -.imagebg:not(.image--light) .accordion-1 li .accordion__title, -.bg--primary .accordion-1 li .accordion__title { - border-color: #4b4b4b; -} -.bg--dark .accordion-2 li .accordion__title:before, -.imagebg:not(.image--light) .accordion-2 li .accordion__title:before, -.bg--primary .accordion-2 li .accordion__title:before, -.bg--dark .accordion-1 li .accordion__title:before, -.imagebg:not(.image--light) .accordion-1 li .accordion__title:before, -.bg--primary .accordion-1 li .accordion__title:before { - color: #fff; -} -.imagebg:not(.image--light) .accordion li .accordion__title, -.bg--primary .accordion li .accordion__title { - border-color: rgba(255, 255, 255, 0.3); -} -/*! -- Stack Tabs -- */ -.tabs-container.tabs--vertical { - overflow: hidden; -} -.tabs-container.tabs--vertical .tabs { - width: 25%; - float: left; -} -.tabs-container.tabs--vertical .tabs li { - display: block; -} -.tabs-container.tabs--vertical .tabs li:not(:last-child) { - border-right: none; - border-bottom: 1px solid #ECECEC; -} -.tabs-container.tabs--vertical .tabs-content { - width: 70%; - float: right; - margin-top: 0; -} -.tabs-container.tabs--vertical .tabs-content > li:not(.active) .tab__content { - animation: fadeOutUp .5s ease forwards; - -webkit-animation: fadeOutUp .5s ease forwards; -} -.tabs-container.tabs--vertical .tabs-content > li.active .tab__content { - animation: fadeInUp .5s ease forwards; - -webkit-animation: fadeInUp .5s ease forwards; - backface-visibility: hidden; -} -.tabs-container.tabs--vertical.tabs--icons .tabs { - width: 15%; - text-align: center; -} -.tabs-container.tabs--vertical.tabs--icons .tabs-content { - width: 80%; -} -@media all and (max-width: 767px) { - .tabs-container.tabs--vertical .tabs, - .tabs-container.tabs--vertical .tabs-content { - width: 100%; - float: none; - } - .tabs-container.tabs--vertical .tabs { - margin-bottom: 1.85714286em; - } - .tabs-container.tabs--vertical .tabs-content > li:not(.active) .tab__content { - animation: fadeOutRight .5s ease forwards; - -webkit-animation: fadeOutRight .5s ease forwards; - } - .tabs-container.tabs--vertical .tabs-content > li.active .tab__content { - animation: fadeInLeft .5s ease forwards; - -webkit-animation: fadeInLeft .5s ease forwards; - backface-visibility: hidden; - } -} -.tabs { - display: inline-block; - border: 1px solid #ECECEC; - border-radius: 6px; - margin-bottom: 1.85714286em; -} -.tabs li { - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; - padding: 0.92857143em 1.85714286em; -} -.tabs li:not(:last-child) { - border-right: 1px solid #ECECEC; -} -.tabs li.active { - opacity: 1; -} -.tabs li.active .tab__title { - color: #4a90e2; -} -.tabs li.active .tab__title span { - color: #4a90e2; -} -.tabs li:not(.active) { - opacity: .5; -} -.tabs li:hover { - opacity: 1; - cursor: pointer; -} -.tabs .tab__title { - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; -} -.tabs .tab__title:not(.btn) { - padding-right: 0; - padding-left: 0; -} -.tabs .tab__title i + span { - margin-top: 0.46428571em; - display: inline-block; - margin-bottom: 0; -} -.bg--primary .tabs { - border-color: #fff; -} -.bg--primary .tabs li.active .tab__title { - color: #fff; -} -.bg--primary .tabs li.active .tab__title span { - color: #fff; -} -.bg--primary .tabs li:not(:last-child) { - border-color: #fff; -} -@media all and (min-width: 768px) { - .tabs.tabs--spaced { - margin-bottom: 3.71428571em; - } -} -.tabs-content { - position: relative; -} -.tabs-content > li:not(.active) .tab__content { - position: absolute; - left: 0; - top: 0; - display: block; - opacity: 0; - pointer-events: none; - animation: fadeOutRight .5s ease forwards; - -webkit-animation: fadeOutRight .5s ease forwards; -} -.tabs-content > li.active { - animation: fadeInLeft .5s ease forwards; - -webkit-animation: fadeInLeft .5s ease forwards; - backface-visibility: hidden; -} -@media all and (max-width: 767px) { - .tabs li { - display: block; - } - .tabs li:not(:last-child) { - border-bottom: 1px solid #ECECEC; - border-right: none; - } -} -.tabs--folder .tabs { - overflow: hidden; - margin-bottom: 0; - border-radius: 6px 6px 0 0; - border-bottom: none; -} -.tabs--folder .tabs > li { - border-top: 3px solid rgba(0, 0, 0, 0); -} -.tabs--folder .tabs > li.active { - border-top: 3px solid #4a90e2; -} -.tabs--folder .tabs-content { - overflow: hidden; - position: relative; - bottom: 8px; - padding: 1.85714286em; - border: 1px solid #ECECEC; - border-radius: 0 0 6px 6px; -} -.tabs--folder .tabs-content > li:not(.active) .tab__content { - top: 1.85714286em; - left: 1.85714286em; -} -.tabs--folder .tab__title .h5 { - margin: 0; - display: inline-block; -} -.tabs--folder .tab__title .label { - position: relative; - color: #fff !important; - top: -2px; - right: 0; - margin-left: 0.46428571em; - min-width: 0; -} -/*! -- Stack Switchable Sections -- */ -.switchable .switchable__text { - margin-top: 1.85714286em; -} -.switchable [class*='col-']:first-child .switchable__text { - margin-bottom: 2.78571429em; -} -.section--overlap .row { - position: relative; - margin-top: -13em; -} -@media all and (max-width: 990px) { - .switchable .switchable__text { - margin-top: 0; - } -} -@media all and (max-width: 767px) { - .switchable .switchable__text { - margin-top: 1.85714286em; - } - .switchable .imageblock__content[class*='col-'] { - float: none !important; - } - .switchable .row > div[class*='col-'] { - float: none !important; - } - .switchable .row > div[class*='col-']:last-child:not(:only-child) { - margin-top: 1.85714286em; - } -} -/*! -- Stack CTA -- */ -.cta .btn:first-child:not(:last-child) { - margin-bottom: 1.85714286em; -} -.cta.boxed:last-child { - margin-bottom: 0; -} -@media all and (min-width: 768px) { - .cta--horizontal h4, - .cta--horizontal .lead, - .cta--horizontal .btn { - margin: 0; - } - .cta--horizontal h4, - .cta--horizontal .lead { - position: relative; - top: 4px; - } - .bg--dark .cta-1 > div[class*='col-']:last-child, - .imagebg .cta-1 > div[class*='col-']:last-child { - border-left: none; - } -} -@media all and (min-width: 1200px) { - .cta-1.boxed--border { - padding: 0; - } - .cta-1 > div[class*='col-'] { - padding: 1.23809524em 15px; - } - .cta-1 > div[class*='col-']:last-child { - border-left: 1px solid #ECECEC; - } -} -@media all and (max-width: 990px) { - .cta-1 { - text-align: center; - } - .cta-1 > div[class*='col-'] { - padding-left: 0; - padding-right: 0; - } - .cta-1 > div[class*='col-']:not(:last-child) { - margin-bottom: 0.92857143em; - } - .cta-1 > div[class*='col-']:last-child { - margin-top: 1.85714286em; - } -} -@media all and (max-width: 767px) { - .cta .lead { - margin: 1.36842105263158em 0; - } -} -.cta-2 { - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; -} -.cta-2 h2 { - margin: 1.57575757575758em 0; -} -.cta-2.bg--primary:hover { - background: #5798e4; -} -.cta-2:hover { - background: #ffffff; -} -@media all and (min-width: 768px) { - .cta-3 .switchable__text { - margin-top: 5.57142857em; - } -} -/*! -- Stack Videos -- */ -.video-play-icon:before { - border-color: transparent transparent transparent #252525; - margin-top: -3px; -} -.modal-instance .video-play-icon + span { - position: relative; - display: inline-block; - margin-left: 0.92857143em; - white-space: nowrap; - bottom: 22px; -} -.modal-instance .video-play-icon.video-play-icon--xs + span { - bottom: 8px; - margin-left: 0.46428571em; -} -.video-cover { - background: #252525; -} -.video-cover.border--round { - overflow: hidden; -} -.video-cover.border--round iframe { - border-radius: 6px; -} -.video-cover:not(:last-child) { - margin-bottom: 1.85714286em; -} -.video-cover + span.h4 + span { - display: inline-block; - margin-left: 0.92857143em; -} -.video-cover .video-play-icon { - transition: 0.2s ease-out; - -webkit-transition: 0.2s ease-out; - -moz-transition: 0.2s ease-out; -} -.video-cover .video-play-icon:hover { - box-shadow: 0 23px 40px rgba(0, 0, 0, 0.2); - transform: translate3d(-50%, -52%, 0); - -webkit-transform: translate3d(-50%, -52%, 0); -} -.imagebg .video-cover .video-play-icon { - z-index: 10; -} -@media all and (min-width: 768px) { - h2 + .video-cover { - margin-top: 3.71428571em; - } -} -@media all and (min-width: 768px) { - .video-1 .video-play-icon { - margin-right: 1.85714286em; - } - .video-1 h2 { - display: inline-block; - position: relative; - bottom: 14px; - } - div[class*='col-sm-6'] .video-1 h2 { - bottom: 0; - display: block; - } - div[class*='col-sm-6'] .video-1 .video-play-icon { - margin-bottom: 0.46428571em; - } -} -.video-1 h2 { - margin: 0; -} -.imageblock__content .modal-instance { - position: absolute; - top: 50%; - left: 50%; - transform: translate3d(-50%, -50%, 0); - -webkit-transform: translate3d(-50%, -50%, 0); -} -/*! -- Stack Modals -- */ -.modal-container .modal-content:not(.height--natural) { - height: auto; - width: auto; -} -.modal-instance:not(.block) { - display: inline-block; -} -.modal-instance.block > .btn { - display: block; -} -@media all and (min-width: 768px) { - .modal-instance + span:last-child { - display: inline-block; - margin-left: 0.92857143em; - } -} -.modal-container .modal-content { - max-height: 95%; - transform: translateX(-50%) translateY(-50%); - -webkit-transform: translateX(-50%) translateY(-50%); -} -.modal-container .modal-content .feature:only-child { - margin-bottom: 0; -} -.modal-container .modal-content .feature:only-child .boxed { - margin-bottom: 0; -} -.modal-container .modal-content .imagebg:not(.image--light) .modal-close-cross:before { - color: #fff; -} -@media all and (max-width: 767px) { - .modal-container .modal-content > .modal-close-cross { - top: 3em; - background: #222; - width: 2em; - height: 2em; - text-align: center; - border-radius: 50%; - color: #fff; - } -} -.modal-content { - -ms-overflow-style: none; -} -.modal-content::-webkit-scrollbar { - display: none; -} -/*! -- Stack Notifications -- */ -.notification { - margin: 1.85714286em; - box-shadow: none; -} -.notification:not([class*='bg--']) { - background: none; -} -.notification > .boxed { - margin: 0; -} -.notification > .feature, -.notification .feature__body { - margin-bottom: 0; -} -.search-box { - width: 100%; - margin: 0; - padding: 1.85714286em; - box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); - box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.04); -} -.search-box.notification--reveal { - z-index: 9999; -} -.search-box .notification-close-cross { - top: 2.32142857em; - right: 1.85714286em; -} -.notification-close-cross.notification-close-cross--circle { - background: #222; - width: 2em; - height: 2em; - text-align: center; - border-radius: 50%; - color: #fff; -} -/*! -- Stack Loader -- */ -.loader { - border: 3px solid #4a90e2; - border-radius: 30px; - height: 30px; - left: 50%; - margin: -15px 0 0 -15px; - opacity: 0; - position: fixed; - z-index: 10; - top: 50%; - width: 30px; - animation: pulsate 0.7s ease-out infinite; -} -.loader.loader--fade { - opacity: 0; - animation: none; -} -@keyframes pulsate { - 0% { - transform: scale(0.1); - opacity: 0.0; - } - 50% { - opacity: 1; - } - 100% { - transform: scale(1.2); - opacity: 0; - } -} -/*! -- Stack Lightboxes -- */ -.lb-close { - position: relative; - top: 10px; -} -.lb-close:before { - content: '\00D7'; - color: #fff; - font-size: 2.5em; - font-weight: 400; -} -.lb-close:hover { - text-decoration: none; -} -.lb-prev:after, -.lb-next:after { - font-family: 'stack-interface'; - position: fixed; -} -.lb-prev:after { - content: '\e801'; - left: 1.85714286em; -} -.lb-next:after { - content: '\e802'; - right: 1.85714286em; -} -.lb-data { - overflow: hidden; - min-height: 30px; -} -a[data-lightbox] { - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; -} -a[data-lightbox]:hover { - opacity: .8; - cursor: zoom-in; -} -/*! -- Stack Covers -- */ -.cover .typed-headline { - margin-bottom: 3.71428571em; -} -.cover .typed-headline .type--bold { - font-weight: 400; -} -.cover .triptych { - margin-top: 3.71428571em; -} -.cover .btn + .modal-instance { - margin-top: 1.85714286em; -} -.cover h3 + form, -.cover .h3 + form { - margin-top: 2.78571429em; -} -.cover .lead + .boxed { - margin-top: 3.71428571em; -} -.cover.unpad--bottom { - overflow: hidden; -} -.cover .modal-instance.block:not(:first-child):not(:last-child) { - margin: 2.78571429em 0; -} -.cover .pos-bottom { - margin-bottom: 1.85714286em; -} -@media all and (min-width: 768px) { - .cover .row .row:last-child { - margin-top: 5.57142857em; - } -} -@media all and (max-width: 767px) { - .cover .pos-bottom.pos-absolute { - position: relative; - margin-top: 1.85714286em; - } -} -@media all and (max-width: 990px) { - .cover .mt--3 { - margin-top: 0; - } -} -@media all and (min-width: 768px) { - .cover .triptych { - margin-top: 7.42857143em; - } -} -.cover-fullscreen { - min-height: 100vh; -} -.cover-fullscreen.slider[data-paging="true"] .slides .flickity-slider > li { - height: 100vh; -} -.cover-fullscreen.slider[data-paging="true"] .pos-bottom { - bottom: 5.57142857em; - width: 100%; -} -.cover-fullscreen.slider[data-paging="true"] h4 { - margin: 0; -} -.cover-slider { - overflow: hidden; -} -.cover-slider .slider { - position: relative; - width: 100%; - pointer-events: none; -} -.cover-slider .slider:nth-child(1) { - transform: translateY(-30%); -} -.cover-slider .slider:nth-child(2) { - transform: translateY(-25%); -} -.cover-slider .slider:nth-child(3) { - transform: translateY(-20%); -} -.cover-slider .slider .slide { - opacity: .05; -} -.cover-slider .typed-headline { - margin: 0; -} -.cover-slider .typed-headline + .btn { - margin-top: 0.92857143em; -} -.cover-slider .slider-container { - transform: rotateZ(-30deg) translateY(-10%); - -webkit-transform: rotateZ(-30deg) translateY(-10%); - position: absolute; - width: 100%; - height: 100%; - top: 0; -} -@media all and (min-width: 768px) { - .cover-slider + .cta-4 { - position: absolute; - background: none; - color: #fff; - border-bottom: none !important; - width: 100%; - transform: translate3d(0, -100%, 0); - -webkit-transform: translate3d(0, -100%, 0); - } - .cover-slider + .cta-4 a { - color: #fff; - font-weight: 600; - } -} -.cover-features.space--lg { - padding-bottom: 3.71428571em; -} -.cover-features .row:nth-child(2) { - margin-top: 11.14285714em; -} -@media all and (max-width: 767px) { - .cover-features.space--lg { - padding-bottom: 1.85714286em; - } - .cover-features .row:nth-child(2) { - margin-top: 3.71428571em; - } -} -/*! -- Stack Processes -- */ -.process-1 { - padding: 3.71428571em 0; - position: relative; - overflow: hidden; -} -.process-1 .process__item { - width: 50%; -} -.process-1 .process__item:not(:last-child) { - margin-bottom: 1.85714286em; -} -.process-1:before { - content: ''; - position: absolute; - width: 2px; - height: 100%; - left: 50%; - top: 0; - background: #4a90e2; -} -.process__item { - position: relative; -} -.process__item:after { - content: ''; - width: 1.85714286em; - height: 1.85714286em; - background: #fff; - border: 2px solid #4a90e2; - border-radius: 50%; - position: absolute; - top: 0; - margin-left: 1px; -} -@media all and (min-width: 768px) { - .process-1 .process__item:nth-child(odd) { - text-align: right; - padding-right: 3.71428571em; - } - .process-1 .process__item:nth-child(odd):after { - right: -0.92857143em; - } - .process-1 .process__item:nth-child(even) { - margin-left: 50%; - padding-left: 3.71428571em; - } - .process-1 .process__item:nth-child(even):after { - left: -0.92857143em; - } -} -@media all and (max-width: 767px) { - .process-1:before, - .process-2:before { - left: 0.92857143em; - } - .process-1 .process__item, - .process-2 .process__item { - width: 100%; - padding-left: 3.71428571em; - } - .process-1 .process__item:after, - .process-2 .process__item:after { - left: 0; - } -} -.bg--dark .process-1:before, -.imagebg .process-1:before, -.bg--dark .process-2:before, -.imagebg .process-2:before { - background: #fff; -} -.bg--dark .process-1 .process__item:after, -.imagebg .process-1 .process__item:after, -.bg--dark .process-2 .process__item:after, -.imagebg .process-2 .process__item:after { - background: #fff; -} -.bg--dark .process-1 .process__item:after, -.bg--dark .process-2 .process__item:after { - border-color: #252525; -} -.process-2 { - position: relative; -} -.process-2 .process__item { - padding-top: 3.71428571em; -} -.process-2 .process__item:after { - display: inline-block; - text-align: center; -} -.process-2:before { - content: ''; - position: absolute; - width: 100%; - height: 2px; - top: 0.92857143em; - left: 0; - background: #4a90e2; -} -@media all and (max-width: 767px) { - .process-2:before { - height: 100%; - width: 2px; - left: 1.85714286em; - margin-left: 2px; - } - .process-2 .process__item:after { - top: 3.71428571em; - } -} -.process-3 { - list-style: none; - position: relative; -} -.process-3 li { - position: relative; - z-index: 1; - overflow: hidden; -} -.process-3 li .process__number { - float: left; - width: 15%; - width: 3.71428571em; - height: 3.71428571em; - border-radius: 50%; - border: 2px solid #4a90e2; - background: #fff; - text-align: center; -} -.process-3 li .process__number span { - font-size: 1.35714286em; - font-weight: bold; - color: #4a90e2; - position: relative; - top: 12px; -} -.process-3 li .process__body { - width: 80%; - float: right; -} -.process-3 li .process__body h4 { - margin-bottom: 0.342105263157895em; -} -.process-3 li:not(:last-child) { - margin-bottom: 3.71428571em; -} -.process-3:before { - content: ''; - position: absolute; - height: 100%; - width: 1px; - left: 1.85714286em; - top: 0; - border-left: 1px dashed #ddd; -} -.bg--dark .process-3 li .process__number { - background: #252525; -} -.bg--dark .process-3:before { - border-color: #aaa; -} -.process-stepper > li { - transition: all .3s ease; - display: inline-block; - float: left; - text-align: center; - position: relative; -} -.process-stepper > li:before { - transition: all .3s ease; - content: ''; - width: 0.92857143em; - height: 0.92857143em; - background: #ccc; - border-radius: 50%; - display: block; - margin: 0 auto; - margin-bottom: 0.92857143em; -} -.process-stepper > li:after { - transition: all .3s ease; - content: ''; - width: 100%; - height: 2px; - position: absolute; - background: #ccc; - top: 5px; - left: 0; -} -.process-stepper > li:first-child:after, -.process-stepper > li:last-child:after { - width: 50%; -} -.process-stepper > li:first-child:after { - left: 50%; -} -.process-stepper > li.active:before, -.process-stepper > li.active:after { - background: #4a90e2; -} -.process-stepper > li > span { - cursor: default; -} -.process-stepper[data-process-steps="6"] > li { - width: 16.666666666666667%; -} -.process-stepper[data-process-steps="5"] > li { - width: 20%; -} -.process-stepper[data-process-steps="4"] > li { - width: 25%; -} -.process-stepper[data-process-steps="3"] > li { - width: 33.33333333%; -} -.process-stepper[data-process-steps="2"] > li { - width: 50%; -} -.bg--dark .process-stepper li:not(.active):before, -.bg--dark .process-stepper li:not(.active):after { - background: #585858; -} -/*! -- Stack Typed Text -- */ -span + .typed-text.h2 { - margin-left: 4px; -} -span + .typed-text.h1 { - margin-left: 6px; -} -@media all and (max-width: 767px) { - .typed-text { - display: block; - } - .typed-headline { - margin-bottom: 1.85714286em; - } - .typed-headline h1, - .typed-headline .h1 { - margin-bottom: 0; - } -} -/*! -- Stack Forms -- */ -.bg--dark input, -.imagebg:not(.image--light) input, -.bg--dark textarea, -.imagebg:not(.image--light) textarea, -.bg--dark select, -.imagebg:not(.image--light) select, -.bg--dark .input-select:after, -.imagebg:not(.image--light) .input-select:after { - color: #666666; -} -.bg--dark label, -.imagebg:not(.image--light) label { - color: #fff; -} -.bg--dark form.attempted-submit input.field-error { - background: #D84D4D; - color: #fff; -} -form { - position: relative; -} -form > div[class*='col-']:not(:last-child), -form > .row > div[class*='col-']:not(:last-child) { - margin-bottom: 0.92857143em; -} -form .boxed:last-child { - margin: 0; -} -form.form--clearfix { - margin-left: -15px; -} -@media all and (min-width: 768px) { - div[class*='col-'] > form div[class*='col-']:last-child:nth-child(2) { - padding-right: 0; - } - div[class*='col-'] > form div[class*='col-']:first-child:nth-last-child(2) { - padding-left: 0; - } - form.form--horizontal > div[class*='col-'] { - margin: 0; - } -} -@media all and (max-width: 767px) { - .row form > .row { - margin-left: 0; - margin-right: 0; - } -} -h2 + form, -.h2 + form { - margin-top: 2.78571429em; -} -h3 + form, -.h3 + form, -.lead + form { - margin-top: 2.78571429em; -} -.cover .lead + form { - margin-top: 3.71428571em; -} -form + span.type--fine-print { - margin-top: 1.08333333333334em; - display: inline-block; -} -.form--inline > span.h4 { - color: #666666; -} -.form--inline input, -.form--inline [class*='input-'] { - display: inline-block; - max-width: 200px; -} -.form--inline > span:not(:last-child), -.form--inline input:not(:last-child), -.form--inline [class*='input-']:not(:last-child) { - margin-right: 0.92857143em; -} -.form--inline button { - max-width: 200px; -} -.bg--dark .form--inline > span.h4, -.imagebg:not(.image--light) .form--inline > span.h4 { - color: #fff; -} -button, -input[type="submit"] { - height: 3.25000000000001em; -} -button.btn, -input[type="submit"].btn { - font-size: 0.85714286em; - font-weight: 700; - padding-left: 0; - padding-right: 0; -} -button.btn.btn--primary, -input[type="submit"].btn.btn--primary { - color: #fff; -} -button.btn.type--uppercase, -input[type="submit"].btn.type--uppercase { - letter-spacing: .5px; - margin-right: -0.5px; -} -button.checkmark.checkmark--cross, -input[type="submit"].checkmark.checkmark--cross { - width: 1.85714286em; - height: 1.85714286em; - border: none; - background: #e23636; -} -button.checkmark.checkmark--cross:before, -input[type="submit"].checkmark.checkmark--cross:before { - content: '\00d7'; - font-size: 18px; - top: -1px; -} -button[type="submit"].btn--loading:after, -input[type="submit"][type="submit"].btn--loading:after { - background: #4a90e2; -} -.bg--primary button.btn { - border-color: rgba(255, 255, 255, 0.5); - color: #fff; -} -.bg--primary button.btn:hover { - border-color: #fff; -} -.bg--primary button.btn.btn--primary { - color: #4a90e2; - border-color: #4a90e2; -} -.bg--primary button.btn.btn--primary-1 { - border-color: #31639c; -} -input, -select { - height: 2.78571429em; -} -input.field-error { - border-color: #EBA8A8; -} -input[type] + input[type], -input[type] + .input-checkbox, -input[type] + button, -input[type] + .input-select { - margin-top: 0.92857143em; -} -input, -[class*='input-'] label, -select, -textarea { - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; -} -input:not([class*='col-']), -select:not([class*='col-']), -.input-select:not([class*='col-']), -textarea:not([class*='col-']), -button[type="submit"]:not([class*='col-']) { - width: 100%; -} -input[type], -select, -textarea { - padding-left: 0.92857143em; -} -input[type]:focus, -select:focus, -textarea:focus { - border-color: #76abe9; -} -input[type="image"] { - border: none; - padding: none; - width: auto; -} -label { - font-size: .85714286em; -} -.bg--primary label, -.bg--primary-1 label { - color: #fff; -} -.input-icon i { - top: 8px; - left: 8px; -} -.input-icon input { - padding-left: 2.78571429em; -} -.text-center .input-checkbox label, -.text-center .input-radio label { - margin: 0 auto; -} -.input-checkbox label, -.input-radio label { - font-size: 1em; -} -.input-checkbox { - margin-top: 0.46428571em; -} -.input-checkbox.field-error label { - border-color: #EBA8A8; -} -.input-checkbox label { - background: none; - border: 1px solid #d3d3d3; - text-align: center; - position: relative; -} -.input-checkbox label:not(:last-child) { - margin-right: 0.46428571em; -} -.input-checkbox label:hover { - border-color: #4a90e2; -} -.input-checkbox label:before { - content: ''; - left: 0; - border-radius: 6px; - position: absolute; - width: 100%; - height: 100%; - border: 1px solid #4a90e2; - opacity: 0; - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; -} -.input-checkbox input:checked + label { - border-color: #4a90e2; - background: #4a90e2; -} -.input-checkbox input:checked + label:after { - content: 'L'; - transform: rotateY(180deg) rotateZ(-45deg); - color: #fff; - position: absolute; - width: 100%; - left: 0; - top: -2px; - font-weight: 700; -} -.input-checkbox input:checked + label:before { - animation: pulse .45s ease forwards; - -webkit-animation: pulse .45s ease forwards; -} -.input-checkbox + span { - display: inline-block; - position: relative; - bottom: 10px; - margin-left: 0.92857143em; - font-size: 0.85714286em; - white-space: nowrap; -} -.input-checkbox + button[type] { - margin-top: 0.92857143em; -} -.input-checkbox + span + button[type] { - margin-top: 0.92857143em; -} -.bg--dark .input-checkbox:not(.checked) label { - border-color: #a5a5a5; -} -.bg--dark .input-checkbox + span { - opacity: .75; -} -.input-checkbox.input-checkbox--switch label { - width: 3.71428571em; - border-radius: 60px; -} -.input-checkbox.input-checkbox--switch label:before { - width: 20px; - height: 20px; - border-radius: 50%; - border-color: #d3d3d3; - opacity: 1; - left: 2px; - top: 2px; -} -.input-checkbox.input-checkbox--switch label:hover:before { - border-color: #4a90e2; -} -.input-checkbox.input-checkbox--switch input:checked + label { - background: none; -} -.input-checkbox.input-checkbox--switch input:checked + label:before { - animation: none !important; - background: #4a90e2; - border-color: #4a90e2; - transform: translateX(1.85714286em); -} -.input-checkbox.input-checkbox--switch input:checked + label:after { - display: none; -} -.input-radio.field-error label { - border-color: #EBA8A8; -} -.input-radio .input__label { - font-size: .85714286em; - display: inline-block; -} -.input-radio .input__label + label { - margin-top: 0.92857143em; -} -.input-radio label { - position: relative; - background: none; - border: 1px solid #d3d3d3; -} -.input-radio label:hover { - border-color: #4a90e2; -} -.input-radio label:before { - content: ''; - position: absolute; - width: 100%; - height: 100%; - border-radius: 50%; - border: 1px solid #4a90e2; - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; - opacity: 0; - left: 0; -} -.input-radio input:checked + label { - border-color: #4a90e2; - background-color: #4a90e2; -} -.input-radio input:checked + label:after { - content: ''; - position: absolute; - width: 10px; - height: 10px; - left: 7px; - top: 7px; - background-color: #fff; - border-radius: 50%; -} -.input-radio input:checked + label:before { - animation: pulse .4s ease forwards; -} -.input-radio--innerlabel label { - transition: all .3s ease; - height: 2.78571429em; - line-height: 2.50714286em; - padding: 0 0.92857143em; - border: 1px solid #ececec; - border-radius: 6px; - cursor: pointer; - width: 100%; - text-align: center; -} -.input-radio--innerlabel:hover { - border-color: #4a90e2; -} -.input-radio--innerlabel input:checked + label { - border-color: #4a90e2; - background: #4a90e2; - color: #fff; -} -.input-radio--innerlabel input:checked + label:after { - display: none; -} -.input-radio--innerlabel input:checked + label:before { - animation: none; -} -@media all and (max-width: 1024px) { - .input-radio input:checked + label:after { - top: 6px; - left: 6px; - } -} -.bg--primary .input-radio--innerlabel { - border-color: #76abe9; -} -.bg--primary .input-radio--innerlabel:hover { - border-color: #fff; -} -.bg--primary .input-radio--innerlabel.checked { - background: #fff; - border-color: #fff; -} -.bg--primary .input-radio--innerlabel.checked label { - color: #4a90e2; -} -.bg--primary-1 .input-radio--innerlabel { - border-color: #3e7cc2; -} -.bg--primary-1 .input-radio--innerlabel:hover { - border-color: #fff; -} -.bg--primary-1 .input-radio--innerlabel.checked { - background: #fff; - border-color: #fff; -} -.bg--primary-1 .input-radio--innerlabel.checked label { - color: #31639c; -} -.input-select { - position: relative; -} -.input-select select { - -moz-appearance: none; - -webkit-appearance: none; -} -.input-select select::-ms-expand { - display: none; -} -.input-select:not(:last-child) { - margin-bottom: 0.92857143em; -} -.input-select:after { - position: absolute; - right: 0; - height: 100%; - top: 0; - font-size: 30px; - content: '\2263'; - pointer-events: none; - padding: 0 13px; - border-left: 1px solid #ececec; - line-height: 31px; -} -.input-select:focus:after { - border-color: #4a90e2; -} -.input-select select:focus { - border-color: #4a90e2; -} -.input-number { - position: relative; -} -.input-number > input[type="number"] { - padding-left: .46428571em; - -moz-appearance: textfield; - width: 100%; - text-align: center; -} -.input-number > input[type="number"]::-webkit-inner-spin-button { - display: none; -} -.input-number .input-number__controls { - position: absolute; - height: 100%; - width: 100%; - right: 0; - top: 0; - padding: 0 0.92857143em; -} -.input-number .input-number__controls > span { - position: absolute; - display: block; - width: 10%; - min-width: 3.71428571em; - height: 100%; - cursor: pointer; - -webkit-user-select: none; - user-select: none; - text-align: center; - padding-top: 6px; - transition: all .3s ease; -} -.input-number .input-number__controls > span:hover { - color: #4a90e2; -} -.input-number .input-number__controls .input-number__increase { - right: 0; - border-left: 1px solid #ececec; -} -.input-number .input-number__controls .input-number__decrease { - left: 0; - border-right: 1px solid #ececec; -} -/*! -- Stack Subscribe Forms -- */ -.subscribe-form-1 h3 { - margin-bottom: 0.52em; -} -.subscribe-form-1.boxed form { - margin: 1.85714286em; -} -@media all and (min-width: 991px) { - .subscribe-form-2 p { - top: 2px; - position: relative; - } - .subscribe-form-2 input { - margin: 0; - } - .subscribe-form-2 form [class*='col-'] { - margin: 0 !important; - } -} -@media all and (max-width: 990px) { - .subscribe-form-2 { - text-align: center; - } - .subscribe-form-2 form { - margin-top: 1.85714286em; - } -} -/*! -- Stack Elaborate Forms -- */ -@media all and (max-width: 767px) { - .elaborate-form-1 .pos-vertical-center { - padding-left: 15px; - padding-right: 15px; - } - .elaborate-form-1 form .col-xs-6:nth-child(even) { - padding-left: 15px; - } - .elaborate-form-1 form .col-xs-6:nth-child(odd) { - padding-right: 15px; - } - .elaborate-form-1 .row form > .row { - margin-left: -15px; - margin-right: -15px; - } -} -/* Stack Boxed Forms */ -.boxed-form h4 { - margin-bottom: 0.684210526315789em; -} -.boxed-form:last-child { - margin-bottom: 0; -} -/* Stack Datepicker Form */ -.datepicker { - cursor: pointer; -} -.picker { - transition: all .3s ease; - z-index: 10; - max-width: 100%; - -webkit-transition: all .3s ease; - margin-top: 0.46428571em; - position: absolute; - background: #ffffff; - border: 1px solid #ececec; - border-radius: 6px; - padding: 0.92857143em; - box-shadow: 0 23px 40px rgba(0, 0, 0, 0.2); -} -.picker .picker__header { - text-align: center; - margin-bottom: 0.92857143em; -} -.picker .picker__header > div { - font-weight: 600; - display: inline-block; - color: #252525; -} -.picker .picker__header > div:not(:last-child) { - margin-right: 0.46428571em; -} -.picker .picker__header .picker__nav--prev, -.picker .picker__header .picker__nav--next { - height: 10px; - width: 10px; - cursor: pointer; -} -.picker .picker__header .picker__nav--prev:after, -.picker .picker__header .picker__nav--next:after { - font-family: 'stack-interface'; -} -.picker .picker__header .picker__nav--next { - float: right; -} -.picker .picker__header .picker__nav--next:after { - content: '\e80c'; -} -.picker .picker__header .picker__nav--prev { - float: left; -} -.picker .picker__header .picker__nav--prev:after { - content: '\e80b'; -} -.picker .picker__day { - transition: all .3s ease; - cursor: pointer; -} -.picker .picker__day.picker__day--highlighted { - color: #4a90e2; - font-weight: 600; -} -.picker .picker__day:hover { - color: #4a90e2; -} -.picker:not(.picker--opened) { - opacity: 0; - visibility: hidden; - pointer-events: none; - transform: scale(0); -} -.picker .picker__holder { - outline: none !important; - border: none !important; -} -.picker table td { - padding: 0.46428571em; - padding-top: 0; -} -.picker .picker__footer { - text-align: center; -} -.picker .picker__button--today { - float: left; -} -.picker .picker__button--close { - float: right; -} -.picker button { - transition: all .3s ease; - height: auto; - border: none; - display: inline-block; -} -.picker button:not(:hover) { - opacity: .5; -} -/*! -- Stack Sliders -- */ -.flickity-prev-next-button { - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; - border-radius: 0; - background: #252525; - width: 2.78571429em; - height: 5.57142857em; -} -.flickity-prev-next-button:not(:hover) { - opacity: .5; -} -.flickity-prev-next-button:hover { - background: #252525; -} -.flickity-prev-next-button.previous { - left: 0; -} -.flickity-prev-next-button.next { - right: 0; -} -.flickity-prev-next-button:before { - color: #fff; -} -.slider.slider--inline-arrows .flickity-prev-next-button { - background: none; -} -.slider.slider--inline-arrows .flickity-prev-next-button:before { - font-size: 1.78571429em; - color: #252525; - content: '\e802'; -} -.slider.slider--inline-arrows .flickity-prev-next-button.previous:before { - content: '\e801'; -} -.slider.slider--columns .previous { - left: 15px; -} -.slider.slider--columns .next { - right: 15px; -} -.slider.border--round .slides li { - border-radius: 6px; - overflow: hidden; -} -.slider.boxed--border .slides li { - border: 1px solid #ececec; -} -.slider .slides li .feature:not(.feature-9) { - margin-bottom: 0; -} -.slide .boxed:last-child { - margin-bottom: 0; -} -.slide:not([class*='col-']) > img:only-child { - width: 100%; -} -.bg--dark .slider.slider--inline-arrows .flickity-prev-next-button:before, -.bg--primary .slider.slider--inline-arrows .flickity-prev-next-button:before, -.imagebg:not(.image--light) .slider.slider--inline-arrows .flickity-prev-next-button:before { - color: #fff; -} -@media all and (max-width: 990px) { - .flickity-prev-next-button { - display: none; - } -} -@media all and (min-width: 768px) { - h2 + .slider, - .h2 + .slider { - margin-top: 3.71428571em; - } -} -.slider.slider--ken-burns:not(.parallax) .slide.is-selected > .background-image-holder, -.slider.slider--ken-burns:not(.parallax) .slide.is-selected > img:only-child { - animation: kenBurns 15s ease alternate infinite; - -webkit-animation: kenBurns 15s ease alternate infinite; -} -.radial { - margin-left: auto; - margin-right: auto; -} -.radial .radial__label { - transition: opacity .3s ease; - -webkit-transition: opacity .3s ease; -} -.radial:not(.radial--active) .radial__label { - opacity: 0; -} -.radial:not(:last-child) { - margin-bottom: 1.85714286em; -} -@media all and (max-width: 767px) { - .radial { - margin-bottom: 1.85714286em; - } -} -/*! -- Stack Pricing -- */ -.pricing { - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; - position: relative; -} -.pricing h3:first-child { - margin: 0; -} -.pricing .label { - top: 2.78571429em; - right: 2.78571429em; -} -.pricing .h2 { - margin-bottom: 0.3939393939394em; -} -.pricing ul li:not(:last-child) { - margin-bottom: 0.46428571em; -} -.pricing ul li .checkmark + span { - position: relative; - bottom: 3px; -} -.pricing:hover { - box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); - box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.04); -} -.pricing .h1 { - font-size: 4.21428571428571em; - line-height: 1.10169491525424em; - margin-bottom: 0.22033898305085em; -} -.pricing .h1 .pricing__dollar { - font-size: 0.51020408163265em; - position: relative; - bottom: 20px; -} -.pricing .feature-6 p { - min-height: 5.57142857em; -} -.pricing-1 .btn:last-child { - position: absolute; - width: 100%; - bottom: 0; - left: 0; - border-radius: 0 0 6px 6px; - padding: 0.92857143em 0; - margin: 0; -} -.pricing-1 .btn:last-child:hover { - transform: none !important; -} -.pricing-1 ul { - margin-bottom: 5.57142857em; -} -.pricing-1 p { - min-height: 5.57142857em; -} -.pricing-1 p:first-of-type { - margin-top: 1.85714286em; -} -.pricing-1 p:last-of-type { - margin-bottom: 5.57142857em; -} -.pricing-1 img + p:first-of-type { - margin-top: 0; -} -@media all and (min-width: 991px) { - .pricing-2 ul:first-child { - margin-top: 4.64285714em; - } -} -@media all and (max-width: 990px) { - .pricing-2 { - text-align: center; - } - .pricing-2 ul:first-child { - margin-top: 1.85714286em; - } -} -.pricing-3 { - border: 1px solid #ececec; - border-radius: 6px; -} -.pricing-3 .pricing__head { - margin: 0; - border-bottom: 1px solid #ececec; -} -.pricing-3 .pricing__head + .btn { - display: block; - border-radius: 0; - padding: 0.92857143em 0; -} -.pricing-3 ul { - border-radius: 0 0 6px 6px; -} -.pricing-3 ul li { - padding: 0.92857143em 0; -} -.pricing-3 ul li:not(:last-child) { - border-bottom: 1px solid #ececec; - margin: 0; -} -.pricing-3 ul:last-child { - margin: 0; -} -@media all and (max-width: 990px) { - .pricing-3 { - margin-bottom: 1.85714286em; - } -} -@media all and (min-width: 768px) { - .pricing-section-1 .pricing:not(.boxed--emphasis) { - left: 0.92857143em; - } - .pricing-section-1 .pricing.boxed--emphasis { - right: 0.92857143em; - } -} -@media all and (min-width: 990px) { - .pricing-section-2 div[class*='col-'] { - padding: 0; - } - .pricing-section-2 div[class*='col-']:not(:first-child):not(:last-child) .pricing__head { - border-radius: 0; - } - .pricing-section-2 div[class*='col-']:first-child .pricing { - border-radius: 6px 0 0 6px; - } - .pricing-section-2 div[class*='col-']:first-child .pricing .pricing__head { - border-radius: 6px 0 0 0; - } - .pricing-section-2 div[class*='col-']:last-child .pricing { - border-radius: 0 6px 6px 6px; - border-right: 1px solid #ececec; - } - .pricing-section-2 div[class*='col-']:last-child .pricing .pricing__head { - border-radius: 0 6px 0 0; - } - .pricing-section-2 .pricing { - border: 1px solid #ececec; - border-radius: 0 0 0 6px; - border-right: none; - } - .pricing-section-2 .pricing:hover { - box-shadow: none; - } - .pricing-section-2 .pricing ul { - margin: 0; - } -} -.pricing-section-2.bg--dark .pricing, -.pricing-section-2.bg--dark .pricing .pricing__head, -.pricing-section-2.bg--dark .pricing ul li:not(:last-child), -.pricing-section-2.bg--dark div[class*='col-']:last-child .pricing { - border-color: #3f3f3f; -} -.pricing-section-2.imagebg .pricing, -.pricing-section-2.imagebg .pricing .pricing__head, -.pricing-section-2.imagebg .pricing ul li:not(:last-child), -.pricing-section-2.imagebg div[class*='col-']:last-child .pricing { - border-color: rgba(255, 255, 255, 0.2); -} -/*! -- Stack Progress Horizontal -- */ -.progress-horizontal:not(:last-child) { - margin-bottom: 1.85714286em; -} -.progress-horizontal.progress-horizontal--lg .progress-horizontal__bar { - height: 1.85714286em; -} -.progress-horizontal.progress-horizontal--sm .progress-horizontal__bar { - height: 0.46428571em; -} -.progress-horizontal__bar { - height: 0.92857143em; - border-radius: 100px; - background: #fafafa; - border: 1px solid rgba(0, 0, 0, 0.1); -} -.progress-horizontal__bar:not(:last-child) { - margin-bottom: 0.46428571em; -} -.progress-horizontal__progress { - background: #4a90e2; - border-radius: 100px; -} -/*! -- Stack Maps -- */ -iframe[src*='google.com/maps'] { - border: none; -} -.map-container { - min-height: 400px; -} -.map-container:not(:last-child) { - margin-bottom: 1.85714286em; -} -.map-container.border--round { - overflow: hidden; - z-index: 2; -} -.map-container.border--round .gm-style { - border-radius: 6px; -} -.map-container iframe { - left: 0; -} -@media all and (min-width: 768px) { - .background-image-holder .map-container, - .imageblock__content .map-container { - position: absolute; - width: 100%; - height: 100%; - top: 0; - left: 0; - } - .map-container + div[class*='col-'] { - margin-top: 3.71428571em; - } -} -/*! -- Stack Testimonials -- */ -.testimonial { - position: relative; - overflow: hidden; -} -.testimonial h5:nth-last-child(2) { - margin: 0; -} -.testimonial .testimonial__image { - margin-bottom: 1.85714286em; -} -@media all and (min-width: 1025px) { - .testimonial-1 .switchable__text { - margin-top: 7.42857143em; - } -} -.testimonial-2 { - float: none; - width: 100%; -} -.testimonial-2 .testimonial__image img { - max-height: 3.71428571em; - float: left; - margin-right: 1.85714286em; -} -.testimonial-2 .boxed { - width: 100%; -} -@media all and (max-width: 990px) { - .testimonial-2 p { - min-height: 7.42857143em; - } -} -@media all and (max-width: 767px) { - .testimonial-2 p { - min-height: 0; - } -} -@media all and (min-width: 768px) { - .lead + .testimonial-2 { - margin-top: 3.71428571em; - } -} -@media all and (min-width: 768px) { - .testimonials-1 .list-inline { - position: relative; - top: 0.92857143em; - } - .testimonials-1 .list-inline li:not(:last-child) { - margin-right: 3.71428571em; - } -} -@media all and (max-width: 767px) { - .testimonials-1 .list-inline { - margin-top: 1.85714286em; - } - .testimonials-1 .list-inline li { - margin-bottom: 1.85714286em; - } -} -/*! -- Stack Masonry -- */ -.masonry__item:not(:empty) { - margin-bottom: 30px; - transform-style: preserve-3d; -} -.masonry__item:not(:empty) article { - margin: 0; -} -.masonry__item:not(:empty) article .boxed { - margin: 0; -} -.masonry__item:empty { - height: 0; - min-height: 0; -} -.masonry hr + .masonry__container, -.masonry hr + .row { - margin-top: 4.64285714em; -} -.masonry-filter-holder:not(.masonry-filters--horizontal) { - display: inline-block; - cursor: pointer; - height: 3.71428571em; - position: relative; - z-index: 9; - min-width: 143px; -} -.masonry-filter-holder:not(.masonry-filters--horizontal) .masonry__filters { - cursor: pointer; - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; - z-index: 2; - display: inline-block; - position: absolute; - left: 0; - text-align: left; - padding: 0.92857143em 1.85714286em; - border: 1px solid #ececec; - background: #ffffff; - border-radius: 6px; -} -.masonry-filter-holder:not(.masonry-filters--horizontal) .masonry__filters ul { - margin: 0; - cursor: pointer; -} -.masonry-filter-holder:not(.masonry-filters--horizontal) .masonry__filters ul li { - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; - display: block; - color: #666666; - white-space: nowrap; -} -.masonry-filter-holder:not(.masonry-filters--horizontal) .masonry__filters ul li:not(:last-child) { - margin-bottom: 0.92857143em; -} -.masonry-filter-holder:not(.masonry-filters--horizontal) .masonry__filters ul li.active { - color: #4a90e2; - cursor: pointer; -} -.masonry-filter-holder:not(.masonry-filters--horizontal) .masonry__filters ul li.active:after { - content: '\25bc'; - font-size: 8px; - margin-left: 6px; - position: relative; - bottom: 2px; - display: inline-block; - transform: scaleX(1.4) scaleY(0.9); - transition: 0.2s linear; - -webkit-transition: 0.2s linear; - -moz-transition: 0.2s linear; -} -.masonry-filter-holder:not(.masonry-filters--horizontal) .masonry__filters ul li:hover { - color: #4a90e2; -} -.masonry-filter-holder:not(.masonry-filters--horizontal) .masonry__filters ul:hover li.active:after { - opacity: 0; -} -.masonry-filter-holder:not(.masonry-filters--horizontal):not(:hover) .masonry__filters ul { - max-height: 1.85714286em; - overflow: hidden; -} -.masonry-filter-holder:not(.masonry-filters--horizontal):not(:hover) .masonry__filters ul li:not(.active) { - display: none; -} -.masonry-filter-holder:not(.masonry-filters--horizontal):hover .masonry__filters { - box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); - box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.04); -} -.masonry-filter-holder:not(.masonry-filters--horizontal):hover .masonry__filters ul li.active { - cursor: default; -} -.masonry-filters--horizontal { - display: inline-block; -} -.masonry-filters--horizontal .masonry__filters { - display: inline-block; - position: relative; - bottom: 20px; - margin-left: 0.92857143em; -} -.masonry-filters--horizontal .masonry__filters ul li { - transition: all .3s ease; - cursor: pointer; - display: inline-block; -} -.masonry-filters--horizontal .masonry__filters ul li:not(:last-child) { - margin-right: 1.85714286em; -} -.masonry-filters--horizontal .masonry__filters ul li.active { - color: #4a90e2; -} -.masonry-filters--horizontal .masonry__filters ul li:not(.active) { - opacity: .5; -} -.masonry-filters--horizontal .masonry__filters ul li:hover { - opacity: 1; -} -.masonry-filter-holder + .masonry__container { - margin-top: 3.71428571em; -} -.bg--dark .masonry-filter-holder .masonry__filters { - background: #2a2a2a; - border-color: #3f3f3f; -} -.bg--dark .masonry-filter-holder .masonry__filters li { - color: #fff; -} -.masonry.masonry-demos .masonry__item:not(:empty) { - margin-bottom: 3.71428571em; -} -.masonry.masonry-demos .masonry__item h5 { - margin-bottom: 0; -} -.masonry.masonry-demos .masonry__item:not([style]) .hover-item { - min-height: 450px; - background: #323232; - border: 1px solid #3f3f3f; -} -.masonry.masonry-demos .hover-item { - transition: 0.35s ease-out; - -webkit-transition: 0.35s ease-out; - -moz-transition: 0.35s ease-out; - border-radius: 6px; - overflow: hidden; -} -.masonry.masonry-demos .hover-item:hover { - transform: translateY(-10px); -} -.masonry.masonry-demos .masonry__container { - margin-top: 3.71428571em; -} -/*! -- Stack Blog -- */ -article .article__title { - margin-bottom: 3.71428571em; -} -article .article__title > a { - display: block; -} -article .article__title > a:hover { - text-decoration: none; - opacity: .75; -} -article .article__title h2 { - margin-bottom: 0.3939393939394em; -} -article .article__title h1 { - margin-bottom: 0.29545454545455em; -} -article .article__body img, -article .article__body iframe, -article .article__body .video-cover { - border-radius: 6px; -} -article .article__body img:not(:last-child), -article .article__body iframe:not(:last-child), -article .article__body .video-cover:not(:last-child) { - margin-bottom: 1.85714286em; -} -article .article__body > a:first-child > img { - margin-bottom: 1.85714286em; -} -article .article__body p, -article .article__body ul { - font-size: 1.35714286em; - line-height: 1.68421053em; - font-weight: 400; - color: #808080; -} -article .article__body p:not(:last-child), -article .article__body ul:not(:last-child) { - margin-bottom: 1.36842105263158em; -} -article .article__body p + .btn:last-child, -article .article__body ul + .btn:last-child { - margin-top: 0.92857143em; -} -article .article__body p + h5, -article .article__body ul + h5 { - margin-top: 2.78571429em; -} -article .article__body blockquote { - text-align: center; -} -article .article__body blockquote:not(:last-child) { - margin-top: 2.08em; - margin-bottom: 2.08em; -} -article .article__share { - margin-top: 5.57142857em; -} -article.imagebg { - padding: 1.85714286em; - overflow: hidden; -} -article.imagebg:before { - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; -} -article.imagebg:hover:before { - opacity: .6; -} -article.imagebg .article__title { - margin: 0; - position: absolute; - bottom: 0; - z-index: 2; - max-width: 90%; -} -article.imagebg .article__title span { - font-size: 0.85714286em; -} -article.imagebg .label { - z-index: 2; - top: 1.85714286em; - right: 1.85714286em; -} -article.feature-1 h5 { - min-height: 3.71428571em; -} -article.feature-1 a img { - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; -} -article.feature-1 a:hover img { - opacity: .85; -} -figure[class*='col-'] { - padding: 0 !important; -} -figure.pull-right { - margin-left: 2.78571429em; -} -figure.pull-left { - margin-right: 2.78571429em; -} -figure img:not(:last-child) { - margin-bottom: 0.46428571em !important; -} -figure figcaption { - font-size: 0.85714286em; - font-style: italic; -} -section.unpad > article .imagebg + div { - padding: 5.57142857em 0; -} -.article__author { - padding-bottom: 1.85714286em; -} -.article__author img { - max-height: 3.71428571em; - margin-bottom: 0.46428571em; -} -.slides--gapless article.imagebg { - height: 27.85714286em; -} -.masonry-blog-magazine article, -.masonry-blog-magazine .masonry__promo { - height: 338px; -} -.masonry-blog-magazine .height--tall { - height: calc(706px); -} -@media all and (min-width: 991px) { - .masonry__promo.boxed--lg { - padding: 7.42857143em; - } -} -@media all and (max-width: 990px) { - .masonry-blog-magazine .height--tall { - height: 338px; - } - .masonry__promo .pos-vertical-center { - top: 0; - transform: none; - } -} -@media all and (max-width: 1200px) { - .masonry__promo.boxed--lg { - padding: 3.71428571em; - } -} -.pagination { - text-align: center; - margin-top: 1.85714286em; -} -.pagination:after { - content: ""; - display: table; - clear: both; -} -.pagination a { - font-weight: normal; -} -.pagination div[class*='col-'] { - padding: 0; -} -.pagination ol { - margin-bottom: 0; - display: inline-block; -} -.pagination ol li { - display: inline-block; - margin: 0; - font-weight: 700; - line-height: 23px; - width: 1.85714286em; - height: 1.85714286em; - border-radius: 50%; - border: 1px solid #ececec; -} -.pagination ol li > a { - font-weight: 700; -} -.pagination ol li:not(:last-child) { - margin-right: 0.46428571em; -} -.pagination ol li.pagination__current { - cursor: default; - background: #ececec; - color: #aaa; -} -.pagination__prev, -.pagination__next { - display: inline-block; -} -.pagination__next { - float: right; -} -.pagination__prev { - float: left; -} -.blog-article-wide:not(:last-child) { - border-bottom: 1px solid #ececec; - margin-bottom: 3.71428571em; -} -.masonry-blog-list hr + .masonry__container { - margin-top: 0; -} -.masonry-blog-list article { - border-bottom: 1px solid #ececec; - padding-top: 2.78571429em; - margin-bottom: 5.57142857em; -} -.masonry-blog-list article .article__body { - padding-bottom: 5.57142857em; -} -.masonry-blog-magazine .masonry__item a { - font-weight: normal; -} -.masonry-blog-magazine .masonry__item a:hover { - text-decoration: none; -} -.masonry-filter-container { - margin-bottom: 1.85714286em; -} -.masonry-filter-container > span { - position: relative; - bottom: 20px; -} -.masonry-filter-container > span + .masonry-filter-holder { - margin-left: 0.92857143em; -} -.comments__list li { - padding: 1.85714286em; - border: 1px solid #ececec; - border-bottom: none; -} -.comments__list li:last-child { - border-bottom: 1px solid #ececec; -} -.comments__list li:nth-child(odd) { - background: #fcfcfc; -} -.comments__list li:nth-child(even) { - background: #f9f9f9; -} -.comments__list li:first-child { - border-radius: 6px 6px 0 0; -} -.comments__list li:last-child { - border-radius: 0 0 6px 6px; -} -.bg--secondary .comments__list li:nth-child(even) { - background: #fff; -} -@media all and (min-width: 768px) { - .comments__list li { - padding: 2.78571429em; - } -} -.comment { - overflow: hidden; -} -.comment:not(:last-child) { - border-bottom: 1px solid #ececec; - padding-bottom: 1.85714286em; -} -.comment .comment__avatar { - width: 15%; - float: left; -} -.comment .comment__avatar img { - max-height: 3.71428571em; -} -.comment .comment__meta { - font-size: 0.85714286em; -} -.comment .comment__meta a { - display: inline-block; -} -.comment .comment__meta a:not(:first-child) { - margin-left: 1.08333333333334em; -} -.comment .comment__meta + p { - margin-top: 0.92857143em; -} -.comment .comment__body { - width: 85%; - float: right; -} -.comment .comment__body h5.type--fine-print { - margin: 0; -} -.comment + .comment { - margin-top: 1.85714286em; - padding-left: 15%; -} -@media all and (min-width: 768px) { - .comments + .comments-form { - margin-top: 3.71428571em; - } -} -@media all and (min-width: 768px) { - h3 + .related-blog-list { - margin-top: 3.71428571em; - } -} -.related-blog-list li:not(:last-child) { - margin-bottom: 1.85714286em; -} -.related-blog-list article img { - border-radius: 6px; -} -.related-blog-list article .article__title { - margin-top: 0.92857143em; - margin-bottom: 0; -} -.related-blog-list article .article__title .h4 { - margin-bottom: 0.68421052631579em; -} -@media all and (min-width: 991px) { - .sidebar { - margin-top: 7.42857143em; - position: relative; - bottom: 18px; - } -} -.sidebar__widget > h5:first-child { - margin-bottom: 0.92857143em; -} -.sidebar__widget:not(:last-child) { - margin-bottom: 3.71428571em; -} -.tag-cloud li { - display: inline-block; -} -.tag-cloud li:not(:last-child) { - margin-right: 0.46428571em; -} -.tag-cloud li:not(:last-child):after { - content: ','; -} -.conversation__head { - border-radius: 6px 6px 0 0; -} -.conversation__head.boxed:not(:last-child) { - margin: 0; -} -.conversation__head h4 { - margin: 0; -} -.conversation__head .conversation__avatar { - margin-top: 0.92857143em; -} -.conversation__head .conversation__avatar img { - max-height: 1.85714286em; - display: inline-block; - margin-right: 0.46428571em; - margin-bottom: 0; -} -@media all and (min-width: 768px) { - .conversation__avatar { - position: absolute; - top: 1.85714286em; - right: 2.78571429em; - } -} -.conversation__reply { - border-top: none !important; - border-bottom: none; - border-radius: 0; -} -.conversation__reply.boxed:not(:last-child) { - margin-bottom: 0; -} -.conversation__reply + .conversation__comments .comments__list li:first-child { - border-radius: 0; - border-top: none; -} -/*! -- Stack Portfolio -- */ -.project-thumb > a { - display: block; -} -.project-thumb:not(.hover-element) > a { - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; - margin-bottom: 1.85714286em; -} -.project-thumb:not(.hover-element) > a:hover { - opacity: .85; -} -.project-thumb.hover-element { - margin: 0; -} -.project-thumb.hover-element > a { - height: 24.14285714em; - text-decoration: none; - font-weight: normal; -} -.project-thumb.hover-element .background-image-holder { - transition: 0.5s ease-out; - -webkit-transition: 0.5s ease-out; - -moz-transition: 0.5s ease-out; -} -.project-thumb.hover-element .hover-element__reveal .project-thumb__title { - padding: 1.85714286em; - z-index: 2; - position: relative; - color: #fff; -} -.project-thumb.hover-element .hover-element__reveal .project-thumb__title h5 { - margin: 0; -} -.project-thumb.hover-element.hover--active { - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; -} -.project-thumb.hover-element.hover--active:hover { - opacity: .85; -} -.project-thumb.hover-element:not(.hover--active)[data-scrim-top] .hover-element__reveal { - transition: 0.5s ease; - -webkit-transition: 0.5s ease; - -moz-transition: 0.5s ease; - transform: translate3d(0, -100px, 0); - -webkit-transform: translate3d(0, -100px, 0); -} -.project-thumb.hover-element:not(.hover--active)[data-scrim-top]:hover .hover-element__reveal { - transform: translate3d(0, 0, 0); - -webkit-transform: translate3d(0, 0, 0); -} -.project-thumb.hover-element [data-scrim-top]:before { - height: 100%; -} -.project-thumb h4 { - margin-bottom: 0; -} -.project-thumb.height-40 { - min-height: 350px; -} -@media all and (max-width: 767px) { - .project-thumb.height-40 { - height: 350px; - min-width: 100%; - } -} -@media all and (min-width: 768px) { - .col-xs-12:not(.col-sm-6) .project-thumb.hover-element > a { - height: 46.42857143em; - } -} -.project-thumb.border--round .background-image-holder { - border-radius: 6px; -} -.project-thumb.border--round > a { - border-radius: 6px; - overflow: hidden; -} -.project-thumb.border--round:before { - border-radius: 6px; - overflow: hidden; -} -.col-md-4 .project-thumb > a:not(.imagebg) { - margin-bottom: 0.92857143em; -} -/*! -- Stack Shop -- */ -.cart-form button[type="submit"] { - margin-top: 1.85714286em; -} -.cart-total > div { - overflow: hidden; -} -@media all and (min-width: 768px) { - .cart-total { - margin-top: 3.71428571em; - } - .cart-customer-details { - margin-top: 7.42857143em; - } -} -@media all and (max-width: 767px) { - .cart-total { - margin-top: 1.85714286em; - } -} -.cart-customer-details div[class*='col-'] { - margin-top: 0.46428571em; -} -.cart-customer-details .input-checkbox { - margin: 1.85714286em 0; -} -.cart-customer-details .input-checkbox + span { - bottom: 38px; -} -.product { - margin-bottom: 0.92857143em; -} -.product img { - margin-bottom: 0.92857143em; - transition: 0.3s ease; - -webkit-transition: 0.3s ease; - -moz-transition: 0.3s ease; - backface-visibility: hidden; -} -.product a:hover img { - transform: translate3d(0, -5px, 0); - -webkit-transform: translate3d(0, -5px, 0); -} -.product .label + img { - margin-top: 2.78571429em; -} -.product h5 { - display: inline-block; - margin-bottom: 0; - margin-right: 0.46428571em; -} -.product .h4 { - margin-bottom: 0; -} -.product .h4:first-child { - clear: left; -} -.product .product__controls { - overflow: hidden; - margin-bottom: 0.92857143em; -} -.product .product__controls label, -.product .product__controls button { - position: relative; - top: 6px; -} -.product.product--tile { - padding: 1.85714286em; - border-radius: 6px; -} -@media all and (min-width: 1200px) { - .product .btn--cart { - position: absolute; - right: 1.85714286em; - bottom: 1.85714286em; - } -} -.col-sm-6:not(.col-md-3) .product { - text-align: center; -} -.col-md-3 .product--tile h5 { - display: block; -} -.masonry--tiles { - padding: 10px; -} -.masonry--tiles .masonry__item:not(:empty) { - padding: 0 6px; - margin-bottom: 12px; -} -.masonry--tiles .masonry__item:not(:empty) .product--tile { - margin: 0; -} -.masonry--tiles .masonry__item:not(:empty) .product--tile .label { - top: 1.85714286em; - right: 2.78571429em; -} -/*! -- Stack Wizard -- */ -.wizard { - transition: opacity .3s ease; - opacity: 0; -} -.wizard.active { - opacity: 1; -} -.wizard > .actions a, -.wizard > .actions a:hover, -.wizard > .actions a:active { - background: #4a90e2; - transition: all .3s ease; - padding: 0.46428571em 1.85714286em; - font-size: 12px; - text-transform: uppercase; - font-weight: 700; - letter-spacing: 1px; - color: #fff; -} -.wizard > .steps .current a, -.wizard > .steps .current a:hover, -.wizard > .steps .current a:active { - background: none; - color: #252525; -} -.wizard > .steps a { - position: relative; -} -.wizard > .steps a:before { - content: ''; - width: 15px; - height: 15px; - border-radius: 50%; - position: absolute; - left: 50%; - margin-left: -10px; - background: #eee; - display: block; - bottom: 0; - transition: all .2s ease; -} -.wizard > .steps a:after { - content: ''; - position: absolute; - width: 100%; - bottom: 7px; - height: 2px; - background: #eee; - left: 0; - transition: all .2s ease; -} -.wizard > .steps li:first-child a:after { - width: 50%; - left: 50%; -} -.wizard > .steps li:last-child a:after { - width: 50%; -} -.wizard > .steps li.current a:after, -.wizard > .steps li.current a:before { - background-color: #4a90e2; -} -.wizard > .steps a, -.wizard > .steps a:hover { - padding-bottom: 2.78571429em; -} -.wizard > .steps .done a, -.wizard > .steps .done a:hover, -.wizard > .steps .done a:active, -.wizard > .steps .disabled a, -.wizard > .steps .disabled a:hover, -.wizard > .steps .disabled a:active { - background: none; - color: #252525; -} -.wizard > .steps a, -.wizard > .steps a:hover, -.wizard > .steps a:active { - margin: 0; -} -.wizard > .actions a, -.wizard > .actions a:hover, -.wizard > .actions a:active { - user-select: none; - -moz-user-select: none; - -webkit-user-select: none; -} -.wizard > .steps > ul, -.wizard > .actions { - text-align: center; -} -.wizard > .steps > ul > li, -.wizard > .actions > ul > li { - float: none; - display: inline-block; -} -.wizard > section { - padding: 0; -} -.wizard > .content { - background: #fafafa; - margin-top: 1.85714286em; - margin-bottom: 1.85714286em; - border: 1px solid #ececec; -} -.wizard > .content > .body { - padding: 1.85714286em; - width: 100%; - height: 100%; -} -.wizard > .steps .number { - font-size: 1em; -} -@media all and (max-width: 767px) { - .wizard > .steps .number { - display: block; - } - .wizard > .content { - min-height: 25em; - } - .wizard .pos-vertical-center { - top: 50%; - transform: translateY(-50%); - -wekbit-transform: translateY(-50%); - } -} -.wizard.bg--white { - background: none !important; -} -.wizard.bg--white > .content { - background: #fff; -} -.wizard > .content img { - max-height: 240px; -} -@media all and (max-width: 767px) { - .wizard > .content img { - max-height: 120px; - margin-bottom: 0.92857143em; - } -} -/*! -- Stack Footers -- */ -footer .type--fine-print:not(p) { - opacity: .5; -} -footer a { - font-weight: normal; -} -footer:not(.bg--primary):not(.bg--dark) a { - color: #666666; -} -footer a.type--fine-print:not(:first-child) { - margin-left: 1.85714286em; -} -footer .logo { - max-height: 1.67142857em; -} -footer ul:not(.list-inline):not(.slides) > li { - line-height: 2.32142857em !important; -} -footer.footer-2 .row:last-child { - margin-top: 3.71428571em; -} -footer.footer-5 .row [class*='col-'] > div:nth-last-child(2) { - margin: 0.92857143em; -} -footer.footer-5 .row [class*='col-'] > div:nth-last-child(2) .type--fine-print { - opacity: 1; -} -footer.footer-6 .footer__lower { - background: #fafafa; - margin-top: 1.85714286em; - padding: 1.85714286em 0; -} -footer.footer-6.bg--dark .footer__lower { - background: #181818; -} -footer.footer-6.bg--secondary .footer__lower { - background: #f5f5f5; -} -footer.footer-6.bg--primary .footer__lower { - background: #3483de; -} -footer.footer-7 { - padding: 1.85714286em 0; -} -@media all and (min-width: 768px) { - footer .list-inline + .btn { - position: relative; - bottom: 4px; - } - footer .logo { - margin: 0; - } - footer .logo:not(:last-child) { - margin-right: 1.85714286em; - } - footer.footer-3 .logo + ul { - position: relative; - top: 5px; - } - footer.footer-3 .logo + ul a { - color: #252525; - } - footer.footer-3 .social-list { - position: relative; - top: 9px; - } - footer.footer-3 .row:last-child { - margin-top: 1.85714286em; - } - footer.footer-4 .logo + span { - position: relative; - top: 8px; - } - footer.footer-4 form { - position: relative; - bottom: 4px; - } - footer.footer-4 .row:last-child { - margin-top: 1.85714286em; - } - footer.imagebg:not(.image--light) span, - footer.imagebg:not(.image--light) p, - footer.imagebg:not(.image--light) a { - color: #fff; - } - .footer-1 .type--fine-print { - position: relative; - top: 2px; - } -} -@media all and (max-width: 767px) { - footer .social-list { - margin: 1.85714286em 0; - } - .footer-4 form { - margin: 1.85714286em 0; - } - .footer-4 .logo { - margin: 0; - } - .footer-6 .footer__lower .social-list { - margin-top: 1.85714286em; - } - .footer-7 .social-list { - margin-top: 1.85714286em; - } - .footer-1 .social-list { - margin-top: 1.85714286em; - } - .footer-1 .logo { - display: block; - margin-top: 1.85714286em; - margin-bottom: 0.92857143em; - margin-left: auto; - margin-right: auto; - } -} diff --git a/html/favicon.ico b/html/favicon.ico deleted file mode 100644 index 32c86aa3..00000000 Binary files a/html/favicon.ico and /dev/null differ diff --git a/html/fonts/icomoon/icomoon.eot b/html/fonts/icomoon/icomoon.eot deleted file mode 100755 index 25b7e4e4..00000000 Binary files a/html/fonts/icomoon/icomoon.eot and /dev/null differ diff --git a/html/fonts/icomoon/icomoon.svg b/html/fonts/icomoon/icomoon.svg deleted file mode 100755 index ab8dd4e0..00000000 --- a/html/fonts/icomoon/icomoon.svg +++ /dev/null @@ -1,725 +0,0 @@ - - - -Generated by IcoMoon - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/html/fonts/icomoon/icomoon.ttf b/html/fonts/icomoon/icomoon.ttf deleted file mode 100755 index 5e112933..00000000 Binary files a/html/fonts/icomoon/icomoon.ttf and /dev/null differ diff --git a/html/fonts/icomoon/icomoon.woff b/html/fonts/icomoon/icomoon.woff deleted file mode 100755 index afcece62..00000000 Binary files a/html/fonts/icomoon/icomoon.woff and /dev/null differ diff --git a/html/fonts/icomoon/icomoon/Read Me.txt b/html/fonts/icomoon/icomoon/Read Me.txt deleted file mode 100755 index 3f4f2ca9..00000000 --- a/html/fonts/icomoon/icomoon/Read Me.txt +++ /dev/null @@ -1,7 +0,0 @@ -Open *demo.html* to see a list of all the glyphs in your font along with their codes/ligatures. - -To use the generated font in desktop programs, you can install the TTF font. In order to copy the character associated with each icon, refer to the text box at the bottom right corner of each glyph in demo.html. The character inside this text box may be invisible; but it can still be copied. - -You won't need any of the files located under the *demo-files* directory when including the generated font in your own projects. - -You can import *selection.json* back to the IcoMoon app using the *Import Icons* button (or via Main Menu > Manage Projects) to retrieve your icon selection. diff --git a/html/fonts/icomoon/icomoon/demo-files/demo.css b/html/fonts/icomoon/icomoon/demo-files/demo.css deleted file mode 100755 index 970df120..00000000 --- a/html/fonts/icomoon/icomoon/demo-files/demo.css +++ /dev/null @@ -1,153 +0,0 @@ -body { - padding: 0; - margin: 0; - font-family: sans-serif; - font-size: 1em; - line-height: 1.5; - color: #555; - background: #fff; -} -h1 { - font-size: 1.5em; - font-weight: normal; -} -small { - font-size: .66666667em; -} -a { - color: #e74c3c; - text-decoration: none; -} -a:hover, a:focus { - box-shadow: 0 1px #e74c3c; -} -.bshadow0, input { - box-shadow: inset 0 -2px #e7e7e7; -} -input:hover { - box-shadow: inset 0 -2px #ccc; -} -input, fieldset { - font-size: 1em; - margin: 0; - padding: 0; - border: 0; -} -input { - color: inherit; - line-height: 1.5; - height: 1.5em; - padding: .25em 0; -} -input:focus { - outline: none; - box-shadow: inset 0 -2px #449fdb; -} -.glyph { - font-size: 16px; - width: 15em; - padding-bottom: 1em; - margin-right: 4em; - margin-bottom: 1em; - float: left; - overflow: hidden; -} -.liga { - width: 80%; - width: calc(100% - 2.5em); -} -.talign-right { - text-align: right; -} -.talign-center { - text-align: center; -} -.bgc1 { - background: #f1f1f1; -} -.fgc1 { - color: #999; -} -.fgc0 { - color: #000; -} -p { - margin-top: 1em; - margin-bottom: 1em; -} -.mvm { - margin-top: .75em; - margin-bottom: .75em; -} -.mtn { - margin-top: 0; -} -.mtl, .mal { - margin-top: 1.5em; -} -.mbl, .mal { - margin-bottom: 1.5em; -} -.mal, .mhl { - margin-left: 1.5em; - margin-right: 1.5em; -} -.mhmm { - margin-left: 1em; - margin-right: 1em; -} -.mls { - margin-left: .25em; -} -.ptl { - padding-top: 1.5em; -} -.pbs, .pvs { - padding-bottom: .25em; -} -.pvs, .pts { - padding-top: .25em; -} -.unit { - float: left; -} -.unitRight { - float: right; -} -.size1of2 { - width: 50%; -} -.size1of1 { - width: 100%; -} -.clearfix:before, .clearfix:after { - content: " "; - display: table; -} -.clearfix:after { - clear: both; -} -.hidden-true { - display: none; -} -.textbox0 { - width: 3em; - background: #f1f1f1; - padding: .25em .5em; - line-height: 1.5; - height: 1.5em; -} -#testDrive { - display: block; - padding-top: 24px; - line-height: 1.5; -} -.fs0 { - font-size: 16px; -} -.fs1 { - font-size: 14px; -} -.fs2 { - font-size: 24px; -} diff --git a/html/fonts/icomoon/icomoon/demo-files/demo.js b/html/fonts/icomoon/icomoon/demo-files/demo.js deleted file mode 100755 index e72f449b..00000000 --- a/html/fonts/icomoon/icomoon/demo-files/demo.js +++ /dev/null @@ -1,30 +0,0 @@ -if (!('boxShadow' in document.body.style)) { - document.body.setAttribute('class', 'noBoxShadow'); -} - -document.body.addEventListener("click", function(e) { - var target = e.target; - if (target.tagName === "INPUT" && - target.getAttribute('class').indexOf('liga') === -1) { - target.select(); - } -}); - -(function() { - var fontSize = document.getElementById('fontSize'), - testDrive = document.getElementById('testDrive'), - testText = document.getElementById('testText'); - function updateTest() { - testDrive.innerHTML = testText.value || String.fromCharCode(160); - if (window.icomoonLiga) { - window.icomoonLiga(testDrive); - } - } - function updateSize() { - testDrive.style.fontSize = fontSize.value + 'px'; - } - fontSize.addEventListener('change', updateSize, false); - testText.addEventListener('input', updateTest, false); - testText.addEventListener('change', updateTest, false); - updateSize(); -}()); diff --git a/html/fonts/icomoon/icomoon/demo.html b/html/fonts/icomoon/icomoon/demo.html deleted file mode 100755 index 1e2d3e1a..00000000 --- a/html/fonts/icomoon/icomoon/demo.html +++ /dev/null @@ -1,12906 +0,0 @@ - - - - - IcoMoon Demo - - - - - -
-

Font Name: icomoon (Glyphs: 715)

-
-
-

Grid Size: 14

-
-
- - - - icon-glass -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-music -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-search2 -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-envelope-o -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-heart -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-star -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-star-o -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-user -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-film -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-th-large -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-th -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-th-list -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-check -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-close -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-remove -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-times -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-search-plus -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-search-minus -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-power-off -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-signal -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-cog -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-gear -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-trash-o -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-home -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-file-o -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-clock-o -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-road -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-download -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-arrow-circle-o-down -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-arrow-circle-o-up -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-inbox -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-play-circle-o -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-repeat2 -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-rotate-right -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-refresh -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-list-alt -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-lock -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-flag -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-headphones -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-volume-off -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-volume-down -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-volume-up -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-qrcode -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-barcode -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-tag -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-tags -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-book -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-bookmark -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-print -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-camera -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-font -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-bold -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-italic -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-text-height -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-text-width -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-align-left -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-align-center2 -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-align-right -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-align-justify2 -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-list -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-dedent -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-outdent -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-indent -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-video-camera -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-image -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-photo -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-picture-o -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-pencil -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-map-marker -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-adjust -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-tint -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-edit -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-pencil-square-o -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-share-square-o -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-check-square-o -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-arrows -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-step-backward -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-fast-backward -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-backward -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-play2 -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-pause2 -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-stop2 -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-forward -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-fast-forward2 -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-step-forward -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-eject -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-chevron-left -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-chevron-right -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-plus-circle -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-minus-circle -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-times-circle -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-check-circle -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-question-circle -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-info-circle -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-crosshairs -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-times-circle-o -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-check-circle-o -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-ban2 -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-arrow-left -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-arrow-right -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-arrow-up -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-arrow-down -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-mail-forward -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-share -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-expand2 -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-compress -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-plus -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-minus -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-asterisk -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-exclamation-circle -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-gift -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-leaf -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-fire -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-eye -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-eye-slash -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-exclamation-triangle -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-warning -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-plane -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-calendar -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-random -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-comment -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-magnet -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-chevron-up -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-chevron-down -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-retweet -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-shopping-cart -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-folder -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-folder-open -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-arrows-v -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-arrows-h -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-bar-chart -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-bar-chart-o -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-twitter-square -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-facebook-square -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-camera-retro -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-key -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-cogs -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-gears -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-comments -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-thumbs-o-up -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-thumbs-o-down -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-star-half -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-heart-o -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-sign-out -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-linkedin-square -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-thumb-tack -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-external-link -
-
- - -
-
- liga: - -
-
-
-
- - icon-sign-in -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-trophy -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-github-square -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-upload -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-lemon-o -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-phone -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-square-o -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-bookmark-o -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-phone-square -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-twitter -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-facebook -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-facebook-f -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-github -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-unlock2 -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-credit-card -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-feed -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-rss -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-hdd-o -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-bullhorn -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-bell-o -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-certificate -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-hand-o-right -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-hand-o-left -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-hand-o-up -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-hand-o-down -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-arrow-circle-left -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-arrow-circle-right -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-arrow-circle-up -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-arrow-circle-down -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-globe -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-wrench -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-tasks -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-filter -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-briefcase -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-arrows-alt -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-group -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-users -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-chain -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-link -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-cloud -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-flask -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-cut -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-scissors -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-copy -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-files-o -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-paperclip -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-floppy-o -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-save -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-square -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-bars -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-navicon -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-reorder -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-list-ul -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-list-ol -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-strikethrough -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-underline -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-table -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-magic -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-truck -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-pinterest -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-pinterest-square -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-google-plus-square -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-google-plus -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-money -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-caret-down -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-caret-up -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-caret-left -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-caret-right -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-columns2 -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-sort -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-unsorted -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-sort-desc -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-sort-down -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-sort-asc -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-sort-up -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-envelope -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-linkedin -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-rotate-left -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-undo -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-gavel -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-legal -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-dashboard -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-tachometer -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-comment-o -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-comments-o -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-bolt -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-flash -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-sitemap -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-umbrella2 -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-clipboard -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-paste -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-lightbulb-o -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-exchange -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-cloud-download2 -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-cloud-upload2 -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-user-md -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-stethoscope -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-suitcase -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-bell -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-coffee -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-cutlery -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-file-text-o -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-building-o -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-hospital-o -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-ambulance -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-medkit -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-fighter-jet -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-beer -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-h-square -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-plus-square -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-angle-double-left -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-angle-double-right -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-angle-double-up -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-angle-double-down -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-angle-left -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-angle-right -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-angle-up -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-angle-down -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-desktop -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-laptop -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-tablet -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-mobile -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-mobile-phone -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-circle-o -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-quote-left -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-quote-right -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-spinner -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-circle -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-mail-reply -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-reply -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-github-alt -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-folder-o -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-folder-open-o -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-smile-o -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-frown-o -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-meh-o -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-gamepad -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-keyboard-o -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-flag-o -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-flag-checkered -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-terminal -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-code -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-mail-reply-all -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-reply-all -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-star-half-empty -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-star-half-full -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-star-half-o -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-location-arrow -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-crop -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-code-fork -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-chain-broken -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-unlink -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-question -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-info -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-exclamation -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-superscript -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-subscript -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-eraser -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-puzzle-piece -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-microphone2 -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-microphone-slash -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-shield -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-calendar-o -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-fire-extinguisher -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-rocket -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-maxcdn -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-chevron-circle-left -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-chevron-circle-right -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-chevron-circle-up -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-chevron-circle-down -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-html5 -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-css3 -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-anchor2 -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-unlock-alt -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-bullseye -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-ellipsis-h -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-ellipsis-v -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-rss-square -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-play-circle -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-ticket -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-minus-square -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-minus-square-o -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-level-up -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-level-down -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-check-square -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-pencil-square -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-external-link-square -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-share-square -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-compass -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-caret-square-o-down -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-toggle-down -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-caret-square-o-up -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-toggle-up -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-caret-square-o-right -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-toggle-right -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-eur -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-euro -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-gbp -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-dollar -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-usd -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-inr -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-rupee -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-cny -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-jpy -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-rmb -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-yen -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-rouble -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-rub -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-ruble -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-krw -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-won -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-bitcoin -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-btc -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-file2 -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-file-text -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-sort-alpha-asc -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-sort-alpha-desc -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-sort-amount-asc -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-sort-amount-desc -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-sort-numeric-asc -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-sort-numeric-desc -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-thumbs-up -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-thumbs-down -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-youtube-square -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-youtube -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-xing -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-xing-square -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-youtube-play -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-dropbox -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-stack-overflow -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-instagram -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-flickr -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-adn -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-bitbucket -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-bitbucket-square -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-tumblr -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-tumblr-square -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-long-arrow-down -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-long-arrow-up -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-long-arrow-left -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-long-arrow-right -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-apple -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-windows -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-android -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-linux -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-dribbble -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-skype -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-foursquare -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-trello -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-female -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-male -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-gittip -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-gratipay -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-sun-o -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-moon-o -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-archive -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-bug -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-vk -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-weibo -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-renren -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-pagelines -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-stack-exchange -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-arrow-circle-o-right -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-arrow-circle-o-left -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-caret-square-o-left -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-toggle-left -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-dot-circle-o -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-wheelchair -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-vimeo-square -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-try -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-turkish-lira -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-plus-square-o -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-space-shuttle -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-slack -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-envelope-square -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-wordpress -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-openid -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-bank -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-institution -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-university -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-graduation-cap -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-mortar-board -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-yahoo -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-google -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-reddit -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-reddit-square -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-stumbleupon-circle -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-stumbleupon -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-delicious -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-digg -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-pied-piper -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-pied-piper-alt -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-drupal -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-joomla -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-language -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-fax -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-building -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-child -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-paw -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-spoon -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-cube -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-cubes -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-behance -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-behance-square -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-steam -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-steam-square -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-recycle -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-automobile -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-car -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-cab -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-taxi -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-tree -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-spotify -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-deviantart -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-soundcloud -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-database -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-file-pdf-o -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-file-word-o -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-file-excel-o -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-file-powerpoint-o -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-file-image-o -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-file-photo-o -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-file-picture-o -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-file-archive-o -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-file-zip-o -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-file-audio-o -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-file-sound-o -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-file-movie-o -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-file-video-o -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-file-code-o -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-vine -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-codepen -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-jsfiddle -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-life-bouy -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-life-buoy -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-life-ring -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-life-saver -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-support -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-circle-o-notch -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-ra -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-rebel -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-empire -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-ge -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-git-square -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-git -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-hacker-news -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-y-combinator-square -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-yc-square -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-tencent-weibo -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-qq -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-wechat -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-weixin -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-paper-plane -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-send -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-paper-plane-o -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-send-o -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-history -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-circle-thin -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-header -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-paragraph2 -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-sliders -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-share-alt -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-share-alt-square -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-bomb -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-futbol-o -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-soccer-ball-o -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-tty -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-binoculars -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-plug -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-slideshare -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-twitch -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-yelp -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-newspaper-o -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-wifi -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-calculator -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-paypal -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-google-wallet -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-cc-visa -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-cc-mastercard -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-cc-discover -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-cc-amex -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-cc-paypal -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-cc-stripe -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-bell-slash -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-bell-slash-o -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-trash -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-copyright -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-at -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-eyedropper -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-paint-brush -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-birthday-cake -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-area-chart -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-pie-chart -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-line-chart -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-lastfm -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-lastfm-square -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-toggle-off -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-toggle-on -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-bicycle -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-bus -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-ioxhost -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-angellist -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-cc -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-ils -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-shekel -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-sheqel -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-meanpath -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-buysellads -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-connectdevelop -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-dashcube -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-forumbee -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-leanpub -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-sellsy -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-shirtsinbulk -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-simplybuilt -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-skyatlas -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-cart-plus -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-cart-arrow-down -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-diamond -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-ship -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-user-secret -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-motorcycle -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-street-view -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-heartbeat -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-venus -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-mars -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-mercury -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-intersex -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-transgender -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-transgender-alt -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-venus-double -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-mars-double -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-venus-mars -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-mars-stroke -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-mars-stroke-v -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-mars-stroke-h -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-neuter -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-genderless -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-facebook-official -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-pinterest-p -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-whatsapp -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-server2 -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-user-plus -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-user-times -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-bed -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-hotel -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-viacoin -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-train -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-subway -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-medium -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-y-combinator -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-yc -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-optin-monster -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-opencart -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-expeditedssl -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-battery-4 -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-battery-full -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-battery-3 -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-battery-three-quarters -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-battery-2 -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-battery-half -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-battery-1 -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-battery-quarter -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-battery-0 -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-battery-empty -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-mouse-pointer -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-i-cursor -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-object-group -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-object-ungroup -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-sticky-note -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-sticky-note-o -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-cc-jcb -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-cc-diners-club -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-clone -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-balance-scale -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-hourglass-o -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-hourglass-1 -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-hourglass-start -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-hourglass-2 -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-hourglass-half -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-hourglass-3 -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-hourglass-end -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-hourglass -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-hand-grab-o -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-hand-rock-o -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-hand-paper-o -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-hand-stop-o -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-hand-scissors-o -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-hand-lizard-o -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-hand-spock-o -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-hand-pointer-o -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-hand-peace-o -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-trademark -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-registered -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-creative-commons -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-gg -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-gg-circle -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-tripadvisor -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-odnoklassniki -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-odnoklassniki-square -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-get-pocket -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-wikipedia-w -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-safari -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-chrome -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-firefox -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-opera -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-internet-explorer -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-television -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-tv -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-contao -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-500px -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-amazon -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-calendar-plus-o -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-calendar-minus-o -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-calendar-times-o -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-calendar-check-o -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-industry -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-map-pin -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-map-signs -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-map-o -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-map -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-commenting -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-commenting-o -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-houzz -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-vimeo -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-black-tie -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-fonticons -
-
- - -
-
- liga: - -
-
-
-
-

Grid Size: 24

-
-
- - - - icon-eye2 -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-paper-clip -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-mail2 -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-toggle -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-layout -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-link2 -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-bell2 -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-lock2 -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-unlock -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-ribbon -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-image2 -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-signal2 -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-target -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-clipboard2 -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-clock2 -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-watch -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-air-play -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-camera2 -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-video2 -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-disc -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-printer -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-monitor -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-server -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-cog2 -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-heart2 -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-paragraph -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-align-justify -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-align-left2 -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-align-center -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-align-right2 -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-book2 -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-layers2 -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-stack -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-stack-2 -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-paper -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-paper-stack -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-search -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-zoom-in -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-zoom-out -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-reply2 -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-circle-plus -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-circle-minus -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-circle-check -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-circle-cross -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-square-plus -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-square-minus -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-square-check -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-square-cross -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-microphone -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-record -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-skip-back -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-rewind -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-play -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-pause -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-stop -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-fast-forward -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-skip-forward -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-shuffle2 -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-repeat -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-folder2 -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-umbrella -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-moon2 -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-thermometer2 -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-drop2 -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-sun -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-cloud2 -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-cloud-upload -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-cloud-download -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-upload2 -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-download2 -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-location2 -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-location-2 -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-map2 -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-battery2 -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-head -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-briefcase2 -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-speech-bubble -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-anchor -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-globe2 -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-box2 -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-reload -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-share2 -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-marquee -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-marquee-plus -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-marquee-minus -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-tag2 -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-power -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-command -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-alt -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-esc -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-bar-graph2 -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-bar-graph-2 -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-pie-graph -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-star2 -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-arrow-left2 -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-arrow-right2 -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-arrow-up2 -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-arrow-down2 -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-volume -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-mute -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-content-right -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-content-left -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-grid2 -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-grid-2 -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-columns -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-loader -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-bag -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-ban -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-flag2 -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-trash2 -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-expand -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-contract -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-maximize -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-minimize -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-plus2 -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-minus2 -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-check2 -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-cross2 -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-move -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-delete -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-menu2 -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-archive2 -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-inbox2 -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-outbox -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-file -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-file-add -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-file-subtract -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-help2 -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-open -
-
- - -
-
- liga: - -
-
-
-
- - - - icon-ellipsis -
-
- - -
-
- liga: - -
-
-
- - -
-

Font Test Drive

- - - -
  -
-
- -
-

Generated by IcoMoon

-
- - - - \ No newline at end of file diff --git a/html/fonts/icomoon/icomoon/fonts/icomoon.eot b/html/fonts/icomoon/icomoon/fonts/icomoon.eot deleted file mode 100755 index 25b7e4e4..00000000 Binary files a/html/fonts/icomoon/icomoon/fonts/icomoon.eot and /dev/null differ diff --git a/html/fonts/icomoon/icomoon/fonts/icomoon.svg b/html/fonts/icomoon/icomoon/fonts/icomoon.svg deleted file mode 100755 index ab8dd4e0..00000000 --- a/html/fonts/icomoon/icomoon/fonts/icomoon.svg +++ /dev/null @@ -1,725 +0,0 @@ - - - -Generated by IcoMoon - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/html/fonts/icomoon/icomoon/fonts/icomoon.ttf b/html/fonts/icomoon/icomoon/fonts/icomoon.ttf deleted file mode 100755 index 5e112933..00000000 Binary files a/html/fonts/icomoon/icomoon/fonts/icomoon.ttf and /dev/null differ diff --git a/html/fonts/icomoon/icomoon/fonts/icomoon.woff b/html/fonts/icomoon/icomoon/fonts/icomoon.woff deleted file mode 100755 index afcece62..00000000 Binary files a/html/fonts/icomoon/icomoon/fonts/icomoon.woff and /dev/null differ diff --git a/html/fonts/icomoon/icomoon/selection.json b/html/fonts/icomoon/icomoon/selection.json deleted file mode 100755 index ac564ce0..00000000 --- a/html/fonts/icomoon/icomoon/selection.json +++ /dev/null @@ -1,18459 +0,0 @@ -{ - "IcoMoonType": "selection", - "icons": [ - { - "icon": { - "paths": [ - "M970.857 106.286q0 20-24.571 44.571l-361.143 361.143v438.857h182.857q14.857 0 25.714 10.857t10.857 25.714-10.857 25.714-25.714 10.857h-512q-14.857 0-25.714-10.857t-10.857-25.714 10.857-25.714 25.714-10.857h182.857v-438.857l-361.143-361.143q-24.571-24.571-24.571-44.571 0-13.143 10.286-20.857t21.714-10 24.571-2.286h804.571q13.143 0 24.571 2.286t21.714 10 10.286 20.857z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "glass" - ], - "defaultCode": 61440, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 0, - "order": 517, - "prevSize": 14, - "code": 61440, - "name": "glass" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 0 - }, - { - "icon": { - "paths": [ - "M877.714 128v640q0 28.571-19.429 50.857t-49.143 34.571-59.143 18.286-55.143 6-55.143-6-59.143-18.286-49.143-34.571-19.429-50.857 19.429-50.857 49.143-34.571 59.143-18.286 55.143-6q60 0 109.714 22.286v-306.857l-438.857 135.429v405.143q0 28.571-19.429 50.857t-49.143 34.571-59.143 18.286-55.143 6-55.143-6-59.143-18.286-49.143-34.571-19.429-50.857 19.429-50.857 49.143-34.571 59.143-18.286 55.143-6q60 0 109.714 22.286v-552.571q0-17.714 10.857-32.286t28-20.286l475.429-146.286q6.857-2.286 16-2.286 22.857 0 38.857 16t16 38.857z" - ], - "width": 877.7142857142858, - "attrs": [], - "isMulticolor": false, - "tags": [ - "music" - ], - "defaultCode": 61441, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 1, - "order": 518, - "prevSize": 14, - "code": 61441, - "name": "music" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 1 - }, - { - "icon": { - "paths": [ - "M658.286 475.429q0-105.714-75.143-180.857t-180.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.857zM950.857 950.857q0 29.714-21.714 51.429t-51.429 21.714q-30.857 0-51.429-21.714l-196-195.429q-102.286 70.857-228 70.857-81.714 0-156.286-31.714t-128.571-85.714-85.714-128.571-31.714-156.286 31.714-156.286 85.714-128.571 128.571-85.714 156.286-31.714 156.286 31.714 128.571 85.714 85.714 128.571 31.714 156.286q0 125.714-70.857 228l196 196q21.143 21.143 21.143 51.429z" - ], - "width": 951, - "attrs": [], - "isMulticolor": false, - "tags": [ - "search" - ], - "defaultCode": 61442, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 2, - "order": 519, - "prevSize": 14, - "code": 61442, - "name": "search2" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 2 - }, - { - "icon": { - "paths": [ - "M950.857 859.429v-438.857q-18.286 20.571-39.429 37.714-153.143 117.714-243.429 193.143-29.143 24.571-47.429 38.286t-49.429 27.714-58.571 14h-1.143q-27.429 0-58.571-14t-49.429-27.714-47.429-38.286q-90.286-75.429-243.429-193.143-21.143-17.143-39.429-37.714v438.857q0 7.429 5.429 12.857t12.857 5.429h841.143q7.429 0 12.857-5.429t5.429-12.857zM950.857 258.857v-14t-0.286-7.429-1.714-7.143-3.143-5.143-5.143-4.286-8-1.429h-841.143q-7.429 0-12.857 5.429t-5.429 12.857q0 96 84 162.286 110.286 86.857 229.143 181.143 3.429 2.857 20 16.857t26.286 21.429 25.429 18 28.857 15.714 24.571 5.143h1.143q11.429 0 24.571-5.143t28.857-15.714 25.429-18 26.286-21.429 20-16.857q118.857-94.286 229.143-181.143 30.857-24.571 57.429-66t26.571-75.143zM1024 237.714v621.714q0 37.714-26.857 64.571t-64.571 26.857h-841.143q-37.714 0-64.571-26.857t-26.857-64.571v-621.714q0-37.714 26.857-64.571t64.571-26.857h841.143q37.714 0 64.571 26.857t26.857 64.571z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "envelope-o" - ], - "defaultCode": 61443, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 3, - "order": 520, - "prevSize": 14, - "code": 61443, - "name": "envelope-o" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 3 - }, - { - "icon": { - "paths": [ - "M512 950.857q-14.857 0-25.143-10.286l-356.571-344q-5.714-4.571-15.714-14.857t-31.714-37.429-38.857-55.714-30.571-69.143-13.429-78.857q0-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.571q0 126.286-130.857 257.143l-356 342.857q-10.286 10.286-25.143 10.286z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "heart" - ], - "defaultCode": 61444, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 4, - "order": 521, - "prevSize": 14, - "code": 61444, - "name": "heart" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 4 - }, - { - "icon": { - "paths": [ - "M950.857 369.714q0 12.571-14.857 27.429l-207.429 202.286 49.143 285.714q0.571 4 0.571 11.429 0 12-6 20.286t-17.429 8.286q-10.857 0-22.857-6.857l-256.571-134.857-256.571 134.857q-12.571 6.857-22.857 6.857-12 0-18-8.286t-6-20.286q0-3.429 1.143-11.429l49.143-285.714-208-202.286q-14.286-15.429-14.286-27.429 0-21.143 32-26.286l286.857-41.714 128.571-260q10.857-23.429 28-23.429t28 23.429l128.571 260 286.857 41.714q32 5.143 32 26.286z" - ], - "width": 951, - "attrs": [], - "isMulticolor": false, - "tags": [ - "star" - ], - "defaultCode": 61445, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 5, - "order": 522, - "prevSize": 14, - "code": 61445, - "name": "star" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 5 - }, - { - "icon": { - "paths": [ - "M649.714 573.714l174.857-169.714-241.143-35.429-108-218.286-108 218.286-241.143 35.429 174.857 169.714-41.714 240.571 216-113.714 215.429 113.714zM950.857 369.714q0 12.571-14.857 27.429l-207.429 202.286 49.143 285.714q0.571 4 0.571 11.429 0 28.571-23.429 28.571-10.857 0-22.857-6.857l-256.571-134.857-256.571 134.857q-12.571 6.857-22.857 6.857-12 0-18-8.286t-6-20.286q0-3.429 1.143-11.429l49.143-285.714-208-202.286q-14.286-15.429-14.286-27.429 0-21.143 32-26.286l286.857-41.714 128.571-260q10.857-23.429 28-23.429t28 23.429l128.571 260 286.857 41.714q32 5.143 32 26.286z" - ], - "width": 951, - "attrs": [], - "isMulticolor": false, - "tags": [ - "star-o" - ], - "defaultCode": 61446, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 6, - "order": 523, - "prevSize": 14, - "code": 61446, - "name": "star-o" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 6 - }, - { - "icon": { - "paths": [ - "M804.571 802.857q0 68.571-41.714 108.286t-110.857 39.714h-499.429q-69.143 0-110.857-39.714t-41.714-108.286q0-30.286 2-59.143t8-62.286 15.143-62 24.571-55.714 35.429-46.286 48.857-30.571 63.714-11.429q5.143 0 24 12.286t42.571 27.429 61.714 27.429 76.286 12.286 76.286-12.286 61.714-27.429 42.571-27.429 24-12.286q34.857 0 63.714 11.429t48.857 30.571 35.429 46.286 24.571 55.714 15.143 62 8 62.286 2 59.143zM621.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" - ], - "defaultCode": 61447, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 7, - "order": 524, - "prevSize": 14, - "code": 61447, - "name": "user" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 7 - }, - { - "icon": { - "paths": [ - "M219.429 914.286v-73.143q0-14.857-10.857-25.714t-25.714-10.857h-73.143q-14.857 0-25.714 10.857t-10.857 25.714v73.143q0 14.857 10.857 25.714t25.714 10.857h73.143q14.857 0 25.714-10.857t10.857-25.714zM219.429 694.857v-73.143q0-14.857-10.857-25.714t-25.714-10.857h-73.143q-14.857 0-25.714 10.857t-10.857 25.714v73.143q0 14.857 10.857 25.714t25.714 10.857h73.143q14.857 0 25.714-10.857t10.857-25.714zM219.429 475.429v-73.143q0-14.857-10.857-25.714t-25.714-10.857h-73.143q-14.857 0-25.714 10.857t-10.857 25.714v73.143q0 14.857 10.857 25.714t25.714 10.857h73.143q14.857 0 25.714-10.857t10.857-25.714zM804.571 914.286v-292.571q0-14.857-10.857-25.714t-25.714-10.857h-438.857q-14.857 0-25.714 10.857t-10.857 25.714v292.571q0 14.857 10.857 25.714t25.714 10.857h438.857q14.857 0 25.714-10.857t10.857-25.714zM219.429 256v-73.143q0-14.857-10.857-25.714t-25.714-10.857h-73.143q-14.857 0-25.714 10.857t-10.857 25.714v73.143q0 14.857 10.857 25.714t25.714 10.857h73.143q14.857 0 25.714-10.857t10.857-25.714zM1024 914.286v-73.143q0-14.857-10.857-25.714t-25.714-10.857h-73.143q-14.857 0-25.714 10.857t-10.857 25.714v73.143q0 14.857 10.857 25.714t25.714 10.857h73.143q14.857 0 25.714-10.857t10.857-25.714zM804.571 475.429v-292.571q0-14.857-10.857-25.714t-25.714-10.857h-438.857q-14.857 0-25.714 10.857t-10.857 25.714v292.571q0 14.857 10.857 25.714t25.714 10.857h438.857q14.857 0 25.714-10.857t10.857-25.714zM1024 694.857v-73.143q0-14.857-10.857-25.714t-25.714-10.857h-73.143q-14.857 0-25.714 10.857t-10.857 25.714v73.143q0 14.857 10.857 25.714t25.714 10.857h73.143q14.857 0 25.714-10.857t10.857-25.714zM1024 475.429v-73.143q0-14.857-10.857-25.714t-25.714-10.857h-73.143q-14.857 0-25.714 10.857t-10.857 25.714v73.143q0 14.857 10.857 25.714t25.714 10.857h73.143q14.857 0 25.714-10.857t10.857-25.714zM1024 256v-73.143q0-14.857-10.857-25.714t-25.714-10.857h-73.143q-14.857 0-25.714 10.857t-10.857 25.714v73.143q0 14.857 10.857 25.714t25.714 10.857h73.143q14.857 0 25.714-10.857t10.857-25.714zM1097.143 164.571v768q0 37.714-26.857 64.571t-64.571 26.857h-914.286q-37.714 0-64.571-26.857t-26.857-64.571v-768q0-37.714 26.857-64.571t64.571-26.857h914.286q37.714 0 64.571 26.857t26.857 64.571z" - ], - "width": 1097, - "attrs": [], - "isMulticolor": false, - "tags": [ - "film" - ], - "defaultCode": 61448, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 8, - "order": 525, - "prevSize": 14, - "code": 61448, - "name": "film" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 8 - }, - { - "icon": { - "paths": [ - "M438.857 585.143v219.429q0 29.714-21.714 51.429t-51.429 21.714h-292.571q-29.714 0-51.429-21.714t-21.714-51.429v-219.429q0-29.714 21.714-51.429t51.429-21.714h292.571q29.714 0 51.429 21.714t21.714 51.429zM438.857 146.286v219.429q0 29.714-21.714 51.429t-51.429 21.714h-292.571q-29.714 0-51.429-21.714t-21.714-51.429v-219.429q0-29.714 21.714-51.429t51.429-21.714h292.571q29.714 0 51.429 21.714t21.714 51.429zM950.857 585.143v219.429q0 29.714-21.714 51.429t-51.429 21.714h-292.571q-29.714 0-51.429-21.714t-21.714-51.429v-219.429q0-29.714 21.714-51.429t51.429-21.714h292.571q29.714 0 51.429 21.714t21.714 51.429zM950.857 146.286v219.429q0 29.714-21.714 51.429t-51.429 21.714h-292.571q-29.714 0-51.429-21.714t-21.714-51.429v-219.429q0-29.714 21.714-51.429t51.429-21.714h292.571q29.714 0 51.429 21.714t21.714 51.429z" - ], - "width": 951, - "attrs": [], - "isMulticolor": false, - "tags": [ - "th-large" - ], - "defaultCode": 61449, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 9, - "order": 526, - "prevSize": 14, - "code": 61449, - "name": "th-large" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 9 - }, - { - "icon": { - "paths": [ - "M292.571 713.143v109.714q0 22.857-16 38.857t-38.857 16h-182.857q-22.857 0-38.857-16t-16-38.857v-109.714q0-22.857 16-38.857t38.857-16h182.857q22.857 0 38.857 16t16 38.857zM292.571 420.571v109.714q0 22.857-16 38.857t-38.857 16h-182.857q-22.857 0-38.857-16t-16-38.857v-109.714q0-22.857 16-38.857t38.857-16h182.857q22.857 0 38.857 16t16 38.857zM658.286 713.143v109.714q0 22.857-16 38.857t-38.857 16h-182.857q-22.857 0-38.857-16t-16-38.857v-109.714q0-22.857 16-38.857t38.857-16h182.857q22.857 0 38.857 16t16 38.857zM292.571 128v109.714q0 22.857-16 38.857t-38.857 16h-182.857q-22.857 0-38.857-16t-16-38.857v-109.714q0-22.857 16-38.857t38.857-16h182.857q22.857 0 38.857 16t16 38.857zM658.286 420.571v109.714q0 22.857-16 38.857t-38.857 16h-182.857q-22.857 0-38.857-16t-16-38.857v-109.714q0-22.857 16-38.857t38.857-16h182.857q22.857 0 38.857 16t16 38.857zM1024 713.143v109.714q0 22.857-16 38.857t-38.857 16h-182.857q-22.857 0-38.857-16t-16-38.857v-109.714q0-22.857 16-38.857t38.857-16h182.857q22.857 0 38.857 16t16 38.857zM658.286 128v109.714q0 22.857-16 38.857t-38.857 16h-182.857q-22.857 0-38.857-16t-16-38.857v-109.714q0-22.857 16-38.857t38.857-16h182.857q22.857 0 38.857 16t16 38.857zM1024 420.571v109.714q0 22.857-16 38.857t-38.857 16h-182.857q-22.857 0-38.857-16t-16-38.857v-109.714q0-22.857 16-38.857t38.857-16h182.857q22.857 0 38.857 16t16 38.857zM1024 128v109.714q0 22.857-16 38.857t-38.857 16h-182.857q-22.857 0-38.857-16t-16-38.857v-109.714q0-22.857 16-38.857t38.857-16h182.857q22.857 0 38.857 16t16 38.857z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "th" - ], - "defaultCode": 61450, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 10, - "order": 527, - "prevSize": 14, - "code": 61450, - "name": "th" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 10 - }, - { - "icon": { - "paths": [ - "M292.571 713.143v109.714q0 22.857-16 38.857t-38.857 16h-182.857q-22.857 0-38.857-16t-16-38.857v-109.714q0-22.857 16-38.857t38.857-16h182.857q22.857 0 38.857 16t16 38.857zM292.571 420.571v109.714q0 22.857-16 38.857t-38.857 16h-182.857q-22.857 0-38.857-16t-16-38.857v-109.714q0-22.857 16-38.857t38.857-16h182.857q22.857 0 38.857 16t16 38.857zM1024 713.143v109.714q0 22.857-16 38.857t-38.857 16h-548.571q-22.857 0-38.857-16t-16-38.857v-109.714q0-22.857 16-38.857t38.857-16h548.571q22.857 0 38.857 16t16 38.857zM292.571 128v109.714q0 22.857-16 38.857t-38.857 16h-182.857q-22.857 0-38.857-16t-16-38.857v-109.714q0-22.857 16-38.857t38.857-16h182.857q22.857 0 38.857 16t16 38.857zM1024 420.571v109.714q0 22.857-16 38.857t-38.857 16h-548.571q-22.857 0-38.857-16t-16-38.857v-109.714q0-22.857 16-38.857t38.857-16h548.571q22.857 0 38.857 16t16 38.857zM1024 128v109.714q0 22.857-16 38.857t-38.857 16h-548.571q-22.857 0-38.857-16t-16-38.857v-109.714q0-22.857 16-38.857t38.857-16h548.571q22.857 0 38.857 16t16 38.857z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "th-list" - ], - "defaultCode": 61451, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 11, - "order": 528, - "prevSize": 14, - "code": 61451, - "name": "th-list" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 11 - }, - { - "icon": { - "paths": [ - "M954.857 323.429q0 22.857-16 38.857l-491.429 491.429q-16 16-38.857 16t-38.857-16l-284.571-284.571q-16-16-16-38.857t16-38.857l77.714-77.714q16-16 38.857-16t38.857 16l168 168.571 374.857-375.429q16-16 38.857-16t38.857 16l77.714 77.714q16 16 16 38.857z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "check" - ], - "defaultCode": 61452, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 12, - "order": 529, - "prevSize": 14, - "code": 61452, - "name": "check" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 12 - }, - { - "icon": { - "paths": [ - "M741.714 755.429q0 22.857-16 38.857l-77.714 77.714q-16 16-38.857 16t-38.857-16l-168-168-168 168q-16 16-38.857 16t-38.857-16l-77.714-77.714q-16-16-16-38.857t16-38.857l168-168-168-168q-16-16-16-38.857t16-38.857l77.714-77.714q16-16 38.857-16t38.857 16l168 168 168-168q16-16 38.857-16t38.857 16l77.714 77.714q16 16 16 38.857t-16 38.857l-168 168 168 168q16 16 16 38.857z" - ], - "width": 805, - "attrs": [], - "isMulticolor": false, - "tags": [ - "close", - "remove", - "times" - ], - "defaultCode": 61453, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 13, - "order": 530, - "name": "close, remove, times", - "prevSize": 14, - "code": 61453 - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 13 - }, - { - "icon": { - "paths": [ - "M585.143 457.143v36.571q0 7.429-5.429 12.857t-12.857 5.429h-128v128q0 7.429-5.429 12.857t-12.857 5.429h-36.571q-7.429 0-12.857-5.429t-5.429-12.857v-128h-128q-7.429 0-12.857-5.429t-5.429-12.857v-36.571q0-7.429 5.429-12.857t12.857-5.429h128v-128q0-7.429 5.429-12.857t12.857-5.429h36.571q7.429 0 12.857 5.429t5.429 12.857v128h128q7.429 0 12.857 5.429t5.429 12.857zM658.286 475.429q0-105.714-75.143-180.857t-180.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.857zM950.857 950.857q0 30.286-21.429 51.714t-51.714 21.429q-30.857 0-51.429-21.714l-196-195.429q-102.286 70.857-228 70.857-81.714 0-156.286-31.714t-128.571-85.714-85.714-128.571-31.714-156.286 31.714-156.286 85.714-128.571 128.571-85.714 156.286-31.714 156.286 31.714 128.571 85.714 85.714 128.571 31.714 156.286q0 125.714-70.857 228l196 196q21.143 21.143 21.143 51.429z" - ], - "width": 951, - "attrs": [], - "isMulticolor": false, - "tags": [ - "search-plus" - ], - "defaultCode": 61454, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 14, - "order": 531, - "prevSize": 14, - "code": 61454, - "name": "search-plus" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 14 - }, - { - "icon": { - "paths": [ - "M585.143 457.143v36.571q0 7.429-5.429 12.857t-12.857 5.429h-329.143q-7.429 0-12.857-5.429t-5.429-12.857v-36.571q0-7.429 5.429-12.857t12.857-5.429h329.143q7.429 0 12.857 5.429t5.429 12.857zM658.286 475.429q0-105.714-75.143-180.857t-180.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.857zM950.857 950.857q0 30.286-21.429 51.714t-51.714 21.429q-30.857 0-51.429-21.714l-196-195.429q-102.286 70.857-228 70.857-81.714 0-156.286-31.714t-128.571-85.714-85.714-128.571-31.714-156.286 31.714-156.286 85.714-128.571 128.571-85.714 156.286-31.714 156.286 31.714 128.571 85.714 85.714 128.571 31.714 156.286q0 125.714-70.857 228l196 196q21.143 21.143 21.143 51.429z" - ], - "width": 951, - "attrs": [], - "isMulticolor": false, - "tags": [ - "search-minus" - ], - "defaultCode": 61456, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 15, - "order": 532, - "prevSize": 14, - "code": 61456, - "name": "search-minus" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 15 - }, - { - "icon": { - "paths": [ - "M877.714 512q0 89.143-34.857 170.286t-93.714 140-140 93.714-170.286 34.857-170.286-34.857-140-93.714-93.714-140-34.857-170.286q0-104 46-196t129.429-154.286q24.571-18.286 54.571-14.286t47.714 28.571q18.286 24 14 54t-28.286 48.286q-56 42.286-86.571 103.429t-30.571 130.286q0 59.429 23.143 113.429t62.571 93.429 93.429 62.571 113.429 23.143 113.429-23.143 93.429-62.571 62.571-93.429 23.143-113.429q0-69.143-30.571-130.286t-86.571-103.429q-24-18.286-28.286-48.286t14-54q17.714-24.571 48-28.571t54.286 14.286q83.429 62.286 129.429 154.286t46 196zM512 73.143v365.714q0 29.714-21.714 51.429t-51.429 21.714-51.429-21.714-21.714-51.429v-365.714q0-29.714 21.714-51.429t51.429-21.714 51.429 21.714 21.714 51.429z" - ], - "width": 877.7142857142858, - "attrs": [], - "isMulticolor": false, - "tags": [ - "power-off" - ], - "defaultCode": 61457, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 16, - "order": 533, - "prevSize": 14, - "code": 61457, - "name": "power-off" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 16 - }, - { - "icon": { - "paths": [ - "M146.286 822.857v109.714q0 8-5.143 13.143t-13.143 5.143h-109.714q-8 0-13.143-5.143t-5.143-13.143v-109.714q0-8 5.143-13.143t13.143-5.143h109.714q8 0 13.143 5.143t5.143 13.143zM365.714 749.714v182.857q0 8-5.143 13.143t-13.143 5.143h-109.714q-8 0-13.143-5.143t-5.143-13.143v-182.857q0-8 5.143-13.143t13.143-5.143h109.714q8 0 13.143 5.143t5.143 13.143zM585.143 603.429v329.143q0 8-5.143 13.143t-13.143 5.143h-109.714q-8 0-13.143-5.143t-5.143-13.143v-329.143q0-8 5.143-13.143t13.143-5.143h109.714q8 0 13.143 5.143t5.143 13.143zM804.571 384v548.571q0 8-5.143 13.143t-13.143 5.143h-109.714q-8 0-13.143-5.143t-5.143-13.143v-548.571q0-8 5.143-13.143t13.143-5.143h109.714q8 0 13.143 5.143t5.143 13.143zM1024 91.429v841.143q0 8-5.143 13.143t-13.143 5.143h-109.714q-8 0-13.143-5.143t-5.143-13.143v-841.143q0-8 5.143-13.143t13.143-5.143h109.714q8 0 13.143 5.143t5.143 13.143z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "signal" - ], - "defaultCode": 61458, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 17, - "order": 534, - "prevSize": 14, - "code": 61458, - "name": "signal" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 17 - }, - { - "icon": { - "paths": [ - "M585.143 512q0-60.571-42.857-103.429t-103.429-42.857-103.429 42.857-42.857 103.429 42.857 103.429 103.429 42.857 103.429-42.857 42.857-103.429zM877.714 449.714v126.857q0 6.857-4.571 13.143t-11.429 7.429l-105.714 16q-10.857 30.857-22.286 52 20 28.571 61.143 78.857 5.714 6.857 5.714 14.286t-5.143 13.143q-15.429 21.143-56.571 61.714t-53.714 40.571q-6.857 0-14.857-5.143l-78.857-61.714q-25.143 13.143-52 21.714-9.143 77.714-16.571 106.286-4 16-20.571 16h-126.857q-8 0-14-4.857t-6.571-12.286l-16-105.143q-28-9.143-51.429-21.143l-80.571 61.143q-5.714 5.143-14.286 5.143-8 0-14.286-6.286-72-65.143-94.286-96-4-5.714-4-13.143 0-6.857 4.571-13.143 8.571-12 29.143-38t30.857-40.286q-15.429-28.571-23.429-56.571l-104.571-15.429q-7.429-1.143-12-7.143t-4.571-13.429v-126.857q0-6.857 4.571-13.143t10.857-7.429l106.286-16q8-26.286 22.286-52.571-22.857-32.571-61.143-78.857-5.714-6.857-5.714-13.714 0-5.714 5.143-13.143 14.857-20.571 56.286-61.429t54-40.857q7.429 0 14.857 5.714l78.857 61.143q25.143-13.143 52-21.714 9.143-77.714 16.571-106.286 4-16 20.571-16h126.857q8 0 14 4.857t6.571 12.286l16 105.143q28 9.143 51.429 21.143l81.143-61.143q5.143-5.143 13.714-5.143 7.429 0 14.286 5.714 73.714 68 94.286 97.143 4 4.571 4 12.571 0 6.857-4.571 13.143-8.571 12-29.143 38t-30.857 40.286q14.857 28.571 23.429 56l104.571 16q7.429 1.143 12 7.143t4.571 13.429z" - ], - "width": 877.7142857142858, - "attrs": [], - "isMulticolor": false, - "tags": [ - "cog", - "gear" - ], - "defaultCode": 61459, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 18, - "order": 535, - "name": "cog, gear", - "prevSize": 14, - "code": 61459 - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 18 - }, - { - "icon": { - "paths": [ - "M292.571 420.571v329.143q0 8-5.143 13.143t-13.143 5.143h-36.571q-8 0-13.143-5.143t-5.143-13.143v-329.143q0-8 5.143-13.143t13.143-5.143h36.571q8 0 13.143 5.143t5.143 13.143zM438.857 420.571v329.143q0 8-5.143 13.143t-13.143 5.143h-36.571q-8 0-13.143-5.143t-5.143-13.143v-329.143q0-8 5.143-13.143t13.143-5.143h36.571q8 0 13.143 5.143t5.143 13.143zM585.143 420.571v329.143q0 8-5.143 13.143t-13.143 5.143h-36.571q-8 0-13.143-5.143t-5.143-13.143v-329.143q0-8 5.143-13.143t13.143-5.143h36.571q8 0 13.143 5.143t5.143 13.143zM658.286 834.286v-541.714h-512v541.714q0 12.571 4 23.143t8.286 15.429 6 4.857h475.429q1.714 0 6-4.857t8.286-15.429 4-23.143zM274.286 219.429h256l-27.429-66.857q-4-5.143-9.714-6.286h-181.143q-5.714 1.143-9.714 6.286zM804.571 237.714v36.571q0 8-5.143 13.143t-13.143 5.143h-54.857v541.714q0 47.429-26.857 82t-64.571 34.571h-475.429q-37.714 0-64.571-33.429t-26.857-80.857v-544h-54.857q-8 0-13.143-5.143t-5.143-13.143v-36.571q0-8 5.143-13.143t13.143-5.143h176.571l40-95.429q8.571-21.143 30.857-36t45.143-14.857h182.857q22.857 0 45.143 14.857t30.857 36l40 95.429h176.571q8 0 13.143 5.143t5.143 13.143z" - ], - "width": 805, - "attrs": [], - "isMulticolor": false, - "tags": [ - "trash-o" - ], - "defaultCode": 61460, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 19, - "order": 536, - "prevSize": 14, - "code": 61460, - "name": "trash-o" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 19 - }, - { - "icon": { - "paths": [ - "M804.571 566.857v274.286q0 14.857-10.857 25.714t-25.714 10.857h-219.429v-219.429h-146.286v219.429h-219.429q-14.857 0-25.714-10.857t-10.857-25.714v-274.286q0-0.571 0.286-1.714t0.286-1.714l328.571-270.857 328.571 270.857q0.571 1.143 0.571 3.429zM932 527.429l-35.429 42.286q-4.571 5.143-12 6.286h-1.714q-7.429 0-12-4l-395.429-329.714-395.429 329.714q-6.857 4.571-13.714 4-7.429-1.143-12-6.286l-35.429-42.286q-4.571-5.714-4-13.429t6.286-12.286l410.857-342.286q18.286-14.857 43.429-14.857t43.429 14.857l139.429 116.571v-111.429q0-8 5.143-13.143t13.143-5.143h109.714q8 0 13.143 5.143t5.143 13.143v233.143l125.143 104q5.714 4.571 6.286 12.286t-4 13.429z" - ], - "width": 951, - "attrs": [], - "isMulticolor": false, - "tags": [ - "home" - ], - "defaultCode": 61461, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 20, - "order": 537, - "prevSize": 14, - "code": 61461, - "name": "home" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 20 - }, - { - "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.429z" - ], - "width": 877.7142857142858, - "attrs": [], - "isMulticolor": false, - "tags": [ - "file-o" - ], - "defaultCode": 61462, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 21, - "order": 538, - "prevSize": 14, - "code": 61462, - "name": "file-o" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 21 - }, - { - "icon": { - "paths": [ - "M512 310.857v256q0 8-5.143 13.143t-13.143 5.143h-182.857q-8 0-13.143-5.143t-5.143-13.143v-36.571q0-8 5.143-13.143t13.143-5.143h128v-201.143q0-8 5.143-13.143t13.143-5.143h36.571q8 0 13.143 5.143t5.143 13.143zM749.714 512q0-84.571-41.714-156t-113.143-113.143-156-41.714-156 41.714-113.143 113.143-41.714 156 41.714 156 113.143 113.143 156 41.714 156-41.714 113.143-113.143 41.714-156zM877.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": [ - "clock-o" - ], - "defaultCode": 61463, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 22, - "order": 539, - "prevSize": 14, - "code": 61463, - "name": "clock-o" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 22 - }, - { - "icon": { - "paths": [ - "M634.857 569.143v-2.286l-13.714-182.857q-0.571-7.429-6.286-12.857t-13.143-5.429h-106.286q-7.429 0-13.143 5.429t-6.286 12.857l-13.714 182.857v2.286q-0.571 6.857 4.571 11.429t12 4.571h139.429q6.857 0 12-4.571t4.571-11.429zM1068.571 836q0 41.714-26.286 41.714h-402.286q7.429 0 12.571-5.429t4.571-12.857l-11.429-146.286q-0.571-7.429-6.286-12.857t-13.143-5.429h-155.429q-7.429 0-13.143 5.429t-6.286 12.857l-11.429 146.286q-0.571 7.429 4.571 12.857t12.571 5.429h-402.286q-26.286 0-26.286-41.714 0-30.857 14.857-66.286l238.286-596.571q4.571-10.857 14.857-18.857t21.714-8h193.714q-7.429 0-13.143 5.429t-6.286 12.857l-8.571 109.714q-0.571 8 4.571 13.143t12.571 5.143h94.857q7.429 0 12.571-5.143t4.571-13.143l-8.571-109.714q-0.571-7.429-6.286-12.857t-13.143-5.429h193.714q11.429 0 21.714 8t14.857 18.857l238.286 596.571q14.857 35.429 14.857 66.286z" - ], - "width": 1097, - "attrs": [], - "isMulticolor": false, - "tags": [ - "road" - ], - "defaultCode": 61464, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 23, - "order": 540, - "prevSize": 14, - "code": 61464, - "name": "road" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 23 - }, - { - "icon": { - "paths": [ - "M731.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.714zM877.714 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.714zM950.857 640v182.857q0 22.857-16 38.857t-38.857 16h-841.143q-22.857 0-38.857-16t-16-38.857v-182.857q0-22.857 16-38.857t38.857-16h265.714l77.143 77.714q33.143 32 77.714 32t77.714-32l77.714-77.714h265.143q22.857 0 38.857 16t16 38.857zM765.143 314.857q9.714 23.429-8 40l-256 256q-10.286 10.857-25.714 10.857t-25.714-10.857l-256-256q-17.714-16.571-8-40 9.714-22.286 33.714-22.286h146.286v-256q0-14.857 10.857-25.714t25.714-10.857h146.286q14.857 0 25.714 10.857t10.857 25.714v256h146.286q24 0 33.714 22.286z" - ], - "width": 951, - "attrs": [], - "isMulticolor": false, - "tags": [ - "download" - ], - "defaultCode": 61465, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 24, - "order": 541, - "prevSize": 14, - "code": 61465, - "name": "download" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 24 - }, - { - "icon": { - "paths": [ - "M640 530.286q0 6.857-5.714 13.714l-182.286 182.286q-6.286 5.143-13.143 5.143t-13.143-5.143l-182.857-182.857q-8.571-9.143-4-20 4.571-11.429 17.143-11.429h109.714v-201.143q0-8 5.143-13.143t13.143-5.143h109.714q8 0 13.143 5.143t5.143 13.143v201.143h109.714q8 0 13.143 5.143t5.143 13.143zM438.857 201.143q-84.571 0-156 41.714t-113.143 113.143-41.714 156 41.714 156 113.143 113.143 156 41.714 156-41.714 113.143-113.143 41.714-156-41.714-156-113.143-113.143-156-41.714zM877.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": [ - "arrow-circle-o-down" - ], - "defaultCode": 61466, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 25, - "order": 542, - "prevSize": 14, - "code": 61466, - "name": "arrow-circle-o-down" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 25 - }, - { - "icon": { - "paths": [ - "M638.857 500.571q-4.571 11.429-17.143 11.429h-109.714v201.143q0 8-5.143 13.143t-13.143 5.143h-109.714q-8 0-13.143-5.143t-5.143-13.143v-201.143h-109.714q-8 0-13.143-5.143t-5.143-13.143q0-6.857 5.714-13.714l182.286-182.286q6.286-5.143 13.143-5.143t13.143 5.143l182.857 182.857q8.571 9.143 4 20zM438.857 201.143q-84.571 0-156 41.714t-113.143 113.143-41.714 156 41.714 156 113.143 113.143 156 41.714 156-41.714 113.143-113.143 41.714-156-41.714-156-113.143-113.143-156-41.714zM877.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": [ - "arrow-circle-o-up" - ], - "defaultCode": 61467, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 26, - "order": 543, - "prevSize": 14, - "code": 61467, - "name": "arrow-circle-o-up" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 26 - }, - { - "icon": { - "paths": [ - "M584.571 548.571h180.571q-0.571-1.714-1.429-4.571t-1.429-4.571l-121.143-283.429h-404.571l-121.143 283.429q-0.571 1.143-1.429 4.571t-1.429 4.571h180.571l54.286 109.714h182.857zM877.714 565.714v275.429q0 14.857-10.857 25.714t-25.714 10.857h-804.571q-14.857 0-25.714-10.857t-10.857-25.714v-275.429q0-35.429 14.286-70.286l136-315.429q5.714-14.286 20.857-24t30-9.714h475.429q14.857 0 30 9.714t20.857 24l136 315.429q14.286 34.857 14.286 70.286z" - ], - "width": 877.7142857142858, - "attrs": [], - "isMulticolor": false, - "tags": [ - "inbox" - ], - "defaultCode": 61468, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 27, - "order": 544, - "prevSize": 14, - "code": 61468, - "name": "inbox" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 27 - }, - { - "icon": { - "paths": [ - "M676.571 512q0 21.143-18.286 31.429l-310.857 182.857q-8.571 5.143-18.286 5.143-9.143 0-18.286-4.571-18.286-10.857-18.286-32v-365.714q0-21.143 18.286-32 18.857-10.286 36.571 0.571l310.857 182.857q18.286 10.286 18.286 31.429zM749.714 512q0-84.571-41.714-156t-113.143-113.143-156-41.714-156 41.714-113.143 113.143-41.714 156 41.714 156 113.143 113.143 156 41.714 156-41.714 113.143-113.143 41.714-156zM877.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": [ - "play-circle-o" - ], - "defaultCode": 61469, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 28, - "order": 545, - "prevSize": 14, - "code": 61469, - "name": "play-circle-o" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 28 - }, - { - "icon": { - "paths": [ - "M877.714 146.286v256q0 14.857-10.857 25.714t-25.714 10.857h-256q-24 0-33.714-22.857-9.714-22.286 8-39.429l78.857-78.857q-84.571-78.286-199.429-78.286-59.429 0-113.429 23.143t-93.429 62.571-62.571 93.429-23.143 113.429 23.143 113.429 62.571 93.429 93.429 62.571 113.429 23.143q68 0 128.571-29.714t102.286-84q4-5.714 13.143-6.857 8 0 14.286 5.143l78.286 78.857q5.143 4.571 5.429 11.714t-4.286 12.857q-62.286 75.429-150.857 116.857t-186.857 41.429q-89.143 0-170.286-34.857t-140-93.714-93.714-140-34.857-170.286 34.857-170.286 93.714-140 140-93.714 170.286-34.857q84 0 162.571 31.714t139.714 89.429l74.286-73.714q16.571-17.714 40-8 22.286 9.714 22.286 33.714z" - ], - "width": 877.7142857142858, - "attrs": [], - "isMulticolor": false, - "tags": [ - "repeat", - "rotate-right" - ], - "defaultCode": 61470, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 29, - "order": 546, - "name": "repeat2, rotate-right", - "prevSize": 14, - "code": 61470 - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 29 - }, - { - "icon": { - "paths": [ - "M863.429 603.429q0 2.857-0.571 4-36.571 153.143-153.143 248.286t-273.143 95.143q-83.429 0-161.429-31.429t-139.143-89.714l-73.714 73.714q-10.857 10.857-25.714 10.857t-25.714-10.857-10.857-25.714v-256q0-14.857 10.857-25.714t25.714-10.857h256q14.857 0 25.714 10.857t10.857 25.714-10.857 25.714l-78.286 78.286q40.571 37.714 92 58.286t106.857 20.571q76.571 0 142.857-37.143t106.286-102.286q6.286-9.714 30.286-66.857 4.571-13.143 17.143-13.143h109.714q7.429 0 12.857 5.429t5.429 12.857zM877.714 146.286v256q0 14.857-10.857 25.714t-25.714 10.857h-256q-14.857 0-25.714-10.857t-10.857-25.714 10.857-25.714l78.857-78.857q-84.571-78.286-199.429-78.286-76.571 0-142.857 37.143t-106.286 102.286q-6.286 9.714-30.286 66.857-4.571 13.143-17.143 13.143h-113.714q-7.429 0-12.857-5.429t-5.429-12.857v-4q37.143-153.143 154.286-248.286t274.286-95.143q83.429 0 162.286 31.714t140 89.429l74.286-73.714q10.857-10.857 25.714-10.857t25.714 10.857 10.857 25.714z" - ], - "width": 877.7142857142858, - "attrs": [], - "isMulticolor": false, - "tags": [ - "refresh" - ], - "defaultCode": 61473, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 30, - "order": 547, - "prevSize": 14, - "code": 61473, - "name": "refresh" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 30 - }, - { - "icon": { - "paths": [ - "M219.429 676.571v36.571q0 7.429-5.429 12.857t-12.857 5.429h-36.571q-7.429 0-12.857-5.429t-5.429-12.857v-36.571q0-7.429 5.429-12.857t12.857-5.429h36.571q7.429 0 12.857 5.429t5.429 12.857zM219.429 530.286v36.571q0 7.429-5.429 12.857t-12.857 5.429h-36.571q-7.429 0-12.857-5.429t-5.429-12.857v-36.571q0-7.429 5.429-12.857t12.857-5.429h36.571q7.429 0 12.857 5.429t5.429 12.857zM219.429 384v36.571q0 7.429-5.429 12.857t-12.857 5.429h-36.571q-7.429 0-12.857-5.429t-5.429-12.857v-36.571q0-7.429 5.429-12.857t12.857-5.429h36.571q7.429 0 12.857 5.429t5.429 12.857zM877.714 676.571v36.571q0 7.429-5.429 12.857t-12.857 5.429h-548.571q-7.429 0-12.857-5.429t-5.429-12.857v-36.571q0-7.429 5.429-12.857t12.857-5.429h548.571q7.429 0 12.857 5.429t5.429 12.857zM877.714 530.286v36.571q0 7.429-5.429 12.857t-12.857 5.429h-548.571q-7.429 0-12.857-5.429t-5.429-12.857v-36.571q0-7.429 5.429-12.857t12.857-5.429h548.571q7.429 0 12.857 5.429t5.429 12.857zM877.714 384v36.571q0 7.429-5.429 12.857t-12.857 5.429h-548.571q-7.429 0-12.857-5.429t-5.429-12.857v-36.571q0-7.429 5.429-12.857t12.857-5.429h548.571q7.429 0 12.857 5.429t5.429 12.857zM950.857 786.286v-475.429q0-7.429-5.429-12.857t-12.857-5.429h-841.143q-7.429 0-12.857 5.429t-5.429 12.857v475.429q0 7.429 5.429 12.857t12.857 5.429h841.143q7.429 0 12.857-5.429t5.429-12.857zM1024 164.571v621.714q0 37.714-26.857 64.571t-64.571 26.857h-841.143q-37.714 0-64.571-26.857t-26.857-64.571v-621.714q0-37.714 26.857-64.571t64.571-26.857h841.143q37.714 0 64.571 26.857t26.857 64.571z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "list-alt" - ], - "defaultCode": 61474, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 31, - "order": 548, - "prevSize": 14, - "code": 61474, - "name": "list-alt" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 31 - }, - { - "icon": { - "paths": [ - "M182.857 438.857h292.571v-109.714q0-60.571-42.857-103.429t-103.429-42.857-103.429 42.857-42.857 103.429v109.714zM658.286 493.714v329.143q0 22.857-16 38.857t-38.857 16h-548.571q-22.857 0-38.857-16t-16-38.857v-329.143q0-22.857 16-38.857t38.857-16h18.286v-109.714q0-105.143 75.429-180.571t180.571-75.429 180.571 75.429 75.429 180.571v109.714h18.286q22.857 0 38.857 16t16 38.857z" - ], - "width": 658, - "attrs": [], - "isMulticolor": false, - "tags": [ - "lock" - ], - "defaultCode": 61475, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 32, - "order": 549, - "prevSize": 14, - "code": 61475, - "name": "lock" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 32 - }, - { - "icon": { - "paths": [ - "M182.857 146.286q0 41.143-36.571 62.857v723.429q0 7.429-5.429 12.857t-12.857 5.429h-36.571q-7.429 0-12.857-5.429t-5.429-12.857v-723.429q-36.571-21.714-36.571-62.857 0-30.286 21.429-51.714t51.714-21.429 51.714 21.429 21.429 51.714zM1024 182.857v436q0 14.286-7.143 22t-22.571 15.714q-122.857 66.286-210.857 66.286-34.857 0-70.571-12.571t-62-27.429-66-27.429-81.429-12.571q-109.714 0-265.143 83.429-9.714 5.143-18.857 5.143-14.857 0-25.714-10.857t-10.857-25.714v-424q0-18.286 17.714-31.429 12-8 45.143-24.571 134.857-68.571 240.571-68.571 61.143 0 114.286 16.571t125.143 50.286q21.714 10.857 50.286 10.857 30.857 0 67.143-12t62.857-26.857 50.286-26.857 31.143-12q14.857 0 25.714 10.857t10.857 25.714z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "flag" - ], - "defaultCode": 61476, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 33, - "order": 550, - "prevSize": 14, - "code": 61476, - "name": "flag" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 33 - }, - { - "icon": { - "paths": [ - "M950.857 506.286q0 94.857-34.286 179.429l-11.429 28-105.714 18.857q-12.571 47.429-51.714 78t-89.429 30.571v18.286q0 8-5.143 13.143t-13.143 5.143h-36.571q-8 0-13.143-5.143t-5.143-13.143v-329.143q0-8 5.143-13.143t13.143-5.143h36.571q8 0 13.143 5.143t5.143 13.143v18.286q40.571 0 74.286 20.286t53.143 54.571l38.857-6.857q16.571-54.286 16.571-110.286 0-84.571-50.286-159.429t-135.143-119.429-180.286-44.571-180.286 44.571-135.143 119.429-50.286 159.429q0 56 16.571 110.286l38.857 6.857q19.429-34.286 53.143-54.571t74.286-20.286v-18.286q0-8 5.143-13.143t13.143-5.143h36.571q8 0 13.143 5.143t5.143 13.143v329.143q0 8-5.143 13.143t-13.143 5.143h-36.571q-8 0-13.143-5.143t-5.143-13.143v-18.286q-50.286 0-89.429-30.571t-51.714-78l-105.714-18.857-11.429-28q-34.286-84.571-34.286-179.429 0-86.286 38.286-166.286t102.286-138.571 152-93.429 182.857-34.857 182.857 34.857 152 93.429 102.286 138.571 38.286 166.286z" - ], - "width": 951, - "attrs": [], - "isMulticolor": false, - "tags": [ - "headphones" - ], - "defaultCode": 61477, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 34, - "order": 551, - "prevSize": 14, - "code": 61477, - "name": "headphones" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 34 - }, - { - "icon": { - "paths": [ - "M438.857 201.143v621.714q0 14.857-10.857 25.714t-25.714 10.857-25.714-10.857l-190.286-190.286h-149.714q-14.857 0-25.714-10.857t-10.857-25.714v-219.429q0-14.857 10.857-25.714t25.714-10.857h149.714l190.286-190.286q10.857-10.857 25.714-10.857t25.714 10.857 10.857 25.714z" - ], - "width": 439, - "attrs": [], - "isMulticolor": false, - "tags": [ - "volume-off" - ], - "defaultCode": 61478, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 35, - "order": 552, - "prevSize": 14, - "code": 61478, - "name": "volume-off" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 35 - }, - { - "icon": { - "paths": [ - "M438.857 201.143v621.714q0 14.857-10.857 25.714t-25.714 10.857-25.714-10.857l-190.286-190.286h-149.714q-14.857 0-25.714-10.857t-10.857-25.714v-219.429q0-14.857 10.857-25.714t25.714-10.857h149.714l190.286-190.286q10.857-10.857 25.714-10.857t25.714 10.857 10.857 25.714zM658.286 512q0 43.429-24.286 80.857t-64.286 53.429q-5.714 2.857-14.286 2.857-14.857 0-25.714-10.571t-10.857-26q0-12 6.857-20.286t16.571-14.286 19.429-13.143 16.571-20.286 6.857-32.571-6.857-32.571-16.571-20.286-19.429-13.143-16.571-14.286-6.857-20.286q0-15.429 10.857-26t25.714-10.571q8.571 0 14.286 2.857 40 15.429 64.286 53.143t24.286 81.143z" - ], - "width": 658, - "attrs": [], - "isMulticolor": false, - "tags": [ - "volume-down" - ], - "defaultCode": 61479, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 36, - "order": 553, - "prevSize": 14, - "code": 61479, - "name": "volume-down" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 36 - }, - { - "icon": { - "paths": [ - "M438.857 201.143v621.714q0 14.857-10.857 25.714t-25.714 10.857-25.714-10.857l-190.286-190.286h-149.714q-14.857 0-25.714-10.857t-10.857-25.714v-219.429q0-14.857 10.857-25.714t25.714-10.857h149.714l190.286-190.286q10.857-10.857 25.714-10.857t25.714 10.857 10.857 25.714zM658.286 512q0 43.429-24.286 80.857t-64.286 53.429q-5.714 2.857-14.286 2.857-14.857 0-25.714-10.571t-10.857-26q0-12 6.857-20.286t16.571-14.286 19.429-13.143 16.571-20.286 6.857-32.571-6.857-32.571-16.571-20.286-19.429-13.143-16.571-14.286-6.857-20.286q0-15.429 10.857-26t25.714-10.571q8.571 0 14.286 2.857 40 15.429 64.286 53.143t24.286 81.143zM804.571 512q0 87.429-48.571 161.429t-128.571 107.714q-7.429 2.857-14.286 2.857-15.429 0-26.286-10.857t-10.857-25.714q0-22.286 22.286-33.714 32-16.571 43.429-25.143 42.286-30.857 66-77.429t23.714-99.143-23.714-99.143-66-77.429q-11.429-8.571-43.429-25.143-22.286-11.429-22.286-33.714 0-14.857 10.857-25.714t25.714-10.857q7.429 0 14.857 2.857 80 33.714 128.571 107.714t48.571 161.429zM950.857 512q0 131.429-72.571 241.429t-193.143 162q-7.429 2.857-14.857 2.857-14.857 0-25.714-10.857t-10.857-25.714q0-20.571 22.286-33.714 4-2.286 12.857-6t12.857-6q26.286-14.286 46.857-29.143 70.286-52 109.714-129.714t39.429-165.143-39.429-165.143-109.714-129.714q-20.571-14.857-46.857-29.143-4-2.286-12.857-6t-12.857-6q-22.286-13.143-22.286-33.714 0-14.857 10.857-25.714t25.714-10.857q7.429 0 14.857 2.857 120.571 52 193.143 162t72.571 241.429z" - ], - "width": 951, - "attrs": [], - "isMulticolor": false, - "tags": [ - "volume-up" - ], - "defaultCode": 61480, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 37, - "order": 554, - "prevSize": 14, - "code": 61480, - "name": "volume-up" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 37 - }, - { - "icon": { - "paths": [ - "M219.429 658.286v73.143h-73.143v-73.143h73.143zM219.429 219.429v73.143h-73.143v-73.143h73.143zM658.286 219.429v73.143h-73.143v-73.143h73.143zM73.143 804h219.429v-218.857h-219.429v218.857zM73.143 365.714h219.429v-219.429h-219.429v219.429zM512 365.714h219.429v-219.429h-219.429v219.429zM365.714 512v365.714h-365.714v-365.714h365.714zM658.286 804.571v73.143h-73.143v-73.143h73.143zM804.571 804.571v73.143h-73.143v-73.143h73.143zM804.571 512v219.429h-219.429v-73.143h-73.143v219.429h-73.143v-365.714h219.429v73.143h73.143v-73.143h73.143zM365.714 73.143v365.714h-365.714v-365.714h365.714zM804.571 73.143v365.714h-365.714v-365.714h365.714z" - ], - "width": 805, - "attrs": [], - "isMulticolor": false, - "tags": [ - "qrcode" - ], - "defaultCode": 61481, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 38, - "order": 555, - "prevSize": 14, - "code": 61481, - "name": "qrcode" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 38 - }, - { - "icon": { - "paths": [ - "M36 877.714h-36v-804.571h36v804.571zM72 877.143h-18.286v-804h18.286v804zM125.714 877.143h-17.714v-804h17.714v804zM215.429 877.143h-17.714v-804h17.714v804zM305.143 877.143h-35.429v-804h35.429v804zM377.143 877.143h-17.714v-804h17.714v804zM413.143 877.143h-17.714v-804h17.714v804zM449.143 877.143h-17.714v-804h17.714v804zM538.857 877.143h-36v-804h36v804zM628.571 877.143h-36v-804h36v804zM700.571 877.143h-36v-804h36v804zM772.571 877.143h-36v-804h36v804zM826.286 877.143h-36v-804h36v804zM934.286 877.143h-53.714v-804h53.714v804zM970.286 877.143h-18.286v-804h18.286v804zM1024 877.714h-36v-804.571h36v804.571z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "barcode" - ], - "defaultCode": 61482, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 39, - "order": 556, - "prevSize": 14, - "code": 61482, - "name": "barcode" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 39 - }, - { - "icon": { - "paths": [ - "M256 256q0-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.714zM865.714 585.143q0 30.286-21.143 51.429l-280.571 281.143q-22.286 21.143-52 21.143-30.286 0-51.429-21.143l-408.571-409.143q-21.714-21.143-36.857-57.714t-15.143-66.857v-237.714q0-29.714 21.714-51.429t51.429-21.714h237.714q30.286 0 66.857 15.143t58.286 36.857l408.571 408q21.143 22.286 21.143 52z" - ], - "width": 877.7142857142858, - "attrs": [], - "isMulticolor": false, - "tags": [ - "tag" - ], - "defaultCode": 61483, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 40, - "order": 557, - "prevSize": 14, - "code": 61483, - "name": "tag" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 40 - }, - { - "icon": { - "paths": [ - "M256 256q0-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.714zM865.714 585.143q0 30.286-21.143 51.429l-280.571 281.143q-22.286 21.143-52 21.143-30.286 0-51.429-21.143l-408.571-409.143q-21.714-21.143-36.857-57.714t-15.143-66.857v-237.714q0-29.714 21.714-51.429t51.429-21.714h237.714q30.286 0 66.857 15.143t58.286 36.857l408.571 408q21.143 22.286 21.143 52zM1085.143 585.143q0 30.286-21.143 51.429l-280.571 281.143q-22.286 21.143-52 21.143-20.571 0-33.714-8t-30.286-25.714l268.571-268.571q21.143-21.143 21.143-51.429 0-29.714-21.143-52l-408.571-408q-21.714-21.714-58.286-36.857t-66.857-15.143h128q30.286 0 66.857 15.143t58.286 36.857l408.571 408q21.143 22.286 21.143 52z" - ], - "width": 1097, - "attrs": [], - "isMulticolor": false, - "tags": [ - "tags" - ], - "defaultCode": 61484, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 41, - "order": 558, - "prevSize": 14, - "code": 61484, - "name": "tags" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 41 - }, - { - "icon": { - "paths": [ - "M936.571 273.143q22.857 32.571 10.286 73.714l-157.143 517.714q-10.857 36.571-43.714 61.429t-70 24.857h-527.429q-44 0-84.857-30.571t-56.857-75.143q-13.714-38.286-1.143-72.571 0-2.286 1.714-15.429t2.286-21.143q0.571-4.571-1.714-12.286t-1.714-11.143q1.143-6.286 4.571-12t9.429-13.429 9.429-13.429q13.143-21.714 25.714-52.286t17.143-52.286q1.714-5.714 0.286-17.143t-0.286-16q1.714-6.286 9.714-16t9.714-13.143q12-20.571 24-52.571t14.286-51.429q0.571-5.143-1.429-18.286t0.286-16q2.286-7.429 12.571-17.429t12.571-12.857q10.857-14.857 24.286-48.286t15.714-55.143q0.571-4.571-1.714-14.571t-1.143-15.143q1.143-4.571 5.143-10.286t10.286-13.143 9.714-12q4.571-6.857 9.429-17.429t8.571-20 9.143-20.571 11.143-18.286 15.143-13.429 20.571-6.571 27.143 3.143l-0.571 1.714q21.714-5.143 29.143-5.143h434.857q42.286 0 65.143 32t10.286 74.286l-156.571 517.714q-20.571 68-40.857 87.714t-73.429 19.714h-496.571q-15.429 0-21.714 8.571-6.286 9.143-0.571 24.571 13.714 40 82.286 40h527.429q16.571 0 32-8.857t20-23.714l171.429-564q4-12.571 2.857-32.571 21.714 8.571 33.714 24.571zM328.571 274.286q-2.286 7.429 1.143 12.857t11.429 5.429h347.429q7.429 0 14.571-5.429t9.429-12.857l12-36.571q2.286-7.429-1.143-12.857t-11.429-5.429h-347.429q-7.429 0-14.571 5.429t-9.429 12.857zM281.143 420.571q-2.286 7.429 1.143 12.857t11.429 5.429h347.429q7.429 0 14.571-5.429t9.429-12.857l12-36.571q2.286-7.429-1.143-12.857t-11.429-5.429h-347.429q-7.429 0-14.571 5.429t-9.429 12.857z" - ], - "width": 951, - "attrs": [], - "isMulticolor": false, - "tags": [ - "book" - ], - "defaultCode": 61485, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 42, - "order": 559, - "prevSize": 14, - "code": 61485, - "name": "book" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 42 - }, - { - "icon": { - "paths": [ - "M665.143 73.143q13.143 0 25.143 5.143 18.857 7.429 30 23.429t11.143 35.429v736.571q0 19.429-11.143 35.429t-30 23.429q-10.857 4.571-25.143 4.571-27.429 0-47.429-18.286l-252-242.286-252 242.286q-20.571 18.857-47.429 18.857-13.143 0-25.143-5.143-18.857-7.429-30-23.429t-11.143-35.429v-736.571q0-19.429 11.143-35.429t30-23.429q12-5.143 25.143-5.143h598.857z" - ], - "width": 731, - "attrs": [], - "isMulticolor": false, - "tags": [ - "bookmark" - ], - "defaultCode": 61486, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 43, - "order": 560, - "prevSize": 14, - "code": 61486, - "name": "bookmark" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 43 - }, - { - "icon": { - "paths": [ - "M219.429 877.714h512v-146.286h-512v146.286zM219.429 512h512v-219.429h-91.429q-22.857 0-38.857-16t-16-38.857v-91.429h-365.714v365.714zM877.714 548.571q0-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.714zM950.857 548.571v237.714q0 7.429-5.429 12.857t-12.857 5.429h-128v91.429q0 22.857-16 38.857t-38.857 16h-548.571q-22.857 0-38.857-16t-16-38.857v-91.429h-128q-7.429 0-12.857-5.429t-5.429-12.857v-237.714q0-45.143 32.286-77.429t77.429-32.286h36.571v-310.857q0-22.857 16-38.857t38.857-16h384q22.857 0 50.286 11.429t43.429 27.429l86.857 86.857q16 16 27.429 43.429t11.429 50.286v146.286h36.571q45.143 0 77.429 32.286t32.286 77.429z" - ], - "width": 951, - "attrs": [], - "isMulticolor": false, - "tags": [ - "print" - ], - "defaultCode": 61487, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 44, - "order": 561, - "prevSize": 14, - "code": 61487, - "name": "print" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 44 - }, - { - "icon": { - "paths": [ - "M548.571 384q68 0 116.286 48.286t48.286 116.286-48.286 116.286-116.286 48.286-116.286-48.286-48.286-116.286 48.286-116.286 116.286-48.286zM950.857 146.286q60.571 0 103.429 42.857t42.857 103.429v512q0 60.571-42.857 103.429t-103.429 42.857h-804.571q-60.571 0-103.429-42.857t-42.857-103.429v-512q0-60.571 42.857-103.429t103.429-42.857h128l29.143-77.714q10.857-28 39.714-48.286t59.143-20.286h292.571q30.286 0 59.143 20.286t39.714 48.286l29.143 77.714h128zM548.571 804.571q105.714 0 180.857-75.143t75.143-180.857-75.143-180.857-180.857-75.143-180.857 75.143-75.143 180.857 75.143 180.857 180.857 75.143z" - ], - "width": 1097, - "attrs": [], - "isMulticolor": false, - "tags": [ - "camera" - ], - "defaultCode": 61488, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 45, - "order": 562, - "prevSize": 14, - "code": 61488, - "name": "camera" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 45 - }, - { - "icon": { - "paths": [ - "M414.286 319.429l-97.143 257.143q18.857 0 78 1.143t91.714 1.143q10.857 0 32.571-1.143-49.714-144.571-105.143-258.286zM0 950.857l1.143-45.143q13.143-4 32-7.143t32.571-6 28.286-8.286 25.429-16.571 17.714-28.857l135.429-352 160-413.714h73.143q4.571 8 6.286 12l117.143 274.286q18.857 44.571 60.571 147.143t65.143 156.857q8.571 19.429 33.143 82.571t41.143 96.286q11.429 25.714 20 32.571 10.857 8.571 50.286 16.857t48 11.714q3.429 21.714 3.429 32.571 0 2.286-0.286 7.429t-0.286 7.429q-36 0-108.571-4.571t-109.143-4.571q-43.429 0-122.857 4t-101.714 4.571q0-24.571 2.286-44.571l74.857-16q0.571 0 7.143-1.429t8.857-2 8.286-2.571 8.571-3.714 6.286-4.571 5.143-6.286 1.429-8q0-9.143-17.714-55.143t-41.143-101.429-24-57.143l-257.143-1.143q-14.857 33.143-43.714 111.714t-28.857 92.857q0 12.571 8 21.429t24.857 14 27.714 7.714 32.571 4.857 23.429 2.286q0.571 10.857 0.571 33.143 0 5.143-1.143 15.429-33.143 0-99.714-5.714t-99.714-5.714q-4.571 0-15.143 2.286t-12.286 2.286q-45.714 8-107.429 8z" - ], - "width": 951, - "attrs": [], - "isMulticolor": false, - "tags": [ - "font" - ], - "defaultCode": 61489, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 46, - "order": 563, - "prevSize": 14, - "code": 61489, - "name": "font" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 46 - }, - { - "icon": { - "paths": [ - "M317.143 869.143q42.286 18.286 80 18.286 214.857 0 214.857-191.429 0-65.143-23.429-102.857-15.429-25.143-35.143-42.286t-38.571-26.571-46-14.286-48-6-54-1.143q-41.714 0-57.714 5.714 0 30.286-0.286 90.857t-0.286 90.286q0 4.571-0.571 38.571t-0.286 55.143 2.571 47.714 6.857 38zM309.143 442.857q24 4 62.286 4 46.857 0 81.714-7.429t62.857-25.429 42.571-51.143 14.571-81.143q0-40-16.571-70t-45.143-46.857-61.714-24.857-70.857-8q-28.571 0-74.286 7.429 0 28.571 2.286 86.286t2.286 86.857q0 15.429-0.286 45.714t-0.286 45.143q0 26.286 0.571 39.429zM0 950.857l1.143-53.714q8.571-2.286 48.571-9.143t60.571-15.429q4-6.857 7.143-15.429t4.857-19.143 3.143-18.571 1.714-21.429 0.286-19.429v-37.429q0-561.143-12.571-585.714-2.286-4.571-12.571-8.286t-25.429-6.286-28.286-4-27.714-2.571-17.429-1.714l-2.286-47.429q56-1.143 194.286-6.571t213.143-5.429q13.143 0 39.143 0.286t38.571 0.286q40 0 78 7.429t73.429 24 61.714 40.571 42.286 59.714 16 78.571q0 29.714-9.429 54.571t-22.286 41.143-36.857 32.857-41.714 25.714-48 22.857q88 20 146.571 76.571t58.571 141.714q0 57.143-20 102.571t-53.429 74.571-78.857 48.857-93.429 27.714-100.571 8q-25.143 0-75.429-1.714t-75.429-1.714q-60.571 0-175.429 6.286t-132 6.857z" - ], - "width": 805, - "attrs": [], - "isMulticolor": false, - "tags": [ - "bold" - ], - "defaultCode": 61490, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 47, - "order": 564, - "prevSize": 14, - "code": 61490, - "name": "bold" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 47 - }, - { - "icon": { - "paths": [ - "M0 949.714l9.714-48.571q3.429-1.143 46.571-12.286t63.714-21.429q16-20 23.429-57.714 0.571-4 35.429-165.143t65.143-310.571 29.714-169.429v-14.286q-13.714-7.429-31.143-10.571t-39.714-4.571-33.143-3.143l10.857-58.857q18.857 1.143 68.571 3.714t85.429 4 68.857 1.429q27.429 0 56.286-1.429t69.143-4 56.286-3.714q-2.857 22.286-10.857 50.857-17.143 5.714-58 16.286t-62 19.143q-4.571 10.857-8 24.286t-5.143 22.857-4.286 26-3.714 24q-15.429 84.571-50 239.714t-44.286 203.143q-1.143 5.143-7.429 33.143t-11.429 51.429-9.143 47.714-3.429 32.857l0.571 10.286q9.714 2.286 105.714 17.714-1.714 25.143-9.143 56.571-6.286 0-18.571 0.857t-18.571 0.857q-16.571 0-49.714-5.714t-49.143-5.714q-78.857-1.143-117.714-1.143-29.143 0-81.714 5.143t-69.143 6.286z" - ], - "width": 585, - "attrs": [], - "isMulticolor": false, - "tags": [ - "italic" - ], - "defaultCode": 61491, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 48, - "order": 565, - "prevSize": 14, - "code": 61491, - "name": "italic" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 48 - }, - { - "icon": { - "paths": [ - "M996.571 804.571q18.857 0 24 10.571t-6.286 25.429l-72 92.571q-11.429 14.857-28 14.857t-28-14.857l-72-92.571q-11.429-14.857-6.286-25.429t24-10.571h45.714v-585.143h-45.714q-18.857 0-24-10.571t6.286-25.429l72-92.571q11.429-14.857 28-14.857t28 14.857l72 92.571q11.429 14.857 6.286 25.429t-24 10.571h-45.714v585.143h45.714zM46.286 73.714l30.857 15.429q6.857 2.857 120.571 2.857 25.143 0 75.429-1.143t75.429-1.143q20.571 0 61.429 0.286t61.429 0.286h167.429q3.429 0 12 0.286t11.714 0 9.143-1.714 10-5.143 8.571-10l24-0.571q2.286 0 8 0.286t8 0.286q1.143 64 1.143 192 0 45.714-2.857 62.286-22.286 8-38.857 10.286-14.286-25.143-30.857-73.143-1.714-5.143-6.286-27.429t-8.286-42-4.286-20.286q-3.429-4.571-6.857-7.143t-8.857-3.429-7.429-1.429-10.286-0.286-9.429 0.286q-9.714 0-38-0.286t-42.571-0.286-36.571 1.143-40.571 3.429q-5.143 46.286-4.571 77.714 0 53.714 1.143 221.714t1.143 260q0 9.143-1.429 40.857t0 52.286 7.143 39.429q22.857 12 70.857 24.286t68.571 21.429q2.857 22.857 2.857 28.571 0 8-1.714 16.571l-19.429 0.571q-43.429 1.143-124.571-4.571t-118.286-5.714q-28.571 0-86.286 5.143t-86.857 5.143q-1.714-29.143-1.714-29.714v-5.143q9.714-15.429 35.143-24.571t56.286-16.571 44.571-15.429q10.857-24 10.857-218.857 0-57.714-1.714-173.143t-1.714-173.143v-66.857q0-1.143 0.286-8.857t0.286-14.286-0.571-14.571-1.714-13.714-2.857-8q-6.286-6.857-92.571-6.857-18.857 0-53.143 6.857t-45.714 14.857q-10.857 7.429-19.429 41.429t-18 63.429-24.286 30.571q-24-14.857-32-25.143v-218.857z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "text-height" - ], - "defaultCode": 61492, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 49, - "order": 566, - "prevSize": 14, - "code": 61492, - "name": "text-height" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 49 - }, - { - "icon": { - "paths": [ - "M46.286 73.714l30.857 15.429q6.857 2.857 120.571 2.857 25.143 0 75.429-1.143t75.429-1.143q40 0 140.857-0.571t174-0.286 141.143 2.571q18.857 0.571 32-17.714l24-0.571q2.286 0 8 0.286t8 0.286q1.143 64 1.143 192 0 45.714-2.857 62.286-22.286 8-38.857 10.286-14.286-25.143-30.857-73.143-1.714-5.143-6.286-27.143t-8.571-42-4-20.571q-5.714-7.429-15.429-10.857-2.857-1.143-37.714-1.143-17.143 0-53.143-0.571t-58.857-0.571-53.714 1.143-54.857 4q-5.143 46.286-4.571 77.714l0.571 86.857v-29.714q0 31.429 0.571 88t0.857 102.857 0.286 87.429q0 9.143-1.429 40.857t0 52.286 7.143 39.429q22.857 12 70.857 24.286t68.571 21.429q2.857 22.857 2.857 28.571 0 8-1.714 16.571l-19.429 0.571q-43.429 1.143-124.571-4.571t-118.286-5.714q-28.571 0-86.286 5.143t-86.857 5.143q-1.714-29.143-1.714-29.714v-5.143q9.714-15.429 35.143-24.571t56.286-16.571 44.571-15.429q4-9.143 6.571-42.286t3.429-83.143 0.857-88.571-0.286-87.714-0.286-50.857q0-4-1.429-12.286t-1.429-12.857q0-4 0.286-25.143t0.571-41.714 0-43.714-1.714-38.571-3.714-18.286q-6.286-6.857-92.571-6.857-23.429 0-93.143 7.714t-78.857 14q-10.857 6.857-19.429 40.857t-18 63.714-24.286 30.857q-24-14.857-32-25.143v-218.857zM748.571 806.286q6.857 0 24 11.143t32.857 23.714 34 28 20.571 17.143q14.857 12 14.857 28t-14.857 28q-2.286 1.714-20.571 17.143t-34 28-32.857 23.714-24 11.143q-7.429 0-11.714-6t-5.714-16.286-1.429-19.143 0.857-18.857 0.857-11.143h-585.143q0 1.143 0.857 11.143t0.857 18.857-1.429 19.143-5.714 16.286-11.714 6q-6.857 0-24-11.143t-32.857-23.714-34-28-20.571-17.143q-14.857-12-14.857-28t14.857-28q2.286-1.714 20.571-17.143t34-28 32.857-23.714 24-11.143q7.429 0 11.714 6t5.714 16.286 1.429 19.143-0.857 18.857-0.857 11.143h585.143q0-1.143-0.857-11.143t-0.857-18.857 1.429-19.143 5.714-16.286 11.714-6z" - ], - "width": 877.7142857142858, - "attrs": [], - "isMulticolor": false, - "tags": [ - "text-width" - ], - "defaultCode": 61493, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 50, - "order": 567, - "prevSize": 14, - "code": 61493, - "name": "text-width" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 50 - }, - { - "icon": { - "paths": [ - "M1024 768v73.143q0 14.857-10.857 25.714t-25.714 10.857h-950.857q-14.857 0-25.714-10.857t-10.857-25.714v-73.143q0-14.857 10.857-25.714t25.714-10.857h950.857q14.857 0 25.714 10.857t10.857 25.714zM804.571 548.571v73.143q0 14.857-10.857 25.714t-25.714 10.857h-731.429q-14.857 0-25.714-10.857t-10.857-25.714v-73.143q0-14.857 10.857-25.714t25.714-10.857h731.429q14.857 0 25.714 10.857t10.857 25.714zM950.857 329.143v73.143q0 14.857-10.857 25.714t-25.714 10.857h-877.714q-14.857 0-25.714-10.857t-10.857-25.714v-73.143q0-14.857 10.857-25.714t25.714-10.857h877.714q14.857 0 25.714 10.857t10.857 25.714zM731.429 109.714v73.143q0 14.857-10.857 25.714t-25.714 10.857h-658.286q-14.857 0-25.714-10.857t-10.857-25.714v-73.143q0-14.857 10.857-25.714t25.714-10.857h658.286q14.857 0 25.714 10.857t10.857 25.714z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "align-left" - ], - "defaultCode": 61494, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 51, - "order": 568, - "prevSize": 14, - "code": 61494, - "name": "align-left" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 51 - }, - { - "icon": { - "paths": [ - "M1024 768v73.143q0 14.857-10.857 25.714t-25.714 10.857h-950.857q-14.857 0-25.714-10.857t-10.857-25.714v-73.143q0-14.857 10.857-25.714t25.714-10.857h950.857q14.857 0 25.714 10.857t10.857 25.714zM804.571 548.571v73.143q0 14.857-10.857 25.714t-25.714 10.857h-512q-14.857 0-25.714-10.857t-10.857-25.714v-73.143q0-14.857 10.857-25.714t25.714-10.857h512q14.857 0 25.714 10.857t10.857 25.714zM950.857 329.143v73.143q0 14.857-10.857 25.714t-25.714 10.857h-804.571q-14.857 0-25.714-10.857t-10.857-25.714v-73.143q0-14.857 10.857-25.714t25.714-10.857h804.571q14.857 0 25.714 10.857t10.857 25.714zM731.429 109.714v73.143q0 14.857-10.857 25.714t-25.714 10.857h-365.714q-14.857 0-25.714-10.857t-10.857-25.714v-73.143q0-14.857 10.857-25.714t25.714-10.857h365.714q14.857 0 25.714 10.857t10.857 25.714z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "align-center" - ], - "defaultCode": 61495, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 52, - "order": 569, - "prevSize": 14, - "code": 61495, - "name": "align-center2" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 52 - }, - { - "icon": { - "paths": [ - "M1024 768v73.143q0 14.857-10.857 25.714t-25.714 10.857h-950.857q-14.857 0-25.714-10.857t-10.857-25.714v-73.143q0-14.857 10.857-25.714t25.714-10.857h950.857q14.857 0 25.714 10.857t10.857 25.714zM1024 548.571v73.143q0 14.857-10.857 25.714t-25.714 10.857h-731.429q-14.857 0-25.714-10.857t-10.857-25.714v-73.143q0-14.857 10.857-25.714t25.714-10.857h731.429q14.857 0 25.714 10.857t10.857 25.714zM1024 329.143v73.143q0 14.857-10.857 25.714t-25.714 10.857h-877.714q-14.857 0-25.714-10.857t-10.857-25.714v-73.143q0-14.857 10.857-25.714t25.714-10.857h877.714q14.857 0 25.714 10.857t10.857 25.714zM1024 109.714v73.143q0 14.857-10.857 25.714t-25.714 10.857h-658.286q-14.857 0-25.714-10.857t-10.857-25.714v-73.143q0-14.857 10.857-25.714t25.714-10.857h658.286q14.857 0 25.714 10.857t10.857 25.714z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "align-right" - ], - "defaultCode": 61496, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 53, - "order": 570, - "prevSize": 14, - "code": 61496, - "name": "align-right" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 53 - }, - { - "icon": { - "paths": [ - "M1024 768v73.143q0 14.857-10.857 25.714t-25.714 10.857h-950.857q-14.857 0-25.714-10.857t-10.857-25.714v-73.143q0-14.857 10.857-25.714t25.714-10.857h950.857q14.857 0 25.714 10.857t10.857 25.714zM1024 548.571v73.143q0 14.857-10.857 25.714t-25.714 10.857h-950.857q-14.857 0-25.714-10.857t-10.857-25.714v-73.143q0-14.857 10.857-25.714t25.714-10.857h950.857q14.857 0 25.714 10.857t10.857 25.714zM1024 329.143v73.143q0 14.857-10.857 25.714t-25.714 10.857h-950.857q-14.857 0-25.714-10.857t-10.857-25.714v-73.143q0-14.857 10.857-25.714t25.714-10.857h950.857q14.857 0 25.714 10.857t10.857 25.714zM1024 109.714v73.143q0 14.857-10.857 25.714t-25.714 10.857h-950.857q-14.857 0-25.714-10.857t-10.857-25.714v-73.143q0-14.857 10.857-25.714t25.714-10.857h950.857q14.857 0 25.714 10.857t10.857 25.714z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "align-justify" - ], - "defaultCode": 61497, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 54, - "order": 571, - "prevSize": 14, - "code": 61497, - "name": "align-justify2" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 54 - }, - { - "icon": { - "paths": [ - "M146.286 749.714v109.714q0 7.429-5.429 12.857t-12.857 5.429h-109.714q-7.429 0-12.857-5.429t-5.429-12.857v-109.714q0-7.429 5.429-12.857t12.857-5.429h109.714q7.429 0 12.857 5.429t5.429 12.857zM146.286 530.286v109.714q0 7.429-5.429 12.857t-12.857 5.429h-109.714q-7.429 0-12.857-5.429t-5.429-12.857v-109.714q0-7.429 5.429-12.857t12.857-5.429h109.714q7.429 0 12.857 5.429t5.429 12.857zM146.286 310.857v109.714q0 7.429-5.429 12.857t-12.857 5.429h-109.714q-7.429 0-12.857-5.429t-5.429-12.857v-109.714q0-7.429 5.429-12.857t12.857-5.429h109.714q7.429 0 12.857 5.429t5.429 12.857zM1024 749.714v109.714q0 7.429-5.429 12.857t-12.857 5.429h-768q-7.429 0-12.857-5.429t-5.429-12.857v-109.714q0-7.429 5.429-12.857t12.857-5.429h768q7.429 0 12.857 5.429t5.429 12.857zM146.286 91.429v109.714q0 7.429-5.429 12.857t-12.857 5.429h-109.714q-7.429 0-12.857-5.429t-5.429-12.857v-109.714q0-7.429 5.429-12.857t12.857-5.429h109.714q7.429 0 12.857 5.429t5.429 12.857zM1024 530.286v109.714q0 7.429-5.429 12.857t-12.857 5.429h-768q-7.429 0-12.857-5.429t-5.429-12.857v-109.714q0-7.429 5.429-12.857t12.857-5.429h768q7.429 0 12.857 5.429t5.429 12.857zM1024 310.857v109.714q0 7.429-5.429 12.857t-12.857 5.429h-768q-7.429 0-12.857-5.429t-5.429-12.857v-109.714q0-7.429 5.429-12.857t12.857-5.429h768q7.429 0 12.857 5.429t5.429 12.857zM1024 91.429v109.714q0 7.429-5.429 12.857t-12.857 5.429h-768q-7.429 0-12.857-5.429t-5.429-12.857v-109.714q0-7.429 5.429-12.857t12.857-5.429h768q7.429 0 12.857 5.429t5.429 12.857z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "list" - ], - "defaultCode": 61498, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 55, - "order": 572, - "prevSize": 14, - "code": 61498, - "name": "list" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 55 - }, - { - "icon": { - "paths": [ - "M219.429 310.857v329.143q0 7.429-5.429 12.857t-12.857 5.429q-8 0-13.143-5.143l-164.571-164.571q-5.143-5.143-5.143-13.143t5.143-13.143l164.571-164.571q5.143-5.143 13.143-5.143 7.429 0 12.857 5.429t5.429 12.857zM1024 749.714v109.714q0 7.429-5.429 12.857t-12.857 5.429h-987.429q-7.429 0-12.857-5.429t-5.429-12.857v-109.714q0-7.429 5.429-12.857t12.857-5.429h987.429q7.429 0 12.857 5.429t5.429 12.857zM1024 530.286v109.714q0 7.429-5.429 12.857t-12.857 5.429h-621.714q-7.429 0-12.857-5.429t-5.429-12.857v-109.714q0-7.429 5.429-12.857t12.857-5.429h621.714q7.429 0 12.857 5.429t5.429 12.857zM1024 310.857v109.714q0 7.429-5.429 12.857t-12.857 5.429h-621.714q-7.429 0-12.857-5.429t-5.429-12.857v-109.714q0-7.429 5.429-12.857t12.857-5.429h621.714q7.429 0 12.857 5.429t5.429 12.857zM1024 91.429v109.714q0 7.429-5.429 12.857t-12.857 5.429h-987.429q-7.429 0-12.857-5.429t-5.429-12.857v-109.714q0-7.429 5.429-12.857t12.857-5.429h987.429q7.429 0 12.857 5.429t5.429 12.857z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "dedent", - "outdent" - ], - "defaultCode": 61499, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 56, - "order": 573, - "name": "dedent, outdent", - "prevSize": 14, - "code": 61499 - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 56 - }, - { - "icon": { - "paths": [ - "M201.143 475.429q0 8-5.143 13.143l-164.571 164.571q-5.143 5.143-13.143 5.143-7.429 0-12.857-5.429t-5.429-12.857v-329.143q0-7.429 5.429-12.857t12.857-5.429q8 0 13.143 5.143l164.571 164.571q5.143 5.143 5.143 13.143zM1024 749.714v109.714q0 7.429-5.429 12.857t-12.857 5.429h-987.429q-7.429 0-12.857-5.429t-5.429-12.857v-109.714q0-7.429 5.429-12.857t12.857-5.429h987.429q7.429 0 12.857 5.429t5.429 12.857zM1024 530.286v109.714q0 7.429-5.429 12.857t-12.857 5.429h-621.714q-7.429 0-12.857-5.429t-5.429-12.857v-109.714q0-7.429 5.429-12.857t12.857-5.429h621.714q7.429 0 12.857 5.429t5.429 12.857zM1024 310.857v109.714q0 7.429-5.429 12.857t-12.857 5.429h-621.714q-7.429 0-12.857-5.429t-5.429-12.857v-109.714q0-7.429 5.429-12.857t12.857-5.429h621.714q7.429 0 12.857 5.429t5.429 12.857zM1024 91.429v109.714q0 7.429-5.429 12.857t-12.857 5.429h-987.429q-7.429 0-12.857-5.429t-5.429-12.857v-109.714q0-7.429 5.429-12.857t12.857-5.429h987.429q7.429 0 12.857 5.429t5.429 12.857z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "indent" - ], - "defaultCode": 61500, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 57, - "order": 574, - "prevSize": 14, - "code": 61500, - "name": "indent" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 57 - }, - { - "icon": { - "paths": [ - "M1024 201.143v621.714q0 24-22.286 33.714-7.429 2.857-14.286 2.857-15.429 0-25.714-10.857l-230.286-230.286v94.857q0 68-48.286 116.286t-116.286 48.286h-402.286q-68 0-116.286-48.286t-48.286-116.286v-402.286q0-68 48.286-116.286t116.286-48.286h402.286q68 0 116.286 48.286t48.286 116.286v94.286l230.286-229.714q10.286-10.857 25.714-10.857 6.857 0 14.286 2.857 22.286 9.714 22.286 33.714z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "video-camera" - ], - "defaultCode": 61501, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 58, - "order": 575, - "prevSize": 14, - "code": 61501, - "name": "video-camera" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 58 - }, - { - "icon": { - "paths": [ - "M365.714 329.143q0 45.714-32 77.714t-77.714 32-77.714-32-32-77.714 32-77.714 77.714-32 77.714 32 32 77.714zM950.857 548.571v256h-804.571v-109.714l182.857-182.857 91.429 91.429 292.571-292.571zM1005.714 146.286h-914.286q-7.429 0-12.857 5.429t-5.429 12.857v694.857q0 7.429 5.429 12.857t12.857 5.429h914.286q7.429 0 12.857-5.429t5.429-12.857v-694.857q0-7.429-5.429-12.857t-12.857-5.429zM1097.143 164.571v694.857q0 37.714-26.857 64.571t-64.571 26.857h-914.286q-37.714 0-64.571-26.857t-26.857-64.571v-694.857q0-37.714 26.857-64.571t64.571-26.857h914.286q37.714 0 64.571 26.857t26.857 64.571z" - ], - "width": 1097, - "attrs": [], - "isMulticolor": false, - "tags": [ - "image", - "photo", - "picture-o" - ], - "defaultCode": 61502, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 59, - "order": 576, - "name": "image, photo, picture-o", - "prevSize": 14, - "code": 61502 - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 59 - }, - { - "icon": { - "paths": [ - "M207.429 877.714l52-52-134.286-134.286-52 52v61.143h73.143v73.143h61.143zM506.286 347.429q0-12.571-12.571-12.571-5.714 0-9.714 4l-309.714 309.714q-4 4-4 9.714 0 12.571 12.571 12.571 5.714 0 9.714-4l309.714-309.714q4-4 4-9.714zM475.429 237.714l237.714 237.714-475.429 475.429h-237.714v-237.714zM865.714 292.571q0 30.286-21.143 51.429l-94.857 94.857-237.714-237.714 94.857-94.286q20.571-21.714 51.429-21.714 30.286 0 52 21.714l134.286 133.714q21.143 22.286 21.143 52z" - ], - "width": 877.7142857142858, - "attrs": [], - "isMulticolor": false, - "tags": [ - "pencil" - ], - "defaultCode": 61504, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 60, - "order": 577, - "prevSize": 14, - "code": 61504, - "name": "pencil" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 60 - }, - { - "icon": { - "paths": [ - "M438.857 365.714q0-60.571-42.857-103.429t-103.429-42.857-103.429 42.857-42.857 103.429 42.857 103.429 103.429 42.857 103.429-42.857 42.857-103.429zM585.143 365.714q0 62.286-18.857 102.286l-208 442.286q-9.143 18.857-27.143 29.714t-38.571 10.857-38.571-10.857-26.571-29.714l-208.571-442.286q-18.857-40-18.857-102.286 0-121.143 85.714-206.857t206.857-85.714 206.857 85.714 85.714 206.857z" - ], - "width": 585, - "attrs": [], - "isMulticolor": false, - "tags": [ - "map-marker" - ], - "defaultCode": 61505, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 61, - "order": 578, - "prevSize": 14, - "code": 61505, - "name": "map-marker" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 61 - }, - { - "icon": { - "paths": [ - "M438.857 822.857v-621.714q-84.571 0-156 41.714t-113.143 113.143-41.714 156 41.714 156 113.143 113.143 156 41.714zM877.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": [ - "adjust" - ], - "defaultCode": 61506, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 62, - "order": 579, - "prevSize": 14, - "code": 61506, - "name": "adjust" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 62 - }, - { - "icon": { - "paths": [ - "M292.571 658.286q0-20.571-11.429-39.429-0.571-0.571-8.857-12.857t-14.571-21.714-14.286-25.143-12-28.857q-2.286-9.143-12-9.143t-12 9.143q-4 13.143-12 28.857t-14.286 25.143-14.571 21.714-8.857 12.857q-11.429 18.857-11.429 39.429 0 30.286 21.429 51.714t51.714 21.429 51.714-21.429 21.429-51.714zM585.143 585.143q0 121.143-85.714 206.857t-206.857 85.714-206.857-85.714-85.714-206.857q0-82.857 46.286-157.143 3.429-5.143 35.714-51.714t57.714-86.286 56.857-101.714 47.429-115.143q5.143-17.143 19.429-26.857t29.143-9.714 29.429 9.714 19.143 26.857q16 53.143 47.429 115.143t56.857 101.714 57.714 86.286 35.714 51.714q46.286 72.571 46.286 157.143z" - ], - "width": 585, - "attrs": [], - "isMulticolor": false, - "tags": [ - "tint" - ], - "defaultCode": 61507, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 63, - "order": 580, - "prevSize": 14, - "code": 61507, - "name": "tint" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 63 - }, - { - "icon": { - "paths": [ - "M507.429 676.571l66.286-66.286-86.857-86.857-66.286 66.286v32h54.857v54.857h32zM758.857 265.143q-9.143-9.143-18.857 0.571l-200 200q-9.714 9.714-0.571 18.857t18.857-0.571l200-200q9.714-9.714 0.571-18.857zM804.571 604.571v108.571q0 68-48.286 116.286t-116.286 48.286h-475.429q-68 0-116.286-48.286t-48.286-116.286v-475.429q0-68 48.286-116.286t116.286-48.286h475.429q36 0 66.857 14.286 8.571 4 10.286 13.143 1.714 9.714-5.143 16.571l-28 28q-8 8-18.286 4.571-13.143-3.429-25.714-3.429h-475.429q-37.714 0-64.571 26.857t-26.857 64.571v475.429q0 37.714 26.857 64.571t64.571 26.857h475.429q37.714 0 64.571-26.857t26.857-64.571v-72q0-7.429 5.143-12.571l36.571-36.571q8.571-8.571 20-4t11.429 16.571zM749.714 182.857l164.571 164.571-384 384h-164.571v-164.571zM1003.429 258.286l-52.571 52.571-164.571-164.571 52.571-52.571q16-16 38.857-16t38.857 16l86.857 86.857q16 16 16 38.857t-16 38.857z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "edit", - "pencil-square-o" - ], - "defaultCode": 61508, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 64, - "order": 581, - "name": "edit, pencil-square-o", - "prevSize": 14, - "code": 61508 - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 64 - }, - { - "icon": { - "paths": [ - "M804.571 565.143v148q0 68-48.286 116.286t-116.286 48.286h-475.429q-68 0-116.286-48.286t-48.286-116.286v-475.429q0-68 48.286-116.286t116.286-48.286h145.714q7.429 0 12.857 5.429t5.429 12.857q0 15.429-14.857 18.286-44 14.857-76 34.286-5.714 2.286-9.143 2.286h-64q-37.714 0-64.571 26.857t-26.857 64.571v475.429q0 37.714 26.857 64.571t64.571 26.857h475.429q37.714 0 64.571-26.857t26.857-64.571v-122.286q0-10.857 10.286-16.571 16-7.429 30.857-21.143 9.143-9.143 20-4.571 12 5.143 12 16.571zM940 281.714l-219.429 219.429q-10.286 10.857-25.714 10.857-6.857 0-14.286-2.857-22.286-9.714-22.286-33.714v-109.714h-91.429q-184.571 0-250.286 74.857-68 78.286-42.286 270.286 1.714 13.143-11.429 19.429-4.571 1.143-6.857 1.143-9.143 0-14.857-7.429-5.714-8-12-17.714t-22.571-39.143-28.286-56.857-22-65.143-10-69.714q0-28 2-52t8-51.429 16-50.286 26.857-46.571 39.143-42.286 54-35.143 71.143-27.714 91.143-17.429 112.286-6.286h91.429v-109.714q0-24 22.286-33.714 7.429-2.857 14.286-2.857 14.857 0 25.714 10.857l219.429 219.429q10.857 10.857 10.857 25.714t-10.857 25.714z" - ], - "width": 951, - "attrs": [], - "isMulticolor": false, - "tags": [ - "share-square-o" - ], - "defaultCode": 61509, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 65, - "order": 582, - "prevSize": 14, - "code": 61509, - "name": "share-square-o" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 65 - }, - { - "icon": { - "paths": [ - "M804.571 531.429v181.714q0 68-48.286 116.286t-116.286 48.286h-475.429q-68 0-116.286-48.286t-48.286-116.286v-475.429q0-68 48.286-116.286t116.286-48.286h475.429q36 0 66.857 14.286 8.571 4 10.286 13.143 1.714 9.714-5.143 16.571l-28 28q-5.714 5.714-13.143 5.714-1.714 0-5.143-1.143-13.143-3.429-25.714-3.429h-475.429q-37.714 0-64.571 26.857t-26.857 64.571v475.429q0 37.714 26.857 64.571t64.571 26.857h475.429q37.714 0 64.571-26.857t26.857-64.571v-145.143q0-7.429 5.143-12.571l36.571-36.571q5.714-5.714 13.143-5.714 3.429 0 6.857 1.714 11.429 4.571 11.429 16.571zM936.571 252l-465.143 465.143q-13.714 13.714-32.571 13.714t-32.571-13.714l-245.714-245.714q-13.714-13.714-13.714-32.571t13.714-32.571l62.857-62.857q13.714-13.714 32.571-13.714t32.571 13.714l150.286 150.286 369.714-369.714q13.714-13.714 32.571-13.714t32.571 13.714l62.857 62.857q13.714 13.714 13.714 32.571t-13.714 32.571z" - ], - "width": 951, - "attrs": [], - "isMulticolor": false, - "tags": [ - "check-square-o" - ], - "defaultCode": 61510, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 66, - "order": 583, - "prevSize": 14, - "code": 61510, - "name": "check-square-o" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 66 - }, - { - "icon": { - "paths": [ - "M1024 512q0 14.857-10.857 25.714l-146.286 146.286q-10.857 10.857-25.714 10.857t-25.714-10.857-10.857-25.714v-73.143h-219.429v219.429h73.143q14.857 0 25.714 10.857t10.857 25.714-10.857 25.714l-146.286 146.286q-10.857 10.857-25.714 10.857t-25.714-10.857l-146.286-146.286q-10.857-10.857-10.857-25.714t10.857-25.714 25.714-10.857h73.143v-219.429h-219.429v73.143q0 14.857-10.857 25.714t-25.714 10.857-25.714-10.857l-146.286-146.286q-10.857-10.857-10.857-25.714t10.857-25.714l146.286-146.286q10.857-10.857 25.714-10.857t25.714 10.857 10.857 25.714v73.143h219.429v-219.429h-73.143q-14.857 0-25.714-10.857t-10.857-25.714 10.857-25.714l146.286-146.286q10.857-10.857 25.714-10.857t25.714 10.857l146.286 146.286q10.857 10.857 10.857 25.714t-10.857 25.714-25.714 10.857h-73.143v219.429h219.429v-73.143q0-14.857 10.857-25.714t25.714-10.857 25.714 10.857l146.286 146.286q10.857 10.857 10.857 25.714z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "arrows" - ], - "defaultCode": 61511, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 67, - "order": 584, - "prevSize": 14, - "code": 61511, - "name": "arrows" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 67 - }, - { - "icon": { - "paths": [ - "M559.429 80.571q10.857-10.857 18.286-7.429t7.429 18.286v841.143q0 14.857-7.429 18.286t-18.286-7.429l-405.714-405.714q-5.143-5.143-7.429-10.857v387.429q0 14.857-10.857 25.714t-25.714 10.857h-73.143q-14.857 0-25.714-10.857t-10.857-25.714v-804.571q0-14.857 10.857-25.714t25.714-10.857h73.143q14.857 0 25.714 10.857t10.857 25.714v387.429q2.286-6.286 7.429-10.857z" - ], - "width": 585, - "attrs": [], - "isMulticolor": false, - "tags": [ - "step-backward" - ], - "defaultCode": 61512, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 68, - "order": 585, - "prevSize": 14, - "code": 61512, - "name": "step-backward" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 68 - }, - { - "icon": { - "paths": [ - "M998.286 80.571q10.857-10.857 18.286-7.429t7.429 18.286v841.143q0 14.857-7.429 18.286t-18.286-7.429l-405.714-405.714q-5.143-5.143-7.429-10.857v405.714q0 14.857-7.429 18.286t-18.286-7.429l-405.714-405.714q-5.143-5.143-7.429-10.857v387.429q0 14.857-10.857 25.714t-25.714 10.857h-73.143q-14.857 0-25.714-10.857t-10.857-25.714v-804.571q0-14.857 10.857-25.714t25.714-10.857h73.143q14.857 0 25.714 10.857t10.857 25.714v387.429q2.286-6.286 7.429-10.857l405.714-405.714q10.857-10.857 18.286-7.429t7.429 18.286v405.714q2.286-6.286 7.429-10.857z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "fast-backward" - ], - "defaultCode": 61513, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 69, - "order": 586, - "prevSize": 14, - "code": 61513, - "name": "fast-backward" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 69 - }, - { - "icon": { - "paths": [ - "M925.143 80.571q10.857-10.857 18.286-7.429t7.429 18.286v841.143q0 14.857-7.429 18.286t-18.286-7.429l-405.714-405.714q-4.571-5.143-7.429-10.857v405.714q0 14.857-7.429 18.286t-18.286-7.429l-405.714-405.714q-10.857-10.857-10.857-25.714t10.857-25.714l405.714-405.714q10.857-10.857 18.286-7.429t7.429 18.286v405.714q2.857-6.286 7.429-10.857z" - ], - "width": 951, - "attrs": [], - "isMulticolor": false, - "tags": [ - "backward" - ], - "defaultCode": 61514, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 70, - "order": 587, - "prevSize": 14, - "code": 61514, - "name": "backward" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 70 - }, - { - "icon": { - "paths": [ - "M790.857 529.714l-758.857 421.714q-13.143 7.429-22.571 1.714t-9.429-20.571v-841.143q0-14.857 9.429-20.571t22.571 1.714l758.857 421.714q13.143 7.429 13.143 17.714t-13.143 17.714z" - ], - "width": 805, - "attrs": [], - "isMulticolor": false, - "tags": [ - "play" - ], - "defaultCode": 61515, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 71, - "order": 588, - "prevSize": 14, - "code": 61515, - "name": "play2" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 71 - }, - { - "icon": { - "paths": [ - "M877.714 109.714v804.571q0 14.857-10.857 25.714t-25.714 10.857h-292.571q-14.857 0-25.714-10.857t-10.857-25.714v-804.571q0-14.857 10.857-25.714t25.714-10.857h292.571q14.857 0 25.714 10.857t10.857 25.714zM365.714 109.714v804.571q0 14.857-10.857 25.714t-25.714 10.857h-292.571q-14.857 0-25.714-10.857t-10.857-25.714v-804.571q0-14.857 10.857-25.714t25.714-10.857h292.571q14.857 0 25.714 10.857t10.857 25.714z" - ], - "width": 877.7142857142858, - "attrs": [], - "isMulticolor": false, - "tags": [ - "pause" - ], - "defaultCode": 61516, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 72, - "order": 589, - "prevSize": 14, - "code": 61516, - "name": "pause2" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 72 - }, - { - "icon": { - "paths": [ - "M877.714 109.714v804.571q0 14.857-10.857 25.714t-25.714 10.857h-804.571q-14.857 0-25.714-10.857t-10.857-25.714v-804.571q0-14.857 10.857-25.714t25.714-10.857h804.571q14.857 0 25.714 10.857t10.857 25.714z" - ], - "width": 877.7142857142858, - "attrs": [], - "isMulticolor": false, - "tags": [ - "stop" - ], - "defaultCode": 61517, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 73, - "order": 590, - "prevSize": 14, - "code": 61517, - "name": "stop2" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 73 - }, - { - "icon": { - "paths": [ - "M25.714 943.429q-10.857 10.857-18.286 7.429t-7.429-18.286v-841.143q0-14.857 7.429-18.286t18.286 7.429l405.714 405.714q4.571 4.571 7.429 10.857v-405.714q0-14.857 7.429-18.286t18.286 7.429l405.714 405.714q10.857 10.857 10.857 25.714t-10.857 25.714l-405.714 405.714q-10.857 10.857-18.286 7.429t-7.429-18.286v-405.714q-2.857 5.714-7.429 10.857z" - ], - "width": 951, - "attrs": [], - "isMulticolor": false, - "tags": [ - "forward" - ], - "defaultCode": 61518, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 74, - "order": 591, - "prevSize": 14, - "code": 61518, - "name": "forward" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 74 - }, - { - "icon": { - "paths": [ - "M25.714 943.429q-10.857 10.857-18.286 7.429t-7.429-18.286v-841.143q0-14.857 7.429-18.286t18.286 7.429l405.714 405.714q4.571 4.571 7.429 10.857v-405.714q0-14.857 7.429-18.286t18.286 7.429l405.714 405.714q4.571 4.571 7.429 10.857v-387.429q0-14.857 10.857-25.714t25.714-10.857h73.143q14.857 0 25.714 10.857t10.857 25.714v804.571q0 14.857-10.857 25.714t-25.714 10.857h-73.143q-14.857 0-25.714-10.857t-10.857-25.714v-387.429q-2.857 5.714-7.429 10.857l-405.714 405.714q-10.857 10.857-18.286 7.429t-7.429-18.286v-405.714q-2.857 5.714-7.429 10.857z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "fast-forward" - ], - "defaultCode": 61520, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 75, - "order": 592, - "prevSize": 14, - "code": 61520, - "name": "fast-forward2" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 75 - }, - { - "icon": { - "paths": [ - "M25.714 943.429q-10.857 10.857-18.286 7.429t-7.429-18.286v-841.143q0-14.857 7.429-18.286t18.286 7.429l405.714 405.714q4.571 4.571 7.429 10.857v-387.429q0-14.857 10.857-25.714t25.714-10.857h73.143q14.857 0 25.714 10.857t10.857 25.714v804.571q0 14.857-10.857 25.714t-25.714 10.857h-73.143q-14.857 0-25.714-10.857t-10.857-25.714v-387.429q-2.857 5.714-7.429 10.857z" - ], - "width": 585, - "attrs": [], - "isMulticolor": false, - "tags": [ - "step-forward" - ], - "defaultCode": 61521, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 76, - "order": 593, - "prevSize": 14, - "code": 61521, - "name": "step-forward" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 76 - }, - { - "icon": { - "paths": [ - "M8 559.429l405.714-405.714q10.857-10.857 25.714-10.857t25.714 10.857l405.714 405.714q10.857 10.857 7.429 18.286t-18.286 7.429h-841.143q-14.857 0-18.286-7.429t7.429-18.286zM841.714 877.714h-804.571q-14.857 0-25.714-10.857t-10.857-25.714v-146.286q0-14.857 10.857-25.714t25.714-10.857h804.571q14.857 0 25.714 10.857t10.857 25.714v146.286q0 14.857-10.857 25.714t-25.714 10.857z" - ], - "width": 879, - "attrs": [], - "isMulticolor": false, - "tags": [ - "eject" - ], - "defaultCode": 61522, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 77, - "order": 594, - "prevSize": 14, - "code": 61522, - "name": "eject" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 77 - }, - { - "icon": { - "paths": [ - "M669.143 172l-303.429 303.429 303.429 303.429q10.857 10.857 10.857 25.714t-10.857 25.714l-94.857 94.857q-10.857 10.857-25.714 10.857t-25.714-10.857l-424-424q-10.857-10.857-10.857-25.714t10.857-25.714l424-424q10.857-10.857 25.714-10.857t25.714 10.857l94.857 94.857q10.857 10.857 10.857 25.714t-10.857 25.714z" - ], - "width": 731, - "attrs": [], - "isMulticolor": false, - "tags": [ - "chevron-left" - ], - "defaultCode": 61523, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 78, - "order": 595, - "prevSize": 14, - "code": 61523, - "name": "chevron-left" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 78 - }, - { - "icon": { - "paths": [ - "M632.571 501.143l-424 424q-10.857 10.857-25.714 10.857t-25.714-10.857l-94.857-94.857q-10.857-10.857-10.857-25.714t10.857-25.714l303.429-303.429-303.429-303.429q-10.857-10.857-10.857-25.714t10.857-25.714l94.857-94.857q10.857-10.857 25.714-10.857t25.714 10.857l424 424q10.857 10.857 10.857 25.714t-10.857 25.714z" - ], - "width": 731, - "attrs": [], - "isMulticolor": false, - "tags": [ - "chevron-right" - ], - "defaultCode": 61524, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 79, - "order": 596, - "prevSize": 14, - "code": 61524, - "name": "chevron-right" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 79 - }, - { - "icon": { - "paths": [ - "M694.857 548.571v-73.143q0-14.857-10.857-25.714t-25.714-10.857h-146.286v-146.286q0-14.857-10.857-25.714t-25.714-10.857h-73.143q-14.857 0-25.714 10.857t-10.857 25.714v146.286h-146.286q-14.857 0-25.714 10.857t-10.857 25.714v73.143q0 14.857 10.857 25.714t25.714 10.857h146.286v146.286q0 14.857 10.857 25.714t25.714 10.857h73.143q14.857 0 25.714-10.857t10.857-25.714v-146.286h146.286q14.857 0 25.714-10.857t10.857-25.714zM877.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": [ - "plus-circle" - ], - "defaultCode": 61525, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 80, - "order": 597, - "prevSize": 14, - "code": 61525, - "name": "plus-circle" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 80 - }, - { - "icon": { - "paths": [ - "M694.857 548.571v-73.143q0-14.857-10.857-25.714t-25.714-10.857h-438.857q-14.857 0-25.714 10.857t-10.857 25.714v73.143q0 14.857 10.857 25.714t25.714 10.857h438.857q14.857 0 25.714-10.857t10.857-25.714zM877.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": [ - "minus-circle" - ], - "defaultCode": 61526, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 81, - "order": 598, - "prevSize": 14, - "code": 61526, - "name": "minus-circle" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 81 - }, - { - "icon": { - "paths": [ - "M656.571 641.143q0-14.857-10.857-25.714l-103.429-103.429 103.429-103.429q10.857-10.857 10.857-25.714 0-15.429-10.857-26.286l-51.429-51.429q-10.857-10.857-26.286-10.857-14.857 0-25.714 10.857l-103.429 103.429-103.429-103.429q-10.857-10.857-25.714-10.857-15.429 0-26.286 10.857l-51.429 51.429q-10.857 10.857-10.857 26.286 0 14.857 10.857 25.714l103.429 103.429-103.429 103.429q-10.857 10.857-10.857 25.714 0 15.429 10.857 26.286l51.429 51.429q10.857 10.857 26.286 10.857 14.857 0 25.714-10.857l103.429-103.429 103.429 103.429q10.857 10.857 25.714 10.857 15.429 0 26.286-10.857l51.429-51.429q10.857-10.857 10.857-26.286zM877.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": [ - "times-circle" - ], - "defaultCode": 61527, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 82, - "order": 599, - "prevSize": 14, - "code": 61527, - "name": "times-circle" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 82 - }, - { - "icon": { - "paths": [ - "M733.714 419.429q0-16-10.286-26.286l-52-51.429q-10.857-10.857-25.714-10.857t-25.714 10.857l-233.143 232.571-129.143-129.143q-10.857-10.857-25.714-10.857t-25.714 10.857l-52 51.429q-10.286 10.286-10.286 26.286 0 15.429 10.286 25.714l206.857 206.857q10.857 10.857 25.714 10.857 15.429 0 26.286-10.857l310.286-310.286q10.286-10.286 10.286-25.714zM877.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": [ - "check-circle" - ], - "defaultCode": 61528, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 83, - "order": 600, - "prevSize": 14, - "code": 61528, - "name": "check-circle" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 83 - }, - { - "icon": { - "paths": [ - "M512 786.286v-109.714q0-8-5.143-13.143t-13.143-5.143h-109.714q-8 0-13.143 5.143t-5.143 13.143v109.714q0 8 5.143 13.143t13.143 5.143h109.714q8 0 13.143-5.143t5.143-13.143zM658.286 402.286q0-50.286-31.714-93.143t-79.143-66.286-97.143-23.429q-138.857 0-212 121.714-8.571 13.714 4.571 24l75.429 57.143q4 3.429 10.857 3.429 9.143 0 14.286-6.857 30.286-38.857 49.143-52.571 19.429-13.714 49.143-13.714 27.429 0 48.857 14.857t21.429 33.714q0 21.714-11.429 34.857t-38.857 25.714q-36 16-66 49.429t-30 71.714v20.571q0 8 5.143 13.143t13.143 5.143h109.714q8 0 13.143-5.143t5.143-13.143q0-10.857 12.286-28.286t31.143-28.286q18.286-10.286 28-16.286t26.286-20 25.429-27.429 16-34.571 7.143-46.286zM877.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": [ - "question-circle" - ], - "defaultCode": 61529, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 84, - "order": 601, - "prevSize": 14, - "code": 61529, - "name": "question-circle" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 84 - }, - { - "icon": { - "paths": [ - "M585.143 786.286v-91.429q0-8-5.143-13.143t-13.143-5.143h-54.857v-292.571q0-8-5.143-13.143t-13.143-5.143h-182.857q-8 0-13.143 5.143t-5.143 13.143v91.429q0 8 5.143 13.143t13.143 5.143h54.857v182.857h-54.857q-8 0-13.143 5.143t-5.143 13.143v91.429q0 8 5.143 13.143t13.143 5.143h256q8 0 13.143-5.143t5.143-13.143zM512 274.286v-91.429q0-8-5.143-13.143t-13.143-5.143h-109.714q-8 0-13.143 5.143t-5.143 13.143v91.429q0 8 5.143 13.143t13.143 5.143h109.714q8 0 13.143-5.143t5.143-13.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": [ - "info-circle" - ], - "defaultCode": 61530, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 85, - "order": 602, - "prevSize": 14, - "code": 61530, - "name": "info-circle" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 85 - }, - { - "icon": { - "paths": [ - "M684 585.143h-62.286q-14.857 0-25.714-10.857t-10.857-25.714v-73.143q0-14.857 10.857-25.714t25.714-10.857h62.286q-18.286-61.714-64.286-107.714t-107.714-64.286v62.286q0 14.857-10.857 25.714t-25.714 10.857h-73.143q-14.857 0-25.714-10.857t-10.857-25.714v-62.286q-61.714 18.286-107.714 64.286t-64.286 107.714h62.286q14.857 0 25.714 10.857t10.857 25.714v73.143q0 14.857-10.857 25.714t-25.714 10.857h-62.286q18.286 61.714 64.286 107.714t107.714 64.286v-62.286q0-14.857 10.857-25.714t25.714-10.857h73.143q14.857 0 25.714 10.857t10.857 25.714v62.286q61.714-18.286 107.714-64.286t64.286-107.714zM877.714 475.429v73.143q0 14.857-10.857 25.714t-25.714 10.857h-81.714q-21.143 92-88.286 159.143t-159.143 88.286v81.714q0 14.857-10.857 25.714t-25.714 10.857h-73.143q-14.857 0-25.714-10.857t-10.857-25.714v-81.714q-92-21.143-159.143-88.286t-88.286-159.143h-81.714q-14.857 0-25.714-10.857t-10.857-25.714v-73.143q0-14.857 10.857-25.714t25.714-10.857h81.714q21.143-92 88.286-159.143t159.143-88.286v-81.714q0-14.857 10.857-25.714t25.714-10.857h73.143q14.857 0 25.714 10.857t10.857 25.714v81.714q92 21.143 159.143 88.286t88.286 159.143h81.714q14.857 0 25.714 10.857t10.857 25.714z" - ], - "width": 877.7142857142858, - "attrs": [], - "isMulticolor": false, - "tags": [ - "crosshairs" - ], - "defaultCode": 61531, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 86, - "order": 603, - "prevSize": 14, - "code": 61531, - "name": "crosshairs" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 86 - }, - { - "icon": { - "paths": [ - "M626.857 616.571l-83.429 83.429q-5.714 5.714-13.143 5.714t-13.143-5.714l-78.286-78.286-78.286 78.286q-5.714 5.714-13.143 5.714t-13.143-5.714l-83.429-83.429q-5.714-5.714-5.714-13.143t5.714-13.143l78.286-78.286-78.286-78.286q-5.714-5.714-5.714-13.143t5.714-13.143l83.429-83.429q5.714-5.714 13.143-5.714t13.143 5.714l78.286 78.286 78.286-78.286q5.714-5.714 13.143-5.714t13.143 5.714l83.429 83.429q5.714 5.714 5.714 13.143t-5.714 13.143l-78.286 78.286 78.286 78.286q5.714 5.714 5.714 13.143t-5.714 13.143zM749.714 512q0-84.571-41.714-156t-113.143-113.143-156-41.714-156 41.714-113.143 113.143-41.714 156 41.714 156 113.143 113.143 156 41.714 156-41.714 113.143-113.143 41.714-156zM877.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": [ - "times-circle-o" - ], - "defaultCode": 61532, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 87, - "order": 604, - "prevSize": 14, - "code": 61532, - "name": "times-circle-o" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 87 - }, - { - "icon": { - "paths": [ - "M669.143 464.571l-241.143 241.143q-10.857 10.857-25.714 10.857t-25.714-10.857l-168-168q-10.857-10.857-10.857-25.714t10.857-25.714l58.286-58.286q10.857-10.857 25.714-10.857t25.714 10.857l84 84 157.143-157.143q10.857-10.857 25.714-10.857t25.714 10.857l58.286 58.286q10.857 10.857 10.857 25.714t-10.857 25.714zM749.714 512q0-84.571-41.714-156t-113.143-113.143-156-41.714-156 41.714-113.143 113.143-41.714 156 41.714 156 113.143 113.143 156 41.714 156-41.714 113.143-113.143 41.714-156zM877.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": [ - "check-circle-o" - ], - "defaultCode": 61533, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 88, - "order": 605, - "prevSize": 14, - "code": 61533, - "name": "check-circle-o" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 88 - }, - { - "icon": { - "paths": [ - "M749.714 510.286q0-92-49.714-168.571l-430.857 430.286q78.286 50.857 169.714 50.857 63.429 0 120.857-24.857t99.143-66.571 66.286-99.714 24.571-121.429zM178.857 681.143l431.429-430.857q-77.143-52-171.429-52-84.571 0-156 41.714t-113.143 113.714-41.714 156.571q0 92.571 50.857 170.857zM877.714 510.286q0 89.714-34.857 171.429t-93.429 140.571-140 93.714-170.571 34.857-170.571-34.857-140-93.714-93.429-140.571-34.857-171.429 34.857-171.143 93.429-140.286 140-93.714 170.571-34.857 170.571 34.857 140 93.714 93.429 140.286 34.857 171.143z" - ], - "width": 877.7142857142858, - "attrs": [], - "isMulticolor": false, - "tags": [ - "ban" - ], - "defaultCode": 61534, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 89, - "order": 606, - "prevSize": 14, - "code": 61534, - "name": "ban2" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 89 - }, - { - "icon": { - "paths": [ - "M877.714 512v73.143q0 30.286-18.571 51.714t-48.286 21.429h-402.286l167.429 168q21.714 20.571 21.714 51.429t-21.714 51.429l-42.857 43.429q-21.143 21.143-51.429 21.143-29.714 0-52-21.143l-372-372.571q-21.143-21.143-21.143-51.429 0-29.714 21.143-52l372-371.429q21.714-21.714 52-21.714 29.714 0 51.429 21.714l42.857 42.286q21.714 21.714 21.714 52t-21.714 52l-167.429 167.429h402.286q29.714 0 48.286 21.429t18.571 51.714z" - ], - "width": 877.7142857142858, - "attrs": [], - "isMulticolor": false, - "tags": [ - "arrow-left" - ], - "defaultCode": 61536, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 90, - "order": 607, - "prevSize": 14, - "code": 61536, - "name": "arrow-left" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 90 - }, - { - "icon": { - "paths": [ - "M841.143 548.571q0 30.857-21.143 52l-372 372q-22.286 21.143-52 21.143-29.143 0-51.429-21.143l-42.857-42.857q-21.714-21.714-21.714-52t21.714-52l167.429-167.429h-402.286q-29.714 0-48.286-21.429t-18.571-51.714v-73.143q0-30.286 18.571-51.714t48.286-21.429h402.286l-167.429-168q-21.714-20.571-21.714-51.429t21.714-51.429l42.857-42.857q21.714-21.714 51.429-21.714 30.286 0 52 21.714l372 372q21.143 20 21.143 51.429z" - ], - "width": 877.7142857142858, - "attrs": [], - "isMulticolor": false, - "tags": [ - "arrow-right" - ], - "defaultCode": 61537, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 91, - "order": 608, - "prevSize": 14, - "code": 61537, - "name": "arrow-right" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 91 - }, - { - "icon": { - "paths": [ - "M920.571 554.857q0 29.143-21.143 51.429l-42.857 42.857q-21.714 21.714-52 21.714-30.857 0-51.429-21.714l-168-167.429v402.286q0 29.714-21.429 48.286t-51.714 18.571h-73.143q-30.286 0-51.714-18.571t-21.429-48.286v-402.286l-168 167.429q-20.571 21.714-51.429 21.714t-51.429-21.714l-42.857-42.857q-21.714-21.714-21.714-51.429 0-30.286 21.714-52l372-372q20-21.143 51.429-21.143 30.857 0 52 21.143l372 372q21.143 22.286 21.143 52z" - ], - "width": 951, - "attrs": [], - "isMulticolor": false, - "tags": [ - "arrow-up" - ], - "defaultCode": 61538, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 92, - "order": 609, - "prevSize": 14, - "code": 61538, - "name": "arrow-up" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 92 - }, - { - "icon": { - "paths": [ - "M920.571 475.429q0 30.286-21.143 51.429l-372 372.571q-22.286 21.143-52 21.143-30.286 0-51.429-21.143l-372-372.571q-21.714-20.571-21.714-51.429 0-30.286 21.714-52l42.286-42.857q22.286-21.143 52-21.143 30.286 0 51.429 21.143l168 168v-402.286q0-29.714 21.714-51.429t51.429-21.714h73.143q29.714 0 51.429 21.714t21.714 51.429v402.286l168-168q21.143-21.143 51.429-21.143 29.714 0 52 21.143l42.857 42.857q21.143 22.286 21.143 52z" - ], - "width": 951, - "attrs": [], - "isMulticolor": false, - "tags": [ - "arrow-down" - ], - "defaultCode": 61539, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 93, - "order": 610, - "prevSize": 14, - "code": 61539, - "name": "arrow-down" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 93 - }, - { - "icon": { - "paths": [ - "M1024 365.714q0 14.857-10.857 25.714l-292.571 292.571q-10.857 10.857-25.714 10.857t-25.714-10.857-10.857-25.714v-146.286h-128q-56 0-100.286 3.429t-88 12.286-76 24.286-60.286 39.714-45.714 57.714-27.714 79.143-10 103.429q0 31.429 2.857 70.286 0 3.429 1.429 13.429t1.429 15.143q0 8.571-4.857 14.286t-13.429 5.714q-9.143 0-16-9.714-4-5.143-7.429-12.571t-7.714-17.143-6-13.714q-72.571-162.857-72.571-257.714 0-113.714 30.286-190.286 92.571-230.286 500-230.286h128v-146.286q0-14.857 10.857-25.714t25.714-10.857 25.714 10.857l292.571 292.571q10.857 10.857 10.857 25.714z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "mail-forward", - "share" - ], - "defaultCode": 61540, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 94, - "order": 611, - "name": "mail-forward, share", - "prevSize": 14, - "code": 61540 - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 94 - }, - { - "icon": { - "paths": [ - "M431.429 603.429q0 7.429-5.714 13.143l-189.714 189.714 82.286 82.286q10.857 10.857 10.857 25.714t-10.857 25.714-25.714 10.857h-256q-14.857 0-25.714-10.857t-10.857-25.714v-256q0-14.857 10.857-25.714t25.714-10.857 25.714 10.857l82.286 82.286 189.714-189.714q5.714-5.714 13.143-5.714t13.143 5.714l65.143 65.143q5.714 5.714 5.714 13.143zM877.714 109.714v256q0 14.857-10.857 25.714t-25.714 10.857-25.714-10.857l-82.286-82.286-189.714 189.714q-5.714 5.714-13.143 5.714t-13.143-5.714l-65.143-65.143q-5.714-5.714-5.714-13.143t5.714-13.143l189.714-189.714-82.286-82.286q-10.857-10.857-10.857-25.714t10.857-25.714 25.714-10.857h256q14.857 0 25.714 10.857t10.857 25.714z" - ], - "width": 877.7142857142858, - "attrs": [], - "isMulticolor": false, - "tags": [ - "expand" - ], - "defaultCode": 61541, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 95, - "order": 612, - "prevSize": 14, - "code": 61541, - "name": "expand2" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 95 - }, - { - "icon": { - "paths": [ - "M438.857 548.571v256q0 14.857-10.857 25.714t-25.714 10.857-25.714-10.857l-82.286-82.286-189.714 189.714q-5.714 5.714-13.143 5.714t-13.143-5.714l-65.143-65.143q-5.714-5.714-5.714-13.143t5.714-13.143l189.714-189.714-82.286-82.286q-10.857-10.857-10.857-25.714t10.857-25.714 25.714-10.857h256q14.857 0 25.714 10.857t10.857 25.714zM870.286 164.571q0 7.429-5.714 13.143l-189.714 189.714 82.286 82.286q10.857 10.857 10.857 25.714t-10.857 25.714-25.714 10.857h-256q-14.857 0-25.714-10.857t-10.857-25.714v-256q0-14.857 10.857-25.714t25.714-10.857 25.714 10.857l82.286 82.286 189.714-189.714q5.714-5.714 13.143-5.714t13.143 5.714l65.143 65.143q5.714 5.714 5.714 13.143z" - ], - "width": 877.7142857142858, - "attrs": [], - "isMulticolor": false, - "tags": [ - "compress" - ], - "defaultCode": 61542, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 96, - "order": 613, - "prevSize": 14, - "code": 61542, - "name": "compress" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 96 - }, - { - "icon": { - "paths": [ - "M804.571 420.571v109.714q0 22.857-16 38.857t-38.857 16h-237.714v237.714q0 22.857-16 38.857t-38.857 16h-109.714q-22.857 0-38.857-16t-16-38.857v-237.714h-237.714q-22.857 0-38.857-16t-16-38.857v-109.714q0-22.857 16-38.857t38.857-16h237.714v-237.714q0-22.857 16-38.857t38.857-16h109.714q22.857 0 38.857 16t16 38.857v237.714h237.714q22.857 0 38.857 16t16 38.857z" - ], - "width": 805, - "attrs": [], - "isMulticolor": false, - "tags": [ - "plus" - ], - "defaultCode": 61543, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 97, - "order": 614, - "prevSize": 14, - "code": 61543, - "name": "plus" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 97 - }, - { - "icon": { - "paths": [ - "M804.571 420.571v109.714q0 22.857-16 38.857t-38.857 16h-694.857q-22.857 0-38.857-16t-16-38.857v-109.714q0-22.857 16-38.857t38.857-16h694.857q22.857 0 38.857 16t16 38.857z" - ], - "width": 805, - "attrs": [], - "isMulticolor": false, - "tags": [ - "minus" - ], - "defaultCode": 61544, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 98, - "order": 615, - "prevSize": 14, - "code": 61544, - "name": "minus" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 98 - }, - { - "icon": { - "paths": [ - "M846.857 600q26.286 14.857 34 44.286t-7.143 55.714l-36.571 62.857q-14.857 26.286-44.286 34t-55.714-7.143l-152-87.429v175.429q0 29.714-21.714 51.429t-51.429 21.714h-73.143q-29.714 0-51.429-21.714t-21.714-51.429v-175.429l-152 87.429q-26.286 14.857-55.714 7.143t-44.286-34l-36.571-62.857q-14.857-26.286-7.143-55.714t34-44.286l152-88-152-88q-26.286-14.857-34-44.286t7.143-55.714l36.571-62.857q14.857-26.286 44.286-34t55.714 7.143l152 87.429v-175.429q0-29.714 21.714-51.429t51.429-21.714h73.143q29.714 0 51.429 21.714t21.714 51.429v175.429l152-87.429q26.286-14.857 55.714-7.143t44.286 34l36.571 62.857q14.857 26.286 7.143 55.714t-34 44.286l-152 88z" - ], - "width": 951, - "attrs": [], - "isMulticolor": false, - "tags": [ - "asterisk" - ], - "defaultCode": 61545, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 99, - "order": 616, - "prevSize": 14, - "code": 61545, - "name": "asterisk" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 99 - }, - { - "icon": { - "paths": [ - "M438.857 73.143q119.429 0 220.286 58.857t159.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.286 58.857-220.286 159.714-159.714 220.286-58.857zM512 785.714v-108.571q0-8-5.143-13.429t-12.571-5.429h-109.714q-7.429 0-13.143 5.714t-5.714 13.143v108.571q0 7.429 5.714 13.143t13.143 5.714h109.714q7.429 0 12.571-5.429t5.143-13.429zM510.857 589.143l10.286-354.857q0-6.857-5.714-10.286-5.714-4.571-13.714-4.571h-125.714q-8 0-13.714 4.571-5.714 3.429-5.714 10.286l9.714 354.857q0 5.714 5.714 10t13.714 4.286h105.714q8 0 13.429-4.286t6-10z" - ], - "width": 877.7142857142858, - "attrs": [], - "isMulticolor": false, - "tags": [ - "exclamation-circle" - ], - "defaultCode": 61546, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 100, - "order": 617, - "prevSize": 14, - "code": 61546, - "name": "exclamation-circle" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 100 - }, - { - "icon": { - "paths": [ - "M530.286 774.857v-409.143h-182.857v409.143q0 14.286 10.286 22t26.286 7.714h109.714q16 0 26.286-7.714t10.286-22zM269.714 292.571h111.429l-72-92q-14.857-17.714-39.429-17.714-22.857 0-38.857 16t-16 38.857 16 38.857 38.857 16zM662.857 237.714q0-22.857-16-38.857t-38.857-16q-24.571 0-39.429 17.714l-71.429 92h110.857q22.857 0 38.857-16t16-38.857zM877.714 384v182.857q0 8-5.143 13.143t-13.143 5.143h-54.857v237.714q0 22.857-16 38.857t-38.857 16h-621.714q-22.857 0-38.857-16t-16-38.857v-237.714h-54.857q-8 0-13.143-5.143t-5.143-13.143v-182.857q0-8 5.143-13.143t13.143-5.143h251.429q-53.143 0-90.571-37.429t-37.429-90.571 37.429-90.571 90.571-37.429q61.143 0 96 44l73.143 94.286 73.143-94.286q34.857-44 96-44 53.143 0 90.571 37.429t37.429 90.571-37.429 90.571-90.571 37.429h251.429q8 0 13.143 5.143t5.143 13.143z" - ], - "width": 877.7142857142858, - "attrs": [], - "isMulticolor": false, - "tags": [ - "gift" - ], - "defaultCode": 61547, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 101, - "order": 618, - "prevSize": 14, - "code": 61547, - "name": "gift" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 101 - }, - { - "icon": { - "paths": [ - "M731.429 402.286q0-14.857-10.857-25.714t-25.714-10.857q-98.286 0-181.714 28.286t-148.286 76.571-134.571 125.429q-10.857 12-10.857 25.714 0 14.857 10.857 25.714t25.714 10.857q13.714 0 25.714-10.857 15.429-13.714 42.286-40.571t38.286-37.714q78.286-70.857 153.429-100.571t179.143-29.714q14.857 0 25.714-10.857t10.857-25.714zM1024 289.143q0 54.286-11.429 110.286-26.286 128-105.429 218.857t-204.286 153.143q-122.286 61.714-250.286 61.714-84.571 0-163.429-26.857-8.571-2.857-50.286-24t-54.857-21.143q-9.143 0-22.571 18.286t-25.714 40-30 40-34.286 18.286q-17.143 0-29.143-6.286t-17.714-13.714-15.429-24q-1.143-2.286-3.429-6.286t-3.143-5.714-1.714-5.429-0.857-7.714q0-20 17.714-42t38.857-37.429 38.857-32 17.714-27.429q0-2.286-8-21.714t-9.143-25.143q-5.143-29.143-5.143-59.429 0-65.714 24.857-125.714t68-105.429 97.429-79.429 116.571-54.571q31.429-10.286 82.857-14.571t102.571-5.143 102-3.429 93.429-13.714 64.857-32.286l16.857-16.857t16.857-16 15.429-11.429 20.857-9.143 24.857-2.571q22.286 0 40.286 26.286t27.143 64 13.714 70.857 4.571 54.857z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "leaf" - ], - "defaultCode": 61548, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 102, - "order": 619, - "prevSize": 14, - "code": 61548, - "name": "leaf" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 102 - }, - { - "icon": { - "paths": [ - "M804.571 969.143v36.571q0 7.429-5.429 12.857t-12.857 5.429h-768q-7.429 0-12.857-5.429t-5.429-12.857v-36.571q0-7.429 5.429-12.857t12.857-5.429h768q7.429 0 12.857 5.429t5.429 12.857zM658.286 365.714q0 44.571-14 82.286t-36.571 64.286-50 50.286-54.857 44.286-50 41.143-36.571 46.571-14 55.143q0 54.857 38.286 128l-2.286-0.571 0.571 0.571q-51.429-23.429-91.429-47.429t-79.143-57.143-64.857-70-41.429-86-15.714-105.143q0-44.571 14-82.286t36.571-64.286 50-50.286 54.857-44.286 50-41.143 36.571-46.571 14-55.143q0-53.714-37.714-128l1.714 0.571-0.571-0.571q51.429 23.429 91.429 47.429t79.143 57.143 64.857 70 41.429 86 15.714 105.143z" - ], - "width": 805, - "attrs": [], - "isMulticolor": false, - "tags": [ - "fire" - ], - "defaultCode": 61549, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 103, - "order": 620, - "prevSize": 14, - "code": 61549, - "name": "fire" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 103 - }, - { - "icon": { - "paths": [ - "M950.857 548.571q-86.857-134.857-217.714-201.714 34.857 59.429 34.857 128.571 0 105.714-75.143 180.857t-180.857 75.143-180.857-75.143-75.143-180.857q0-69.143 34.857-128.571-130.857 66.857-217.714 201.714 76 117.143 190.571 186.571t248.286 69.429 248.286-69.429 190.571-186.571zM539.429 329.143q0-11.429-8-19.429t-19.429-8q-71.429 0-122.571 51.143t-51.143 122.571q0 11.429 8 19.429t19.429 8 19.429-8 8-19.429q0-49.143 34.857-84t84-34.857q11.429 0 19.429-8t8-19.429zM1024 548.571q0 19.429-11.429 39.429-80 131.429-215.143 210.571t-285.429 79.143-285.429-79.429-215.143-210.286q-11.429-20-11.429-39.429t11.429-39.429q80-130.857 215.143-210.286t285.429-79.429 285.429 79.429 215.143 210.286q11.429 20 11.429 39.429z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "eye" - ], - "defaultCode": 61550, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 104, - "order": 621, - "prevSize": 14, - "code": 61550, - "name": "eye" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 104 - }, - { - "icon": { - "paths": [ - "M317.143 762.857l44.571-80.571q-49.714-36-77.714-90.857t-28-116q0-69.143 34.857-128.571-130.857 66.857-217.714 201.714 95.429 147.429 244 214.286zM539.429 329.143q0-11.429-8-19.429t-19.429-8q-71.429 0-122.571 51.143t-51.143 122.571q0 11.429 8 19.429t19.429 8 19.429-8 8-19.429q0-49.143 34.857-84t84-34.857q11.429 0 19.429-8t8-19.429zM746.857 220q0 4-0.571 5.143-60 107.429-180 323.429t-180.571 324l-28 50.857q-5.714 9.143-16 9.143-6.857 0-76.571-40-9.143-5.714-9.143-16 0-6.857 25.143-49.714-81.714-37.143-150.571-98.857t-119.143-140q-11.429-17.714-11.429-39.429t11.429-39.429q87.429-134.286 217.143-212t283.429-77.714q50.857 0 102.857 9.714l30.857-55.429q5.714-9.143 16-9.143 2.857 0 10.286 3.429t17.714 8.857 18.857 10.571 18 10.571 11.143 6.571q9.143 5.714 9.143 15.429zM768 475.429q0 79.429-45.143 144.857t-119.429 94l160-286.857q4.571 25.714 4.571 48zM1024 548.571q0 20-11.429 39.429-22.286 36.571-62.286 82.857-85.714 98.286-198.571 152.571t-239.714 54.286l42.286-75.429q121.143-10.286 224.286-78.286t172.286-175.429q-65.714-102.286-161.143-168l36-64q54.286 36.571 104.286 87.429t82.571 105.143q11.429 19.429 11.429 39.429z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "eye-slash" - ], - "defaultCode": 61552, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 105, - "order": 622, - "prevSize": 14, - "code": 61552, - "name": "eye-slash" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 105 - }, - { - "icon": { - "paths": [ - "M585.143 785.714v-108.571q0-8-5.429-13.429t-12.857-5.429h-109.714q-7.429 0-12.857 5.429t-5.429 13.429v108.571q0 8 5.429 13.429t12.857 5.429h109.714q7.429 0 12.857-5.429t5.429-13.429zM584 572l10.286-262.286q0-6.857-5.714-10.857-7.429-6.286-13.714-6.286h-125.714q-6.286 0-13.714 6.286-5.714 4-5.714 12l9.714 261.143q0 5.714 5.714 9.429t13.714 3.714h105.714q8 0 13.429-3.714t6-9.429zM576 38.286l438.857 804.571q20 36-1.143 72-9.714 16.571-26.571 26.286t-36.286 9.714h-877.714q-19.429 0-36.286-9.714t-26.571-26.286q-21.143-36-1.143-72l438.857-804.571q9.714-17.714 26.857-28t37.143-10.286 37.143 10.286 26.857 28z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "exclamation-triangle", - "warning" - ], - "defaultCode": 61553, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 106, - "order": 623, - "name": "exclamation-triangle, warning", - "prevSize": 14, - "code": 61553 - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 106 - }, - { - "icon": { - "paths": [ - "M786.286 91.429q25.143 29.714 6.857 84.571t-61.714 98.286l-92 92 91.429 397.714q2.857 10.857-6.857 18.857l-73.143 54.857q-4 3.429-10.857 3.429-2.286 0-4-0.571-8.571-1.714-12-9.143l-159.429-290.286-148 148 30.286 110.857q2.857 9.714-4.571 17.714l-54.857 54.857q-5.143 5.143-13.143 5.143h-1.143q-8.571-1.143-13.714-7.429l-108-144-144-108q-6.286-4-7.429-13.143-0.571-7.429 5.143-14.286l54.857-55.429q5.143-5.143 13.143-5.143 3.429 0 4.571 0.571l110.857 30.286 148-148-290.286-159.429q-8-4.571-9.714-13.714-1.143-9.143 5.143-15.429l73.143-73.143q8-7.429 17.143-4.571l380 90.857 91.429-91.429q43.429-43.429 98.286-61.714t84.571 6.857z" - ], - "width": 805, - "attrs": [], - "isMulticolor": false, - "tags": [ - "plane" - ], - "defaultCode": 61554, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 107, - "order": 624, - "prevSize": 14, - "code": 61554, - "name": "plane" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 107 - }, - { - "icon": { - "paths": [ - "M73.143 950.857h164.571v-164.571h-164.571v164.571zM274.286 950.857h182.857v-164.571h-182.857v164.571zM73.143 749.714h164.571v-182.857h-164.571v182.857zM274.286 749.714h182.857v-182.857h-182.857v182.857zM73.143 530.286h164.571v-164.571h-164.571v164.571zM493.714 950.857h182.857v-164.571h-182.857v164.571zM274.286 530.286h182.857v-164.571h-182.857v164.571zM713.143 950.857h164.571v-164.571h-164.571v164.571zM493.714 749.714h182.857v-182.857h-182.857v182.857zM292.571 256v-164.571q0-7.429-5.429-12.857t-12.857-5.429h-36.571q-7.429 0-12.857 5.429t-5.429 12.857v164.571q0 7.429 5.429 12.857t12.857 5.429h36.571q7.429 0 12.857-5.429t5.429-12.857zM713.143 749.714h164.571v-182.857h-164.571v182.857zM493.714 530.286h182.857v-164.571h-182.857v164.571zM713.143 530.286h164.571v-164.571h-164.571v164.571zM731.429 256v-164.571q0-7.429-5.429-12.857t-12.857-5.429h-36.571q-7.429 0-12.857 5.429t-5.429 12.857v164.571q0 7.429 5.429 12.857t12.857 5.429h36.571q7.429 0 12.857-5.429t5.429-12.857zM950.857 219.429v731.429q0 29.714-21.714 51.429t-51.429 21.714h-804.571q-29.714 0-51.429-21.714t-21.714-51.429v-731.429q0-29.714 21.714-51.429t51.429-21.714h73.143v-54.857q0-37.714 26.857-64.571t64.571-26.857h36.571q37.714 0 64.571 26.857t26.857 64.571v54.857h219.429v-54.857q0-37.714 26.857-64.571t64.571-26.857h36.571q37.714 0 64.571 26.857t26.857 64.571v54.857h73.143q29.714 0 51.429 21.714t21.714 51.429z" - ], - "width": 951, - "attrs": [], - "isMulticolor": false, - "tags": [ - "calendar" - ], - "defaultCode": 61555, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 108, - "order": 625, - "prevSize": 14, - "code": 61555, - "name": "calendar" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 108 - }, - { - "icon": { - "paths": [ - "M380.571 274.857q-34.286 52.571-78.286 156-12.571-25.714-21.143-41.429t-23.143-36.286-29.143-32.286-36-20-46.571-8.286h-128q-8 0-13.143-5.143t-5.143-13.143v-109.714q0-8 5.143-13.143t13.143-5.143h128q142.857 0 234.286 128.571zM1024 731.429q0 8-5.143 13.143l-182.857 182.857q-5.143 5.143-13.143 5.143-7.429 0-12.857-5.429t-5.429-12.857v-109.714q-18.286 0-48.571 0.286t-46.286 0.571-41.714-0.571-40.571-2.857-36.571-6-36-10.571-33.143-16.286-33.714-22.857-31.429-30.571-32-39.714q33.714-53.143 77.714-156 12.571 25.714 21.143 41.429t23.143 36.286 29.143 32.286 36 20 46.571 8.286h146.286v-109.714q0-8 5.143-13.143t13.143-5.143q6.857 0 13.714 5.714l182.286 182.286q5.143 5.143 5.143 13.143zM1024 219.429q0 8-5.143 13.143l-182.857 182.857q-5.143 5.143-13.143 5.143-7.429 0-12.857-5.429t-5.429-12.857v-109.714h-146.286q-27.429 0-49.714 8.571t-39.429 25.714-29.143 35.143-25.714 44.286q-18.286 35.429-44.571 97.714-16.571 37.714-28.286 63.429t-30.857 60-36.571 57.143-42.286 47.429-51.429 39.143-60.857 24-73.143 9.429h-128q-8 0-13.143-5.143t-5.143-13.143v-109.714q0-8 5.143-13.143t13.143-5.143h128q27.429 0 49.714-8.571t39.429-25.714 29.143-35.143 25.714-44.286q18.286-35.429 44.571-97.714 16.571-37.714 28.286-63.429t30.857-60 36.571-57.143 42.286-47.429 51.429-39.143 60.857-24 73.143-9.429h146.286v-109.714q0-8 5.143-13.143t13.143-5.143q6.857 0 13.714 5.714l182.286 182.286q5.143 5.143 5.143 13.143z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "random" - ], - "defaultCode": 61556, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 109, - "order": 626, - "prevSize": 14, - "code": 61556, - "name": "random" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 109 - }, - { - "icon": { - "paths": [ - "M1024 512q0 99.429-68.571 183.714t-186.286 133.143-257.143 48.857q-40 0-82.857-4.571-113.143 100-262.857 138.286-28 8-65.143 12.571-9.714 1.143-17.429-5.143t-10-16.571v-0.571q-1.714-2.286-0.286-6.857t1.143-5.714 2.571-5.429l3.429-5.143t4-4.857 4.571-5.143q4-4.571 17.714-19.714t19.714-21.714 17.714-22.571 18.571-29.143 15.429-33.714 14.857-43.429q-89.714-50.857-141.429-125.714t-51.714-160.571q0-74.286 40.571-142t109.143-116.857 163.429-78 198.857-28.857q139.429 0 257.143 48.857t186.286 133.143 68.571 183.714z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "comment" - ], - "defaultCode": 61557, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 110, - "order": 627, - "prevSize": 14, - "code": 61557, - "name": "comment" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 110 - }, - { - "icon": { - "paths": [ - "M877.714 475.429v73.143q0 114.857-56.286 206.857t-156.571 143.714-226 51.714-226-51.714-156.571-143.714-56.286-206.857v-73.143q0-14.857 10.857-25.714t25.714-10.857h219.429q14.857 0 25.714 10.857t10.857 25.714v73.143q0 29.714 13.429 51.429t30.571 32.571 40.571 17.143 36.571 7.429 25.143 1.143 25.143-1.143 36.571-7.429 40.571-17.143 30.571-32.571 13.429-51.429v-73.143q0-14.857 10.857-25.714t25.714-10.857h219.429q14.857 0 25.714 10.857t10.857 25.714zM292.571 109.714v219.429q0 14.857-10.857 25.714t-25.714 10.857h-219.429q-14.857 0-25.714-10.857t-10.857-25.714v-219.429q0-14.857 10.857-25.714t25.714-10.857h219.429q14.857 0 25.714 10.857t10.857 25.714zM877.714 109.714v219.429q0 14.857-10.857 25.714t-25.714 10.857h-219.429q-14.857 0-25.714-10.857t-10.857-25.714v-219.429q0-14.857 10.857-25.714t25.714-10.857h219.429q14.857 0 25.714 10.857t10.857 25.714z" - ], - "width": 877.7142857142858, - "attrs": [], - "isMulticolor": false, - "tags": [ - "magnet" - ], - "defaultCode": 61558, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 111, - "order": 628, - "prevSize": 14, - "code": 61558, - "name": "magnet" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 111 - }, - { - "icon": { - "paths": [ - "M961.714 760.571l-94.857 94.286q-10.857 10.857-25.714 10.857t-25.714-10.857l-303.429-303.429-303.429 303.429q-10.857 10.857-25.714 10.857t-25.714-10.857l-94.857-94.286q-10.857-10.857-10.857-26t10.857-26l424-423.429q10.857-10.857 25.714-10.857t25.714 10.857l424 423.429q10.857 10.857 10.857 26t-10.857 26z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "chevron-up" - ], - "defaultCode": 61559, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 112, - "order": 629, - "prevSize": 14, - "code": 61559, - "name": "chevron-up" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 112 - }, - { - "icon": { - "paths": [ - "M961.714 461.714l-424 423.429q-10.857 10.857-25.714 10.857t-25.714-10.857l-424-423.429q-10.857-10.857-10.857-26t10.857-26l94.857-94.286q10.857-10.857 25.714-10.857t25.714 10.857l303.429 303.429 303.429-303.429q10.857-10.857 25.714-10.857t25.714 10.857l94.857 94.286q10.857 10.857 10.857 26t-10.857 26z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "chevron-down" - ], - "defaultCode": 61560, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 113, - "order": 630, - "prevSize": 14, - "code": 61560, - "name": "chevron-down" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 113 - }, - { - "icon": { - "paths": [ - "M731.429 859.429q0 7.429-5.429 12.857t-12.857 5.429h-548.571q-4.571 0-7.714-1.143t-5.143-4-3.143-4.571-1.714-6.571-0.571-6.571v-342.857h-109.714q-14.857 0-25.714-10.857t-10.857-25.714q0-13.714 8.571-23.429l182.857-219.429q10.857-12.571 28-12.571t28 12.571l182.857 219.429q8.571 9.714 8.571 23.429 0 14.857-10.857 25.714t-25.714 10.857h-109.714v219.429h329.143q9.143 0 14.286 6.286l91.429 109.714q4 6.286 4 12zM1097.143 621.714q0 13.714-8.571 23.429l-182.857 219.429q-11.429 13.143-28 13.143t-28-13.143l-182.857-219.429q-8.571-9.714-8.571-23.429 0-14.857 10.857-25.714t25.714-10.857h109.714v-219.429h-329.143q-9.143 0-14.286-6.857l-91.429-109.714q-4-5.143-4-11.429 0-7.429 5.429-12.857t12.857-5.429h548.571q4.571 0 7.714 1.143t5.143 4 3.143 4.571 1.714 6.571 0.571 6.571v342.857h109.714q14.857 0 25.714 10.857t10.857 25.714z" - ], - "width": 1097, - "attrs": [], - "isMulticolor": false, - "tags": [ - "retweet" - ], - "defaultCode": 61561, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 114, - "order": 631, - "prevSize": 14, - "code": 61561, - "name": "retweet" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 114 - }, - { - "icon": { - "paths": [ - "M365.714 877.714q0 29.714-21.714 51.429t-51.429 21.714-51.429-21.714-21.714-51.429 21.714-51.429 51.429-21.714 51.429 21.714 21.714 51.429zM877.714 877.714q0 29.714-21.714 51.429t-51.429 21.714-51.429-21.714-21.714-51.429 21.714-51.429 51.429-21.714 51.429 21.714 21.714 51.429zM950.857 256v292.571q0 13.714-9.429 24.286t-23.143 12.286l-596.571 69.714q7.429 34.286 7.429 40 0 9.143-13.714 36.571h525.714q14.857 0 25.714 10.857t10.857 25.714-10.857 25.714-25.714 10.857h-585.143q-14.857 0-25.714-10.857t-10.857-25.714q0-6.286 4.571-18t9.143-20.571 12.286-22.857 8.857-16.857l-101.143-470.286h-116.571q-14.857 0-25.714-10.857t-10.857-25.714 10.857-25.714 25.714-10.857h146.286q9.143 0 16.286 3.714t11.143 8.857 7.429 14 4.571 14.857 3.143 16.857 2.571 14.857h686.286q14.857 0 25.714 10.857t10.857 25.714z" - ], - "width": 951, - "attrs": [], - "isMulticolor": false, - "tags": [ - "shopping-cart" - ], - "defaultCode": 61562, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 115, - "order": 632, - "prevSize": 14, - "code": 61562, - "name": "shopping-cart" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 115 - }, - { - "icon": { - "paths": [ - "M950.857 347.429v402.286q0 52.571-37.714 90.286t-90.286 37.714h-694.857q-52.571 0-90.286-37.714t-37.714-90.286v-548.571q0-52.571 37.714-90.286t90.286-37.714h182.857q52.571 0 90.286 37.714t37.714 90.286v18.286h384q52.571 0 90.286 37.714t37.714 90.286z" - ], - "width": 951, - "attrs": [], - "isMulticolor": false, - "tags": [ - "folder" - ], - "defaultCode": 61563, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 116, - "order": 633, - "prevSize": 14, - "code": 61563, - "name": "folder" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 116 - }, - { - "icon": { - "paths": [ - "M1073.714 544q0 17.714-17.714 37.714l-192 226.286q-24.571 29.143-68.857 49.429t-82 20.286h-621.714q-19.429 0-34.571-7.429t-15.143-24.571q0-17.714 17.714-37.714l192-226.286q24.571-29.143 68.857-49.429t82-20.286h621.714q19.429 0 34.571 7.429t15.143 24.571zM877.714 347.429v91.429h-475.429q-53.714 0-112.571 27.143t-93.714 68.286l-195.429 229.714q0-2.286-0.286-7.143t-0.286-7.143v-548.571q0-52.571 37.714-90.286t90.286-37.714h182.857q52.571 0 90.286 37.714t37.714 90.286v18.286h310.857q52.571 0 90.286 37.714t37.714 90.286z" - ], - "width": 1097, - "attrs": [], - "isMulticolor": false, - "tags": [ - "folder-open" - ], - "defaultCode": 61564, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 117, - "order": 634, - "prevSize": 14, - "code": 61564, - "name": "folder-open" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 117 - }, - { - "icon": { - "paths": [ - "M402.286 182.857q0 14.857-10.857 25.714t-25.714 10.857h-73.143v585.143h73.143q14.857 0 25.714 10.857t10.857 25.714-10.857 25.714l-146.286 146.286q-10.857 10.857-25.714 10.857t-25.714-10.857l-146.286-146.286q-10.857-10.857-10.857-25.714t10.857-25.714 25.714-10.857h73.143v-585.143h-73.143q-14.857 0-25.714-10.857t-10.857-25.714 10.857-25.714l146.286-146.286q10.857-10.857 25.714-10.857t25.714 10.857l146.286 146.286q10.857 10.857 10.857 25.714z" - ], - "width": 439, - "attrs": [], - "isMulticolor": false, - "tags": [ - "arrows-v" - ], - "defaultCode": 61565, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 118, - "order": 635, - "prevSize": 14, - "code": 61565, - "name": "arrows-v" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 118 - }, - { - "icon": { - "paths": [ - "M1024 512q0 14.857-10.857 25.714l-146.286 146.286q-10.857 10.857-25.714 10.857t-25.714-10.857-10.857-25.714v-73.143h-585.143v73.143q0 14.857-10.857 25.714t-25.714 10.857-25.714-10.857l-146.286-146.286q-10.857-10.857-10.857-25.714t10.857-25.714l146.286-146.286q10.857-10.857 25.714-10.857t25.714 10.857 10.857 25.714v73.143h585.143v-73.143q0-14.857 10.857-25.714t25.714-10.857 25.714 10.857l146.286 146.286q10.857 10.857 10.857 25.714z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "arrows-h" - ], - "defaultCode": 61566, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 119, - "order": 636, - "prevSize": 14, - "code": 61566, - "name": "arrows-h" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 119 - }, - { - "icon": { - "paths": [ - "M365.714 512v292.571h-146.286v-292.571h146.286zM585.143 219.429v585.143h-146.286v-585.143h146.286zM1170.286 877.714v73.143h-1170.286v-877.714h73.143v804.571h1097.143zM804.571 365.714v438.857h-146.286v-438.857h146.286zM1024 146.286v658.286h-146.286v-658.286h146.286z" - ], - "width": 1170, - "attrs": [], - "isMulticolor": false, - "tags": [ - "bar-chart", - "bar-chart-o" - ], - "defaultCode": 61568, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 120, - "order": 637, - "name": "bar-chart, bar-chart-o", - "prevSize": 14, - "code": 61568 - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 120 - }, - { - "icon": { - "paths": [ - "M731.429 348.571q-32 14.286-69.143 19.429 38.857-22.857 53.143-66.857-37.143 21.714-76.571 29.143-34.857-37.714-87.429-37.714-49.714 0-84.857 35.143t-35.143 84.857q0 16.571 2.857 27.429-73.714-4-138.286-37.143t-109.714-88.571q-16.571 28.571-16.571 60.571 0 65.143 52 100-26.857-0.571-57.143-14.857v1.143q0 42.857 28.571 76.286t70.286 41.429q-16.571 4.571-29.143 4.571-7.429 0-22.286-2.286 12 36 42.571 59.429t69.429 24q-66.286 51.429-149.143 51.429-14.857 0-28.571-1.714 84.571 53.714 184 53.714 64 0 120-20.286t96-54.286 68.857-78.286 42.857-92.571 14-96.286q0-10.286-0.571-15.429 36-25.714 60-62.286zM877.714 237.714v548.571q0 68-48.286 116.286t-116.286 48.286h-548.571q-68 0-116.286-48.286t-48.286-116.286v-548.571q0-68 48.286-116.286t116.286-48.286h548.571q68 0 116.286 48.286t48.286 116.286z" - ], - "width": 877.7142857142858, - "attrs": [], - "isMulticolor": false, - "tags": [ - "twitter-square" - ], - "defaultCode": 61569, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 121, - "order": 638, - "prevSize": 14, - "code": 61569, - "name": "twitter-square" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 121 - }, - { - "icon": { - "paths": [ - "M713.143 73.143q68 0 116.286 48.286t48.286 116.286v548.571q0 68-48.286 116.286t-116.286 48.286h-107.429v-340h113.714l17.143-132.571h-130.857v-84.571q0-32 13.429-48t52.286-16l69.714-0.571v-118.286q-36-5.143-101.714-5.143-77.714 0-124.286 45.714t-46.571 129.143v97.714h-114.286v132.571h114.286v340h-304q-68 0-116.286-48.286t-48.286-116.286v-548.571q0-68 48.286-116.286t116.286-48.286h548.571z" - ], - "width": 877.7142857142858, - "attrs": [], - "isMulticolor": false, - "tags": [ - "facebook-square" - ], - "defaultCode": 61570, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 122, - "order": 639, - "prevSize": 14, - "code": 61570, - "name": "facebook-square" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 122 - }, - { - "icon": { - "paths": [ - "M530.286 475.429q0-8-5.143-13.143t-13.143-5.143q-37.714 0-64.571 26.857t-26.857 64.571q0 8 5.143 13.143t13.143 5.143 13.143-5.143 5.143-13.143q0-22.857 16-38.857t38.857-16q8 0 13.143-5.143t5.143-13.143zM658.286 549.714q0 60.571-42.857 103.429t-103.429 42.857-103.429-42.857-42.857-103.429 42.857-103.429 103.429-42.857 103.429 42.857 42.857 103.429zM73.143 877.714h877.714v-73.143h-877.714v73.143zM731.429 549.714q0-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.143zM146.286 182.857h219.429v-73.143h-219.429v73.143zM73.143 292.571h877.714v-146.286h-473.143l-36.571 73.143h-368v73.143zM1024 146.286v731.429q0 30.286-21.429 51.714t-51.714 21.429h-877.714q-30.286 0-51.714-21.429t-21.429-51.714v-731.429q0-30.286 21.429-51.714t51.714-21.429h877.714q30.286 0 51.714 21.429t21.429 51.714z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "camera-retro" - ], - "defaultCode": 61571, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 123, - "order": 640, - "prevSize": 14, - "code": 61571, - "name": "camera-retro" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 123 - }, - { - "icon": { - "paths": [ - "M475.429 292.571q0-45.714-32-77.714t-77.714-32-77.714 32-32 77.714q0 24 10.857 47.429-23.429-10.857-47.429-10.857-45.714 0-77.714 32t-32 77.714 32 77.714 77.714 32 77.714-32 32-77.714q0-24-10.857-47.429 23.429 10.857 47.429 10.857 45.714 0 77.714-32t32-77.714zM961.714 694.857q0 9.714-28 37.714t-37.714 28q-5.143 0-16.286-9.143t-20.857-18.857-22-22.857-14-14.857l-54.857 54.857 125.714 125.714q16 16 16 38.857 0 24-22.286 46.286t-46.286 22.286q-22.857 0-38.857-16l-383.429-383.429q-100.571 74.857-208.571 74.857-93.143 0-151.714-58.571t-58.571-151.714q0-91.429 54.286-178.857t141.714-141.714 178.857-54.286q93.143 0 151.714 58.571t58.571 151.714q0 108-74.857 208.571l202.857 202.857 54.857-54.857q-1.714-1.714-14.857-14t-22.857-22-18.857-20.857-9.143-16.286q0-9.714 28-37.714t37.714-28q7.429 0 13.143 5.714 3.429 3.429 26.286 25.429t46.857 45.429 49.429 49.143 41.714 44.571 16.286 23.429z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "key" - ], - "defaultCode": 61572, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 124, - "order": 641, - "prevSize": 14, - "code": 61572, - "name": "key" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 124 - }, - { - "icon": { - "paths": [ - "M512 512q0-60.571-42.857-103.429t-103.429-42.857-103.429 42.857-42.857 103.429 42.857 103.429 103.429 42.857 103.429-42.857 42.857-103.429zM950.857 804.571q0-29.714-21.714-51.429t-51.429-21.714-51.429 21.714-21.714 51.429q0 30.286 21.429 51.714t51.714 21.429 51.714-21.429 21.429-51.714zM950.857 219.429q0-29.714-21.714-51.429t-51.429-21.714-51.429 21.714-21.714 51.429q0 30.286 21.429 51.714t51.714 21.429 51.714-21.429 21.429-51.714zM731.429 460v105.714q0 5.714-4 11.143t-9.143 6l-88.571 13.714q-6.286 20-18.286 43.429 19.429 27.429 51.429 65.714 4 5.714 4 11.429 0 6.857-4 10.857-13.143 17.143-47.143 51.143t-44.857 34q-6.286 0-12-4l-65.714-51.429q-21.143 10.857-44 17.714-6.286 61.714-13.143 88.571-4 13.714-17.143 13.714h-106.286q-6.286 0-11.429-4.286t-5.714-10l-13.143-87.429q-19.429-5.714-42.857-17.714l-67.429 50.857q-4 4-11.429 4-6.286 0-12-4.571-82.286-76-82.286-91.429 0-5.143 4-10.857 5.714-8 23.429-30.286t26.857-34.857q-13.143-25.143-20-46.857l-86.857-13.714q-5.714-0.571-9.714-5.429t-4-11.143v-105.714q0-5.714 4-11.143t9.143-6l88.571-13.714q6.286-20 18.286-43.429-19.429-27.429-51.429-65.714-4-6.286-4-11.429 0-6.857 4-11.429 12.571-17.143 46.857-50.857t45.143-33.714q6.286 0 12 4l65.714 51.429q19.429-10.286 44-18.286 6.286-61.714 13.143-88 4-13.714 17.143-13.714h106.286q6.286 0 11.429 4.286t5.714 10l13.143 87.429q19.429 5.714 42.857 17.714l67.429-50.857q4.571-4 11.429-4 6.286 0 12 4.571 82.286 76 82.286 91.429 0 5.143-4 10.857-6.857 9.143-24 30.857t-25.714 34.286q13.143 27.429 19.429 46.857l86.857 13.143q5.714 1.143 9.714 6t4 11.143zM1097.143 764.571v80q0 9.143-85.143 17.714-6.857 15.429-17.143 29.714 29.143 64.571 29.143 78.857 0 2.286-2.286 4-69.714 40.571-70.857 40.571-4.571 0-26.286-26.857t-29.714-38.857q-11.429 1.143-17.143 1.143t-17.143-1.143q-8 12-29.714 38.857t-26.286 26.857q-1.143 0-70.857-40.571-2.286-1.714-2.286-4 0-14.286 29.143-78.857-10.286-14.286-17.143-29.714-85.143-8.571-85.143-17.714v-80q0-9.143 85.143-17.714 7.429-16.571 17.143-29.714-29.143-64.571-29.143-78.857 0-2.286 2.286-4 2.286-1.143 20-11.429t33.714-19.429 17.143-9.143q4.571 0 26.286 26.571t29.714 38.571q11.429-1.143 17.143-1.143t17.143 1.143q29.143-40.571 52.571-64l3.429-1.143q2.286 0 70.857 40 2.286 1.714 2.286 4 0 14.286-29.143 78.857 9.714 13.143 17.143 29.714 85.143 8.571 85.143 17.714zM1097.143 179.429v80q0 9.143-85.143 17.714-6.857 15.429-17.143 29.714 29.143 64.571 29.143 78.857 0 2.286-2.286 4-69.714 40.571-70.857 40.571-4.571 0-26.286-26.857t-29.714-38.857q-11.429 1.143-17.143 1.143t-17.143-1.143q-8 12-29.714 38.857t-26.286 26.857q-1.143 0-70.857-40.571-2.286-1.714-2.286-4 0-14.286 29.143-78.857-10.286-14.286-17.143-29.714-85.143-8.571-85.143-17.714v-80q0-9.143 85.143-17.714 7.429-16.571 17.143-29.714-29.143-64.571-29.143-78.857 0-2.286 2.286-4 2.286-1.143 20-11.429t33.714-19.429 17.143-9.143q4.571 0 26.286 26.571t29.714 38.571q11.429-1.143 17.143-1.143t17.143 1.143q29.143-40.571 52.571-64l3.429-1.143q2.286 0 70.857 40 2.286 1.714 2.286 4 0 14.286-29.143 78.857 9.714 13.143 17.143 29.714 85.143 8.571 85.143 17.714z" - ], - "width": 1097, - "attrs": [], - "isMulticolor": false, - "tags": [ - "cogs", - "gears" - ], - "defaultCode": 61573, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 125, - "order": 642, - "name": "cogs, gears", - "prevSize": 14, - "code": 61573 - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 125 - }, - { - "icon": { - "paths": [ - "M804.571 438.857q0 79.429-53.714 146.857t-146.571 106.571-202 39.143q-49.143 0-100.571-9.143-70.857 50.286-158.857 73.143-20.571 5.143-49.143 9.143h-1.714q-6.286 0-11.714-4.571t-6.571-12q-0.571-1.714-0.571-3.714t0.286-3.714 1.143-3.429l1.429-2.857t2-3.143 2.286-2.857 2.571-2.857 2.286-2.571q2.857-3.429 13.143-14.286t14.857-16.857 12.857-16.571 14.286-22 11.714-25.143q-70.857-41.143-111.429-101.143t-40.571-128q0-79.429 53.714-146.857t146.571-106.571 202-39.143 202 39.143 146.571 106.571 53.714 146.857zM1024 585.143q0 68.571-40.571 128.286t-111.429 100.857q5.714 13.714 11.714 25.143t14.286 22 12.857 16.571 14.857 16.857 13.143 14.286q0.571 0.571 2.286 2.571t2.571 2.857 2.286 2.857 2 3.143l1.429 2.857t1.143 3.429 0.286 3.714-0.571 3.714q-1.714 8-7.429 12.571t-12.571 4q-28.571-4-49.143-9.143-88-22.857-158.857-73.143-51.429 9.143-100.571 9.143-154.857 0-269.714-75.429 33.143 2.286 50.286 2.286 92 0 176.571-25.714t150.857-73.714q71.429-52.571 109.714-121.143t38.286-145.143q0-44-13.143-86.857 73.714 40.571 116.571 101.714t42.857 131.429z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "comments" - ], - "defaultCode": 61574, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 126, - "order": 643, - "prevSize": 14, - "code": 61574, - "name": "comments" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 126 - }, - { - "icon": { - "paths": [ - "M146.286 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 438.857q0-29.143-22.286-51.143t-50.857-22h-201.143q0-33.143 27.429-91.143t27.429-91.714q0-56-18.286-82.857t-73.143-26.857q-14.857 14.857-21.714 48.571t-17.429 71.714-34 62.571q-12.571 13.143-44 52-2.286 2.857-13.143 17.143t-18 23.429-19.714 24.286-22.857 25.143-22 20.286-22.857 15.429-20.286 5.143h-18.286v365.714h18.286q7.429 0 18 1.714t18.857 3.714 21.714 6.286 20 6.571 20.286 7.143 16.571 6q120.571 41.714 195.429 41.714h69.143q109.714 0 109.714-95.429 0-14.857-2.857-32 17.143-9.143 27.143-30t10-42-10.286-39.429q30.286-28.571 30.286-68 0-14.286-5.714-31.714t-14.286-27.143q18.286-0.571 30.571-26.857t12.286-46.286zM877.714 438.286q0 50.857-28 93.143 5.143 18.857 5.143 39.429 0 44-21.714 82.286 1.714 12 1.714 24.571 0 57.714-34.286 101.714 0.571 79.429-48.571 125.429t-129.714 46h-73.714q-54.857 0-108.286-12.857t-123.714-37.429q-66.286-22.857-78.857-22.857h-164.571q-30.286 0-51.714-21.429t-21.429-51.714v-365.714q0-30.286 21.429-51.714t51.714-21.429h156.571q20.571-13.714 78.286-88.571 33.143-42.857 61.143-73.143 13.714-14.286 20.286-48.857t17.429-72.286 35.429-61.714q22.286-21.143 51.429-21.143 48 0 86.286 18.571t58.286 58 20 106.286q0 53.143-27.429 109.714h100.571q59.429 0 102.857 43.429t43.429 102.286z" - ], - "width": 877.7142857142858, - "attrs": [], - "isMulticolor": false, - "tags": [ - "thumbs-o-up" - ], - "defaultCode": 61575, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 127, - "order": 644, - "prevSize": 14, - "code": 61575, - "name": "thumbs-o-up" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 127 - }, - { - "icon": { - "paths": [ - "M146.286 256q0-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 585.143q0-20-12.286-46.286t-30.571-26.857q8.571-9.714 14.286-27.143t5.714-31.714q0-39.429-30.286-68 10.286-18.286 10.286-39.429t-10-42-27.143-30q2.857-17.143 2.857-32 0-48.571-28-72t-77.714-23.429h-73.143q-74.857 0-195.429 41.714-2.857 1.143-16.571 6t-20.286 7.143-20 6.571-21.714 6.286-18.857 3.714-18 1.714h-18.286v365.714h18.286q9.143 0 20.286 5.143t22.857 15.429 22 20.286 22.857 25.143 19.714 24.286 18 23.429 13.143 17.143q31.429 38.857 44 52 23.429 24.571 34 62.571t17.429 71.714 21.714 48.571q54.857 0 73.143-26.857t18.286-82.857q0-33.714-27.429-91.714t-27.429-91.143h201.143q28.571 0 50.857-22t22.286-51.143zM877.714 585.714q0 58.857-43.429 102.286t-102.857 43.429h-100.571q27.429 56.571 27.429 109.714 0 67.429-20 106.286-20 39.429-58.286 58t-86.286 18.571q-29.143 0-51.429-21.143-19.429-18.857-30.857-46.857t-14.571-51.714-10-48.286-17.714-36.571q-27.429-28.571-61.143-72.571-57.714-74.857-78.286-88.571h-156.571q-30.286 0-51.714-21.429t-21.429-51.714v-365.714q0-30.286 21.429-51.714t51.714-21.429h164.571q12.571 0 78.857-22.857 73.143-25.143 127.429-37.714t114.286-12.571h64q80 0 129.429 45.143t48.857 123.429v2.857q34.286 44 34.286 101.714 0 12.571-1.714 24.571 21.714 38.286 21.714 82.286 0 20.571-5.143 39.429 28 42.286 28 93.143z" - ], - "width": 877.7142857142858, - "attrs": [], - "isMulticolor": false, - "tags": [ - "thumbs-o-down" - ], - "defaultCode": 61576, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 128, - "order": 645, - "prevSize": 14, - "code": 61576, - "name": "thumbs-o-down" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 128 - }, - { - "icon": { - "paths": [ - "M475.429 18.286v765.143l-256.571 134.857q-12.571 6.857-22.857 6.857-12 0-18-8.286t-6-20.286q0-3.429 1.143-11.429l49.143-285.714-208-202.286q-14.286-15.429-14.286-27.429 0-21.143 32-26.286l286.857-41.714 128.571-260q10.857-23.429 28-23.429z" - ], - "width": 512, - "attrs": [], - "isMulticolor": false, - "tags": [ - "star-half" - ], - "defaultCode": 61577, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 129, - "order": 646, - "prevSize": 14, - "code": 61577, - "name": "star-half" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 129 - }, - { - "icon": { - "paths": [ - "M950.857 340.571q0-46.286-12.286-81.714t-31.429-56.286-46.571-34-53.714-17.714-56-4.571-64 14.571-63.143 36.571-49.429 41.143-34.286 35.143q-10.286 12.571-28 12.571t-28-12.571q-13.714-16-34.286-35.143t-49.429-41.143-63.143-36.571-64-14.571-56 4.571-53.714 17.714-46.571 34-31.429 56.286-12.286 81.714q0 96 106.857 202.857l332 320 331.429-319.429q107.429-107.429 107.429-203.429zM1024 340.571q0 126.286-130.857 257.143l-356 342.857q-10.286 10.286-25.143 10.286t-25.143-10.286l-356.571-344q-5.714-4.571-15.714-14.857t-31.714-37.429-38.857-55.714-30.571-69.143-13.429-78.857q0-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": [ - "heart-o" - ], - "defaultCode": 61578, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 130, - "order": 647, - "prevSize": 14, - "code": 61578, - "name": "heart-o" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 130 - }, - { - "icon": { - "paths": [ - "M365.714 822.857q0 2.286 0.571 11.429t0.286 15.143-1.714 13.429-5.714 11.143-11.714 3.714h-182.857q-68 0-116.286-48.286t-48.286-116.286v-402.286q0-68 48.286-116.286t116.286-48.286h182.857q7.429 0 12.857 5.429t5.429 12.857q0 2.286 0.571 11.429t0.286 15.143-1.714 13.429-5.714 11.143-11.714 3.714h-182.857q-37.714 0-64.571 26.857t-26.857 64.571v402.286q0 37.714 26.857 64.571t64.571 26.857h178.286t6.571 0.571 6.571 1.714 4.571 3.143 4 5.143 1.143 7.714zM896 512q0 14.857-10.857 25.714l-310.857 310.857q-10.857 10.857-25.714 10.857t-25.714-10.857-10.857-25.714v-164.571h-256q-14.857 0-25.714-10.857t-10.857-25.714v-219.429q0-14.857 10.857-25.714t25.714-10.857h256v-164.571q0-14.857 10.857-25.714t25.714-10.857 25.714 10.857l310.857 310.857q10.857 10.857 10.857 25.714z" - ], - "width": 951, - "attrs": [], - "isMulticolor": false, - "tags": [ - "sign-out" - ], - "defaultCode": 61579, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 131, - "order": 648, - "prevSize": 14, - "code": 61579, - "name": "sign-out" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 131 - }, - { - "icon": { - "paths": [ - "M135.429 808h132v-396.571h-132v396.571zM276 289.143q-0.571-29.714-20.571-49.143t-53.143-19.429-54 19.429-20.857 49.143q0 29.143 20.286 48.857t52.857 19.714h0.571q33.714 0 54.286-19.714t20.571-48.857zM610.286 808h132v-227.429q0-88-41.714-133.143t-110.286-45.143q-77.714 0-119.429 66.857h1.143v-57.714h-132q1.714 37.714 0 396.571h132v-221.714q0-21.714 4-32 8.571-20 25.714-34t42.286-14q66.286 0 66.286 89.714v212zM877.714 237.714v548.571q0 68-48.286 116.286t-116.286 48.286h-548.571q-68 0-116.286-48.286t-48.286-116.286v-548.571q0-68 48.286-116.286t116.286-48.286h548.571q68 0 116.286 48.286t48.286 116.286z" - ], - "width": 877.7142857142858, - "attrs": [], - "isMulticolor": false, - "tags": [ - "linkedin-square" - ], - "defaultCode": 61580, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 132, - "order": 649, - "prevSize": 14, - "code": 61580, - "name": "linkedin-square" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 132 - }, - { - "icon": { - "paths": [ - "M274.286 493.714v-256q0-8-5.143-13.143t-13.143-5.143-13.143 5.143-5.143 13.143v256q0 8 5.143 13.143t13.143 5.143 13.143-5.143 5.143-13.143zM658.286 694.857q0 14.857-10.857 25.714t-25.714 10.857h-245.143l-29.143 276q-1.143 6.857-6 11.714t-11.714 4.857h-0.571q-15.429 0-18.286-15.429l-43.429-277.143h-230.857q-14.857 0-25.714-10.857t-10.857-25.714q0-70.286 44.857-126.571t101.429-56.286v-292.571q-29.714 0-51.429-21.714t-21.714-51.429 21.714-51.429 51.429-21.714h365.714q29.714 0 51.429 21.714t21.714 51.429-21.714 51.429-51.429 21.714v292.571q56.571 0 101.429 56.286t44.857 126.571z" - ], - "width": 658, - "attrs": [], - "isMulticolor": false, - "tags": [ - "thumb-tack" - ], - "defaultCode": 61581, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 133, - "order": 650, - "prevSize": 14, - "code": 61581, - "name": "thumb-tack" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 133 - }, - { - "icon": { - "paths": [ - "M804.571 530.286v182.857q0 68-48.286 116.286t-116.286 48.286h-475.429q-68 0-116.286-48.286t-48.286-116.286v-475.429q0-68 48.286-116.286t116.286-48.286h402.286q8 0 13.143 5.143t5.143 13.143v36.571q0 8-5.143 13.143t-13.143 5.143h-402.286q-37.714 0-64.571 26.857t-26.857 64.571v475.429q0 37.714 26.857 64.571t64.571 26.857h475.429q37.714 0 64.571-26.857t26.857-64.571v-182.857q0-8 5.143-13.143t13.143-5.143h36.571q8 0 13.143 5.143t5.143 13.143zM1024 36.571v292.571q0 14.857-10.857 25.714t-25.714 10.857-25.714-10.857l-100.571-100.571-372.571 372.571q-5.714 5.714-13.143 5.714t-13.143-5.714l-65.143-65.143q-5.714-5.714-5.714-13.143t5.714-13.143l372.571-372.571-100.571-100.571q-10.857-10.857-10.857-25.714t10.857-25.714 25.714-10.857h292.571q14.857 0 25.714 10.857t10.857 25.714z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "external-link" - ], - "defaultCode": 61582, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 134, - "order": 651, - "prevSize": 14, - "code": 61582, - "name": "external-link" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 134 - }, - { - "icon": { - "paths": [ - "M676.571 512q0 14.857-10.857 25.714l-310.857 310.857q-10.857 10.857-25.714 10.857t-25.714-10.857-10.857-25.714v-164.571h-256q-14.857 0-25.714-10.857t-10.857-25.714v-219.429q0-14.857 10.857-25.714t25.714-10.857h256v-164.571q0-14.857 10.857-25.714t25.714-10.857 25.714 10.857l310.857 310.857q10.857 10.857 10.857 25.714zM877.714 310.857v402.286q0 68-48.286 116.286t-116.286 48.286h-182.857q-7.429 0-12.857-5.429t-5.429-12.857q0-2.286-0.571-11.429t-0.286-15.143 1.714-13.429 5.714-11.143 11.714-3.714h182.857q37.714 0 64.571-26.857t26.857-64.571v-402.286q0-37.714-26.857-64.571t-64.571-26.857h-178.286t-6.571-0.571-6.571-1.714-4.571-3.143-4-5.143-1.143-7.714q0-2.286-0.571-11.429t-0.286-15.143 1.714-13.429 5.714-11.143 11.714-3.714h182.857q68 0 116.286 48.286t48.286 116.286z" - ], - "width": 877.7142857142858, - "attrs": [], - "isMulticolor": false, - "tags": [ - "sign-in" - ], - "defaultCode": 61584, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 135, - "order": 652, - "prevSize": 14, - "code": 61584, - "name": "sign-in" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 135 - }, - { - "icon": { - "paths": [ - "M261.714 504.571q-42.286-92.571-42.286-212h-146.286v54.857q0 44.571 54 92.571t134.571 64.571zM877.714 347.429v-54.857h-146.286q0 119.429-42.286 212 80.571-16.571 134.571-64.571t54-92.571zM950.857 274.286v73.143q0 40.571-23.714 81.714t-64 74.286-98.857 55.714-123.143 25.429q-24 30.857-54.286 54.286-21.714 19.429-30 41.429t-8.286 51.143q0 30.857 17.429 52t55.714 21.143q42.857 0 76.286 26t33.429 65.429v36.571q0 8-5.143 13.143t-13.143 5.143h-475.429q-8 0-13.143-5.143t-5.143-13.143v-36.571q0-39.429 33.429-65.429t76.286-26q38.286 0 55.714-21.143t17.429-52q0-29.143-8.286-51.143t-30-41.429q-30.286-23.429-54.286-54.286-64.571-2.857-123.143-25.429t-98.857-55.714-64-74.286-23.714-81.714v-73.143q0-22.857 16-38.857t38.857-16h164.571v-54.857q0-37.714 26.857-64.571t64.571-26.857h329.143q37.714 0 64.571 26.857t26.857 64.571v54.857h164.571q22.857 0 38.857 16t16 38.857z" - ], - "width": 951, - "attrs": [], - "isMulticolor": false, - "tags": [ - "trophy" - ], - "defaultCode": 61585, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 136, - "order": 653, - "prevSize": 14, - "code": 61585, - "name": "trophy" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 136 - }, - { - "icon": { - "paths": [ - "M225.143 772.571q-4.571 5.143-11.429-1.714-7.429-6.286-2.286-10.857 4.571-5.143 11.429 1.714 6.857 6.286 2.286 10.857zM201.143 737.714q5.143 6.857 0 10.857-4.571 3.429-9.714-4t0-10.286q5.143-4 9.714 3.429zM166.286 703.429q-2.857 4-7.429 1.143-5.714-2.857-4-6.857 1.714-2.857 7.429-1.143 5.714 2.857 4 6.857zM184 722.857q-3.429 4-9.143-1.714-5.143-6.286-1.143-9.143 3.429-3.429 9.143 1.714 5.143 6.286 1.143 9.143zM257.714 786.857q-2.286 6.857-10.857 3.429-9.714-2.286-7.429-8.571t10.857-4q9.143 2.857 7.429 9.143zM293.714 789.714q0 6.286-9.143 6.286-9.714 1.143-9.714-6.286 0-6.286 9.143-6.286 9.714-1.143 9.714 6.286zM326.857 784q1.143 5.714-8 8t-10.286-4.571 8-8.571q9.143-1.143 10.286 5.143zM877.714 237.714v548.571q0 68-48.286 116.286t-116.286 48.286h-128q-9.143 0-14-0.571t-11.143-2.857-9.143-8.286-2.857-15.714v-136.571q0-55.429-29.714-81.143 32.571-3.429 58.571-10.286t53.714-22.286 46.286-38 30.286-60 11.714-86q0-69.143-45.143-117.714 21.143-52-4.571-116.571-16-5.143-46.286 6.286t-52.571 25.143l-21.714 13.714q-53.143-14.857-109.714-14.857t-109.714 14.857q-9.143-6.286-24.286-15.429t-47.714-22-49.143-7.714q-25.143 64.571-4 116.571-45.143 48.571-45.143 117.714 0 48.571 11.714 85.714t30 60 46 38.286 53.714 22.286 58.571 10.286q-22.857 20.571-28 58.857-12 5.714-25.714 8.571t-32.571 2.857-37.429-12.286-31.714-35.714q-10.857-18.286-27.714-29.714t-28.286-13.714l-11.429-1.714q-12 0-16.571 2.571t-2.857 6.571 5.143 8 7.429 6.857l4 2.857q12.571 5.714 24.857 21.714t18 29.143l5.714 13.143q7.429 21.714 25.143 35.143t38.286 17.143 39.714 4 31.714-2l13.143-2.286q0 21.714 0.286 58.857t0.286 38.857q0 12.571-6.286 19.143t-12.571 7.429-18.857 0.857h-128q-68 0-116.286-48.286t-48.286-116.286v-548.571q0-68 48.286-116.286t116.286-48.286h548.571q68 0 116.286 48.286t48.286 116.286z" - ], - "width": 877.7142857142858, - "attrs": [], - "isMulticolor": false, - "tags": [ - "github-square" - ], - "defaultCode": 61586, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 137, - "order": 654, - "prevSize": 14, - "code": 61586, - "name": "github-square" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 137 - }, - { - "icon": { - "paths": [ - "M731.429 841.143q0-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.714zM877.714 841.143q0-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.714zM950.857 713.143v182.857q0 22.857-16 38.857t-38.857 16h-841.143q-22.857 0-38.857-16t-16-38.857v-182.857q0-22.857 16-38.857t38.857-16h244q12 32 40.286 52.571t63.143 20.571h146.286q34.857 0 63.143-20.571t40.286-52.571h244q22.857 0 38.857 16t16 38.857zM765.143 342.857q-9.714 22.857-33.714 22.857h-146.286v256q0 14.857-10.857 25.714t-25.714 10.857h-146.286q-14.857 0-25.714-10.857t-10.857-25.714v-256h-146.286q-24 0-33.714-22.857-9.714-22.286 8-39.429l256-256q10.286-10.857 25.714-10.857t25.714 10.857l256 256q17.714 17.143 8 39.429z" - ], - "width": 951, - "attrs": [], - "isMulticolor": false, - "tags": [ - "upload" - ], - "defaultCode": 61587, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 138, - "order": 655, - "prevSize": 14, - "code": 61587, - "name": "upload" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 138 - }, - { - "icon": { - "paths": [ - "M804 472q0-25.143-4-64.857t-10.286-55.143q-6.857-17.143-9.714-25.143t-5.143-20.857-2.286-27.714q0-13.143 2.857-39.143t2.857-38.571q0-21.143-5.714-31.429-2.286-0.571-7.429-0.571-10.857 0-33.143 2.571t-33.714 2.571q-34.286 0-100.571-13.714t-100-13.714q-24.571 0-54 6.571t-48.571 13.429-51.143 19.429q-78.286 30.857-115.429 58.857-54.857 41.714-91.143 108.286t-50.286 134.857-14 142q0 22.857 7.143 68.571t7.143 69.143q0 13.143-6.286 38t-6.286 37.429 6.857 20.857 19.429 8.286q13.714 0 41.429-6.286t42-6.286q32.571 0 96.857 8.857t96.857 8.857q103.429 0 162.286-20.571 73.714-25.714 134.571-87.143t94.857-140.286 34-157.143zM877.143 470.857q0 94.286-40 187.143t-112 164.571-160.571 103.143q-70.857 25.143-186.286 25.143-32.571 0-97.143-8.286t-96.571-8.286q-13.714 0-41.429 8.286t-42 8.286q-41.714 0-70.571-31.714t-28.857-73.429q0-13.714 6.286-38.857t6.286-38.286q0-22.857-7.143-68.857t-7.143-69.429q0-63.429 10.286-124.286t31.143-119.714 57.429-110.857 85.714-89.143q44.571-33.714 132.571-68.571 110.857-44.571 180.571-44.571 34.286 0 100.286 13.714t99.143 13.714q10.857 0 32.571-2.857t33.143-2.857q46.286 0 67.429 28.857t21.143 76.857q0 13.143-2.857 38.857t-2.857 38.857q0 5.714 0.571 10.571t1.714 9.714 2.286 7.714 3.714 9.143 3.714 9.714q9.143 22.857 14.286 67.714t5.143 78z" - ], - "width": 877.7142857142858, - "attrs": [], - "isMulticolor": false, - "tags": [ - "lemon-o" - ], - "defaultCode": 61588, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 139, - "order": 656, - "prevSize": 14, - "code": 61588, - "name": "lemon-o" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 139 - }, - { - "icon": { - "paths": [ - "M804.571 708.571q0 15.429-5.714 40.286t-12 39.143q-12 28.571-69.714 60.571-53.714 29.143-106.286 29.143-15.429 0-30-2t-32.857-7.143-27.143-8.286-31.714-11.714-28-10.286q-56-20-100-47.429-73.143-45.143-151.143-123.143t-123.143-151.143q-27.429-44-47.429-100-1.714-5.143-10.286-28t-11.714-31.714-8.286-27.143-7.143-32.857-2-30q0-52.571 29.143-106.286 32-57.714 60.571-69.714 14.286-6.286 39.143-12t40.286-5.714q8 0 12 1.714 10.286 3.429 30.286 43.429 6.286 10.857 17.143 30.857t20 36.286 17.714 30.571q1.714 2.286 10 14.286t12.286 20.286 4 16.286q0 11.429-16.286 28.571t-35.429 31.429-35.429 30.286-16.286 26.286q0 5.143 2.857 12.857t4.857 11.714 8 13.714 6.571 10.857q43.429 78.286 99.429 134.286t134.286 99.429q1.143 0.571 10.857 6.571t13.714 8 11.714 4.857 12.857 2.857q10.286 0 26.286-16.286t30.286-35.429 31.429-35.429 28.571-16.286q8 0 16.286 4t20.286 12.286 14.286 10q14.286 8.571 30.571 17.714t36.286 20 30.857 17.143q40 20 43.429 30.286 1.714 4 1.714 12z" - ], - "width": 805, - "attrs": [], - "isMulticolor": false, - "tags": [ - "phone" - ], - "defaultCode": 61589, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 140, - "order": 657, - "prevSize": 14, - "code": 61589, - "name": "phone" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 140 - }, - { - "icon": { - "paths": [ - "M640 146.286h-475.429q-37.714 0-64.571 26.857t-26.857 64.571v475.429q0 37.714 26.857 64.571t64.571 26.857h475.429q37.714 0 64.571-26.857t26.857-64.571v-475.429q0-37.714-26.857-64.571t-64.571-26.857zM804.571 237.714v475.429q0 68-48.286 116.286t-116.286 48.286h-475.429q-68 0-116.286-48.286t-48.286-116.286v-475.429q0-68 48.286-116.286t116.286-48.286h475.429q68 0 116.286 48.286t48.286 116.286z" - ], - "width": 805, - "attrs": [], - "isMulticolor": false, - "tags": [ - "square-o" - ], - "defaultCode": 61590, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 141, - "order": 658, - "prevSize": 14, - "code": 61590, - "name": "square-o" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 141 - }, - { - "icon": { - "paths": [ - "M658.286 146.286h-585.143v709.714l292.571-280.571 50.857 48.571 241.714 232v-709.714zM665.143 73.143q13.143 0 25.143 5.143 18.857 7.429 30 23.429t11.143 35.429v736.571q0 19.429-11.143 35.429t-30 23.429q-10.857 4.571-25.143 4.571-27.429 0-47.429-18.286l-252-242.286-252 242.286q-20.571 18.857-47.429 18.857-13.143 0-25.143-5.143-18.857-7.429-30-23.429t-11.143-35.429v-736.571q0-19.429 11.143-35.429t30-23.429q12-5.143 25.143-5.143h598.857z" - ], - "width": 731, - "attrs": [], - "isMulticolor": false, - "tags": [ - "bookmark-o" - ], - "defaultCode": 61591, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 142, - "order": 659, - "prevSize": 14, - "code": 61591, - "name": "bookmark-o" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 142 - }, - { - "icon": { - "paths": [ - "M731.429 681.714q0-6.286-1.143-9.143-1.714-4.571-22-16.857t-50.571-28.286l-30.286-16.571q-2.857-1.714-10.857-7.429t-14.286-8.571-12-2.857q-10.286 0-26.857 18.571t-32.571 37.429-25.143 18.857q-4 0-9.429-2t-8.857-3.714-9.714-5.429-8-4.857q-56.571-31.429-97.429-72.286t-72.286-97.429q-1.143-1.714-4.857-8t-5.429-9.714-3.714-8.857-2-9.429q0-7.429 11.714-19.143t25.714-22 25.714-22.571 11.714-20.857q0-5.714-2.857-12t-8.571-14.286-7.429-10.857q-1.714-3.429-8.571-16.286t-14.286-26-15.143-27.143-14.286-23.143-9.429-10.286-9.143-1.143q-27.429 0-57.714 12.571-26.286 12-45.714 54t-19.429 74.571q0 9.143 1.429 19.429t2.857 17.429 5.143 18.857 5.714 16.857 7.143 18.857 6.286 17.143q34.286 93.714 123.714 183.143t183.143 123.714q3.429 1.143 17.143 6.286t18.857 7.143 16.857 5.714 18.857 5.143 17.429 2.857 19.429 1.429q32.571 0 74.571-19.429t54-45.714q12.571-30.286 12.571-57.714zM877.714 237.714v548.571q0 68-48.286 116.286t-116.286 48.286h-548.571q-68 0-116.286-48.286t-48.286-116.286v-548.571q0-68 48.286-116.286t116.286-48.286h548.571q68 0 116.286 48.286t48.286 116.286z" - ], - "width": 877.7142857142858, - "attrs": [], - "isMulticolor": false, - "tags": [ - "phone-square" - ], - "defaultCode": 61592, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 143, - "order": 660, - "prevSize": 14, - "code": 61592, - "name": "phone-square" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 143 - }, - { - "icon": { - "paths": [ - "M925.714 233.143q-38.286 56-92.571 95.429 0.571 8 0.571 24 0 74.286-21.714 148.286t-66 142-105.429 120.286-147.429 83.429-184.571 31.143q-154.857 0-283.429-82.857 20 2.286 44.571 2.286 128.571 0 229.143-78.857-60-1.143-107.429-36.857t-65.143-91.143q18.857 2.857 34.857 2.857 24.571 0 48.571-6.286-64-13.143-106-63.714t-42-117.429v-2.286q38.857 21.714 83.429 23.429-37.714-25.143-60-65.714t-22.286-88q0-50.286 25.143-93.143 69.143 85.143 168.286 136.286t212.286 56.857q-4.571-21.714-4.571-42.286 0-76.571 54-130.571t130.571-54q80 0 134.857 58.286 62.286-12 117.143-44.571-21.143 65.714-81.143 101.714 53.143-5.714 106.286-28.571z" - ], - "width": 951, - "attrs": [], - "isMulticolor": false, - "tags": [ - "twitter" - ], - "defaultCode": 61593, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 144, - "order": 661, - "prevSize": 14, - "code": 61593, - "name": "twitter" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 144 - }, - { - "icon": { - "paths": [ - "M548 6.857v150.857h-89.714q-49.143 0-66.286 20.571t-17.143 61.714v108h167.429l-22.286 169.143h-145.143v433.714h-174.857v-433.714h-145.714v-169.143h145.714v-124.571q0-106.286 59.429-164.857t158.286-58.571q84 0 130.286 6.857z" - ], - "width": 585, - "attrs": [], - "isMulticolor": false, - "tags": [ - "facebook", - "facebook-f" - ], - "defaultCode": 61594, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 145, - "order": 662, - "name": "facebook, facebook-f", - "prevSize": 14, - "code": 61594 - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 145 - }, - { - "icon": { - "paths": [ - "M877.714 512q0 143.429-83.714 258t-216.286 158.571q-15.429 2.857-22.571-4t-7.143-17.143v-120.571q0-55.429-29.714-81.143 32.571-3.429 58.571-10.286t53.714-22.286 46.286-38 30.286-60 11.714-86q0-69.143-45.143-117.714 21.143-52-4.571-116.571-16-5.143-46.286 6.286t-52.571 25.143l-21.714 13.714q-53.143-14.857-109.714-14.857t-109.714 14.857q-9.143-6.286-24.286-15.429t-47.714-22-49.143-7.714q-25.143 64.571-4 116.571-45.143 48.571-45.143 117.714 0 48.571 11.714 85.714t30 60 46 38.286 53.714 22.286 58.571 10.286q-22.857 20.571-28 58.857-12 5.714-25.714 8.571t-32.571 2.857-37.429-12.286-31.714-35.714q-10.857-18.286-27.714-29.714t-28.286-13.714l-11.429-1.714q-12 0-16.571 2.571t-2.857 6.571 5.143 8 7.429 6.857l4 2.857q12.571 5.714 24.857 21.714t18 29.143l5.714 13.143q7.429 21.714 25.143 35.143t38.286 17.143 39.714 4 31.714-2l13.143-2.286q0 21.714 0.286 50.857t0.286 30.857q0 10.286-7.429 17.143t-22.857 4q-132.571-44-216.286-158.571t-83.714-258q0-119.429 58.857-220.286t159.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": [ - "github" - ], - "defaultCode": 61595, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 146, - "order": 663, - "prevSize": 14, - "code": 61595, - "name": "github" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 146 - }, - { - "icon": { - "paths": [ - "M950.857 329.143v146.286q0 14.857-10.857 25.714t-25.714 10.857h-36.571q-14.857 0-25.714-10.857t-10.857-25.714v-146.286q0-60.571-42.857-103.429t-103.429-42.857-103.429 42.857-42.857 103.429v109.714h54.857q22.857 0 38.857 16t16 38.857v329.143q0 22.857-16 38.857t-38.857 16h-548.571q-22.857 0-38.857-16t-16-38.857v-329.143q0-22.857 16-38.857t38.857-16h384v-109.714q0-105.714 75.143-180.857t180.857-75.143 180.857 75.143 75.143 180.857z" - ], - "width": 951, - "attrs": [], - "isMulticolor": false, - "tags": [ - "unlock" - ], - "defaultCode": 61596, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 147, - "order": 664, - "prevSize": 14, - "code": 61596, - "name": "unlock2" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 147 - }, - { - "icon": { - "paths": [ - "M1005.714 73.143q37.714 0 64.571 26.857t26.857 64.571v694.857q0 37.714-26.857 64.571t-64.571 26.857h-914.286q-37.714 0-64.571-26.857t-26.857-64.571v-694.857q0-37.714 26.857-64.571t64.571-26.857h914.286zM91.429 146.286q-7.429 0-12.857 5.429t-5.429 12.857v128h950.857v-128q0-7.429-5.429-12.857t-12.857-5.429h-914.286zM1005.714 877.714q7.429 0 12.857-5.429t5.429-12.857v-347.429h-950.857v347.429q0 7.429 5.429 12.857t12.857 5.429h914.286zM146.286 804.571v-73.143h146.286v73.143h-146.286zM365.714 804.571v-73.143h219.429v73.143h-219.429z" - ], - "width": 1097, - "attrs": [], - "isMulticolor": false, - "tags": [ - "credit-card" - ], - "defaultCode": 61597, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 148, - "order": 665, - "prevSize": 14, - "code": 61597, - "name": "credit-card" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 148 - }, - { - "icon": { - "paths": [ - "M219.429 768q0 45.714-32 77.714t-77.714 32-77.714-32-32-77.714 32-77.714 77.714-32 77.714 32 32 77.714zM512 838.286q1.143 16-9.714 27.429-10.286 12-26.857 12h-77.143q-14.286 0-24.571-9.429t-11.429-23.714q-12.571-130.857-105.429-223.714t-223.714-105.429q-14.286-1.143-23.714-11.429t-9.429-24.571v-77.143q0-16.571 12-26.857 9.714-9.714 24.571-9.714h2.857q91.429 7.429 174.857 46t148 103.714q65.143 64.571 103.714 148t46 174.857zM804.571 839.429q1.143 15.429-10.286 26.857-10.286 11.429-26.286 11.429h-81.714q-14.857 0-25.429-10t-11.143-24.286q-6.857-122.857-57.714-233.429t-132.286-192-192-132.286-233.429-58.286q-14.286-0.571-24.286-11.143t-10-24.857v-81.714q0-16 11.429-26.286 10.286-10.286 25.143-10.286h1.714q149.714 7.429 286.571 68.571t243.143 168q106.857 106.286 168 243.143t68.571 286.571z" - ], - "width": 805, - "attrs": [], - "isMulticolor": false, - "tags": [ - "feed", - "rss" - ], - "defaultCode": 61598, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 149, - "order": 666, - "name": "feed, rss", - "prevSize": 14, - "code": 61598 - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 149 - }, - { - "icon": { - "paths": [ - "M594.286 694.857q0 18.857-13.429 32.286t-32.286 13.429-32.286-13.429-13.429-32.286 13.429-32.286 32.286-13.429 32.286 13.429 13.429 32.286zM740.571 694.857q0 18.857-13.429 32.286t-32.286 13.429-32.286-13.429-13.429-32.286 13.429-32.286 32.286-13.429 32.286 13.429 13.429 32.286zM804.571 786.286v-182.857q0-7.429-5.429-12.857t-12.857-5.429h-694.857q-7.429 0-12.857 5.429t-5.429 12.857v182.857q0 7.429 5.429 12.857t12.857 5.429h694.857q7.429 0 12.857-5.429t5.429-12.857zM101.714 512h674.286l-89.714-275.429q-2.286-7.429-9.143-12.286t-14.857-4.857h-446.857q-8 0-14.857 4.857t-9.143 12.286zM877.714 603.429v182.857q0 37.714-26.857 64.571t-64.571 26.857h-694.857q-37.714 0-64.571-26.857t-26.857-64.571v-182.857q0-14.286 9.143-42.857l112.571-346.286q9.714-30.286 36-49.143t57.714-18.857h446.857q31.429 0 57.714 18.857t36 49.143l112.571 346.286q9.143 28.571 9.143 42.857z" - ], - "width": 877.7142857142858, - "attrs": [], - "isMulticolor": false, - "tags": [ - "hdd-o" - ], - "defaultCode": 61600, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 150, - "order": 667, - "prevSize": 14, - "code": 61600, - "name": "hdd-o" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 150 - }, - { - "icon": { - "paths": [ - "M950.857 365.714q30.286 0 51.714 21.429t21.429 51.714-21.429 51.714-51.714 21.429v219.429q0 29.714-21.714 51.429t-51.429 21.714q-238.286-198.286-464-217.143-33.143 10.857-52 37.714t-17.714 57.429 22.857 52.857q-11.429 18.857-13.143 37.429t3.429 33.143 19.143 31.429 27.429 28.571 35.143 28.857q-16.571 33.143-63.714 47.429t-96.286 6.571-75.429-31.714q-4-13.143-16.857-50t-18.286-54-13.143-50.857-8.571-57.714 2-56.286 12.571-63.143h-69.714q-37.714 0-64.571-26.857t-26.857-64.571v-109.714q0-37.714 26.857-64.571t64.571-26.857h274.286q248.571 0 512-219.429 29.714 0 51.429 21.714t21.714 51.429v219.429zM877.714 710.857v-545.143q-225.143 172.571-438.857 196v154.286q215.429 24 438.857 194.857z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "bullhorn" - ], - "defaultCode": 61601, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 151, - "order": 668, - "prevSize": 14, - "code": 61601, - "name": "bullhorn" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 151 - }, - { - "icon": { - "paths": [ - "M521.143 969.143q0-9.143-9.143-9.143-33.714 0-58-24.286t-24.286-58q0-9.143-9.143-9.143t-9.143 9.143q0 41.714 29.429 71.143t71.143 29.429q9.143 0 9.143-9.143zM140.571 804.571h742.857q-152-171.429-152-475.429 0-29.143-13.714-60t-39.429-58.857-69.429-46-96.857-18-96.857 18-69.429 46-39.429 58.857-13.714 60q0 304-152 475.429zM987.429 804.571q0 29.714-21.714 51.429t-51.429 21.714h-256q0 60.571-42.857 103.429t-103.429 42.857-103.429-42.857-42.857-103.429h-256q-29.714 0-51.429-21.714t-21.714-51.429q28.571-24 52-50.286t48.571-68.286 42.571-90.571 28.571-117.714 11.143-148.571q0-86.857 66.857-161.429t175.429-90.571q-4.571-10.857-4.571-22.286 0-22.857 16-38.857t38.857-16 38.857 16 16 38.857q0 11.429-4.571 22.286 108.571 16 175.429 90.571t66.857 161.429q0 79.429 11.143 148.571t28.571 117.714 42.571 90.571 48.571 68.286 52 50.286z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "bell-o" - ], - "defaultCode": 61602, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 152, - "order": 669, - "prevSize": 14, - "code": 61602, - "name": "bell-o" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 152 - }, - { - "icon": { - "paths": [ - "M786.286 512l78.857 77.143q17.143 16 11.429 40-6.857 23.429-29.714 29.143l-107.429 27.429 30.286 106.286q6.857 23.429-10.857 40-16.571 17.714-40 10.857l-106.286-30.286-27.429 107.429q-5.714 22.857-29.143 29.714-6.857 1.143-10.857 1.143-17.714 0-29.143-12.571l-77.143-78.857-77.143 78.857q-16 17.143-40 11.429-23.429-6.286-29.143-29.714l-27.429-107.429-106.286 30.286q-23.429 6.857-40-10.857-17.714-16.571-10.857-40l30.286-106.286-107.429-27.429q-22.857-5.714-29.714-29.143-5.714-24 11.429-40l78.857-77.143-78.857-77.143q-17.143-16-11.429-40 6.857-23.429 29.714-29.143l107.429-27.429-30.286-106.286q-6.857-23.429 10.857-40 16.571-17.714 40-10.857l106.286 30.286 27.429-107.429q5.714-23.429 29.143-29.143 23.429-6.857 40 10.857l77.143 79.429 77.143-79.429q16.571-17.143 40-10.857 23.429 5.714 29.143 29.143l27.429 107.429 106.286-30.286q23.429-6.857 40 10.857 17.714 16.571 10.857 40l-30.286 106.286 107.429 27.429q22.857 5.714 29.714 29.143 5.714 24-11.429 40z" - ], - "width": 877.7142857142858, - "attrs": [], - "isMulticolor": false, - "tags": [ - "certificate" - ], - "defaultCode": 61603, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 153, - "order": 670, - "prevSize": 14, - "code": 61603, - "name": "certificate" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 153 - }, - { - "icon": { - "paths": [ - "M146.286 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.714zM950.857 438.857q0-29.143-22.286-51.143t-50.857-22h-329.143q0-11.429 8.571-27.714t18.857-31.429 18.857-38.857 8.571-48.286q0-38.286-25.429-55.714t-66-17.429q-13.714 0-51.429 79.429-13.714 25.143-21.143 37.143-22.857 36.571-64 82.857-40.571 46.286-57.714 60.571-39.429 32.571-80 32.571h-18.286v365.714h18.286q41.143 0 95.429 18.286t110.571 36.571 102.571 18.286q108 0 108-95.429 0-14.857-2.857-32 17.143-9.143 27.143-30t10-42-10.286-39.429q30.286-28.571 30.286-68 0-14.286-5.714-31.714t-14.286-27.143h189.143q29.714 0 51.429-21.714t21.714-51.429zM1024 438.286q0 60-43.143 103.429t-103.143 43.429h-96.571q-2.286 35.429-21.143 68 1.714 12 1.714 24.571 0 57.714-34.286 101.714 0.571 79.429-48.571 125.429t-129.714 46q-76 0-184-39.429-93.714-33.714-127.429-33.714h-164.571q-30.286 0-51.714-21.429t-21.429-51.714v-365.714q0-30.286 21.429-51.714t51.714-21.429h164.571q5.714 0 12.286-2.571t13.429-8 12.857-10.286 13.714-12.857 11.714-12.286 10.857-12.286 8-9.714q37.143-42.286 57.143-73.714 7.429-12 18.857-35.429t21.143-41.143 23.143-36 31.429-28.286 39.714-10q71.429 0 118 38.286t46.571 108q0 38.857-12.571 73.143h213.714q59.429 0 102.857 43.429t43.429 102.286z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "hand-o-right" - ], - "defaultCode": 61604, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 154, - "order": 671, - "prevSize": 14, - "code": 61604, - "name": "hand-o-right" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 154 - }, - { - "icon": { - "paths": [ - "M786.286 804.571h18.286v-365.714h-18.286q-20 0-38.571-6.857t-35.714-21.143-28.571-26.286-28-30.857q-1.143-1.714-2-2.571t-2.286-2.571-2.571-2.857q-41.143-46.286-64-82.857-8-12.571-21.714-38.857-0.571-1.714-6-12.857t-10.571-20.571-11.429-20.286-12.286-17.429-10.571-6.571q-40.571 0-66 17.429t-25.429 55.714q0 24.571 8.571 48.286t18.857 38.857 18.857 31.429 8.571 27.714h-329.143q-28.571 0-50.857 22t-22.286 51.143q0 29.714 21.714 51.429t51.429 21.714h189.143q-8.571 9.714-14.286 27.143t-5.714 31.714q0 39.429 30.286 68-10.286 18.286-10.286 39.429t10 42 27.143 30q-2.286 13.714-2.286 32 0 48.571 27.714 72t77.429 23.429q48 0 104.571-18.286t110.857-36.571 95.429-18.286zM950.857 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.714zM1024 438.857v365.714q0 30.286-21.429 51.714t-51.714 21.429h-164.571q-33.714 0-127.429 33.714-108.571 39.429-181.143 39.429-81.143 0-131.429-44.286t-49.714-124.286l0.571-2.857q-34.857-43.429-34.857-101.714 0-12.571 1.714-24.571-18.857-32.571-21.143-68h-96.571q-60 0-103.143-43.429t-43.143-103.429q0-58.857 43.429-102.286t102.857-43.429h213.714q-12.571-34.286-12.571-73.143 0-69.714 46.571-108t118-38.286q21.714 0 39.714 10t31.429 28.286 23.143 36 21.143 41.143 18.857 35.429q20 31.429 57.143 73.714 1.143 1.714 8 9.714t10.857 12.286 11.714 12.286 13.714 12.857 12.857 10.286 13.429 8 12.286 2.571h164.571q30.286 0 51.714 21.429t21.429 51.714z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "hand-o-left" - ], - "defaultCode": 61605, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 155, - "order": 672, - "prevSize": 14, - "code": 61605, - "name": "hand-o-left" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 155 - }, - { - "icon": { - "paths": [ - "M731.429 914.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 477.714q0-108-95.429-108-14.857 0-32 2.857-9.143-17.143-30-27.143t-42-10-39.429 10.286q-28.571-30.286-68-30.286-14.286 0-31.714 5.714t-27.143 14.286v-189.143q0-29.714-21.714-51.429t-51.429-21.714q-29.143 0-51.143 22.286t-22 50.857v329.143q-11.429 0-27.714-8.571t-31.429-18.857-38.857-18.857-48.286-8.571q-38.286 0-55.714 25.429t-17.429 66q0 13.714 79.429 51.429 25.143 13.714 37.143 21.143 36.571 22.857 82.857 64 46.286 40.571 60.571 57.714 32.571 39.429 32.571 80v18.286h365.714v-18.286q0-41.143 18.286-95.429t36.571-110.571 18.286-102.571zM877.714 474.857q0 76-39.429 184-33.714 93.714-33.714 127.429v164.571q0 30.286-21.429 51.714t-51.714 21.429h-365.714q-30.286 0-51.714-21.429t-21.429-51.714v-164.571q0-5.714-2.571-12.286t-8-13.429-10.286-12.857-12.857-13.714-12.286-11.714-12.286-10.857-9.714-8q-42.286-37.143-73.714-57.143-12-7.429-35.429-18.857t-41.143-21.143-36-23.143-28.286-31.429-10-39.714q0-71.429 38.286-118t108-46.571q38.857 0 73.143 12.571v-213.714q0-59.429 43.429-102.857t102.286-43.429q60 0 103.429 43.143t43.429 103.143v96.571q35.429 2.286 68 21.143 12-1.714 24.571-1.714 57.714 0 101.714 34.286 79.429-0.571 125.429 48.571t46 129.714z" - ], - "width": 877.7142857142858, - "attrs": [], - "isMulticolor": false, - "tags": [ - "hand-o-up" - ], - "defaultCode": 61606, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 156, - "order": 673, - "prevSize": 14, - "code": 61606, - "name": "hand-o-up" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 156 - }, - { - "icon": { - "paths": [ - "M804.571 548.571q0-48-18.286-104.571t-36.571-110.857-18.286-95.429v-18.286h-365.714v18.286q0 20-6.857 38.571t-21.143 35.714-26.286 28.571-30.857 28q-5.143 4.571-8 6.857-46.286 41.143-82.857 64-12.571 8-38.857 21.714-1.714 0.571-12.857 6t-20.571 10.571-20.286 11.429-17.429 12.286-6.571 10.571q0 40.571 17.429 66t55.714 25.429q24.571 0 48.286-8.571t38.857-18.857 31.429-18.857 27.714-8.571v329.143q0 28.571 22 50.857t51.143 22.286q29.714 0 51.429-21.714t21.714-51.429v-189.143q26.286 20 58.857 20 39.429 0 68-30.286 18.286 10.286 39.429 10.286t42-10 30-27.143q13.714 2.286 32 2.286 48.571 0 72-27.714t23.429-77.429zM731.429 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.714zM877.714 546.286q0 81.143-44.286 131.429t-124.286 49.714l-2.857-0.571q-43.429 34.857-101.714 34.857-12.571 0-24.571-1.714-30.857 17.143-68 21.143v96.571q0 60-43.429 103.143t-103.429 43.143q-58.857 0-102.286-43.429t-43.429-102.857v-213.714q-30.857 12.571-73.143 12.571-69.143 0-107.714-46.571t-38.571-118q0-21.714 10-39.714t28.286-31.429 36-23.143 41.143-21.143 35.429-18.857q31.429-20 73.714-57.143 1.714-1.143 9.714-8t12.286-10.857 12.286-11.714 12.857-13.714 10.286-12.857 8-13.429 2.571-12.286v-164.571q0-30.286 21.429-51.714t51.714-21.429h365.714q30.286 0 51.714 21.429t21.429 51.714v164.571q0 33.714 33.714 127.429 39.429 108.571 39.429 181.143z" - ], - "width": 877.7142857142858, - "attrs": [], - "isMulticolor": false, - "tags": [ - "hand-o-down" - ], - "defaultCode": 61607, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 157, - "order": 674, - "prevSize": 14, - "code": 61607, - "name": "hand-o-down" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 157 - }, - { - "icon": { - "paths": [ - "M731.429 548.571v-73.143q0-14.857-10.857-25.714t-25.714-10.857h-286.857l108-108q10.857-10.857 10.857-25.714t-10.857-25.714l-52-52q-10.286-10.286-25.714-10.286t-25.714 10.286l-258.857 258.857q-10.286 10.286-10.286 25.714t10.286 25.714l258.857 258.857q10.286 10.286 25.714 10.286t25.714-10.286l52-52q10.286-10.286 10.286-25.714t-10.286-25.714l-108-108h286.857q14.857 0 25.714-10.857t10.857-25.714zM877.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": [ - "arrow-circle-left" - ], - "defaultCode": 61608, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 158, - "order": 675, - "prevSize": 14, - "code": 61608, - "name": "arrow-circle-left" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 158 - }, - { - "icon": { - "paths": [ - "M734.286 512q0-15.429-10.286-25.714l-258.857-258.857q-10.286-10.286-25.714-10.286t-25.714 10.286l-52 52q-10.286 10.286-10.286 25.714t10.286 25.714l108 108h-286.857q-14.857 0-25.714 10.857t-10.857 25.714v73.143q0 14.857 10.857 25.714t25.714 10.857h286.857l-108 108q-10.857 10.857-10.857 25.714t10.857 25.714l52 52q10.286 10.286 25.714 10.286t25.714-10.286l258.857-258.857q10.286-10.286 10.286-25.714zM877.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": [ - "arrow-circle-right" - ], - "defaultCode": 61609, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 159, - "order": 676, - "prevSize": 14, - "code": 61609, - "name": "arrow-circle-right" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 159 - }, - { - "icon": { - "paths": [ - "M733.714 511.429q0-15.429-10.286-25.714l-258.857-258.857q-10.286-10.286-25.714-10.286t-25.714 10.286l-258.857 258.857q-10.286 10.286-10.286 25.714t10.286 25.714l52 52q10.286 10.286 25.714 10.286t25.714-10.286l108-108v286.857q0 14.857 10.857 25.714t25.714 10.857h73.143q14.857 0 25.714-10.857t10.857-25.714v-286.857l108 108q10.857 10.857 25.714 10.857t25.714-10.857l52-52q10.286-10.286 10.286-25.714zM877.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": [ - "arrow-circle-up" - ], - "defaultCode": 61610, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 160, - "order": 677, - "prevSize": 14, - "code": 61610, - "name": "arrow-circle-up" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 160 - }, - { - "icon": { - "paths": [ - "M733.714 512.571q0-15.429-10.286-25.714l-52-52q-10.286-10.286-25.714-10.286t-25.714 10.286l-108 108v-286.857q0-14.857-10.857-25.714t-25.714-10.857h-73.143q-14.857 0-25.714 10.857t-10.857 25.714v286.857l-108-108q-10.857-10.857-25.714-10.857t-25.714 10.857l-52 52q-10.286 10.286-10.286 25.714t10.286 25.714l258.857 258.857q10.286 10.286 25.714 10.286t25.714-10.286l258.857-258.857q10.286-10.286 10.286-25.714zM877.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": [ - "arrow-circle-down" - ], - "defaultCode": 61611, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 161, - "order": 678, - "prevSize": 14, - "code": 61611, - "name": "arrow-circle-down" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 161 - }, - { - "icon": { - "paths": [ - "M438.857 73.143q119.429 0 220.286 58.857t159.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.286 58.857-220.286 159.714-159.714 220.286-58.857zM595.429 370.857q-1.143 0.571-5.429 5.429t-7.714 5.429q1.143 0 2.571-2.857t2.857-6.286 2-4q3.429-4 12.571-8.571 8-3.429 29.714-6.857 19.429-4.571 29.143 6.286-1.143-1.143 5.429-7.429t8.286-6.857q1.714-1.143 8.571-2.571t8.571-4.286l1.143-12.571q-6.857 0.571-10-4t-3.714-12q0 1.143-3.429 4.571 0-4-2.571-4.571t-6.571 0.571-5.143 0.571q-5.714-1.714-8.571-4.286t-4.571-9.429-2.286-8.571q-1.143-2.857-5.429-6t-5.429-6q-0.571-1.143-1.429-3.143t-1.714-3.714-2.286-3.143-3.143-1.429-4 2.857-4.286 5.714-2.571 2.857q-1.714-1.143-3.429-0.857t-2.571 0.571-2.571 1.714-2.857 2q-1.714 1.143-4.857 1.714t-4.857 1.143q8.571-2.857-0.571-6.286-5.714-2.286-9.143-1.714 5.143-2.286 4.286-6.857t-4.857-8h2.857q-0.571-2.286-4.857-4.857t-10-4.857-7.429-3.429q-4.571-2.857-19.429-5.429t-18.857-0.286q-2.857 3.429-2.571 6t2.286 8 2 7.143q0.571 3.429-3.143 7.429t-3.714 6.857q0 4 8 8.857t5.714 12.286q-1.714 4.571-9.143 9.143t-9.143 6.857q-2.857 4.571-0.857 10.571t6 9.429q1.143 1.143 0.857 2.286t-2 2.571-3.143 2.286-3.714 2l-1.714 1.143q-6.286 2.857-11.714-3.429t-7.714-14.857q-4-14.286-9.143-17.143-13.143-4.571-16.571 0.571-2.857-7.429-23.429-14.857-14.286-5.143-33.143-2.286 3.429-0.571 0-8.571-4-8.571-10.857-6.857 1.714-3.429 2.286-10t0.571-7.714q1.714-7.429 6.857-13.143 0.571-0.571 4-4.857t5.429-7.714 0.286-3.429q20 2.286 28.571-6.286 2.857-2.857 6.571-9.714t6-9.714q5.143-3.429 8-3.143t8.286 3.143 8.286 2.857q8 0.571 8.857-6.286t-4.286-11.429q6.857 0.571 1.714-9.714-2.857-4-4.571-5.143-6.857-2.286-15.429 2.857-4.571 2.286 1.143 4.571-0.571-0.571-5.429 6t-9.429 10-9.143-2.857q-0.571-0.571-3.143-7.714t-5.429-7.714q-4.571 0-9.143 8.571 1.714-4.571-6.286-8.571t-13.714-4.571q10.857-6.857-4.571-15.429-4-2.286-11.714-2.857t-11.143 2.286q-2.857 4-3.143 6.571t2.857 4.571 6 3.143 6.571 2.286 4.857 1.714q8 5.714 4.571 8-1.143 0.571-4.857 2t-6.571 2.571-3.429 2.286q-1.714 2.286 0 8t-1.143 8q-2.857-2.857-5.143-10t-4-9.429q4 5.143-14.286 3.429l-5.714-0.571q-2.286 0-9.143 1.143t-11.714 0.571-7.714-4.571q-2.286-4.571 0-11.429 0.571-2.286 2.286-1.143-2.286-1.714-6.286-5.429t-5.714-4.857q-26.286 8.571-53.714 23.429 3.429 0.571 6.857-0.571 2.857-1.143 7.429-3.714t5.714-3.143q19.429-8 24-4l2.857-2.857q8 9.143 11.429 14.286-4-2.286-17.143-0.571-11.429 3.429-12.571 6.857 4 6.857 2.857 10.286-2.286-1.714-6.571-5.714t-8.286-6.286-8.571-2.857q-9.143 0-12.571 0.571-83.429 45.714-134.286 126.857 4 4 6.857 4.571 2.286 0.571 2.857 5.143t1.429 6.286 6.571-1.714q5.143 4.571 1.714 10.857 0.571-0.571 25.143 15.429 10.857 9.714 12 12 1.714 6.286-5.714 10.286-0.571-1.143-5.143-5.143t-5.143-2.286q-1.714 2.857 0.286 10.571t6 7.143q-4 0-5.429 9.143t-1.429 20.286-0.571 13.429l1.143 0.571q-1.714 6.857 3.143 19.714t12.286 11.143q-7.429 1.714 11.429 24.571 3.429 4.571 4.571 5.143 1.714 1.143 6.857 4.286t8.571 5.714 5.714 6q2.286 2.857 5.714 12.857t8 13.429q-1.143 3.429 5.429 11.429t6 13.143q-0.571 0-1.429 0.571t-1.429 0.571q1.714 4 8.857 8t8.857 7.429q0.571 1.714 1.143 5.714t1.714 6.286 4.571 1.143q1.143-11.429-13.714-35.429-8.571-14.286-9.714-16.571-1.714-2.857-3.143-8.857t-2.571-8.286q1.143 0 3.429 0.857t4.857 2 4.286 2.286 1.143 1.714q-1.714 4 1.143 10t6.857 10.571 9.714 10.857 6.857 7.429q3.429 3.429 8 11.143t0 7.714q5.143 0 11.429 5.714t9.714 11.429q2.857 4.571 4.571 14.857t2.857 13.714q1.143 4 4.857 7.714t7.143 5.429l9.143 4.571t7.429 4q2.857 1.143 10.571 6t12.286 6.571q5.714 2.286 9.143 2.286t8.286-1.429 7.714-2q8.571-1.143 16.571 8.571t12 12q20.571 10.857 31.429 6.286-1.143 0.571 0.286 4.286t4.571 8.857 5.143 8.286 3.143 4.857q2.857 3.429 10.286 8.571t10.286 8.571q3.429-2.286 4-5.143-1.714 4.571 4 11.429t10.286 5.714q8-1.714 8-18.286-17.714 8.571-28-10.286 0-0.571-1.429-3.143t-2.286-4.857-1.429-4.857 0-4.286 2.857-1.714q5.143 0 5.714-2t-1.143-7.143-2.286-7.429q-0.571-4.571-6.286-11.429t-6.857-8.571q-2.857 5.143-9.143 4.571t-9.143-5.143q0 0.571-0.857 3.143t-0.857 3.714q-7.429 0-8.571-0.571 0.571-1.714 1.429-10t2-12.857q0.571-2.286 3.143-6.857t4.286-8.286 2.286-7.143-2.571-5.429-10-1.429q-10.857 0.571-14.857 11.429-0.571 1.714-1.714 6t-2.857 6.571-5.143 4q-4 1.714-13.714 1.143t-13.714-2.857q-7.429-4.571-12.857-16.571t-5.429-21.143q0-5.714 1.429-15.143t1.714-14.286-3.143-14q1.714-1.143 5.143-5.429t5.714-6q1.143-0.571 2.571-0.857t2.571 0 2.286-0.857 1.714-3.429q-0.571-0.571-2.286-1.714-1.714-1.714-2.286-1.714 4 1.714 16.286-0.857t15.714 0.857q8.571 6.286 12.571-1.143 0-0.571-1.429-5.429t-0.286-7.714q2.857 15.429 16.571 5.143 1.714 1.714 8.857 2.857t10 2.857q1.714 1.143 4 3.143t3.143 2.571 2.857-0.286 4.857-3.714q5.714 8 6.857 13.714 6.286 22.857 10.857 25.143 4 1.714 6.286 1.143t2.571-5.429 0-8-0.857-7.143l-0.571-4.571v-10.286l-0.571-4.571q-8.571-1.714-10.571-6.857t0.857-10.571 8.571-10.571q0.571-0.571 4.571-2t8.857-3.714 7.143-4.571q12-10.857 8.571-20 4 0 6.286-5.143-0.571 0-2.857-1.714t-4.286-2.857-2.571-1.143q5.143-2.857 1.143-9.143 2.857-1.714 4.286-6.286t4.286-5.714q5.143 6.857 12 1.143 4-4.571 0.571-9.143 2.857-4 11.714-6t10.571-5.429q4 1.143 4.571-1.143t0.571-6.857 1.714-6.857q2.286-2.857 8.571-5.143t7.429-2.857l9.714-6.286q1.714-2.286 0-2.286 10.286 1.143 17.714-6.286 5.714-6.286-3.429-11.429 1.714-3.429-1.714-5.429t-8.571-3.143q1.714-0.571 6.571-0.286t6-0.857q8.571-5.714-4-9.143-9.714-2.857-24.571 6.857zM502.286 872q117.714-20.571 200.571-108-1.714-1.714-7.143-2.571t-7.143-2q-10.286-4-13.714-4.571 0.571-4-1.429-7.429t-4.571-5.143-7.143-4.571-6.286-4q-1.143-1.143-4-3.429t-4-3.143-4.286-2.571-4.857-1.143-5.714 0.571l-1.714 0.571q-1.714 0.571-3.143 1.429t-3.143 1.714-2.286 1.714 0 1.429q-12-9.714-20.571-12.571-2.857-0.571-6.286-3.143t-6-4-5.714-0.857-6.571 4q-2.857 2.857-3.429 8.571t-1.143 7.429q-4-2.857 0-10t1.143-10.571q-1.714-3.429-6-2.571t-6.857 2.571-6.571 4.857-5.143 3.714-4.857 3.143-4.857 4.286q-1.714 2.286-3.429 6.857t-2.857 6.286q-1.143-2.286-6.571-3.714t-5.429-3.143q1.143 5.714 2.286 20t2.857 21.714q4 17.714-6.857 27.429-15.429 14.286-16.571 22.857-2.286 12.571 6.857 14.857 0 4-4.571 11.714t-4 12.286q0 3.429 1.143 9.143z" - ], - "width": 877.7142857142858, - "attrs": [], - "isMulticolor": false, - "tags": [ - "globe" - ], - "defaultCode": 61612, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 162, - "order": 679, - "prevSize": 14, - "code": 61612, - "name": "globe" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 162 - }, - { - "icon": { - "paths": [ - "M219.429 841.143q0-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.714zM587.429 601.143l-389.714 389.714q-21.143 21.143-51.429 21.143-29.714 0-52-21.143l-60.571-61.714q-21.714-20.571-21.714-51.429 0-30.286 21.714-52l389.143-389.143q22.286 56 65.429 99.143t99.143 65.429zM949.714 352.571q0 22.286-13.143 60.571-26.857 76.571-94 124.286t-147.714 47.714q-105.714 0-180.857-75.143t-75.143-180.857 75.143-180.857 180.857-75.143q33.143 0 69.429 9.429t61.429 26.571q9.143 6.286 9.143 16t-9.143 16l-167.429 96.571v128l110.286 61.143q2.857-1.714 45.143-27.714t77.429-46.286 40.286-20.286q8.571 0 13.429 5.714t4.857 14.286z" - ], - "width": 951, - "attrs": [], - "isMulticolor": false, - "tags": [ - "wrench" - ], - "defaultCode": 61613, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 163, - "order": 680, - "prevSize": 14, - "code": 61613, - "name": "wrench" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 163 - }, - { - "icon": { - "paths": [ - "M585.143 804.571h365.714v-73.143h-365.714v73.143zM365.714 512h585.143v-73.143h-585.143v73.143zM731.429 219.429h219.429v-73.143h-219.429v73.143zM1024 694.857v146.286q0 14.857-10.857 25.714t-25.714 10.857h-950.857q-14.857 0-25.714-10.857t-10.857-25.714v-146.286q0-14.857 10.857-25.714t25.714-10.857h950.857q14.857 0 25.714 10.857t10.857 25.714zM1024 402.286v146.286q0 14.857-10.857 25.714t-25.714 10.857h-950.857q-14.857 0-25.714-10.857t-10.857-25.714v-146.286q0-14.857 10.857-25.714t25.714-10.857h950.857q14.857 0 25.714 10.857t10.857 25.714zM1024 109.714v146.286q0 14.857-10.857 25.714t-25.714 10.857h-950.857q-14.857 0-25.714-10.857t-10.857-25.714v-146.286q0-14.857 10.857-25.714t25.714-10.857h950.857q14.857 0 25.714 10.857t10.857 25.714z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "tasks" - ], - "defaultCode": 61614, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 164, - "order": 681, - "prevSize": 14, - "code": 61614, - "name": "tasks" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 164 - }, - { - "icon": { - "paths": [ - "M801.714 168.571q9.714 23.429-8 40l-281.714 281.714v424q0 24-22.286 33.714-7.429 2.857-14.286 2.857-15.429 0-25.714-10.857l-146.286-146.286q-10.857-10.857-10.857-25.714v-277.714l-281.714-281.714q-17.714-16.571-8-40 9.714-22.286 33.714-22.286h731.429q24 0 33.714 22.286z" - ], - "width": 805, - "attrs": [], - "isMulticolor": false, - "tags": [ - "filter" - ], - "defaultCode": 61616, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 165, - "order": 682, - "prevSize": 14, - "code": 61616, - "name": "filter" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 165 - }, - { - "icon": { - "paths": [ - "M365.714 146.286h292.571v-73.143h-292.571v73.143zM1024 512v274.286q0 37.714-26.857 64.571t-64.571 26.857h-841.143q-37.714 0-64.571-26.857t-26.857-64.571v-274.286h384v91.429q0 14.857 10.857 25.714t25.714 10.857h182.857q14.857 0 25.714-10.857t10.857-25.714v-91.429h384zM585.143 512v73.143h-146.286v-73.143h146.286zM1024 237.714v219.429h-1024v-219.429q0-37.714 26.857-64.571t64.571-26.857h201.143v-91.429q0-22.857 16-38.857t38.857-16h329.143q22.857 0 38.857 16t16 38.857v91.429h201.143q37.714 0 64.571 26.857t26.857 64.571z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "briefcase" - ], - "defaultCode": 61617, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 166, - "order": 683, - "prevSize": 14, - "code": 61617, - "name": "briefcase" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 166 - }, - { - "icon": { - "paths": [ - "M733.143 309.143l-202.857 202.857 202.857 202.857 82.286-82.286q16.571-17.714 40-8 22.286 9.714 22.286 33.714v256q0 14.857-10.857 25.714t-25.714 10.857h-256q-24 0-33.714-22.857-9.714-22.286 8-39.429l82.286-82.286-202.857-202.857-202.857 202.857 82.286 82.286q17.714 17.143 8 39.429-9.714 22.857-33.714 22.857h-256q-14.857 0-25.714-10.857t-10.857-25.714v-256q0-24 22.857-33.714 22.286-9.714 39.429 8l82.286 82.286 202.857-202.857-202.857-202.857-82.286 82.286q-10.857 10.857-25.714 10.857-6.857 0-13.714-2.857-22.857-9.714-22.857-33.714v-256q0-14.857 10.857-25.714t25.714-10.857h256q24 0 33.714 22.857 9.714 22.286-8 39.429l-82.286 82.286 202.857 202.857 202.857-202.857-82.286-82.286q-17.714-17.143-8-39.429 9.714-22.857 33.714-22.857h256q14.857 0 25.714 10.857t10.857 25.714v256q0 24-22.286 33.714-7.429 2.857-14.286 2.857-14.857 0-25.714-10.857z" - ], - "width": 877.7142857142858, - "attrs": [], - "isMulticolor": false, - "tags": [ - "arrows-alt" - ], - "defaultCode": 61618, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 167, - "order": 684, - "prevSize": 14, - "code": 61618, - "name": "arrows-alt" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 167 - }, - { - "icon": { - "paths": [ - "M338.857 512q-92.571 2.857-151.429 73.143h-76.571q-46.857 0-78.857-23.143t-32-67.714q0-201.714 70.857-201.714 3.429 0 24.857 12t55.714 24.286 68 12.286q38.286 0 76-13.143-2.857 21.143-2.857 37.714 0 79.429 46.286 146.286zM950.857 876q0 68.571-41.714 108.286t-110.857 39.714h-499.429q-69.143 0-110.857-39.714t-41.714-108.286q0-30.286 2-59.143t8-62.286 15.143-62 24.571-55.714 35.429-46.286 48.857-30.571 63.714-11.429q5.714 0 24.571 12.286t41.714 27.429 61.143 27.429 77.143 12.286 77.143-12.286 61.143-27.429 41.714-27.429 24.571-12.286q34.857 0 63.714 11.429t48.857 30.571 35.429 46.286 24.571 55.714 15.143 62 8 62.286 2 59.143zM365.714 146.286q0 60.571-42.857 103.429t-103.429 42.857-103.429-42.857-42.857-103.429 42.857-103.429 103.429-42.857 103.429 42.857 42.857 103.429zM768 365.714q0 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.143zM1097.143 494.286q0 44.571-32 67.714t-78.857 23.143h-76.571q-58.857-70.286-151.429-73.143 46.286-66.857 46.286-146.286 0-16.571-2.857-37.714 37.714 13.143 76 13.143 33.714 0 68-12.286t55.714-24.286 24.857-12q70.857 0 70.857 201.714zM1024 146.286q0 60.571-42.857 103.429t-103.429 42.857-103.429-42.857-42.857-103.429 42.857-103.429 103.429-42.857 103.429 42.857 42.857 103.429z" - ], - "width": 1097, - "attrs": [], - "isMulticolor": false, - "tags": [ - "group", - "users" - ], - "defaultCode": 61632, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 168, - "order": 685, - "name": "group, users", - "prevSize": 14, - "code": 61632 - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 168 - }, - { - "icon": { - "paths": [ - "M832 694.857q0-22.857-16-38.857l-118.857-118.857q-16-16-38.857-16-24 0-41.143 18.286 1.714 1.714 10.857 10.571t12.286 12.286 8.571 10.857 7.429 14.571 2 15.714q0 22.857-16 38.857t-38.857 16q-8.571 0-15.714-2t-14.571-7.429-10.857-8.571-12.286-12.286-10.571-10.857q-18.857 17.714-18.857 41.714 0 22.857 16 38.857l117.714 118.286q15.429 15.429 38.857 15.429 22.857 0 38.857-14.857l84-83.429q16-16 16-38.286zM430.286 292q0-22.857-16-38.857l-117.714-118.286q-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.857l118.857 118.857q15.429 15.429 38.857 15.429 24 0 41.143-17.714-1.714-1.714-10.857-10.571t-12.286-12.286-8.571-10.857-7.429-14.571-2-15.714q0-22.857 16-38.857t38.857-16q8.571 0 15.714 2t14.571 7.429 10.857 8.571 12.286 12.286 10.571 10.857q18.857-17.714 18.857-41.714zM941.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-117.714-118.286q-47.429-47.429-47.429-116 0-70.286 50.286-119.429l-50.286-50.286q-49.143 50.286-118.857 50.286-68.571 0-116.571-48l-118.857-118.857q-48-48-48-116.571t48.571-116l84-83.429q47.429-47.429 116-47.429 69.143 0 116.571 48.571l117.714 118.286q47.429 47.429 47.429 116 0 70.286-50.286 119.429l50.286 50.286q49.143-50.286 118.857-50.286 68.571 0 116.571 48l118.857 118.857q48 48 48 116.571z" - ], - "width": 951, - "attrs": [], - "isMulticolor": false, - "tags": [ - "chain", - "link" - ], - "defaultCode": 61633, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 169, - "order": 686, - "name": "chain, link", - "prevSize": 14, - "code": 61633 - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 169 - }, - { - "icon": { - "paths": [ - "M1097.143 658.286q0 90.857-64.286 155.143t-155.143 64.286h-621.714q-105.714 0-180.857-75.143t-75.143-180.857q0-75.429 40.571-138t106.857-93.429q-1.143-16-1.143-24.571 0-121.143 85.714-206.857t206.857-85.714q90.286 0 163.714 50.286t107.143 131.429q40-35.429 94.857-35.429 60.571 0 103.429 42.857t42.857 103.429q0 42.857-23.429 78.857 73.714 17.143 121.714 76.857t48 136.857z" - ], - "width": 1097, - "attrs": [], - "isMulticolor": false, - "tags": [ - "cloud" - ], - "defaultCode": 61634, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 170, - "order": 687, - "prevSize": 14, - "code": 61634, - "name": "cloud" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 170 - }, - { - "icon": { - "paths": [ - "M872.571 827.429q32 50.857 12.286 87.143t-80.286 36.286h-658.286q-60.571 0-80.286-36.286t12.286-87.143l287.429-453.143v-228h-36.571q-14.857 0-25.714-10.857t-10.857-25.714 10.857-25.714 25.714-10.857h292.571q14.857 0 25.714 10.857t10.857 25.714-10.857 25.714-25.714 10.857h-36.571v228zM427.429 413.143l-155.429 245.143h406.857l-155.429-245.143-11.429-17.714v-249.143h-73.143v249.143z" - ], - "width": 951, - "attrs": [], - "isMulticolor": false, - "tags": [ - "flask" - ], - "defaultCode": 61635, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 171, - "order": 688, - "prevSize": 14, - "code": 61635, - "name": "flask" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 171 - }, - { - "icon": { - "paths": [ - "M548.571 512q14.857 0 25.714 10.857t10.857 25.714-10.857 25.714-25.714 10.857-25.714-10.857-10.857-25.714 10.857-25.714 25.714-10.857zM720 548.571l289.714 227.429q16 11.429 14.286 32-2.857 20-20 29.143l-73.143 36.571q-7.429 4-16.571 4-9.714 0-17.714-4.571l-394.286-221.143-62.857 37.714q-4.571 2.286-6.857 2.857 8 28 5.714 55.429-4 44-32 84.286t-75.429 70.571q-75.429 48-158.286 48-77.714 0-126.857-44.571-51.429-48-45.143-118.286 4-43.429 32-84t74.857-70.857q75.429-48 158.857-48 47.429 0 86.286 17.714 5.143-7.429 12.571-12.571l69.714-41.714-69.714-41.714q-7.429-5.143-12.571-12.571-38.857 17.714-86.286 17.714-83.429 0-158.857-48-46.857-30.286-74.857-70.857t-32-84q-2.857-33.714 8.857-64.571t36.286-53.143q48.571-45.143 126.857-45.143 82.857 0 158.286 48 47.429 29.714 75.429 70.286t32 84.571q2.286 27.429-5.714 55.429 2.286 0.571 6.857 2.857l62.857 37.714 394.286-221.143q8-4.571 17.714-4.571 9.143 0 16.571 4l73.143 36.571q17.143 9.143 20 29.143 1.714 20.571-14.286 32zM330.857 400q26.286-24 12-61.714t-60.571-66.857q-52.571-33.714-109.714-33.714-42.286 0-64.571 20.571-26.286 24-12 61.714t60.571 66.857q52.571 33.714 109.714 33.714 42.286 0 64.571-20.571zM282.286 825.714q46.286-29.143 60.571-66.857t-12-61.714q-22.286-20.571-64.571-20.571-57.143 0-109.714 33.714-46.286 29.143-60.571 66.857t12 61.714q22.286 20.571 64.571 20.571 57.143 0 109.714-33.714zM384 475.429l54.857 33.143v-6.286q0-20.571 18.857-32l8-4.571-45.143-26.857-14.857 14.857q-1.714 1.714-5.714 6.286t-6.857 6.857q-1.143 1.143-2.286 2t-1.714 1.429zM512 603.429l54.857 18.286 420.571-329.143-73.143-36.571-438.857 246.286v64.571l-91.429 54.857 5.143 4.571q1.143 1.143 4 3.429 2.286 2.286 6.286 6.857t6.286 6.857l14.857 14.857zM914.286 841.143l73.143-36.571-297.143-233.143-101.143 78.857q-1.143 1.714-7.429 4z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "cut", - "scissors" - ], - "defaultCode": 61636, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 172, - "order": 689, - "name": "cut, scissors", - "prevSize": 14, - "code": 61636 - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 172 - }, - { - "icon": { - "paths": [ - "M969.143 219.429q22.857 0 38.857 16t16 38.857v694.857q0 22.857-16 38.857t-38.857 16h-548.571q-22.857 0-38.857-16t-16-38.857v-164.571h-310.857q-22.857 0-38.857-16t-16-38.857v-384q0-22.857 11.429-50.286t27.429-43.429l233.143-233.143q16-16 43.429-27.429t50.286-11.429h237.714q22.857 0 38.857 16t16 38.857v187.429q38.857-22.857 73.143-22.857h237.714zM658.286 341.143l-170.857 170.857h170.857v-170.857zM292.571 121.714l-170.857 170.857h170.857v-170.857zM404.571 491.429l180.571-180.571v-237.714h-219.429v237.714q0 22.857-16 38.857t-38.857 16h-237.714v365.714h292.571v-146.286q0-22.857 11.429-50.286t27.429-43.429zM950.857 950.857v-658.286h-219.429v237.714q0 22.857-16 38.857t-38.857 16h-237.714v365.714h512z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "copy", - "files-o" - ], - "defaultCode": 61637, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 173, - "order": 690, - "name": "copy, files-o", - "prevSize": 14, - "code": 61637 - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 173 - }, - { - "icon": { - "paths": [ - "M802.286 791.429q0 66.857-45.143 112t-112 45.143q-77.143 0-134.286-57.143l-444-443.429q-64.571-65.714-64.571-154.857 0-90.857 62.857-154.286t153.714-63.429q90.286 0 156 64.571l345.714 346.286q5.714 5.714 5.714 12.571 0 9.143-17.429 26.571t-26.571 17.429q-7.429 0-13.143-5.714l-346.286-346.857q-45.143-44-103.429-44-60.571 0-102.286 42.857t-41.714 103.429q0 60 43.429 103.429l443.429 444q36 36 82.857 36 36.571 0 60.571-24t24-60.571q0-46.857-36-82.857l-332-332q-14.857-13.714-34.286-13.714-16.571 0-27.429 10.857t-10.857 27.429q0 18.286 14.286 33.714l234.286 234.286q5.714 5.714 5.714 12.571 0 9.143-17.714 26.857t-26.857 17.714q-6.857 0-12.571-5.714l-234.286-234.286q-36-34.857-36-85.143 0-46.857 32.571-79.429t79.429-32.571q50.286 0 85.143 36l332 332q57.143 56 57.143 134.286z" - ], - "width": 805, - "attrs": [], - "isMulticolor": false, - "tags": [ - "paperclip" - ], - "defaultCode": 61638, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 174, - "order": 691, - "prevSize": 14, - "code": 61638, - "name": "paperclip" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 174 - }, - { - "icon": { - "paths": [ - "M219.429 877.714h438.857v-219.429h-438.857v219.429zM731.429 877.714h73.143v-512q0-8-5.714-22t-11.429-19.714l-160.571-160.571q-5.714-5.714-19.429-11.429t-22.286-5.714v237.714q0 22.857-16 38.857t-38.857 16h-329.143q-22.857 0-38.857-16t-16-38.857v-237.714h-73.143v731.429h73.143v-237.714q0-22.857 16-38.857t38.857-16h475.429q22.857 0 38.857 16t16 38.857v237.714zM512 347.429v-182.857q0-7.429-5.429-12.857t-12.857-5.429h-109.714q-7.429 0-12.857 5.429t-5.429 12.857v182.857q0 7.429 5.429 12.857t12.857 5.429h109.714q7.429 0 12.857-5.429t5.429-12.857zM877.714 365.714v530.286q0 22.857-16 38.857t-38.857 16h-768q-22.857 0-38.857-16t-16-38.857v-768q0-22.857 16-38.857t38.857-16h530.286q22.857 0 50.286 11.429t43.429 27.429l160 160q16 16 27.429 43.429t11.429 50.286z" - ], - "width": 877.7142857142858, - "attrs": [], - "isMulticolor": false, - "tags": [ - "floppy-o", - "save" - ], - "defaultCode": 61639, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 175, - "order": 692, - "name": "floppy-o, save", - "prevSize": 14, - "code": 61639 - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 175 - }, - { - "icon": { - "paths": [ - "M877.714 237.714v548.571q0 68-48.286 116.286t-116.286 48.286h-548.571q-68 0-116.286-48.286t-48.286-116.286v-548.571q0-68 48.286-116.286t116.286-48.286h548.571q68 0 116.286 48.286t48.286 116.286z" - ], - "width": 877.7142857142858, - "attrs": [], - "isMulticolor": false, - "tags": [ - "square" - ], - "defaultCode": 61640, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 176, - "order": 693, - "prevSize": 14, - "code": 61640, - "name": "square" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 176 - }, - { - "icon": { - "paths": [ - "M877.714 768v73.143q0 14.857-10.857 25.714t-25.714 10.857h-804.571q-14.857 0-25.714-10.857t-10.857-25.714v-73.143q0-14.857 10.857-25.714t25.714-10.857h804.571q14.857 0 25.714 10.857t10.857 25.714zM877.714 475.429v73.143q0 14.857-10.857 25.714t-25.714 10.857h-804.571q-14.857 0-25.714-10.857t-10.857-25.714v-73.143q0-14.857 10.857-25.714t25.714-10.857h804.571q14.857 0 25.714 10.857t10.857 25.714zM877.714 182.857v73.143q0 14.857-10.857 25.714t-25.714 10.857h-804.571q-14.857 0-25.714-10.857t-10.857-25.714v-73.143q0-14.857 10.857-25.714t25.714-10.857h804.571q14.857 0 25.714 10.857t10.857 25.714z" - ], - "width": 877.7142857142858, - "attrs": [], - "isMulticolor": false, - "tags": [ - "bars", - "navicon", - "reorder" - ], - "defaultCode": 61641, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 177, - "order": 694, - "name": "bars, navicon, reorder", - "prevSize": 14, - "code": 61641 - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 177 - }, - { - "icon": { - "paths": [ - "M219.429 804.571q0 45.714-32 77.714t-77.714 32-77.714-32-32-77.714 32-77.714 77.714-32 77.714 32 32 77.714zM219.429 512q0 45.714-32 77.714t-77.714 32-77.714-32-32-77.714 32-77.714 77.714-32 77.714 32 32 77.714zM1024 749.714v109.714q0 7.429-5.429 12.857t-12.857 5.429h-694.857q-7.429 0-12.857-5.429t-5.429-12.857v-109.714q0-7.429 5.429-12.857t12.857-5.429h694.857q7.429 0 12.857 5.429t5.429 12.857zM219.429 219.429q0 45.714-32 77.714t-77.714 32-77.714-32-32-77.714 32-77.714 77.714-32 77.714 32 32 77.714zM1024 457.143v109.714q0 7.429-5.429 12.857t-12.857 5.429h-694.857q-7.429 0-12.857-5.429t-5.429-12.857v-109.714q0-7.429 5.429-12.857t12.857-5.429h694.857q7.429 0 12.857 5.429t5.429 12.857zM1024 164.571v109.714q0 7.429-5.429 12.857t-12.857 5.429h-694.857q-7.429 0-12.857-5.429t-5.429-12.857v-109.714q0-7.429 5.429-12.857t12.857-5.429h694.857q7.429 0 12.857 5.429t5.429 12.857z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "list-ul" - ], - "defaultCode": 61642, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 178, - "order": 695, - "prevSize": 14, - "code": 61642, - "name": "list-ul" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 178 - }, - { - "icon": { - "paths": [ - "M217.714 925.714q0 45.714-31.143 72t-77.429 26.286q-60.571 0-98.286-37.714l32.571-50.286q28 25.714 60.571 25.714 16.571 0 28.857-8.286t12.286-24.286q0-36.571-60-32l-14.857-32q4.571-5.714 18.571-24.857t24.286-30.857 21.143-22v-0.571q-9.143 0-27.714 0.571t-27.714 0.571v30.286h-60.571v-86.857h190.286v50.286l-54.286 65.714q29.143 6.857 46.286 28t17.143 50.286zM218.857 567.429v90.857h-206.857q-3.429-20.571-3.429-30.857 0-29.143 13.429-53.143t32.286-38.857 37.714-27.143 32.286-24.857 13.429-25.714q0-14.286-8.286-22t-22.571-7.714q-26.286 0-46.286 33.143l-48.571-33.714q13.714-29.143 40.857-45.429t60.286-16.286q41.714 0 70.286 23.714t28.571 64.286q0 28.571-19.429 52.286t-42.857 36.857-43.143 28.857-20.286 30h72.571v-34.286h60zM1024 749.714v109.714q0 7.429-5.429 12.857t-12.857 5.429h-694.857q-7.429 0-12.857-5.429t-5.429-12.857v-109.714q0-8 5.143-13.143t13.143-5.143h694.857q7.429 0 12.857 5.429t5.429 12.857zM219.429 236v56.571h-191.429v-56.571h61.143q0-23.429 0.286-69.714t0.286-69.143v-6.857h-1.143q-4.571 9.714-28.571 30.857l-40.571-43.429 77.714-72.571h60.571v230.857h61.714zM1024 457.143v109.714q0 7.429-5.429 12.857t-12.857 5.429h-694.857q-7.429 0-12.857-5.429t-5.429-12.857v-109.714q0-8 5.143-13.143t13.143-5.143h694.857q7.429 0 12.857 5.429t5.429 12.857zM1024 164.571v109.714q0 7.429-5.429 12.857t-12.857 5.429h-694.857q-7.429 0-12.857-5.429t-5.429-12.857v-109.714q0-7.429 5.429-12.857t12.857-5.429h694.857q7.429 0 12.857 5.429t5.429 12.857z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "list-ol" - ], - "defaultCode": 61643, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 179, - "order": 696, - "prevSize": 14, - "code": 61643, - "name": "list-ol" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 179 - }, - { - "icon": { - "paths": [ - "M1005.714 512q8 0 13.143 5.143t5.143 13.143v36.571q0 8-5.143 13.143t-13.143 5.143h-987.429q-8 0-13.143-5.143t-5.143-13.143v-36.571q0-8 5.143-13.143t13.143-5.143h987.429zM276 475.429q-16-20-29.143-45.714-27.429-55.429-27.429-107.429 0-103.429 76.571-176.571 76-72.571 224.571-72.571 28.571 0 95.429 10.857 37.714 6.857 101.143 27.429 5.714 21.714 12 67.429 8 70.286 8 104.571 0 10.286-2.857 25.714l-6.857 1.714-48-3.429-8-1.143q-28.571-85.143-58.857-117.143-50.286-52-120-52-65.143 0-104 33.714-38.286 33.143-38.286 83.429 0 41.714 37.714 80t159.429 73.714q39.429 11.429 98.857 37.714 33.143 16 54.286 29.714h-424.571zM565.714 621.714h234.857q4 22.286 4 52.571 0 63.429-23.429 121.143-13.143 31.429-40.571 59.429-21.143 20-62.286 46.286-45.714 27.429-87.429 37.714-45.714 12-116 12-65.143 0-111.429-13.143l-80-22.857q-32.571-9.143-41.143-16-4.571-4.571-4.571-12.571v-7.429q0-61.714-1.143-89.143-0.571-17.143 0-38.857l1.143-21.143v-25.143l58.286-1.143q8.571 19.429 17.143 40.571t12.857 32 7.143 15.429q20 32.571 45.714 53.714 24.571 20.571 60 32.571 33.714 12.571 75.429 12.571 36.571 0 79.429-15.429 44-14.857 69.714-49.143 26.857-34.857 26.857-73.714 0-48-46.286-89.714-19.429-16.571-78.286-40.571z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "strikethrough" - ], - "defaultCode": 61644, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 180, - "order": 697, - "prevSize": 14, - "code": 61644, - "name": "strikethrough" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 180 - }, - { - "icon": { - "paths": [ - "M27.429 127.429q-21.143-1.143-25.714-2.286l-1.714-50.286q7.429-0.571 22.857-0.571 34.286 0 64 2.286 75.429 4 94.857 4 49.143 0 96-1.714 66.286-2.286 83.429-2.857 32 0 49.143-1.143l-0.571 8 1.143 36.571v5.143q-34.286 5.143-70.857 5.143-34.286 0-45.143 14.286-7.429 8-7.429 75.429 0 7.429 0.286 18.571t0.286 14.571l0.571 130.857 8 160q3.429 70.857 29.143 115.429 20 33.714 54.857 52.571 50.286 26.857 101.143 26.857 59.429 0 109.143-16 32-10.286 56.571-29.143 27.429-20.571 37.143-36.571 20.571-32 30.286-65.143 12-41.714 12-130.857 0-45.143-2-73.143t-6.286-70-7.714-91.143l-2.286-33.714q-2.857-38.286-13.714-50.286-19.429-20-44-19.429l-57.143 1.143-8-1.714 1.143-49.143h48l117.143 5.714q43.429 1.714 112-5.714l10.286 1.143q3.429 21.714 3.429 29.143 0 4-2.286 17.714-25.714 6.857-48 7.429-41.714 6.286-45.143 9.714-8.571 8.571-8.571 23.429 0 4 0.857 15.429t0.857 17.714q4.571 10.857 12.571 226.286 3.429 111.429-8.571 173.714-8.571 43.429-23.429 69.714-21.714 37.143-64 70.286-42.857 32.571-104 50.857-62.286 18.857-145.714 18.857-95.429 0-162.286-26.286-68-26.857-102.286-69.714-34.857-43.429-47.429-111.429-9.143-45.714-9.143-135.429v-190.286q0-107.429-9.714-121.714-14.286-20.571-84-22.286zM877.714 932.571v-36.571q0-8-5.143-13.143t-13.143-5.143h-841.143q-8 0-13.143 5.143t-5.143 13.143v36.571q0 8 5.143 13.143t13.143 5.143h841.143q8 0 13.143-5.143t5.143-13.143z" - ], - "width": 877.7142857142858, - "attrs": [], - "isMulticolor": false, - "tags": [ - "underline" - ], - "defaultCode": 61645, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 181, - "order": 698, - "prevSize": 14, - "code": 61645, - "name": "underline" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 181 - }, - { - "icon": { - "paths": [ - "M292.571 786.286v-109.714q0-8-5.143-13.143t-13.143-5.143h-182.857q-8 0-13.143 5.143t-5.143 13.143v109.714q0 8 5.143 13.143t13.143 5.143h182.857q8 0 13.143-5.143t5.143-13.143zM292.571 566.857v-109.714q0-8-5.143-13.143t-13.143-5.143h-182.857q-8 0-13.143 5.143t-5.143 13.143v109.714q0 8 5.143 13.143t13.143 5.143h182.857q8 0 13.143-5.143t5.143-13.143zM585.143 786.286v-109.714q0-8-5.143-13.143t-13.143-5.143h-182.857q-8 0-13.143 5.143t-5.143 13.143v109.714q0 8 5.143 13.143t13.143 5.143h182.857q8 0 13.143-5.143t5.143-13.143zM292.571 347.429v-109.714q0-8-5.143-13.143t-13.143-5.143h-182.857q-8 0-13.143 5.143t-5.143 13.143v109.714q0 8 5.143 13.143t13.143 5.143h182.857q8 0 13.143-5.143t5.143-13.143zM585.143 566.857v-109.714q0-8-5.143-13.143t-13.143-5.143h-182.857q-8 0-13.143 5.143t-5.143 13.143v109.714q0 8 5.143 13.143t13.143 5.143h182.857q8 0 13.143-5.143t5.143-13.143zM877.714 786.286v-109.714q0-8-5.143-13.143t-13.143-5.143h-182.857q-8 0-13.143 5.143t-5.143 13.143v109.714q0 8 5.143 13.143t13.143 5.143h182.857q8 0 13.143-5.143t5.143-13.143zM585.143 347.429v-109.714q0-8-5.143-13.143t-13.143-5.143h-182.857q-8 0-13.143 5.143t-5.143 13.143v109.714q0 8 5.143 13.143t13.143 5.143h182.857q8 0 13.143-5.143t5.143-13.143zM877.714 566.857v-109.714q0-8-5.143-13.143t-13.143-5.143h-182.857q-8 0-13.143 5.143t-5.143 13.143v109.714q0 8 5.143 13.143t13.143 5.143h182.857q8 0 13.143-5.143t5.143-13.143zM877.714 347.429v-109.714q0-8-5.143-13.143t-13.143-5.143h-182.857q-8 0-13.143 5.143t-5.143 13.143v109.714q0 8 5.143 13.143t13.143 5.143h182.857q8 0 13.143-5.143t5.143-13.143zM950.857 164.571v621.714q0 37.714-26.857 64.571t-64.571 26.857h-768q-37.714 0-64.571-26.857t-26.857-64.571v-621.714q0-37.714 26.857-64.571t64.571-26.857h768q37.714 0 64.571 26.857t26.857 64.571z" - ], - "width": 951, - "attrs": [], - "isMulticolor": false, - "tags": [ - "table" - ], - "defaultCode": 61646, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 182, - "order": 699, - "prevSize": 14, - "code": 61646, - "name": "table" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 182 - }, - { - "icon": { - "paths": [ - "M680 332l167.429-167.429-61.143-61.143-167.429 167.429zM935.429 164.571q0 15.429-10.286 25.714l-734.857 734.857q-10.286 10.286-25.714 10.286t-25.714-10.286l-113.143-113.143q-10.286-10.286-10.286-25.714t10.286-25.714l734.857-734.857q10.286-10.286 25.714-10.286t25.714 10.286l113.143 113.143q10.286 10.286 10.286 25.714zM163.429 56l56 17.143-56 17.143-17.143 56-17.143-56-56-17.143 56-17.143 17.143-56zM363.429 148.571l112 34.286-112 34.286-34.286 112-34.286-112-112-34.286 112-34.286 34.286-112zM894.857 421.714l56 17.143-56 17.143-17.143 56-17.143-56-56-17.143 56-17.143 17.143-56zM529.143 56l56 17.143-56 17.143-17.143 56-17.143-56-56-17.143 56-17.143 17.143-56z" - ], - "width": 951, - "attrs": [], - "isMulticolor": false, - "tags": [ - "magic" - ], - "defaultCode": 61648, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 183, - "order": 700, - "prevSize": 14, - "code": 61648, - "name": "magic" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 183 - }, - { - "icon": { - "paths": [ - "M365.714 804.571q0-29.714-21.714-51.429t-51.429-21.714-51.429 21.714-21.714 51.429 21.714 51.429 51.429 21.714 51.429-21.714 21.714-51.429zM146.286 512h219.429v-146.286h-90.286q-7.429 0-12.571 5.143l-111.429 111.429q-5.143 5.143-5.143 12.571v17.143zM877.714 804.571q0-29.714-21.714-51.429t-51.429-21.714-51.429 21.714-21.714 51.429 21.714 51.429 51.429 21.714 51.429-21.714 21.714-51.429zM1024 182.857v585.143q0 8.571-2.286 15.143t-7.714 10.571-9.429 6.571-13.429 3.429-12.857 1.143-14.571 0-12.857-0.286q0 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-36.571q-1.714 0-12.857 0.286t-14.571 0-12.857-1.143-13.429-3.429-9.429-6.571-7.714-10.571-2.286-15.143q0-14.857 10.857-25.714t25.714-10.857v-182.857q0-4.571-0.286-20t0-21.714 1.429-19.714 3.714-21.143 8-17.429 12.857-17.143l113.143-113.143q10.857-10.857 28.857-18.286t33.429-7.429h91.429v-109.714q0-14.857 10.857-25.714t25.714-10.857h585.143q14.857 0 25.714 10.857t10.857 25.714z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "truck" - ], - "defaultCode": 61649, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 184, - "order": 701, - "prevSize": 14, - "code": 61649, - "name": "truck" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 184 - }, - { - "icon": { - "paths": [ - "M877.714 512q0 119.429-58.857 220.286t-159.714 159.714-220.286 58.857q-63.429 0-124.571-18.286 33.714-53.143 44.571-93.714 5.143-19.429 30.857-120.571 11.429 22.286 41.714 38.571t65.143 16.286q69.143 0 123.429-39.143t84-107.714 29.714-154.286q0-65.143-34-122.286t-98.571-93.143-145.714-36q-60 0-112 16.571t-88.286 44-62.286 63.143-38.286 74-12.286 76.571q0 59.429 22.857 104.571t66.857 63.429q17.143 6.857 21.714-11.429 1.143-4 4.571-17.714t4.571-17.143q3.429-13.143-6.286-24.571-29.143-34.857-29.143-86.286 0-86.286 59.714-148.286t156.286-62q86.286 0 134.571 46.857t48.286 121.714q0 97.143-39.143 165.143t-100.286 68q-34.857 0-56-24.857t-13.143-59.714q4.571-20 15.143-53.429t17.143-58.857 6.571-43.143q0-28.571-15.429-47.429t-44-18.857q-35.429 0-60 32.571t-24.571 81.143q0 41.714 14.286 69.714l-56.571 238.857q-9.714 40-7.429 101.143-117.714-52-190.286-160.571t-72.571-241.714q0-119.429 58.857-220.286t159.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": [ - "pinterest" - ], - "defaultCode": 61650, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 185, - "order": 702, - "prevSize": 14, - "code": 61650, - "name": "pinterest" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 185 - }, - { - "icon": { - "paths": [ - "M713.143 73.143q68 0 116.286 48.286t48.286 116.286v548.571q0 68-48.286 116.286t-116.286 48.286h-414.286q48.571-69.714 61.714-120 5.143-19.429 30.286-119.429 12 22.286 42 38.286t64.286 16q103.429 0 168.857-84.286t65.429-213.429q0-48-20-92.857t-55.143-79.429-87.143-55.429-112.571-20.857q-59.429 0-111.143 16.286t-87.429 43.714-61.429 62.571-38 73.143-12.286 75.714q0 58.286 22.571 102.857t66.571 62.857q7.429 2.857 13.429 0t8.286-10.857q5.714-25.143 8.571-34.857 3.429-13.143-6.286-24-28.571-35.429-28.571-85.714 0-85.714 59.143-146.571t154.571-60.857q85.143 0 132.857 46.286t47.714 120q0 96-38.571 163.429t-99.143 67.429q-34.286 0-55.429-24.857t-13.143-59.143q4.571-19.429 15.143-52.857t16.857-58.286 6.286-42.571q0-28-15.143-46.571t-43.143-18.571q-34.857 0-59.143 32.286t-24.286 79.714q0 41.143 13.714 69.143l-56 236.571q-13.714 57.143-4 145.143h-104.571q-68 0-116.286-48.286t-48.286-116.286v-548.571q0-68 48.286-116.286t116.286-48.286h548.571z" - ], - "width": 877.7142857142858, - "attrs": [], - "isMulticolor": false, - "tags": [ - "pinterest-square" - ], - "defaultCode": 61651, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 186, - "order": 703, - "prevSize": 14, - "code": 61651, - "name": "pinterest-square" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 186 - }, - { - "icon": { - "paths": [ - "M473.714 696q0 43.429-33.429 64.286t-79.714 20.857q-23.429 0-46-5.429t-43.143-16.286-33.143-30.286-12.571-44.571q0-26.286 14.286-45.714t37.429-29.429 46.857-14.286 48.286-4.286q11.429 0 17.714 1.143 1.143 0.571 13.143 9.429t14.857 10.857 13.143 10.286 14 12.571 10.857 12.857 9.714 14.857 5.143 15.143 2.571 18zM431.429 384.571q0 34.286-18.857 56.857t-52.571 22.571q-30.286 0-53.143-24.286t-32.857-55.143-10-60.571q0-34.857 18.286-59.429t52.571-24.571q30.286 0 53.429 25.714t33.143 57.714 10 61.143zM492 237.714l50.286-36.571h-151.429q-48.571 0-92 18.286t-72.857 56-29.429 87.429q0 53.143 36.857 88.286t90.571 35.143q12.571 0 24.571-1.714-7.429 16.571-7.429 30.857 0 25.143 22.857 53.714-100 6.857-146.857 36-26.857 16.571-43.143 41.714t-16.286 54.286q0 24.571 10.571 44.286t27.714 32.286 39.429 21.143 44.286 12 43.714 3.429q34.286 0 68.857-8.857t64.857-26.286 49.143-47.143 18.857-66.857q0-28-11.429-51.143t-28-38-33.143-27.143-28-25.143-11.429-25.429 8.857-24.286 21.429-22.571 25.143-24 21.429-34 8.857-47.143q0-34.286-12.857-56.857t-41.429-51.714h47.429zM658.286 493.714h73.143v-36.571h-73.143v-73.143h-36.571v73.143h-73.143v36.571h73.143v91.429h36.571v-91.429zM877.714 237.714v548.571q0 68-48.286 116.286t-116.286 48.286h-548.571q-68 0-116.286-48.286t-48.286-116.286v-548.571q0-68 48.286-116.286t116.286-48.286h548.571q68 0 116.286 48.286t48.286 116.286z" - ], - "width": 877.7142857142858, - "attrs": [], - "isMulticolor": false, - "tags": [ - "google-plus-square" - ], - "defaultCode": 61652, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 187, - "order": 704, - "prevSize": 14, - "code": 61652, - "name": "google-plus-square" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 187 - }, - { - "icon": { - "paths": [ - "M420 454.857q0 20.571 18.286 40.286t44.286 38.857 51.714 42 44 59.429 18.286 81.143q0 51.429-27.429 98.857-41.143 69.714-120.571 102.571t-170.286 32.857q-75.429 0-140.857-23.714t-98-78.571q-21.143-34.286-21.143-74.857 0-46.286 25.429-85.714t67.714-65.714q74.857-46.857 230.857-57.143-18.286-24-27.143-42.286t-8.857-41.714q0-20.571 12-48.571-26.286 2.286-38.857 2.286-84.571 0-142.571-55.143t-58-139.714q0-46.857 20.571-90.857t56.571-74.857q44-37.714 104.286-56t124.286-18.286h238.857l-78.857 50.286h-74.857q42.286 36 64 76t21.714 91.429q0 41.143-14 74t-33.714 53.143-39.714 37.143-34 35.143-14 37.714zM336.571 400q21.714 0 44.571-9.429t37.714-24.857q30.286-32.571 30.286-90.857 0-33.143-9.714-71.429t-27.714-74-48.286-59.143-66.857-23.429q-24 0-47.143 11.143t-37.429 30q-26.857 33.714-26.857 91.429 0 26.286 5.714 55.714t18 58.857 29.714 52.857 42.857 38.286 55.143 14.857zM337.714 898.857q33.143 0 63.714-7.429t56.571-22.286 41.714-41.714 15.714-62.286q0-14.286-4-28t-8.286-24-15.429-23.714-16.857-20-22-19.714-20.857-16.571-23.714-17.143-20.857-14.857q-9.143-1.143-27.429-1.143-30.286 0-60 4t-61.429 14.286-55.429 26.286-39.143 42.571-15.429 60.286q0 40 20 70.571t52.286 47.429 68 25.143 72.857 8.286zM800.571 398.286h121.714v61.714h-121.714v125.143h-60v-125.143h-121.143v-61.714h121.143v-124h60v124z" - ], - "width": 951, - "attrs": [], - "isMulticolor": false, - "tags": [ - "google-plus" - ], - "defaultCode": 61653, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 188, - "order": 705, - "prevSize": 14, - "code": 61653, - "name": "google-plus" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 188 - }, - { - "icon": { - "paths": [ - "M438.857 658.286h219.429v-54.857h-73.143v-256h-65.143l-84.571 78.286 44 45.714q24-21.143 31.429-32.571h1.143v164.571h-73.143v54.857zM731.429 512q0 40-12 81.143t-34 76.571-58 57.714-78.857 22.286-78.857-22.286-58-57.714-34-76.571-12-81.143 12-81.143 34-76.571 58-57.714 78.857-22.286 78.857 22.286 58 57.714 34 76.571 12 81.143zM1024 658.286v-292.571q-60.571 0-103.429-42.857t-42.857-103.429h-658.286q0 60.571-42.857 103.429t-103.429 42.857v292.571q60.571 0 103.429 42.857t42.857 103.429h658.286q0-60.571 42.857-103.429t103.429-42.857zM1097.143 182.857v658.286q0 14.857-10.857 25.714t-25.714 10.857h-1024q-14.857 0-25.714-10.857t-10.857-25.714v-658.286q0-14.857 10.857-25.714t25.714-10.857h1024q14.857 0 25.714 10.857t10.857 25.714z" - ], - "width": 1097, - "attrs": [], - "isMulticolor": false, - "tags": [ - "money" - ], - "defaultCode": 61654, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 189, - "order": 706, - "prevSize": 14, - "code": 61654, - "name": "money" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 189 - }, - { - "icon": { - "paths": [ - "M585.143 402.286q0 14.857-10.857 25.714l-256 256q-10.857 10.857-25.714 10.857t-25.714-10.857l-256-256q-10.857-10.857-10.857-25.714t10.857-25.714 25.714-10.857h512q14.857 0 25.714 10.857t10.857 25.714z" - ], - "width": 585, - "attrs": [], - "isMulticolor": false, - "tags": [ - "caret-down" - ], - "defaultCode": 61655, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 190, - "order": 707, - "prevSize": 14, - "code": 61655, - "name": "caret-down" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 190 - }, - { - "icon": { - "paths": [ - "M585.143 694.857q0 14.857-10.857 25.714t-25.714 10.857h-512q-14.857 0-25.714-10.857t-10.857-25.714 10.857-25.714l256-256q10.857-10.857 25.714-10.857t25.714 10.857l256 256q10.857 10.857 10.857 25.714z" - ], - "width": 585, - "attrs": [], - "isMulticolor": false, - "tags": [ - "caret-up" - ], - "defaultCode": 61656, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 191, - "order": 708, - "prevSize": 14, - "code": 61656, - "name": "caret-up" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 191 - }, - { - "icon": { - "paths": [ - "M365.714 256v512q0 14.857-10.857 25.714t-25.714 10.857-25.714-10.857l-256-256q-10.857-10.857-10.857-25.714t10.857-25.714l256-256q10.857-10.857 25.714-10.857t25.714 10.857 10.857 25.714z" - ], - "width": 366, - "attrs": [], - "isMulticolor": false, - "tags": [ - "caret-left" - ], - "defaultCode": 61657, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 192, - "order": 709, - "prevSize": 14, - "code": 61657, - "name": "caret-left" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 192 - }, - { - "icon": { - "paths": [ - "M329.143 512q0 14.857-10.857 25.714l-256 256q-10.857 10.857-25.714 10.857t-25.714-10.857-10.857-25.714v-512q0-14.857 10.857-25.714t25.714-10.857 25.714 10.857l256 256q10.857 10.857 10.857 25.714z" - ], - "width": 366, - "attrs": [], - "isMulticolor": false, - "tags": [ - "caret-right" - ], - "defaultCode": 61658, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 193, - "order": 710, - "prevSize": 14, - "code": 61658, - "name": "caret-right" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 193 - }, - { - "icon": { - "paths": [ - "M91.429 877.714h347.429v-658.286h-365.714v640q0 7.429 5.429 12.857t12.857 5.429zM877.714 859.429v-640h-365.714v658.286h347.429q7.429 0 12.857-5.429t5.429-12.857zM950.857 164.571v694.857q0 37.714-26.857 64.571t-64.571 26.857h-768q-37.714 0-64.571-26.857t-26.857-64.571v-694.857q0-37.714 26.857-64.571t64.571-26.857h768q37.714 0 64.571 26.857t26.857 64.571z" - ], - "width": 951, - "attrs": [], - "isMulticolor": false, - "tags": [ - "columns" - ], - "defaultCode": 61659, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 194, - "order": 711, - "prevSize": 14, - "code": 61659, - "name": "columns2" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 194 - }, - { - "icon": { - "paths": [ - "M585.143 621.714q0 14.857-10.857 25.714l-256 256q-10.857 10.857-25.714 10.857t-25.714-10.857l-256-256q-10.857-10.857-10.857-25.714t10.857-25.714 25.714-10.857h512q14.857 0 25.714 10.857t10.857 25.714zM585.143 402.286q0 14.857-10.857 25.714t-25.714 10.857h-512q-14.857 0-25.714-10.857t-10.857-25.714 10.857-25.714l256-256q10.857-10.857 25.714-10.857t25.714 10.857l256 256q10.857 10.857 10.857 25.714z" - ], - "width": 585, - "attrs": [], - "isMulticolor": false, - "tags": [ - "sort", - "unsorted" - ], - "defaultCode": 61660, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 195, - "order": 712, - "name": "sort, unsorted", - "prevSize": 14, - "code": 61660 - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 195 - }, - { - "icon": { - "paths": [ - "M585.143 621.714q0 14.857-10.857 25.714l-256 256q-10.857 10.857-25.714 10.857t-25.714-10.857l-256-256q-10.857-10.857-10.857-25.714t10.857-25.714 25.714-10.857h512q14.857 0 25.714 10.857t10.857 25.714z" - ], - "width": 585, - "attrs": [], - "isMulticolor": false, - "tags": [ - "sort-desc", - "sort-down" - ], - "defaultCode": 61661, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 196, - "order": 713, - "name": "sort-desc, sort-down", - "prevSize": 14, - "code": 61661 - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 196 - }, - { - "icon": { - "paths": [ - "M585.143 402.286q0 14.857-10.857 25.714t-25.714 10.857h-512q-14.857 0-25.714-10.857t-10.857-25.714 10.857-25.714l256-256q10.857-10.857 25.714-10.857t25.714 10.857l256 256q10.857 10.857 10.857 25.714z" - ], - "width": 585, - "attrs": [], - "isMulticolor": false, - "tags": [ - "sort-asc", - "sort-up" - ], - "defaultCode": 61662, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 197, - "order": 714, - "name": "sort-asc, sort-up", - "prevSize": 14, - "code": 61662 - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 197 - }, - { - "icon": { - "paths": [ - "M1024 405.714v453.714q0 37.714-26.857 64.571t-64.571 26.857h-841.143q-37.714 0-64.571-26.857t-26.857-64.571v-453.714q25.143 28 57.714 49.714 206.857 140.571 284 197.143 32.571 24 52.857 37.429t54 27.429 62.857 14h1.143q29.143 0 62.857-14t54-27.429 52.857-37.429q97.143-70.286 284.571-197.143 32.571-22.286 57.143-49.714zM1024 237.714q0 45.143-28 86.286t-69.714 70.286q-214.857 149.143-267.429 185.714-5.714 4-24.286 17.429t-30.857 21.714-29.714 18.571-32.857 15.429-28.571 5.143h-1.143q-13.143 0-28.571-5.143t-32.857-15.429-29.714-18.571-30.857-21.714-24.286-17.429q-52-36.571-149.714-104.286t-117.143-81.429q-35.429-24-66.857-66t-31.429-78q0-44.571 23.714-74.286t67.714-29.714h841.143q37.143 0 64.286 26.857t27.143 64.571z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "envelope" - ], - "defaultCode": 61664, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 198, - "order": 715, - "prevSize": 14, - "code": 61664, - "name": "envelope" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 198 - }, - { - "icon": { - "paths": [ - "M199.429 357.143v566.286h-188.571v-566.286h188.571zM211.429 182.286q0.571 41.714-28.857 69.714t-77.429 28h-1.143q-46.857 0-75.429-28t-28.571-69.714q0-42.286 29.429-70t76.857-27.714 76 27.714 29.143 70zM877.714 598.857v324.571h-188v-302.857q0-60-23.143-94t-72.286-34q-36 0-60.286 19.714t-36.286 48.857q-6.286 17.143-6.286 46.286v316h-188q1.143-228 1.143-369.714t-0.571-169.143l-0.571-27.429h188v82.286h-1.143q11.429-18.286 23.429-32t32.286-29.714 49.714-24.857 65.429-8.857q97.714 0 157.143 64.857t59.429 190z" - ], - "width": 877.7142857142858, - "attrs": [], - "isMulticolor": false, - "tags": [ - "linkedin" - ], - "defaultCode": 61665, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 199, - "order": 716, - "prevSize": 14, - "code": 61665, - "name": "linkedin" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 199 - }, - { - "icon": { - "paths": [ - "M877.714 512q0 89.143-34.857 170.286t-93.714 140-140 93.714-170.286 34.857q-98.286 0-186.857-41.429t-150.857-116.857q-4-5.714-3.714-12.857t4.857-11.714l78.286-78.857q5.714-5.143 14.286-5.143 9.143 1.143 13.143 6.857 41.714 54.286 102.286 84t128.571 29.714q59.429 0 113.429-23.143t93.429-62.571 62.571-93.429 23.143-113.429-23.143-113.429-62.571-93.429-93.429-62.571-113.429-23.143q-56 0-107.429 20.286t-91.429 58l78.286 78.857q17.714 17.143 8 39.429-9.714 22.857-33.714 22.857h-256q-14.857 0-25.714-10.857t-10.857-25.714v-256q0-24 22.857-33.714 22.286-9.714 39.429 8l74.286 73.714q61.143-57.714 139.714-89.429t162.571-31.714q89.143 0 170.286 34.857t140 93.714 93.714 140 34.857 170.286z" - ], - "width": 877.7142857142858, - "attrs": [], - "isMulticolor": false, - "tags": [ - "rotate-left", - "undo" - ], - "defaultCode": 61666, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 200, - "order": 717, - "name": "rotate-left, undo", - "prevSize": 14, - "code": 61666 - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 200 - }, - { - "icon": { - "paths": [ - "M1012 877.714q0 30.286-21.143 51.429l-61.143 61.714q-22.286 21.143-52 21.143-30.286 0-51.429-21.143l-207.429-208q-21.714-20.571-21.714-51.429 0-30.286 24.571-54.857l-146.286-146.286-72 72q-8 8-19.429 8t-19.429-8q1.143 1.143 7.143 6.857t7.143 7.429 5.714 6.571 5.714 7.714 3.429 7.714 3.143 9.429 0.857 10.286q0 21.714-16 38.857-1.714 1.714-9.429 10.286t-10.857 11.714-10.571 9.429-12.571 8.857-12.571 5.143-14.857 2.571q-22.857 0-38.857-16l-233.143-233.143q-16-16-16-38.857 0-7.429 2.571-14.857t5.143-12.571 8.857-12.571 9.429-10.571 11.714-10.857 10.286-9.429q17.143-16 38.857-16 5.714 0 10.286 0.857t9.429 3.143 7.714 3.429 7.714 5.714 6.571 5.714 7.429 7.143 6.857 7.143q-8-8-8-19.429t8-19.429l198.857-198.857q8-8 19.429-8t19.429 8q-1.143-1.143-7.143-6.857t-7.143-7.429-5.714-6.571-5.714-7.714-3.429-7.714-3.143-9.429-0.857-10.286q0-21.714 16-38.857 1.714-1.714 9.429-10.286t10.857-11.714 10.571-9.429 12.571-8.857 12.571-5.143 14.857-2.571q22.857 0 38.857 16l233.143 233.143q16 16 16 38.857 0 7.429-2.571 14.857t-5.143 12.571-8.857 12.571-9.429 10.571-11.714 10.857-10.286 9.429q-17.143 16-38.857 16-5.714 0-10.286-0.857t-9.429-3.143-7.714-3.429-7.714-5.714-6.571-5.714-7.429-7.143-6.857-7.143q8 8 8 19.429t-8 19.429l-72 72 146.286 146.286q24.571-24.571 54.857-24.571 29.714 0 52 21.143l207.429 207.429q21.143 22.286 21.143 52z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "gavel", - "legal" - ], - "defaultCode": 61667, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 201, - "order": 718, - "name": "gavel, legal", - "prevSize": 14, - "code": 61667 - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 201 - }, - { - "icon": { - "paths": [ - "M219.429 658.286q0-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.714zM329.143 402.286q0-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.714zM573.714 677.143l57.714-218.286q3.429-14.857-4.286-27.714t-22-16.857-27.429 3.714-17.143 22.571l-57.714 218.286q-34.286 2.857-61.143 24.857t-36 56.286q-11.429 44 11.429 83.429t66.857 50.857 83.429-11.429 50.857-66.857q9.143-34.286-3.429-66.857t-41.143-52zM950.857 658.286q0-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.714zM585.143 292.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.714zM841.143 402.286q0-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.714zM1024 658.286q0 149.143-80.571 276-10.857 16.571-30.857 16.571h-801.143q-20 0-30.857-16.571-80.571-126.286-80.571-276 0-104 40.571-198.857t109.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": [ - "dashboard", - "tachometer" - ], - "defaultCode": 61668, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 202, - "order": 719, - "name": "dashboard, tachometer", - "prevSize": 14, - "code": 61668 - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 202 - }, - { - "icon": { - "paths": [ - "M512 219.429q-116.571 0-218 39.714t-161.143 107.143-59.714 145.714q0 64 40.857 122t115.143 100.286l49.714 28.571-15.429 54.857q-13.714 52-40 98.286 86.857-36 157.143-97.714l24.571-21.714 32.571 3.429q39.429 4.571 74.286 4.571 116.571 0 218-39.714t161.143-107.143 59.714-145.714-59.714-145.714-161.143-107.143-218-39.714zM1024 512q0 99.429-68.571 183.714t-186.286 133.143-257.143 48.857q-40 0-82.857-4.571-113.143 100-262.857 138.286-28 8-65.143 12.571h-2.857q-8.571 0-15.429-6t-9.143-15.714v-0.571q-1.714-2.286-0.286-6.857t1.143-5.714 2.571-5.429l3.429-5.143t4-4.857 4.571-5.143q4-4.571 17.714-19.714t19.714-21.714 17.714-22.571 18.571-29.143 15.429-33.714 14.857-43.429q-89.714-50.857-141.429-125.714t-51.714-160.571q0-99.429 68.571-183.714t186.286-133.143 257.143-48.857 257.143 48.857 186.286 133.143 68.571 183.714z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "comment-o" - ], - "defaultCode": 61669, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 203, - "order": 720, - "prevSize": 14, - "code": 61669, - "name": "comment-o" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 203 - }, - { - "icon": { - "paths": [ - "M402.286 219.429q-87.429 0-163.429 29.714t-120.857 80.571-44.857 109.143q0 46.857 30.286 90.286t85.143 75.429l55.429 32-20 48q19.429-11.429 35.429-22.286l25.143-17.714 30.286 5.714q44.571 8 87.429 8 87.429 0 163.429-29.714t120.857-80.571 44.857-109.143-44.857-109.143-120.857-80.571-163.429-29.714zM402.286 146.286q109.143 0 202 39.143t146.571 106.571 53.714 146.857-53.714 146.857-146.571 106.571-202 39.143q-49.143 0-100.571-9.143-70.857 50.286-158.857 73.143-20.571 5.143-49.143 9.143h-1.714q-6.286 0-11.714-4.571t-6.571-12q-0.571-1.714-0.571-3.714t0.286-3.714 1.143-3.429l1.429-2.857t2-3.143 2.286-2.857 2.571-2.857 2.286-2.571q2.857-3.429 13.143-14.286t14.857-16.857 12.857-16.571 14.286-22 11.714-25.143q-70.857-41.143-111.429-101.143t-40.571-128q0-79.429 53.714-146.857t146.571-106.571 202-39.143zM872 814.286q5.714 13.714 11.714 25.143t14.286 22 12.857 16.571 14.857 16.857 13.143 14.286q0.571 0.571 2.286 2.571t2.571 2.857 2.286 2.857 2 3.143l1.429 2.857t1.143 3.429 0.286 3.714-0.571 3.714q-1.714 8-7.429 12.571t-12.571 4q-28.571-4-49.143-9.143-88-22.857-158.857-73.143-51.429 9.143-100.571 9.143-154.857 0-269.714-75.429 33.143 2.286 50.286 2.286 92 0 176.571-25.714t150.857-73.714q71.429-52.571 109.714-121.143t38.286-145.143q0-44-13.143-86.857 73.714 40.571 116.571 101.714t42.857 131.429q0 68.571-40.571 128.286t-111.429 100.857z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "comments-o" - ], - "defaultCode": 61670, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 204, - "order": 721, - "prevSize": 14, - "code": 61670, - "name": "comments-o" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 204 - }, - { - "icon": { - "paths": [ - "M505.714 323.429q10.286 11.429 4 25.143l-308.571 661.143q-7.429 14.286-24 14.286-2.286 0-8-1.143-9.714-2.857-14.571-10.857t-2.571-17.143l112.571-461.714-232 57.714q-2.286 0.571-6.857 0.571-10.286 0-17.714-6.286-10.286-8.571-7.429-22.286l114.857-471.429q2.286-8 9.143-13.143t16-5.143h187.429q10.857 0 18.286 7.143t7.429 16.857q0 4.571-2.857 10.286l-97.714 264.571 226.286-56q4.571-1.143 6.857-1.143 10.857 0 19.429 8.571z" - ], - "width": 512, - "attrs": [], - "isMulticolor": false, - "tags": [ - "bolt", - "flash" - ], - "defaultCode": 61671, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 205, - "order": 722, - "name": "bolt, flash", - "prevSize": 14, - "code": 61671 - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 205 - }, - { - "icon": { - "paths": [ - "M1024 713.143v182.857q0 22.857-16 38.857t-38.857 16h-182.857q-22.857 0-38.857-16t-16-38.857v-182.857q0-22.857 16-38.857t38.857-16h54.857v-109.714h-292.571v109.714h54.857q22.857 0 38.857 16t16 38.857v182.857q0 22.857-16 38.857t-38.857 16h-182.857q-22.857 0-38.857-16t-16-38.857v-182.857q0-22.857 16-38.857t38.857-16h54.857v-109.714h-292.571v109.714h54.857q22.857 0 38.857 16t16 38.857v182.857q0 22.857-16 38.857t-38.857 16h-182.857q-22.857 0-38.857-16t-16-38.857v-182.857q0-22.857 16-38.857t38.857-16h54.857v-109.714q0-29.714 21.714-51.429t51.429-21.714h292.571v-109.714h-54.857q-22.857 0-38.857-16t-16-38.857v-182.857q0-22.857 16-38.857t38.857-16h182.857q22.857 0 38.857 16t16 38.857v182.857q0 22.857-16 38.857t-38.857 16h-54.857v109.714h292.571q29.714 0 51.429 21.714t21.714 51.429v109.714h54.857q22.857 0 38.857 16t16 38.857z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "sitemap" - ], - "defaultCode": 61672, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 206, - "order": 723, - "prevSize": 14, - "code": 61672, - "name": "sitemap" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 206 - }, - { - "icon": { - "paths": [ - "M512 473.143v331.429q0 59.429-43.429 102.857t-102.857 43.429-102.857-43.429-43.429-102.857q0-14.857 10.857-25.714t25.714-10.857 25.714 10.857 10.857 25.714q0 28.571 22.286 50.857t50.857 22.286 50.857-22.286 22.286-50.857v-331.429q18.857-6.286 36.571-6.286t36.571 6.286zM950.857 488.571q0 7.429-5.429 12.857t-12.857 5.429q-6.286 0-13.143-5.714-28-26.286-53.143-39.429t-58.286-13.143q-38.857 0-73.143 21.143t-58.857 55.429q-4 5.714-10 16t-8.286 13.714q-6.286 9.714-16 9.714-10.286 0-16.571-9.714-2.286-3.429-8.286-13.714t-10-16q-24.571-34.286-58.571-55.429t-72.857-21.143-72.857 21.143-58.571 55.429q-4 5.714-10 16t-8.286 13.714q-6.286 9.714-16.571 9.714-9.714 0-16-9.714-2.286-3.429-8.286-13.714t-10-16q-24.571-34.286-58.857-55.429t-73.143-21.143q-33.143 0-58.286 13.143t-53.143 39.429q-6.857 5.714-13.143 5.714-7.429 0-12.857-5.429t-5.429-12.857q0-2.857 0.571-4 25.714-104.571 98.571-182.571t170.286-116.857 206-38.857q80 0 156.857 22.857t140.857 64.857 111.143 106.857 66 143.714q0.571 1.143 0.571 4zM512 73.143v56q-24-1.143-36.571-1.143t-36.571 1.143v-56q0-14.857 10.857-25.714t25.714-10.857 25.714 10.857 10.857 25.714z" - ], - "width": 951, - "attrs": [], - "isMulticolor": false, - "tags": [ - "umbrella" - ], - "defaultCode": 61673, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 207, - "order": 724, - "prevSize": 14, - "code": 61673, - "name": "umbrella2" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 207 - }, - { - "icon": { - "paths": [ - "M438.857 950.857h512v-365.714h-237.714q-22.857 0-38.857-16t-16-38.857v-237.714h-219.429v658.286zM585.143 128v-36.571q0-7.429-5.429-12.857t-12.857-5.429h-402.286q-7.429 0-12.857 5.429t-5.429 12.857v36.571q0 7.429 5.429 12.857t12.857 5.429h402.286q7.429 0 12.857-5.429t5.429-12.857zM731.429 512h170.857l-170.857-170.857v170.857zM1024 585.143v384q0 22.857-16 38.857t-38.857 16h-548.571q-22.857 0-38.857-16t-16-38.857v-91.429h-310.857q-22.857 0-38.857-16t-16-38.857v-768q0-22.857 16-38.857t38.857-16h621.714q22.857 0 38.857 16t16 38.857v187.429q12 7.429 20.571 16l233.143 233.143q16 16 27.429 43.429t11.429 50.286z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "clipboard", - "paste" - ], - "defaultCode": 61674, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 208, - "order": 725, - "name": "clipboard, paste", - "prevSize": 14, - "code": 61674 - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 208 - }, - { - "icon": { - "paths": [ - "M420.571 329.143q0 7.429-5.429 12.857t-12.857 5.429-12.857-5.429-5.429-12.857q0-26.286-30.857-40.571t-60.571-14.286q-7.429 0-12.857-5.429t-5.429-12.857 5.429-12.857 12.857-5.429q28.571 0 56.857 9.143t49.714 30.857 21.429 51.429zM512 329.143q0-41.143-19.714-76.571t-51.429-58-70.286-35.429-78-12.857-78 12.857-70.286 35.429-51.429 58-19.714 76.571q0 57.714 38.857 102.857 5.714 6.286 17.429 18.857t17.429 18.857q73.143 87.429 80.571 170.286h130.286q7.429-82.857 80.571-170.286 5.714-6.286 17.429-18.857t17.429-18.857q38.857-45.143 38.857-102.857zM585.143 329.143q0 88.571-58.857 153.143-25.714 28-42.571 49.714t-34 54.571-19.429 61.429q26.857 16 26.857 46.857 0 21.143-14.286 36.571 14.286 15.429 14.286 36.571 0 29.714-25.714 46.286 7.429 13.143 7.429 26.857 0 26.286-18 40.571t-44.286 14.286q-11.429 25.143-34.286 40t-49.714 14.857-49.714-14.857-34.286-40q-26.286 0-44.286-14.286t-18-40.571q0-13.714 7.429-26.857-25.714-16.571-25.714-46.286 0-21.143 14.286-36.571-14.286-15.429-14.286-36.571 0-30.857 26.857-46.857-2.286-28.571-19.429-61.429t-34-54.571-42.571-49.714q-58.857-64.571-58.857-153.143 0-56.571 25.429-105.429t66.857-81.143 93.714-50.857 106.571-18.571 106.571 18.571 93.714 50.857 66.857 81.143 25.429 105.429z" - ], - "width": 585, - "attrs": [], - "isMulticolor": false, - "tags": [ - "lightbulb-o" - ], - "defaultCode": 61675, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 209, - "order": 726, - "prevSize": 14, - "code": 61675, - "name": "lightbulb-o" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 209 - }, - { - "icon": { - "paths": [ - "M1024 676.571v109.714q0 7.429-5.429 12.857t-12.857 5.429h-786.286v109.714q0 7.429-5.429 12.857t-12.857 5.429q-6.857 0-13.714-5.714l-182.286-182.857q-5.143-5.143-5.143-12.571 0-8 5.143-13.143l182.857-182.857q5.143-5.143 13.143-5.143 7.429 0 12.857 5.429t5.429 12.857v109.714h786.286q7.429 0 12.857 5.429t5.429 12.857zM1024 365.714q0 8-5.143 13.143l-182.857 182.857q-5.143 5.143-13.143 5.143-7.429 0-12.857-5.429t-5.429-12.857v-109.714h-786.286q-7.429 0-12.857-5.429t-5.429-12.857v-109.714q0-7.429 5.429-12.857t12.857-5.429h786.286v-109.714q0-8 5.143-13.143t13.143-5.143q6.857 0 13.714 5.714l182.286 182.286q5.143 5.143 5.143 13.143z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "exchange" - ], - "defaultCode": 61676, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 210, - "order": 727, - "prevSize": 14, - "code": 61676, - "name": "exchange" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 210 - }, - { - "icon": { - "paths": [ - "M731.429 530.286q0-8-5.143-13.143t-13.143-5.143h-128v-201.143q0-7.429-5.429-12.857t-12.857-5.429h-109.714q-7.429 0-12.857 5.429t-5.429 12.857v201.143h-128q-7.429 0-12.857 5.429t-5.429 12.857q0 8 5.143 13.143l201.143 201.143q5.143 5.143 13.143 5.143t13.143-5.143l200.571-200.571q5.714-6.857 5.714-13.714zM1097.143 658.286q0 90.857-64.286 155.143t-155.143 64.286h-621.714q-105.714 0-180.857-75.143t-75.143-180.857q0-74.286 40-137.143t107.429-94.286q-1.143-17.143-1.143-24.571 0-121.143 85.714-206.857t206.857-85.714q89.143 0 163.143 49.714t107.714 132q40.571-35.429 94.857-35.429 60.571 0 103.429 42.857t42.857 103.429q0 43.429-23.429 78.857 74.286 17.714 122 77.429t47.714 136.286z" - ], - "width": 1097, - "attrs": [], - "isMulticolor": false, - "tags": [ - "cloud-download" - ], - "defaultCode": 61677, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 211, - "order": 728, - "prevSize": 14, - "code": 61677, - "name": "cloud-download2" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 211 - }, - { - "icon": { - "paths": [ - "M731.429 493.714q0-8-5.143-13.143l-201.143-201.143q-5.143-5.143-13.143-5.143t-13.143 5.143l-200.571 200.571q-5.714 6.857-5.714 13.714 0 8 5.143 13.143t13.143 5.143h128v201.143q0 7.429 5.429 12.857t12.857 5.429h109.714q7.429 0 12.857-5.429t5.429-12.857v-201.143h128q7.429 0 12.857-5.429t5.429-12.857zM1097.143 658.286q0 90.857-64.286 155.143t-155.143 64.286h-621.714q-105.714 0-180.857-75.143t-75.143-180.857q0-74.286 40-137.143t107.429-94.286q-1.143-17.143-1.143-24.571 0-121.143 85.714-206.857t206.857-85.714q89.143 0 163.143 49.714t107.714 132q40.571-35.429 94.857-35.429 60.571 0 103.429 42.857t42.857 103.429q0 43.429-23.429 78.857 74.286 17.714 122 77.429t47.714 136.286z" - ], - "width": 1097, - "attrs": [], - "isMulticolor": false, - "tags": [ - "cloud-upload" - ], - "defaultCode": 61678, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 212, - "order": 729, - "prevSize": 14, - "code": 61678, - "name": "cloud-upload2" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 212 - }, - { - "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": { - "id": 213, - "order": 730, - "prevSize": 14, - "code": 61680, - "name": "user-md" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 213 - }, - { - "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": { - "id": 214, - "order": 731, - "prevSize": 14, - "code": 61681, - "name": "stethoscope" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 214 - }, - { - "icon": { - "paths": [ - "M365.714 219.429h292.571v-73.143h-292.571v73.143zM164.571 219.429v731.429h-36.571q-52.571 0-90.286-37.714t-37.714-90.286v-475.429q0-52.571 37.714-90.286t90.286-37.714h36.571zM804.571 219.429v731.429h-585.143v-731.429h73.143v-91.429q0-22.857 16-38.857t38.857-16h329.143q22.857 0 38.857 16t16 38.857v91.429h73.143zM1024 347.429v475.429q0 52.571-37.714 90.286t-90.286 37.714h-36.571v-731.429h36.571q52.571 0 90.286 37.714t37.714 90.286z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "suitcase" - ], - "defaultCode": 61682, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 215, - "order": 732, - "prevSize": 14, - "code": 61682, - "name": "suitcase" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 215 - }, - { - "icon": { - "paths": [ - "M521.143 969.143q0-9.143-9.143-9.143-33.714 0-58-24.286t-24.286-58q0-9.143-9.143-9.143t-9.143 9.143q0 41.714 29.429 71.143t71.143 29.429q9.143 0 9.143-9.143zM987.429 804.571q0 29.714-21.714 51.429t-51.429 21.714h-256q0 60.571-42.857 103.429t-103.429 42.857-103.429-42.857-42.857-103.429h-256q-29.714 0-51.429-21.714t-21.714-51.429q28.571-24 52-50.286t48.571-68.286 42.571-90.571 28.571-117.714 11.143-148.571q0-86.857 66.857-161.429t175.429-90.571q-4.571-10.857-4.571-22.286 0-22.857 16-38.857t38.857-16 38.857 16 16 38.857q0 11.429-4.571 22.286 108.571 16 175.429 90.571t66.857 161.429q0 79.429 11.143 148.571t28.571 117.714 42.571 90.571 48.571 68.286 52 50.286z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "bell" - ], - "defaultCode": 61683, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 216, - "order": 733, - "prevSize": 14, - "code": 61683, - "name": "bell" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 216 - }, - { - "icon": { - "paths": [ - "M950.857 365.714q0-45.714-32-77.714t-77.714-32h-36.571v219.429h36.571q45.714 0 77.714-32t32-77.714zM0 804.571h1024q0 60.571-42.857 103.429t-103.429 42.857h-731.429q-60.571 0-103.429-42.857t-42.857-103.429zM1060.571 365.714q0 90.857-64.286 155.143t-155.143 64.286h-36.571v18.286q0 52.571-37.714 90.286t-90.286 37.714h-402.286q-52.571 0-90.286-37.714t-37.714-90.286v-420.571q0-14.857 10.857-25.714t25.714-10.857h658.286q90.857 0 155.143 64.286t64.286 155.143z" - ], - "width": 1097, - "attrs": [], - "isMulticolor": false, - "tags": [ - "coffee" - ], - "defaultCode": 61684, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 217, - "order": 734, - "prevSize": 14, - "code": 61684, - "name": "coffee" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 217 - }, - { - "icon": { - "paths": [ - "M365.714 36.571v365.714q0 34.857-20.286 63.429t-52.857 40v445.143q0 29.714-21.714 51.429t-51.429 21.714h-73.143q-29.714 0-51.429-21.714t-21.714-51.429v-445.143q-32.571-11.429-52.857-40t-20.286-63.429v-365.714q0-14.857 10.857-25.714t25.714-10.857 25.714 10.857 10.857 25.714v237.714q0 14.857 10.857 25.714t25.714 10.857 25.714-10.857 10.857-25.714v-237.714q0-14.857 10.857-25.714t25.714-10.857 25.714 10.857 10.857 25.714v237.714q0 14.857 10.857 25.714t25.714 10.857 25.714-10.857 10.857-25.714v-237.714q0-14.857 10.857-25.714t25.714-10.857 25.714 10.857 10.857 25.714zM804.571 36.571v914.286q0 29.714-21.714 51.429t-51.429 21.714h-73.143q-29.714 0-51.429-21.714t-21.714-51.429v-292.571h-128q-7.429 0-12.857-5.429t-5.429-12.857v-457.143q0-75.429 53.714-129.143t129.143-53.714h146.286q14.857 0 25.714 10.857t10.857 25.714z" - ], - "width": 805, - "attrs": [], - "isMulticolor": false, - "tags": [ - "cutlery" - ], - "defaultCode": 61685, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 218, - "order": 735, - "prevSize": 14, - "code": 61685, - "name": "cutlery" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 218 - }, - { - "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.429zM219.429 457.143q0-8 5.143-13.143t13.143-5.143h402.286q8 0 13.143 5.143t5.143 13.143v36.571q0 8-5.143 13.143t-13.143 5.143h-402.286q-8 0-13.143-5.143t-5.143-13.143v-36.571zM640 585.143q8 0 13.143 5.143t5.143 13.143v36.571q0 8-5.143 13.143t-13.143 5.143h-402.286q-8 0-13.143-5.143t-5.143-13.143v-36.571q0-8 5.143-13.143t13.143-5.143h402.286zM640 731.429q8 0 13.143 5.143t5.143 13.143v36.571q0 8-5.143 13.143t-13.143 5.143h-402.286q-8 0-13.143-5.143t-5.143-13.143v-36.571q0-8 5.143-13.143t13.143-5.143h402.286z" - ], - "width": 877.7142857142858, - "attrs": [], - "isMulticolor": false, - "tags": [ - "file-text-o" - ], - "defaultCode": 61686, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 219, - "order": 736, - "prevSize": 14, - "code": 61686, - "name": "file-text-o" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 219 - }, - { - "icon": { - "paths": [ - "M219.429 749.714v36.571q0 7.429-5.429 12.857t-12.857 5.429h-36.571q-7.429 0-12.857-5.429t-5.429-12.857v-36.571q0-7.429 5.429-12.857t12.857-5.429h36.571q7.429 0 12.857 5.429t5.429 12.857zM219.429 603.429v36.571q0 7.429-5.429 12.857t-12.857 5.429h-36.571q-7.429 0-12.857-5.429t-5.429-12.857v-36.571q0-7.429 5.429-12.857t12.857-5.429h36.571q7.429 0 12.857 5.429t5.429 12.857zM365.714 603.429v36.571q0 7.429-5.429 12.857t-12.857 5.429h-36.571q-7.429 0-12.857-5.429t-5.429-12.857v-36.571q0-7.429 5.429-12.857t12.857-5.429h36.571q7.429 0 12.857 5.429t5.429 12.857zM219.429 457.143v36.571q0 7.429-5.429 12.857t-12.857 5.429h-36.571q-7.429 0-12.857-5.429t-5.429-12.857v-36.571q0-7.429 5.429-12.857t12.857-5.429h36.571q7.429 0 12.857 5.429t5.429 12.857zM658.286 749.714v36.571q0 7.429-5.429 12.857t-12.857 5.429h-36.571q-7.429 0-12.857-5.429t-5.429-12.857v-36.571q0-7.429 5.429-12.857t12.857-5.429h36.571q7.429 0 12.857 5.429t5.429 12.857zM512 603.429v36.571q0 7.429-5.429 12.857t-12.857 5.429h-36.571q-7.429 0-12.857-5.429t-5.429-12.857v-36.571q0-7.429 5.429-12.857t12.857-5.429h36.571q7.429 0 12.857 5.429t5.429 12.857zM365.714 457.143v36.571q0 7.429-5.429 12.857t-12.857 5.429h-36.571q-7.429 0-12.857-5.429t-5.429-12.857v-36.571q0-7.429 5.429-12.857t12.857-5.429h36.571q7.429 0 12.857 5.429t5.429 12.857zM219.429 310.857v36.571q0 7.429-5.429 12.857t-12.857 5.429h-36.571q-7.429 0-12.857-5.429t-5.429-12.857v-36.571q0-7.429 5.429-12.857t12.857-5.429h36.571q7.429 0 12.857 5.429t5.429 12.857zM658.286 603.429v36.571q0 7.429-5.429 12.857t-12.857 5.429h-36.571q-7.429 0-12.857-5.429t-5.429-12.857v-36.571q0-7.429 5.429-12.857t12.857-5.429h36.571q7.429 0 12.857 5.429t5.429 12.857zM512 457.143v36.571q0 7.429-5.429 12.857t-12.857 5.429h-36.571q-7.429 0-12.857-5.429t-5.429-12.857v-36.571q0-7.429 5.429-12.857t12.857-5.429h36.571q7.429 0 12.857 5.429t5.429 12.857zM365.714 310.857v36.571q0 7.429-5.429 12.857t-12.857 5.429h-36.571q-7.429 0-12.857-5.429t-5.429-12.857v-36.571q0-7.429 5.429-12.857t12.857-5.429h36.571q7.429 0 12.857 5.429t5.429 12.857zM219.429 164.571v36.571q0 7.429-5.429 12.857t-12.857 5.429h-36.571q-7.429 0-12.857-5.429t-5.429-12.857v-36.571q0-7.429 5.429-12.857t12.857-5.429h36.571q7.429 0 12.857 5.429t5.429 12.857zM658.286 457.143v36.571q0 7.429-5.429 12.857t-12.857 5.429h-36.571q-7.429 0-12.857-5.429t-5.429-12.857v-36.571q0-7.429 5.429-12.857t12.857-5.429h36.571q7.429 0 12.857 5.429t5.429 12.857zM512 310.857v36.571q0 7.429-5.429 12.857t-12.857 5.429h-36.571q-7.429 0-12.857-5.429t-5.429-12.857v-36.571q0-7.429 5.429-12.857t12.857-5.429h36.571q7.429 0 12.857 5.429t5.429 12.857zM365.714 164.571v36.571q0 7.429-5.429 12.857t-12.857 5.429h-36.571q-7.429 0-12.857-5.429t-5.429-12.857v-36.571q0-7.429 5.429-12.857t12.857-5.429h36.571q7.429 0 12.857 5.429t5.429 12.857zM658.286 310.857v36.571q0 7.429-5.429 12.857t-12.857 5.429h-36.571q-7.429 0-12.857-5.429t-5.429-12.857v-36.571q0-7.429 5.429-12.857t12.857-5.429h36.571q7.429 0 12.857 5.429t5.429 12.857zM512 164.571v36.571q0 7.429-5.429 12.857t-12.857 5.429h-36.571q-7.429 0-12.857-5.429t-5.429-12.857v-36.571q0-7.429 5.429-12.857t12.857-5.429h36.571q7.429 0 12.857 5.429t5.429 12.857zM658.286 164.571v36.571q0 7.429-5.429 12.857t-12.857 5.429h-36.571q-7.429 0-12.857-5.429t-5.429-12.857v-36.571q0-7.429 5.429-12.857t12.857-5.429h36.571q7.429 0 12.857 5.429t5.429 12.857zM512 950.857h219.429v-877.714h-658.286v877.714h219.429v-128q0-7.429 5.429-12.857t12.857-5.429h182.857q7.429 0 12.857 5.429t5.429 12.857v128zM804.571 36.571v950.857q0 14.857-10.857 25.714t-25.714 10.857h-731.429q-14.857 0-25.714-10.857t-10.857-25.714v-950.857q0-14.857 10.857-25.714t25.714-10.857h731.429q14.857 0 25.714 10.857t10.857 25.714z" - ], - "width": 805, - "attrs": [], - "isMulticolor": false, - "tags": [ - "building-o" - ], - "defaultCode": 61687, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 220, - "order": 737, - "prevSize": 14, - "code": 61687, - "name": "building-o" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 220 - }, - { - "icon": { - "paths": [ - "M219.429 749.714v36.571q0 7.429-5.429 12.857t-12.857 5.429h-36.571q-7.429 0-12.857-5.429t-5.429-12.857v-36.571q0-7.429 5.429-12.857t12.857-5.429h36.571q7.429 0 12.857 5.429t5.429 12.857zM219.429 603.429v36.571q0 7.429-5.429 12.857t-12.857 5.429h-36.571q-7.429 0-12.857-5.429t-5.429-12.857v-36.571q0-7.429 5.429-12.857t12.857-5.429h36.571q7.429 0 12.857 5.429t5.429 12.857zM365.714 603.429v36.571q0 7.429-5.429 12.857t-12.857 5.429h-36.571q-7.429 0-12.857-5.429t-5.429-12.857v-36.571q0-7.429 5.429-12.857t12.857-5.429h36.571q7.429 0 12.857 5.429t5.429 12.857zM219.429 457.143v36.571q0 7.429-5.429 12.857t-12.857 5.429h-36.571q-7.429 0-12.857-5.429t-5.429-12.857v-36.571q0-7.429 5.429-12.857t12.857-5.429h36.571q7.429 0 12.857 5.429t5.429 12.857zM658.286 749.714v36.571q0 7.429-5.429 12.857t-12.857 5.429h-36.571q-7.429 0-12.857-5.429t-5.429-12.857v-36.571q0-7.429 5.429-12.857t12.857-5.429h36.571q7.429 0 12.857 5.429t5.429 12.857zM512 603.429v36.571q0 7.429-5.429 12.857t-12.857 5.429h-36.571q-7.429 0-12.857-5.429t-5.429-12.857v-36.571q0-7.429 5.429-12.857t12.857-5.429h36.571q7.429 0 12.857 5.429t5.429 12.857zM365.714 457.143v36.571q0 7.429-5.429 12.857t-12.857 5.429h-36.571q-7.429 0-12.857-5.429t-5.429-12.857v-36.571q0-7.429 5.429-12.857t12.857-5.429h36.571q7.429 0 12.857 5.429t5.429 12.857zM658.286 603.429v36.571q0 7.429-5.429 12.857t-12.857 5.429h-36.571q-7.429 0-12.857-5.429t-5.429-12.857v-36.571q0-7.429 5.429-12.857t12.857-5.429h36.571q7.429 0 12.857 5.429t5.429 12.857zM512 457.143v36.571q0 7.429-5.429 12.857t-12.857 5.429h-36.571q-7.429 0-12.857-5.429t-5.429-12.857v-36.571q0-7.429 5.429-12.857t12.857-5.429h36.571q7.429 0 12.857 5.429t5.429 12.857zM658.286 457.143v36.571q0 7.429-5.429 12.857t-12.857 5.429h-36.571q-7.429 0-12.857-5.429t-5.429-12.857v-36.571q0-7.429 5.429-12.857t12.857-5.429h36.571q7.429 0 12.857 5.429t5.429 12.857zM512 950.857h219.429v-658.286h-146.286v18.286q0 22.857-16 38.857t-38.857 16h-256q-22.857 0-38.857-16t-16-38.857v-18.286h-146.286v658.286h219.429v-128q0-7.429 5.429-12.857t12.857-5.429h182.857q7.429 0 12.857 5.429t5.429 12.857v128zM512 274.286v-182.857q0-7.429-5.429-12.857t-12.857-5.429h-36.571q-7.429 0-12.857 5.429t-5.429 12.857v54.857h-73.143v-54.857q0-7.429-5.429-12.857t-12.857-5.429h-36.571q-7.429 0-12.857 5.429t-5.429 12.857v182.857q0 7.429 5.429 12.857t12.857 5.429h36.571q7.429 0 12.857-5.429t5.429-12.857v-54.857h73.143v54.857q0 7.429 5.429 12.857t12.857 5.429h36.571q7.429 0 12.857-5.429t5.429-12.857zM804.571 256v731.429q0 14.857-10.857 25.714t-25.714 10.857h-731.429q-14.857 0-25.714-10.857t-10.857-25.714v-731.429q0-14.857 10.857-25.714t25.714-10.857h182.857v-164.571q0-22.857 16-38.857t38.857-16h256q22.857 0 38.857 16t16 38.857v164.571h182.857q14.857 0 25.714 10.857t10.857 25.714z" - ], - "width": 805, - "attrs": [], - "isMulticolor": false, - "tags": [ - "hospital-o" - ], - "defaultCode": 61688, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 221, - "order": 738, - "prevSize": 14, - "code": 61688, - "name": "hospital-o" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 221 - }, - { - "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": { - "id": 222, - "order": 739, - "prevSize": 14, - "code": 61689, - "name": "ambulance" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 222 - }, - { - "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": { - "id": 223, - "order": 740, - "prevSize": 14, - "code": 61690, - "name": "medkit" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 223 - }, - { - "icon": { - "paths": [ - "M1097.143 548.571q-0.571 18.286-164.571 54.857l-201.143 18.286-128 36.571h-36.571l-167.429 201.143h39.429q14.857 0 25.714 2.571t10.857 6.571-10.857 6.571-25.714 2.571h-182.857v-18.286h36.571v-237.714h-91.429l-109.714 128h-54.857l-18.286-18.286v-109.714h18.286v-18.286h73.143v-4.571l-109.714-13.714v-73.143l109.714-13.714v-4.571h-73.143v-18.286h-18.286v-109.714l18.286-18.286h54.857l109.714 128h91.429v-237.714h-36.571v-18.286h182.857q14.857 0 25.714 2.571t10.857 6.571-10.857 6.571-25.714 2.571h-39.429l167.429 201.143h36.571l128 36.571 201.143 18.286q149.143 33.143 164 53.143z" - ], - "width": 1097, - "attrs": [], - "isMulticolor": false, - "tags": [ - "fighter-jet" - ], - "defaultCode": 61691, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 224, - "order": 741, - "prevSize": 14, - "code": 61691, - "name": "fighter-jet" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 224 - }, - { - "icon": { - "paths": [ - "M365.714 512v-219.429h-146.286v146.286q0 30.286 21.429 51.714t51.714 21.429h73.143zM950.857 768v109.714h-658.286v-109.714l73.143-109.714h-73.143q-90.857 0-155.143-64.286t-64.286-155.143v-182.857l-36.571-36.571 18.286-73.143h274.286l18.286-73.143h548.571l18.286 109.714-36.571 18.286v457.143z" - ], - "width": 951, - "attrs": [], - "isMulticolor": false, - "tags": [ - "beer" - ], - "defaultCode": 61692, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 225, - "order": 742, - "prevSize": 14, - "code": 61692, - "name": "beer" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 225 - }, - { - "icon": { - "paths": [ - "M731.429 768v-512q0-14.857-10.857-25.714t-25.714-10.857h-73.143q-14.857 0-25.714 10.857t-10.857 25.714v182.857h-292.571v-182.857q0-14.857-10.857-25.714t-25.714-10.857h-73.143q-14.857 0-25.714 10.857t-10.857 25.714v512q0 14.857 10.857 25.714t25.714 10.857h73.143q14.857 0 25.714-10.857t10.857-25.714v-182.857h292.571v182.857q0 14.857 10.857 25.714t25.714 10.857h73.143q14.857 0 25.714-10.857t10.857-25.714zM877.714 237.714v548.571q0 68-48.286 116.286t-116.286 48.286h-548.571q-68 0-116.286-48.286t-48.286-116.286v-548.571q0-68 48.286-116.286t116.286-48.286h548.571q68 0 116.286 48.286t48.286 116.286z" - ], - "width": 877.7142857142858, - "attrs": [], - "isMulticolor": false, - "tags": [ - "h-square" - ], - "defaultCode": 61693, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 226, - "order": 743, - "prevSize": 14, - "code": 61693, - "name": "h-square" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 226 - }, - { - "icon": { - "paths": [ - "M731.429 548.571v-73.143q0-14.857-10.857-25.714t-25.714-10.857h-182.857v-182.857q0-14.857-10.857-25.714t-25.714-10.857h-73.143q-14.857 0-25.714 10.857t-10.857 25.714v182.857h-182.857q-14.857 0-25.714 10.857t-10.857 25.714v73.143q0 14.857 10.857 25.714t25.714 10.857h182.857v182.857q0 14.857 10.857 25.714t25.714 10.857h73.143q14.857 0 25.714-10.857t10.857-25.714v-182.857h182.857q14.857 0 25.714-10.857t10.857-25.714zM877.714 237.714v548.571q0 68-48.286 116.286t-116.286 48.286h-548.571q-68 0-116.286-48.286t-48.286-116.286v-548.571q0-68 48.286-116.286t116.286-48.286h548.571q68 0 116.286 48.286t48.286 116.286z" - ], - "width": 877.7142857142858, - "attrs": [], - "isMulticolor": false, - "tags": [ - "plus-square" - ], - "defaultCode": 61694, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 227, - "order": 744, - "prevSize": 14, - "code": 61694, - "name": "plus-square" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 227 - }, - { - "icon": { - "paths": [ - "M358.286 786.286q0 7.429-5.714 13.143l-28.571 28.571q-5.714 5.714-13.143 5.714t-13.143-5.714l-266.286-266.286q-5.714-5.714-5.714-13.143t5.714-13.143l266.286-266.286q5.714-5.714 13.143-5.714t13.143 5.714l28.571 28.571q5.714 5.714 5.714 13.143t-5.714 13.143l-224.571 224.571 224.571 224.571q5.714 5.714 5.714 13.143zM577.714 786.286q0 7.429-5.714 13.143l-28.571 28.571q-5.714 5.714-13.143 5.714t-13.143-5.714l-266.286-266.286q-5.714-5.714-5.714-13.143t5.714-13.143l266.286-266.286q5.714-5.714 13.143-5.714t13.143 5.714l28.571 28.571q5.714 5.714 5.714 13.143t-5.714 13.143l-224.571 224.571 224.571 224.571q5.714 5.714 5.714 13.143z" - ], - "width": 585, - "attrs": [], - "isMulticolor": false, - "tags": [ - "angle-double-left" - ], - "defaultCode": 61696, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 228, - "order": 745, - "prevSize": 14, - "code": 61696, - "name": "angle-double-left" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 228 - }, - { - "icon": { - "paths": [ - "M340 548.571q0 7.429-5.714 13.143l-266.286 266.286q-5.714 5.714-13.143 5.714t-13.143-5.714l-28.571-28.571q-5.714-5.714-5.714-13.143t5.714-13.143l224.571-224.571-224.571-224.571q-5.714-5.714-5.714-13.143t5.714-13.143l28.571-28.571q5.714-5.714 13.143-5.714t13.143 5.714l266.286 266.286q5.714 5.714 5.714 13.143zM559.429 548.571q0 7.429-5.714 13.143l-266.286 266.286q-5.714 5.714-13.143 5.714t-13.143-5.714l-28.571-28.571q-5.714-5.714-5.714-13.143t5.714-13.143l224.571-224.571-224.571-224.571q-5.714-5.714-5.714-13.143t5.714-13.143l28.571-28.571q5.714-5.714 13.143-5.714t13.143 5.714l266.286 266.286q5.714 5.714 5.714 13.143z" - ], - "width": 585, - "attrs": [], - "isMulticolor": false, - "tags": [ - "angle-double-right" - ], - "defaultCode": 61697, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 229, - "order": 746, - "prevSize": 14, - "code": 61697, - "name": "angle-double-right" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 229 - }, - { - "icon": { - "paths": [ - "M614.286 749.714q0 7.429-5.714 13.143l-28.571 28.571q-5.714 5.714-13.143 5.714t-13.143-5.714l-224.571-224.571-224.571 224.571q-5.714 5.714-13.143 5.714t-13.143-5.714l-28.571-28.571q-5.714-5.714-5.714-13.143t5.714-13.143l266.286-266.286q5.714-5.714 13.143-5.714t13.143 5.714l266.286 266.286q5.714 5.714 5.714 13.143zM614.286 530.286q0 7.429-5.714 13.143l-28.571 28.571q-5.714 5.714-13.143 5.714t-13.143-5.714l-224.571-224.571-224.571 224.571q-5.714 5.714-13.143 5.714t-13.143-5.714l-28.571-28.571q-5.714-5.714-5.714-13.143t5.714-13.143l266.286-266.286q5.714-5.714 13.143-5.714t13.143 5.714l266.286 266.286q5.714 5.714 5.714 13.143z" - ], - "width": 658, - "attrs": [], - "isMulticolor": false, - "tags": [ - "angle-double-up" - ], - "defaultCode": 61698, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 230, - "order": 747, - "prevSize": 14, - "code": 61698, - "name": "angle-double-up" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 230 - }, - { - "icon": { - "paths": [ - "M614.286 493.714q0 7.429-5.714 13.143l-266.286 266.286q-5.714 5.714-13.143 5.714t-13.143-5.714l-266.286-266.286q-5.714-5.714-5.714-13.143t5.714-13.143l28.571-28.571q5.714-5.714 13.143-5.714t13.143 5.714l224.571 224.571 224.571-224.571q5.714-5.714 13.143-5.714t13.143 5.714l28.571 28.571q5.714 5.714 5.714 13.143zM614.286 274.286q0 7.429-5.714 13.143l-266.286 266.286q-5.714 5.714-13.143 5.714t-13.143-5.714l-266.286-266.286q-5.714-5.714-5.714-13.143t5.714-13.143l28.571-28.571q5.714-5.714 13.143-5.714t13.143 5.714l224.571 224.571 224.571-224.571q5.714-5.714 13.143-5.714t13.143 5.714l28.571 28.571q5.714 5.714 5.714 13.143z" - ], - "width": 658, - "attrs": [], - "isMulticolor": false, - "tags": [ - "angle-double-down" - ], - "defaultCode": 61699, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 231, - "order": 748, - "prevSize": 14, - "code": 61699, - "name": "angle-double-down" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 231 - }, - { - "icon": { - "paths": [ - "M358.286 310.857q0 7.429-5.714 13.143l-224.571 224.571 224.571 224.571q5.714 5.714 5.714 13.143t-5.714 13.143l-28.571 28.571q-5.714 5.714-13.143 5.714t-13.143-5.714l-266.286-266.286q-5.714-5.714-5.714-13.143t5.714-13.143l266.286-266.286q5.714-5.714 13.143-5.714t13.143 5.714l28.571 28.571q5.714 5.714 5.714 13.143z" - ], - "width": 366, - "attrs": [], - "isMulticolor": false, - "tags": [ - "angle-left" - ], - "defaultCode": 61700, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 232, - "order": 749, - "prevSize": 14, - "code": 61700, - "name": "angle-left" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 232 - }, - { - "icon": { - "paths": [ - "M340 548.571q0 7.429-5.714 13.143l-266.286 266.286q-5.714 5.714-13.143 5.714t-13.143-5.714l-28.571-28.571q-5.714-5.714-5.714-13.143t5.714-13.143l224.571-224.571-224.571-224.571q-5.714-5.714-5.714-13.143t5.714-13.143l28.571-28.571q5.714-5.714 13.143-5.714t13.143 5.714l266.286 266.286q5.714 5.714 5.714 13.143z" - ], - "width": 366, - "attrs": [], - "isMulticolor": false, - "tags": [ - "angle-right" - ], - "defaultCode": 61701, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 233, - "order": 750, - "prevSize": 14, - "code": 61701, - "name": "angle-right" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 233 - }, - { - "icon": { - "paths": [ - "M614.286 676.571q0 7.429-5.714 13.143l-28.571 28.571q-5.714 5.714-13.143 5.714t-13.143-5.714l-224.571-224.571-224.571 224.571q-5.714 5.714-13.143 5.714t-13.143-5.714l-28.571-28.571q-5.714-5.714-5.714-13.143t5.714-13.143l266.286-266.286q5.714-5.714 13.143-5.714t13.143 5.714l266.286 266.286q5.714 5.714 5.714 13.143z" - ], - "width": 658, - "attrs": [], - "isMulticolor": false, - "tags": [ - "angle-up" - ], - "defaultCode": 61702, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 234, - "order": 751, - "prevSize": 14, - "code": 61702, - "name": "angle-up" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 234 - }, - { - "icon": { - "paths": [ - "M614.286 420.571q0 7.429-5.714 13.143l-266.286 266.286q-5.714 5.714-13.143 5.714t-13.143-5.714l-266.286-266.286q-5.714-5.714-5.714-13.143t5.714-13.143l28.571-28.571q5.714-5.714 13.143-5.714t13.143 5.714l224.571 224.571 224.571-224.571q5.714-5.714 13.143-5.714t13.143 5.714l28.571 28.571q5.714 5.714 5.714 13.143z" - ], - "width": 658, - "attrs": [], - "isMulticolor": false, - "tags": [ - "angle-down" - ], - "defaultCode": 61703, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 235, - "order": 752, - "prevSize": 14, - "code": 61703, - "name": "angle-down" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 235 - }, - { - "icon": { - "paths": [ - "M1024 566.857v-475.429q0-7.429-5.429-12.857t-12.857-5.429h-914.286q-7.429 0-12.857 5.429t-5.429 12.857v475.429q0 7.429 5.429 12.857t12.857 5.429h914.286q7.429 0 12.857-5.429t5.429-12.857zM1097.143 91.429v621.714q0 37.714-26.857 64.571t-64.571 26.857h-310.857q0 21.143 9.143 44.286t18.286 40.571 9.143 24.857q0 14.857-10.857 25.714t-25.714 10.857h-292.571q-14.857 0-25.714-10.857t-10.857-25.714q0-8 9.143-25.143t18.286-40 9.143-44.571h-310.857q-37.714 0-64.571-26.857t-26.857-64.571v-621.714q0-37.714 26.857-64.571t64.571-26.857h914.286q37.714 0 64.571 26.857t26.857 64.571z" - ], - "width": 1097, - "attrs": [], - "isMulticolor": false, - "tags": [ - "desktop" - ], - "defaultCode": 61704, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 236, - "order": 753, - "prevSize": 14, - "code": 61704, - "name": "desktop" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 236 - }, - { - "icon": { - "paths": [ - "M237.714 731.429q-37.714 0-64.571-26.857t-26.857-64.571v-402.286q0-37.714 26.857-64.571t64.571-26.857h621.714q37.714 0 64.571 26.857t26.857 64.571v402.286q0 37.714-26.857 64.571t-64.571 26.857h-621.714zM219.429 237.714v402.286q0 7.429 5.429 12.857t12.857 5.429h621.714q7.429 0 12.857-5.429t5.429-12.857v-402.286q0-7.429-5.429-12.857t-12.857-5.429h-621.714q-7.429 0-12.857 5.429t-5.429 12.857zM1005.714 768h91.429v54.857q0 22.857-26.857 38.857t-64.571 16h-914.286q-37.714 0-64.571-16t-26.857-38.857v-54.857h1005.714zM594.286 822.857q9.143 0 9.143-9.143t-9.143-9.143h-91.429q-9.143 0-9.143 9.143t9.143 9.143h91.429z" - ], - "width": 1097, - "attrs": [], - "isMulticolor": false, - "tags": [ - "laptop" - ], - "defaultCode": 61705, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 237, - "order": 754, - "prevSize": 14, - "code": 61705, - "name": "laptop" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 237 - }, - { - "icon": { - "paths": [ - "M365.714 804.571q0-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.714zM585.143 713.143v-548.571q0-7.429-5.429-12.857t-12.857-5.429h-475.429q-7.429 0-12.857 5.429t-5.429 12.857v548.571q0 7.429 5.429 12.857t12.857 5.429h475.429q7.429 0 12.857-5.429t5.429-12.857zM658.286 164.571v621.714q0 37.714-26.857 64.571t-64.571 26.857h-475.429q-37.714 0-64.571-26.857t-26.857-64.571v-621.714q0-37.714 26.857-64.571t64.571-26.857h475.429q37.714 0 64.571 26.857t26.857 64.571z" - ], - "width": 658, - "attrs": [], - "isMulticolor": false, - "tags": [ - "tablet" - ], - "defaultCode": 61706, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 238, - "order": 755, - "prevSize": 14, - "code": 61706, - "name": "tablet" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 238 - }, - { - "icon": { - "paths": [ - "M265.143 804.571q0-18.857-13.429-32.286t-32.286-13.429-32.286 13.429-13.429 32.286 13.429 32.286 32.286 13.429 32.286-13.429 13.429-32.286zM384 713.143v-402.286q0-7.429-5.429-12.857t-12.857-5.429h-292.571q-7.429 0-12.857 5.429t-5.429 12.857v402.286q0 7.429 5.429 12.857t12.857 5.429h292.571q7.429 0 12.857-5.429t5.429-12.857zM274.286 228.571q0-9.143-9.143-9.143h-91.429q-9.143 0-9.143 9.143t9.143 9.143h91.429q9.143 0 9.143-9.143zM438.857 219.429v585.143q0 29.714-21.714 51.429t-51.429 21.714h-292.571q-29.714 0-51.429-21.714t-21.714-51.429v-585.143q0-29.714 21.714-51.429t51.429-21.714h292.571q29.714 0 51.429 21.714t21.714 51.429z" - ], - "width": 439, - "attrs": [], - "isMulticolor": false, - "tags": [ - "mobile", - "mobile-phone" - ], - "defaultCode": 61707, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 239, - "order": 756, - "name": "mobile, mobile-phone", - "prevSize": 14, - "code": 61707 - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 239 - }, - { - "icon": { - "paths": [ - "M438.857 201.143q-84.571 0-156 41.714t-113.143 113.143-41.714 156 41.714 156 113.143 113.143 156 41.714 156-41.714 113.143-113.143 41.714-156-41.714-156-113.143-113.143-156-41.714zM877.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": [ - "circle-o" - ], - "defaultCode": 61708, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 240, - "order": 757, - "prevSize": 14, - "code": 61708, - "name": "circle-o" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 240 - }, - { - "icon": { - "paths": [ - "M438.857 548.571v219.429q0 45.714-32 77.714t-77.714 32h-219.429q-45.714 0-77.714-32t-32-77.714v-402.286q0-59.429 23.143-113.429t62.571-93.429 93.429-62.571 113.429-23.143h36.571q14.857 0 25.714 10.857t10.857 25.714v73.143q0 14.857-10.857 25.714t-25.714 10.857h-36.571q-60.571 0-103.429 42.857t-42.857 103.429v18.286q0 22.857 16 38.857t38.857 16h128q45.714 0 77.714 32t32 77.714zM950.857 548.571v219.429q0 45.714-32 77.714t-77.714 32h-219.429q-45.714 0-77.714-32t-32-77.714v-402.286q0-59.429 23.143-113.429t62.571-93.429 93.429-62.571 113.429-23.143h36.571q14.857 0 25.714 10.857t10.857 25.714v73.143q0 14.857-10.857 25.714t-25.714 10.857h-36.571q-60.571 0-103.429 42.857t-42.857 103.429v18.286q0 22.857 16 38.857t38.857 16h128q45.714 0 77.714 32t32 77.714z" - ], - "width": 951, - "attrs": [], - "isMulticolor": false, - "tags": [ - "quote-left" - ], - "defaultCode": 61709, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 241, - "order": 758, - "prevSize": 14, - "code": 61709, - "name": "quote-left" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 241 - }, - { - "icon": { - "paths": [ - "M438.857 182.857v402.286q0 59.429-23.143 113.429t-62.571 93.429-93.429 62.571-113.429 23.143h-36.571q-14.857 0-25.714-10.857t-10.857-25.714v-73.143q0-14.857 10.857-25.714t25.714-10.857h36.571q60.571 0 103.429-42.857t42.857-103.429v-18.286q0-22.857-16-38.857t-38.857-16h-128q-45.714 0-77.714-32t-32-77.714v-219.429q0-45.714 32-77.714t77.714-32h219.429q45.714 0 77.714 32t32 77.714zM950.857 182.857v402.286q0 59.429-23.143 113.429t-62.571 93.429-93.429 62.571-113.429 23.143h-36.571q-14.857 0-25.714-10.857t-10.857-25.714v-73.143q0-14.857 10.857-25.714t25.714-10.857h36.571q60.571 0 103.429-42.857t42.857-103.429v-18.286q0-22.857-16-38.857t-38.857-16h-128q-45.714 0-77.714-32t-32-77.714v-219.429q0-45.714 32-77.714t77.714-32h219.429q45.714 0 77.714 32t32 77.714z" - ], - "width": 951, - "attrs": [], - "isMulticolor": false, - "tags": [ - "quote-right" - ], - "defaultCode": 61710, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 242, - "order": 759, - "prevSize": 14, - "code": 61710, - "name": "quote-right" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 242 - }, - { - "icon": { - "paths": [ - "M300.571 796.571q0 30.286-21.429 51.714t-51.714 21.429q-29.714 0-51.429-21.714t-21.714-51.429q0-30.286 21.429-51.714t51.714-21.429 51.714 21.429 21.429 51.714zM585.143 914.286q0 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.714zM182.857 512q0 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.714zM869.714 796.571q0 29.714-21.714 51.429t-51.429 21.714q-30.286 0-51.714-21.429t-21.429-51.714 21.429-51.714 51.714-21.429 51.714 21.429 21.429 51.714zM318.857 227.429q0 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.571zM987.429 512q0 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.714zM621.714 109.714q0 45.714-32 77.714t-77.714 32-77.714-32-32-77.714 32-77.714 77.714-32 77.714 32 32 77.714zM924.571 227.429q0 53.143-37.714 90.571t-90.286 37.429q-53.143 0-90.571-37.429t-37.429-90.571q0-52.571 37.429-90.286t90.571-37.714q52.571 0 90.286 37.714t37.714 90.286z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "spinner" - ], - "defaultCode": 61712, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 243, - "order": 760, - "prevSize": 14, - "code": 61712, - "name": "spinner" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 243 - }, - { - "icon": { - "paths": [ - "M877.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": [ - "circle" - ], - "defaultCode": 61713, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 244, - "order": 761, - "prevSize": 14, - "code": 61713, - "name": "circle" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 244 - }, - { - "icon": { - "paths": [ - "M1024 640q0 94.857-72.571 257.714-1.714 4-6 13.714t-7.714 17.143-7.429 12.571q-6.857 9.714-16 9.714-8.571 0-13.429-5.714t-4.857-14.286q0-5.143 1.429-15.143t1.429-13.429q2.857-38.857 2.857-70.286 0-57.714-10-103.429t-27.714-79.143-45.714-57.714-60.286-39.714-76-24.286-88-12.286-100.286-3.429h-128v146.286q0 14.857-10.857 25.714t-25.714 10.857-25.714-10.857l-292.571-292.571q-10.857-10.857-10.857-25.714t10.857-25.714l292.571-292.571q10.857-10.857 25.714-10.857t25.714 10.857 10.857 25.714v146.286h128q407.429 0 500 230.286 30.286 76.571 30.286 190.286z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "mail-reply", - "reply" - ], - "defaultCode": 61714, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 245, - "order": 762, - "name": "mail-reply, reply", - "prevSize": 14, - "code": 61714 - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 245 - }, - { - "icon": { - "paths": [ - "M365.714 694.857q0 22.857-7.143 46.857t-24.571 43.429-41.429 19.429-41.429-19.429-24.571-43.429-7.143-46.857 7.143-46.857 24.571-43.429 41.429-19.429 41.429 19.429 24.571 43.429 7.143 46.857zM731.429 694.857q0 22.857-7.143 46.857t-24.571 43.429-41.429 19.429-41.429-19.429-24.571-43.429-7.143-46.857 7.143-46.857 24.571-43.429 41.429-19.429 41.429 19.429 24.571 43.429 7.143 46.857zM822.857 694.857q0-68.571-39.429-116.571t-106.857-48q-23.429 0-111.429 12-40.571 6.286-89.714 6.286t-89.714-6.286q-86.857-12-111.429-12-67.429 0-106.857 48t-39.429 116.571q0 50.286 18.286 87.714t46.286 58.857 69.714 34.286 80 16.857 85.143 4h96q46.857 0 85.143-4t80-16.857 69.714-34.286 46.286-58.857 18.286-87.714zM950.857 594.286q0 118.286-34.857 189.143-21.714 44-60.286 76t-80.571 49.143-97.143 27.143-98 12.571-95.429 2.571q-44.571 0-81.143-1.714t-84.286-7.143-87.143-17.143-78.286-29.429-69.143-46.286-49.143-65.714q-35.429-70.286-35.429-189.143 0-135.429 77.714-226.286-15.429-46.857-15.429-97.143 0-66.286 29.143-124.571 61.714 0 108.571 22.571t108 70.571q84-20 176.571-20 84.571 0 160 18.286 60-46.857 106.857-69.143t108-22.286q29.143 58.286 29.143 124.571 0 49.714-15.429 96 77.714 91.429 77.714 227.429z" - ], - "width": 951, - "attrs": [], - "isMulticolor": false, - "tags": [ - "github-alt" - ], - "defaultCode": 61715, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 246, - "order": 763, - "prevSize": 14, - "code": 61715, - "name": "github-alt" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 246 - }, - { - "icon": { - "paths": [ - "M877.714 749.714v-402.286q0-22.857-16-38.857t-38.857-16h-402.286q-22.857 0-38.857-16t-16-38.857v-36.571q0-22.857-16-38.857t-38.857-16h-182.857q-22.857 0-38.857 16t-16 38.857v548.571q0 22.857 16 38.857t38.857 16h694.857q22.857 0 38.857-16t16-38.857zM950.857 347.429v402.286q0 52.571-37.714 90.286t-90.286 37.714h-694.857q-52.571 0-90.286-37.714t-37.714-90.286v-548.571q0-52.571 37.714-90.286t90.286-37.714h182.857q52.571 0 90.286 37.714t37.714 90.286v18.286h384q52.571 0 90.286 37.714t37.714 90.286z" - ], - "width": 951, - "attrs": [], - "isMulticolor": false, - "tags": [ - "folder-o" - ], - "defaultCode": 61716, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 247, - "order": 764, - "prevSize": 14, - "code": 61716, - "name": "folder-o" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 247 - }, - { - "icon": { - "paths": [ - "M1017.714 532q0-20-30.286-20h-621.714q-22.857 0-48.857 12.286t-40.857 30l-168 207.429q-10.286 13.714-10.286 22.857 0 20 30.286 20h621.714q22.857 0 49.143-12.571t40.571-30.286l168-207.429q10.286-12.571 10.286-22.286zM365.714 438.857h438.857v-91.429q0-22.857-16-38.857t-38.857-16h-329.143q-22.857 0-38.857-16t-16-38.857v-36.571q0-22.857-16-38.857t-38.857-16h-182.857q-22.857 0-38.857 16t-16 38.857v487.429l146.286-180q25.143-30.286 66.286-50t80-19.714zM1090.857 532q0 35.429-26.286 68.571l-168.571 207.429q-24.571 30.286-66.286 50t-80 19.714h-621.714q-52.571 0-90.286-37.714t-37.714-90.286v-548.571q0-52.571 37.714-90.286t90.286-37.714h182.857q52.571 0 90.286 37.714t37.714 90.286v18.286h310.857q52.571 0 90.286 37.714t37.714 90.286v91.429h109.714q30.857 0 56.571 14t38.286 40.286q8.571 18.286 8.571 38.857z" - ], - "width": 1097, - "attrs": [], - "isMulticolor": false, - "tags": [ - "folder-open-o" - ], - "defaultCode": 61717, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 248, - "order": 765, - "prevSize": 14, - "code": 61717, - "name": "folder-open-o" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 248 - }, - { - "icon": { - "paths": [ - "M648 614.286q-21.143 69.143-78.857 111.429t-130.286 42.286-130.286-42.286-78.857-111.429q-4.571-14.286 2.286-27.714t21.714-18q14.286-4.571 27.714 2.286t18 21.714q14.286 45.714 52.857 74t86.571 28.286 86.571-28.286 52.857-74q4.571-14.857 18.286-21.714t28-2.286 21.143 18 2.286 27.714zM365.714 365.714q0 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.714zM658.286 365.714q0 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 512q0-74.286-29.143-142t-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.143 142-29.143 116.571-78 78-116.571 29.143-142zM877.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": [ - "smile-o" - ], - "defaultCode": 61720, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 249, - "order": 766, - "prevSize": 14, - "code": 61720, - "name": "smile-o" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 249 - }, - { - "icon": { - "paths": [ - "M648 702.286q4.571 14.286-2.286 27.714t-21.143 18-28-2.286-18.286-21.714q-14.286-45.714-52.857-74t-86.571-28.286-86.571 28.286-52.857 74q-4.571 14.857-18 21.714t-27.714 2.286q-14.857-4.571-21.714-18t-2.286-27.714q21.143-69.143 78.857-111.429t130.286-42.286 130.286 42.286 78.857 111.429zM365.714 365.714q0 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.714zM658.286 365.714q0 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 512q0-74.286-29.143-142t-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.143 142-29.143 116.571-78 78-116.571 29.143-142zM877.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": [ - "frown-o" - ], - "defaultCode": 61721, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 250, - "order": 767, - "prevSize": 14, - "code": 61721, - "name": "frown-o" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 250 - }, - { - "icon": { - "paths": [ - "M658.286 621.714q0 14.857-10.857 25.714t-25.714 10.857h-365.714q-14.857 0-25.714-10.857t-10.857-25.714 10.857-25.714 25.714-10.857h365.714q14.857 0 25.714 10.857t10.857 25.714zM365.714 365.714q0 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.714zM658.286 365.714q0 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 512q0-74.286-29.143-142t-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.143 142-29.143 116.571-78 78-116.571 29.143-142zM877.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": [ - "meh-o" - ], - "defaultCode": 61722, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 251, - "order": 768, - "prevSize": 14, - "code": 61722, - "name": "meh-o" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 251 - }, - { - "icon": { - "paths": [ - "M475.429 621.714v-73.143q0-8-5.143-13.143t-13.143-5.143h-109.714v-109.714q0-8-5.143-13.143t-13.143-5.143h-73.143q-8 0-13.143 5.143t-5.143 13.143v109.714h-109.714q-8 0-13.143 5.143t-5.143 13.143v73.143q0 8 5.143 13.143t13.143 5.143h109.714v109.714q0 8 5.143 13.143t13.143 5.143h73.143q8 0 13.143-5.143t5.143-13.143v-109.714h109.714q8 0 13.143-5.143t5.143-13.143zM804.571 658.286q0-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 512q0-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.714zM1097.143 585.143q0 121.143-85.714 206.857t-206.857 85.714q-109.714 0-193.143-73.143h-125.714q-83.429 73.143-193.143 73.143-121.143 0-206.857-85.714t-85.714-206.857 85.714-206.857 206.857-85.714h512q121.143 0 206.857 85.714t85.714 206.857z" - ], - "width": 1097, - "attrs": [], - "isMulticolor": false, - "tags": [ - "gamepad" - ], - "defaultCode": 61723, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 252, - "order": 769, - "prevSize": 14, - "code": 61723, - "name": "gamepad" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 252 - }, - { - "icon": { - "paths": [ - "M219.429 667.429v54.857q0 9.143-9.143 9.143h-54.857q-9.143 0-9.143-9.143v-54.857q0-9.143 9.143-9.143h54.857q9.143 0 9.143 9.143zM292.571 521.143v54.857q0 9.143-9.143 9.143h-128q-9.143 0-9.143-9.143v-54.857q0-9.143 9.143-9.143h128q9.143 0 9.143 9.143zM219.429 374.857v54.857q0 9.143-9.143 9.143h-54.857q-9.143 0-9.143-9.143v-54.857q0-9.143 9.143-9.143h54.857q9.143 0 9.143 9.143zM804.571 667.429v54.857q0 9.143-9.143 9.143h-493.714q-9.143 0-9.143-9.143v-54.857q0-9.143 9.143-9.143h493.714q9.143 0 9.143 9.143zM438.857 521.143v54.857q0 9.143-9.143 9.143h-54.857q-9.143 0-9.143-9.143v-54.857q0-9.143 9.143-9.143h54.857q9.143 0 9.143 9.143zM365.714 374.857v54.857q0 9.143-9.143 9.143h-54.857q-9.143 0-9.143-9.143v-54.857q0-9.143 9.143-9.143h54.857q9.143 0 9.143 9.143zM585.143 521.143v54.857q0 9.143-9.143 9.143h-54.857q-9.143 0-9.143-9.143v-54.857q0-9.143 9.143-9.143h54.857q9.143 0 9.143 9.143zM512 374.857v54.857q0 9.143-9.143 9.143h-54.857q-9.143 0-9.143-9.143v-54.857q0-9.143 9.143-9.143h54.857q9.143 0 9.143 9.143zM731.429 521.143v54.857q0 9.143-9.143 9.143h-54.857q-9.143 0-9.143-9.143v-54.857q0-9.143 9.143-9.143h54.857q9.143 0 9.143 9.143zM950.857 667.429v54.857q0 9.143-9.143 9.143h-54.857q-9.143 0-9.143-9.143v-54.857q0-9.143 9.143-9.143h54.857q9.143 0 9.143 9.143zM658.286 374.857v54.857q0 9.143-9.143 9.143h-54.857q-9.143 0-9.143-9.143v-54.857q0-9.143 9.143-9.143h54.857q9.143 0 9.143 9.143zM804.571 374.857v54.857q0 9.143-9.143 9.143h-54.857q-9.143 0-9.143-9.143v-54.857q0-9.143 9.143-9.143h54.857q9.143 0 9.143 9.143zM950.857 374.857v201.143q0 9.143-9.143 9.143h-128q-9.143 0-9.143-9.143v-54.857q0-9.143 9.143-9.143h64v-137.143q0-9.143 9.143-9.143h54.857q9.143 0 9.143 9.143zM1024 804.571v-512h-950.857v512h950.857zM1097.143 292.571v512q0 30.286-21.429 51.714t-51.714 21.429h-950.857q-30.286 0-51.714-21.429t-21.429-51.714v-512q0-30.286 21.429-51.714t51.714-21.429h950.857q30.286 0 51.714 21.429t21.429 51.714z" - ], - "width": 1097, - "attrs": [], - "isMulticolor": false, - "tags": [ - "keyboard-o" - ], - "defaultCode": 61724, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 253, - "order": 770, - "prevSize": 14, - "code": 61724, - "name": "keyboard-o" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 253 - }, - { - "icon": { - "paths": [ - "M950.857 597.143v-352q-96.571 52-174.857 52-46.857 0-82.857-18.286-57.143-28-105.143-43.714t-101.714-15.714q-98.857 0-230.286 72.571v342.286q140-64.571 247.429-64.571 31.429 0 59.143 4.286t56 14.857 44 17.714 47.143 22.571l16 8q25.143 12.571 57.714 12.571 68.571 0 167.429-52.571zM182.857 146.286q0 20-10 36.571t-26.571 26.286v723.429q0 8-5.143 13.143t-13.143 5.143h-36.571q-8 0-13.143-5.143t-5.143-13.143v-723.429q-16.571-9.714-26.571-26.286t-10-36.571q0-30.286 21.429-51.714t51.714-21.429 51.714 21.429 21.429 51.714zM1024 182.857v436q0 22.286-20 32.571-5.714 2.857-9.714 5.143-124.571 66.286-210.857 66.286-50.286 0-90.286-20l-16-8q-36.571-18.857-56.571-27.429t-52-16.571-65.143-8q-58.286 0-134.571 25.143t-130.571 58.286q-8.571 5.143-18.857 5.143-9.143 0-18.286-4.571-18.286-10.857-18.286-32v-424q0-20 17.714-31.429 20-12 44.857-24.286t65.143-29.714 87.143-28.286 88.571-10.857q64 0 119.429 17.714t119.429 49.143q21.714 10.857 50.857 10.857 69.714 0 177.143-64 12.571-6.857 17.714-9.714 17.714-9.143 35.429 1.143 17.714 11.429 17.714 31.429z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "flag-o" - ], - "defaultCode": 61725, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 254, - "order": 771, - "prevSize": 14, - "code": 61725, - "name": "flag-o" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 254 - }, - { - "icon": { - "paths": [ - "M475.429 571.429v-109.714q-103.429 9.143-219.429 66.857v105.714q117.143-54.857 219.429-62.857zM475.429 332.571v-112.571q-98.286 4.571-219.429 72v108q122.857-63.429 219.429-67.429zM950.857 597.143v-105.143q-134.286 66.286-219.429 40.571v-128q-11.429-3.429-22.286-8.571-2.857-1.714-18.857-9.714t-19.714-9.714-18-8.571-19.714-8.857-18.571-7.429-20.571-7.143-20-4.857-22.571-4.286-22.571-2.286-25.143-1.143q-13.143 0-28 1.714v126.857h10.857q58.286 0 110 16.571t112.857 46.857q10.857 5.143 22.286 8.571v107.429q24 9.714 52 9.714 68.571 0 167.429-52.571zM950.857 353.143v-108q-96.571 52-174.857 52-25.714 0-44.571-4.571v112q84.571 24 219.429-51.429zM182.857 146.286q0 20-10 36.571t-26.571 26.286v723.429q0 8-5.143 13.143t-13.143 5.143h-36.571q-8 0-13.143-5.143t-5.143-13.143v-723.429q-16.571-9.714-26.571-26.286t-10-36.571q0-30.286 21.429-51.714t51.714-21.429 51.714 21.429 21.429 51.714zM1024 182.857v436q0 22.286-20 32.571-5.714 2.857-9.714 5.143-124.571 66.286-210.857 66.286-50.286 0-90.286-20l-16-8q-36.571-18.857-56.571-27.429t-52-16.571-65.143-8q-58.286 0-134.571 25.143t-130.571 58.286q-8.571 5.143-18.857 5.143-9.143 0-18.286-4.571-18.286-10.857-18.286-32v-424q0-20 17.714-31.429 20-12 44.857-24.286t65.143-29.714 87.143-28.286 88.571-10.857q64 0 119.429 17.714t119.429 49.143q21.714 10.857 50.857 10.857 69.714 0 177.143-64 12.571-6.857 17.714-9.714 17.714-9.143 35.429 1.143 17.714 11.429 17.714 31.429z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "flag-checkered" - ], - "defaultCode": 61726, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 255, - "order": 772, - "prevSize": 14, - "code": 61726, - "name": "flag-checkered" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 255 - }, - { - "icon": { - "paths": [ - "M334.286 561.714l-266.286 266.286q-5.714 5.714-13.143 5.714t-13.143-5.714l-28.571-28.571q-5.714-5.714-5.714-13.143t5.714-13.143l224.571-224.571-224.571-224.571q-5.714-5.714-5.714-13.143t5.714-13.143l28.571-28.571q5.714-5.714 13.143-5.714t13.143 5.714l266.286 266.286q5.714 5.714 5.714 13.143t-5.714 13.143zM950.857 822.857v36.571q0 8-5.143 13.143t-13.143 5.143h-548.571q-8 0-13.143-5.143t-5.143-13.143v-36.571q0-8 5.143-13.143t13.143-5.143h548.571q8 0 13.143 5.143t5.143 13.143z" - ], - "width": 951, - "attrs": [], - "isMulticolor": false, - "tags": [ - "terminal" - ], - "defaultCode": 61728, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 256, - "order": 773, - "prevSize": 14, - "code": 61728, - "name": "terminal" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 256 - }, - { - "icon": { - "paths": [ - "M352.571 799.429l-28.571 28.571q-5.714 5.714-13.143 5.714t-13.143-5.714l-266.286-266.286q-5.714-5.714-5.714-13.143t5.714-13.143l266.286-266.286q5.714-5.714 13.143-5.714t13.143 5.714l28.571 28.571q5.714 5.714 5.714 13.143t-5.714 13.143l-224.571 224.571 224.571 224.571q5.714 5.714 5.714 13.143t-5.714 13.143zM690.286 189.714l-213.143 737.714q-2.286 7.429-8.857 11.143t-13.429 1.429l-35.429-9.714q-7.429-2.286-11.143-8.857t-1.429-14l213.143-737.714q2.286-7.429 8.857-11.143t13.429-1.429l35.429 9.714q7.429 2.286 11.143 8.857t1.429 14zM1065.714 561.714l-266.286 266.286q-5.714 5.714-13.143 5.714t-13.143-5.714l-28.571-28.571q-5.714-5.714-5.714-13.143t5.714-13.143l224.571-224.571-224.571-224.571q-5.714-5.714-5.714-13.143t5.714-13.143l28.571-28.571q5.714-5.714 13.143-5.714t13.143 5.714l266.286 266.286q5.714 5.714 5.714 13.143t-5.714 13.143z" - ], - "width": 1097, - "attrs": [], - "isMulticolor": false, - "tags": [ - "code" - ], - "defaultCode": 61729, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 257, - "order": 774, - "prevSize": 14, - "code": 61729, - "name": "code" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 257 - }, - { - "icon": { - "paths": [ - "M365.714 618.286v40q0 24-22.286 33.714-7.429 2.857-14.286 2.857-15.429 0-25.714-10.857l-292.571-292.571q-10.857-10.857-10.857-25.714t10.857-25.714l292.571-292.571q16.571-17.714 40-8 22.286 9.714 22.286 33.714v39.429l-226.857 227.429q-10.857 10.857-10.857 25.714t10.857 25.714zM1024 640q0 33.143-9.714 76.286t-22 78.857-27.429 71.429-23.143 51.714l-11.429 22.857q-4.571 9.714-16 9.714-3.429 0-5.143-0.571-14.286-4.571-13.143-19.429 24.571-228.571-60.571-322.857-36.571-40.571-97.429-63.143t-152.857-30v143.429q0 24-22.286 33.714-7.429 2.857-14.286 2.857-15.429 0-25.714-10.857l-292.571-292.571q-10.857-10.857-10.857-25.714t10.857-25.714l292.571-292.571q16.571-17.714 40-8 22.286 9.714 22.286 33.714v149.714q234.857 16 342.286 126.286 96.571 98.857 96.571 290.857z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "mail-reply-all", - "reply-all" - ], - "defaultCode": 61730, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 258, - "order": 775, - "name": "mail-reply-all, reply-all", - "prevSize": 14, - "code": 61730 - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 258 - }, - { - "icon": { - "paths": [ - "M677.714 546.857l146.857-142.857-241.143-35.429-17.143-34.286-90.857-184v550.286l33.714 17.714 181.714 96-34.286-202.857-6.857-37.714zM936 397.143l-207.429 202.286 49.143 285.714q2.857 18.857-3.429 29.429t-19.429 10.571q-9.714 0-22.857-6.857l-256.571-134.857-256.571 134.857q-13.143 6.857-22.857 6.857-13.143 0-19.429-10.571t-3.429-29.429l49.143-285.714-208-202.286q-18.286-18.286-13.143-34t30.857-19.714l286.857-41.714 128.571-260q11.429-23.429 28-23.429 16 0 28 23.429l128.571 260 286.857 41.714q25.714 4 30.857 19.714t-13.714 34z" - ], - "width": 951, - "attrs": [], - "isMulticolor": false, - "tags": [ - "star-half-empty", - "star-half-full", - "star-half-o" - ], - "defaultCode": 61731, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 259, - "order": 776, - "name": "star-half-empty, star-half-full, star-half-o", - "prevSize": 14, - "code": 61731 - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 259 - }, - { - "icon": { - "paths": [ - "M800.571 199.429l-365.714 731.429q-9.714 20-32.571 20-2.857 0-8.571-1.143-12.571-2.857-20.286-12.857t-7.714-22.571v-329.143h-329.143q-12.571 0-22.571-7.714t-12.857-20.286 2.286-24 16.571-17.143l731.429-365.714q7.429-4 16.571-4 15.429 0 25.714 10.857 8.571 8 10.571 19.714t-3.714 22.571z" - ], - "width": 805, - "attrs": [], - "isMulticolor": false, - "tags": [ - "location-arrow" - ], - "defaultCode": 61732, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 260, - "order": 777, - "prevSize": 14, - "code": 61732, - "name": "location-arrow" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 260 - }, - { - "icon": { - "paths": [ - "M318.286 731.429h340v-340zM292.571 705.714l340-340h-340v340zM950.857 749.714v109.714q0 8-5.143 13.143t-13.143 5.143h-128v128q0 8-5.143 13.143t-13.143 5.143h-109.714q-8 0-13.143-5.143t-5.143-13.143v-128h-493.714q-8 0-13.143-5.143t-5.143-13.143v-493.714h-128q-8 0-13.143-5.143t-5.143-13.143v-109.714q0-8 5.143-13.143t13.143-5.143h128v-128q0-8 5.143-13.143t13.143-5.143h109.714q8 0 13.143 5.143t5.143 13.143v128h486.286l140.571-141.143q5.714-5.143 13.143-5.143t13.143 5.143q5.143 5.714 5.143 13.143t-5.143 13.143l-141.143 140.571v486.286h128q8 0 13.143 5.143t5.143 13.143z" - ], - "width": 951, - "attrs": [], - "isMulticolor": false, - "tags": [ - "crop" - ], - "defaultCode": 61733, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 261, - "order": 778, - "prevSize": 14, - "code": 61733, - "name": "crop" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 261 - }, - { - "icon": { - "paths": [ - "M164.571 841.143q0-22.857-16-38.857t-38.857-16-38.857 16-16 38.857 16 38.857 38.857 16 38.857-16 16-38.857zM164.571 182.857q0-22.857-16-38.857t-38.857-16-38.857 16-16 38.857 16 38.857 38.857 16 38.857-16 16-38.857zM530.286 256q0-22.857-16-38.857t-38.857-16-38.857 16-16 38.857 16 38.857 38.857 16 38.857-16 16-38.857zM585.143 256q0 29.714-14.857 55.143t-40 39.714q-1.143 164-129.143 236.571-38.857 21.714-116 46.286-73.143 22.857-96.857 40.571t-23.714 57.143v14.857q25.143 14.286 40 39.714t14.857 55.143q0 45.714-32 77.714t-77.714 32-77.714-32-32-77.714q0-29.714 14.857-55.143t40-39.714v-468.571q-25.143-14.286-40-39.714t-14.857-55.143q0-45.714 32-77.714t77.714-32 77.714 32 32 77.714q0 29.714-14.857 55.143t-40 39.714v284q30.857-14.857 88-32.571 31.429-9.714 50-16.857t40.286-17.714 33.714-22.571 23.143-29.143 16-39.714 4.857-52.286q-25.143-14.286-40-39.714t-14.857-55.143q0-45.714 32-77.714t77.714-32 77.714 32 32 77.714z" - ], - "width": 585, - "attrs": [], - "isMulticolor": false, - "tags": [ - "code-fork" - ], - "defaultCode": 61734, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 262, - "order": 779, - "prevSize": 14, - "code": 61734, - "name": "code-fork" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 262 - }, - { - "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": 780, - "name": "chain-broken, unlink", - "prevSize": 14, - "code": 61735 - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 263 - }, - { - "icon": { - "paths": [ - "M402.286 717.714v137.143q0 9.143-6.857 16t-16 6.857h-137.143q-9.143 0-16-6.857t-6.857-16v-137.143q0-9.143 6.857-16t16-6.857h137.143q9.143 0 16 6.857t6.857 16zM582.857 374.857q0 30.857-8.857 57.714t-20 43.714-31.429 34-32.857 24.857-34.857 20.286q-23.429 13.143-39.143 37.143t-15.714 38.286q0 9.714-6.857 18.571t-16 8.857h-137.143q-8.571 0-14.571-10.571t-6-21.429v-25.714q0-47.429 37.143-89.429t81.714-62q33.714-15.429 48-32t14.286-43.429q0-24-26.571-42.286t-61.429-18.286q-37.143 0-61.714 16.571-20 14.286-61.143 65.714-7.429 9.143-17.714 9.143-6.857 0-14.286-4.571l-93.714-71.429q-7.429-5.714-8.857-14.286t3.143-16q91.429-152 265.143-152 45.714 0 92 17.714t83.429 47.429 60.571 72.857 23.429 90.571z" - ], - "width": 585, - "attrs": [], - "isMulticolor": false, - "tags": [ - "question" - ], - "defaultCode": 61736, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 264, - "order": 781, - "prevSize": 14, - "code": 61736, - "name": "question" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 264 - }, - { - "icon": { - "paths": [ - "M365.714 768v73.143q0 14.857-10.857 25.714t-25.714 10.857h-292.571q-14.857 0-25.714-10.857t-10.857-25.714v-73.143q0-14.857 10.857-25.714t25.714-10.857h36.571v-219.429h-36.571q-14.857 0-25.714-10.857t-10.857-25.714v-73.143q0-14.857 10.857-25.714t25.714-10.857h219.429q14.857 0 25.714 10.857t10.857 25.714v329.143h36.571q14.857 0 25.714 10.857t10.857 25.714zM292.571 109.714v109.714q0 14.857-10.857 25.714t-25.714 10.857h-146.286q-14.857 0-25.714-10.857t-10.857-25.714v-109.714q0-14.857 10.857-25.714t25.714-10.857h146.286q14.857 0 25.714 10.857t10.857 25.714z" - ], - "width": 366, - "attrs": [], - "isMulticolor": false, - "tags": [ - "info" - ], - "defaultCode": 61737, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 265, - "order": 782, - "prevSize": 14, - "code": 61737, - "name": "info" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 265 - }, - { - "icon": { - "paths": [ - "M292.571 713.143v128q0 14.857-10.857 25.714t-25.714 10.857h-146.286q-14.857 0-25.714-10.857t-10.857-25.714v-128q0-14.857 10.857-25.714t25.714-10.857h146.286q14.857 0 25.714 10.857t10.857 25.714zM309.714 109.714l-16 438.857q-0.571 14.857-11.714 25.714t-26 10.857h-146.286q-14.857 0-26-10.857t-11.714-25.714l-16-438.857q-0.571-14.857 10-25.714t25.429-10.857h182.857q14.857 0 25.429 10.857t10 25.714z" - ], - "width": 366, - "attrs": [], - "isMulticolor": false, - "tags": [ - "exclamation" - ], - "defaultCode": 61738, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 266, - "order": 783, - "prevSize": 14, - "code": 61738, - "name": "exclamation" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 266 - }, - { - "icon": { - "paths": [ - "M512.571 782.286v95.429h-141.714l-90.857-144-13.714-24q-4.571-5.143-6.286-12h-1.714l-5.143 12q-5.714 11.429-14.286 25.143l-88.571 142.857h-147.429v-95.429h73.143l112.571-166.286-105.714-155.429h-78.286v-96h157.714l79.429 130.286q1.143 2.286 13.143 24 4.571 5.143 6.286 12h1.714q1.714-5.143 6.286-12l14.286-24 80-130.286h146.857v96h-71.429l-105.143 152.571 116.571 169.143h62.286zM876.571 394.286v117.714h-293.714l-1.714-15.429q-2.286-16-2.286-26.286 0-36.571 14.857-66.857t37.143-49.429 48-37.143 48-31.143 37.143-30.857 14.857-36.571q0-21.714-16.857-35.714t-40.286-14q-29.143 0-55.429 22.286-8 6.286-20.571 21.714l-60-52.571q14.857-21.143 36-37.714 47.429-37.143 107.429-37.143 62.857 0 101.714 34t38.857 90.571q0 32-14 58.857t-35.429 43.714-46.571 33.429-46.857 28.857-37.429 29.429-17.429 36h132.571v-45.714h72z" - ], - "width": 877.7142857142858, - "attrs": [], - "isMulticolor": false, - "tags": [ - "superscript" - ], - "defaultCode": 61739, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 267, - "order": 784, - "prevSize": 14, - "code": 61739, - "name": "superscript" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 267 - }, - { - "icon": { - "paths": [ - "M512.571 782.286v95.429h-141.714l-90.857-144-13.714-24q-4.571-5.143-6.286-12h-1.714l-5.143 12q-5.714 11.429-14.286 25.143l-88.571 142.857h-147.429v-95.429h73.143l112.571-166.286-105.714-155.429h-78.286v-96h157.714l79.429 130.286q1.143 2.286 13.143 24 4.571 5.143 6.286 12h1.714q1.714-5.143 6.286-12l14.286-24 80-130.286h146.857v96h-71.429l-105.143 152.571 116.571 169.143h62.286zM877.714 906.286v117.714h-293.714l-2.286-15.429q-1.714-25.714-1.714-26.286 0-36.571 14.857-66.857t37.143-49.429 48-37.143 48-31.143 37.143-30.857 14.857-36.571q0-21.714-16.857-35.714t-40.286-14q-29.143 0-55.429 22.286-8 6.286-20.571 21.714l-60-52.571q14.857-21.143 36-37.714 45.714-37.143 107.429-37.143 62.857 0 101.714 34t38.857 90.571q0 37.714-19.714 67.714t-48 49.143-56.857 35.714-49.714 36-23.429 41.714h132.571v-45.714h72z" - ], - "width": 877.7142857142858, - "attrs": [], - "isMulticolor": false, - "tags": [ - "subscript" - ], - "defaultCode": 61740, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 268, - "order": 785, - "prevSize": 14, - "code": 61740, - "name": "subscript" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 268 - }, - { - "icon": { - "paths": [ - "M512 804.571l192-219.429h-438.857l-192 219.429h438.857zM1090.857 189.143q8.571 19.429 5.429 40.857t-17.429 37.429l-512 585.143q-21.714 25.143-54.857 25.143h-438.857q-21.714 0-39.714-11.714t-27.143-31.143q-8.571-19.429-5.429-40.857t17.429-37.429l512-585.143q21.714-25.143 54.857-25.143h438.857q21.714 0 39.714 11.714t27.143 31.143z" - ], - "width": 1097, - "attrs": [], - "isMulticolor": false, - "tags": [ - "eraser" - ], - "defaultCode": 61741, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 269, - "order": 786, - "prevSize": 14, - "code": 61741, - "name": "eraser" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 269 - }, - { - "icon": { - "paths": [ - "M950.857 627.429q0 46.286-25.429 77.143t-70.571 30.857q-23.429 0-44.286-10t-33.714-21.714-32.286-21.714-40.571-10q-62.857 0-62.857 70.857 0 22.286 9.143 65.714t8.571 65.714v2.857q-12.571 0-18.857 0.571-19.429 1.714-55.714 6.571t-66 7.714-56 2.857q-34.857 0-58.857-15.143t-24-47.714q0-21.143 10-40.571t21.714-32.286 21.714-33.714 10-44.286q0-45.143-30.857-70.571t-77.143-25.429q-48 0-81.714 26t-33.714 72.857q0 24.571 8.571 47.429t19.143 36.857 19.143 30.286 8.571 28.857q0 25.714-26.286 50.857-21.143 20-66.857 20-54.286 0-140-13.714-5.143-1.143-15.714-2.286t-15.714-2.286l-7.429-1.143q-0.571 0-1.714-0.571-1.143 0-1.143-0.571v-585.143q1.143 0.571 10 2t19.429 2.857 12.286 2q85.714 13.714 140 13.714 45.714 0 66.857-20 26.286-25.143 26.286-50.857 0-12.571-8.571-28.857t-19.143-30.286-19.143-36.857-8.571-47.429q0-46.857 33.714-72.857t82.286-26q45.714 0 76.571 25.429t30.857 70.571q0 23.429-10 44.286t-21.714 33.714-21.714 32.286-10 40.571q0 32.571 24 47.714t58.857 15.143q36.571 0 102.857-8.571t93.143-9.714v1.143q-0.571 1.143-2 10t-2.857 19.429-2 12.286q-13.714 85.714-13.714 140 0 45.714 20 66.857 25.143 26.286 50.857 26.286 12.571 0 28.857-8.571t30.286-19.143 36.857-19.143 47.429-8.571q46.857 0 72.857 33.714t26 81.714z" - ], - "width": 951, - "attrs": [], - "isMulticolor": false, - "tags": [ - "puzzle-piece" - ], - "defaultCode": 61742, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 270, - "order": 787, - "prevSize": 14, - "code": 61742, - "name": "puzzle-piece" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 270 - }, - { - "icon": { - "paths": [ - "M658.286 402.286v73.143q0 126.286-84.286 219.714t-208.286 107.143v75.429h146.286q14.857 0 25.714 10.857t10.857 25.714-10.857 25.714-25.714 10.857h-365.714q-14.857 0-25.714-10.857t-10.857-25.714 10.857-25.714 25.714-10.857h146.286v-75.429q-124-13.714-208.286-107.143t-84.286-219.714v-73.143q0-14.857 10.857-25.714t25.714-10.857 25.714 10.857 10.857 25.714v73.143q0 105.714 75.143 180.857t180.857 75.143 180.857-75.143 75.143-180.857v-73.143q0-14.857 10.857-25.714t25.714-10.857 25.714 10.857 10.857 25.714zM512 182.857v292.571q0 75.429-53.714 129.143t-129.143 53.714-129.143-53.714-53.714-129.143v-292.571q0-75.429 53.714-129.143t129.143-53.714 129.143 53.714 53.714 129.143z" - ], - "width": 658, - "attrs": [], - "isMulticolor": false, - "tags": [ - "microphone" - ], - "defaultCode": 61744, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 271, - "order": 788, - "prevSize": 14, - "code": 61744, - "name": "microphone2" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 271 - }, - { - "icon": { - "paths": [ - "M154.857 540l-57.714 57.714q-24-58.857-24-122.286v-73.143q0-14.857 10.857-25.714t25.714-10.857 25.714 10.857 10.857 25.714v73.143q0 30.286 8.571 64.571zM791.429 196l-206.286 206.286v73.143q0 75.429-53.714 129.143t-129.143 53.714q-31.429 0-62.286-10.857l-54.857 54.857q55.429 29.143 117.143 29.143 105.714 0 180.857-75.143t75.143-180.857v-73.143q0-14.857 10.857-25.714t25.714-10.857 25.714 10.857 10.857 25.714v73.143q0 126.286-84.286 219.714t-208.286 107.143v75.429h146.286q14.857 0 25.714 10.857t10.857 25.714-10.857 25.714-25.714 10.857h-365.714q-14.857 0-25.714-10.857t-10.857-25.714 10.857-25.714 25.714-10.857h146.286v-75.429q-71.429-7.429-134.286-46.286l-145.143 145.143q-5.714 5.714-13.143 5.714t-13.143-5.714l-46.857-46.857q-5.714-5.714-5.714-13.143t5.714-13.143l705.143-705.143q5.714-5.714 13.143-5.714t13.143 5.714l46.857 46.857q5.714 5.714 5.714 13.143t-5.714 13.143zM574.286 120.571l-354.857 354.857v-292.571q0-75.429 53.714-129.143t129.143-53.714q58.286 0 105.429 33.714t66.571 86.857z" - ], - "width": 805, - "attrs": [], - "isMulticolor": false, - "tags": [ - "microphone-slash" - ], - "defaultCode": 61745, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 272, - "order": 789, - "prevSize": 14, - "code": 61745, - "name": "microphone-slash" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 272 - }, - { - "icon": { - "paths": [ - "M621.714 548.571v-365.714h-256v649.714q68-36 121.714-78.286 134.286-105.143 134.286-205.714zM731.429 109.714v438.857q0 49.143-19.143 97.429t-47.429 85.714-67.429 72.857-72.286 58.857-69.143 44.286-51.143 28.286-24.286 11.429q-6.857 3.429-14.857 3.429t-14.857-3.429q-9.143-4-24.286-11.429t-51.143-28.286-69.143-44.286-72.286-58.857-67.429-72.857-47.429-85.714-19.143-97.429v-438.857q0-14.857 10.857-25.714t25.714-10.857h658.286q14.857 0 25.714 10.857t10.857 25.714z" - ], - "width": 731, - "attrs": [], - "isMulticolor": false, - "tags": [ - "shield" - ], - "defaultCode": 61746, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 273, - "order": 790, - "prevSize": 14, - "code": 61746, - "name": "shield" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 273 - }, - { - "icon": { - "paths": [ - "M73.143 950.857h804.571v-585.143h-804.571v585.143zM292.571 256v-164.571q0-8-5.143-13.143t-13.143-5.143h-36.571q-8 0-13.143 5.143t-5.143 13.143v164.571q0 8 5.143 13.143t13.143 5.143h36.571q8 0 13.143-5.143t5.143-13.143zM731.429 256v-164.571q0-8-5.143-13.143t-13.143-5.143h-36.571q-8 0-13.143 5.143t-5.143 13.143v164.571q0 8 5.143 13.143t13.143 5.143h36.571q8 0 13.143-5.143t5.143-13.143zM950.857 219.429v731.429q0 29.714-21.714 51.429t-51.429 21.714h-804.571q-29.714 0-51.429-21.714t-21.714-51.429v-731.429q0-29.714 21.714-51.429t51.429-21.714h73.143v-54.857q0-37.714 26.857-64.571t64.571-26.857h36.571q37.714 0 64.571 26.857t26.857 64.571v54.857h219.429v-54.857q0-37.714 26.857-64.571t64.571-26.857h36.571q37.714 0 64.571 26.857t26.857 64.571v54.857h73.143q29.714 0 51.429 21.714t21.714 51.429z" - ], - "width": 951, - "attrs": [], - "isMulticolor": false, - "tags": [ - "calendar-o" - ], - "defaultCode": 61747, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 274, - "order": 791, - "prevSize": 14, - "code": 61747, - "name": "calendar-o" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 274 - }, - { - "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": 792, - "prevSize": 14, - "code": 61748, - "name": "fire-extinguisher" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 275 - }, - { - "icon": { - "paths": [ - "M822.857 256q0-22.857-16-38.857t-38.857-16-38.857 16-16 38.857 16 38.857 38.857 16 38.857-16 16-38.857zM950.857 91.429q0 142.286-43.143 246t-144.857 206q-46.286 45.714-111.429 100.571l-11.429 216.571q-1.143 9.143-9.143 14.857l-219.429 128q-4 2.286-9.143 2.286-6.857 0-13.143-5.143l-36.571-36.571q-7.429-8-4.571-18.286l48.571-157.714-160.571-160.571-157.714 48.571q-1.714 0.571-5.143 0.571-8 0-13.143-5.143l-36.571-36.571q-9.714-10.857-2.857-22.286l128-219.429q5.714-8 14.857-9.143l216.571-11.429q54.857-65.143 100.571-111.429 107.429-106.857 204.571-147.429t246.286-40.571q8 0 13.714 5.429t5.714 12.857z" - ], - "width": 951, - "attrs": [], - "isMulticolor": false, - "tags": [ - "rocket" - ], - "defaultCode": 61749, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 276, - "order": 793, - "prevSize": 14, - "code": 61749, - "name": "rocket" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 276 - }, - { - "icon": { - "paths": [ - "M997.143 441.714l-93.714 436h-190.857l101.714-475.429q7.429-32-8.571-50.286-15.429-18.857-47.429-18.857h-96.571l-116.571 544.571h-190.857l116.571-544.571h-163.429l-116.571 544.571h-190.857l116.571-544.571-87.429-186.857h729.143q57.714 0 108.286 23.143t84.286 64.857q34.286 41.714 46.286 96.286t0 111.143z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "maxcdn" - ], - "defaultCode": 61750, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 277, - "order": 794, - "prevSize": 14, - "code": 61750, - "name": "maxcdn" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 277 - }, - { - "icon": { - "paths": [ - "M519.429 797.143l58.286-58.286q10.857-10.857 10.857-25.714t-10.857-25.714l-175.429-175.429 175.429-175.429q10.857-10.857 10.857-25.714t-10.857-25.714l-58.286-58.286q-10.857-10.857-25.714-10.857t-25.714 10.857l-259.429 259.429q-10.857 10.857-10.857 25.714t10.857 25.714l259.429 259.429q10.857 10.857 25.714 10.857t25.714-10.857zM877.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": [ - "chevron-circle-left" - ], - "defaultCode": 61751, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 278, - "order": 795, - "prevSize": 14, - "code": 61751, - "name": "chevron-circle-left" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 278 - }, - { - "icon": { - "paths": [ - "M409.714 797.143l259.429-259.429q10.857-10.857 10.857-25.714t-10.857-25.714l-259.429-259.429q-10.857-10.857-25.714-10.857t-25.714 10.857l-58.286 58.286q-10.857 10.857-10.857 25.714t10.857 25.714l175.429 175.429-175.429 175.429q-10.857 10.857-10.857 25.714t10.857 25.714l58.286 58.286q10.857 10.857 25.714 10.857t25.714-10.857zM877.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": [ - "chevron-circle-right" - ], - "defaultCode": 61752, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 279, - "order": 796, - "prevSize": 14, - "code": 61752, - "name": "chevron-circle-right" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 279 - }, - { - "icon": { - "paths": [ - "M665.714 650.857l58.286-58.286q10.857-10.857 10.857-25.714t-10.857-25.714l-259.429-259.429q-10.857-10.857-25.714-10.857t-25.714 10.857l-259.429 259.429q-10.857 10.857-10.857 25.714t10.857 25.714l58.286 58.286q10.857 10.857 25.714 10.857t25.714-10.857l175.429-175.429 175.429 175.429q10.857 10.857 25.714 10.857t25.714-10.857zM877.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": [ - "chevron-circle-up" - ], - "defaultCode": 61753, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 280, - "order": 797, - "prevSize": 14, - "code": 61753, - "name": "chevron-circle-up" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 280 - }, - { - "icon": { - "paths": [ - "M464.571 742.286l259.429-259.429q10.857-10.857 10.857-25.714t-10.857-25.714l-58.286-58.286q-10.857-10.857-25.714-10.857t-25.714 10.857l-175.429 175.429-175.429-175.429q-10.857-10.857-25.714-10.857t-25.714 10.857l-58.286 58.286q-10.857 10.857-10.857 25.714t10.857 25.714l259.429 259.429q10.857 10.857 25.714 10.857t25.714-10.857zM877.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": [ - "chevron-circle-down" - ], - "defaultCode": 61754, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 281, - "order": 798, - "prevSize": 14, - "code": 61754, - "name": "chevron-circle-down" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 281 - }, - { - "icon": { - "paths": [ - "M645.714 341.143l9.143-100h-505.143l26.857 305.143h349.714l-12.571 130.286-112.571 30.286-112-30.286-7.429-80h-100l12.571 158.857 206.857 57.143h2.286v-0.571l205.143-56.571 28.571-310.857h-368l-8.571-103.429h385.143zM0 73.143h804.571l-73.143 821.714-330.286 92.571-328-92.571z" - ], - "width": 805, - "attrs": [], - "isMulticolor": false, - "tags": [ - "html5" - ], - "defaultCode": 61755, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 282, - "order": 799, - "prevSize": 14, - "code": 61755, - "name": "html5" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 282 - }, - { - "icon": { - "paths": [ - "M157.143 73.143h860l-152 761.714-459.429 152.571-398.857-152.571 40.571-203.429h169.714l-16.571 84 241.143 92 277.714-92 38.857-193.714h-690.286l33.143-169.714h690.857l21.714-109.143h-690.286z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "css3" - ], - "defaultCode": 61756, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 283, - "order": 800, - "prevSize": 14, - "code": 61756, - "name": "css3" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 283 - }, - { - "icon": { - "paths": [ - "M548.571 146.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.714zM1024 676.571v201.143q0 12.571-11.429 17.143-4.571 1.143-6.857 1.143-7.429 0-13.143-5.143l-53.143-53.143q-68 81.714-182 129.429t-245.429 47.714-245.429-47.714-182-129.429l-53.143 53.143q-5.143 5.143-13.143 5.143-2.286 0-6.857-1.143-11.429-4.571-11.429-17.143v-201.143q0-8 5.143-13.143t13.143-5.143h201.143q12.571 0 17.143 11.429 4.571 10.857-4 20l-57.143 57.143q38.286 52 108.286 87.714t155.143 47.143v-369.714h-109.714q-14.857 0-25.714-10.857t-10.857-25.714v-73.143q0-14.857 10.857-25.714t25.714-10.857h109.714v-93.143q-33.143-19.429-53.143-52.857t-20-73.429q0-60.571 42.857-103.429t103.429-42.857 103.429 42.857 42.857 103.429q0 40-20 73.429t-53.143 52.857v93.143h109.714q14.857 0 25.714 10.857t10.857 25.714v73.143q0 14.857-10.857 25.714t-25.714 10.857h-109.714v369.714q85.143-11.429 155.143-47.143t108.286-87.714l-57.143-57.143q-8.571-9.143-4-20 4.571-11.429 17.143-11.429h201.143q8 0 13.143 5.143t5.143 13.143z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "anchor" - ], - "defaultCode": 61757, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 284, - "order": 801, - "prevSize": 14, - "code": 61757, - "name": "anchor2" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 284 - }, - { - "icon": { - "paths": [ - "M603.429 438.857q22.857 0 38.857 16t16 38.857v329.143q0 22.857-16 38.857t-38.857 16h-548.571q-22.857 0-38.857-16t-16-38.857v-329.143q0-22.857 16-38.857t38.857-16h18.286v-182.857q0-105.714 75.143-180.857t180.857-75.143 180.857 75.143 75.143 180.857q0 14.857-10.857 25.714t-25.714 10.857h-36.571q-14.857 0-25.714-10.857t-10.857-25.714q0-60.571-42.857-103.429t-103.429-42.857-103.429 42.857-42.857 103.429v182.857h420.571z" - ], - "width": 658, - "attrs": [], - "isMulticolor": false, - "tags": [ - "unlock-alt" - ], - "defaultCode": 61758, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 285, - "order": 802, - "prevSize": 14, - "code": 61758, - "name": "unlock-alt" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 285 - }, - { - "icon": { - "paths": [ - "M585.143 512q0 60.571-42.857 103.429t-103.429 42.857-103.429-42.857-42.857-103.429 42.857-103.429 103.429-42.857 103.429 42.857 42.857 103.429zM658.286 512q0-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.143zM731.429 512q0 121.143-85.714 206.857t-206.857 85.714-206.857-85.714-85.714-206.857 85.714-206.857 206.857-85.714 206.857 85.714 85.714 206.857zM804.571 512q0-74.286-29.143-142t-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.143 142-29.143 116.571-78 78-116.571 29.143-142zM877.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": [ - "bullseye" - ], - "defaultCode": 61760, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 286, - "order": 803, - "prevSize": 14, - "code": 61760, - "name": "bullseye" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 286 - }, - { - "icon": { - "paths": [ - "M219.429 420.571v109.714q0 22.857-16 38.857t-38.857 16h-109.714q-22.857 0-38.857-16t-16-38.857v-109.714q0-22.857 16-38.857t38.857-16h109.714q22.857 0 38.857 16t16 38.857zM512 420.571v109.714q0 22.857-16 38.857t-38.857 16h-109.714q-22.857 0-38.857-16t-16-38.857v-109.714q0-22.857 16-38.857t38.857-16h109.714q22.857 0 38.857 16t16 38.857zM804.571 420.571v109.714q0 22.857-16 38.857t-38.857 16h-109.714q-22.857 0-38.857-16t-16-38.857v-109.714q0-22.857 16-38.857t38.857-16h109.714q22.857 0 38.857 16t16 38.857z" - ], - "width": 805, - "attrs": [], - "isMulticolor": false, - "tags": [ - "ellipsis-h" - ], - "defaultCode": 61761, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 287, - "order": 804, - "prevSize": 14, - "code": 61761, - "name": "ellipsis-h" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 287 - }, - { - "icon": { - "paths": [ - "M219.429 713.143v109.714q0 22.857-16 38.857t-38.857 16h-109.714q-22.857 0-38.857-16t-16-38.857v-109.714q0-22.857 16-38.857t38.857-16h109.714q22.857 0 38.857 16t16 38.857zM219.429 420.571v109.714q0 22.857-16 38.857t-38.857 16h-109.714q-22.857 0-38.857-16t-16-38.857v-109.714q0-22.857 16-38.857t38.857-16h109.714q22.857 0 38.857 16t16 38.857zM219.429 128v109.714q0 22.857-16 38.857t-38.857 16h-109.714q-22.857 0-38.857-16t-16-38.857v-109.714q0-22.857 16-38.857t38.857-16h109.714q22.857 0 38.857 16t16 38.857z" - ], - "width": 219, - "attrs": [], - "isMulticolor": false, - "tags": [ - "ellipsis-v" - ], - "defaultCode": 61762, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 288, - "order": 805, - "prevSize": 14, - "code": 61762, - "name": "ellipsis-v" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 288 - }, - { - "icon": { - "paths": [ - "M292.571 731.429q0-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.714zM493.143 785.143q-7.429-132.571-101.143-226.286t-226.286-101.143q-8-0.571-13.714 5.143t-5.714 13.143v73.143q0 7.429 4.857 12.571t12.286 5.714q88 6.286 150.857 69.143t69.143 150.857q0.571 7.429 5.714 12.286t12.571 4.857h73.143q7.429 0 13.143-5.714t5.143-13.714zM712.571 785.714q-2.857-88-32-170t-79.714-148.571-117.143-117.143-148.571-79.714-170-32q-8-0.571-13.143 5.143-5.714 5.714-5.714 13.143v73.143q0 7.429 5.143 12.571t12.571 5.714q116.571 4 216 63.714t159.143 159.143 63.714 216q0.571 7.429 5.714 12.571t12.571 5.143h73.143q7.429 0 13.143-5.714 6.286-5.143 5.143-13.143zM877.714 237.714v548.571q0 68-48.286 116.286t-116.286 48.286h-548.571q-68 0-116.286-48.286t-48.286-116.286v-548.571q0-68 48.286-116.286t116.286-48.286h548.571q68 0 116.286 48.286t48.286 116.286z" - ], - "width": 877.7142857142858, - "attrs": [], - "isMulticolor": false, - "tags": [ - "rss-square" - ], - "defaultCode": 61763, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 289, - "order": 806, - "prevSize": 14, - "code": 61763, - "name": "rss-square" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 289 - }, - { - "icon": { - "paths": [ - "M438.857 73.143q119.429 0 220.286 58.857t159.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.286 58.857-220.286 159.714-159.714 220.286-58.857zM658.286 543.429q18.286-10.286 18.286-31.429t-18.286-31.429l-310.857-182.857q-17.714-10.857-36.571-0.571-18.286 10.857-18.286 32v365.714q0 21.143 18.286 32 9.143 4.571 18.286 4.571 9.714 0 18.286-5.143z" - ], - "width": 877.7142857142858, - "attrs": [], - "isMulticolor": false, - "tags": [ - "play-circle" - ], - "defaultCode": 61764, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 290, - "order": 807, - "prevSize": 14, - "code": 61764, - "name": "play-circle" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 290 - }, - { - "icon": { - "paths": [ - "M585.143 258.286l180.571 180.571-326.857 326.857-180.571-180.571zM464.571 817.714l353.143-353.143q10.857-10.857 10.857-25.714t-10.857-25.714l-206.857-206.857q-10.286-10.286-25.714-10.286t-25.714 10.286l-353.143 353.143q-10.857 10.857-10.857 25.714t10.857 25.714l206.857 206.857q10.286 10.286 25.714 10.286t25.714-10.286zM972.571 453.714l-518.286 518.857q-21.143 21.143-51.714 21.143t-51.714-21.143l-72-72q32-32 32-77.714t-32-77.714-77.714-32-77.714 32l-71.429-72q-21.143-21.143-21.143-51.714t21.143-51.714l518.286-517.714q21.143-21.143 51.714-21.143t51.714 21.143l71.429 71.429q-32 32-32 77.714t32 77.714 77.714 32 77.714-32l72 71.429q21.143 21.143 21.143 51.714t-21.143 51.714z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "ticket" - ], - "defaultCode": 61765, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 291, - "order": 808, - "prevSize": 14, - "code": 61765, - "name": "ticket" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 291 - }, - { - "icon": { - "paths": [ - "M731.429 548.571v-73.143q0-14.857-10.857-25.714t-25.714-10.857h-512q-14.857 0-25.714 10.857t-10.857 25.714v73.143q0 14.857 10.857 25.714t25.714 10.857h512q14.857 0 25.714-10.857t10.857-25.714zM877.714 237.714v548.571q0 68-48.286 116.286t-116.286 48.286h-548.571q-68 0-116.286-48.286t-48.286-116.286v-548.571q0-68 48.286-116.286t116.286-48.286h548.571q68 0 116.286 48.286t48.286 116.286z" - ], - "width": 877.7142857142858, - "attrs": [], - "isMulticolor": false, - "tags": [ - "minus-square" - ], - "defaultCode": 61766, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 292, - "order": 809, - "prevSize": 14, - "code": 61766, - "name": "minus-square" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 292 - }, - { - "icon": { - "paths": [ - "M658.286 457.143v36.571q0 8-5.143 13.143t-13.143 5.143h-475.429q-8 0-13.143-5.143t-5.143-13.143v-36.571q0-8 5.143-13.143t13.143-5.143h475.429q8 0 13.143 5.143t5.143 13.143zM731.429 713.143v-475.429q0-37.714-26.857-64.571t-64.571-26.857h-475.429q-37.714 0-64.571 26.857t-26.857 64.571v475.429q0 37.714 26.857 64.571t64.571 26.857h475.429q37.714 0 64.571-26.857t26.857-64.571zM804.571 237.714v475.429q0 68-48.286 116.286t-116.286 48.286h-475.429q-68 0-116.286-48.286t-48.286-116.286v-475.429q0-68 48.286-116.286t116.286-48.286h475.429q68 0 116.286 48.286t48.286 116.286z" - ], - "width": 805, - "attrs": [], - "isMulticolor": false, - "tags": [ - "minus-square-o" - ], - "defaultCode": 61767, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 293, - "order": 810, - "prevSize": 14, - "code": 61767, - "name": "minus-square-o" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 293 - }, - { - "icon": { - "paths": [ - "M581.714 344.571q-10.286 21.143-33.143 21.143h-109.714v493.714q0 8-5.143 13.143t-13.143 5.143h-402.286q-12 0-16.571-10.286-4.571-11.429 2.286-20l91.429-109.714q5.143-6.286 14.286-6.286h182.857v-365.714h-109.714q-22.857 0-33.143-21.143-9.714-21.143 5.143-38.857l182.857-219.429q10.286-12.571 28-12.571t28 12.571l182.857 219.429q15.429 18.286 5.143 38.857z" - ], - "width": 585, - "attrs": [], - "isMulticolor": false, - "tags": [ - "level-up" - ], - "defaultCode": 61768, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 294, - "order": 811, - "prevSize": 14, - "code": 61768, - "name": "level-up" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 294 - }, - { - "icon": { - "paths": [ - "M18.286 146.286h402.286q7.429 0 12.857 5.429t5.429 13.429v493.143h109.714q22.857 0 33.143 21.143t-5.143 39.429l-182.857 219.429q-10.286 12.571-28 12.571t-28-12.571l-182.857-219.429q-14.857-17.714-5.143-39.429 10.286-21.143 33.143-21.143h109.714v-365.714h-182.857q-8 0-14.286-6.286l-91.429-109.714q-7.429-8-2.286-19.429 5.143-10.857 16.571-10.857z" - ], - "width": 585, - "attrs": [], - "isMulticolor": false, - "tags": [ - "level-down" - ], - "defaultCode": 61769, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 295, - "order": 812, - "prevSize": 14, - "code": 61769, - "name": "level-down" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 295 - }, - { - "icon": { - "paths": [ - "M391.429 742.286l350.857-350.857q10.857-10.857 10.857-25.714t-10.857-25.714l-58.286-58.286q-10.857-10.857-25.714-10.857t-25.714 10.857l-266.857 266.857-120.571-120.571q-10.857-10.857-25.714-10.857t-25.714 10.857l-58.286 58.286q-10.857 10.857-10.857 25.714t10.857 25.714l204.571 204.571q10.857 10.857 25.714 10.857t25.714-10.857zM877.714 237.714v548.571q0 68-48.286 116.286t-116.286 48.286h-548.571q-68 0-116.286-48.286t-48.286-116.286v-548.571q0-68 48.286-116.286t116.286-48.286h548.571q68 0 116.286 48.286t48.286 116.286z" - ], - "width": 877.7142857142858, - "attrs": [], - "isMulticolor": false, - "tags": [ - "check-square" - ], - "defaultCode": 61770, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 296, - "order": 813, - "prevSize": 14, - "code": 61770, - "name": "check-square" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 296 - }, - { - "icon": { - "paths": [ - "M230.857 633.143l86.857 86.857-29.714 29.714h-32v-54.857h-54.857v-32zM467.429 410.286q8 7.429-1.714 17.143l-166.286 166.286q-9.714 9.714-17.143 1.714-8-7.429 1.714-17.143l166.286-166.286q9.714-9.714 17.143-1.714zM310.857 804.571l310.857-310.857-164.571-164.571-310.857 310.857v164.571h164.571zM658.286 457.143l52.571-52.571q16-16 16-38.857t-16-38.857l-86.857-86.857q-16-16-38.857-16t-38.857 16l-52.571 52.571zM877.714 237.714v548.571q0 68-48.286 116.286t-116.286 48.286h-548.571q-68 0-116.286-48.286t-48.286-116.286v-548.571q0-68 48.286-116.286t116.286-48.286h548.571q68 0 116.286 48.286t48.286 116.286z" - ], - "width": 877.7142857142858, - "attrs": [], - "isMulticolor": false, - "tags": [ - "pencil-square" - ], - "defaultCode": 61771, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 297, - "order": 814, - "prevSize": 14, - "code": 61771, - "name": "pencil-square" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 297 - }, - { - "icon": { - "paths": [ - "M731.429 530.286v-274.286q0-14.857-10.857-25.714t-25.714-10.857h-274.286q-24 0-33.714 22.286-9.714 23.429 8 40l82.286 82.286-305.143 305.143q-10.857 10.857-10.857 25.714t10.857 25.714l58.286 58.286q10.857 10.857 25.714 10.857t25.714-10.857l305.143-305.143 82.286 82.286q10.286 10.857 25.714 10.857 6.857 0 14.286-2.857 22.286-9.714 22.286-33.714zM877.714 237.714v548.571q0 68-48.286 116.286t-116.286 48.286h-548.571q-68 0-116.286-48.286t-48.286-116.286v-548.571q0-68 48.286-116.286t116.286-48.286h548.571q68 0 116.286 48.286t48.286 116.286z" - ], - "width": 877.7142857142858, - "attrs": [], - "isMulticolor": false, - "tags": [ - "external-link-square" - ], - "defaultCode": 61772, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 298, - "order": 815, - "prevSize": 14, - "code": 61772, - "name": "external-link-square" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 298 - }, - { - "icon": { - "paths": [ - "M574.286 629.143l201.143-201.143q10.857-10.857 10.857-25.714t-10.857-25.714l-201.143-201.143q-17.143-17.714-39.429-8-22.857 9.714-22.857 33.714v91.429q-68 0-123.429 11.143t-92.857 29.143-65.143 45.143-43.714 54.571-25.429 62.286-12.286 63.714-2.857 63.143q0 103.429 95.429 230.857 5.714 6.857 14.286 6.857 4 0 7.429-1.714 12.571-5.143 10.857-18.857-25.143-202.286 35.429-270.286 26.286-29.714 74.286-43.143t128-13.429v91.429q0 24 22.857 33.714 6.857 2.857 13.714 2.857 14.857 0 25.714-10.857zM877.714 237.714v548.571q0 68-48.286 116.286t-116.286 48.286h-548.571q-68 0-116.286-48.286t-48.286-116.286v-548.571q0-68 48.286-116.286t116.286-48.286h548.571q68 0 116.286 48.286t48.286 116.286z" - ], - "width": 877.7142857142858, - "attrs": [], - "isMulticolor": false, - "tags": [ - "share-square" - ], - "defaultCode": 61773, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 299, - "order": 816, - "prevSize": 14, - "code": 61773, - "name": "share-square" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 299 - }, - { - "icon": { - "paths": [ - "M365.714 621.714l146.286-73.143-146.286-73.143v146.286zM585.143 284v309.714l-292.571 146.286v-309.714zM749.714 512q0-84.571-41.714-156t-113.143-113.143-156-41.714-156 41.714-113.143 113.143-41.714 156 41.714 156 113.143 113.143 156 41.714 156-41.714 113.143-113.143 41.714-156zM877.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": [ - "compass" - ], - "defaultCode": 61774, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 300, - "order": 817, - "prevSize": 14, - "code": 61774, - "name": "compass" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 300 - }, - { - "icon": { - "paths": [ - "M654.286 385.714q10.286 20-2.857 37.714l-182.857 256q-10.857 15.429-29.714 15.429t-29.714-15.429l-182.857-256q-13.143-17.714-2.857-37.714 9.714-20 32.571-20h365.714q22.857 0 32.571 20zM731.429 786.286v-548.571q0-7.429-5.429-12.857t-12.857-5.429h-548.571q-7.429 0-12.857 5.429t-5.429 12.857v548.571q0 7.429 5.429 12.857t12.857 5.429h548.571q7.429 0 12.857-5.429t5.429-12.857zM877.714 237.714v548.571q0 68-48.286 116.286t-116.286 48.286h-548.571q-68 0-116.286-48.286t-48.286-116.286v-548.571q0-68 48.286-116.286t116.286-48.286h548.571q68 0 116.286 48.286t48.286 116.286z" - ], - "width": 877.7142857142858, - "attrs": [], - "isMulticolor": false, - "tags": [ - "caret-square-o-down", - "toggle-down" - ], - "defaultCode": 61776, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 301, - "order": 818, - "name": "caret-square-o-down, toggle-down", - "prevSize": 14, - "code": 61776 - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 301 - }, - { - "icon": { - "paths": [ - "M654.286 638.286q-9.714 20-32.571 20h-365.714q-22.857 0-32.571-20-10.286-20 2.857-37.714l182.857-256q10.857-15.429 29.714-15.429t29.714 15.429l182.857 256q13.143 17.714 2.857 37.714zM731.429 786.286v-548.571q0-7.429-5.429-12.857t-12.857-5.429h-548.571q-7.429 0-12.857 5.429t-5.429 12.857v548.571q0 7.429 5.429 12.857t12.857 5.429h548.571q7.429 0 12.857-5.429t5.429-12.857zM877.714 237.714v548.571q0 68-48.286 116.286t-116.286 48.286h-548.571q-68 0-116.286-48.286t-48.286-116.286v-548.571q0-68 48.286-116.286t116.286-48.286h548.571q68 0 116.286 48.286t48.286 116.286z" - ], - "width": 877.7142857142858, - "attrs": [], - "isMulticolor": false, - "tags": [ - "caret-square-o-up", - "toggle-up" - ], - "defaultCode": 61777, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 302, - "order": 819, - "name": "caret-square-o-up, toggle-up", - "prevSize": 14, - "code": 61777 - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 302 - }, - { - "icon": { - "paths": [ - "M621.714 512q0 18.857-15.429 29.714l-256 182.857q-17.714 13.143-37.714 2.857-20-9.714-20-32.571v-365.714q0-22.857 20-32.571 20-10.286 37.714 2.857l256 182.857q15.429 10.857 15.429 29.714zM731.429 786.286v-548.571q0-8-5.143-13.143t-13.143-5.143h-548.571q-8 0-13.143 5.143t-5.143 13.143v548.571q0 8 5.143 13.143t13.143 5.143h548.571q8 0 13.143-5.143t5.143-13.143zM877.714 237.714v548.571q0 68-48.286 116.286t-116.286 48.286h-548.571q-68 0-116.286-48.286t-48.286-116.286v-548.571q0-68 48.286-116.286t116.286-48.286h548.571q68 0 116.286 48.286t48.286 116.286z" - ], - "width": 877.7142857142858, - "attrs": [], - "isMulticolor": false, - "tags": [ - "caret-square-o-right", - "toggle-right" - ], - "defaultCode": 61778, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 303, - "order": 820, - "name": "caret-square-o-right, toggle-right", - "prevSize": 14, - "code": 61778 - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 303 - }, - { - "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": 821, - "name": "eur, euro", - "prevSize": 14, - "code": 61779 - }, - "setIdx": 0, - "setId": 4, - "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": 822, - "prevSize": 14, - "code": 61780, - "name": "gbp" - }, - "setIdx": 0, - "setId": 4, - "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": 823, - "name": "dollar, usd", - "prevSize": 14, - "code": 61781 - }, - "setIdx": 0, - "setId": 4, - "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": 824, - "name": "inr, rupee", - "prevSize": 14, - "code": 61782 - }, - "setIdx": 0, - "setId": 4, - "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": 825, - "name": "cny, jpy, rmb, yen", - "prevSize": 14, - "code": 61783 - }, - "setIdx": 0, - "setId": 4, - "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": 826, - "name": "rouble, rub, ruble", - "prevSize": 14, - "code": 61784 - }, - "setIdx": 0, - "setId": 4, - "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": 827, - "name": "krw, won", - "prevSize": 14, - "code": 61785 - }, - "setIdx": 0, - "setId": 4, - "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": 828, - "name": "bitcoin, btc", - "prevSize": 14, - "code": 61786 - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 311 - }, - { - "icon": { - "paths": [ - "M585.143 292.571v-269.714q12.571 8 20.571 16l233.143 233.143q8 8 16 20.571h-269.714zM512 310.857q0 22.857 16 38.857t38.857 16h310.857v603.429q0 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-16h457.143v310.857z" - ], - "width": 877.7142857142858, - "attrs": [], - "isMulticolor": false, - "tags": [ - "file" - ], - "defaultCode": 61787, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 312, - "order": 829, - "prevSize": 14, - "code": 61787, - "name": "file2" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 312 - }, - { - "icon": { - "paths": [ - "M838.857 272q8 8 16 20.571h-269.714v-269.714q12.571 8 20.571 16zM566.857 365.714h310.857v603.429q0 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-16h457.143v310.857q0 22.857 16 38.857t38.857 16zM658.286 786.286v-36.571q0-8-5.143-13.143t-13.143-5.143h-402.286q-8 0-13.143 5.143t-5.143 13.143v36.571q0 8 5.143 13.143t13.143 5.143h402.286q8 0 13.143-5.143t5.143-13.143zM658.286 640v-36.571q0-8-5.143-13.143t-13.143-5.143h-402.286q-8 0-13.143 5.143t-5.143 13.143v36.571q0 8 5.143 13.143t13.143 5.143h402.286q8 0 13.143-5.143t5.143-13.143zM658.286 493.714v-36.571q0-8-5.143-13.143t-13.143-5.143h-402.286q-8 0-13.143 5.143t-5.143 13.143v36.571q0 8 5.143 13.143t13.143 5.143h402.286q8 0 13.143-5.143t5.143-13.143z" - ], - "width": 877.7142857142858, - "attrs": [], - "isMulticolor": false, - "tags": [ - "file-text" - ], - "defaultCode": 61788, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 313, - "order": 830, - "prevSize": 14, - "code": 61788, - "name": "file-text" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 313 - }, - { - "icon": { - "paths": [ - "M680.571 233.143h101.143l-41.143-124.571-6.857-26.857q-1.143-9.143-1.143-11.429h-2.286l-1.714 11.429q0 0.571-2 10.286t-4.286 16.571zM420.571 822.857q0 6.857-5.714 13.714l-182.286 182.286q-5.714 5.143-13.143 5.143-6.857 0-13.143-5.143l-182.857-182.857q-8.571-9.143-4-20 4.571-11.429 17.143-11.429h109.714v-786.286q0-8 5.143-13.143t13.143-5.143h109.714q8 0 13.143 5.143t5.143 13.143v786.286h109.714q8 0 13.143 5.143t5.143 13.143zM898.286 890.857v133.143h-333.714v-51.429l210.857-302.286q6.857-10.286 12-15.429l6.286-5.143v-1.714q-1.143 0-3.714 0.286t-4.286 0.286q-6.857 1.714-17.143 1.714h-132.571v65.714h-68.571v-130.857h324v50.857l-210.857 302.857q-3.429 4.571-12 14.857l-6.286 6.286v1.143l8-1.143q5.143-1.143 17.143-1.143h141.714v-68h69.143zM949.143 378.286v60.571h-164.571v-60.571h42.857l-26.857-82.286h-138.857l-26.857 82.286h42.857v60.571h-164v-60.571h40l131.429-378.286h92.571l131.429 378.286h40z" - ], - "width": 951, - "attrs": [], - "isMulticolor": false, - "tags": [ - "sort-alpha-asc" - ], - "defaultCode": 61789, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 314, - "order": 831, - "prevSize": 14, - "code": 61789, - "name": "sort-alpha-asc" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 314 - }, - { - "icon": { - "paths": [ - "M680.571 818.286h101.143l-41.143-124.571-6.857-26.857q-1.143-9.143-1.143-11.429h-2.286l-1.714 11.429q0 0.571-2 10.286t-4.286 16.571zM420.571 822.857q0 6.857-5.714 13.714l-182.286 182.286q-5.714 5.143-13.143 5.143-6.857 0-13.143-5.143l-182.857-182.857q-8.571-9.143-4-20 4.571-11.429 17.143-11.429h109.714v-786.286q0-8 5.143-13.143t13.143-5.143h109.714q8 0 13.143 5.143t5.143 13.143v786.286h109.714q8 0 13.143 5.143t5.143 13.143zM949.143 963.429v60.571h-164.571v-60.571h42.857l-26.857-82.286h-138.857l-26.857 82.286h42.857v60.571h-164v-60.571h40l131.429-378.286h92.571l131.429 378.286h40zM898.286 305.714v133.143h-333.714v-51.429l210.857-302.286q6.857-10.286 12-15.429l6.286-5.143v-1.714q-1.143 0-3.714 0.286t-4.286 0.286q-6.857 1.714-17.143 1.714h-132.571v65.714h-68.571v-130.857h324v50.857l-210.857 302.857q-3.429 4.571-12 14.857l-6.286 5.714v1.714l8-1.714q5.143-0.571 17.143-0.571h141.714v-68h69.143z" - ], - "width": 951, - "attrs": [], - "isMulticolor": false, - "tags": [ - "sort-alpha-desc" - ], - "defaultCode": 61790, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 315, - "order": 832, - "prevSize": 14, - "code": 61790, - "name": "sort-alpha-desc" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 315 - }, - { - "icon": { - "paths": [ - "M420.571 822.857q0 6.857-5.714 13.714l-182.286 182.286q-5.714 5.143-13.143 5.143-6.857 0-13.143-5.143l-182.857-182.857q-8.571-9.143-4-20 4.571-11.429 17.143-11.429h109.714v-786.286q0-8 5.143-13.143t13.143-5.143h109.714q8 0 13.143 5.143t5.143 13.143v786.286h109.714q8 0 13.143 5.143t5.143 13.143zM1024 896v109.714q0 8-5.143 13.143t-13.143 5.143h-475.429q-8 0-13.143-5.143t-5.143-13.143v-109.714q0-8 5.143-13.143t13.143-5.143h475.429q8 0 13.143 5.143t5.143 13.143zM914.286 603.429v109.714q0 8-5.143 13.143t-13.143 5.143h-365.714q-8 0-13.143-5.143t-5.143-13.143v-109.714q0-8 5.143-13.143t13.143-5.143h365.714q8 0 13.143 5.143t5.143 13.143zM804.571 310.857v109.714q0 8-5.143 13.143t-13.143 5.143h-256q-8 0-13.143-5.143t-5.143-13.143v-109.714q0-8 5.143-13.143t13.143-5.143h256q8 0 13.143 5.143t5.143 13.143zM694.857 18.286v109.714q0 8-5.143 13.143t-13.143 5.143h-146.286q-8 0-13.143-5.143t-5.143-13.143v-109.714q0-8 5.143-13.143t13.143-5.143h146.286q8 0 13.143 5.143t5.143 13.143z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "sort-amount-asc" - ], - "defaultCode": 61792, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 316, - "order": 833, - "prevSize": 14, - "code": 61792, - "name": "sort-amount-asc" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 316 - }, - { - "icon": { - "paths": [ - "M694.857 896v109.714q0 8-5.143 13.143t-13.143 5.143h-146.286q-8 0-13.143-5.143t-5.143-13.143v-109.714q0-8 5.143-13.143t13.143-5.143h146.286q8 0 13.143 5.143t5.143 13.143zM420.571 822.857q0 6.857-5.714 13.714l-182.286 182.286q-5.714 5.143-13.143 5.143-6.857 0-13.143-5.143l-182.857-182.857q-8.571-9.143-4-20 4.571-11.429 17.143-11.429h109.714v-786.286q0-8 5.143-13.143t13.143-5.143h109.714q8 0 13.143 5.143t5.143 13.143v786.286h109.714q8 0 13.143 5.143t5.143 13.143zM804.571 603.429v109.714q0 8-5.143 13.143t-13.143 5.143h-256q-8 0-13.143-5.143t-5.143-13.143v-109.714q0-8 5.143-13.143t13.143-5.143h256q8 0 13.143 5.143t5.143 13.143zM914.286 310.857v109.714q0 8-5.143 13.143t-13.143 5.143h-365.714q-8 0-13.143-5.143t-5.143-13.143v-109.714q0-8 5.143-13.143t13.143-5.143h365.714q8 0 13.143 5.143t5.143 13.143zM1024 18.286v109.714q0 8-5.143 13.143t-13.143 5.143h-475.429q-8 0-13.143-5.143t-5.143-13.143v-109.714q0-8 5.143-13.143t13.143-5.143h475.429q8 0 13.143 5.143t5.143 13.143z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "sort-amount-desc" - ], - "defaultCode": 61793, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 317, - "order": 834, - "prevSize": 14, - "code": 61793, - "name": "sort-amount-desc" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 317 - }, - { - "icon": { - "paths": [ - "M769.143 750.286q0-36-25.143-66.286t-58.857-30.286q-29.714 0-47.429 21.143t-17.714 53.714 20.857 54.286 59.714 21.714q28.571 0 48.571-15.429t20-38.857zM420.571 822.857q0 6.857-5.714 13.714l-182.286 182.286q-5.714 5.143-13.143 5.143-6.857 0-13.143-5.143l-182.857-182.857q-8.571-9.143-4-20 4.571-11.429 17.143-11.429h109.714v-786.286q0-8 5.143-13.143t13.143-5.143h109.714q8 0 13.143 5.143t5.143 13.143v786.286h109.714q8 0 13.143 5.143t5.143 13.143zM849.143 783.429q0 35.429-7.429 69.429t-23.429 65.143-38.857 54.571-56.286 37.429-72.857 14q-35.429 0-61.714-9.143-13.714-4.571-24-8.571l22.286-64.571q8.571 4 17.714 6.286 21.143 7.429 42.857 7.429 48 0 76.857-33.429t38-83.143h-1.143q-12 13.143-35.143 21.143t-48.286 8q-60.571 0-98.857-40.857t-38.286-98.571q0-60 41.143-101.714t103.429-41.714q70.286 0 117.143 54t46.857 144.286zM832 373.714v65.143h-268v-65.143h95.429v-246.857q0-4 0.286-10.857t0.286-9.714v-9.143h-1.143l-4 6.857q-4.571 7.429-14.857 17.714l-35.429 33.143-46.857-49.143 109.714-105.714h70.286v373.714h94.286z" - ], - "width": 877.7142857142858, - "attrs": [], - "isMulticolor": false, - "tags": [ - "sort-numeric-asc" - ], - "defaultCode": 61794, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 318, - "order": 835, - "prevSize": 14, - "code": 61794, - "name": "sort-numeric-asc" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 318 - }, - { - "icon": { - "paths": [ - "M769.143 165.143q0-36-25.143-66.286t-58.857-30.286q-29.714 0-47.429 21.143t-17.714 53.714 20.857 54.286 59.714 21.714q28.571 0 48.571-15.429t20-38.857zM420.571 822.857q0 6.857-5.714 13.714l-182.286 182.286q-5.714 5.143-13.143 5.143-6.857 0-13.143-5.143l-182.857-182.857q-8.571-9.143-4-20 4.571-11.429 17.143-11.429h109.714v-786.286q0-8 5.143-13.143t13.143-5.143h109.714q8 0 13.143 5.143t5.143 13.143v786.286h109.714q8 0 13.143 5.143t5.143 13.143zM832 958.857v65.143h-268v-65.143h95.429v-246.857q0-4 0.286-10.857t0.286-9.714v-9.143h-1.143l-4 6.857q-4.571 7.429-14.857 17.714l-35.429 33.143-46.857-49.143 109.714-105.714h70.286v373.714h94.286zM849.143 198.286q0 35.429-7.429 69.429t-23.429 65.143-38.857 54.571-56.286 37.429-72.857 14q-35.429 0-61.714-9.143-13.714-4.571-24-8.571l22.286-64.571q8.571 4 17.714 6.286 21.143 7.429 42.857 7.429 48 0 76.857-33.429t38-83.143h-1.143q-12 13.143-35.143 21.143t-48.286 8q-60.571 0-98.857-40.857t-38.286-98.571q0-60 41.143-101.714t103.429-41.714q70.286 0 117.143 54t46.857 144.286z" - ], - "width": 877.7142857142858, - "attrs": [], - "isMulticolor": false, - "tags": [ - "sort-numeric-desc" - ], - "defaultCode": 61795, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 319, - "order": 836, - "prevSize": 14, - "code": 61795, - "name": "sort-numeric-desc" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 319 - }, - { - "icon": { - "paths": [ - "M146.286 768q0-14.857-10.857-25.714t-25.714-10.857q-15.429 0-26 10.857t-10.571 25.714q0 15.429 10.571 26t26 10.571q14.857 0 25.714-10.571t10.857-26zM237.714 475.429v365.714q0 14.857-10.857 25.714t-25.714 10.857h-164.571q-14.857 0-25.714-10.857t-10.857-25.714v-365.714q0-14.857 10.857-25.714t25.714-10.857h164.571q14.857 0 25.714 10.857t10.857 25.714zM914.286 475.429q0 49.143-31.429 85.143 8.571 25.143 8.571 43.429 1.714 43.429-24.571 78.286 9.714 32 0 66.857-8.571 32.571-30.857 53.714 5.143 64-28 103.429-36.571 43.429-112.571 44.571h-73.714q-37.714 0-82.286-8.857t-69.429-16.571-68.857-22.571q-70.286-24.571-90.286-25.143-14.857-0.571-25.714-11.143t-10.857-25.429v-366.286q0-14.286 10.286-24.857t24.571-11.714q13.714-1.143 43.429-33.714t57.714-69.143q38.857-49.714 57.714-68.571 10.286-10.286 17.714-27.429t10-27.714 7.714-34.571q4-22.286 7.143-34.857t11.143-29.714 19.429-28.571q10.857-10.857 25.714-10.857 26.286 0 47.143 6t34.286 14.857 22.857 23.143 13.714 25.714 6.857 28.571 2.857 25.714 0.286 22.286q0 21.714-5.429 43.429t-10.857 34.286-15.714 32q-1.714 3.429-5.714 10.286t-6.286 12.571-4.571 13.714h158.286q44.571 0 77.143 32.571t32.571 77.143z" - ], - "width": 951, - "attrs": [], - "isMulticolor": false, - "tags": [ - "thumbs-up" - ], - "defaultCode": 61796, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 320, - "order": 837, - "prevSize": 14, - "code": 61796, - "name": "thumbs-up" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 320 - }, - { - "icon": { - "paths": [ - "M146.286 329.143q0 14.857-10.857 25.714t-25.714 10.857q-15.429 0-26-10.857t-10.571-25.714q0-15.429 10.571-26t26-10.571q14.857 0 25.714 10.571t10.857 26zM237.714 621.714v-365.714q0-14.857-10.857-25.714t-25.714-10.857h-164.571q-14.857 0-25.714 10.857t-10.857 25.714v365.714q0 14.857 10.857 25.714t25.714 10.857h164.571q14.857 0 25.714-10.857t10.857-25.714zM882.857 536.571q31.429 34.857 31.429 85.143-0.571 44.571-32.857 77.143t-76.857 32.571h-158.286q2.286 8 4.571 13.714t6.286 12.571 5.714 10.286q10.286 21.143 15.429 32.571t10.857 33.429 5.714 43.714q0 13.714-0.286 22.286t-2.857 25.714-6.857 28.571-13.714 25.714-22.857 23.143-34.286 14.857-47.143 6q-14.857 0-25.714-10.857-11.429-11.429-19.429-28.571t-11.143-29.714-7.143-34.857q-5.143-24-7.714-34.571t-10-27.714-17.714-27.429q-18.857-18.857-57.714-68.571-28-36.571-57.714-69.143t-43.429-33.714q-14.286-1.143-24.571-11.714t-10.286-24.857v-366.286q0-14.857 10.857-25.429t25.714-11.143q20-0.571 90.286-25.143 44-14.857 68.857-22.571t69.429-16.571 82.286-8.857h73.714q76 1.143 112.571 44.571 33.143 39.429 28 103.429 22.286 21.143 30.857 53.714 9.714 34.857 0 66.857 26.286 34.857 24.571 78.286 0 18.286-8.571 43.429z" - ], - "width": 951, - "attrs": [], - "isMulticolor": false, - "tags": [ - "thumbs-down" - ], - "defaultCode": 61797, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 321, - "order": 838, - "prevSize": 14, - "code": 61797, - "name": "thumbs-down" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 321 - }, - { - "icon": { - "paths": [ - "M525.143 744.571v-89.714q0-28.571-16.571-28.571-9.714 0-18.857 9.143v128q9.143 9.143 18.857 9.143 16.571 0 16.571-28zM630.286 674.857h37.714v-19.429q0-29.143-18.857-29.143t-18.857 29.143v19.429zM304 522.857v40h-45.714v241.714h-42.286v-241.714h-44.571v-40h132.571zM418.857 594.857v209.714h-38.286v-22.857q-22.286 25.714-43.429 25.714-18.857 0-24-16-3.429-9.143-3.429-30.857v-165.714h37.714v154.286q0 13.714 0.571 14.857 0.571 8.571 8.571 8.571 11.429 0 24-17.714v-160h38.286zM562.857 658.286v83.429q0 29.714-4 41.714-6.857 24-30.286 24-20 0-38.857-23.429v20.571h-38.286v-281.714h38.286v92q18.286-22.857 38.857-22.857 23.429 0 30.286 24 4 12 4 42.286zM706.286 732v5.143q0 16.571-1.143 24.571-1.714 12.571-8.571 22.857-15.429 22.857-45.714 22.857-29.714 0-46.286-21.714-12-15.429-12-49.143v-73.714q0-33.714 11.429-49.143 16.571-21.714 45.714-21.714t44.571 21.714q12 16 12 49.143v43.429h-76v37.143q0 29.143 19.429 29.143 13.714 0 17.143-14.857 0-0.571 0.286-4t0.286-9.429v-12.286h38.857zM448.571 261.143v89.143q0 29.143-18.286 29.143t-18.286-29.143v-89.143q0-29.714 18.286-29.714t18.286 29.714zM753.143 668.571q0-101.143-10.857-148.571-5.714-25.143-24.571-42t-43.429-19.714q-77.714-8.571-235.429-8.571-157.143 0-234.857 8.571-25.143 2.857-43.714 19.714t-24.286 42q-11.429 49.714-11.429 148.571 0 100.571 11.429 148.571 5.714 24.571 24.286 41.714t43.143 20q78.286 8.571 235.429 8.571t235.429-8.571q24.571-2.857 43.143-20t24.286-41.714q11.429-48 11.429-148.571zM321.714 296.571l51.429-169.143h-42.857l-29.143 111.429-30.286-111.429h-44.571l13.714 39.429t13.143 39.429q20 58.857 26.286 90.286v114.857h42.286v-114.857zM486.857 342.857v-74.286q0-33.143-12-49.714-16.571-21.714-44.571-21.714-29.143 0-44.571 21.714-12 16.571-12 49.714v74.286q0 33.143 12 49.714 15.429 21.714 44.571 21.714 28 0 44.571-21.714 12-15.429 12-49.714zM590.286 411.429h38.286v-211.429h-38.286v161.714q-12.571 17.714-24 17.714-8.571 0-9.143-9.143-0.571-1.143-0.571-14.857v-155.429h-38.286v167.429q0 21.143 3.429 31.429 6.286 15.429 24.571 15.429 20.571 0 44-25.714v22.857zM877.714 237.714v548.571q0 68-48.286 116.286t-116.286 48.286h-548.571q-68 0-116.286-48.286t-48.286-116.286v-548.571q0-68 48.286-116.286t116.286-48.286h548.571q68 0 116.286 48.286t48.286 116.286z" - ], - "width": 877.7142857142858, - "attrs": [], - "isMulticolor": false, - "tags": [ - "youtube-square" - ], - "defaultCode": 61798, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 322, - "order": 839, - "prevSize": 14, - "code": 61798, - "name": "youtube-square" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 322 - }, - { - "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": 840, - "prevSize": 14, - "code": 61799, - "name": "youtube" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 323 - }, - { - "icon": { - "paths": [ - "M341.143 381.143q-5.714 10.286-146.857 260.571-15.429 26.286-37.143 26.286h-136.571q-12 0-17.714-9.714t0-20.571l144.571-256q0.571 0 0-0.571l-92-159.429q-6.857-12.571-0.571-21.143 5.143-8.571 18.286-8.571h136.571q22.857 0 37.714 25.714zM801.714 14.286q6.286 9.143 0 21.143l-301.714 533.714v0.571l192 351.429q6.286 11.429 0.571 21.143-5.714 8.571-18.286 8.571h-136.571q-24 0-37.714-25.714l-193.714-355.429q10.286-18.286 303.429-538.286 14.286-25.714 36.571-25.714h137.714q12.571 0 17.714 8.571z" - ], - "width": 805, - "attrs": [], - "isMulticolor": false, - "tags": [ - "xing" - ], - "defaultCode": 61800, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 324, - "order": 841, - "prevSize": 14, - "code": 61800, - "name": "xing" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 324 - }, - { - "icon": { - "paths": [ - "M391.429 437.143q0-0.571-72-126.857-12-19.429-29.714-19.429h-105.143q-10.286 0-14.857 6.286-4 6.857 0.571 16.571l71.429 123.429v0.571l-112 197.714q-5.143 8 0 16 4.571 7.429 13.714 7.429h105.714q17.714 0 28.571-20.571zM748 153.143q-4-6.857-13.714-6.857h-106.857q-17.143 0-28 20l-234.857 416.571q0.571 1.143 149.714 274.857 11.429 20 29.714 20h105.143q10.286 0 14.286-6.857 4.571-7.429-0.571-16l-148.571-272v-0.571l233.714-413.143q4.571-9.143 0-16zM877.714 237.714v548.571q0 68-48.286 116.286t-116.286 48.286h-548.571q-68 0-116.286-48.286t-48.286-116.286v-548.571q0-68 48.286-116.286t116.286-48.286h548.571q68 0 116.286 48.286t48.286 116.286z" - ], - "width": 877.7142857142858, - "attrs": [], - "isMulticolor": false, - "tags": [ - "xing-square" - ], - "defaultCode": 61801, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 325, - "order": 842, - "prevSize": 14, - "code": 61801, - "name": "xing-square" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 325 - }, - { - "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": 843, - "prevSize": 14, - "code": 61802, - "name": "youtube-play" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 326 - }, - { - "icon": { - "paths": [ - "M229.714 404l282.286 174.286-195.429 162.857-280-182.286zM793.143 721.143v61.714l-280 167.429v0.571l-0.571-0.571-0.571 0.571v-0.571l-279.429-167.429v-61.714l84 54.857 195.429-162.286v-1.143l0.571 0.571 0.571-0.571v1.143l196 162.286zM316.571 67.429l195.429 162.857-282.286 173.714-193.143-154.286zM794.286 404l193.143 154.857-279.429 182.286-196-162.857zM708 67.429l279.429 182.286-193.143 154.286-282.286-173.714z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "dropbox" - ], - "defaultCode": 61803, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 327, - "order": 844, - "prevSize": 14, - "code": 61803, - "name": "dropbox" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 327 - }, - { - "icon": { - "paths": [ - "M530.286 800.571v86.286l-404 0.571v-86.286zM668 602.857v400.571l-0.571 20v0.571l-667.429-0.571v-420.571h69.143v353.143h530.286v-353.143h68.571zM137.714 653.143l402.286 37.143-7.429 85.714-402.857-37.143zM176.571 472.571l390.286 104.571-22.286 83.429-390.286-104.571zM269.714 273.143l348 205.714-44 74.286-348-205.714zM475.429 84l227.429 334.286-70.857 48.571-228-333.714zM734.286 0l69.143 398.286-85.143 14.857-69.143-398.286z" - ], - "width": 805, - "attrs": [], - "isMulticolor": false, - "tags": [ - "stack-overflow" - ], - "defaultCode": 61804, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 328, - "order": 845, - "prevSize": 14, - "code": 61804, - "name": "stack-overflow" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 328 - }, - { - "icon": { - "paths": [ - "M778.286 814.857v-370.286h-77.143q11.429 36 11.429 74.857 0 72-36.571 132.857t-99.429 96.286-137.143 35.429q-112.571 0-192.571-77.429t-80-187.143q0-38.857 11.429-74.857h-80.571v370.286q0 14.857 10 24.857t24.857 10h610.857q14.286 0 24.571-10t10.286-24.857zM616 510.286q0-70.857-51.714-120.857t-124.857-50q-72.571 0-124.286 50t-51.714 120.857 51.714 120.857 124.286 50q73.143 0 124.857-50t51.714-120.857zM778.286 304.571v-94.286q0-16-11.429-27.714t-28-11.714h-99.429q-16.571 0-28 11.714t-11.429 27.714v94.286q0 16.571 11.429 28t28 11.429h99.429q16.571 0 28-11.429t11.429-28zM877.714 185.714v652.571q0 46.286-33.143 79.429t-79.429 33.143h-652.571q-46.286 0-79.429-33.143t-33.143-79.429v-652.571q0-46.286 33.143-79.429t79.429-33.143h652.571q46.286 0 79.429 33.143t33.143 79.429z" - ], - "width": 877.7142857142858, - "attrs": [], - "isMulticolor": false, - "tags": [ - "instagram" - ], - "defaultCode": 61805, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 329, - "order": 846, - "prevSize": 14, - "code": 61805, - "name": "instagram" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 329 - }, - { - "icon": { - "paths": [ - "M713.143 73.143q68 0 116.286 48.286t48.286 116.286v548.571q0 68-48.286 116.286t-116.286 48.286h-548.571q-68 0-116.286-48.286t-48.286-116.286v-548.571q0-68 48.286-116.286t116.286-48.286h548.571zM398.857 512q0-50.286-35.429-85.714t-85.714-35.429-85.714 35.429-35.429 85.714 35.429 85.714 85.714 35.429 85.714-35.429 35.429-85.714zM721.143 512q0-50.286-35.429-85.714t-85.714-35.429-85.714 35.429-35.429 85.714 35.429 85.714 85.714 35.429 85.714-35.429 35.429-85.714z" - ], - "width": 877.7142857142858, - "attrs": [], - "isMulticolor": false, - "tags": [ - "flickr" - ], - "defaultCode": 61806, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 330, - "order": 847, - "prevSize": 14, - "code": 61806, - "name": "flickr" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 330 - }, - { - "icon": { - "paths": [ - "M438.857 355.429l114.857 174.857h-229.714zM647.429 658.286h53.714l-262.286-394.857-262.286 394.857h53.714l59.429-91.429h298.286zM877.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": [ - "adn" - ], - "defaultCode": 61808, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 331, - "order": 848, - "prevSize": 14, - "code": 61808, - "name": "adn" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 331 - }, - { - "icon": { - "paths": [ - "M465.714 490.857q4.571 36-28.857 57.714t-63.714 3.429q-22.286-9.714-30.571-33.143t-0.286-46.857 29.714-33.143q20.571-10.286 41.429-6.857t36.571 20.286 15.714 38.571zM529.143 478.857q-8-61.143-64.571-93.714t-112.571-7.429q-36 16-57.429 50.571t-19.714 74q2.286 52 44.286 88.571t94.571 32q52-4.571 86.857-48t28.571-96zM665.714 169.143q-11.429-15.429-32-25.429t-33.143-12.571-40.571-7.143q-166.286-26.857-323.429 1.143-24.571 4-37.714 6.857t-31.429 12.571-28.571 24.571q17.143 16 43.429 26t42 12.571 50 6.571q130.286 16.571 256 0.571 36-4.571 51.143-6.857t41.429-12.286 42.857-26.571zM698.286 760.571q-4.571 14.857-8.857 43.714t-8 48-16.286 40-33.143 32.286q-49.143 27.429-108.286 40.857t-115.429 12.571-115.143-10.571q-26.286-4.571-46.571-10.286t-43.714-15.429-41.714-24.857-29.714-35.143q-14.286-54.857-32.571-166.857l3.429-9.143 10.286-5.143q127.429 84.571 289.429 84.571t290-84.571q12 3.429 13.714 13.143t-2.857 25.714-4.571 21.143zM801.714 211.429q-14.857 95.429-63.429 374.286-2.857 17.143-15.429 32t-24.857 22.857-31.143 17.714q-144 72-348.571 50.286-141.714-15.429-225.143-79.429-8.571-6.857-14.571-15.143t-9.714-20-5.143-19.429-3.429-22.571-3.143-20q-5.143-28.571-15.143-85.714t-16-92.286-13.429-84.286-12.571-90.286q1.714-14.857 10-27.714t18-21.429 25.714-17.143 26.286-12.857 27.429-10.571q71.429-26.286 178.857-36.571 216.571-21.143 386.286 28.571 88.571 26.286 122.857 69.714 9.143 11.429 9.429 29.143t-3.143 30.857z" - ], - "width": 805, - "attrs": [], - "isMulticolor": false, - "tags": [ - "bitbucket" - ], - "defaultCode": 61809, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 332, - "order": 849, - "prevSize": 14, - "code": 61809, - "name": "bitbucket" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 332 - }, - { - "icon": { - "paths": [ - "M484.571 497.143q0-24.571-23.429-37.714t-44-0.571q-24.571 11.429-24.286 41.429t24.857 40.286q22.286 13.143 46.286-2.286t20.571-41.143zM530.286 488q4.571 37.714-20.571 69.143t-62.857 34.857-68-22.857-32-64.571q-1.143-28 14.571-53.143t41.429-36.571q40-17.714 80.857 5.714t46.571 67.429zM628.571 264.571q-11.429 12-30.571 19.429t-30.286 9.143-36.286 4.571q-88.571 11.429-185.143 0-25.143-3.429-36-5.429t-30-9.143-31.143-18.571q7.429-10.857 20.571-17.714t22.857-8.857 26.857-4.857q113.143-20 233.143-0.571 18.857 2.857 29.143 4.857t24.571 9.143 22.286 18zM652.571 690.857q0-4 3.143-15.143t1.714-18.286-10-9.429q-92 60.571-208.571 60.571t-209.143-60.571l-6.857 3.429-2.857 6.857q14.857 88 23.429 120 26.857 46.286 116.571 61.714 142.286 26.286 244.571-30.286 19.429-10.857 28-29.429t12.857-48.857 7.143-40.571zM726.857 294.857q5.143-30.286-4.571-42.857-24.571-31.429-88.571-50.286-123.429-36-278.286-20.571-75.429 6.857-129.143 26.286-21.714 8.571-34 14.286t-26.857 19.429-16.857 30.857q4.571 38.857 10.857 78.857t16.571 97.714 13.714 78.286q0.571 2.857 2.857 17.714t4 20.571 6.857 15.429 12.571 16q60 45.714 162.286 57.143 148 16 251.429-36 13.714-7.429 22.571-13.143t17.714-16.571 11.143-22.857q27.429-152.571 45.714-270.286zM877.714 237.714v548.571q0 68-48.286 116.286t-116.286 48.286h-548.571q-68 0-116.286-48.286t-48.286-116.286v-548.571q0-68 48.286-116.286t116.286-48.286h548.571q68 0 116.286 48.286t48.286 116.286z" - ], - "width": 877.7142857142858, - "attrs": [], - "isMulticolor": false, - "tags": [ - "bitbucket-square" - ], - "defaultCode": 61810, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 333, - "order": 850, - "prevSize": 14, - "code": 61810, - "name": "bitbucket-square" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 333 - }, - { - "icon": { - "paths": [ - "M539.429 759.429l45.714 135.429q-13.143 20-63.429 37.714t-101.143 18.286q-59.429 1.143-108.857-14.857t-81.429-42.286-54.286-60.571-31.714-68.571-9.429-67.429v-310.857h-96v-122.857q41.143-14.857 73.714-39.714t52-51.429 33.143-58.286 19.429-56.571 8.571-50.571q0.571-2.857 2.571-4.857t4.286-2h139.429v242.286h190.286v144h-190.857v296q0 17.143 3.714 32t12.857 30 28.286 23.714 46.571 8q44.571-1.143 76.571-16.571z" - ], - "width": 585, - "attrs": [], - "isMulticolor": false, - "tags": [ - "tumblr" - ], - "defaultCode": 61811, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 334, - "order": 851, - "prevSize": 14, - "code": 61811, - "name": "tumblr" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 334 - }, - { - "icon": { - "paths": [ - "M649.143 834.857l-35.429-104.571q-25.143 12.571-58.857 12.571-20.571 0.571-35.429-6t-22-18-10-23.143-2.857-24.857v-227.429h146.857v-110.857h-146.286v-186.286h-107.429q-4.571 0-5.143 5.714-2.857 25.143-10 49.714t-22.286 54.286-44 54.286-67.714 38.857v94.286h74.286v238.857q0 32.571 12.286 65.714t37.143 63.429 69.143 48.857 100.857 17.429q39.429-0.571 78-14.286t48.857-28.571zM877.714 237.714v548.571q0 68-48.286 116.286t-116.286 48.286h-548.571q-68 0-116.286-48.286t-48.286-116.286v-548.571q0-68 48.286-116.286t116.286-48.286h548.571q68 0 116.286 48.286t48.286 116.286z" - ], - "width": 877.7142857142858, - "attrs": [], - "isMulticolor": false, - "tags": [ - "tumblr-square" - ], - "defaultCode": 61812, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 335, - "order": 852, - "prevSize": 14, - "code": 61812, - "name": "tumblr-square" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 335 - }, - { - "icon": { - "paths": [ - "M437.143 742.286q4.571 10.857-2.857 20l-200 219.429q-5.714 5.714-13.143 5.714-8 0-13.714-5.714l-202.857-219.429q-7.429-9.143-2.857-20 5.143-10.857 16.571-10.857h128v-713.143q0-8 5.143-13.143t13.143-5.143h109.714q8 0 13.143 5.143t5.143 13.143v713.143h128q12 0 16.571 10.857z" - ], - "width": 439, - "attrs": [], - "isMulticolor": false, - "tags": [ - "long-arrow-down" - ], - "defaultCode": 61813, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 336, - "order": 853, - "prevSize": 14, - "code": 61813, - "name": "long-arrow-down" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 336 - }, - { - "icon": { - "paths": [ - "M437.143 281.714q-5.143 10.857-16.571 10.857h-128v713.143q0 8-5.143 13.143t-13.143 5.143h-109.714q-8 0-13.143-5.143t-5.143-13.143v-713.143h-128q-12 0-16.571-10.857t2.857-20l200-219.429q5.714-5.714 13.143-5.714 8 0 13.714 5.714l202.857 219.429q7.429 9.143 2.857 20z" - ], - "width": 439, - "attrs": [], - "isMulticolor": false, - "tags": [ - "long-arrow-up" - ], - "defaultCode": 61814, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 337, - "order": 854, - "prevSize": 14, - "code": 61814, - "name": "long-arrow-up" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 337 - }, - { - "icon": { - "paths": [ - "M1024 457.143v109.714q0 8-5.143 13.143t-13.143 5.143h-713.143v128q0 12-10.857 16.571t-20-2.857l-219.429-200q-5.714-5.714-5.714-13.143 0-8 5.714-13.714l219.429-202.286q9.143-8 20-3.429 10.857 5.143 10.857 16.571v128h713.143q8 0 13.143 5.143t5.143 13.143z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "long-arrow-left" - ], - "defaultCode": 61815, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 338, - "order": 855, - "prevSize": 14, - "code": 61815, - "name": "long-arrow-left" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 338 - }, - { - "icon": { - "paths": [ - "M987.429 510.286q0 8-5.714 13.714l-219.429 202.286q-9.143 8-20 3.429-10.857-5.143-10.857-16.571v-128h-713.143q-8 0-13.143-5.143t-5.143-13.143v-109.714q0-8 5.143-13.143t13.143-5.143h713.143v-128q0-12 10.857-16.571t20 2.857l219.429 200q5.714 5.714 5.714 13.143z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "long-arrow-right" - ], - "defaultCode": 61816, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 339, - "order": 856, - "prevSize": 14, - "code": 61816, - "name": "long-arrow-right" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 339 - }, - { - "icon": { - "paths": [ - "M796 694.286q-22.286 71.429-70.286 142.857-73.714 112-146.857 112-28 0-80-18.286-49.143-18.286-86.286-18.286-34.857 0-81.143 18.857-46.286 19.429-75.429 19.429-86.857 0-172-148-84-149.143-84-287.429 0-130.286 64.571-213.714 64-82.286 162.286-82.286 41.143 0 101.143 17.143 59.429 17.143 78.857 17.143 25.714 0 81.714-19.429 58.286-19.429 98.857-19.429 68 0 121.714 37.143 29.714 20.571 59.429 57.143-45.143 38.286-65.143 67.429-37.143 53.714-37.143 118.286 0 70.857 39.429 127.429t90.286 72zM581.143 24q0 34.857-16.571 77.714-17.143 42.857-53.143 78.857-30.857 30.857-61.714 41.143-21.143 6.286-59.429 9.714 1.714-85.143 44.571-146.857 42.286-61.143 142.857-84.571 0.571 1.714 1.429 6.286t1.429 6.286q0 2.286 0.286 5.714t0.286 5.714z" - ], - "width": 805, - "attrs": [], - "isMulticolor": false, - "tags": [ - "apple" - ], - "defaultCode": 61817, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 340, - "order": 857, - "prevSize": 14, - "code": 61817, - "name": "apple" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 340 - }, - { - "icon": { - "paths": [ - "M389.714 574.857v372l-389.714-53.714v-318.286h389.714zM389.714 150.286v376.571h-389.714v-322.857zM950.857 574.857v449.143l-518.286-71.429v-377.714h518.286zM950.857 73.143v453.714h-518.286v-382.286z" - ], - "width": 951, - "attrs": [], - "isMulticolor": false, - "tags": [ - "windows" - ], - "defaultCode": 61818, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 341, - "order": 858, - "prevSize": 14, - "code": 61818, - "name": "windows" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 341 - }, - { - "icon": { - "paths": [ - "M281.714 276q9.143 0 15.714-6.571t6.571-15.714-6.571-15.714-15.714-6.571-15.429 6.571-6.286 15.714 6.286 15.714 15.429 6.571zM522.857 276q9.143 0 15.429-6.571t6.286-15.714-6.286-15.714-15.429-6.571-15.714 6.571-6.571 15.714 6.571 15.714 15.714 6.571zM58.857 381.143q24 0 41.143 17.143t17.143 41.143v245.714q0 24.571-16.857 41.714t-41.429 17.143-41.714-17.143-17.143-41.714v-245.714q0-24 17.143-41.143t41.714-17.143zM664.571 392v380.571q0 26.286-18.286 44.571t-44 18.286h-42.857v129.714q0 24.571-17.143 41.714t-41.714 17.143-41.714-17.143-17.143-41.714v-129.714h-78.857v129.714q0 24.571-17.143 41.714t-41.714 17.143q-24 0-41.143-17.143t-17.143-41.714l-0.571-129.714h-42.286q-26.286 0-44.571-18.286t-18.286-44.571v-380.571h524.571zM532 160.571q61.143 31.429 97.714 87.714t36.571 123.143h-528.571q0-66.857 36.571-123.143t98.286-87.714l-40.571-74.857q-4-7.429 2.857-11.429 7.429-3.429 11.429 3.429l41.143 75.429q54.286-24 114.857-24t114.857 24l41.143-75.429q4-6.857 11.429-3.429 6.857 4 2.857 11.429zM804.571 439.429v245.714q0 24.571-17.143 41.714t-41.714 17.143q-24 0-41.143-17.143t-17.143-41.714v-245.714q0-24.571 17.143-41.429t41.143-16.857q24.571 0 41.714 16.857t17.143 41.429z" - ], - "width": 805, - "attrs": [], - "isMulticolor": false, - "tags": [ - "android" - ], - "defaultCode": 61819, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 342, - "order": 859, - "prevSize": 14, - "code": 61819, - "name": "android" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 342 - }, - { - "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": 860, - "prevSize": 14, - "code": 61820, - "name": "linux" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 343 - }, - { - "icon": { - "paths": [ - "M585.143 857.143q-24-137.714-80-284.571h-1.143l-1.143 0.571q-9.143 3.429-24.571 9.429t-57.714 28-78.286 46.857-74.857 65.429-58.857 84.571l-8.571-6.286q105.143 85.714 238.857 85.714 75.429 0 146.286-29.714zM479.429 510.286q-12-28-30.286-63.429-177.714 53.143-384.571 53.143-0.571 4-0.571 12 0 70.857 25.143 135.143t70.857 115.143q28.571-50.857 70.571-95.143t81.429-71.143 74.571-46.286 56.857-27.429l21.143-7.429q2.286-0.571 7.429-2t7.429-2.571zM418.286 389.143q-68.571-121.714-139.429-216-78.857 37.143-133.714 106.286t-73.143 155.429q172.571 0 346.286-45.714zM809.143 571.429q-120-34.286-233.714-16.571 49.714 136.571 73.143 268 63.429-42.857 105.714-108.286t54.857-143.143zM349.143 148q-0.571 0-1.143 0.571 0.571-0.571 1.143-0.571zM686.286 230.857q-105.714-93.714-247.429-93.714-43.429 0-88.571 10.857 74.857 97.143 140.571 218.286 39.429-14.857 74.286-34.571t55.143-35.143 37.429-32.571 21.429-23.143zM813.714 508q-1.714-132.571-85.143-234.286l-0.571 0.571q-5.143 6.857-10.857 14t-24.857 25.429-40.571 34.571-57.143 37.143-75.143 36.857q14.286 30.286 25.143 54.286 1.143 3.429 3.714 10t4.286 9.429q20.571-2.857 42.571-4t42-1.143 39.429 0.857 36.571 2.286 32.286 3.143 27.429 3.714 20.857 3.429 14.286 2.571zM877.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": [ - "dribbble" - ], - "defaultCode": 61821, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 344, - "order": 861, - "prevSize": 14, - "code": 61821, - "name": "dribbble" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 344 - }, - { - "icon": { - "paths": [ - "M670.286 607.429q0-28.571-11.143-52.286t-27.714-39.143-41.714-28-47.143-19.429-50-13.143l-59.429-13.714q-17.143-4-25.143-6t-20-6.571-17.143-9.143-9.429-12-4.286-17.143q0-44 82.286-44 24.571 0 44 6.857t30.857 16.286 21.714 19.143 22.857 16.571 27.429 6.857q26.857 0 43.143-18.286t16.286-44q0-31.429-32-56.857t-81.143-38.571-104-13.143q-38.857 0-75.429 8.857t-68.286 26.857-50.857 49.714-19.143 73.429q0 34.857 10.857 60.857t32 43.143 45.714 27.714 58.857 18.571l83.429 20.571q51.429 12.571 64 20.571 18.286 11.429 18.286 34.286 0 22.286-22.857 36.857t-60 14.571q-29.143 0-52.286-9.143t-37.143-22-26-25.714-26.286-22-30.857-9.143q-28.571 0-43.143 17.143t-14.571 42.857q0 52.571 69.714 90t166.286 37.429q41.714 0 80-10.571t70-30.571 50.571-53.429 18.857-75.143zM877.714 731.429q0 90.857-64.286 155.143t-155.143 64.286q-74.286 0-133.714-45.714-44 9.143-85.714 9.143-81.714 0-156.286-31.714t-128.571-85.714-85.714-128.571-31.714-156.286q0-41.714 9.143-85.714-45.714-59.429-45.714-133.714 0-90.857 64.286-155.143t155.143-64.286q74.286 0 133.714 45.714 44-9.143 85.714-9.143 81.714 0 156.286 31.714t128.571 85.714 85.714 128.571 31.714 156.286q0 41.714-9.143 85.714 45.714 59.429 45.714 133.714z" - ], - "width": 877.7142857142858, - "attrs": [], - "isMulticolor": false, - "tags": [ - "skype" - ], - "defaultCode": 61822, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 345, - "order": 862, - "prevSize": 14, - "code": 61822, - "name": "skype" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 345 - }, - { - "icon": { - "paths": [ - "M571.429 248l21.143-110.857q2.857-13.143-5.143-22.857t-20-9.714h-406.857q-13.143 0-22 9.714t-8.857 21.143v629.143q0 4 3.429 0.571l166.286-201.143q13.143-14.857 21.714-19.143t27.429-4.286h136.571q12.571 0 21.143-8.286t10.286-16.857q13.714-74.286 21.143-109.143 2.286-12-6.571-22.857t-20.857-10.857h-168q-16.571 0-27.429-10.857t-10.857-27.429v-24q0-16.571 10.857-27.143t27.429-10.571h197.714q10.286 0 20-7.714t11.429-16.857zM701.143 121.143q-8.571 41.714-30.571 152.286t-39.714 200-20 99.143q-3.429 12.571-5.143 18.571t-8 18.571-14 18.857-22 12-33.143 5.714h-154.857q-7.429 0-12.571 5.714-4.571 5.143-243.429 282.286-12.571 14.286-33.429 16.286t-27.714-3.143q-31.429-12.571-31.429-56v-805.714q0-31.429 21.714-58.571t68.571-27.143h507.429q54.286 0 72.571 30.286t5.714 90.857zM701.143 121.143l-90.286 451.429q2.286-9.714 20-99.143t39.714-200 30.571-152.286z" - ], - "width": 731, - "attrs": [], - "isMulticolor": false, - "tags": [ - "foursquare" - ], - "defaultCode": 61824, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 346, - "order": 863, - "prevSize": 14, - "code": 61824, - "name": "foursquare" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 346 - }, - { - "icon": { - "paths": [ - "M402.286 768v-585.143q0-8-5.143-13.143t-13.143-5.143h-274.286q-8 0-13.143 5.143t-5.143 13.143v585.143q0 8 5.143 13.143t13.143 5.143h274.286q8 0 13.143-5.143t5.143-13.143zM786.286 548.571v-365.714q0-8-5.143-13.143t-13.143-5.143h-274.286q-8 0-13.143 5.143t-5.143 13.143v365.714q0 8 5.143 13.143t13.143 5.143h274.286q8 0 13.143-5.143t5.143-13.143zM877.714 109.714v804.571q0 14.857-10.857 25.714t-25.714 10.857h-804.571q-14.857 0-25.714-10.857t-10.857-25.714v-804.571q0-14.857 10.857-25.714t25.714-10.857h804.571q14.857 0 25.714 10.857t10.857 25.714z" - ], - "width": 877.7142857142858, - "attrs": [], - "isMulticolor": false, - "tags": [ - "trello" - ], - "defaultCode": 61825, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 347, - "order": 864, - "prevSize": 14, - "code": 61825, - "name": "trello" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 347 - }, - { - "icon": { - "paths": [ - "M731.429 603.429q0 22.857-16 38.857t-38.857 16q-29.143 0-45.714-24.571l-129.714-194.857h-25.714v75.429l141.143 234.857q5.143 8.571 5.143 18.857 0 14.857-10.857 25.714t-25.714 10.857h-109.714v155.429q0 26.286-18.857 45.143t-45.143 18.857h-91.429q-26.286 0-45.143-18.857t-18.857-45.143v-155.429h-109.714q-14.857 0-25.714-10.857t-10.857-25.714q0-10.286 5.143-18.857l141.143-234.857v-75.429h-25.714l-129.714 194.857q-16.571 24.571-45.714 24.571-22.857 0-38.857-16t-16-38.857q0-16.571 9.143-30.286l146.286-219.429q41.714-61.143 100.571-61.143h219.429q58.857 0 100.571 61.143l146.286 219.429q9.143 13.714 9.143 30.286zM493.714 146.286q0 53.143-37.429 90.571t-90.571 37.429-90.571-37.429-37.429-90.571 37.429-90.571 90.571-37.429 90.571 37.429 37.429 90.571z" - ], - "width": 731, - "attrs": [], - "isMulticolor": false, - "tags": [ - "female" - ], - "defaultCode": 61826, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 348, - "order": 865, - "prevSize": 14, - "code": 61826, - "name": "female" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 348 - }, - { - "icon": { - "paths": [ - "M585.143 402.286v237.714q0 22.857-16 38.857t-38.857 16-38.857-16-16-38.857v-201.143h-36.571v521.143q0 26.286-18.857 45.143t-45.143 18.857-45.143-18.857-18.857-45.143v-265.143h-36.571v265.143q0 26.286-18.857 45.143t-45.143 18.857-45.143-18.857-18.857-45.143v-521.143h-36.571v201.143q0 22.857-16 38.857t-38.857 16-38.857-16-16-38.857v-237.714q0-45.714 32-77.714t77.714-32h365.714q45.714 0 77.714 32t32 77.714zM420.571 146.286q0 53.143-37.429 90.571t-90.571 37.429-90.571-37.429-37.429-90.571 37.429-90.571 90.571-37.429 90.571 37.429 37.429 90.571z" - ], - "width": 585, - "attrs": [], - "isMulticolor": false, - "tags": [ - "male" - ], - "defaultCode": 61827, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 349, - "order": 866, - "prevSize": 14, - "code": 61827, - "name": "male" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 349 - }, - { - "icon": { - "paths": [ - "M441.714 744l200-270.286q9.143-12.571 14-33.714t-3.429-48.571-35.143-45.143q-22.857-14.857-47.429-14.571t-42 10-31.143 25.714q-20.571 22.857-54.857 22.857-33.714 0-54.286-22.857-13.714-16-31.143-25.714t-42-10-48 14.571q-26.286 17.714-34.571 45.143t-3.429 48.571 14 33.714zM877.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": [ - "gittip", - "gratipay" - ], - "defaultCode": 61828, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 350, - "order": 867, - "name": "gittip, gratipay", - "prevSize": 14, - "code": 61828 - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 350 - }, - { - "icon": { - "paths": [ - "M841.143 512q0-66.857-26-127.714t-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 26 127.714-26 105.143-70.286 70.286-105.143 26-127.714zM998.857 670.286q-2.286 8.571-11.429 11.429l-166.857 54.857v174.857q0 9.143-7.429 14.857-8.571 5.714-16.571 2.286l-166.857-53.714-102.857 141.714q-5.714 7.429-14.857 7.429t-14.857-7.429l-102.857-141.714-166.857 53.714q-8 3.429-16.571-2.286-7.429-5.714-7.429-14.857v-174.857l-166.857-54.857q-9.143-2.857-11.429-11.429-2.857-9.714 2.286-16.571l102.857-141.714-102.857-141.714q-5.143-7.429-2.286-16.571 2.286-8.571 11.429-11.429l166.857-54.857v-174.857q0-9.143 7.429-14.857 8.571-5.714 16.571-2.286l166.857 53.714 102.857-141.714q5.143-6.857 14.857-6.857t14.857 6.857l102.857 141.714 166.857-53.714q8-3.429 16.571 2.286 7.429 5.714 7.429 14.857v174.857l166.857 54.857q9.143 2.857 11.429 11.429 2.857 9.143-2.286 16.571l-102.857 141.714 102.857 141.714q5.143 6.857 2.286 16.571z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "sun-o" - ], - "defaultCode": 61829, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 351, - "order": 868, - "prevSize": 14, - "code": 61829, - "name": "sun-o" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 351 - }, - { - "icon": { - "paths": [ - "M721.143 744.571q-30.857 5.143-62.857 5.143-104 0-192.571-51.429t-140-140-51.429-192.571q0-109.714 59.429-204-114.857 34.286-187.714 130.857t-72.857 219.429q0 74.286 29.143 142t78 116.571 116.571 78 142 29.143q82.286 0 156.286-35.143t126-98zM837.143 696q-53.714 116-162 185.429t-236.286 69.429q-89.143 0-170.286-34.857t-140-93.714-93.714-140-34.857-170.286q0-87.429 32.857-167.143t89.143-138 134.571-94 165.714-39.143q25.143-1.143 34.857 22.286 10.286 23.429-8.571 41.143-49.143 44.571-75.143 103.714t-26 124.857q0 84.571 41.714 156t113.143 113.143 156 41.714q67.429 0 130.286-29.143 23.429-10.286 41.143 7.429 8 8 10 19.429t-2.571 21.714z" - ], - "width": 877.7142857142858, - "attrs": [], - "isMulticolor": false, - "tags": [ - "moon-o" - ], - "defaultCode": 61830, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 352, - "order": 869, - "prevSize": 14, - "code": 61830, - "name": "moon-o" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 352 - }, - { - "icon": { - "paths": [ - "M621.714 475.429q0-14.857-10.857-25.714t-25.714-10.857h-146.286q-14.857 0-25.714 10.857t-10.857 25.714 10.857 25.714 25.714 10.857h146.286q14.857 0 25.714-10.857t10.857-25.714zM950.857 365.714v548.571q0 14.857-10.857 25.714t-25.714 10.857h-804.571q-14.857 0-25.714-10.857t-10.857-25.714v-548.571q0-14.857 10.857-25.714t25.714-10.857h804.571q14.857 0 25.714 10.857t10.857 25.714zM987.429 109.714v146.286q0 14.857-10.857 25.714t-25.714 10.857h-877.714q-14.857 0-25.714-10.857t-10.857-25.714v-146.286q0-14.857 10.857-25.714t25.714-10.857h877.714q14.857 0 25.714 10.857t10.857 25.714z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "archive" - ], - "defaultCode": 61831, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 353, - "order": 870, - "prevSize": 14, - "code": 61831, - "name": "archive" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 353 - }, - { - "icon": { - "paths": [ - "M932.571 548.571q0 14.857-10.857 25.714t-25.714 10.857h-128q0 97.714-38.286 165.714l118.857 119.429q10.857 10.857 10.857 25.714t-10.857 25.714q-10.286 10.857-25.714 10.857t-25.714-10.857l-113.143-112.571q-2.857 2.857-8.571 7.429t-24 16.286-37.143 20.857-46.857 16.571-55.429 7.429v-512h-73.143v512q-29.143 0-58-7.714t-49.714-18.857-37.714-22.286-24.857-18.571l-8.571-8-104.571 118.286q-11.429 12-27.429 12-13.714 0-24.571-9.143-10.857-10.286-11.714-25.429t8.857-26.571l115.429-129.714q-33.143-65.143-33.143-156.571h-128q-14.857 0-25.714-10.857t-10.857-25.714 10.857-25.714 25.714-10.857h128v-168l-98.857-98.857q-10.857-10.857-10.857-25.714t10.857-25.714 25.714-10.857 25.714 10.857l98.857 98.857h482.286l98.857-98.857q10.857-10.857 25.714-10.857t25.714 10.857 10.857 25.714-10.857 25.714l-98.857 98.857v168h128q14.857 0 25.714 10.857t10.857 25.714zM658.286 219.429h-365.714q0-76 53.429-129.429t129.429-53.429 129.429 53.429 53.429 129.429z" - ], - "width": 951, - "attrs": [], - "isMulticolor": false, - "tags": [ - "bug" - ], - "defaultCode": 61832, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 354, - "order": 871, - "prevSize": 14, - "code": 61832, - "name": "bug" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 354 - }, - { - "icon": { - "paths": [ - "M1095.429 297.143q13.143 36.571-85.714 168-13.714 18.286-37.143 48.571-44.571 57.143-51.429 74.857-9.714 23.429 8 46.286 9.714 12 46.286 46.857h0.571l2.286 2.286q80.571 74.857 109.143 126.286 1.714 2.857 3.714 7.143t4 15.143-0.286 19.429-14.286 15.714-33.714 7.143l-146.286 2.286q-13.714 2.857-32-2.857t-29.714-12.571l-11.429-6.857q-17.143-12-40-36.571t-39.143-44.286-34.857-33.143-32.286-8.857q-1.714 0.571-4.571 2t-9.714 8.286-12.286 16.857-9.714 29.714-3.714 44.286q0 8.571-2 15.714t-4.286 10.571l-2.286 2.857q-10.286 10.857-30.286 12.571h-65.714q-40.571 2.286-83.429-9.429t-75.143-30.286-58.857-37.714-40.286-32.857l-14.286-13.714q-5.714-5.714-15.714-17.143t-40.857-52-60.571-86.286-70-120.571-74.571-155.429q-3.429-9.143-3.429-15.429t1.714-9.143l2.286-3.429q8.571-10.857 32.571-10.857l156.571-1.143q6.857 1.143 13.143 3.714t9.143 4.857l2.857 1.714q9.143 6.286 13.714 18.286 11.429 28.571 26.286 59.143t23.429 46.571l9.143 16.571q16.571 34.286 32 59.429t27.714 39.143 23.714 22 19.429 8 15.429-2.857q1.143-0.571 2.857-2.857t6.857-12.571 7.714-26.857 5.429-46.286 0-71.429q-1.143-22.857-5.143-41.714t-8-26.286l-3.429-6.857q-14.286-19.429-48.571-24.571-7.429-1.143 2.857-13.714 9.714-10.857 21.714-17.143 30.286-14.857 136.571-13.714 46.857 0.571 77.143 7.429 11.429 2.857 19.143 7.714t11.714 13.714 6 18.286 2 26-0.571 31.429-1.429 40.286-0.857 47.143q0 6.286-0.571 24t-0.286 27.429 2 23.143 6.571 22.286 12.857 14q4.571 1.143 9.714 2.286t14.857-6.286 21.714-19.714 29.714-38.286 38.857-61.429q34.286-59.429 61.143-128.571 2.286-5.714 5.714-10t6.286-6l2.286-1.714 2.857-1.429t7.429-1.714 11.429-0.286l164.571-1.143q22.286-2.857 36.571 1.429t17.714 9.429z" - ], - "width": 1097, - "attrs": [], - "isMulticolor": false, - "tags": [ - "vk" - ], - "defaultCode": 61833, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 355, - "order": 872, - "prevSize": 14, - "code": 61833, - "name": "vk" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 355 - }, - { - "icon": { - "paths": [ - "M385.714 733.714q12-19.429 6.286-39.429t-25.714-28.571q-19.429-8-41.714-0.571t-34.286 26.286q-12.571 19.429-7.429 39.143t24.571 28.857 42.571 1.429 35.714-27.143zM439.429 664.571q4.571-7.429 2-15.143t-10-10.571q-8-2.857-16.286 0.286t-12.286 10.571q-9.714 17.714 7.429 25.714 8 2.857 16.571-0.286t12.571-10.571zM538.857 725.714q-25.714 58.286-90.286 85.714t-128 6.857q-61.143-19.429-84.286-72.286t3.714-107.143q26.857-53.143 86.571-79.429t120.286-10.857q63.429 16.571 90.571 68.286t1.429 108.857zM717.143 634.286q-5.143-54.857-50.857-97.143t-119.143-62.286-156.857-12q-127.429 13.143-211.143 80.857t-75.714 151.143q5.143 54.857 50.857 97.143t119.143 62.286 156.857 12q127.429-13.143 211.143-80.857t75.714-151.143zM893.143 636.571q0 38.857-21.143 79.714t-62.286 78.286-96.286 67.143-129.143 47.429-154.571 17.714-157.143-19.143-137.429-53.143-98-86.286-37.143-114q0-65.714 39.714-140t112.857-147.429q96.571-96.571 195.143-134.857t140.857 4q37.143 36.571 11.429 119.429-2.286 8-0.571 11.429t5.714 4 8.286-0.286 7.714-2l3.429-1.143q79.429-33.714 140.571-33.714t87.429 34.857q25.714 36 0 101.714-1.143 7.429-2.571 11.429t2.571 7.143 6.857 4.286 9.714 3.429q32.571 10.286 58.857 26.857t45.714 46.571 19.429 66.571zM850.857 280q24 26.857 31.143 62t-3.714 67.143q-4.571 13.143-16.857 19.429t-25.429 2.286q-13.143-4.571-19.429-16.857t-2.286-25.429q11.429-36-13.714-63.429t-61.143-20q-13.714 2.857-25.714-4.571t-14.286-21.143q-2.857-13.714 4.571-25.429t21.143-14.571q34.286-7.429 68 3.143t57.714 37.429zM954.286 186.857q49.714 54.857 64.286 127.143t-7.714 138q-5.143 15.429-19.429 22.857t-29.714 2.286-22.857-19.429-2.857-29.714q16-46.857 5.714-98.286t-45.714-90.286q-35.429-39.429-84.571-54.571t-98.857-4.857q-16 3.429-29.714-5.429t-17.143-24.857 5.429-29.429 24.857-16.857q70.286-14.857 139.429 6.571t118.857 76.857z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "weibo" - ], - "defaultCode": 61834, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 356, - "order": 873, - "prevSize": 14, - "code": 61834, - "name": "weibo" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 356 - }, - { - "icon": { - "paths": [ - "M647.429 897.143q-97.714 53.714-210.286 53.714-112 0-209.714-53.714 78.857-49.714 134.571-120.571t75.143-153.143q20 82.286 75.714 153.143t134.571 120.571zM364.571 81.143v277.143q0 144-72.286 262.571t-188.857 175.143q-103.429-122.857-103.429-282.857 0-106.857 47.714-199.714t131.143-154 185.714-78.286zM877.714 513.143q0 160-103.429 282.857-116.571-56.571-188.857-175.143t-72.286-262.571v-277.143q102.286 17.143 185.714 78.286t131.143 154 47.714 199.714z" - ], - "width": 877.7142857142858, - "attrs": [], - "isMulticolor": false, - "tags": [ - "renren" - ], - "defaultCode": 61835, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 357, - "order": 874, - "prevSize": 14, - "code": 61835, - "name": "renren" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 357 - }, - { - "icon": { - "paths": [ - "M801.143 630.286q-18.286 45.714-43.429 78.857t-52 50.571-56.571 26.571-58 8.286-55.143-4.857-49.429-12.571-39.714-15.714-26.286-12.857l-9.714-5.714q-64.571 130.286-165.429 205.429t-219.714 75.714q-10.857 0-18.286-7.429t-7.429-18.286 7.429-18 18.286-7.143q98.857-0.571 184.286-61.429t143.714-168.286q-20.571 8-41.143 13.143t-47.429 7.429-52-1.429-53.143-16.286-52.571-33.714-48.286-57.143-42.571-83.429q65.143-26.857 122.286-32.571t95.714 4.286 71.143 32.286 50.571 44 32.286 46.857q30.286-74.857 45.143-166.286-4 0.571-10.286 1.429t-26.571 1.429-39.714-0.286-46.571-5.714-50.571-13.143-48-24.286-42.857-37.143-31.143-54-16.286-72.857q40-16 76.286-20.857t64.286 0.571 52.571 17.143 42 28.571 32 34.857 24 36 15.714 32 9.143 22.571l2.286 9.143q6.857-69.714 6.857-111.429-4.571-3.429-12.286-9.143t-28-25.429-36.286-40.857-30.857-53.143-18.857-64.286 6.857-72.571 40-79.143q41.714 14.286 72.857 35.143t48.286 43.714 27.429 48.571 11.714 50.857-0.286 48.857-7.429 43.714-10.857 35.429-9.714 24l-4 8.571q0.571 2.857 0.571 28.857t-0.571 40.857q1.714-4 5.714-10.571t17.429-24.571 28.857-33.143 40.571-31.714 52.286-25.429 64-8.286 75.714 13.714q-1.143 44.571-12.286 80.857t-28.571 59.714-39.714 40.857-46.571 26-48.286 13.714-45.714 5.429-38.571-0.571-26.571-2.571l-9.714-1.714q-13.143 84-41.714 161.714 3.429-4 10.286-10.571t28.286-23.429 44.286-30 56.857-24 67.143-11.429 73.714 13.429 78.286 44.286z" - ], - "width": 805, - "attrs": [], - "isMulticolor": false, - "tags": [ - "pagelines" - ], - "defaultCode": 61836, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 358, - "order": 875, - "prevSize": 14, - "code": 61836, - "name": "pagelines" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 358 - }, - { - "icon": { - "paths": [ - "M719.429 716v37.714q0 48.571-32.857 82.571t-79.143 34h-32.571l-148.571 153.714v-153.714h-302.286q-46.286 0-79.143-34t-32.857-82.571v-37.714h707.429zM719.429 529.714v145.714h-707.429v-145.714h707.429zM719.429 342.286v145.714h-707.429v-145.714h707.429zM719.429 262.286v38.286h-707.429v-38.286q0-48 32.857-82t79.143-34h483.429q46.286 0 79.143 34t32.857 82z" - ], - "width": 731, - "attrs": [], - "isMulticolor": false, - "tags": [ - "stack-exchange" - ], - "defaultCode": 61837, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 359, - "order": 876, - "prevSize": 14, - "code": 61837, - "name": "stack-exchange" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 359 - }, - { - "icon": { - "paths": [ - "M658.286 512q0 8-5.143 13.143l-182.857 182.857q-5.143 5.143-13.143 5.143-7.429 0-12.857-5.429t-5.429-12.857v-109.714h-201.143q-7.429 0-12.857-5.429t-5.429-12.857v-109.714q0-7.429 5.429-12.857t12.857-5.429h201.143v-109.714q0-8 5.143-13.143t13.143-5.143q6.857 0 13.714 5.714l182.286 182.286q5.143 5.143 5.143 13.143zM749.714 512q0-84.571-41.714-156t-113.143-113.143-156-41.714-156 41.714-113.143 113.143-41.714 156 41.714 156 113.143 113.143 156 41.714 156-41.714 113.143-113.143 41.714-156zM877.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": [ - "arrow-circle-o-right" - ], - "defaultCode": 61838, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 360, - "order": 877, - "prevSize": 14, - "code": 61838, - "name": "arrow-circle-o-right" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 360 - }, - { - "icon": { - "paths": [ - "M658.286 457.143v109.714q0 7.429-5.429 12.857t-12.857 5.429h-201.143v109.714q0 8-5.143 13.143t-13.143 5.143q-6.857 0-13.714-5.714l-182.286-182.286q-5.143-5.143-5.143-13.143t5.143-13.143l182.857-182.857q5.143-5.143 13.143-5.143 7.429 0 12.857 5.429t5.429 12.857v109.714h201.143q7.429 0 12.857 5.429t5.429 12.857zM749.714 512q0-84.571-41.714-156t-113.143-113.143-156-41.714-156 41.714-113.143 113.143-41.714 156 41.714 156 113.143 113.143 156 41.714 156-41.714 113.143-113.143 41.714-156zM877.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": [ - "arrow-circle-o-left" - ], - "defaultCode": 61840, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 361, - "order": 878, - "prevSize": 14, - "code": 61840, - "name": "arrow-circle-o-left" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 361 - }, - { - "icon": { - "paths": [ - "M585.143 329.143v365.714q0 14.857-10.857 25.714t-25.714 10.857q-11.429 0-21.143-6.857l-256-182.857q-15.429-10.857-15.429-29.714t15.429-29.714l256-182.857q9.714-6.857 21.143-6.857 14.857 0 25.714 10.857t10.857 25.714zM731.429 786.286v-548.571q0-7.429-5.429-12.857t-12.857-5.429h-548.571q-7.429 0-12.857 5.429t-5.429 12.857v548.571q0 7.429 5.429 12.857t12.857 5.429h548.571q7.429 0 12.857-5.429t5.429-12.857zM877.714 237.714v548.571q0 68-48.286 116.286t-116.286 48.286h-548.571q-68 0-116.286-48.286t-48.286-116.286v-548.571q0-68 48.286-116.286t116.286-48.286h548.571q68 0 116.286 48.286t48.286 116.286z" - ], - "width": 877.7142857142858, - "attrs": [], - "isMulticolor": false, - "tags": [ - "caret-square-o-left", - "toggle-left" - ], - "defaultCode": 61841, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 362, - "order": 879, - "name": "caret-square-o-left, toggle-left", - "prevSize": 14, - "code": 61841 - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 362 - }, - { - "icon": { - "paths": [ - "M585.143 512q0 60.571-42.857 103.429t-103.429 42.857-103.429-42.857-42.857-103.429 42.857-103.429 103.429-42.857 103.429 42.857 42.857 103.429zM438.857 201.143q-84.571 0-156 41.714t-113.143 113.143-41.714 156 41.714 156 113.143 113.143 156 41.714 156-41.714 113.143-113.143 41.714-156-41.714-156-113.143-113.143-156-41.714zM877.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": [ - "dot-circle-o" - ], - "defaultCode": 61842, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 363, - "order": 880, - "prevSize": 14, - "code": 61842, - "name": "dot-circle-o" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 363 - }, - { - "icon": { - "paths": [ - "M584.571 678.286l58.286 116.571q-33.143 102.286-120 165.714t-193.714 63.429q-89.143 0-164.857-44.286t-120-120-44.286-164.857q0-103.429 59.714-188.571t156.857-120.571l9.714 74.857q-69.714 30.857-111.429 94.571t-41.714 139.714q0 105.714 75.143 180.857t180.857 75.143q72 0 132.857-37.143t94.286-100.286 28.286-135.143zM897.714 735.429l33.143 65.143-146.286 73.143q-7.429 4-16.571 4-22.857 0-32.571-20l-136.571-272.571h-269.714q-13.714 0-24.286-9.429t-12.286-23.143l-54.857-445.143q-1.143-9.143 3.429-24 8-29.143 32.571-47.143t55.429-18q37.714 0 64.571 26.857t26.857 64.571q0 39.429-29.714 67.143t-68.571 23.714l21.143 165.143h241.714v73.143h-232.571l9.143 73.143h260q22.857 0 32.571 20l130.286 260z" - ], - "width": 951, - "attrs": [], - "isMulticolor": false, - "tags": [ - "wheelchair" - ], - "defaultCode": 61843, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 364, - "order": 881, - "prevSize": 14, - "code": 61843, - "name": "wheelchair" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 364 - }, - { - "icon": { - "paths": [ - "M738.286 364.571q5.714-123.429-92-126.857-132-4.571-178.286 149.143 25.143-10.857 46.857-10.857 48.571 0 42.286 54.857-2.286 32.571-42.286 95.429t-60 62.857q-24.571 0-46.857-96.571-7.429-30.857-25.714-145.714-17.143-108-91.429-101.143-33.714 4-93.714 57.143l-92.571 82.286 29.714 38.286q43.429-29.714 49.714-29.714 32.571 0 61.143 102.286 8.571 31.429 25.714 94t25.714 94q38.857 102.286 93.714 102.286 89.714 0 218.857-168 125.714-161.714 129.143-253.714zM877.714 237.714v548.571q0 68-48.286 116.286t-116.286 48.286h-548.571q-68 0-116.286-48.286t-48.286-116.286v-548.571q0-68 48.286-116.286t116.286-48.286h548.571q68 0 116.286 48.286t48.286 116.286z" - ], - "width": 877.7142857142858, - "attrs": [], - "isMulticolor": false, - "tags": [ - "vimeo-square" - ], - "defaultCode": 61844, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 365, - "order": 882, - "prevSize": 14, - "code": 61844, - "name": "vimeo-square" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 365 - }, - { - "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": 883, - "name": "try, turkish-lira", - "prevSize": 14, - "code": 61845 - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 366 - }, - { - "icon": { - "paths": [ - "M658.286 457.143v36.571q0 8-5.143 13.143t-13.143 5.143h-201.143v201.143q0 8-5.143 13.143t-13.143 5.143h-36.571q-8 0-13.143-5.143t-5.143-13.143v-201.143h-201.143q-8 0-13.143-5.143t-5.143-13.143v-36.571q0-8 5.143-13.143t13.143-5.143h201.143v-201.143q0-8 5.143-13.143t13.143-5.143h36.571q8 0 13.143 5.143t5.143 13.143v201.143h201.143q8 0 13.143 5.143t5.143 13.143zM731.429 713.143v-475.429q0-37.714-26.857-64.571t-64.571-26.857h-475.429q-37.714 0-64.571 26.857t-26.857 64.571v475.429q0 37.714 26.857 64.571t64.571 26.857h475.429q37.714 0 64.571-26.857t26.857-64.571zM804.571 237.714v475.429q0 68-48.286 116.286t-116.286 48.286h-475.429q-68 0-116.286-48.286t-48.286-116.286v-475.429q0-68 48.286-116.286t116.286-48.286h475.429q68 0 116.286 48.286t48.286 116.286z" - ], - "width": 805, - "attrs": [], - "isMulticolor": false, - "tags": [ - "plus-square-o" - ], - "defaultCode": 61846, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 367, - "order": 884, - "prevSize": 14, - "code": 61846, - "name": "plus-square-o" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 367 - }, - { - "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": 885, - "prevSize": 14, - "code": 61847, - "name": "space-shuttle" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 368 - }, - { - "icon": { - "paths": [ - "M868 443.429q35.429 0 59.143 23.143t23.714 58q0 55.429-53.143 74.286l-98.286 33.714 32 95.429q4 12 4 26.857 0 33.714-24 58.286t-57.714 24.571q-26.857 0-48.857-15.429t-30.571-41.143l-31.429-94.286-177.143 60.571 31.429 93.714q4.571 13.714 4.571 26.857 0 33.714-24 58.286t-58.286 24.571q-26.857 0-48.571-15.429t-30.286-41.143l-31.429-93.143-87.429 30.286q-16.571 5.143-28.571 5.143-34.857 0-58-22.857t-23.143-57.714q0-26.857 15.714-48.571t40.857-30.286l89.143-30.286-60-178.857-89.143 30.857q-14.857 4.571-27.429 4.571-34.286 0-57.714-23.143t-23.429-57.429q0-26.857 15.714-48.571t40.857-30.286l89.714-30.286-30.286-90.857q-4.571-13.714-4.571-26.857 0-34.286 24-58.571t58.286-24.286q26.857 0 48.571 15.429t30.286 41.143l30.857 91.429 177.143-60-30.857-91.429q-4.571-13.714-4.571-26.857 0-33.714 24.286-58.286t58-24.571q26.857 0 48.857 15.714t30.571 40.857l30.286 92 92.571-31.429q12-3.429 24.571-3.429 34.286 0 58.571 22.571t24.286 56.286q0 25.714-17.143 46.571t-42.286 29.429l-89.714 30.857 60 180.571 93.714-32q13.714-4.571 26.286-4.571zM414.286 593.143l177.143-60-60-180-177.143 61.143z" - ], - "width": 951, - "attrs": [], - "isMulticolor": false, - "tags": [ - "slack" - ], - "defaultCode": 61848, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 369, - "order": 886, - "prevSize": 14, - "code": 61848, - "name": "slack" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 369 - }, - { - "icon": { - "paths": [ - "M713.143 73.143q68 0 116.286 48.286t48.286 116.286v548.571q0 68-48.286 116.286t-116.286 48.286h-548.571q-68 0-116.286-48.286t-48.286-116.286v-548.571q0-68 48.286-116.286t116.286-48.286h548.571zM731.429 676.571v-249.143q-17.714 20-36.571 31.429-19.429 12.571-75.714 48.571t-86.571 56.571q-56 39.429-93.714 39.429v0 0q-37.714 0-93.714-39.429-26.286-18.286-80.857-52.857t-81.429-52.857q-6.857-4.571-18.857-15.429t-17.714-15.429v249.143q0 22.857 16 38.857t38.857 16h475.429q22.857 0 38.857-16t16-38.857zM731.429 349.143q0-23.429-15.714-40t-39.143-16.571h-475.429q-22.857 0-38.857 16t-16 38.857q0 21.143 17.429 43.714t38.571 36.857q26.857 18.286 78.571 50.857t74 47.429q1.714 1.143 9.714 6.571t12 8 12 7.429 13.429 7.429 12.286 5.429 12.857 4.286 11.714 1.429 11.714-1.429 12.857-4.286 12.286-5.429 13.429-7.429 12-7.429 12-8 9.714-6.571l152.571-99.429q20-13.143 38-35.714t18-42z" - ], - "width": 877.7142857142858, - "attrs": [], - "isMulticolor": false, - "tags": [ - "envelope-square" - ], - "defaultCode": 61849, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 370, - "order": 887, - "prevSize": 14, - "code": 61849, - "name": "envelope-square" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 370 - }, - { - "icon": { - "paths": [ - "M72.571 512q0-93.143 38.286-178.857l209.714 574.286q-112-54.286-180-160.571t-68-234.857zM808.571 489.714q0 10.857-1.429 22t-5.714 28.286-6.571 25.143-10 33.714-10 33.143l-43.429 146.286-158.857-472q26.286-1.714 50.286-4.571 10.857-1.143 14.857-10.571t-1.429-17.714-16.286-7.714l-117.143 5.714q-42.857-0.571-115.429-5.714-6.857-0.571-11.714 2.857t-6.571 8.571-0.857 10.571 5.143 9.429 11.143 4.571l45.714 4.571 68.571 187.429-96 288-160-475.429q26.286-1.714 50.286-4.571 10.857-1.143 14.857-10.571t-1.429-17.714-16.286-7.714l-117.143 5.714q-4 0-13.143-0.286t-14.857-0.286q60-91.429 156.857-144.857t210-53.429q84 0 160.286 30.286t136.286 85.143h-5.714q-31.429 0-52.571 23.143t-21.143 54.571q0 6.857 1.143 13.714t2.286 12.286 4.571 13.143 5.143 12 6.857 12.857 7.143 12 8.286 13.714 8 13.143q36 61.143 36 121.143zM519.429 550.286l135.429 369.714q0.571 3.429 2.857 6.286-72 25.143-145.714 25.143-64 0-124-18.286zM897.143 301.143q54.286 99.429 54.286 210.857 0 119.429-59.429 220.286t-159.429 159.143l134.286-387.429q33.714-96.571 33.714-157.714 0-24-3.429-45.143zM512 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.571zM512 1000.571q98.857 0 189.429-38.857t156-104.286 104.286-156 38.857-189.429-38.857-189.429-104.286-156-156-104.286-189.429-38.857-189.429 38.857-156 104.286-104.286 156-38.857 189.429 38.857 189.429 104.286 156 156 104.286 189.429 38.857z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "wordpress" - ], - "defaultCode": 61850, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 371, - "order": 888, - "prevSize": 14, - "code": 61850, - "name": "wordpress" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 371 - }, - { - "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": 889, - "prevSize": 14, - "code": 61851, - "name": "openid" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 372 - }, - { - "icon": { - "paths": [ - "M548.571 0l548.571 219.429v73.143h-73.143q0 14.857-11.714 25.714t-27.714 10.857h-872q-16 0-27.714-10.857t-11.714-25.714h-73.143v-73.143zM146.286 365.714h146.286v438.857h73.143v-438.857h146.286v438.857h73.143v-438.857h146.286v438.857h73.143v-438.857h146.286v438.857h33.714q16 0 27.714 10.857t11.714 25.714v36.571h-950.857v-36.571q0-14.857 11.714-25.714t27.714-10.857h33.714v-438.857zM1057.714 914.286q16 0 27.714 10.857t11.714 25.714v73.143h-1097.143v-73.143q0-14.857 11.714-25.714t27.714-10.857h1018.286z" - ], - "width": 1096.8571428571427, - "attrs": [], - "isMulticolor": false, - "tags": [ - "bank", - "institution", - "university" - ], - "defaultCode": 61852, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 373, - "order": 890, - "name": "bank, institution, university", - "prevSize": 14, - "code": 61852 - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 373 - }, - { - "icon": { - "paths": [ - "M1013.714 477.714l10.286 180.571q2.286 39.429-46.857 73.143t-134.286 53.429-184.571 19.714-184.571-19.714-134.286-53.429-46.857-73.143l10.286-180.571 328 103.429q12.571 4 27.429 4t27.429-4zM1316.571 292.571q0 13.143-12.571 17.714l-640 201.143q-2.286 0.571-5.714 0.571t-5.714-0.571l-372.571-117.714q-24.571 19.429-40.571 63.714t-19.429 102q36 20.571 36 62.286 0 39.429-33.143 61.143l33.143 247.429q1.143 8-4.571 14.286-5.143 6.286-13.714 6.286h-109.714q-8.571 0-13.714-6.286-5.714-6.286-4.571-14.286l33.143-247.429q-33.143-21.714-33.143-61.143 0-41.714 37.143-63.429 6.286-118.286 56-188.571l-190.286-59.429q-12.571-4.571-12.571-17.714t12.571-17.714l640-201.143q2.286-0.571 5.714-0.571t5.714 0.571l640 201.143q12.571 4.571 12.571 17.714z" - ], - "width": 1317, - "attrs": [], - "isMulticolor": false, - "tags": [ - "graduation-cap", - "mortar-board" - ], - "defaultCode": 61853, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 374, - "order": 891, - "name": "graduation-cap, mortar-board", - "prevSize": 14, - "code": 61853 - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 374 - }, - { - "icon": { - "paths": [ - "M490.857 546.857l7.429 404q-35.429-6.286-60-6.286-23.429 0-60 6.286l7.429-404q-22.857-39.429-96.286-168.857t-123.714-214-103.429-164q33.143 8.571 61.714 8.571 24.571 0 63.429-8.571 36 63.429 76.286 131.143t95.429 158 79.143 129.714q21.143-34.857 62.571-101.429t67.143-108.571 60-100.571 61.143-108.286q30.857 8 61.143 8 32 0 65.143-8v0q-16 22.286-34.286 50.571t-28.286 44.857-32.286 54.857-28 48q-83.429 141.714-201.714 348.571z" - ], - "width": 877.7142857142858, - "attrs": [], - "isMulticolor": false, - "tags": [ - "yahoo" - ], - "defaultCode": 61854, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 375, - "order": 892, - "prevSize": 14, - "code": 61854, - "name": "yahoo" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 375 - }, - { - "icon": { - "paths": [ - "M560.571 765.143q0-14.286-4-28t-8.286-24-15.429-23.714-16.857-20-22-19.714-20.857-16.571-23.714-17.143-20.857-14.857q-9.143-1.143-28-1.143-30.286 0-59.714 4t-61.143 14.286-55.429 26.286-39.143 42.571-15.429 60.286q0 32 13.429 58.286t34.857 43.143 49.714 28.571 57.143 16.571 58 4.857q33.143 0 63.714-7.429t56.571-22.286 41.714-41.714 15.714-62.286zM493.714 274.857q0-33.714-9.714-71.714t-27.429-73.714-48-59.143-66.857-23.429q-24 0-47.143 11.143t-38 30q-26.286 33.714-26.286 91.429 0 26.286 5.714 55.714t18 58.857 29.714 52.857 42.857 38.286 55.143 14.857q21.143 0 44.286-9.429t37.429-24.857q30.286-32 30.286-90.857zM429.714 0h238.286l-78.286 50.286h-75.429q42.857 36 64.571 76t21.714 91.429q0 41.143-14 74t-34 53.143-39.714 37.143-33.714 35.143-14 37.714q0 20.571 18.286 40.286t44 38.857 51.714 42 44.286 59.429 18.286 81.143q0 52-28 98.857-40.571 69.714-119.714 102.571t-170.571 32.857q-75.429 0-140.857-23.714t-98.571-78.571q-20.571-33.714-20.571-74.857 0-46.286 25.429-85.714t67.714-65.714q74.857-46.857 230.857-57.143-18.286-23.429-27.143-42t-8.857-42q0-22.857 12-48.571-26.286 2.286-38.857 2.286-84.571 0-142.571-55.143t-58-139.714q0-46.857 20.571-90.857t56.571-74.857q43.429-37.714 104-56t124.571-18.286z" - ], - "width": 731, - "attrs": [], - "isMulticolor": false, - "tags": [ - "google" - ], - "defaultCode": 61856, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 376, - "order": 893, - "prevSize": 14, - "code": 61856, - "name": "google" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 376 - }, - { - "icon": { - "paths": [ - "M625.714 666.857q9.143 9.143 0 17.714-35.429 35.429-113.714 35.429t-113.714-35.429q-9.143-8.571 0-17.714 3.429-3.429 8.571-3.429t8.571 3.429q27.429 28 96.571 28 68.571 0 96.571-28 3.429-3.429 8.571-3.429t8.571 3.429zM450.286 563.429q0 21.143-14.857 36t-36 14.857-36.286-14.857-15.143-36q0-21.714 15.143-36.571t36.286-14.857 36 15.143 14.857 36.286zM676 563.429q0 21.143-15.143 36t-36.286 14.857-36-14.857-14.857-36 14.857-36.286 36-15.143 36.286 14.857 15.143 36.571zM819.429 494.857q0-28-20-48t-48.571-20-49.143 20.571q-74.286-51.429-177.714-54.857l36-161.714 114.286 25.714q0 21.143 14.857 36t36 14.857 36.286-15.143 15.143-36.286-15.143-36.286-36.286-15.143q-30.857 0-45.714 28.571l-126.286-28q-10.857-2.857-14.286 9.143l-39.429 178.286q-102.857 4-176.571 55.429-20-21.143-49.714-21.143-28.571 0-48.571 20t-20 48q0 20 10.571 36.571t28.286 25.143q-3.429 15.429-3.429 32 0 81.143 80 138.857t192.571 57.714q113.143 0 193.143-57.714t80-138.857q0-18.286-4-32.571 17.143-8.571 27.429-24.857t10.286-36.286zM1024 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": [ - "reddit" - ], - "defaultCode": 61857, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 377, - "order": 894, - "prevSize": 14, - "code": 61857, - "name": "reddit" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 377 - }, - { - "icon": { - "paths": [ - "M536.571 645.143q7.429 7.429 0 14.857-30.286 30.286-97.714 30.286t-97.714-30.286q-7.429-7.429 0-14.857 2.857-3.429 7.429-3.429t7.429 3.429q24 24 82.857 24t82.857-24q2.857-3.429 7.429-3.429t7.429 3.429zM386.286 556q0 17.714-13.143 30.857t-30.857 13.143-30.857-13.143-13.143-30.857q0-18.286 12.857-31.143t31.143-12.857 31.143 12.857 12.857 31.143zM579.429 556q0 17.714-13.143 30.857t-30.857 13.143-30.857-13.143-13.143-30.857q0-18.286 12.857-31.143t31.143-12.857 31.143 12.857 12.857 31.143zM702.286 497.143q0-24-17.143-41.143t-41.714-17.143q-24 0-41.714 17.714-64.571-44.571-152.571-46.857l30.857-138.857 97.714 22.286q0.571 18.286 13.429 30.857t30.571 12.571q18.286 0 31.143-12.857t12.857-31.143-12.857-31.143-31.143-12.857q-27.429 0-39.429 24.571l-108-24q-9.714-2.857-12 7.429l-34.286 153.143q-88 3.429-151.429 47.429-17.143-18.286-42.286-18.286-24.571 0-41.714 17.143t-17.143 41.143q0 17.143 9.143 31.429t24 21.714q-2.857 14.286-2.857 27.429 0 69.714 68.571 119.143t165.143 49.429q97.143 0 165.714-49.429t68.571-119.143q0-14.286-3.429-28 14.286-7.429 23.143-21.429t8.857-31.143zM877.714 237.714v548.571q0 68-48.286 116.286t-116.286 48.286h-548.571q-68 0-116.286-48.286t-48.286-116.286v-548.571q0-68 48.286-116.286t116.286-48.286h548.571q68 0 116.286 48.286t48.286 116.286z" - ], - "width": 877.7142857142858, - "attrs": [], - "isMulticolor": false, - "tags": [ - "reddit-square" - ], - "defaultCode": 61858, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 378, - "order": 895, - "prevSize": 14, - "code": 61858, - "name": "reddit-square" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 378 - }, - { - "icon": { - "paths": [ - "M494.857 479.429l51.429-15.429v-35.429q0-45.143-33.143-77.143t-78.857-32-78.857 31.714-33.143 76.857v161.714q0 11.429-8 19.143t-18.857 7.714-18.571-7.714-7.714-19.143v-68.571h-86.286v69.714q0 46.857 32.857 79.429t79.714 32.571q46.286 0 79.143-32.286t32.857-78v-160q0-10.857 7.714-18.857t19.143-8q10.857 0 18.571 8t7.714 18.857v30.857zM685.143 590.857v-69.714h-85.714v72q0 11.429-7.714 19.143t-19.143 7.714q-10.857 0-18.571-8t-7.714-18.857v-70.286l-51.429 14.857-34.286-16v70.286q0 45.714 33.143 78.286t79.429 32.571 79.143-32.571 32.857-79.429zM877.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": [ - "stumbleupon-circle" - ], - "defaultCode": 61859, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 379, - "order": 896, - "prevSize": 14, - "code": 61859, - "name": "stumbleupon-circle" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 379 - }, - { - "icon": { - "paths": [ - "M606.857 406.857v-67.429q0-24-17.143-41.143t-41.143-17.143-41.143 17.143-17.143 41.143v349.714q0 100-72 170.857t-173.143 70.857q-101.714 0-173.429-71.714t-71.714-173.429v-152h187.429v149.714q0 24.571 17.143 41.429t41.143 16.857 41.143-16.857 17.143-41.429v-354.286q0-97.714 72.286-166.857t172.286-69.143q100.571 0 172.571 69.714t72 168v77.714l-111.429 33.143zM909.714 533.714h187.429v152q0 101.714-71.714 173.429t-173.429 71.714q-101.143 0-173.143-71.143t-72-171.714v-153.143l74.857 34.857 111.429-33.143v154.286q0 24 17.143 40.857t41.143 16.857 41.143-16.857 17.143-40.857v-157.143z" - ], - "width": 1097, - "attrs": [], - "isMulticolor": false, - "tags": [ - "stumbleupon" - ], - "defaultCode": 61860, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 380, - "order": 897, - "prevSize": 14, - "code": 61860, - "name": "stumbleupon" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 380 - }, - { - "icon": { - "paths": [ - "M841.143 786.286v-274.286h-402.286v-402.286h-274.286q-53.143 0-90.571 37.429t-37.429 90.571v274.286h402.286v402.286h274.286q53.143 0 90.571-37.429t37.429-90.571zM877.714 237.714v548.571q0 68-48.286 116.286t-116.286 48.286h-548.571q-68 0-116.286-48.286t-48.286-116.286v-548.571q0-68 48.286-116.286t116.286-48.286h548.571q68 0 116.286 48.286t48.286 116.286z" - ], - "width": 877.7142857142858, - "attrs": [], - "isMulticolor": false, - "tags": [ - "delicious" - ], - "defaultCode": 61861, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 381, - "order": 898, - "prevSize": 14, - "code": 61861, - "name": "delicious" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 381 - }, - { - "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": 899, - "prevSize": 14, - "code": 61862, - "name": "digg" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 382 - }, - { - "icon": { - "paths": [ - "M597.714 582.857q0 36.571-21.714 62.286t-52 25.714q-24.571 0-40-8.571v-158.286q16-9.714 40-9.714 30.286 0 52 26t21.714 62.571zM401.714 338.286q0 36.571-21.714 62.571t-52 26q-24.571 0-40-8.571v-158.286q16-9.714 40-9.714 30.286 0 52 25.714t21.714 62.286zM722.857 584.571q0-76.571-50.286-130.857t-121.714-54.286q-11.429 0-22.286 1.714-13.143 44.571-44.571 77.714-49.714 54.286-120.571 57.714v363.429l120.571-23.429v-117.714q29.143 10.857 66.857 10.857 71.429 0 121.714-54.286t50.286-130.857zM526.857 340.571q0-76.571-50.571-130.857t-122-54.286q-42.286 0-80.571 20.571h-106.286v480l120.571-23.429v-117.714q31.429 10.857 66.286 10.857 71.429 0 122-54.286t50.571-130.857zM877.714 237.714v548.571q0 68-48.286 116.286t-116.286 48.286h-548.571q-68 0-116.286-48.286t-48.286-116.286v-548.571q0-68 48.286-116.286t116.286-48.286h548.571q68 0 116.286 48.286t48.286 116.286z" - ], - "width": 877.7142857142858, - "attrs": [], - "isMulticolor": false, - "tags": [ - "pied-piper" - ], - "defaultCode": 61863, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 383, - "order": 900, - "prevSize": 14, - "code": 61863, - "name": "pied-piper" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 383 - }, - { - "icon": { - "paths": [ - "M698.286 530.857q42.857-1.714 82 11.714t67.429 33.429 57.714 54 48 61.714 43.143 68.857q18.857 32 44.857 62.286t43.143 46 56.571 50.571q-27.429 17.143-62 32.857t-79.143 33.714-65.143 27.143q-25.143-21.143-42.286-65.714t-24.857-94-18.857-103.143-24.286-96.286-41.429-70.286-70-27.714l-5.714 1.143-3.429 2.286q2.286 2.857 7.429 8 3.429 2.857 16 13.429t14.571 12.571 10.857 10.286 10.286 11.714 6.571 12 6 15.714 2.571 17.714 2.286 23.143l0.571 18.857q0.571 14.857-1.429 32.857t-4.286 29.714-7.143 33.429-6.571 30.286q-20-0.571-57.714 5.429t-56 6q-22.286 0-41.143-5.714-1.143-9.143-1.143-26.857 0-42.286 1.714-54.857 1.143-7.429 18-23.714t32.571-33.714 15.143-29.429q-13.714-1.143-24.571 13.714-20.571 30.286-63.714 56.857t-78 26.571q-14.286 0-43.143-36t-60.857-79.714-48-55.143q-3.429-2.286-15.429-17.143-275.429 64-293.143 64-9.143 0-16-6.286t-6.857-15.429q0-8.571 4.857-15.143t12.857-8.286l277.714-60.571q-4.571-8-4.571-14.286t3.143-10 9.143-6.571 11.429-4 13.143-2.571 10.571-2.571q2.286-0.571 8.857-4.286t10-3.714q8.571 0 16 9.143t11.429 18.857q93.143-21.143 98.286-21.143 9.714 0 16.857 6.286t7.143 16q0 8.571-4.857 14.857t-13.429 8l-104 22.857-0.571 9.143q-0.571 14.857 46.571 67.143t59.714 52.286q26.857 0 68-45.714t41.143-73.714q0-20.571-13.429-30.286t-29.143-10.571-29.143-6.571-13.429-19.429q0-9.143 5.714-19.429l-38.857-10.857q24.571-25.143 24.571-66.857 0-14.857-2.857-33.143 46.857-9.143 82.286-9.143 25.143 0 40.857 0.857t27.714 4.857 17.714 7.714 11.714 14 8.857 19.143 9.714 27.143 13.714 34.286l28.571-14.286q-1.714 22.857-13.143 34.286t-24.286 12-22.857 3.714-9.429 11.714zM732.571 396.571q-2.857-2.857-7.714-8.857t-6.857-8.286-6-6.571-5.714-6l-4.571-4.571t-4.857-4.286-4.571-2.857-4.857-2.571q-4-1.714-8.286-2.857t-11.714-1.429-12.571-0.286h-40q-72 0-124 24.571 9.143-17.143 20.571-26.571t30.857-16.857 37.429-20.571 26.286-20.857 28.571-31.429 24.857-28.857q6.857 5.143 16 18t18.286 20.857 21.714 7.429l6.857-0.571v43.429l12.571 0.571q141.143-54.286 212-108.571 16-12 28.571-22.286t24.286-21.429 18.857-17.714 16.857-19.429 13.714-17.714 14-21.143 13.143-21.714 15.429-27.143 16.857-30.286l4-5.143q-1.143 30.286-24.571 79.429-45.143 94.286-117.143 150.857t-174.857 81.143q-8 1.714-24 4.286t-28.571 5.429-22.286 8q1.714 10.857 14 26.286t12.286 19.429q0 6.286-14.857 17.143zM606.286 922.857q22.286-14.857 75.143-27.143t83.714-12.286q5.143 0 12.857 8.857t16 24.286 14.857 28.571 13.714 29.143 8.286 18.857q-69.143 25.714-139.429 25.714-34.857 0-71.429-6.286zM469.714 553.143l27.429-6.857 62.286 101.143-41.714 27.429zM756 848.571q1.714 8.571 1.714 9.143 0 4-10 8.286t-26.286 7.429-30.857 5.429-30.571 4.286-18.286 2.571l-4-24.571q12-1.143 34.571-4.857t41.143-5.714 34.571-2h8zM494.857 489.714l-54.857 11.429-3.429-9.714q5.714-0.571 18.571-4t19.714-3.429q10.857 0 20 5.714zM606.286 852h17.714l5.714 47.429-23.429 6.857v-54.286zM1114.286 0.571v0zM1114.286 0.571l-0.571 2.857-1.143 1.143 0.571-1.714zM1114.286 0.571l0.571-0.571z" - ], - "width": 1165, - "attrs": [], - "isMulticolor": false, - "tags": [ - "pied-piper-alt" - ], - "defaultCode": 61864, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 384, - "order": 901, - "prevSize": 14, - "code": 61864, - "name": "pied-piper-alt" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 384 - }, - { - "icon": { - "paths": [ - "M666.857 906.286q-2.857-10.857-13.714-2.857-17.143 12.571-49.714 22.286t-74.857 9.714q-73.714 0-110.286-28-2.857-2.286-7.429-2.286-6.286 0-14.857 6.857-4 3.429-4.286 9.143t4.286 11.429q19.429 18.286 50 26.286t58.571 7.143 56.571-2.571q23.429-2.286 48.286-11.714t37.143-17.143 16.286-11.714q6.857-6.857 4-16.571zM644.571 840.571q-10.857-26.857-22.286-34.857-13.143-8.571-43.429-8.571-26.857 0-40.571 5.714-16.571 6.857-44.571 32-14.857 13.714-6.857 25.143 5.143 4.571 10 2.571t18-13.429q1.714-1.143 6-4.857t6-4.857 5.714-4 6.571-4 7.143-2.857 8.571-2.571 9.429-1.429 11.714-0.571q15.429 0 25.429 4.286t13.143 8.286 7.714 12.571q5.714 9.714 7.143 11.429t7.143-0.571q13.143-6.857 8-19.429zM847.429 680q0-12.571-2.857-25.429t-9.429-25.714-19.429-20.857-30-8q-18.857 0-55.429 23.714t-73.714 47.714-57.714 24q-15.429 0.571-36.286-10.857t-43.429-28-47.714-33.143-57.143-28-63.429-10.857q-65.714 0.571-112.571 44.857t-48 102q-1.143 64 42.286 93.714 16.571 11.429 35.714 16.286t59.143 4.857q32.571 0 75.429-18.571t76.571-40.571 68.571-40.286 53.143-17.714q14.857 0.571 37.143 18t40.857 38.286 38.857 38.571 31.714 18.286q20 1.714 33.429-8t31.714-36q16-23.429 24.286-57.714t8.286-60.571zM877.714 588.571q0 93.714-35.429 174t-94.857 134.857-138.571 85.429-166 30.857-167.429-32.857-141.429-89.714-97.429-138-36.571-172.571q0-50.857 11.143-98.571t28-83.143 40.286-67.714 44.857-53.714 44.857-39.714 36.857-26.571 24.286-14q8-4.571 29.143-15.143t31.143-16.286 27.429-17.143 34.571-25.143q20.571-16 33.143-41.429t17.143-71.714q73.714 88.571 106.286 110.286 25.143 16.571 74.286 38.857t73.714 37.714q12 7.429 22.286 14.286t34.571 26.571 43.429 40.286 42.857 54.286 39.429 69.714 26.857 84.857 11.143 101.429z" - ], - "width": 877.7142857142858, - "attrs": [], - "isMulticolor": false, - "tags": [ - "drupal" - ], - "defaultCode": 61865, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 385, - "order": 902, - "prevSize": 14, - "code": 61865, - "name": "drupal" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 385 - }, - { - "icon": { - "paths": [ - "M611.429 613.143l-91.429 91.429-86.286 86.857-17.143 17.143q-37.143 36.571-86.571 49.714t-98 1.143q-9.143 40-41.143 65.714t-73.714 25.714q-48.571 0-82.857-34.571t-34.286-83.143q0-41.143 25.429-73.143t64.857-41.143q-12.571-49.143 0.571-98.857t50.286-86.857l6.857-6.857 86.286 86.857-6.286 6.286q-21.143 21.143-21.143 50.857t21.143 51.429q21.143 21.143 50.857 21.143t50.857-21.143l17.143-17.143 86.286-86.857 92-91.429zM416.571 223.429l6.857 6.857-86.857 86.857-6.857-6.857q-21.143-21.143-50.857-21.143t-50.857 21.143-21.143 51.143 21.143 51.143l194.857 194.857-86.286 86.857-92-91.429-86.286-86.857-17.143-17.143q-38.857-38.286-51.429-91.143t2.857-102.571q-40-8.571-65.714-40.571t-25.714-73.714q0-48.571 34.286-83.143t82.857-34.571q43.429 0 76.286 28t39.714 70.286q48-11.429 96.857 2t85.429 50zM877.714 833.143q0 48.571-34.286 83.143t-82.857 34.571q-42.286 0-74.857-26.857t-40.571-67.429q-49.143 16-102.571 3.429t-92.286-51.429l-6.286-6.857 86.286-86.857 6.857 6.857q21.143 21.143 50.857 21.143t50.857-21.143 21.143-50.857-21.143-50.857l-195.429-195.429 86.857-86.857 178.286 178.286 16.571 17.143q36.571 36.571 50 86t1.429 98q43.429 6.286 72.286 39.143t28.857 76.857zM876.571 190.857q0 44-29.143 77.143t-72.571 39.429q14.857 48.571 1.714 100.857t-51.429 90.571l-6.857 6.857-86.286-86.857 6.857-6.857q21.143-21.143 21.143-50.857t-21.143-50.857-50.857-21.143-50.857 21.143l-195.429 195.429-86.857-86.857 92-91.429 86.857-86.857 16.571-17.143q38.286-38.286 90.857-51.143t101.714 2q6.286-42.857 39.143-72t77.429-29.143q48.571 0 82.857 34.571t34.286 83.143z" - ], - "width": 877.7142857142858, - "attrs": [], - "isMulticolor": false, - "tags": [ - "joomla" - ], - "defaultCode": 61866, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 386, - "order": 903, - "prevSize": 14, - "code": 61866, - "name": "joomla" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 386 - }, - { - "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": 904, - "prevSize": 14, - "code": 61867, - "name": "language" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 387 - }, - { - "icon": { - "paths": [ - "M164.571 219.429q37.714 0 64.571 26.857t26.857 64.571v621.714q0 37.714-26.857 64.571t-64.571 26.857h-73.143q-37.714 0-64.571-26.857t-26.857-64.571v-621.714q0-37.714 26.857-64.571t64.571-26.857h73.143zM950.857 312.571q33.143 19.429 53.143 53.143t20 73.143v438.857q0 60.571-42.857 103.429t-103.429 42.857h-493.714q-37.714 0-64.571-26.857t-26.857-64.571v-877.714q0-22.857 16-38.857t38.857-16h384q22.857 0 50.286 11.429t43.429 27.429l86.857 86.857q16 16 27.429 43.429t11.429 50.286v93.143zM530.286 877.714v-73.143q0-8-5.143-13.143t-13.143-5.143h-73.143q-8 0-13.143 5.143t-5.143 13.143v73.143q0 8 5.143 13.143t13.143 5.143h73.143q8 0 13.143-5.143t5.143-13.143zM530.286 731.429v-73.143q0-8-5.143-13.143t-13.143-5.143h-73.143q-8 0-13.143 5.143t-5.143 13.143v73.143q0 8 5.143 13.143t13.143 5.143h73.143q8 0 13.143-5.143t5.143-13.143zM530.286 585.143v-73.143q0-8-5.143-13.143t-13.143-5.143h-73.143q-8 0-13.143 5.143t-5.143 13.143v73.143q0 8 5.143 13.143t13.143 5.143h73.143q8 0 13.143-5.143t5.143-13.143zM676.571 877.714v-73.143q0-8-5.143-13.143t-13.143-5.143h-73.143q-8 0-13.143 5.143t-5.143 13.143v73.143q0 8 5.143 13.143t13.143 5.143h73.143q8 0 13.143-5.143t5.143-13.143zM676.571 731.429v-73.143q0-8-5.143-13.143t-13.143-5.143h-73.143q-8 0-13.143 5.143t-5.143 13.143v73.143q0 8 5.143 13.143t13.143 5.143h73.143q8 0 13.143-5.143t5.143-13.143zM676.571 585.143v-73.143q0-8-5.143-13.143t-13.143-5.143h-73.143q-8 0-13.143 5.143t-5.143 13.143v73.143q0 8 5.143 13.143t13.143 5.143h73.143q8 0 13.143-5.143t5.143-13.143zM822.857 877.714v-73.143q0-8-5.143-13.143t-13.143-5.143h-73.143q-8 0-13.143 5.143t-5.143 13.143v73.143q0 8 5.143 13.143t13.143 5.143h73.143q8 0 13.143-5.143t5.143-13.143zM822.857 731.429v-73.143q0-8-5.143-13.143t-13.143-5.143h-73.143q-8 0-13.143 5.143t-5.143 13.143v73.143q0 8 5.143 13.143t13.143 5.143h73.143q8 0 13.143-5.143t5.143-13.143zM822.857 585.143v-73.143q0-8-5.143-13.143t-13.143-5.143h-73.143q-8 0-13.143 5.143t-5.143 13.143v73.143q0 8 5.143 13.143t13.143 5.143h73.143q8 0 13.143-5.143t5.143-13.143zM877.714 365.714v-146.286h-91.429q-22.857 0-38.857-16t-16-38.857v-91.429h-365.714v292.571h512z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "fax" - ], - "defaultCode": 61868, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 388, - "order": 905, - "prevSize": 14, - "code": 61868, - "name": "fax" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 388 - }, - { - "icon": { - "paths": [ - "M768 0q14.857 0 25.714 10.857t10.857 25.714v950.857q0 14.857-10.857 25.714t-25.714 10.857h-731.429q-14.857 0-25.714-10.857t-10.857-25.714v-950.857q0-14.857 10.857-25.714t25.714-10.857h731.429zM292.571 164.571v36.571q0 8 5.143 13.143t13.143 5.143h36.571q8 0 13.143-5.143t5.143-13.143v-36.571q0-8-5.143-13.143t-13.143-5.143h-36.571q-8 0-13.143 5.143t-5.143 13.143zM292.571 310.857v36.571q0 8 5.143 13.143t13.143 5.143h36.571q8 0 13.143-5.143t5.143-13.143v-36.571q0-8-5.143-13.143t-13.143-5.143h-36.571q-8 0-13.143 5.143t-5.143 13.143zM292.571 457.143v36.571q0 8 5.143 13.143t13.143 5.143h36.571q8 0 13.143-5.143t5.143-13.143v-36.571q0-8-5.143-13.143t-13.143-5.143h-36.571q-8 0-13.143 5.143t-5.143 13.143zM292.571 603.429v36.571q0 8 5.143 13.143t13.143 5.143h36.571q8 0 13.143-5.143t5.143-13.143v-36.571q0-8-5.143-13.143t-13.143-5.143h-36.571q-8 0-13.143 5.143t-5.143 13.143zM219.429 786.286v-36.571q0-8-5.143-13.143t-13.143-5.143h-36.571q-8 0-13.143 5.143t-5.143 13.143v36.571q0 8 5.143 13.143t13.143 5.143h36.571q8 0 13.143-5.143t5.143-13.143zM219.429 640v-36.571q0-8-5.143-13.143t-13.143-5.143h-36.571q-8 0-13.143 5.143t-5.143 13.143v36.571q0 8 5.143 13.143t13.143 5.143h36.571q8 0 13.143-5.143t5.143-13.143zM219.429 493.714v-36.571q0-8-5.143-13.143t-13.143-5.143h-36.571q-8 0-13.143 5.143t-5.143 13.143v36.571q0 8 5.143 13.143t13.143 5.143h36.571q8 0 13.143-5.143t5.143-13.143zM219.429 347.429v-36.571q0-8-5.143-13.143t-13.143-5.143h-36.571q-8 0-13.143 5.143t-5.143 13.143v36.571q0 8 5.143 13.143t13.143 5.143h36.571q8 0 13.143-5.143t5.143-13.143zM219.429 201.143v-36.571q0-8-5.143-13.143t-13.143-5.143h-36.571q-8 0-13.143 5.143t-5.143 13.143v36.571q0 8 5.143 13.143t13.143 5.143h36.571q8 0 13.143-5.143t5.143-13.143zM512 932.571v-109.714q0-8-5.143-13.143t-13.143-5.143h-182.857q-8 0-13.143 5.143t-5.143 13.143v109.714q0 8 5.143 13.143t13.143 5.143h182.857q8 0 13.143-5.143t5.143-13.143zM512 640v-36.571q0-8-5.143-13.143t-13.143-5.143h-36.571q-8 0-13.143 5.143t-5.143 13.143v36.571q0 8 5.143 13.143t13.143 5.143h36.571q8 0 13.143-5.143t5.143-13.143zM512 493.714v-36.571q0-8-5.143-13.143t-13.143-5.143h-36.571q-8 0-13.143 5.143t-5.143 13.143v36.571q0 8 5.143 13.143t13.143 5.143h36.571q8 0 13.143-5.143t5.143-13.143zM512 347.429v-36.571q0-8-5.143-13.143t-13.143-5.143h-36.571q-8 0-13.143 5.143t-5.143 13.143v36.571q0 8 5.143 13.143t13.143 5.143h36.571q8 0 13.143-5.143t5.143-13.143zM512 201.143v-36.571q0-8-5.143-13.143t-13.143-5.143h-36.571q-8 0-13.143 5.143t-5.143 13.143v36.571q0 8 5.143 13.143t13.143 5.143h36.571q8 0 13.143-5.143t5.143-13.143zM658.286 786.286v-36.571q0-8-5.143-13.143t-13.143-5.143h-36.571q-8 0-13.143 5.143t-5.143 13.143v36.571q0 8 5.143 13.143t13.143 5.143h36.571q8 0 13.143-5.143t5.143-13.143zM658.286 640v-36.571q0-8-5.143-13.143t-13.143-5.143h-36.571q-8 0-13.143 5.143t-5.143 13.143v36.571q0 8 5.143 13.143t13.143 5.143h36.571q8 0 13.143-5.143t5.143-13.143zM658.286 493.714v-36.571q0-8-5.143-13.143t-13.143-5.143h-36.571q-8 0-13.143 5.143t-5.143 13.143v36.571q0 8 5.143 13.143t13.143 5.143h36.571q8 0 13.143-5.143t5.143-13.143zM658.286 347.429v-36.571q0-8-5.143-13.143t-13.143-5.143h-36.571q-8 0-13.143 5.143t-5.143 13.143v36.571q0 8 5.143 13.143t13.143 5.143h36.571q8 0 13.143-5.143t5.143-13.143zM658.286 201.143v-36.571q0-8-5.143-13.143t-13.143-5.143h-36.571q-8 0-13.143 5.143t-5.143 13.143v36.571q0 8 5.143 13.143t13.143 5.143h36.571q8 0 13.143-5.143t5.143-13.143z" - ], - "width": 804.5714285714287, - "attrs": [], - "isMulticolor": false, - "tags": [ - "building" - ], - "defaultCode": 61869, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 389, - "order": 906, - "prevSize": 14, - "code": 61869, - "name": "building" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 389 - }, - { - "icon": { - "paths": [ - "M678.857 313.143l-166.857 166.857v470.857q0 26.286-18.857 45.143t-45.143 18.857-45.143-18.857-18.857-45.143v-219.429h-36.571v219.429q0 26.286-18.857 45.143t-45.143 18.857-45.143-18.857-18.857-45.143v-470.857l-166.857-166.857q-16-16-16-38.857t16-38.857 38.857-16 38.857 16l130.286 130.286h210.286l130.286-130.286q16-16 38.857-16t38.857 16 16 38.857-16 38.857zM493.714 219.429q0 53.143-37.429 90.571t-90.571 37.429-90.571-37.429-37.429-90.571 37.429-90.571 90.571-37.429 90.571 37.429 37.429 90.571z" - ], - "width": 731, - "attrs": [], - "isMulticolor": false, - "tags": [ - "child" - ], - "defaultCode": 61870, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 390, - "order": 907, - "prevSize": 14, - "code": 61870, - "name": "child" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 390 - }, - { - "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": { - "id": 391, - "order": 908, - "prevSize": 14, - "code": 61872, - "name": "paw" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 391 - }, - { - "icon": { - "paths": [ - "M402.286 301.714q0 82.857-32.571 139.143t-86.857 77.429l25.714 469.143q1.143 14.857-9.143 25.714t-25.143 10.857h-109.714q-14.857 0-25.143-10.857t-9.143-25.714l25.714-469.143q-54.286-21.143-86.857-77.429t-32.571-139.143q0-73.143 24.286-142.571t67.143-114.286 91.429-44.857 91.429 44.857 67.143 114.286 24.286 142.571z" - ], - "width": 439, - "attrs": [], - "isMulticolor": false, - "tags": [ - "spoon" - ], - "defaultCode": 61873, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 392, - "order": 909, - "prevSize": 14, - "code": 61873, - "name": "spoon" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 392 - }, - { - "icon": { - "paths": [ - "M512 930.857l365.714-199.429v-363.429l-365.714 133.143v429.714zM475.429 436.571l398.857-145.143-398.857-145.143-398.857 145.143zM950.857 292.571v438.857q0 20-10.286 37.143t-28 26.857l-402.286 219.429q-16 9.143-34.857 9.143t-34.857-9.143l-402.286-219.429q-17.714-9.714-28-26.857t-10.286-37.143v-438.857q0-22.857 13.143-41.714t34.857-26.857l402.286-146.286q12.571-4.571 25.143-4.571t25.143 4.571l402.286 146.286q21.714 8 34.857 26.857t13.143 41.714z" - ], - "width": 950.8571428571429, - "attrs": [], - "isMulticolor": false, - "tags": [ - "cube" - ], - "defaultCode": 61874, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 393, - "order": 910, - "prevSize": 14, - "code": 61874, - "name": "cube" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 393 - }, - { - "icon": { - "paths": [ - "M365.714 932.571l219.429-109.714v-179.429l-219.429 93.714v195.429zM329.143 673.143l230.857-98.857-230.857-98.857-230.857 98.857zM950.857 932.571l219.429-109.714v-179.429l-219.429 93.714v195.429zM914.286 673.143l230.857-98.857-230.857-98.857-230.857 98.857zM658.286 505.714l219.429-94.286v-152l-219.429 93.714v152.571zM621.714 289.143l252-108-252-108-252 108zM1243.429 585.143v237.714q0 20.571-10.857 38.286t-29.714 26.857l-256 128q-14.286 8-32.571 8t-32.571-8l-256-128q-2.857-1.143-4-2.286-1.143 1.143-4 2.286l-256 128q-14.286 8-32.571 8t-32.571-8l-256-128q-18.857-9.143-29.714-26.857t-10.857-38.286v-237.714q0-21.714 12.286-40t32.286-27.429l248-106.286v-228.571q0-21.714 12.286-40t32.286-27.429l256-109.714q13.143-5.714 28.571-5.714t28.571 5.714l256 109.714q20 9.143 32.286 27.429t12.286 40v228.571l248 106.286q20.571 9.143 32.571 27.429t12 40z" - ], - "width": 1243.8571428571427, - "attrs": [], - "isMulticolor": false, - "tags": [ - "cubes" - ], - "defaultCode": 61875, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 394, - "order": 911, - "prevSize": 14, - "code": 61875, - "name": "cubes" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 394 - }, - { - "icon": { - "paths": [ - "M1056 193.714h-292v70.857h292v-70.857zM912 437.143q-51.429 0-83.429 30t-35.429 81.429h233.143q-10.286-111.429-114.286-111.429zM921.143 771.429q36 0 69.714-18.286t43.429-49.714h126.286q-57.143 175.429-244 175.429-122.286 0-194.571-75.429t-72.286-198.286q0-118.857 74.571-197.429t192.286-78.571q78.857 0 137.429 38.857t87.429 102.286 28.857 141.714q0 9.714-1.143 26.857h-376q0 63.429 32.857 98t95.143 34.571zM158.286 742.857h169.143q117.143 0 117.143-95.429 0-102.857-113.714-102.857h-172.571v198.286zM158.286 436h160.571q44.571 0 70.571-20.857t26-64.857q0-82.286-108.571-82.286h-148.571v168zM0 145.143h339.429q49.714 0 88.571 8t72.286 27.143 51.429 55.143 18 88q0 103.429-98.286 150.286 65.143 18.286 98.286 65.714t33.143 116.571q0 42.857-14 78t-37.714 59.143-56.286 40.571-69.143 24-76.571 7.429h-349.143v-720z" - ], - "width": 1170, - "attrs": [], - "isMulticolor": false, - "tags": [ - "behance" - ], - "defaultCode": 61876, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 395, - "order": 912, - "prevSize": 14, - "code": 61876, - "name": "behance" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 395 - }, - { - "icon": { - "paths": [ - "M713.143 73.143q68 0 116.286 48.286t48.286 116.286v548.571q0 68-48.286 116.286t-116.286 48.286h-548.571q-68 0-116.286-48.286t-48.286-116.286v-548.571q0-68 48.286-116.286t116.286-48.286h548.571zM285.143 282.857h-212v449.714h218.286q66.857 0 112.571-32.857t45.714-97.429q0-90.286-81.714-114.286 61.143-29.714 61.143-93.714 0-32.571-11.143-55.143t-32.286-34.571-45.143-16.857-55.429-4.857zM272.571 464.571h-100.571v-105.143h93.143q68 0 68 51.429 0 53.714-60.571 53.714zM277.714 656h-105.714v-124h108q70.857 0 70.857 64.571 0 59.429-73.143 59.429zM649.143 674.286q-38.857 0-59.429-21.714t-20.571-61.143h234.857q0.571-5.714 0.571-17.143 0-75.429-42.571-126t-116.286-50.571q-73.143 0-120 49.143t-46.857 123.429q0 77.143 45.143 124t121.714 46.857q117.143 0 152.571-109.143h-78.857q-6.286 19.429-27.143 30.857t-43.143 11.429zM643.429 465.143q64.571 0 70.857 69.714h-145.143q2.286-32 22.286-50.857t52-18.857zM550.857 313.143h182.286v44h-182.286v-44z" - ], - "width": 877.7142857142858, - "attrs": [], - "isMulticolor": false, - "tags": [ - "behance-square" - ], - "defaultCode": 61877, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 396, - "order": 913, - "prevSize": 14, - "code": 61877, - "name": "behance-square" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 396 - }, - { - "icon": { - "paths": [ - "M904 332.571q0 57.714-40.857 98.571t-98.571 40.857-98.571-40.857-40.857-98.571 40.857-98.571 98.571-40.857 98.571 40.857 40.857 98.571zM464 756.571q0-59.429-41.714-101.143t-101.143-41.714q-15.429 0-30.857 3.429l59.429 24q44 17.714 62.571 60.857t0.857 86.571q-17.714 44-61.143 62.286t-86.857 0.571q-12-4.571-35.429-14t-34.857-14q18.286 34.286 52 55.143t74.286 20.857q59.429 0 101.143-41.714t41.714-101.143zM938.286 333.143q0-72-51.143-123.143t-123.143-51.143q-72.571 0-123.714 51.143t-51.143 123.143q0 72.571 51.143 123.429t123.714 50.857q72 0 123.143-50.857t51.143-123.429zM1024 333.143q0 108-76.286 184t-183.714 76l-249.714 182.286q-6.857 73.714-62.286 124.571t-130.857 50.857q-69.143 0-122.286-43.429t-67.429-109.714l-131.429-52.571v-245.143l222.286 89.714q45.143-27.429 98.857-27.429 7.429 0 20 1.143l162.286-232.571q1.143-106.857 77.429-182.286t183.143-75.429q107.429 0 183.714 76.286t76.286 183.714z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "steam" - ], - "defaultCode": 61878, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 397, - "order": 914, - "prevSize": 14, - "code": 61878, - "name": "steam" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 397 - }, - { - "icon": { - "paths": [ - "M709.714 369.714q0-45.714-32.571-78t-78.286-32.286-78 32.571-32.286 77.714q0 45.714 32.286 78t78 32.286 78.286-32.286 32.571-78zM361.143 705.714q0 47.429-33.143 80.286t-80 32.857q-32 0-58.857-16.571t-41.143-44q29.714 11.429 56 22.857 34.286 13.714 68.571-0.857t48.571-49.429q13.714-34.286-0.857-68.571t-49.429-48l-46.857-18.857q12.571-2.857 24-2.857 46.857 0 80 32.857t33.143 80.286zM877.714 237.714v548.571q0 68-48.286 116.286t-116.286 48.286h-548.571q-68 0-116.286-48.286t-48.286-116.286v-87.429l98.286 39.429q11.429 52.571 53.429 86.857t96.286 34.286q59.429 0 103.429-40t49.714-98.857l197.143-144q85.714 0 146-60.286t60.286-145.429q0-85.714-60.286-146t-146-60.286q-84.571 0-144.571 59.714t-61.143 144.286l-128.571 184q-5.143-0.571-16-0.571-42.857 0-78.286 21.143l-169.714-68v-267.429q0-68 48.286-116.286t116.286-48.286h548.571q68 0 116.286 48.286t48.286 116.286zM736.571 370.857q0 57.143-40.571 97.429t-97.714 40.286-97.429-40.286-40.286-97.429 40.286-97.714 97.429-40.571q57.714 0 98 40.286t40.286 98z" - ], - "width": 877.7142857142858, - "attrs": [], - "isMulticolor": false, - "tags": [ - "steam-square" - ], - "defaultCode": 61879, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 398, - "order": 915, - "prevSize": 14, - "code": 61879, - "name": "steam-square" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 398 - }, - { - "icon": { - "paths": [ - "M477.714 668l-8.571 210.286-1.143 12.571-240-16.571q-20.571-1.714-38.286-18t-26.857-37.429q-6.286-15.429-8.286-31.429t2.286-37.143 6.857-31.429 12.286-36.571 10.857-30.286q44.571 6.857 290.857 16zM256.571 333.143l102.857 216.571-84-52.571q-36 41.143-63.714 82.571t-41.429 71.429-22.571 54-10.571 36l-2.286 12-108.571-204q-9.714-14.857-10.286-32t3.429-26.857l4.571-10.286q20-36 65.143-107.429l-80-49.143zM960 628.571l-107.429 205.143q-6.857 16.571-20.857 26.571t-24.857 11.714l-10.286 2.286q-40.571 4-125.143 6.857l4.571 93.714-131.429-209.714 120.571-206.857 4 98.857q97.143 9.143 161.714 2.857t97.143-18.857zM511.429 100.571q-26.857 36-151.429 248.571l-181.143-106.857-10.857-6.857 128.571-203.429q11.429-17.714 34.286-25.714t45.714-5.714q13.714 1.143 27.714 6.857t24 12 23.714 18.857 20.571 19.714 20.571 22.571 18.286 20zM885.714 276l121.143 207.429q10.286 21.143 7.143 43.429t-15.714 42.286q-7.429 11.429-18.857 21.143t-21.714 16-27.714 12.571-26.857 9.143-29.429 8-26.286 6.857q-19.429-41.143-151.429-249.143l178.857-111.429zM804 146.857l81.143-47.429-125.714 213.143-239.429-11.429 86.286-49.143q-19.429-50.857-42.857-94.857t-43.143-70.571-36.857-45.714-26.857-26.571l-9.714-7.429 231.429 0.571q17.714-1.714 33.143 6t22.286 16.286l6.286 8.571q22.286 34.857 64 108.571z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "recycle" - ], - "defaultCode": 61880, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 399, - "order": 916, - "prevSize": 14, - "code": 61880, - "name": "recycle" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 399 - }, - { - "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": 917, - "name": "automobile, car", - "prevSize": 14, - "code": 61881 - }, - "setIdx": 0, - "setId": 4, - "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": 918, - "name": "cab, taxi", - "prevSize": 14, - "code": 61882 - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 401 - }, - { - "icon": { - "paths": [ - "M859.429 841.143q0 14.857-10.857 25.714t-25.714 10.857h-264q0.571 9.714 3.429 50t2.857 62q0 14.286-10.286 24.286t-24.571 10h-182.857q-14.286 0-24.571-10t-10.286-24.286q0-21.714 2.857-62t3.429-50h-264q-14.857 0-25.714-10.857t-10.857-25.714 10.857-25.714l229.714-230.286h-130.857q-14.857 0-25.714-10.857t-10.857-25.714 10.857-25.714l229.714-230.286h-112.571q-14.857 0-25.714-10.857t-10.857-25.714 10.857-25.714l219.429-219.429q10.857-10.857 25.714-10.857t25.714 10.857l219.429 219.429q10.857 10.857 10.857 25.714t-10.857 25.714-25.714 10.857h-112.571l229.714 230.286q10.857 10.857 10.857 25.714t-10.857 25.714-25.714 10.857h-130.857l229.714 230.286q10.857 10.857 10.857 25.714z" - ], - "width": 877.7142857142858, - "attrs": [], - "isMulticolor": false, - "tags": [ - "tree" - ], - "defaultCode": 61883, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 402, - "order": 919, - "prevSize": 14, - "code": 61883, - "name": "tree" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 402 - }, - { - "icon": { - "paths": [ - "M644 691.429q0-18.286-17.143-29.143-110.286-65.714-255.429-65.714-76 0-164 19.429-24 5.143-24 29.714 0 11.429 7.714 19.714t20.286 8.286q2.857 0 21.143-4.571 75.429-15.429 138.857-15.429 129.143 0 226.857 58.857 10.857 6.286 18.857 6.286 10.857 0 18.857-7.714t8-19.714zM698.857 568.571q0-22.857-20-34.857-135.429-80.571-313.143-80.571-87.429 0-173.143 24-27.429 7.429-27.429 36.571 0 14.286 10 24.286t24.286 10q4 0 21.143-4.571 69.714-18.857 143.429-18.857 159.429 0 278.857 70.857 13.714 7.429 21.714 7.429 14.286 0 24.286-10t10-24.286zM760.571 426.857q0-26.857-22.857-40-72-41.714-167.429-63.143t-196-21.429q-116.571 0-208 26.857-13.143 4-22 14.571t-8.857 27.714q0 17.714 11.714 29.714t29.429 12q6.286 0 22.857-4.571 76-21.143 175.429-21.143 90.857 0 176.857 19.429t144.857 54.286q12 6.857 22.857 6.857 16.571 0 28.857-11.714t12.286-29.429zM877.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": [ - "spotify" - ], - "defaultCode": 61884, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 403, - "order": 920, - "prevSize": 14, - "code": 61884, - "name": "spotify" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 403 - }, - { - "icon": { - "paths": [ - "M585.143 173.143l-173.143 332.571 13.714 17.714h159.429v237.143h-289.714l-25.143 17.143-81.143 156-17.143 17.143h-172v-173.143l173.143-333.143-13.714-17.143h-159.429v-237.143h289.714l25.143-17.143 81.143-156 17.143-17.143h172v173.143z" - ], - "width": 585, - "attrs": [], - "isMulticolor": false, - "tags": [ - "deviantart" - ], - "defaultCode": 61885, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 404, - "order": 921, - "prevSize": 14, - "code": 61885, - "name": "deviantart" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 404 - }, - { - "icon": { - "paths": [ - "M448 784l9.143-137.714-9.143-298.857q-0.571-5.714-4.286-9.714t-9.429-4q-5.143 0-9.143 4t-4 9.714l-8 298.857 8 137.714q0.571 5.714 4.286 9.429t8.857 3.714q12.571 0 13.714-13.143zM617.143 767.429l6.286-120.571-6.857-334.857q0-9.143-7.429-13.714-4.571-2.857-9.143-2.857t-9.143 2.857q-7.429 4.571-7.429 13.714l-0.571 3.429-5.714 330.857q0 0.571 6.286 134.857v0.571q0 5.714 3.429 9.714 5.143 6.286 13.143 6.286 6.286 0 11.429-5.143 5.143-4 5.143-11.429zM20 573.143l11.429 73.143-11.429 72q-1.143 5.143-5.143 5.143t-5.143-5.143l-9.714-72 9.714-73.143q1.143-5.143 5.143-5.143t5.143 5.143zM69.143 528l14.857 118.286-14.857 116q-1.143 5.143-5.714 5.143-5.143 0-5.143-5.714l-13.143-115.429 13.143-118.286q0-5.143 5.143-5.143 4.571 0 5.714 5.143zM121.714 506.286l14.286 140-14.286 135.429q0 6.286-6.286 6.286-5.714 0-6.857-6.286l-12-135.429 12-140q1.143-6.857 6.857-6.857 6.286 0 6.286 6.857zM175.429 502.286l13.143 144-13.143 139.429q-1.143 7.429-8 7.429-7.429 0-7.429-7.429l-12-139.429 12-144q0-7.429 7.429-7.429 6.857 0 8 7.429zM229.143 512.571l12 133.714-12 140.571q-1.143 9.143-9.143 9.143-3.429 0-6-2.571t-2.571-6.571l-11.429-140.571 11.429-133.714q0-3.429 2.571-6t6-2.571q8 0 9.143 8.571zM282.857 429.143l12 217.143-12 140.571q0 4-2.857 7.143t-6.857 3.143q-9.143 0-10.286-10.286l-10.286-140.571 10.286-217.143q1.143-10.286 10.286-10.286 4 0 6.857 3.143t2.857 7.143zM336.571 380l10.857 267.429-10.857 139.429q0 4.571-3.143 7.714t-7.714 3.143q-10.286 0-11.429-10.857l-9.143-139.429 9.143-267.429q1.143-10.857 11.429-10.857 4.571 0 7.714 3.143t3.143 7.714zM392.571 357.143l10.286 289.143-10.286 138.286q-1.143 12-12.571 12-10.857 0-12-12l-9.143-138.286 9.143-289.143q0-5.143 3.714-8.857t8.286-3.714q5.143 0 8.571 3.714t4 8.857zM616.571 781.143v0 0zM503.429 354.857l8.571 291.429-8.571 136.571q0 5.714-4.286 10t-10 4.286-9.714-4-4.571-10.286l-8-136.571 8-291.429q0-6.286 4.286-10.286t10-4 10 4 4.286 10.286zM560 365.714l8 281.143-8 134.857q0 6.286-4.571 10.857t-10.857 4.571-10.857-4.571-5.143-10.857l-6.857-134.857 6.857-281.143q0.571-6.857 5.143-11.429t10.857-4.571 10.571 4.571 4.857 11.429zM681.143 646.857l-8 132q0 7.429-5.143 12.571t-12.571 5.143-12.571-5.143-5.714-12.571l-3.429-65.143-3.429-66.857 6.857-363.429v-1.714q1.143-8.571 6.857-13.714 5.143-4 11.429-4 4.571 0 8.571 2.857 8 4.571 9.143 14.857zM1316.571 636q0 66.857-47.429 114t-114.286 47.143h-449.143q-7.429-1.143-12.571-6.286t-5.143-12.571v-513.714q0-13.143 16-18.857 48.571-19.429 103.429-19.429 111.429 0 193.143 75.143t91.429 184.857q30.286-12.571 62.857-12.571 66.857 0 114.286 47.429t47.429 114.857z" - ], - "width": 1317, - "attrs": [], - "isMulticolor": false, - "tags": [ - "soundcloud" - ], - "defaultCode": 61886, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 405, - "order": 922, - "prevSize": 14, - "code": 61886, - "name": "soundcloud" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 405 - }, - { - "icon": { - "paths": [ - "M438.857 438.857q135.429 0 253.143-24.571t185.714-72.571v97.143q0 39.429-58.857 73.143t-160 53.429-220 19.714-220-19.714-160-53.429-58.857-73.143v-97.143q68 48 185.714 72.571t253.143 24.571zM438.857 877.714q135.429 0 253.143-24.571t185.714-72.571v97.143q0 39.429-58.857 73.143t-160 53.429-220 19.714-220-19.714-160-53.429-58.857-73.143v-97.143q68 48 185.714 72.571t253.143 24.571zM438.857 658.286q135.429 0 253.143-24.571t185.714-72.571v97.143q0 39.429-58.857 73.143t-160 53.429-220 19.714-220-19.714-160-53.429-58.857-73.143v-97.143q68 48 185.714 72.571t253.143 24.571zM438.857 0q118.857 0 220 19.714t160 53.429 58.857 73.143v73.143q0 39.429-58.857 73.143t-160 53.429-220 19.714-220-19.714-160-53.429-58.857-73.143v-73.143q0-39.429 58.857-73.143t160-53.429 220-19.714z" - ], - "width": 877.7142857142858, - "attrs": [], - "isMulticolor": false, - "tags": [ - "database" - ], - "defaultCode": 61888, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 406, - "order": 923, - "prevSize": 14, - "code": 61888, - "name": "database" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 406 - }, - { - "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" - ], - "width": 877.7142857142858, - "attrs": [], - "isMulticolor": false, - "tags": [ - "file-pdf-o" - ], - "defaultCode": 61889, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 407, - "order": 924, - "prevSize": 14, - "code": 61889, - "name": "file-pdf-o" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 407 - }, - { - "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" - ], - "width": 877.7142857142858, - "attrs": [], - "isMulticolor": false, - "tags": [ - "file-word-o" - ], - "defaultCode": 61890, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 408, - "order": 925, - "prevSize": 14, - "code": 61890, - "name": "file-word-o" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 408 - }, - { - "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" - ], - "width": 877.7142857142858, - "attrs": [], - "isMulticolor": false, - "tags": [ - "file-excel-o" - ], - "defaultCode": 61891, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 409, - "order": 926, - "prevSize": 14, - "code": 61891, - "name": "file-excel-o" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 409 - }, - { - "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" - ], - "width": 877.7142857142858, - "attrs": [], - "isMulticolor": false, - "tags": [ - "file-powerpoint-o" - ], - "defaultCode": 61892, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 410, - "order": 927, - "prevSize": 14, - "code": 61892, - "name": "file-powerpoint-o" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 410 - }, - { - "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" - ], - "width": 877.7142857142858, - "attrs": [], - "isMulticolor": false, - "tags": [ - "file-image-o", - "file-photo-o", - "file-picture-o" - ], - "defaultCode": 61893, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 411, - "order": 928, - "name": "file-image-o, file-photo-o, file-picture-o", - "prevSize": 14, - "code": 61893 - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 411 - }, - { - "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" - ], - "width": 877.7142857142858, - "attrs": [], - "isMulticolor": false, - "tags": [ - "file-archive-o", - "file-zip-o" - ], - "defaultCode": 61894, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 412, - "order": 929, - "name": "file-archive-o, file-zip-o", - "prevSize": 14, - "code": 61894 - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 412 - }, - { - "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" - ], - "width": 877.7142857142858, - "attrs": [], - "isMulticolor": false, - "tags": [ - "file-audio-o", - "file-sound-o" - ], - "defaultCode": 61895, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 413, - "order": 930, - "name": "file-audio-o, file-sound-o", - "prevSize": 14, - "code": 61895 - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 413 - }, - { - "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" - ], - "width": 877.7142857142858, - "attrs": [], - "isMulticolor": false, - "tags": [ - "file-movie-o", - "file-video-o" - ], - "defaultCode": 61896, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 414, - "order": 931, - "name": "file-movie-o, file-video-o", - "prevSize": 14, - "code": 61896 - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 414 - }, - { - "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" - ], - "width": 877.7142857142858, - "attrs": [], - "isMulticolor": false, - "tags": [ - "file-code-o" - ], - "defaultCode": 61897, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 415, - "order": 932, - "prevSize": 14, - "code": 61897, - "name": "file-code-o" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 415 - }, - { - "icon": { - "paths": [ - "M855.429 472.571v113.143q-57.714 13.143-113.143 13.143-37.143 77.714-94.571 154.857t-103.714 123.143-73.143 60.857q-45.714 25.714-92.571-1.714-16-9.714-34.571-24.857t-48.571-47.714-58.571-73.429-61.429-105.143-60.286-139.429-52.286-179.714-40.286-222.857h161.714q14.857 124.571 40 227.714t59.714 181.143 69.429 134.571 80 111.429q96.571-96.571 164-232-81.143-41.143-127.429-125.714t-46.286-190.286q0-109.714 59.429-179.714t162.286-70q101.714 0 156 60.286t54.286 170q0 90.857-33.143 163.429-4 0.571-11.143 1.714t-26.286 1.143-36-3.429-35.429-14.571-28.857-29.429q17.714-58.857 17.714-105.143 0-49.714-16.571-75.429t-45.143-25.714q-30.286 0-48.571 28.286t-18.286 80.286q0 106.286 60 167.714t152.571 61.429q35.429 0 69.143-8z" - ], - "width": 877.7142857142858, - "attrs": [], - "isMulticolor": false, - "tags": [ - "vine" - ], - "defaultCode": 61898, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 416, - "order": 933, - "prevSize": 14, - "code": 61898, - "name": "vine" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 416 - }, - { - "icon": { - "paths": [ - "M123.429 668l344.571 229.714v-205.143l-190.857-127.429zM88 585.714l110.286-73.714-110.286-73.714v147.429zM556 897.714l344.571-229.714-153.714-102.857-190.857 127.429v205.143zM512 616l155.429-104-155.429-104-155.429 104zM277.143 458.857l190.857-127.429v-205.143l-344.571 229.714zM825.714 512l110.286 73.714v-147.429zM746.857 458.857l153.714-102.857-344.571-229.714v205.143zM1024 356v312q0 23.429-19.429 36.571l-468 312q-12 7.429-24.571 7.429t-24.571-7.429l-468-312q-19.429-13.143-19.429-36.571v-312q0-23.429 19.429-36.571l468-312q12-7.429 24.571-7.429t24.571 7.429l468 312q19.429 13.143 19.429 36.571z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "codepen" - ], - "defaultCode": 61899, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 417, - "order": 934, - "prevSize": 14, - "code": 61899, - "name": "codepen" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 417 - }, - { - "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": 935, - "prevSize": 14, - "code": 61900, - "name": "jsfiddle" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 418 - }, - { - "icon": { - "paths": [ - "M512 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.571zM512 73.143q-108.571 0-206.286 51.429l110.857 110.857q46.857-16 95.429-16t95.429 16l110.857-110.857q-97.714-51.429-206.286-51.429zM124.571 718.286l110.857-110.857q-16-46.857-16-95.429t16-95.429l-110.857-110.857q-51.429 97.714-51.429 206.286t51.429 206.286zM512 950.857q108.571 0 206.286-51.429l-110.857-110.857q-46.857 16-95.429 16t-95.429-16l-110.857 110.857q97.714 51.429 206.286 51.429zM512 731.429q90.857 0 155.143-64.286t64.286-155.143-64.286-155.143-155.143-64.286-155.143 64.286-64.286 155.143 64.286 155.143 155.143 64.286zM788.571 607.429l110.857 110.857q51.429-97.714 51.429-206.286t-51.429-206.286l-110.857 110.857q16 46.857 16 95.429t-16 95.429z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "life-bouy", - "life-buoy", - "life-ring", - "life-saver", - "support" - ], - "defaultCode": 61901, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 419, - "order": 936, - "name": "life-bouy, life-buoy, life-ring, life-saver, support", - "prevSize": 14, - "code": 61901 - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 419 - }, - { - "icon": { - "paths": [ - "M1024 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.857q0-126.857 57.714-236.857t158-181.143 223.143-88.857v148.571q-126.286 25.714-209.429 126.286t-83.143 232q0 74.286 29.143 142t78 116.571 116.571 78 142 29.143 142-29.143 116.571-78 78-116.571 29.143-142q0-131.429-83.143-232t-209.429-126.286v-148.571q122.857 17.714 223.143 88.857t158 181.143 57.714 236.857z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "circle-o-notch" - ], - "defaultCode": 61902, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 420, - "order": 937, - "prevSize": 14, - "code": 61902, - "name": "circle-o-notch" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 420 - }, - { - "icon": { - "paths": [ - "M10.857 499.429q4.571-124 66.286-232t174.286-181.714h2.857q0 0.571-0.571 1.714-4.571 4.571-16 19.143t-29.714 43.714-34.286 63.143-25.429 77.429-8 86 22.286 90 62 88q28.571 28.571 58.286 39.714t51.714 6.571 39.714-13.429 26.857-18.571l9.143-9.143q22.286-29.143 30.286-66.571t3.714-70-12-61.143-15.143-45.714l-8-16.571q-5.714-14.286-17.429-28.286t-24.571-23.429-24.857-16.857-20-10.857l-7.429-3.429 59.429-65.714q22.286 9.714 44.571 29.714t33.714 34.857l10.857 15.429q0.571-27.429-10.571-59.143t-23.143-50l-11.429-17.714 92-104.571 91.429 103.429q-18.857 26.286-30 58.571t-12.857 51.714l-2.286 18.857q12.571-21.143 35.143-41.429t38.571-30l16-9.714 58.857 65.714q-25.143 8-48.571 28.571t-34.286 37.143l-10.857 16.571q-17.714 32-27.429 76.286t-4 97.143 32.571 89.429q18.857 25.714 44.286 34.571t48.571 3.143 43.429-15.143 32.857-19.143l12-9.143q34.286-30.286 55.143-65.714t27.714-69.429 5.714-69.429-10.286-67.429-21.143-61.429-26-53.143-25.714-41.143-19.714-27.143l-7.429-9.714q-8-7.429-4-7.429l5.714 1.714q22.857 16.571 35.714 26.286t35.429 28.571 36.571 33.143 33.429 37.143 31.714 44 26 50.286 21.714 58.857 13.429 66.857 6 77.714q1.714 148-61.714 265.714t-178.286 183.429-260.571 65.714q-105.714 0-200.571-42.286t-162-113.143-105.143-167.429-34.571-201.714z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "ra", - "rebel" - ], - "defaultCode": 61904, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 421, - "order": 938, - "name": "ra, rebel", - "prevSize": 14, - "code": 61904 - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 421 - }, - { - "icon": { - "paths": [ - "M499.429 936v37.714q-118.857-3.429-220-62.571t-161.714-157.429l33.143-19.429q16.571 28 41.714 56.571l37.143-32.571q84.571 96 210.286 121.143l-9.714 49.143q37.143 6.857 69.143 7.429zM157.714 633.143l-47.429 16q12.571 34.286 28 64l-32.571 18.857q-56-102.857-56-220t56-220l32.571 18.857q-17.143 32-28 64l46.857 16q-20 57.143-20 121.143 0 62.286 20.571 121.143zM873.143 734.286l33.143 19.429q-60.571 98.286-161.714 157.429t-220 62.571v-37.714q32-0.571 69.143-7.429l-9.714-49.143q125.714-25.143 210.286-121.143l37.143 32.571q25.143-28.571 41.714-56.571zM786.857 417.714l-133.143 45.714q8 24 8 48.571t-8 48.571l132.571 45.714q-17.714 52.571-56 96.571l-105.714-92.571q-32.571 38.286-84 48.571l27.429 137.714q-29.714 5.714-56 5.714t-56-5.714l27.429-137.714q-51.429-10.286-84-48.571l-105.714 92.571q-38.286-44-56-96.571l132.571-45.714q-8-24-8-48.571t8-48.571l-133.143-45.714q18.857-53.143 56.571-96.571l105.714 92.571q33.714-38.857 84-49.143l-27.429-137.143q25.143-5.714 56-5.714t56 5.714l-27.429 137.143q50.286 10.286 84 49.143l105.714-92.571q37.714 43.429 56.571 96.571zM499.429 50.286v37.714q-37.143 1.143-69.143 7.429l9.714 49.143q-125.714 24-210.286 120.571l-37.143-32q-21.714 24-41.714 56l-32.571-18.857q60.571-98.286 161.143-157.429t220-62.571zM974.286 512q0 117.143-56 220l-32.571-18.857q15.429-29.714 28-64l-47.429-16q20.571-58.857 20.571-121.143 0-64-20-121.143l46.857-16q-10.857-32-28-64l32.571-18.857q56 102.857 56 220zM905.714 270.286l-32.571 18.857q-20-32-41.714-56l-37.143 32q-84.571-96.571-210.286-120.571l9.714-49.143q-32-6.286-69.143-7.429v-37.714q119.429 3.429 220 62.571t161.143 157.429zM998.857 512q0-98.857-38.571-189.143t-103.714-155.429-155.429-103.714-189.143-38.571-189.143 38.571-155.429 103.714-103.714 155.429-38.571 189.143 38.571 189.143 103.714 155.429 155.429 103.714 189.143 38.571 189.143-38.571 155.429-103.714 103.714-155.429 38.571-189.143zM1024 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": [ - "empire", - "ge" - ], - "defaultCode": 61905, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 422, - "order": 939, - "name": "empire, ge", - "prevSize": 14, - "code": 61905 - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 422 - }, - { - "icon": { - "paths": [ - "M332.571 747.429q0 37.714-53.143 37.714-61.143 0-61.143-36 0-36.571 56-36.571 58.286 0 58.286 34.857zM312 481.143q0 48.571-42.286 48.571-44 0-44-48 0-51.429 44-51.429 20.571 0 31.429 14.571t10.857 36.286zM406.857 438.286v-71.429q-44.571 16.571-77.143 16.571-28.571-16.571-62.857-16.571-49.143 0-82.857 32.571t-33.714 81.714q0 28.571 16.857 58.286t42 38.286v1.714q-21.714 9.714-21.714 48.571 0 30.286 23.429 44v1.714q-64.571 21.143-64.571 79.429 0 25.714 11.429 44.857t30.857 29.143 41.143 14.571 46.286 4.571q128 0 128-107.429 0-38.286-27.429-56.571t-72-26.286q-15.429-2.857-29.429-11.714t-14-22.571q0-25.143 28-29.714 44-8.571 69.714-40t25.714-76.571q0-13.714-5.714-29.714 21.143-5.143 28-7.429zM440.571 677.714h78.286q-1.143-15.429-1.143-46.857v-221.143q0-26.286 1.143-39.429h-78.286q1.714 13.143 1.714 40.571v224q0 28.571-1.714 42.857zM731.429 668.571v-69.143q-17.143 12-38.857 12-30.286 0-30.286-46.857v-128.571h29.714q5.143 0 15.143 0.571t15.143 0.571v-66.857h-60q0-46.857 1.714-58.286h-80q2.286 13.714 2.286 31.429v26.857h-34.286v66.857q20.571-1.714 21.143-1.714 1.714 0 6.286 0.286t6.857 0.286v1.143h-1.143v124q0 21.143 1.429 36.571t6.571 32.286 14 27.714 24.857 17.714 37.714 6.857q36.571 0 61.714-13.714zM528 265.143q0-20.571-13.714-36.286t-34.286-15.714-34.571 15.429-14 36.571q0 20.571 14.286 35.714t34.286 15.143 34-15.429 14-35.429zM877.714 237.714v548.571q0 68-48.286 116.286t-116.286 48.286h-548.571q-68 0-116.286-48.286t-48.286-116.286v-548.571q0-68 48.286-116.286t116.286-48.286h548.571q68 0 116.286 48.286t48.286 116.286z" - ], - "width": 877.7142857142858, - "attrs": [], - "isMulticolor": false, - "tags": [ - "git-square" - ], - "defaultCode": 61906, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 423, - "order": 940, - "prevSize": 14, - "code": 61906, - "name": "git-square" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 423 - }, - { - "icon": { - "paths": [ - "M340 865.143q0-57.143-94.286-57.143-90.286 0-90.286 59.429 0 57.714 98.286 57.714 86.286 0 86.286-60zM306.286 433.714q0-34.857-17.143-58.286t-50.857-23.429q-70.857 0-70.857 82.857 0 77.143 70.857 77.143 68 0 68-78.286zM460 248.571v115.429q-20.571 6.857-45.143 12.571 9.143 24.571 9.143 48 0 72.571-41.714 123.714t-112.571 64.286q-22.857 4.571-34 15.429t-11.143 33.143q0 17.714 12.857 29.429t33.143 18.286 44.857 12.571 49.143 14.571 44.857 21.429 33.143 36.571 12.857 56.286q0 173.714-207.429 173.714-39.429 0-74.286-7.143t-66.286-23.429-50-46.857-18.571-72.857q0-94.286 104-128.571v-2.286q-38.286-23.429-38.286-72 0-62.286 36-78.286v-2.286q-41.143-13.714-68.286-62t-27.143-94.571q0-79.429 54.286-132.286t134.286-52.857q54.857 0 101.714 26.857 56 0 124.571-26.857zM641.714 752h-126.857q2.286-25.714 2.286-76.571v-348q0-53.714-2.286-73.143h126.857q-2.286 18.857-2.286 70.857v350.286q0 50.857 2.286 76.571zM985.143 625.143v112q-40.571 22.286-99.429 22.286-35.429 0-61.143-11.429t-40-28.571-22.571-44.571-10.571-52.571-2.286-58.857v-200.571h1.143v-2.286q-4 0-10.857-0.571t-10.286-0.571q-12 0-33.714 3.429v-108.571h54.857v-43.429q0-30.857-3.429-50.857h129.714q-3.429 23.429-3.429 94.286h97.714v108.571q-8.571 0-24.857-1.143t-24.286-1.143h-48.571v208.571q0 74.857 49.714 74.857 34.857 0 62.286-18.857zM656 84q0 33.143-22.286 58t-54.857 24.857q-33.143 0-56-24.857t-22.857-58q0-33.714 22.571-58.857t56.286-25.143q33.143 0 55.143 25.429t22 58.571z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "git" - ], - "defaultCode": 61907, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 424, - "order": 941, - "prevSize": 14, - "code": 61907, - "name": "git" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 424 - }, - { - "icon": { - "paths": [ - "M462.286 573.714l152-285.143h-64l-89.714 178.286q-13.714 27.429-25.143 52.571l-24-52.571-88.571-178.286h-68.571l150.286 281.714v185.143h57.714v-181.714zM877.714 237.714v548.571q0 68-48.286 116.286t-116.286 48.286h-548.571q-68 0-116.286-48.286t-48.286-116.286v-548.571q0-68 48.286-116.286t116.286-48.286h548.571q68 0 116.286 48.286t48.286 116.286z" - ], - "width": 877.7142857142858, - "attrs": [], - "isMulticolor": false, - "tags": [ - "hacker-news", - "y-combinator-square", - "yc-square" - ], - "defaultCode": 61908, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 425, - "order": 942, - "name": "hacker-news, y-combinator-square, yc-square", - "prevSize": 14, - "code": 61908 - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 425 - }, - { - "icon": { - "paths": [ - "M481.143 326.857q0 45.714-32.571 78t-77.714 32.286q-34.286 0-63.429-20-35.429 38.286-65.714 83.429-141.143 212-115.429 490.857 0.571 12.571-7.143 22t-19.714 10.571h-2.857q-11.429 0-20-7.714t-9.714-19.143q-8-72-2-141.429t16.857-124 30.857-106.286 39.429-88.857 42.286-71.429q34.857-51.429 75.429-94.286-9.143-20-9.143-44 0-45.714 32.286-78t78-32.286 78 32.286 32.286 78zM698.857 333.143q0 90.286-44.571 166.857t-121.429 121.143-167.143 44.571q-36.571 0-74.857-8-12-2.857-18.571-13.429t-3.714-22.571q2.857-11.429 13.143-18t22.286-4.286q29.143 7.429 61.714 7.429 55.429 0 106.286-21.714t87.429-58.286 58.286-87.429 21.714-106.286-21.714-106.286-58.286-87.429-87.429-58.286-106.286-21.714-106.286 21.714-87.429 58.286-58.286 87.429-21.714 106.286q0 65.143 29.714 124.571 5.714 11.429 2 22.857t-14.571 17.143-22.571 1.714-17.429-14.857q-36.571-70.286-36.571-151.429 0-68 26.571-129.714t71.143-106.286 106.286-70.857 129.143-26.286q90.286 0 167.143 44.571t121.429 121.429 44.571 167.143z" - ], - "width": 731, - "attrs": [], - "isMulticolor": false, - "tags": [ - "tencent-weibo" - ], - "defaultCode": 61909, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 426, - "order": 943, - "prevSize": 14, - "code": 61909, - "name": "tencent-weibo" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 426 - }, - { - "icon": { - "paths": [ - "M154.286 460.571q-4.571-10.857-4.571-29.714 0-11.429 6.286-28t13.714-25.714q-0.571-12.571 4.286-30.286t12.857-24.571q0-79.429 52.857-164.857t124.286-119.714q79.429-37.714 185.143-37.714 76 0 152 31.429 28 12 51.429 27.429t40.571 32 31.429 38.857 24 42.286 18.571 48.286 14.571 51.143 12.571 56l0.571 2.857q31.429 47.429 31.429 85.714 0 8-5.143 22.857t-5.143 21.714q0 0.571 0.857 2t2 2.857 1.143 2q44 65.143 68.857 122.571t24.857 119.143q0 24.571-11.143 57.143t-31.714 32.571q-5.143 0-11.143-4.286t-10.857-10-10.857-14.857-9.143-15.143-7.714-14.857-5.143-10q-0.571-0.571-1.714-0.571l-2.857 2.286q-33.714 88-75.429 127.429 11.429 11.429 35.143 22t39.429 23.714 20.286 37.143q-1.143 2.286-2.286 9.143t-4 10.286q-36.571 55.429-172.571 55.429-30.286 0-63.143-5.143t-56-11.429-59.714-17.143q-8.571-2.857-13.143-4-8-2.286-26.286-2.571t-22.857-0.857q-23.429 25.714-72.857 37.143t-96.286 11.429q-20 0-39.429-0.857t-53.143-5.143-57.714-11.714-42.571-22.857-18.571-36.571q0-22.857 5.714-34t23.429-27.714q6.286-1.143 23.143-7.429t28.286-6.857q2.286 0 8-1.143 1.143-1.143 1.143-2.286l-1.143-1.714q-27.429-6.286-61.714-60.286t-41.714-89.429l-2.857-1.714q-2.286 0-6.857 11.429-10.286 23.429-31.143 42.571t-44.286 21.429h-0.571q-2.286 0-3.429-2.571t-2.857-3.143q-13.143-30.857-13.143-57.143 0-157.143 144-266.286z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "qq" - ], - "defaultCode": 61910, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 427, - "order": 944, - "prevSize": 14, - "code": 61910, - "name": "qq" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 427 - }, - { - "icon": { - "paths": [ - "M331.429 263.429q0-23.429-14.286-37.714t-37.714-14.286q-24.571 0-43.429 14.571t-18.857 37.429q0 22.286 18.857 36.857t43.429 14.571q23.429 0 37.714-14t14.286-37.429zM756 553.143q0-16-14.571-28.571t-37.429-12.571q-15.429 0-28.286 12.857t-12.857 28.286q0 16 12.857 28.857t28.286 12.857q22.857 0 37.429-12.571t14.571-29.143zM621.143 263.429q0-23.429-14-37.714t-37.429-14.286q-24.571 0-43.429 14.571t-18.857 37.429q0 22.286 18.857 36.857t43.429 14.571q23.429 0 37.429-14t14-37.429zM984 553.143q0-16-14.857-28.571t-37.143-12.571q-15.429 0-28.286 12.857t-12.857 28.286q0 16 12.857 28.857t28.286 12.857q22.286 0 37.143-12.571t14.857-29.143zM832 326.286q-17.714-2.286-40-2.286-96.571 0-177.714 44t-127.714 119.143-46.571 164.286q0 44.571 13.143 86.857-20 1.714-38.857 1.714-14.857 0-28.571-0.857t-31.429-3.714-25.429-4-31.143-6-28.571-6l-144.571 72.571 41.143-124.571q-165.714-116-165.714-280 0-96.571 55.714-177.714t150.857-127.714 207.714-46.571q100.571 0 190 37.714t149.714 104.286 78 148.857zM1170.286 646.857q0 66.857-39.143 127.714t-106 110.571l31.429 103.429-113.714-62.286q-85.714 21.143-124.571 21.143-96.571 0-177.714-40.286t-127.714-109.429-46.571-150.857 46.571-150.857 127.714-109.429 177.714-40.286q92 0 173.143 40.286t130 109.714 48.857 150.571z" - ], - "width": 1170, - "attrs": [], - "isMulticolor": false, - "tags": [ - "wechat", - "weixin" - ], - "defaultCode": 61911, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 428, - "order": 945, - "name": "wechat, weixin", - "prevSize": 14, - "code": 61911 - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 428 - }, - { - "icon": { - "paths": [ - "M1008 6.286q18.857 13.714 15.429 36.571l-146.286 877.714q-2.857 16.571-18.286 25.714-8 4.571-17.714 4.571-6.286 0-13.714-2.857l-258.857-105.714-138.286 168.571q-10.286 13.143-28 13.143-7.429 0-12.571-2.286-10.857-4-17.429-13.429t-6.571-20.857v-199.429l493.714-605.143-610.857 528.571-225.714-92.571q-21.143-8-22.857-31.429-1.143-22.857 18.286-33.714l950.857-548.571q8.571-5.143 18.286-5.143 11.429 0 20.571 6.286z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "paper-plane", - "send" - ], - "defaultCode": 61912, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 429, - "order": 946, - "name": "paper-plane, send", - "prevSize": 14, - "code": 61912 - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 429 - }, - { - "icon": { - "paths": [ - "M1008 6.286q18.857 13.714 15.429 36.571l-146.286 877.714q-2.857 16.571-18.286 25.714-8 4.571-17.714 4.571-6.286 0-13.714-2.857l-301.143-122.857-170.286 186.857q-10.286 12-26.857 12-8 0-13.143-2.286-10.857-4-17.143-13.429t-6.286-20.857v-258.286l-269.714-110.286q-21.143-8-22.857-31.429-1.714-22.286 18.286-33.714l950.857-548.571q20-12 38.857 1.143zM812.571 862.857l126.286-756-819.429 472.571 192 78.286 493.143-365.143-273.143 455.429z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "paper-plane-o", - "send-o" - ], - "defaultCode": 61913, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 430, - "order": 947, - "name": "paper-plane-o, send-o", - "prevSize": 14, - "code": 61913 - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 430 - }, - { - "icon": { - "paths": [ - "M877.714 512q0 89.143-34.857 170.286t-93.714 140-140 93.714-170.286 34.857q-98.286 0-186.857-41.429t-150.857-116.857q-4-5.714-3.714-12.857t4.857-11.714l78.286-78.857q5.714-5.143 14.286-5.143 9.143 1.143 13.143 6.857 41.714 54.286 102.286 84t128.571 29.714q59.429 0 113.429-23.143t93.429-62.571 62.571-93.429 23.143-113.429-23.143-113.429-62.571-93.429-93.429-62.571-113.429-23.143q-56 0-107.429 20.286t-91.429 58l78.286 78.857q17.714 17.143 8 39.429-9.714 22.857-33.714 22.857h-256q-14.857 0-25.714-10.857t-10.857-25.714v-256q0-24 22.857-33.714 22.286-9.714 39.429 8l74.286 73.714q61.143-57.714 139.714-89.429t162.571-31.714q89.143 0 170.286 34.857t140 93.714 93.714 140 34.857 170.286zM512 347.429v256q0 8-5.143 13.143t-13.143 5.143h-182.857q-8 0-13.143-5.143t-5.143-13.143v-36.571q0-8 5.143-13.143t13.143-5.143h128v-201.143q0-8 5.143-13.143t13.143-5.143h36.571q8 0 13.143 5.143t5.143 13.143z" - ], - "width": 877.7142857142858, - "attrs": [], - "isMulticolor": false, - "tags": [ - "history" - ], - "defaultCode": 61914, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 431, - "order": 948, - "prevSize": 14, - "code": 61914, - "name": "history" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 431 - }, - { - "icon": { - "paths": [ - "M438.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": [ - "circle-thin" - ], - "defaultCode": 61915, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 432, - "order": 949, - "prevSize": 14, - "code": 61915, - "name": "circle-thin" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 432 - }, - { - "icon": { - "paths": [ - "M961.143 950.857q-25.143 0-75.714-2t-76.286-2q-25.143 0-75.429 2t-75.429 2q-13.714 0-21.143-11.714t-7.429-26q0-17.714 9.714-26.286t22.286-9.714 29.143-4 25.714-8.571q18.857-12 18.857-80l-0.571-223.429q0-12-0.571-17.714-7.429-2.286-28.571-2.286h-385.714q-21.714 0-29.143 2.286-0.571 5.714-0.571 17.714l-0.571 212q0 81.143 21.143 93.714 9.143 5.714 27.429 7.429t32.571 2 25.714 8.571 11.429 26q0 14.857-7.143 27.429t-20.857 12.571q-26.857 0-79.714-2t-79.143-2q-24.571 0-73.143 2t-72.571 2q-13.143 0-20.286-12t-7.143-25.714q0-17.143 8.857-25.714t20.571-10 27.143-4.286 24-8.571q18.857-13.143 18.857-81.714l-0.571-32.571v-464.571q0-1.714 0.286-14.857t0-20.857-0.857-22-2-24-3.714-20.857-6.286-18-9.143-10.286q-8.571-5.714-25.714-6.857t-30.286-1.143-23.429-8-10.286-25.714q0-14.857 6.857-27.429t20.571-12.571q26.286 0 79.143 2t79.143 2q24 0 72.286-2t72.286-2q14.286 0 21.429 12.571t7.143 27.429q0 17.143-9.714 24.857t-22 8.286-28.286 2.286-24.571 7.429q-20 12-20 91.429l0.571 182.857q0 12 0.571 18.286 7.429 1.714 22.286 1.714h399.429q14.286 0 21.714-1.714 0.571-6.286 0.571-18.286l0.571-182.857q0-79.429-20-91.429-10.286-6.286-33.429-7.143t-37.714-7.429-14.571-28.286q0-14.857 7.143-27.429t21.429-12.571q25.143 0 75.429 2t75.429 2q24.571 0 73.714-2t73.714-2q14.286 0 21.429 12.571t7.143 27.429q0 17.143-10 25.143t-22.857 8.286-29.429 1.714-25.143 7.143q-20 13.143-20 92l0.571 538.857q0 68 19.429 80 9.143 5.714 26.286 7.714t30.571 2.571 23.714 8.857 10.286 25.429q0 14.857-6.857 27.429t-20.571 12.571z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "header" - ], - "defaultCode": 61916, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 433, - "order": 950, - "prevSize": 14, - "code": 61916, - "name": "header" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 433 - }, - { - "icon": { - "paths": [ - "M730.286 108v41.714q0 16.571-10.571 34.857t-24.286 18.286q-28.571 0-30.857 0.571-14.857 3.429-18.286 17.714-1.714 6.286-1.714 36.571v658.286q0 14.286-10.286 24.571t-24.571 10.286h-61.714q-14.286 0-24.571-10.286t-10.286-24.571v-696h-81.714v696q0 14.286-10 24.571t-24.857 10.286h-61.714q-14.857 0-24.857-10.286t-10-24.571v-283.429q-84-6.857-140-33.714-72-33.143-109.714-102.286-36.571-66.857-36.571-148 0-94.857 50.286-163.429 50.286-67.429 119.429-90.857 63.429-21.143 238.286-21.143h273.714q14.286 0 24.571 10.286t10.286 24.571z" - ], - "width": 731, - "attrs": [], - "isMulticolor": false, - "tags": [ - "paragraph" - ], - "defaultCode": 61917, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 434, - "order": 951, - "prevSize": 14, - "code": 61917, - "name": "paragraph2" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 434 - }, - { - "icon": { - "paths": [ - "M201.143 804.571v73.143h-201.143v-73.143h201.143zM402.286 731.429q14.857 0 25.714 10.857t10.857 25.714v146.286q0 14.857-10.857 25.714t-25.714 10.857h-146.286q-14.857 0-25.714-10.857t-10.857-25.714v-146.286q0-14.857 10.857-25.714t25.714-10.857h146.286zM493.714 512v73.143h-493.714v-73.143h493.714zM128 219.429v73.143h-128v-73.143h128zM877.714 804.571v73.143h-420.571v-73.143h420.571zM329.143 146.286q14.857 0 25.714 10.857t10.857 25.714v146.286q0 14.857-10.857 25.714t-25.714 10.857h-146.286q-14.857 0-25.714-10.857t-10.857-25.714v-146.286q0-14.857 10.857-25.714t25.714-10.857h146.286zM694.857 438.857q14.857 0 25.714 10.857t10.857 25.714v146.286q0 14.857-10.857 25.714t-25.714 10.857h-146.286q-14.857 0-25.714-10.857t-10.857-25.714v-146.286q0-14.857 10.857-25.714t25.714-10.857h146.286zM877.714 512v73.143h-128v-73.143h128zM877.714 219.429v73.143h-493.714v-73.143h493.714z" - ], - "width": 877.7142857142858, - "attrs": [], - "isMulticolor": false, - "tags": [ - "sliders" - ], - "defaultCode": 61918, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 435, - "order": 952, - "prevSize": 14, - "code": 61918, - "name": "sliders" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 435 - }, - { - "icon": { - "paths": [ - "M694.857 585.143q76 0 129.429 53.429t53.429 129.429-53.429 129.429-129.429 53.429-129.429-53.429-53.429-129.429q0-6.857 1.143-19.429l-205.714-102.857q-52.571 49.143-124.571 49.143-76 0-129.429-53.429t-53.429-129.429 53.429-129.429 129.429-53.429q72 0 124.571 49.143l205.714-102.857q-1.143-12.571-1.143-19.429 0-76 53.429-129.429t129.429-53.429 129.429 53.429 53.429 129.429-53.429 129.429-129.429 53.429q-72 0-124.571-49.143l-205.714 102.857q1.143 12.571 1.143 19.429t-1.143 19.429l205.714 102.857q52.571-49.143 124.571-49.143z" - ], - "width": 877.7142857142858, - "attrs": [], - "isMulticolor": false, - "tags": [ - "share-alt" - ], - "defaultCode": 61920, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 436, - "order": 953, - "prevSize": 14, - "code": 61920, - "name": "share-alt" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 436 - }, - { - "icon": { - "paths": [ - "M731.429 682.857q0-50.286-35.714-86.286t-86-36q-48 0-82.857 33.143l-137.714-68.571q1.143-9.143 1.143-13.143t-1.143-13.143l137.714-68.571q34.857 33.143 82.857 33.143 50.286 0 86-36t35.714-86.286-35.714-86-86-35.714-86.286 35.714-36 86q0 4 1.143 13.143l-137.714 68.571q-35.429-32.571-82.857-32.571-50.286 0-86 35.714t-35.714 86 35.714 86 86 35.714q47.429 0 82.857-32.571l137.714 68.571q-1.143 9.143-1.143 13.143 0 50.286 36 86t86.286 35.714 86-35.714 35.714-86zM877.714 237.714v548.571q0 68-48.286 116.286t-116.286 48.286h-548.571q-68 0-116.286-48.286t-48.286-116.286v-548.571q0-68 48.286-116.286t116.286-48.286h548.571q68 0 116.286 48.286t48.286 116.286z" - ], - "width": 877.7142857142858, - "attrs": [], - "isMulticolor": false, - "tags": [ - "share-alt-square" - ], - "defaultCode": 61921, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 437, - "order": 954, - "prevSize": 14, - "code": 61921, - "name": "share-alt-square" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 437 - }, - { - "icon": { - "paths": [ - "M326.286 336.571q-5.714-14.286-19.429-20t-28 0q-61.714 25.143-109.143 72.571t-72.571 109.143q-5.714 14.286 0 28t20 19.429q7.429 2.857 13.714 2.857 24 0 34.286-22.857 19.429-48 56.286-84.857t84.857-56.286q14.286-6.286 20-20t0-28zM864.571 133.143l26.286 26.286-139.429 138.857 38.857 38.857q10.857 10.857 10.857 26t-10.857 26l-36.571 36.571q50.857 92 50.857 196 0 81.714-31.714 156.286t-85.714 128.571-128.571 85.714-156.286 31.714-156.286-31.714-128.571-85.714-85.714-128.571-31.714-156.286 31.714-156.286 85.714-128.571 128.571-85.714 156.286-31.714q104 0 196 50.857l36.571-36.571q10.857-10.857 26-10.857t26 10.857l38.857 38.857zM869.143 101.143q-5.714 5.714-12.571 5.714-7.429 0-13.143-5.714l-52-51.429q-5.143-5.714-5.143-13.143t5.143-13.143q5.714-5.143 13.143-5.143t13.143 5.143l51.429 52q5.714 5.143 5.714 12.857t-5.714 12.857zM1000.571 232.571q-6.286 5.143-13.143 5.143t-13.143-5.143l-51.429-52q-5.714-5.143-5.714-12.857t5.714-12.857q5.143-5.714 12.857-5.714t12.857 5.714l52 51.429q5.143 5.714 5.143 13.143t-5.143 13.143zM1024 128q0 8-5.143 13.143t-13.143 5.143h-54.857q-8 0-13.143-5.143t-5.143-13.143 5.143-13.143 13.143-5.143h54.857q8 0 13.143 5.143t5.143 13.143zM914.286 18.286v54.857q0 8-5.143 13.143t-13.143 5.143-13.143-5.143-5.143-13.143v-54.857q0-8 5.143-13.143t13.143-5.143 13.143 5.143 5.143 13.143zM1000.571 49.714l-52 51.429q-5.714 5.714-12.571 5.714-7.429 0-13.143-5.714-5.714-5.143-5.714-12.857t5.714-12.857l51.429-52q5.714-5.143 13.143-5.143t13.143 5.143q5.143 5.714 5.143 13.143t-5.143 13.143z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "bomb" - ], - "defaultCode": 61922, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 438, - "order": 955, - "prevSize": 14, - "code": 61922, - "name": "bomb" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 438 - }, - { - "icon": { - "paths": [ - "M348 466.286l164-118.857 164 118.857-62.286 192h-202.857zM512 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.571zM865.714 771.429q85.143-116 85.143-259.429v-1.714l-58.286 50.857-137.143-128 36-184.571 76.571 6.857q-85.714-117.714-222.286-161.143l30.286 70.857-164 90.857-164-90.857 30.286-70.857q-136.571 43.429-222.286 161.143l77.143-6.857 35.429 184.571-137.143 128-58.286-50.857v1.714q0 143.429 85.143 259.429l17.143-75.429 186.286 22.857 79.429 170.286-66.286 39.429q66.857 22.286 137.143 22.286t137.143-22.286l-66.286-39.429 79.429-170.286 186.286-22.857z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "futbol-o", - "soccer-ball-o" - ], - "defaultCode": 61923, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 439, - "order": 956, - "name": "futbol-o, soccer-ball-o", - "prevSize": 14, - "code": 61923 - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 439 - }, - { - "icon": { - "paths": [ - "M256 749.714v109.714q0 8-5.143 13.143t-13.143 5.143h-109.714q-8 0-13.143-5.143t-5.143-13.143v-109.714q0-8 5.143-13.143t13.143-5.143h109.714q8 0 13.143 5.143t5.143 13.143zM146.286 530.286v109.714q0 8-5.143 13.143t-13.143 5.143h-109.714q-8 0-13.143-5.143t-5.143-13.143v-109.714q0-8 5.143-13.143t13.143-5.143h109.714q8 0 13.143 5.143t5.143 13.143zM475.429 749.714v109.714q0 8-5.143 13.143t-13.143 5.143h-109.714q-8 0-13.143-5.143t-5.143-13.143v-109.714q0-8 5.143-13.143t13.143-5.143h109.714q8 0 13.143 5.143t5.143 13.143zM365.714 530.286v109.714q0 8-5.143 13.143t-13.143 5.143h-109.714q-8 0-13.143-5.143t-5.143-13.143v-109.714q0-8 5.143-13.143t13.143-5.143h109.714q8 0 13.143 5.143t5.143 13.143zM37.714 438.857q-16 0-26.857-10.857t-10.857-26.286v-73.714h293.714v73.714q0 15.429-10.857 26.286t-26.286 10.857h-218.857zM694.857 749.714v109.714q0 8-5.143 13.143t-13.143 5.143h-109.714q-8 0-13.143-5.143t-5.143-13.143v-109.714q0-8 5.143-13.143t13.143-5.143h109.714q8 0 13.143 5.143t5.143 13.143zM585.143 530.286v109.714q0 8-5.143 13.143t-13.143 5.143h-109.714q-8 0-13.143-5.143t-5.143-13.143v-109.714q0-8 5.143-13.143t13.143-5.143h109.714q8 0 13.143 5.143t5.143 13.143zM914.286 749.714v109.714q0 8-5.143 13.143t-13.143 5.143h-109.714q-8 0-13.143-5.143t-5.143-13.143v-109.714q0-8 5.143-13.143t13.143-5.143h109.714q8 0 13.143 5.143t5.143 13.143zM804.571 530.286v109.714q0 8-5.143 13.143t-13.143 5.143h-109.714q-8 0-13.143-5.143t-5.143-13.143v-109.714q0-8 5.143-13.143t13.143-5.143h109.714q8 0 13.143 5.143t5.143 13.143zM1024 297.143v7.429h-293.714v-5.714q0-59.429-218.286-58.286-218.286 0.571-218.286 58.286v5.714h-293.714v-7.429q0-9.714 4.857-24.571t19.429-36.571 37.429-43.143 63.143-43.429 91.429-38.571 128-27.143 167.714-10.571 167.429 10.571 128 27.143 91.714 38.571 63.143 43.429 37.429 43.143 19.429 36.571 4.857 24.571zM1024 530.286v109.714q0 8-5.143 13.143t-13.143 5.143h-109.714q-8 0-13.143-5.143t-5.143-13.143v-109.714q0-8 5.143-13.143t13.143-5.143h109.714q8 0 13.143 5.143t5.143 13.143zM1024 328v73.714q0 15.429-10.857 26.286t-26.286 10.857h-219.429q-15.429 0-26.286-10.857t-10.857-26.286v-73.714h293.714z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "tty" - ], - "defaultCode": 61924, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 440, - "order": 957, - "prevSize": 14, - "code": 61924, - "name": "tty" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 440 - }, - { - "icon": { - "paths": [ - "M402.286 182.857v438.857q0 14.857-10.857 25.714t-25.714 10.857v329.143q0 14.857-10.857 25.714t-25.714 10.857h-292.571q-14.857 0-25.714-10.857t-10.857-25.714v-292.571l142.286-498.857q4-13.143 17.714-13.143h242.286zM585.143 182.857v402.286h-146.286v-402.286h146.286zM1024 694.857v292.571q0 14.857-10.857 25.714t-25.714 10.857h-292.571q-14.857 0-25.714-10.857t-10.857-25.714v-329.143q-14.857 0-25.714-10.857t-10.857-25.714v-438.857h242.286q13.714 0 17.714 13.143zM420.571 18.286v128h-201.143v-128q0-8 5.143-13.143t13.143-5.143h164.571q8 0 13.143 5.143t5.143 13.143zM804.571 18.286v128h-201.143v-128q0-8 5.143-13.143t13.143-5.143h164.571q8 0 13.143 5.143t5.143 13.143z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "binoculars" - ], - "defaultCode": 61925, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 441, - "order": 958, - "prevSize": 14, - "code": 61925, - "name": "binoculars" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 441 - }, - { - "icon": { - "paths": [ - "M1002.857 258.857q21.143 21.143 21.143 51.429t-21.143 52l-229.143 228.571 85.714 85.714-91.429 91.429q-93.143 93.143-222.571 106.571t-235.143-57.429l-206.857 206.857h-103.429v-103.429l206.857-206.857q-70.857-105.714-57.429-235.143t106.571-222.571l91.429-91.429 85.714 85.714 228.571-229.143q21.714-21.143 52-21.143t51.429 21.143 21.143 51.714-21.143 51.714l-228.571 229.143 133.714 133.714 229.143-228.571q21.714-21.143 52-21.143t51.429 21.143z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "plug" - ], - "defaultCode": 61926, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 442, - "order": 959, - "prevSize": 14, - "code": 61926, - "name": "plug" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 442 - }, - { - "icon": { - "paths": [ - "M498.857 422.857q0 47.429-36.286 81.429t-87.143 34-87.143-34-36.286-81.429q0-48 36.286-81.714t87.143-33.714 87.143 33.714 36.286 81.714zM785.714 422.857q0 47.429-36 81.429t-87.429 34q-50.857 0-87.143-34t-36.286-81.429q0-48 36.286-81.714t87.143-33.714q51.429 0 87.429 33.714t36 81.714zM914.286 525.714v-381.143q0-49.714-18.286-70.571t-63.429-20.857h-635.429q-47.429 0-64.286 19.429t-16.857 72v384.571q24.571 13.143 50.571 22.857t46.286 16 46.286 10.571 40.571 6.286 40 2.286 33.429 0.286 32.286-1.143 25.429-1.143q38.857-0.571 54.286 15.429 3.429 3.429 5.714 5.143 14.857 14.286 34.857 29.143 4-52 67.429-49.714 2.857 0 20.857 0.857t24.571 1.143 26 0.571 30.286-0.571 31.143-2.571 34.857-4.857 35.429-7.714 38.286-11.143 38.571-15.429 41.143-19.714zM1007.429 522.857q-69.143 85.143-212.571 144 48 162.857-13.143 265.714-37.714 64.571-104.571 84.571-59.429 18.286-104-8.571-49.143-29.143-46.857-93.714l-0.571-186.286v-0.571q-4.571-1.143-14-3.429t-13.429-2.857l-0.571 193.143q2.286 65.143-47.429 93.714-45.143 26.857-104.571 8.571-66.857-20.571-104-85.714-60-102.857-12.571-264.571-143.429-58.857-212.571-144-14.286-21.143-2.286-36t34.286 0.571q1.714 1.143 6.286 4t6.286 4.571v-396.571q0-41.143 26.857-70.286t65.143-29.143h718.286q38.286 0 65.143 29.143t26.857 70.286v396.571l12-8.571q22.286-15.429 34.286-0.571t-2.286 36z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "slideshare" - ], - "defaultCode": 61927, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 443, - "order": 960, - "prevSize": 14, - "code": 61927, - "name": "slideshare" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 443 - }, - { - "icon": { - "paths": [ - "M512 248v248h-82.857v-248h82.857zM739.429 248v248h-82.857v-248h82.857zM739.429 682.286l144.571-145.143v-454.286h-682.286v599.429h186.286v124l124-124h227.429zM966.857 0v578.857l-248 248h-186.286l-124 124h-124v-124h-227.429v-661.714l62.286-165.143h847.429z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "twitch" - ], - "defaultCode": 61928, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 444, - "order": 961, - "prevSize": 14, - "code": 61928, - "name": "twitch" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 444 - }, - { - "icon": { - "paths": [ - "M441.714 753.714v72.571q-0.571 166.857-3.429 174.286-6.857 18.286-29.143 22.857-30.857 5.143-103.714-21.714t-92.857-50.857q-7.429-8.571-9.714-20.571-0.571-6.857 2.286-14.857 2.286-5.714 19.429-26.857t103.429-123.429q0.571 0 34.286-40 8.571-10.857 22.571-14t28.286 2q13.714 5.714 21.429 16.571t7.143 24zM356.571 610.286q-1.714 31.429-29.714 40l-68.571 22.286q-157.143 50.286-166.857 50.286-20-1.143-30.857-20.571-6.857-14.286-9.714-42.857-4.571-43.429 0.571-95.143t17.143-71.143 32-18.286q7.429 0 115.429 44 40 16.571 65.714 26.857l48 19.429q13.143 5.143 20.286 17.429t6.571 27.714zM828.571 780q-4 30.857-52.286 92t-77.429 72.571q-21.143 8-36-4-8-5.714-105.143-164l-26.857-44q-8-12-6.571-26.286t11.143-26.286q20-24.571 47.429-14.857 0.571 0.571 68 22.857 116 37.714 138.286 45.429t26.857 11.714q16 12.571 12.571 34.857zM444.571 418.857q2.857 58.286-30.857 69.714-33.143 9.714-65.143-40.571l-216-341.714q-4.571-20 10.857-35.429 23.429-24.571 118.571-51.143t128.286-18q22.857 5.714 28 25.714 1.714 10.286 12.571 174.571t13.714 216.857zM822.857 480.571q1.714 22.286-14.857 33.714-8.571 5.714-188 49.143-38.286 8.571-52 13.143l0.571-1.143q-13.143 3.429-26.286-2.286t-21.143-18.286q-17.143-26.857 0-49.714 0.571-0.571 42.857-58.286 71.429-97.714 85.714-116.571t19.429-22.286q16-10.857 37.143-1.143 27.429 13.143 70.286 76.286t46.286 95.714v1.714z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "yelp" - ], - "defaultCode": 61929, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 445, - "order": 962, - "prevSize": 14, - "code": 61929, - "name": "yelp" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 445 - }, - { - "icon": { - "paths": [ - "M585.143 292.571h-219.429v219.429h219.429v-219.429zM658.286 658.286v73.143h-365.714v-73.143h365.714zM658.286 219.429v365.714h-365.714v-365.714h365.714zM1024 658.286v73.143h-292.571v-73.143h292.571zM1024 512v73.143h-292.571v-73.143h292.571zM1024 365.714v73.143h-292.571v-73.143h292.571zM1024 219.429v73.143h-292.571v-73.143h292.571zM146.286 768v-548.571h-73.143v548.571q0 14.857 10.857 25.714t25.714 10.857 25.714-10.857 10.857-25.714zM1097.143 768v-621.714h-877.714v621.714q0 18.857-6.286 36.571h847.429q14.857 0 25.714-10.857t10.857-25.714zM1170.286 73.143v694.857q0 45.714-32 77.714t-77.714 32h-950.857q-45.714 0-77.714-32t-32-77.714v-621.714h146.286v-73.143h1024z" - ], - "width": 1170, - "attrs": [], - "isMulticolor": false, - "tags": [ - "newspaper-o" - ], - "defaultCode": 61930, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 446, - "order": 963, - "prevSize": 14, - "code": 61930, - "name": "newspaper-o" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 446 - }, - { - "icon": { - "paths": [ - "M585.143 870.286q-11.429 0-53.143-42t-41.714-53.429q0-18.286 35.714-30.857t59.143-12.571 59.143 12.571 35.714 30.857q0 11.429-41.714 53.429t-53.143 42zM739.429 715.429q-1.143 0-22.857-14.286t-58-28.571-73.429-14.286-73.429 14.286-57.714 28.571-23.143 14.286q-10.286 0-53.429-42.857t-43.143-53.143q0-7.429 5.714-13.143 44.571-44 112-69.143t133.143-25.143 133.143 25.143 112 69.143q5.714 5.714 5.714 13.143 0 10.286-43.143 53.143t-53.429 42.857zM895.429 560q-6.286 0-13.143-4.571-77.714-60-144-88.286t-153.143-28.286q-48.571 0-97.429 12.571t-85.143 30.286-64.857 35.429-45.143 30.286-17.714 12.571q-9.714 0-52.571-42.857t-42.857-53.143q0-6.857 5.714-12.571 75.429-75.429 182.857-117.143t217.143-41.714 217.143 41.714 182.857 117.143q5.714 5.714 5.714 12.571 0 10.286-42.857 53.143t-52.571 42.857zM1050.286 405.143q-6.286 0-12.571-5.143-102.286-89.714-212.286-135.143t-240.286-45.429-240.286 45.429-212.286 135.143q-6.286 5.143-12.571 5.143-9.714 0-52.857-42.857t-43.143-53.143q0-7.429 5.714-13.143 106.857-106.286 254.286-164.571t301.143-58.286 301.143 58.286 254.286 164.571q5.714 5.714 5.714 13.143 0 10.286-43.143 53.143t-52.857 42.857z" - ], - "width": 1170, - "attrs": [], - "isMulticolor": false, - "tags": [ - "wifi" - ], - "defaultCode": 61931, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 447, - "order": 964, - "prevSize": 14, - "code": 61931, - "name": "wifi" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 447 - }, - { - "icon": { - "paths": [ - "M219.429 877.714q0-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.714zM438.857 877.714q0-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.714zM219.429 658.286q0-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.714zM658.286 877.714q0-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.714zM438.857 658.286q0-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.714zM219.429 438.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.714zM658.286 658.286q0-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.714zM438.857 438.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.714zM877.714 877.714v-219.429q0-29.714-21.714-51.429t-51.429-21.714-51.429 21.714-21.714 51.429v219.429q0 29.714 21.714 51.429t51.429 21.714 51.429-21.714 21.714-51.429zM658.286 438.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.714zM877.714 256v-146.286q0-14.857-10.857-25.714t-25.714-10.857h-731.429q-14.857 0-25.714 10.857t-10.857 25.714v146.286q0 14.857 10.857 25.714t25.714 10.857h731.429q14.857 0 25.714-10.857t10.857-25.714zM877.714 438.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.714zM950.857 73.143v877.714q0 29.714-21.714 51.429t-51.429 21.714h-804.571q-29.714 0-51.429-21.714t-21.714-51.429v-877.714q0-29.714 21.714-51.429t51.429-21.714h804.571q29.714 0 51.429 21.714t21.714 51.429z" - ], - "width": 950.8571428571429, - "attrs": [], - "isMulticolor": false, - "tags": [ - "calculator" - ], - "defaultCode": 61932, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 448, - "order": 965, - "prevSize": 14, - "code": 61932, - "name": "calculator" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 448 - }, - { - "icon": { - "paths": [ - "M868 369.143q10.286 48-2.286 116.571-49.714 253.714-322.857 253.714h-25.143q-14.286 0-25.143 9.429t-13.714 24.286l-2.286 10.857-31.429 197.714-1.143 8.571q-2.857 14.857-14 24.286t-25.429 9.429h-143.429q-12 0-18.857-8.571t-5.143-20.571q5.143-32 15.143-96t15.143-96 15.429-95.714 15.429-95.714q2.857-21.143 24.571-21.143h74.857q76 1.143 134.857-12 100-22.286 164-82.286 58.286-54.286 88.571-140.571 13.714-40 20-76 0.571-3.429 1.429-4.286t2-0.571 3.429 2q45.143 33.714 56 92.571zM769.714 208q0 61.143-26.286 134.857-45.714 133.143-172.571 180-64.571 22.857-144 24 0 0.571-51.429 0.571l-51.429-0.571q-57.143 0-67.429 54.857-1.143 4.571-48.571 302.857-0.571 5.714-6.857 5.714h-168.571q-12.571 0-20.857-9.429t-6.571-22l132.571-840.571q2.857-16.571 15.714-27.429t29.429-10.857h341.714q19.429 0 55.714 7.429t63.714 18.286q61.143 23.429 93.429 70.286t32.286 112z" - ], - "width": 877.7142857142858, - "attrs": [], - "isMulticolor": false, - "tags": [ - "paypal" - ], - "defaultCode": 61933, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 449, - "order": 966, - "prevSize": 14, - "code": 61933, - "name": "paypal" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 449 - }, - { - "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": 967, - "prevSize": 14, - "code": 61934, - "name": "google-wallet" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 450 - }, - { - "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": { - "id": 451, - "order": 968, - "prevSize": 14, - "code": 61936, - "name": "cc-visa" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 451 - }, - { - "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": { - "id": 452, - "order": 969, - "prevSize": 14, - "code": 61937, - "name": "cc-mastercard" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 452 - }, - { - "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": { - "id": 453, - "order": 970, - "prevSize": 14, - "code": 61938, - "name": "cc-discover" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 453 - }, - { - "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": { - "id": 454, - "order": 971, - "prevSize": 14, - "code": 61939, - "name": "cc-amex" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 454 - }, - { - "icon": { - "paths": [ - "M425.714 517.714q0 21.143-14.571 35.143t-35.714 14q-16.571 0-26.571-9.143t-10-25.143q0-21.143 14.286-35.714t35.429-14.571q16 0 26.571 9.429t10.571 26zM874.286 432.571q0 24-12.571 32.571t-37.714 8.571l-18.286 0.571 9.714-61.143q1.143-6.286 7.429-6.286h10.286q12.571 0 20 1.143t14.286 7.143 6.857 17.429zM1074.857 517.714q0 20.571-14.571 34.857t-35.143 14.286q-16.571 0-26.857-9.143t-10.286-25.143q0-21.143 14.286-35.714t35.429-14.571q16 0 26.571 9.429t10.571 26zM293.143 420q0-33.714-22-48.857t-57.429-15.143h-91.429q-10.857 0-12 10.857l-37.143 233.143q-0.571 3.429 1.714 6.286t5.714 2.857h43.429q11.429 0 12.571-10.857l10.286-62.857q0.571-4.571 4-7.429t8.571-3.714 9.714-0.857 10.857 0.571 8 0.571q49.143 0 77.143-27.714t28-76.857zM469.714 598.286l23.429-149.143q0.571-3.429-1.714-6.286t-5.714-2.857h-43.429q-8 0-9.714 18.857-15.429-22.857-54.286-22.857-41.143 0-70 30.857t-28.857 72.571q0 33.714 19.714 53.714t52.857 20q16 0 33.143-6.857t27.429-18.286q-2.286 6.857-2.286 12 0 9.143 7.429 9.143h39.429q10.857 0 12.571-10.857zM725.143 448q0-2.857-2.286-5.429t-5.143-2.571h-44q-6.286 0-10.286 5.714l-60.571 89.143-25.143-85.714q-2.857-9.143-12.571-9.143h-42.857q-2.857 0-5.143 2.571t-2.286 5.429q0 1.143 11.143 33.714t24 70.286 13.429 40q-46.857 64-46.857 68.571 0 7.429 7.429 7.429h44q6.286 0 10.286-5.714l145.714-210.286q1.143-1.143 1.143-4zM942.286 420q0-33.714-22-48.857t-57.429-15.143h-90.857q-11.429 0-12.571 10.857l-37.143 233.143q-0.571 3.429 1.714 6.286t5.714 2.857h46.857q6.857 0 9.143-7.429l10.286-66.286q0.571-4.571 4-7.429t8.571-3.714 9.714-0.857 10.857 0.571 8 0.571q49.143 0 77.143-27.714t28-76.857zM1118.857 598.286l23.429-149.143q0.571-3.429-1.714-6.286t-5.714-2.857h-43.429q-8 0-9.714 18.857-14.857-22.857-54.286-22.857-41.143 0-70 30.857t-28.857 72.571q0 33.714 19.714 53.714t52.857 20q16.571 0 33.714-6.857t26.857-18.286q0 0.571-1.143 5.143t-1.143 6.857q0 9.143 7.429 9.143h39.429q10.857 0 12.571-10.857zM1243.429 364.571v-0.571q0-8-7.429-8h-42.286q-6.286 0-7.429 6.286l-37.143 237.714-0.571 1.143q0 2.857 2.286 5.429t5.714 2.571h37.714q10.857 0 12-10.857zM224 441.143q-2.857 20-14.857 26.286t-34.286 6.286l-18.857 0.571 9.714-61.143q1.143-6.286 7.429-6.286h10.857q22.857 0 33.143 6.571t6.857 27.714zM1316.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": { - "id": 455, - "order": 972, - "prevSize": 14, - "code": 61940, - "name": "cc-paypal" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 455 - }, - { - "icon": { - "paths": [ - "M912.571 516q0 39.429-12 60.571-10.857 20-29.714 20-13.143 0-23.429-5.143v-128q16.571-17.143 32.571-17.143 32.571 0 32.571 69.714zM1162.857 495.429h-62.857q3.429-56 32-56 29.143 0 30.857 56zM272 572.571q0-33.714-18.857-52.286t-57.714-32.857q-20.571-7.429-29.714-13.714t-9.143-14.286q0-14.857 21.714-14.857 33.143 0 70.857 18.857l10.286-64q-38.286-18.286-85.143-18.286-44 0-70.286 21.714-27.429 22.286-27.429 62.286 0 33.143 18.571 51.714t56.857 32.286q22.286 8 31.143 14.571t8.857 15.714q0 17.714-27.429 17.714-16.571 0-40-7.143t-41.143-17.429l-10.286 64.571q41.143 23.429 96 23.429 46.286 0 73.714-21.143 29.143-23.429 29.143-66.857zM440.571 449.714l10.857-63.429h-54.857v-77.143l-73.714 12-10.286 65.143-26.286 4.571-9.714 58.857h35.429v125.143q0 48 25.143 68.571 21.714 17.143 63.429 17.143 18.286 0 45.143-6.286v-67.429q-18.286 4-25.143 4-24 0-24-28.571v-112.571h44zM621.143 464v-79.429q-8.571-1.714-16-1.714-18.286 0-31.714 9.143t-19.143 26.286l-5.714-32h-74.857v269.143h85.714v-174.857q14.857-17.714 46.857-17.714 9.143 0 14.857 1.143zM642.286 655.429h85.714v-269.143h-85.714v269.143zM997.714 513.143q0-69.714-25.714-102.286-22.857-29.714-63.429-29.714-36.571 0-66.857 32l-4.571-26.857h-75.429v368.571l85.714-14.286v-86.286q20.571 6.286 38.857 6.286 47.429 0 76.571-32 34.857-37.143 34.857-115.429zM730.286 314.286q0-18.857-13.143-32t-32-13.143-32 13.143-13.143 32 13.143 32.286 32 13.429 32-13.429 13.143-32.286zM1243.429 518.286q0-64.571-27.429-100.571-28.571-36.571-82.286-36.571-54.857 0-86.571 37.714t-31.714 102.857q0 73.143 36 107.429 31.429 31.429 92 31.429 57.714 0 91.429-22.857l-9.143-58.857q-32.571 17.714-73.143 17.714-24.571 0-36-10.857-13.143-10.857-16-37.714h141.714q1.143-8 1.143-29.714zM1316.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-stripe" - ], - "defaultCode": 61941, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 456, - "order": 973, - "prevSize": 14, - "code": 61941, - "name": "cc-stripe" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 456 - }, - { - "icon": { - "paths": [ - "M890.286 486.857q34.857 203.429 170.286 317.714 0 29.714-21.714 51.429t-51.429 21.714h-256q0 60.571-42.857 103.429t-103.429 42.857-103.143-42.571-43.143-103.143zM585.143 978.286q9.143 0 9.143-9.143t-9.143-9.143q-33.714 0-58-24.286t-24.286-58q0-9.143-9.143-9.143t-9.143 9.143q0 41.714 29.429 71.143t71.143 29.429zM1157.714 64q4.571 5.714 4.286 13.429t-6 12.857l-1069.714 926.857q-5.714 4.571-13.429 4t-12.286-6.286l-48-54.857q-4.571-5.714-4.286-13.429t6-12.286l106.286-92q-10.857-18.286-10.857-37.714 28.571-24 52-50.286t48.571-68.286 42.571-90.571 28.571-117.714 11.143-148.571q0-86.857 66.857-161.429t175.429-90.571q-4.571-10.857-4.571-22.286 0-22.857 16-38.857t38.857-16 38.857 16 16 38.857q0 11.429-4.571 22.286 70.857 10.286 125.143 47.143t84.571 90l238.857-207.429q5.714-4.571 13.429-4t12.286 6.286z" - ], - "width": 1170, - "attrs": [], - "isMulticolor": false, - "tags": [ - "bell-slash" - ], - "defaultCode": 61942, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 457, - "order": 974, - "prevSize": 14, - "code": 61942, - "name": "bell-slash" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 457 - }, - { - "icon": { - "paths": [ - "M594.286 969.143q0-9.143-9.143-9.143-33.714 0-58-24.286t-24.286-58q0-9.143-9.143-9.143t-9.143 9.143q0 41.714 29.429 71.143t71.143 29.429q9.143 0 9.143-9.143zM287.429 697.714l501.143-434.286q-24-50.286-75.714-83.714t-127.714-33.429q-53.143 0-96.857 18t-69.429 46-39.429 58.857-13.714 60q0 219.429-78.286 368.571zM1060.571 804.571q0 29.714-21.714 51.429t-51.429 21.714h-256q0 60.571-42.857 103.429t-103.429 42.857-103.143-42.571-43.143-103.143l85.143-73.714h432.571q-94.857-106.857-129.714-262.286l63.429-55.429q34.857 203.429 170.286 317.714zM1109.714 9.143l48 54.857q4.571 5.714 4.286 13.429t-6 12.857l-1069.714 926.857q-5.714 4.571-13.429 4t-12.286-6.286l-48-54.857q-4.571-5.714-4.286-13.429t6-12.286l106.286-92q-10.857-18.286-10.857-37.714 28.571-24 52-50.286t48.571-68.286 42.571-90.571 28.571-117.714 11.143-148.571q0-86.857 66.857-161.429t175.429-90.571q-4.571-10.857-4.571-22.286 0-22.857 16-38.857t38.857-16 38.857 16 16 38.857q0 11.429-4.571 22.286 70.857 10.286 125.143 47.143t84.571 90l238.857-207.429q5.714-4.571 13.429-4t12.286 6.286z" - ], - "width": 1170, - "attrs": [], - "isMulticolor": false, - "tags": [ - "bell-slash-o" - ], - "defaultCode": 61943, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 458, - "order": 975, - "prevSize": 14, - "code": 61943, - "name": "bell-slash-o" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 458 - }, - { - "icon": { - "paths": [ - "M292.571 786.286v-402.286q0-8-5.143-13.143t-13.143-5.143h-36.571q-8 0-13.143 5.143t-5.143 13.143v402.286q0 8 5.143 13.143t13.143 5.143h36.571q8 0 13.143-5.143t5.143-13.143zM438.857 786.286v-402.286q0-8-5.143-13.143t-13.143-5.143h-36.571q-8 0-13.143 5.143t-5.143 13.143v402.286q0 8 5.143 13.143t13.143 5.143h36.571q8 0 13.143-5.143t5.143-13.143zM585.143 786.286v-402.286q0-8-5.143-13.143t-13.143-5.143h-36.571q-8 0-13.143 5.143t-5.143 13.143v402.286q0 8 5.143 13.143t13.143 5.143h36.571q8 0 13.143-5.143t5.143-13.143zM274.286 219.429h256l-27.429-66.857q-4-5.143-9.714-6.286h-181.143q-5.714 1.143-9.714 6.286zM804.571 237.714v36.571q0 8-5.143 13.143t-13.143 5.143h-54.857v541.714q0 47.429-26.857 82t-64.571 34.571h-475.429q-37.714 0-64.571-33.429t-26.857-80.857v-544h-54.857q-8 0-13.143-5.143t-5.143-13.143v-36.571q0-8 5.143-13.143t13.143-5.143h176.571l40-95.429q8.571-21.143 30.857-36t45.143-14.857h182.857q22.857 0 45.143 14.857t30.857 36l40 95.429h176.571q8 0 13.143 5.143t5.143 13.143z" - ], - "width": 805, - "attrs": [], - "isMulticolor": false, - "tags": [ - "trash" - ], - "defaultCode": 61944, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 459, - "order": 976, - "prevSize": 14, - "code": 61944, - "name": "trash" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 459 - }, - { - "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": 977, - "prevSize": 14, - "code": 61945, - "name": "copyright" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 460 - }, - { - "icon": { - "paths": [ - "M555.429 442.857q0-61.714-30.571-96.571t-84.286-34.857q-36 0-70.857 17.429t-62.857 48.286-45.429 78.286-17.429 102.857q0 64 30.571 98.857t86 34.857q54.857 0 100.571-38t70-94.857 24.286-116.286zM877.714 512q0 63.429-21.143 112.571t-56.286 77.143-75.143 42.571-82.857 15.714q-3.429 0-8.857 0.286t-9.429 0.286q-54.286 0-81.143-30.286-16-18.857-18.857-47.429-29.714 37.714-75.143 62.857t-99.143 25.143q-92 0-142.571-54.571t-50.571-154q0-89.714 37.714-165.714t102.286-120.286 140.571-44.286q49.714 0 88.571 20.286t60.571 56.857l1.143-10.857 6.286-32q0.571-3.429 3.143-6.857t5.429-3.429h67.429q2.857 0 7.429 6.286 2.857 2.857 1.714 9.143l-68.571 350.857q-2.857 13.714-2.857 27.429 0 22.286 7.143 29.714t25.429 7.429q16-0.571 32.571-3.143t41.714-13.714 44-28.571 32.571-51.143 13.714-78.286q0-166.857-99.429-266.286t-266.286-99.429q-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.143q130.286 0 231.429-82.286 6.286-5.143 13.714-4.571t12 6.857l23.429 28q4.571 6.857 4 13.714-1.143 7.429-6.857 12.571-58.286 47.429-130 73.143t-147.714 25.714q-89.143 0-170.286-34.857t-140-93.714-93.714-140-34.857-170.286 34.857-170.286 93.714-140 140-93.714 170.286-34.857q196.571 0 317.714 121.143t121.143 317.714z" - ], - "width": 877.7142857142858, - "attrs": [], - "isMulticolor": false, - "tags": [ - "at" - ], - "defaultCode": 61946, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 461, - "order": 978, - "prevSize": 14, - "code": 61946, - "name": "at" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 461 - }, - { - "icon": { - "paths": [ - "M970.286 53.714q53.714 53.714 53.714 129.429t-53.714 128.857l-128.571 127.429 59.429 59.429q5.714 5.714 5.714 13.143t-5.714 13.143l-120 120q-5.714 5.714-13.143 5.714t-13.143-5.714l-60-60-344.571 344.571q-21.143 21.143-51.429 21.143h-116l-146.286 73.143-36.571-36.571 73.143-146.286v-116q0-30.286 21.143-51.429l344.571-344.571-60-60q-5.714-5.714-5.714-13.143t5.714-13.143l120-120q5.714-5.714 13.143-5.714t13.143 5.714l59.429 59.429 127.429-128.571q53.143-53.714 128.857-53.714t129.429 53.714zM292.571 841.143l329.143-329.143-109.714-109.714-329.143 329.143v109.714h109.714z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "eyedropper" - ], - "defaultCode": 61947, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 462, - "order": 979, - "prevSize": 14, - "code": 61947, - "name": "eyedropper" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 462 - }, - { - "icon": { - "paths": [ - "M922.857 0q40 0 70 26.571t30 66.571q0 36-25.714 86.286-189.714 359.429-265.714 429.714-55.429 52-124.571 52-72 0-123.714-52.857t-51.714-125.429q0-73.143 52.571-121.143l364.571-330.857q33.714-30.857 74.286-30.857zM403.429 590.857q22.286 43.429 60.857 74.286t86 43.429l0.571 40.571q2.286 121.714-74 198.286t-199.143 76.571q-70.286 0-124.571-26.571t-87.143-72.857-49.429-104.571-16.571-125.714q4 2.857 23.429 17.143t35.429 25.429 33.714 20.857 26.286 9.714q23.429 0 31.429-21.143 14.286-37.714 32.857-64.286t39.714-43.429 50.286-27.143 58.857-14.571 71.429-6z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "paint-brush" - ], - "defaultCode": 61948, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 463, - "order": 980, - "prevSize": 14, - "code": 61948, - "name": "paint-brush" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 463 - }, - { - "icon": { - "paths": [ - "M1024 804.571v219.429h-1024v-219.429q25.714 0 48.571-8t33.714-15.714 26.857-21.429q17.143-15.429 29.429-21.714t32.286-6.286 31.714 6.286 30 21.714q16.571 14.286 26.857 21.714t33.143 15.429 49.143 8q25.714 0 48.571-8.286t33.143-15.429 27.429-21.429q12-10.857 18.571-15.429t17.714-8.571 24.857-4q20 0 32.286 6.286t29.429 21.714q16 13.714 26.857 21.429t33.714 15.714 48.571 8 48.571-8 33.714-15.714 26.857-21.429q17.143-15.429 29.429-21.714t32.286-6.286q19.429 0 31.714 6.286t29.429 21.714q16 13.714 26.857 21.429t33.714 15.714 48.571 8zM1024 621.714v109.714q-20 0-31.714-6.286t-30-21.714q-16.571-14.286-26.857-21.714t-33.143-15.429-48.571-8q-26.286 0-49.143 8t-33.143 15.429-26.857 21.714q-12.571 10.857-18.857 15.429t-17.714 8.571-25.143 4q-20 0-32.286-6.286t-29.429-21.714q-16.571-14.286-26.857-21.714t-33.143-15.429-49.143-8q-25.714 0-48.571 8.286t-33.143 15.429-27.429 21.429q-12 10.857-18.571 15.429t-17.714 8.571-24.857 4q-20 0-32.286-6.286t-29.429-21.714q-16-13.714-26.857-21.429t-33.714-15.714-48.571-8q-26.286 0-49.143 8t-33.143 15.429-26.857 21.714q-17.143 15.429-29.429 21.714t-32.286 6.286v-109.714q0-45.714 32-77.714t77.714-32h36.571v-256h146.286v256h146.286v-256h146.286v256h146.286v-256h146.286v256h36.571q45.714 0 77.714 32t32 77.714zM292.571 128q0 44-20.571 67.714t-52.571 23.714q-30.286 0-51.714-21.429t-21.429-51.714q0-16.571 5.429-29.143t13.429-19.429 17.714-16 17.714-18 13.429-25.429 5.429-38.286q21.714 0 47.429 42.286t25.714 85.714zM585.143 128q0 44-20.571 67.714t-52.571 23.714q-30.286 0-51.714-21.429t-21.429-51.714q0-16.571 5.429-29.143t13.429-19.429 17.714-16 17.714-18 13.429-25.429 5.429-38.286q21.714 0 47.429 42.286t25.714 85.714zM877.714 128q0 44-20.571 67.714t-52.571 23.714q-30.286 0-51.714-21.429t-21.429-51.714q0-16.571 5.429-29.143t13.429-19.429 17.714-16 17.714-18 13.429-25.429 5.429-38.286q21.714 0 47.429 42.286t25.714 85.714z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "birthday-cake" - ], - "defaultCode": 61949, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 464, - "order": 981, - "prevSize": 14, - "code": 61949, - "name": "birthday-cake" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 464 - }, - { - "icon": { - "paths": [ - "M1170.286 877.714v73.143h-1170.286v-877.714h73.143v804.571h1097.143zM950.857 292.571l146.286 512h-950.857v-329.143l256-329.143 329.143 329.143z" - ], - "width": 1170, - "attrs": [], - "isMulticolor": false, - "tags": [ - "area-chart" - ], - "defaultCode": 61950, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 465, - "order": 982, - "prevSize": 14, - "code": 61950, - "name": "area-chart" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 465 - }, - { - "icon": { - "paths": [ - "M438.857 508.571l312 312q-60.571 61.714-141.429 96t-170.571 34.286q-119.429 0-220.286-58.857t-159.714-159.714-58.857-220.286 58.857-220.286 159.714-159.714 220.286-58.857v435.429zM545.714 512h441.714q0 89.714-34.286 170.571t-96 141.429zM950.857 438.857h-438.857v-438.857q119.429 0 220.286 58.857t159.714 159.714 58.857 220.286z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "pie-chart" - ], - "defaultCode": 61952, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 466, - "order": 983, - "prevSize": 14, - "code": 61952, - "name": "pie-chart" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 466 - }, - { - "icon": { - "paths": [ - "M1170.286 877.714v73.143h-1170.286v-877.714h73.143v804.571h1097.143zM1097.143 164.571v248.571q0 12-11.143 16.857t-20.286-4.286l-69.143-69.143-361.714 361.714q-5.714 5.714-13.143 5.714t-13.143-5.714l-133.143-133.143-237.714 237.714-109.714-109.714 334.286-334.286q5.714-5.714 13.143-5.714t13.143 5.714l133.143 133.143 265.143-265.143-69.143-69.143q-9.143-9.143-4.286-20.286t16.857-11.143h248.571q8 0 13.143 5.143t5.143 13.143z" - ], - "width": 1170, - "attrs": [], - "isMulticolor": false, - "tags": [ - "line-chart" - ], - "defaultCode": 61953, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 467, - "order": 984, - "prevSize": 14, - "code": 61953, - "name": "line-chart" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 467 - }, - { - "icon": { - "paths": [ - "M738.286 402.286q0 3.429 5.714 23.429 5.714 16.571 14.286 28.286t23.429 19.429 25.143 11.429 31.429 9.429q185.714 52 185.714 189.714 0 83.429-60.286 138.571t-145.429 55.143q-33.714 0-63.714-10.571t-52.286-26-44-42.571-36-50-30.571-59.143-24.857-58.857-22.571-60.857-20.286-54.286q-18.286-46.286-35.143-76.286t-42-55.143-59.429-36.571-81.143-11.429q-54.857 0-104.571 31.714t-78.857 82.571-29.143 105.714q0 91.429 60.857 159.714t150.571 68.286q101.143 0 147.429-54.286 32-36 47.429-66.286l48 86.857q-8.571 19.429-25.143 40l0.571 0.571q-74.857 86.857-221.714 86.857-84 0-154-45.143t-108.857-118.571-38.857-156.857q0-60 24.857-117.714t66.286-100.857 98.286-69.429 116.857-26.286q49.714 0 90.857 10.857t70.571 28.571 54.286 45.714 41.429 56.571 33.429 66.857 28.857 71.143 28.571 74.571 31.429 72.571q54.857 114.286 133.143 114.286 46.286 0 79.143-27.714t32.857-73.429q0-24-10.857-41.143t-28.857-26.286-41.429-18-48.286-15.429-50-19.429-46.286-29.714-37.143-46.857-22.286-70q-1.714-9.143-1.714-18.857 0-62.857 50-109.714t113.429-44.571q44.571 1.714 68.857 8.286t51.714 30.571h-0.571q6.857 6.286 13.143 14t14.857 20.571 10.857 15.714l-73.714 56.571q-14.857-28-30.857-40v-0.571q-13.143-12-55.429-12-28 0-48 18.857t-20 47.429z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "lastfm" - ], - "defaultCode": 61954, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 468, - "order": 985, - "prevSize": 14, - "code": 61954, - "name": "lastfm" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 468 - }, - { - "icon": { - "paths": [ - "M818.286 601.143q0-98.857-133.714-136.571-20-5.714-30.286-9.429t-21.714-14.286-16.571-26.571q0-1.143-1.143-4.857t-1.714-6.857-0.571-4.286q0-20.571 14-34t34.571-13.429q30.857 0 40.571 8.571h-0.571q11.429 8.571 22.286 29.143l53.143-40.571q-22.286-30.857-28-36.571-18.857-16.571-38.571-22.286t-48.857-5.714q-45.714 0-81.143 32.857t-35.429 78.571q0 4 1.143 13.143 9.143 54.857 36.857 80t84.857 41.714q16.571 4.571 28 8.857t25.714 12.286 22 19.714 7.714 26.571v2.857q0.571 33.143-23.143 53.143t-57.429 20q-55.429 0-95.429-82.286-13.143-26.857-29.429-69.429t-27.429-71.714-30.857-63.143-42.286-54.571-59.143-34.571-84-14q-57.714 0-109.714 32t-82.286 84.571-28.571 109.714v0.571q2.286 61.714 28.857 113.714t76.286 84.286 112 32.286q106.286 0 159.429-62.857 11.429-15.429 17.714-29.143l-34.286-62.286q-24 45.714-56.571 66.286t-83.429 20.571q-65.714 0-109.143-49.714t-43.429-116.571q0-60 46.857-108t106.286-48q64 0 97.143 30.571t59.429 98.571q4.571 12 14.571 39.143t16.286 43.714 18 42.571 22 42.286 26 35.714 31.714 30.571 37.714 18.857 45.714 7.714q61.143 0 104.571-39.714t43.429-99.714zM877.714 237.714v548.571q0 68-48.286 116.286t-116.286 48.286h-548.571q-68 0-116.286-48.286t-48.286-116.286v-548.571q0-68 48.286-116.286t116.286-48.286h548.571q68 0 116.286 48.286t48.286 116.286z" - ], - "width": 877.7142857142858, - "attrs": [], - "isMulticolor": false, - "tags": [ - "lastfm-square" - ], - "defaultCode": 61955, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 469, - "order": 986, - "prevSize": 14, - "code": 61955, - "name": "lastfm-square" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 469 - }, - { - "icon": { - "paths": [ - "M658.286 512q0-59.429-23.143-113.429t-62.571-93.429-93.429-62.571-113.429-23.143-113.429 23.143-93.429 62.571-62.571 93.429-23.143 113.429 23.143 113.429 62.571 93.429 93.429 62.571 113.429 23.143 113.429-23.143 93.429-62.571 62.571-93.429 23.143-113.429zM1097.143 512q0-59.429-23.143-113.429t-62.571-93.429-93.429-62.571-113.429-23.143h-220.571q68 51.429 107.714 128t39.714 164.571-39.714 164.571-107.714 128h220.571q59.429 0 113.429-23.143t93.429-62.571 62.571-93.429 23.143-113.429zM1170.286 512q0 74.286-29.143 142t-78 116.571-116.571 78-142 29.143h-438.857q-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.143h438.857q74.286 0 142 29.143t116.571 78 78 116.571 29.143 142z" - ], - "width": 1170, - "attrs": [], - "isMulticolor": false, - "tags": [ - "toggle-off" - ], - "defaultCode": 61956, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 470, - "order": 987, - "prevSize": 14, - "code": 61956, - "name": "toggle-off" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 470 - }, - { - "icon": { - "paths": [ - "M0 512q0-74.286 29.143-142t78-116.571 116.571-78 142-29.143h438.857q74.286 0 142 29.143t116.571 78 78 116.571 29.143 142-29.143 142-78 116.571-116.571 78-142 29.143h-438.857q-74.286 0-142-29.143t-116.571-78-78-116.571-29.143-142zM804.571 804.571q59.429 0 113.429-23.143t93.429-62.571 62.571-93.429 23.143-113.429-23.143-113.429-62.571-93.429-93.429-62.571-113.429-23.143-113.429 23.143-93.429 62.571-62.571 93.429-23.143 113.429 23.143 113.429 62.571 93.429 93.429 62.571 113.429 23.143z" - ], - "width": 1170, - "attrs": [], - "isMulticolor": false, - "tags": [ - "toggle-on" - ], - "defaultCode": 61957, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 471, - "order": 988, - "prevSize": 14, - "code": 61957, - "name": "toggle-on" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 471 - }, - { - "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": 989, - "prevSize": 14, - "code": 61958, - "name": "bicycle" - }, - "setIdx": 0, - "setId": 4, - "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": 990, - "prevSize": 14, - "code": 61959, - "name": "bus" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 473 - }, - { - "icon": { - "paths": [ - "M836 475.429q0 20-14.286 34.571t-34.857 14.571h-401.143q-20.571 0-34.857-14.571t-14.286-34.571 14.286-34.571 34.857-14.571h401.143q20.571 0 34.857 14.571t14.286 34.571zM958.286 475.429q0-49.143-13.143-97.143h-561.143q-20.571 0-34.857-14.286t-14.286-34.286q0-20.571 14.286-34.857t34.857-14.286h518.857q-50.286-81.714-134.286-129.714t-182.857-48q-101.143 0-187.143 50t-136 135.714-50 186.857q0 49.143 13.143 97.143h561.143q20.571 0 34.857 14.286t14.286 34.286q0 20.571-14.286 34.857t-34.857 14.286h-518.857q50.286 81.714 134.571 129.714t183.143 48q75.429 0 144.571-29.429t118.857-79.429 79.429-118.857 29.714-144.857zM1170.286 329.714q0 20-14.286 34.286t-34.857 14.286h-74.857q9.714 48.571 9.714 97.143 0 95.429-37.429 182.571t-100.286 150.286-150 100.571-182.571 37.429q-140.571 0-256.286-76t-172.286-200h-108q-20.571 0-34.857-14.286t-14.286-34.857q0-20 14.286-34.286t34.857-14.286h75.429q-9.714-48.571-9.714-97.143 0-95.429 37.429-182.571t100.286-150.286 150-100.571 183.143-37.429q140 0 255.714 76t172.286 200h107.429q20.571 0 34.857 14.286t14.286 34.857z" - ], - "width": 1170, - "attrs": [], - "isMulticolor": false, - "tags": [ - "ioxhost" - ], - "defaultCode": 61960, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 474, - "order": 991, - "prevSize": 14, - "code": 61960, - "name": "ioxhost" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 474 - }, - { - "icon": { - "paths": [ - "M544.571 216l-65.143 187.429 66.857 12q94.286-257.714 94.286-296 0-32-21.714-32-32.571 0-74.286 128.571zM373.714 608.571l18.857 50.286q21.143-24 40.571-38.286l-18.857-3.143t-22-4-18.571-4.857zM206.857 96.571q0 56 90.857 297.714 10.286-5.714 28-5.714 8.571 0 42.857 2.857l-69.143-200.571q-42.857-125.714-70.286-125.714-10.857 0-16.571 10t-5.714 21.429zM161.714 530.286q0 20.571 29.429 68t67.143 87.429 57.143 40q8 0 14.571-7.429t6.571-15.429q0-13.714-18.286-58.286-7.429-18.286-18.286-41.143t-27.143-50.857-35.143-46.286-35.429-18.286q-11.429 0-26 15.429t-14.571 26.857zM71.429 721.714q0 23.429 14.286 59.429 33.714 82.857 104.857 129.714t160.857 46.857q129.714 0 218.286-97.143 86.857-96.571 86.857-244 0-24.571-0.571-38.286t-6.571-35.429-17.429-32q-32-28-120.857-43.143t-154.571-15.143q-21.143 0-28 6.286-6.857 2.857-6.857 20 0 19.429 12.286 34.286t31.714 22.857 44.286 13.429 50 6.571 48.571 2.286 40 0h13.143q13.714 0 22.857 10.857 8.571 10.857 10.857 31.429-16 16-54.857 30.857-34.857 12.571-53.143 26.286-36.571 26.286-62 65.143t-25.429 78.286q0 17.714 10.571 50.571t10.571 50l-1.714 6.857q-2.286 6.857-2.286 8-78.286-5.714-83.429-123.429-4.571 1.143-23.429 1.143 1.143 4 1.143 12 0 30.286-23.143 51.143t-54 20.857q-46.857 0-95.143-44.571t-48.286-90.857q0-19.429 18.857-38.286 29.714 36.571 34.286 43.429 44 59.429 76 59.429 6.857 0 15.143-4.857t8.286-11.714q0-19.429-50-82.857t-66.571-63.429q-24.571 0-40 25.429t-15.429 51.714zM6.286 726.857q0-57.714 24.286-93.143t78-50.286q-16-42.286-16-59.429 0-35.429 34.857-70.286t69.714-34.857q16.571 0 40 8.571-93.143-264-93.143-324 0-45.714 23.429-74.571t68-28.857q74.857 0 185.714 332 3.429 9.714 4.571 13.143 3.429-9.143 16.571-45.429t24.857-67.714 30.857-72.857 36.857-70.286 40.286-49.429 43.714-20.571q40.571 0 64 28t23.429 69.714q0 61.714-90.857 314.286 34.857 8.571 57.429 26.286t33.429 44.571 14.857 53.429 4 63.143q0 85.714-26.857 160t-75.429 128.571-120.571 85.714-158.857 31.429q-63.429 0-127.429-24-85.143-32.571-147.429-109.429t-62.286-163.714z" - ], - "width": 731, - "attrs": [], - "isMulticolor": false, - "tags": [ - "angellist" - ], - "defaultCode": 61961, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 475, - "order": 992, - "prevSize": 14, - "code": 61961, - "name": "angellist" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 475 - }, - { - "icon": { - "paths": [ - "M448.571 576h118.286q-8 90.286-56.286 142t-122.571 51.714q-92.571 0-145.429-66.286t-52.857-180.571q0-110.857 53.143-178t133.143-67.143q84.571 0 132.571 49.714t55.429 141.143h-116q-2.857-36.571-20.286-56.571t-46.571-20q-32.571 0-50.571 34.571t-18 101.429q0 27.429 2.857 48t10.286 39.714 22.857 29.429 37.714 10.286q54.286 0 62.286-79.429zM855.429 576h117.714q-8 90.286-56 142t-122.286 51.714q-92.571 0-145.429-66.286t-52.857-180.571q0-110.857 53.143-178t133.143-67.143q84.571 0 132.571 49.714t55.429 141.143h-116.571q-2.286-36.571-20-56.571t-46.286-20q-32.571 0-50.571 34.571t-18 101.429q0 27.429 2.857 48t10.286 39.714 22.571 29.429 37.429 10.286q28 0 43.714-21.714t19.143-57.714zM1060.571 508q0-118.286-8.857-175.429t-34.571-92q-3.429-4.571-7.714-8t-12.286-8.571-9.143-6.286q-49.143-36-398.286-36-357.143 0-405.714 36-2.857 2.286-10 6.571t-12 8-8.286 8.286q-25.714 34.286-34.286 91.143t-8.571 176.286q0 118.857 8.571 175.714t34.286 91.714q3.429 4.571 8.571 8.571t11.714 8 10 6.857q25.143 18.857 136.857 28t268.857 9.143q348.571 0 398.286-37.143 2.857-2.286 9.714-6.286t11.714-8 7.714-9.143q26.286-34.286 34.857-90.857t8.571-176.571zM1170.286 73.143v877.714h-1170.286v-877.714h1170.286z" - ], - "width": 1170, - "attrs": [], - "isMulticolor": false, - "tags": [ - "cc" - ], - "defaultCode": 61962, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 476, - "order": 993, - "prevSize": 14, - "code": 61962, - "name": "cc" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 476 - }, - { - "icon": { - "paths": [ - "M566.857 356.571v283.429q0 8-5.143 13.143t-13.143 5.143h-91.429q-8 0-13.143-5.143t-5.143-13.143v-283.429q0-64-45.714-109.714t-109.714-45.714h-155.429v658.286q0 8-5.143 13.143t-13.143 5.143h-91.429q-8 0-13.143-5.143t-5.143-13.143v-768q0-8 5.143-13.143t13.143-5.143h265.143q77.143 0 142.286 38t103.143 103.143 38 142.286zM786.286 91.429v502.857q0 77.143-38 142.286t-103.143 103.143-142.286 38h-265.143q-8 0-13.143-5.143t-5.143-13.143v-548.571q0-8 5.143-13.143t13.143-5.143h91.429q8 0 13.143 5.143t5.143 13.143v438.857h155.429q64 0 109.714-45.714t45.714-109.714v-502.857q0-8 5.143-13.143t13.143-5.143h91.429q8 0 13.143 5.143t5.143 13.143z" - ], - "width": 804.5714285714287, - "attrs": [], - "isMulticolor": false, - "tags": [ - "ils", - "shekel", - "sheqel" - ], - "defaultCode": 61963, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 477, - "order": 994, - "name": "ils, shekel, sheqel", - "prevSize": 14, - "code": 61963 - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 477 - }, - { - "icon": { - "paths": [ - "M749.143 481.143v65.143q0 13.714-7.714 21.714t-21.429 8h-115.429q-13.714 0-21.714-8t-8-21.714v-65.143q0-13.714 8-21.714t21.714-8h115.429q13.714 0 21.429 8t7.714 21.714zM469.143 612.571v-142.857q0-30.286-18.571-48.857t-48.857-18.571h-76q-38.857 0-54.857 29.714-16-29.714-54.857-29.714h-74.286q-30.286 0-48.857 18.571t-18.571 48.857v142.857q0 12.571 12 12.571h31.429q12.571 0 12.571-12.571v-131.429q0-13.714 7.714-21.714t22-8h53.714q13.714 0 21.714 8t8 21.714v131.429q0 12.571 12 12.571h30.857q12.571 0 12.571-12.571v-131.429q0-13.714 8-21.714t21.714-8h55.429q13.714 0 21.429 8t7.714 21.714v131.429q0 12.571 12.571 12.571h31.429q12 0 12-12.571zM805.714 557.714v-88q0-30.286-18.857-48.857t-49.143-18.571h-150.857q-30.286 0-49.143 18.571t-18.857 48.857v234.286q0 12 12.571 12h31.429q12 0 12-12v-102.857q17.714 24 53.714 24h109.143q30.286 0 49.143-18.571t18.857-48.857zM877.714 205.714v612.571q0 54.857-38.857 93.714t-93.714 38.857h-612.571q-54.857 0-93.714-38.857t-38.857-93.714v-612.571q0-54.857 38.857-93.714t93.714-38.857h612.571q54.857 0 93.714 38.857t38.857 93.714z" - ], - "width": 877.7142857142858, - "attrs": [], - "isMulticolor": false, - "tags": [ - "meanpath" - ], - "defaultCode": 61964, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 478, - "order": 995, - "prevSize": 14, - "code": 61964, - "name": "meanpath" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 478 - }, - { - "icon": { - "paths": [ - "M522.857 620.571h-168l84-314.857zM572 804.571h177.714l-185.143-585.143h-251.429l-185.143 585.143h177.714l218.857-179.429zM877.714 237.714v548.571q0 67.429-48.571 116t-116 48.571h-548.571q-67.429 0-116-48.571t-48.571-116v-548.571q0-67.429 48.571-116t116-48.571h548.571q67.429 0 116 48.571t48.571 116z" - ], - "width": 877.7142857142858, - "attrs": [], - "isMulticolor": false, - "tags": [ - "buysellads" - ], - "defaultCode": 61965, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 479, - "order": 996, - "prevSize": 14, - "code": 61965, - "name": "buysellads" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 479 - }, - { - "icon": { - "paths": [ - "M1170.286 511.429q0 12-7.429 20.857t-18.857 11.143l-117.143 203.429q1.714 5.143 1.714 10.286 0 11.429-7.143 20.286t-18.571 11.143l-110.286 192.571q1.714 4.571 1.714 9.143 0 13.143-9.429 22.857t-23.143 9.714q-14.286 0-23.429-10.286h-228.571q-9.714 11.429-24.571 11.429t-24.571-11.429h-228q-9.714 11.429-24.571 11.429-13.143 0-22.857-9.429t-9.714-23.143q0-4.571 2.286-11.429l-110.286-191.429q-11.429-2.286-18.571-11.143t-7.143-20.286q0-5.143 1.714-10.286l-117.714-203.429q-11.429-2.857-18.571-11.714t-7.143-20.286q0-12 7.714-20.857t19.143-11.143l113.714-196.571q0-0.571-0.286-1.714t-0.286-1.714q0-20.571 19.429-29.143l119.429-207.429q-2.286-5.714-2.286-10.286 0-13.714 9.714-23.143t22.857-9.429q14.857 0 25.143 12h226.286q9.143-12 24.571-12t24.571 12h227.429q10.286-12 25.143-12 13.143 0 22.857 9.429t9.714 23.143q0 3.429-2.286 10.286l118.286 204.571q13.143 0.571 22.286 10t9.143 22q0 7.429-4 15.429l106.857 185.143q10.857 2.286 18 11.143t7.143 20.286zM607.429 968h222.286l-195.429-202.286h-81.714l-195.429 202.286h205.714q10.286-9.143 22.286-9.143t22.286 9.143zM64 504q0.571 2.286 0.571 7.429 0 5.714-1.143 8.571l118.857 205.714q1.143 0 2.571 0.571t3.143 1.429l2.857 1.429 107.429-113.714v-198.286l-106.857-110.857q-7.429 4.571-16.571 5.714zM563.429 56h-221.714l108.571 114.286 316.571-114.286h-160q-9.143 9.143-21.714 9.143t-21.714-9.143zM965.143 748.571q0.571-3.429 2.857-6.286l-36.571-38.857-9.714 45.143h43.429zM904.571 748.571l12.571-60-144-152-169.143 175.429 36 36.571h264.571zM854.286 958.857l9.143-16 37.143-177.143h-244l190.286 196q4.571-2.286 7.429-2.857zM330.286 968h2.857l195.429-202.286h-213.143v191.429l2.286 3.429q8 2.857 12.571 7.429zM315.429 748.571h229.714l36.571-37.714-176.571-183.429-89.714 94.857v126.286zM205.143 748.571h93.143v-108l-96 101.143q2.286 4.571 2.857 6.857zM204.571 277.143q0 0.571 0.286 1.143t0.286 1.143q0 9.143-4.571 16.571l97.714 101.143v-153.714zM315.429 237.143v177.714l87.429 89.714 169.714-179.429-127.429-134.857zM317.714 63.429l-2.286 4.571v150.857l117.143-42.286-109.143-114.857q-3.429 1.143-5.714 1.714zM826.857 56h-9.143l-354.857 128 121.714 128.571zM584.571 337.143l-169.714 180 177.714 182.286 169.143-175.429zM393.143 515.429l-77.714-80.571v162.286zM593.143 723.429l-24 25.143h48.571zM785.143 524.571l136 143.429 75.429-356.571-1.714-2.857-0.571-0.571zM981.714 296q-4.571-7.429-4.571-16.571v-1.143l-123.429-214.857q-2.857-0.571-7.429-2.857l-249.714 264.571 177.143 186.857zM298.286 225.143v-127.429l-93.143 161.143zM298.286 765.714h-93.143l93.143 161.714v-161.714zM918.286 765.714l-27.429 129.714 74.286-129.714h-46.857zM988 725.714l118.286-206.286q-1.143-5.714-1.143-8 0-0.571 1.714-9.143l-97.714-169.143-73.714 349.714 44 46.857q2.857-1.714 8.571-4z" - ], - "width": 1170, - "attrs": [], - "isMulticolor": false, - "tags": [ - "connectdevelop" - ], - "defaultCode": 61966, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 480, - "order": 997, - "prevSize": 14, - "code": 61966, - "name": "connectdevelop" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 480 - }, - { - "icon": { - "paths": [ - "M0 388.571q0-74.857 52.286-129.429t127.143-54.571h424l201.143-204.571v840q0 75.429-52.286 129.714t-127.143 54.286h-445.714q-74.857 0-127.143-54.286t-52.286-129.714v-451.429zM704 819.429l-100.571-102.857v-242.857q0-26.286-18.286-45.143t-44.571-18.857h-276.571q-26.286 0-44.571 18.857t-18.286 45.143v281.143q0 26.286 18.571 45.429t44.286 19.143h440z" - ], - "width": 804.5714285714287, - "attrs": [], - "isMulticolor": false, - "tags": [ - "dashcube" - ], - "defaultCode": 61968, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 481, - "order": 998, - "prevSize": 14, - "code": 61968, - "name": "dashcube" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 481 - }, - { - "icon": { - "paths": [ - "M533.714 85.714q-181.143 69.143-317.714 207.143t-204.571 320.286q-11.429-50.857-11.429-100.571 0-118.857 58.571-219.714t159.143-159.429 219.429-58.571q46.857 0 96.571 10.857zM687.429 153.714q53.143 37.143 93.714 88.571-222.286 64.571-385.429 228.857t-226.571 386.571q-53.143-41.143-88.571-92.571 64-220.571 225.714-383.429t381.143-228zM268.571 916q65.714-203.429 216.857-355.429t354-219.429q22.857 52.571 30.857 111.429-166.857 68.571-294.857 197.143t-196 296q-58.857-8-110.857-29.714zM877.714 949.143q-110.286-28.571-209.714-65.714-77.143 48-165.714 61.143 62.286-117.143 156.571-211.714t210.857-157.429q-12 86.857-57.714 162.286 37.143 100 65.714 211.429z" - ], - "width": 877.7142857142858, - "attrs": [], - "isMulticolor": false, - "tags": [ - "forumbee" - ], - "defaultCode": 61969, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 482, - "order": 999, - "prevSize": 14, - "code": 61969, - "name": "forumbee" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 482 - }, - { - "icon": { - "paths": [ - "M1081.714 224l88.571 726.857q-74.857 0-146.857-32.571-114.286-52-224.571-52-129.143 0-213.714 84.571-84.571-84.571-213.714-84.571-110.286 0-224.571 52-73.143 32.571-144 32.571h-2.857l88.571-726.857q128-72.571 275.429-72.571 133.143 0 221.143 60.571 88-60.571 221.143-60.571 147.429 0 275.429 72.571zM798.857 788q73.714 0 132.571 16.286t148.571 53.429l-70.857-583.429q-97.714-44.571-210.286-44.571-128 0-213.714 80.571-85.714-80.571-213.714-80.571-112.571 0-210.286 44.571l-70.857 583.429q60-24.571 94.571-37.143t84.857-22.571 101.714-10q115.429 0 213.714 61.714 98.286-61.714 213.714-61.714zM821.714 768.571l-31.429-518.286q-120.571 2.286-205.143 88.571-86.857-88.571-213.714-88.571-100.571 0-192 37.714l-65.143 537.714q70.857-29.143 130.571-43.429t126.571-14.286q119.429 0 213.714 58.286 98.286-61.143 213.714-58.286z" - ], - "width": 1170, - "attrs": [], - "isMulticolor": false, - "tags": [ - "leanpub" - ], - "defaultCode": 61970, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 483, - "order": 1000, - "prevSize": 14, - "code": 61970, - "name": "leanpub" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 483 - }, - { - "icon": { - "paths": [ - "M857.143 783.429v-418.857q0-12-8.571-20.571t-20-8.571h-53.143q-11.429 0-20 8.571t-8.571 20.571v418.857q0 11.429 8.571 20t20 8.571h53.143q11.429 0 20-8.571t8.571-20zM694.857 783.429v-303.429q0-11.429-8.571-20t-20-8.571h-57.714q-11.429 0-20 8.571t-8.571 20v303.429q0 11.429 8.571 20t20 8.571h57.714q11.429 0 20-8.571t8.571-20zM528 783.429v-245.143q0-11.429-8.571-20t-20-8.571h-57.714q-11.429 0-20 8.571t-8.571 20v245.143q0 11.429 8.571 20t20 8.571h57.714q11.429 0 20-8.571t8.571-20zM361.143 783.429v-206.857q0-11.429-8.571-20t-20-8.571h-57.714q-11.429 0-20 8.571t-8.571 20v206.857q0 11.429 8.571 20t20 8.571h57.714q11.429 0 20-8.571t8.571-20zM1170.286 700q0 94.857-67.429 162.286t-162.286 67.429h-710.857q-94.857 0-162.286-67.429t-67.429-162.286q0-66.286 36-122.571t96-84.857q-5.714-19.429-5.714-41.714 0-64.571 46-110.571t110.571-46q58.286 0 102.857 38.286 25.714-104.571 110.857-171.429t193.143-66.857q85.143 0 157.143 42t114 114 42 157.143q0 37.714-8 69.714 77.143 18.857 126.286 81.429t49.143 141.429z" - ], - "width": 1170, - "attrs": [], - "isMulticolor": false, - "tags": [ - "sellsy" - ], - "defaultCode": 61971, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 484, - "order": 1001, - "prevSize": 14, - "code": 61971, - "name": "sellsy" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 484 - }, - { - "icon": { - "paths": [ - "M0 0h877.714v795.429l-443.429 193.143-434.286-193.143v-795.429zM820.571 758.286v-529.143h-763.429v529.143l377.714 168zM820.571 172v-114.857h-763.429v114.857h763.429zM103.429 342.286v65.714h-21.143v-65.714h21.143zM103.429 426.857v65.714h-21.143v-65.714h21.143zM103.429 511.429v65.714h-21.143v-65.714h21.143zM103.429 596v65.714h-21.143v-65.714h21.143zM103.429 680.571v65.714h-21.143v-65.714h21.143zM118.286 762.286l8.571-19.429 60 26.857-8.571 18.857zM196 796.571l8.571-19.429 60 26.286-8.571 19.429zM273.143 830.857l8.571-19.429 60 26.286-8.571 19.429zM350.857 864.571l8.571-18.857 59.429 26.286-8.571 19.429zM455.429 872l60-26.286 8.571 18.857-60 26.857zM532.571 837.714l60-26.286 8.571 19.429-60 26.286zM610.286 803.429l60-26.286 8.571 19.429-60 26.286zM687.429 769.714l60-26.857 8.571 19.429-60 26.286zM148 84v20.571h-65.143v-20.571h65.143zM240.571 84v20.571h-65.714v-20.571h65.714zM333.143 84v20.571h-65.714v-20.571h65.714zM425.143 84v20.571h-65.143v-20.571h65.143zM517.714 84v20.571h-65.143v-20.571h65.143zM610.286 84v20.571h-65.714v-20.571h65.714zM702.857 84v20.571h-65.714v-20.571h65.714zM794.857 84v20.571h-65.143v-20.571h65.143zM103.429 278.286v45.143h-21.143v-65.714h65.714v20.571h-44.571zM240.571 257.714v20.571h-65.714v-20.571h65.714zM333.143 257.714v20.571h-65.714v-20.571h65.714zM425.143 257.714v20.571h-65.143v-20.571h65.143zM517.714 257.714v20.571h-65.143v-20.571h65.143zM610.286 257.714v20.571h-65.714v-20.571h65.714zM702.857 257.714v20.571h-65.714v-20.571h65.714zM774.286 323.429v-45.143h-44.571v-20.571h65.714v65.714h-21.143zM774.286 408v-65.714h21.143v65.714h-21.143zM774.286 492.571v-65.714h21.143v65.714h-21.143zM774.286 577.143v-65.714h21.143v65.714h-21.143zM774.286 661.714v-65.714h21.143v65.714h-21.143zM774.286 746.286v-65.714h21.143v65.714h-21.143zM434.286 726.286q-73.714 0-126.286-52.286t-52.571-126.571q0-73.714 52.571-126.286t126.286-52.571q74.286 0 126.571 52.571t52.286 126.286q0 74.286-52.286 126.571t-126.571 52.286zM340 508.571q0 20.571 11.143 32.286t28.286 14.286 36.571 4 36.571 1.143 28.286 5.143 11.143 17.429q0 28-64 28-55.429 0-70.286-29.143h-1.714l-17.714 36q38.286 24 92.571 24 16.571 0 32.286-2.857t31.714-9.143 26-18.857 10-30.286q0-26.286-15.714-39.714t-38.571-15.429-45.429-1.714-38.286-2.857-15.714-14.571q0-12 11.714-18.857t23.143-8.571 23.429-1.714q19.429 0 40.286 6.286t29.429 19.429h1.714l17.143-33.143q-1.714-0.571-12-4.857t-12.857-5.143-11.143-4-12.571-4-11.429-2.571-13.714-2.286-13.143-0.571q-16.571 0-32.286 2.857t-30.857 9.429-24.571 19.429-9.429 30.571z" - ], - "width": 877.7142857142858, - "attrs": [], - "isMulticolor": false, - "tags": [ - "shirtsinbulk" - ], - "defaultCode": 61972, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 485, - "order": 1002, - "prevSize": 14, - "code": 61972, - "name": "shirtsinbulk" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 485 - }, - { - "icon": { - "paths": [ - "M493.143 589.714q0-64-45.429-109.429t-109.429-45.429-109.143 45.429-45.143 109.429 45.143 109.143 109.143 45.143 109.429-45.143 45.429-109.143zM986.286 589.143q0-64-45.143-109.143t-109.143-45.143-109.429 45.143-45.429 109.143q0 64.571 45.429 109.714t109.429 45.143 109.143-45.429 45.143-109.429zM1170.286 126.857v770.286q0 25.143-18 43.143t-43.714 18h-1046.857q-25.714 0-43.714-18t-18-43.143v-770.286q0-25.143 18-43.143t43.714-18h246.286q25.143 0 43.429 18t18.286 43.143v92h430.857v-92q0-25.143 18.286-43.143t43.429-18h246.286q25.714 0 43.714 18t18 43.143z" - ], - "width": 1170, - "attrs": [], - "isMulticolor": false, - "tags": [ - "simplybuilt" - ], - "defaultCode": 61973, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 486, - "order": 1003, - "prevSize": 14, - "code": 61973, - "name": "simplybuilt" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 486 - }, - { - "icon": { - "paths": [ - "M965.714 449.714q84.571 0 144.571 56.286t60 139.714q0 89.714-62.286 149.429t-152.571 59.714q-48.571 0-92.571-15.714t-78.857-42-67.429-60.571-62.286-72.286-59.143-75.714-62-72-66.857-60.571-77.714-42-90.857-15.714q-88 0-143.714 52.286t-55.714 139.714q0 89.714 59.429 142.857t150.286 53.143q57.143 0 118.857-21.429t110.286-56.286q2.857-2.286 12-10.571t17.143-13.714 12.571-5.429q8 0 14 6t6 14q0 13.714-34.286 44-57.714 50.286-134 81.143t-148.857 30.857q-76 0-140.286-33.143t-102.857-94.286-38.571-137.714q0-117.143 80.857-194.857t198.571-77.714q68.571 0 129.429 24.857t106 64.571 86.571 87.429 79.429 95.714 76.286 87.714 85.429 64.571 98.571 24.857q58.286 0 96.286-35.143t38-92.857q0-54.286-36.857-90.857t-91.143-36.571q-17.143 0-46.571 10.571t-39.143 10.571q-11.429 0-20.286-8.571t-8.857-20q0-10.286 4.857-32.571t4.857-33.714q0-90.857-61.429-150.286t-152.286-59.429q-33.143 0-63.714 10.571t-48 23.143-31.714 23.143-18.857 10.571q-8.571 0-14.571-6t-6-14.571q0-10.857 14.286-26.286 33.714-38.286 84-59.143t104-20.857q109.143 0 181.714 71.714t72.571 180.286q0 21.143-2.286 37.714 32.571-8.571 65.714-8.571z" - ], - "width": 1170, - "attrs": [], - "isMulticolor": false, - "tags": [ - "skyatlas" - ], - "defaultCode": 61974, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 487, - "order": 1004, - "prevSize": 14, - "code": 61974, - "name": "skyatlas" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 487 - }, - { - "icon": { - "paths": [ - "M694.857 402.286q0-14.857-10.857-25.714t-25.714-10.857h-73.143v-73.143q0-14.857-10.857-25.714t-25.714-10.857-25.714 10.857-10.857 25.714v73.143h-73.143q-14.857 0-25.714 10.857t-10.857 25.714 10.857 25.714 25.714 10.857h73.143v73.143q0 14.857 10.857 25.714t25.714 10.857 25.714-10.857 10.857-25.714v-73.143h73.143q14.857 0 25.714-10.857t10.857-25.714zM365.714 877.714q0 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.714zM877.714 877.714q0 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 256v292.571q0 13.714-9.143 24.286t-23.429 12.286l-596.571 69.714q0.571 4 2.571 12.286t3.429 15.143 1.429 12.571q0 9.143-13.714 36.571h525.714q14.857 0 25.714 10.857t10.857 25.714-10.857 25.714-25.714 10.857h-585.143q-14.857 0-25.714-10.857t-10.857-25.714q0-8 6.286-22.571t16.857-34 11.714-21.714l-101.143-470.286h-116.571q-14.857 0-25.714-10.857t-10.857-25.714 10.857-25.714 25.714-10.857h146.286q9.143 0 16.286 3.714t11.429 8.857 7.429 14 4.286 15.143 3.143 16.857 2.571 14.571h686.286q14.857 0 25.714 10.857t10.857 25.714z" - ], - "width": 951, - "attrs": [], - "isMulticolor": false, - "tags": [ - "cart-plus" - ], - "defaultCode": 61975, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 488, - "order": 1005, - "prevSize": 14, - "code": 61975, - "name": "cart-plus" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 488 - }, - { - "icon": { - "paths": [ - "M731.429 402.286q0-14.857-10.857-25.714t-25.714-10.857-25.714 10.857l-84 83.429v-167.429q0-14.857-10.857-25.714t-25.714-10.857-25.714 10.857-10.857 25.714v167.429l-84-83.429q-10.857-10.857-25.714-10.857t-25.714 10.857-10.857 25.714 10.857 25.714l146.286 146.286q10.857 10.857 25.714 10.857t25.714-10.857l146.286-146.286q10.857-10.857 10.857-25.714zM365.714 877.714q0 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.714zM877.714 877.714q0 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 256v292.571q0 13.714-9.143 24.286t-23.429 12.286l-596.571 69.714q0.571 4 2.571 12.286t3.429 15.143 1.429 12.571q0 9.143-13.714 36.571h525.714q14.857 0 25.714 10.857t10.857 25.714-10.857 25.714-25.714 10.857h-585.143q-14.857 0-25.714-10.857t-10.857-25.714q0-8 6.286-22.571t16.857-34 11.714-21.714l-101.143-470.286h-116.571q-14.857 0-25.714-10.857t-10.857-25.714 10.857-25.714 25.714-10.857h146.286q9.143 0 16.286 3.714t11.429 8.857 7.429 14 4.286 15.143 3.143 16.857 2.571 14.571h686.286q14.857 0 25.714 10.857t10.857 25.714z" - ], - "width": 951, - "attrs": [], - "isMulticolor": false, - "tags": [ - "cart-arrow-down" - ], - "defaultCode": 61976, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 489, - "order": 1006, - "prevSize": 14, - "code": 61976, - "name": "cart-arrow-down" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 489 - }, - { - "icon": { - "paths": [ - "M121.143 438.857l356 380-171.429-380h-184.571zM585.143 880l199.429-441.143h-398.857zM307.429 365.714l116.571-219.429h-149.714l-164.571 219.429h197.714zM693.143 818.857l356-380h-184.571zM390.286 365.714h389.714l-116.571-219.429h-156.571zM862.857 365.714h197.714l-164.571-219.429h-149.714zM943.429 88l219.429 292.571q8 10.286 7.429 23.714t-9.714 23.143l-548.571 585.143q-10.286 11.429-26.857 11.429t-26.857-11.429l-548.571-585.143q-9.143-9.714-9.714-23.143t7.429-23.714l219.429-292.571q10.286-14.857 29.143-14.857h658.286q18.857 0 29.143 14.857z" - ], - "width": 1170, - "attrs": [], - "isMulticolor": false, - "tags": [ - "diamond" - ], - "defaultCode": 61977, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 490, - "order": 1007, - "prevSize": 14, - "code": 61977, - "name": "diamond" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 490 - }, - { - "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": 1008, - "prevSize": 14, - "code": 61978, - "name": "ship" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 491 - }, - { - "icon": { - "paths": [ - "M329.143 877.714l54.857-256-54.857-73.143-73.143-36.571zM475.429 877.714l73.143-365.714-73.143 36.571-54.857 73.143zM566.857 300.571q-1.143-2.286-2.286-3.429-5.714-4.571-54.857-4.571-40 0-95.429 10.857-4 1.143-12 1.143t-12-1.143q-55.429-10.857-95.429-10.857-49.143 0-54.857 4.571-1.143 1.143-2.286 3.429 1.143 10.286 2.286 15.429 1.143 1.714 4.286 3.714t4.286 6q1.143 2.286 4.286 11.714t4 11.714 4.286 9.714 4.857 9.714 5.143 8 6.857 7.714 8 5.429 10 4.571 11.714 2.286 14 1.143q20.571 0 33.714-7.143t18.571-17.143 8.286-19.714 6.571-16.857 10-7.143h6.857q6.286 0 10 7.143t6.571 16.857 8.286 19.714 18.571 17.143 33.714 7.143q7.429 0 14-1.143t11.714-2.286 10-4.571 8-5.429 6.857-7.714 5.143-8 4.857-9.714 4.286-9.714 4-11.714 4.286-11.714q1.143-4 4.286-6t4.286-3.714q1.143-5.143 2.286-15.429zM804.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-34.857 2.571-67.429t10.857-71.714 21.429-70.571 36.286-59.143 53.429-42.571l-51.429-125.714h122.286q-12.571-36.571-12.571-73.143 0-6.857 1.143-18.286-110.857-22.857-110.857-54.857 0-32.571 120-56.571 9.714-35.429 29.429-76.571t40.286-65.143q18.286-21.143 43.429-21.143 17.143 0 48 17.714t48 17.714 48-17.714 48-17.714q25.143 0 43.429 21.143 20.571 24 40.286 65.143t29.429 76.571q120 24 120 56.571 0 32-110.857 54.857 4 46.286-11.429 91.429h122.286l-46.857 128.571q36 18.857 61.429 55.143t37.429 82 16.571 86.571 4.571 84.857z" - ], - "width": 804.5714285714287, - "attrs": [], - "isMulticolor": false, - "tags": [ - "user-secret" - ], - "defaultCode": 61979, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 492, - "order": 1009, - "prevSize": 14, - "code": 61979, - "name": "user-secret" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 492 - }, - { - "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": 1010, - "prevSize": 14, - "code": 61980, - "name": "motorcycle" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 493 - }, - { - "icon": { - "paths": [ - "M804.571 877.714q0 36-35.143 64.857t-93.714 46.286-128.571 26.286-144.857 8.857-144.857-8.857-128.571-26.286-93.714-46.286-35.143-64.857q0-28 18.857-50.571t52-38 67.429-25.429 74.857-16.857q14.857-2.857 27.429 6t14.857 23.714q2.857 14.857-6 27.429t-23.714 14.857q-33.143 5.714-60.571 13.429t-43.714 14.571-27.714 13.429-15.714 11.143-4.857 6.857q1.714 6.286 15.429 15.143t41.714 18.857 65.143 18.571 91.714 14.286 115.143 5.714 115.143-5.714 91.714-14.286 65.143-18.857 41.714-19.143 15.429-15.714q-0.571-2.286-4.857-6.286t-15.714-10.857-27.714-13.429-43.714-14.286-60.571-13.429q-14.857-2.286-23.714-14.857t-6-27.429q2.286-14.857 14.857-23.714t27.429-6q40.571 6.857 74.857 16.857t67.429 25.429 52 38 18.857 50.571zM585.143 365.714v219.429q0 14.857-10.857 25.714t-25.714 10.857h-36.571v219.429q0 14.857-10.857 25.714t-25.714 10.857h-146.286q-14.857 0-25.714-10.857t-10.857-25.714v-219.429h-36.571q-14.857 0-25.714-10.857t-10.857-25.714v-219.429q0-30.286 21.429-51.714t51.714-21.429h219.429q30.286 0 51.714 21.429t21.429 51.714zM530.286 146.286q0 53.143-37.429 90.571t-90.571 37.429-90.571-37.429-37.429-90.571 37.429-90.571 90.571-37.429 90.571 37.429 37.429 90.571z" - ], - "width": 804.5714285714287, - "attrs": [], - "isMulticolor": false, - "tags": [ - "street-view" - ], - "defaultCode": 61981, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 494, - "order": 1011, - "prevSize": 14, - "code": 61981, - "name": "street-view" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 494 - }, - { - "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": { - "id": 495, - "order": 1012, - "prevSize": 14, - "code": 61982, - "name": "heartbeat" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 495 - }, - { - "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": 657.8571428571429, - "attrs": [], - "isMulticolor": false, - "tags": [ - "venus" - ], - "defaultCode": 61985, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 496, - "order": 1013, - "prevSize": 14, - "code": 61985, - "name": "venus" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 496 - }, - { - "icon": { - "paths": [ - "M841.143 73.143q14.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-218.286 218.857q72 89.143 72 205.143 0 66.857-26 127.714t-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-26q116 0 205.143 72l218.286-218.286h-149.143q-8 0-13.143-5.143t-5.143-13.143v-36.571q0-8 5.143-13.143t13.143-5.143h237.714zM329.143 877.714q105.714 0 180.857-75.143t75.143-180.857-75.143-180.857-180.857-75.143-180.857 75.143-75.143 180.857 75.143 180.857 180.857 75.143z" - ], - "width": 877.7142857142858, - "attrs": [], - "isMulticolor": false, - "tags": [ - "mars" - ], - "defaultCode": 61986, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 497, - "order": 1014, - "prevSize": 14, - "code": 61986, - "name": "mars" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 497 - }, - { - "icon": { - "paths": [ - "M474.286 180.571q82.857 41.143 133.429 120.286t50.571 174.571q0 126.286-84.286 219.714t-208.286 107.143v75.429h54.857q8 0 13.143 5.143t5.143 13.143v36.571q0 8-5.143 13.143t-13.143 5.143h-54.857v54.857q0 8-5.143 13.143t-13.143 5.143h-36.571q-8 0-13.143-5.143t-5.143-13.143v-54.857h-54.857q-8 0-13.143-5.143t-5.143-13.143v-36.571q0-8 5.143-13.143t13.143-5.143h54.857v-75.429q-124-13.714-208.286-107.143t-84.286-219.714q0-95.429 50.571-174.571t133.429-120.286q-94.286-54.857-130.286-156-3.429-9.143 2-16.857t15.143-7.714h39.429q12 0 16.571 11.429 25.143 60.571 80 97.714t122.286 37.143 122.286-37.143 80-97.714q4.571-11.429 21.143-11.429h34.857q9.714 0 15.143 7.714t2 16.857q-36 101.143-130.286 156zM329.143 731.429q105.714 0 180.857-75.143t75.143-180.857-75.143-180.857-180.857-75.143-180.857 75.143-75.143 180.857 75.143 180.857 180.857 75.143z" - ], - "width": 657.8571428571429, - "attrs": [], - "isMulticolor": false, - "tags": [ - "mercury" - ], - "defaultCode": 61987, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 498, - "order": 1015, - "prevSize": 14, - "code": 61987, - "name": "mercury" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 498 - }, - { - "icon": { - "paths": [ - "M585.143 18.286q0-8 5.143-13.143t13.143-5.143h164.571q14.857 0 25.714 10.857t10.857 25.714v164.571q0 8-5.143 13.143t-13.143 5.143h-36.571q-8 0-13.143-5.143t-5.143-13.143v-76.571l-145.143 145.714q72 90.286 72 205.143 0 126.286-84.286 219.714t-208.286 107.143v75.429h54.857q8 0 13.143 5.143t5.143 13.143v36.571q0 8-5.143 13.143t-13.143 5.143h-54.857v54.857q0 8-5.143 13.143t-13.143 5.143h-36.571q-8 0-13.143-5.143t-5.143-13.143v-54.857h-54.857q-8 0-13.143-5.143t-5.143-13.143v-36.571q0-8 5.143-13.143t13.143-5.143h54.857v-75.429q-85.143-9.143-154.571-58.857t-106.571-127.714-30.286-166.571q9.143-116.571 91.429-202t198.286-98.571q67.429-8 130.286 10.857t113.143 58.857l145.714-145.143h-76.571q-8 0-13.143-5.143t-5.143-13.143v-36.571zM329.143 731.429q105.714 0 180.857-75.143t75.143-180.857-75.143-180.857-180.857-75.143-180.857 75.143-75.143 180.857 75.143 180.857 180.857 75.143z" - ], - "width": 804.5714285714287, - "attrs": [], - "isMulticolor": false, - "tags": [ - "intersex", - "transgender" - ], - "defaultCode": 61988, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 499, - "order": 1016, - "name": "intersex, transgender", - "prevSize": 14, - "code": 61988 - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 499 - }, - { - "icon": { - "paths": [ - "M731.429 18.286q0-8 5.143-13.143t13.143-5.143h164.571q14.857 0 25.714 10.857t10.857 25.714v164.571q0 8-5.143 13.143t-13.143 5.143h-36.571q-8 0-13.143-5.143t-5.143-13.143v-76.571l-145.143 145.714q72 90.286 72 205.143 0 126.286-84.286 219.714t-208.286 107.143v75.429h54.857q8 0 13.143 5.143t5.143 13.143v36.571q0 8-5.143 13.143t-13.143 5.143h-54.857v54.857q0 8-5.143 13.143t-13.143 5.143h-36.571q-8 0-13.143-5.143t-5.143-13.143v-54.857h-54.857q-8 0-13.143-5.143t-5.143-13.143v-36.571q0-8 5.143-13.143t13.143-5.143h54.857v-75.429q-124-13.714-208.286-107.143t-84.286-219.714q0-114.857 72-205.143l-29.714-30.286-57.714 63.429q-5.143 5.714-12.571 6t-13.143-4.286l-27.429-25.143q-5.714-4.571-6-12.286t4.857-13.429l60-65.714-63.429-64v76.571q0 8-5.143 13.143t-13.143 5.143h-36.571q-8 0-13.143-5.143t-5.143-13.143v-164.571q0-14.857 10.857-25.714t25.714-10.857h164.571q8 0 13.143 5.143t5.143 13.143v36.571q0 8-5.143 13.143t-13.143 5.143h-76l60.571 61.143 49.143-53.714q5.143-5.714 12.571-6t13.143 4.286l27.429 25.143q5.714 4.571 6 12.286t-4.857 13.429l-51.429 56.571 32.571 32q90.286-72 205.143-72t205.143 72l145.714-145.143h-76.571q-8 0-13.143-5.143t-5.143-13.143v-36.571zM475.429 731.429q105.714 0 180.857-75.143t75.143-180.857-75.143-180.857-180.857-75.143-180.857 75.143-75.143 180.857 75.143 180.857 180.857 75.143z" - ], - "width": 950.8571428571429, - "attrs": [], - "isMulticolor": false, - "tags": [ - "transgender-alt" - ], - "defaultCode": 61989, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 500, - "order": 1017, - "prevSize": 14, - "code": 61989, - "name": "transgender-alt" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 500 - }, - { - "icon": { - "paths": [ - "M1022.857 302.286q6.857 88.571-30 166.857t-106.286 128-155.143 58.857v148.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-292.571v128q0 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.857q9.714-117.714 94-203.714t201.429-96.857q117.714-12 215.429 53.714 97.714-65.714 215.429-53.714 117.143 10.857 201.429 96.857t94 203.714zM512 508q73.143-74.857 73.143-178.857t-73.143-178.857q-73.143 74.857-73.143 178.857t73.143 178.857zM329.143 585.143q65.714 0 124.571-32.571-88-94.286-88-223.429 0-128 88-223.429-58.857-32.571-124.571-32.571-105.714 0-180.857 75.143t-75.143 180.857 75.143 180.857 180.857 75.143zM658.286 804.571v-148.571q-78.286-8.571-146.286-53.714-68 45.143-146.286 53.714v148.571h292.571zM694.857 585.143q105.714 0 180.857-75.143t75.143-180.857-75.143-180.857-180.857-75.143q-65.714 0-124.571 32.571 88 95.429 88 223.429 0 129.143-88 223.429 58.857 32.571 124.571 32.571z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "venus-double" - ], - "defaultCode": 61990, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 501, - "order": 1018, - "prevSize": 14, - "code": 61990, - "name": "venus-double" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 501 - }, - { - "icon": { - "paths": [ - "M877.714 237.714q0-8 5.143-13.143t13.143-5.143h164.571q14.857 0 25.714 10.857t10.857 25.714v164.571q0 8-5.143 13.143t-13.143 5.143h-36.571q-8 0-13.143-5.143t-5.143-13.143v-76.571l-145.143 145.714q43.429 54.286 61.429 122.286t5.429 141.143q-17.714 104-94.857 178.286t-181.714 89.143q-120 16.571-219.714-45.714t-138-171.429q-66.857-3.429-126.286-32.857t-101.429-76-64.857-110-18.286-131.429q5.143-77.143 44.571-144t104-109.429 141.714-51.143q67.429-8 130 10.857t113.429 58.857l145.714-145.143h-76.571q-8 0-13.143-5.143t-5.143-13.143v-36.571q0-8 5.143-13.143t13.143-5.143h164.571q14.857 0 25.714 10.857t10.857 25.714v164.571q0 8-5.143 13.143t-13.143 5.143h-36.571q-8 0-13.143-5.143t-5.143-13.143v-76.571l-145.143 145.714q33.714 42.286 53.143 96.571 104 5.143 187.429 70.857l145.714-145.143h-76.571q-8 0-13.143-5.143t-5.143-13.143v-36.571zM585.143 475.429q0-11.429-2.286-33.143-92.571 14.286-154.857 85.714t-62.286 166.857q0 11.429 2.286 33.143 92.571-14.286 154.857-85.714t62.286-166.857zM73.143 475.429q0 96 63.429 168t157.714 85.143q-1.714-16.571-1.714-33.714 0-120 77.143-211.143t193.143-112.286q-30.286-68.571-93.429-110.286t-140.286-41.714q-105.714 0-180.857 75.143t-75.143 180.857zM621.714 950.857q105.714 0 180.857-75.143t75.143-180.857q0-96-63.429-168t-157.714-85.143q1.714 16.571 1.714 33.714 0 120-77.143 211.143t-193.143 112.286q30.286 68.571 93.429 110.286t140.286 41.714z" - ], - "width": 1097, - "attrs": [], - "isMulticolor": false, - "tags": [ - "mars-double" - ], - "defaultCode": 61991, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 502, - "order": 1019, - "prevSize": 14, - "code": 61991, - "name": "mars-double" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 502 - }, - { - "icon": { - "paths": [ - "M950.857 18.286q0-8 5.143-13.143t13.143-5.143h164.571q14.857 0 25.714 10.857t10.857 25.714v164.571q0 8-5.143 13.143t-13.143 5.143h-36.571q-8 0-13.143-5.143t-5.143-13.143v-76.571l-145.143 145.714q43.429 54.286 61.429 122.286t5.429 141.143q-18.286 102.857-94 177.143t-179.143 89.714q-127.429 19.429-233.714-51.429-66.857 44.571-146.286 53.143v75.429h54.857q8 0 13.143 5.143t5.143 13.143v36.571q0 8-5.143 13.143t-13.143 5.143h-54.857v54.857q0 8-5.143 13.143t-13.143 5.143h-36.571q-8 0-13.143-5.143t-5.143-13.143v-54.857h-54.857q-8 0-13.143-5.143t-5.143-13.143v-36.571q0-8 5.143-13.143t13.143-5.143h54.857v-75.429q-88.571-9.714-159.714-62.571t-106.857-135.714-22.571-175.429q14.286-106.857 91.143-184.286t183.143-94q128-19.429 234.286 51.429 83.429-55.429 182.857-55.429 114.857 0 205.143 72l145.714-145.143h-76.571q-8 0-13.143-5.143t-5.143-13.143v-36.571zM512 654.286q73.143-74.857 73.143-178.857t-73.143-178.857q-73.143 74.857-73.143 178.857t73.143 178.857zM73.143 475.429q0 105.714 75.143 180.857t180.857 75.143q66.857 0 124.571-32.571-88-95.429-88-223.429t88-223.429q-57.714-32.571-124.571-32.571-105.714 0-180.857 75.143t-75.143 180.857zM694.857 731.429q105.714 0 180.857-75.143t75.143-180.857-75.143-180.857-180.857-75.143q-66.857 0-124.571 32.571 88 95.429 88 223.429t-88 223.429q57.714 32.571 124.571 32.571z" - ], - "width": 1170, - "attrs": [], - "isMulticolor": false, - "tags": [ - "venus-mars" - ], - "defaultCode": 61992, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 503, - "order": 1020, - "prevSize": 14, - "code": 61992, - "name": "venus-mars" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 503 - }, - { - "icon": { - "paths": [ - "M841.143 73.143q14.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-121.714 122.286 80 80q5.143 5.714 5.143 13.143t-5.143 12.571l-26.286 26.286q-5.143 5.143-12.571 5.143t-13.143-5.143l-80-80.571-44.571 45.143q72 89.143 72 205.143 0 66.857-26 127.714t-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-26q116 0 205.143 72l44.571-44.571-98.286-98.286q-5.143-5.714-5.143-13.143t5.143-12.571l26.286-26.286q5.143-5.143 12.571-5.143t13.143 5.143l98.286 98.286 121.714-121.714h-149.143q-8 0-13.143-5.143t-5.143-13.143v-36.571q0-8 5.143-13.143t13.143-5.143h237.714zM329.143 877.714q105.714 0 180.857-75.143t75.143-180.857-75.143-180.857-180.857-75.143-180.857 75.143-75.143 180.857 75.143 180.857 180.857 75.143z" - ], - "width": 877.7142857142858, - "attrs": [], - "isMulticolor": false, - "tags": [ - "mars-stroke" - ], - "defaultCode": 61993, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 504, - "order": 1021, - "prevSize": 14, - "code": 61993, - "name": "mars-stroke" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 504 - }, - { - "icon": { - "paths": [ - "M365.714 368q124 13.714 208.286 107.143t84.286 219.714q0 95.429-49.714 174.857t-134.857 121.143-182.286 30.857q-76-8.571-140.286-50.286t-104-107.429-46-142.286q-6.857-88.571 30-166.857t106.286-128 155.143-58.857v-75.429h-91.429q-8 0-13.143-5.143t-5.143-13.143v-36.571q0-8 5.143-13.143t13.143-5.143h91.429v-94.286l-52.571 52.571q-5.714 5.143-13.143 5.143t-12.571-5.143l-26.286-26.286q-5.143-5.143-5.143-12.571t5.143-13.143l115.429-114.857q10.857-10.857 25.714-10.857t25.714 10.857l115.429 114.857q5.143 5.714 5.143 13.143t-5.143 12.571l-26.286 26.286q-5.143 5.143-12.571 5.143t-13.143-5.143l-52.571-52.571v94.286h91.429q8 0 13.143 5.143t5.143 13.143v36.571q0 8-5.143 13.143t-13.143 5.143h-91.429v75.429zM329.143 950.857q105.714 0 180.857-75.143t75.143-180.857-75.143-180.857-180.857-75.143-180.857 75.143-75.143 180.857 75.143 180.857 180.857 75.143z" - ], - "width": 657.8571428571429, - "attrs": [], - "isMulticolor": false, - "tags": [ - "mars-stroke-v" - ], - "defaultCode": 61994, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 505, - "order": 1022, - "prevSize": 14, - "code": 61994, - "name": "mars-stroke-v" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 505 - }, - { - "icon": { - "paths": [ - "M1086.286 522.857q10.857 10.857 10.857 25.714t-10.857 25.714l-168 168q-5.143 5.714-12.857 5.714t-12.857-5.714l-25.714-25.714q-5.714-5.143-5.714-12.857t5.714-12.857l105.714-105.714h-168v128q0 8-5.143 13.143t-13.143 5.143h-36.571q-8 0-13.143-5.143t-5.143-13.143v-128h-75.429q-13.714 124-107.143 208.286t-219.714 84.286q-95.429 0-174.857-49.714t-121.143-134.857-30.857-182.286q8.571-76 50.286-140.286t107.429-104 142.286-46q88.571-6.857 166.857 30t128 106.286 58.857 155.143h75.429v-128q0-8 5.143-13.143t13.143-5.143h36.571q8 0 13.143 5.143t5.143 13.143v128h168l-105.714-105.714q-5.714-5.143-5.714-12.857t5.714-12.857l25.714-25.714q5.143-5.714 12.857-5.714t12.857 5.714zM329.143 804.571q105.714 0 180.857-75.143t75.143-180.857-75.143-180.857-180.857-75.143-180.857 75.143-75.143 180.857 75.143 180.857 180.857 75.143z" - ], - "width": 1096.8571428571427, - "attrs": [], - "isMulticolor": false, - "tags": [ - "mars-stroke-h" - ], - "defaultCode": 61995, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 506, - "order": 1023, - "prevSize": 14, - "code": 61995, - "name": "mars-stroke-h" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 506 - }, - { - "icon": { - "paths": [ - "M658.286 329.143q0 126.286-84.286 219.714t-208.286 107.143v349.714q0 8-5.143 13.143t-13.143 5.143h-36.571q-8 0-13.143-5.143t-5.143-13.143v-349.714q-124-13.714-208.286-107.143t-84.286-219.714q0-66.857 26-127.714t70.286-105.143 105.143-70.286 127.714-26 127.714 26 105.143 70.286 70.286 105.143 26 127.714zM329.143 585.143q105.714 0 180.857-75.143t75.143-180.857-75.143-180.857-180.857-75.143-180.857 75.143-75.143 180.857 75.143 180.857 180.857 75.143z" - ], - "width": 657.8571428571429, - "attrs": [], - "isMulticolor": false, - "tags": [ - "neuter" - ], - "defaultCode": 61996, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 507, - "order": 1024, - "prevSize": 14, - "code": 61996, - "name": "neuter" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 507 - }, - { - "icon": { - "paths": [ - "M585.143 548.571q0-105.714-75.143-180.857t-180.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.857zM658.286 548.571q0 66.857-26 127.714t-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-26 127.714 26 105.143 70.286 70.286 105.143 26 127.714z" - ], - "width": 657.8571428571429, - "attrs": [], - "isMulticolor": false, - "tags": [ - "genderless" - ], - "defaultCode": 61997, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 508, - "order": 1025, - "prevSize": 14, - "code": 61997, - "name": "genderless" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 508 - }, - { - "icon": { - "paths": [ - "M829.143 73.143q20 0 34.286 14.286t14.286 34.286v780.571q0 20-14.286 34.286t-34.286 14.286h-223.429v-340h113.714l17.143-132.571h-130.857v-84.571q0-32 13.429-48t52.286-16l69.714-0.571v-118.286q-36-5.143-101.714-5.143-77.714 0-124.286 45.714t-46.571 129.143v97.714h-114.286v132.571h114.286v340h-420q-20 0-34.286-14.286t-14.286-34.286v-780.571q0-20 14.286-34.286t34.286-14.286h780.571z" - ], - "width": 877.7142857142858, - "attrs": [], - "isMulticolor": false, - "tags": [ - "facebook-official" - ], - "defaultCode": 62000, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 509, - "order": 1026, - "prevSize": 14, - "code": 62000, - "name": "facebook-official" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 509 - }, - { - "icon": { - "paths": [ - "M0 341.143q0-61.714 21.429-116.286t59.143-95.143 86.857-70.286 105.714-44.571 115.429-14.857q90.286 0 168 38t126.286 110.571 48.571 164q0 54.857-10.857 107.429t-34.286 101.143-57.143 85.429-82.857 58.857-108 22q-38.857 0-77.143-18.286t-54.857-50.286q-5.714 22.286-16 64.286t-13.429 54.286-11.714 40.571-14.857 40.571-18.286 35.714-26.286 44.286-35.429 49.429l-8 2.857-5.143-5.714q-8.571-89.714-8.571-107.429 0-52.571 12.286-118t38-164.286 29.714-116q-18.286-37.143-18.286-96.571 0-47.429 29.714-89.143t75.429-41.714q34.857 0 54.286 23.143t19.429 58.571q0 37.714-25.143 109.143t-25.143 106.857q0 36 25.714 59.714t62.286 23.714q31.429 0 58.286-14.286t44.857-38.857 32-54.286 21.714-63.143 11.429-63.429 3.714-56.857q0-98.857-62.571-154t-163.143-55.143q-114.286 0-190.857 74t-76.571 187.714q0 25.143 7.143 48.571t15.429 37.143 15.429 26 7.143 17.429q0 16-8.571 41.714t-21.143 25.714q-1.143 0-9.714-1.714-29.143-8.571-51.714-32t-34.857-54-18.571-61.714-6.286-60.857z" - ], - "width": 731, - "attrs": [], - "isMulticolor": false, - "tags": [ - "pinterest-p" - ], - "defaultCode": 62001, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 510, - "order": 1027, - "prevSize": 14, - "code": 62001, - "name": "pinterest-p" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 510 - }, - { - "icon": { - "paths": [ - "M562.857 556.571q7.429 0 55.714 25.143t51.143 30.286q1.143 2.857 1.143 8.571 0 18.857-9.714 43.429-9.143 22.286-40.571 37.429t-58.286 15.143q-32.571 0-108.571-35.429-56-25.714-97.143-67.429t-84.571-105.714q-41.143-61.143-40.571-110.857v-4.571q1.714-52 42.286-90.286 13.714-12.571 29.714-12.571 3.429 0 10.286 0.857t10.857 0.857q10.857 0 15.143 3.714t8.857 15.714q4.571 11.429 18.857 50.286t14.286 42.857q0 12-19.714 32.857t-19.714 26.571q0 4 2.857 8.571 19.429 41.714 58.286 78.286 32 30.286 86.286 57.714 6.857 4 12.571 4 8.571 0 30.857-27.714t29.714-27.714zM446.857 859.429q72.571 0 139.143-28.571t114.571-76.571 76.571-114.571 28.571-139.143-28.571-139.143-76.571-114.571-114.571-76.571-139.143-28.571-139.143 28.571-114.571 76.571-76.571 114.571-28.571 139.143q0 116 68.571 210.286l-45.143 133.143 138.286-44q90.286 59.429 197.143 59.429zM446.857 69.714q87.429 0 167.143 34.286t137.429 92 92 137.429 34.286 167.143-34.286 167.143-92 137.429-137.429 92-167.143 34.286q-111.429 0-208.571-53.714l-238.286 76.571 77.714-231.429q-61.714-101.714-61.714-222.286 0-87.429 34.286-167.143t92-137.429 137.429-92 167.143-34.286z" - ], - "width": 877.7142857142858, - "attrs": [], - "isMulticolor": false, - "tags": [ - "whatsapp" - ], - "defaultCode": 62002, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 511, - "order": 1028, - "prevSize": 14, - "code": 62002, - "name": "whatsapp" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 511 - }, - { - "icon": { - "paths": [ - "M73.143 804.571h585.143v-73.143h-585.143v73.143zM73.143 512h585.143v-73.143h-585.143v73.143zM969.143 768q0-22.857-16-38.857t-38.857-16-38.857 16-16 38.857 16 38.857 38.857 16 38.857-16 16-38.857zM73.143 219.429h585.143v-73.143h-585.143v73.143zM969.143 475.429q0-22.857-16-38.857t-38.857-16-38.857 16-16 38.857 16 38.857 38.857 16 38.857-16 16-38.857zM969.143 182.857q0-22.857-16-38.857t-38.857-16-38.857 16-16 38.857 16 38.857 38.857 16 38.857-16 16-38.857zM1024 658.286v219.429h-1024v-219.429h1024zM1024 365.714v219.429h-1024v-219.429h1024zM1024 73.143v219.429h-1024v-219.429h1024z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "server" - ], - "defaultCode": 62003, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 512, - "order": 1029, - "prevSize": 14, - "code": 62003, - "name": "server2" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 512 - }, - { - "icon": { - "paths": [ - "M402.286 512q-90.857 0-155.143-64.286t-64.286-155.143 64.286-155.143 155.143-64.286 155.143 64.286 64.286 155.143-64.286 155.143-155.143 64.286zM950.857 585.143h201.143q7.429 0 12.857 5.429t5.429 12.857v109.714q0 7.429-5.429 12.857t-12.857 5.429h-201.143v201.143q0 7.429-5.429 12.857t-12.857 5.429h-109.714q-7.429 0-12.857-5.429t-5.429-12.857v-201.143h-201.143q-7.429 0-12.857-5.429t-5.429-12.857v-109.714q0-7.429 5.429-12.857t12.857-5.429h201.143v-201.143q0-7.429 5.429-12.857t12.857-5.429h109.714q7.429 0 12.857 5.429t5.429 12.857v201.143zM530.286 713.143q0 29.714 21.714 51.429t51.429 21.714h146.286v136q-38.857 28.571-97.714 28.571h-499.429q-69.143 0-110.857-39.429t-41.714-108.571q0-30.286 2-59.143t8-62.286 15.143-62 24.571-55.714 35.429-46.286 48.857-30.571 63.714-11.429q10.857 0 22.286 9.714 45.143 34.857 88.286 52.286t94 17.429 94-17.429 88.286-52.286q11.429-9.714 22.286-9.714 75.429 0 124 54.857h-127.429q-29.714 0-51.429 21.714t-21.714 51.429v109.714z" - ], - "width": 1170, - "attrs": [], - "isMulticolor": false, - "tags": [ - "user-plus" - ], - "defaultCode": 62004, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 513, - "order": 1030, - "prevSize": 14, - "code": 62004, - "name": "user-plus" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 513 - }, - { - "icon": { - "paths": [ - "M402.286 512q-90.857 0-155.143-64.286t-64.286-155.143 64.286-155.143 155.143-64.286 155.143 64.286 64.286 155.143-64.286 155.143-155.143 64.286zM1017.714 694.857l142.286 142.286q5.143 5.143 5.143 13.143 0 7.429-5.143 12.571l-77.714 77.714q-5.143 5.143-12.571 5.143-8 0-13.143-5.143l-142.286-142.286-142.286 142.286q-5.143 5.143-13.143 5.143-7.429 0-12.571-5.143l-77.714-77.714q-5.143-5.143-5.143-12.571 0-8 5.143-13.143l142.286-142.286-142.286-142.286q-5.143-5.143-5.143-13.143 0-7.429 5.143-12.571l77.714-77.714q5.143-5.143 12.571-5.143 8 0 13.143 5.143l142.286 142.286 142.286-142.286q5.143-5.143 13.143-5.143 7.429 0 12.571 5.143l77.714 77.714q5.143 5.143 5.143 12.571 0 8-5.143 13.143zM733.143 694.857l-103.429 103.429q-21.143 21.143-21.143 52 0 30.286 21.143 51.429l47.429 47.429q-12 1.714-25.143 1.714h-499.429q-69.143 0-110.857-39.429t-41.714-108.571q0-30.286 2-59.143t8-62.286 15.143-62 24.571-55.714 35.429-46.286 48.857-30.571 63.714-11.429q10.857 0 22.286 9.714 88 69.714 182.286 69.714t182.286-69.714q11.429-9.714 22.286-9.714 16 0 32.571 3.429-16 15.429-23.429 28.571t-7.429 32q0 30.857 21.143 52z" - ], - "width": 1170, - "attrs": [], - "isMulticolor": false, - "tags": [ - "user-times" - ], - "defaultCode": 62005, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 514, - "order": 1031, - "prevSize": 14, - "code": 62005, - "name": "user-times" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 514 - }, - { - "icon": { - "paths": [ - "M146.286 585.143h987.429q14.857 0 25.714 10.857t10.857 25.714v256h-146.286v-146.286h-877.714v146.286h-146.286v-694.857q0-14.857 10.857-25.714t25.714-10.857h73.143q14.857 0 25.714 10.857t10.857 25.714v402.286zM475.429 402.286q0-60.571-42.857-103.429t-103.429-42.857-103.429 42.857-42.857 103.429 42.857 103.429 103.429 42.857 103.429-42.857 42.857-103.429zM1170.286 548.571v-36.571q0-90.857-64.286-155.143t-155.143-64.286h-402.286q-14.857 0-25.714 10.857t-10.857 25.714v219.429h658.286z" - ], - "width": 1170, - "attrs": [], - "isMulticolor": false, - "tags": [ - "bed", - "hotel" - ], - "defaultCode": 62006, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 515, - "order": 1032, - "name": "bed, hotel", - "prevSize": 14, - "code": 62006 - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 515 - }, - { - "icon": { - "paths": [ - "M877.714 0l-109.714 256h109.714v109.714h-156.571l-31.429 73.143h188v109.714h-234.857l-204 475.429-204-475.429h-234.857v-109.714h188l-31.429-73.143h-156.571v-109.714h109.714l-109.714-256h146.286l184.571 438.857h216l184.571-438.857h146.286zM438.857 694.857l61.714-146.286h-123.429z" - ], - "width": 877.7142857142858, - "attrs": [], - "isMulticolor": false, - "tags": [ - "viacoin" - ], - "defaultCode": 62007, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 516, - "order": 1033, - "prevSize": 14, - "code": 62007, - "name": "viacoin" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 516 - }, - { - "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": 1034, - "prevSize": 14, - "code": 62008, - "name": "train" - }, - "setIdx": 0, - "setId": 4, - "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": 1035, - "prevSize": 14, - "code": 62009, - "name": "subway" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 518 - }, - { - "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": { - "id": 519, - "order": 1036, - "prevSize": 14, - "code": 62010, - "name": "medium" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 519 - }, - { - "icon": { - "paths": [ - "M462.286 573.714l152-285.143h-64l-89.714 178.286q-13.714 27.429-25.143 52.571l-24-52.571-88.571-178.286h-68.571l150.286 281.714v185.143h57.714v-181.714zM877.714 73.143v877.714h-877.714v-877.714h877.714z" - ], - "width": 877.7142857142858, - "attrs": [], - "isMulticolor": false, - "tags": [ - "y-combinator", - "yc" - ], - "defaultCode": 62011, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 520, - "order": 1037, - "name": "y-combinator, yc", - "prevSize": 14, - "code": 62011 - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 520 - }, - { - "icon": { - "paths": [ - "M273.143 957.143q-4.571 9.143-15.429 19.714t-21.143 14.571q-14.286 5.143-29.429-2t-16.286-18q-0.571-12.571 22.857-31.429t38.857-21.714q13.143-2.286 19.429 12.286t1.143 26.571zM1039.429 957.143q4 9.143 14.857 19.714t21.714 14.571q14.286 5.143 29.429-2t15.714-18q1.143-12.571-22.571-31.429t-39.143-21.714q-12.571-2.286-18.857 12.286t-1.143 26.571zM1066.857 894.857q7.429 15.429 32.286 34t44.286 23.714q25.714 7.429 46.857-2.571t21.143-28.857q0-26.286-38.571-57.429t-66-34q-22.857-2.857-36.286 21.429t-3.714 43.714zM244.571 894.857q-7.429 15.429-32 34t-44 23.714q-25.714 7.429-46.857-2.571t-21.143-28.857q0-26.286 38.571-57.429t66-34q22.857-2.857 36 21.429t3.429 43.714zM661.714 252.571h0.571q-23.429 0-43.429 8.571 15.429 4.571 25.143 17.429t9.714 28.286q0 20-15.429 34.286t-37.143 14.286q-29.714 0-45.714-24.571-2.857 13.143-2.857 24 0 42.286 32 72.286t77.143 30q45.714 0 77.714-30t32-72.286-32-72.286-77.714-30zM835.429 128q-56.571-62.286-126-75.143t-140.286 25.429q15.429-34.286 47.143-55.143t67.429-22.571 69.429 9.714 56.857 42.571 25.429 75.143zM1264 836q4.571 6.286-6.286 24 4 13.143 4 22.857 0.571 32-25.429 64.286t-62.571 52.286-67.429 21.143q-27.429 1.143-52.571-12.286t-37.714-37.429q-392.571 14.286-719.429 0-13.143 23.429-38 37.143t-52.857 12.571q-49.143-1.714-102.571-46t-52.857-91.714q1.143-12.571 4-22.857-10.857-17.714-6.286-24 3.429-5.714 17.714-0.571 8-12.571 23.429-29.143-4-16.571 1.143-21.714 6.286-5.714 22.286 2.286 16.571-11.429 33.714-19.429 0-16.571 7.429-21.143 13.143-6.857 29.143 9.143 20-2.857 34.857 1.143 10.286 2.286 21.714 10.857v-41.714q-6.286 0-10.286-1.143-30.286-5.714-55.429-25.429t-31.429-50q-5.143-21.714 0-46.286 8.571-35.429 53.143-54.286 1.143-9.714 10.857-20.286t20.571-13.429 18.857 4.286 10.857 17.429h7.429q26.286 2.857 34.286 13.143 1.714 1.714 2.857 4 5.714-0.571 17.429-2t17.429-2q-8.571-6.286-17.143-9.714-13.143-22.857-52-24.571 0-3.429 0.571-5.714-35.429-1.143-67.714-10.571t-48.286-27.143q-18.286-20.571-24.286-52.571t-1.429-64q9.143-72 51.429-102.286 13.143-9.143 29.714-2.571t18.286 23.143q0 0.571 0.857 8t1.429 12 1.714 11.429 3.143 10.857 4.857 5.714q15.429 8 43.429 6.857 27.429-26.286 56-42.286-22.857-2.286-92.571 8l26.857-26.286q34.857-33.143 93.143-63.429 82.857-41.714 161.143-49.143-11.429-4.571-23.429-8.857t-26.857-8-24.286-6-27.143-6.286-24.571-5.714q340-72 516.571 79.429 56 48 90.286 126.857 48.571 5.714 69.143-5.143h0.571q2.857-1.714 4.857-5.714t3.143-10.857 1.714-11.143 1.714-12.286l0.571-8q1.714-16 18.286-22.857t29.714 2.857q41.714 29.714 52 101.714 4 32.571-2 64.571t-24.286 52q-16 18.286-47.714 27.714t-66 10.571v5.714q-40.571 1.143-54.286 24.571-8 2.857-17.714 9.714 6.286 0.571 18.286 2t17.143 2q0.571-2.286 2.857-4.571 9.143-10.286 34.286-13.143h7.429q2.857-10.286 10.857-17.143t18.857-4.571 20.571 13.143 10.857 20.571q45.143 18.286 53.143 54.286 5.143 22.857 0.571 46.286-6.857 30.286-32 50.286t-55.429 25.143q-5.714 1.143-9.714 1.143 0 28-0.571 41.714 11.429-8.571 21.714-10.857 14.857-4 34.857-1.143 16-16 29.143-9.143 8 5.143 8 21.143 18.857 9.143 33.714 19.429 15.429-7.429 21.714-2.286 5.714 5.714 1.143 21.714 16 17.143 23.429 29.143 13.143-4.571 17.714 0.571zM1106.857 292q0 16.571-5.143 30.857 46.857 18.286 64 75.429 2.286-21.143-5.429-56.286t-23.714-51.714q-11.429-10.857-20.571-9.714t-9.143 11.429zM1062.286 349.143q20 24 27.143 62t-0.286 71.143q38.286-7.429 55.429-25.714 7.429-8 10.286-16-1.714-36.571-17.714-65.429t-45.143-38q-8.571 8.571-29.714 12zM1041.143 351.429q-17.143 0-25.143-0.571 24 65.714 30.286 136.571 12 0 24.571-1.714 9.143-38.857 0.571-77.143t-30.286-57.143zM147.429 398.286q17.143-57.143 64-75.429-5.143-14.286-5.143-30.857 0-10.286-9.429-11.429t-20.286 9.714q-16 16.571-23.714 51.714t-5.429 56.286zM168 456.571q16.571 17.714 55.429 25.714-7.429-33.143-0.286-71.143t27.143-62v0q-21.143-3.429-29.714-12-29.143 9.143-44.857 37.714t-18 65.714q5.143 9.714 10.286 16zM269.143 487.429q8-70.857 41.714-134.286-10.857 2.286-31.429 10.286l-25.714 10.857v-0.571q-26.286 50.857-11.429 112 14.286 1.714 26.857 1.714zM819.429 509.714q4.571 21.714 9.429 62t6.571 51.143q1.714 10.286 5.429 12.286t13.429-2.571q22.857-11.429 35.429-48.857t13.143-71.714q-13.714-1.143-83.429-2.286zM658.286 143.429q-66.286 0-113.714 47.143t-47.429 113.429q0 66.857 47.429 114t113.714 47.143 113.714-47.143 47.429-114q0-66.286-47.429-113.429t-113.714-47.143zM788.571 508.571q-60.571-1.143-120.571 0v-0.571q-0.571 15.429 1.429 49.143t7.714 37.714q16.571 8 53.429 8.286t54.571-6q5.143-1.714 6.286-22.286t-0.286-39.714-2.571-26.571zM635.429 622.286q4.571-2.286 5.429-27.429t-0.286-50.286-2.286-36v-0.571q-121.143 1.714-122.286 1.714-2.286 11.429-4 35.429t0 47.429 8 26.286q19.429 8.571 57.714 9.143t57.714-5.714zM410.286 514.286q-9.143 33.714 2.571 67.714t44.286 48.286q8.571 4.571 13.714 2.857t6.857-12q1.714-9.143 4.571-51.429t5.714-58.857q-39.429 1.143-77.714 3.429zM337.714 586.286q1.714 13.143-19.429 20.571 75.429 80.571 155.143 137.143t174.571 88q98.286-28 177.429-83.429t167.714-142.857q-18.857-7.429-17.143-19.429l1.714-5.143v0q-9.714-1.143-28.571-3.143t-27.429-2.571q-14.857 51.429-46.857 75.429-29.143 21.714-46.857-0.571-2.857-3.429-5.143-8-4-7.429-9.714-35.429-1.143 2.857-2.857 5.143t-4.286 4-4.571 3.143-5.429 2.286l-5.714 1.429t-6.857 1.143l-6.857 0.857t-7.714 0.571-7.714 0.286q-60.571 5.143-93.143-6.286-2.286 9.714-5.714 15.143t-12 8.571-13.143 4-20.571 2q-1.143 0-1.714 0.286t-1.714 0.286h-1.714q-102.286 9.714-116-22.857-1.143 36-32 30.857-26.857-4.571-52-30.857-6.857-7.429-11.429-14.857-9.714-16.571-14.857-37.143-33.143 3.429-49.714 5.714 0.571 1.143 2.286 5.714zM289.714 945.143q1.714-8 1.714-17.143-9.714-40.571-29.143-74.286t-41.714-40q-23.429-6.857-58 8.286t-59.714 45.714-22.286 61.429q20 30.286 57.143 53.143t68 24q29.143 1.143 53.714-16t30.286-45.143zM291.429 847.429q13.143 36 15.429 68 111.429-64.571 224-99.429-56-29.714-103.143-68.571t-102.571-94.286q-3.429 2.286-16.571 7.429 0 1.143-0.571 2.857t-0.571 2.286q17.714 10.286 12.571 21.143-6.857 13.143-32 19.429-5.714 7.429-16.571 13.714h-0.571q-1.143 47.429 0.571 85.714 10.857 19.429 20 41.714zM330.857 942.286q304 12 654.286 0-145.143-84-244.571-112-43.429 20-89.143 32.571-4.571 1.714-9.143 0-37.143-12-73.714-28-118.857 34.286-237.714 107.429h-0.571v0.571q0.571 0 0.571-0.571zM1007.429 916q2.286-30.857 16-68.571 8-21.714 18.857-40.571l-0.571 0.571q1.714-44 1.714-87.429-8.571-4.571-17.143-14.286-24-5.143-32-18.857-5.143-11.429 12.571-21.714-1.143-2.286-1.143-5.143-9.143-2.286-16-6.857-116.571 108.571-218.857 162.286 113.143 33.714 236.571 100.571zM1231.429 929.143q2.857-30.857-22.286-61.429t-59.429-45.714-58.286-8.286q-21.714 6.286-41.429 40.286t-29.429 74q0 9.143 1.714 17.143 5.714 28 30.286 45.143t53.714 16q30.857-1.143 68-24t57.143-53.143z" - ], - "width": 1312, - "attrs": [], - "isMulticolor": false, - "tags": [ - "optin-monster" - ], - "defaultCode": 62012, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 521, - "order": 1038, - "prevSize": 14, - "code": 62012, - "name": "optin-monster" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 521 - }, - { - "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": 1039, - "prevSize": 14, - "code": 62013, - "name": "opencart" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 522 - }, - { - "icon": { - "paths": [ - "M512 36.571q-96.571 0-184.571 37.714t-151.714 101.429-101.429 151.714-37.714 184.571 37.714 184.571 101.429 151.714 151.714 101.429 184.571 37.714 184.571-37.714 151.714-101.429 101.429-151.714 37.714-184.571-37.714-184.571-101.429-151.714-151.714-101.429-184.571-37.714zM512 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.571zM283.429 475.429q9.143 0 9.143 9.143v274.286q0 9.143-9.143 9.143h-18.286q-9.143 0-9.143-9.143v-274.286q0-9.143 9.143-9.143h18.286zM512 512q30.286 0 51.714 21.429t21.429 51.714q0 20-10 36.571t-26.571 26.286v65.143q0 8-5.143 13.143t-13.143 5.143h-36.571q-8 0-13.143-5.143t-5.143-13.143v-65.143q-16.571-9.714-26.571-26.286t-10-36.571q0-30.286 21.429-51.714t51.714-21.429zM512 73.143q119.429 0 220.286 58.857t159.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.286 58.857-220.286 159.714-159.714 220.286-58.857zM310.857 347.429v54.857q0 8 5.143 13.143t13.143 5.143h36.571q8 0 13.143-5.143t5.143-13.143v-54.857q0-53.143 37.429-90.571t90.571-37.429 90.571 37.429 37.429 90.571v54.857q0 8 5.143 13.143t13.143 5.143h36.571q8 0 13.143-5.143t5.143-13.143v-54.857q0-83.429-58.857-142.286t-142.286-58.857-142.286 58.857-58.857 142.286zM804.571 768v-292.571q0-14.857-10.857-25.714t-25.714-10.857h-512q-14.857 0-25.714 10.857t-10.857 25.714v292.571q0 14.857 10.857 25.714t25.714 10.857h512q14.857 0 25.714-10.857t10.857-25.714z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "expeditedssl" - ], - "defaultCode": 62014, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 523, - "order": 1040, - "prevSize": 14, - "code": 62014, - "name": "expeditedssl" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 523 - }, - { - "icon": { - "paths": [ - "M1097.143 292.571v438.857h-950.857v-438.857h950.857zM1170.286 621.714h73.143v-219.429h-73.143v-164.571q0-8-5.143-13.143t-13.143-5.143h-1060.571q-8 0-13.143 5.143t-5.143 13.143v548.571q0 8 5.143 13.143t13.143 5.143h1060.571q8 0 13.143-5.143t5.143-13.143v-164.571zM1316.571 402.286v219.429q0 30.286-21.429 51.714t-51.714 21.429v91.429q0 37.714-26.857 64.571t-64.571 26.857h-1060.571q-37.714 0-64.571-26.857t-26.857-64.571v-548.571q0-37.714 26.857-64.571t64.571-26.857h1060.571q37.714 0 64.571 26.857t26.857 64.571v91.429q30.286 0 51.714 21.429t21.429 51.714z" - ], - "width": 1317, - "attrs": [], - "isMulticolor": false, - "tags": [ - "battery-4", - "battery-full" - ], - "defaultCode": 62016, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 524, - "order": 1041, - "name": "battery-4, battery-full", - "prevSize": 14, - "code": 62016 - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 524 - }, - { - "icon": { - "paths": [ - "M146.286 731.429v-438.857h731.429v438.857h-731.429zM1243.429 329.143q30.286 0 51.714 21.429t21.429 51.714v219.429q0 30.286-21.429 51.714t-51.714 21.429v91.429q0 37.714-26.857 64.571t-64.571 26.857h-1060.571q-37.714 0-64.571-26.857t-26.857-64.571v-548.571q0-37.714 26.857-64.571t64.571-26.857h1060.571q37.714 0 64.571 26.857t26.857 64.571v91.429zM1243.429 621.714v-219.429h-73.143v-164.571q0-8-5.143-13.143t-13.143-5.143h-1060.571q-8 0-13.143 5.143t-5.143 13.143v548.571q0 8 5.143 13.143t13.143 5.143h1060.571q8 0 13.143-5.143t5.143-13.143v-164.571h73.143z" - ], - "width": 1317, - "attrs": [], - "isMulticolor": false, - "tags": [ - "battery-3", - "battery-three-quarters" - ], - "defaultCode": 62017, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 525, - "order": 1042, - "name": "battery-3, battery-three-quarters", - "prevSize": 14, - "code": 62017 - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 525 - }, - { - "icon": { - "paths": [ - "M146.286 731.429v-438.857h512v438.857h-512zM1243.429 329.143q30.286 0 51.714 21.429t21.429 51.714v219.429q0 30.286-21.429 51.714t-51.714 21.429v91.429q0 37.714-26.857 64.571t-64.571 26.857h-1060.571q-37.714 0-64.571-26.857t-26.857-64.571v-548.571q0-37.714 26.857-64.571t64.571-26.857h1060.571q37.714 0 64.571 26.857t26.857 64.571v91.429zM1243.429 621.714v-219.429h-73.143v-164.571q0-8-5.143-13.143t-13.143-5.143h-1060.571q-8 0-13.143 5.143t-5.143 13.143v548.571q0 8 5.143 13.143t13.143 5.143h1060.571q8 0 13.143-5.143t5.143-13.143v-164.571h73.143z" - ], - "width": 1317, - "attrs": [], - "isMulticolor": false, - "tags": [ - "battery-2", - "battery-half" - ], - "defaultCode": 62018, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 526, - "order": 1043, - "name": "battery-2, battery-half", - "prevSize": 14, - "code": 62018 - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 526 - }, - { - "icon": { - "paths": [ - "M146.286 731.429v-438.857h292.571v438.857h-292.571zM1243.429 329.143q30.286 0 51.714 21.429t21.429 51.714v219.429q0 30.286-21.429 51.714t-51.714 21.429v91.429q0 37.714-26.857 64.571t-64.571 26.857h-1060.571q-37.714 0-64.571-26.857t-26.857-64.571v-548.571q0-37.714 26.857-64.571t64.571-26.857h1060.571q37.714 0 64.571 26.857t26.857 64.571v91.429zM1243.429 621.714v-219.429h-73.143v-164.571q0-8-5.143-13.143t-13.143-5.143h-1060.571q-8 0-13.143 5.143t-5.143 13.143v548.571q0 8 5.143 13.143t13.143 5.143h1060.571q8 0 13.143-5.143t5.143-13.143v-164.571h73.143z" - ], - "width": 1317, - "attrs": [], - "isMulticolor": false, - "tags": [ - "battery-1", - "battery-quarter" - ], - "defaultCode": 62019, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 527, - "order": 1044, - "name": "battery-1, battery-quarter", - "prevSize": 14, - "code": 62019 - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 527 - }, - { - "icon": { - "paths": [ - "M1243.429 329.143q30.286 0 51.714 21.429t21.429 51.714v219.429q0 30.286-21.429 51.714t-51.714 21.429v91.429q0 37.714-26.857 64.571t-64.571 26.857h-1060.571q-37.714 0-64.571-26.857t-26.857-64.571v-548.571q0-37.714 26.857-64.571t64.571-26.857h1060.571q37.714 0 64.571 26.857t26.857 64.571v91.429zM1243.429 621.714v-219.429h-73.143v-164.571q0-8-5.143-13.143t-13.143-5.143h-1060.571q-8 0-13.143 5.143t-5.143 13.143v548.571q0 8 5.143 13.143t13.143 5.143h1060.571q8 0 13.143-5.143t5.143-13.143v-164.571h73.143z" - ], - "width": 1317, - "attrs": [], - "isMulticolor": false, - "tags": [ - "battery-0", - "battery-empty" - ], - "defaultCode": 62020, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 528, - "order": 1045, - "name": "battery-0, battery-empty", - "prevSize": 14, - "code": 62020 - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 528 - }, - { - "icon": { - "paths": [ - "M647.429 596q17.714 17.143 8 39.429-9.714 22.857-33.714 22.857h-218.286l114.857 272q5.714 14.286 0 28t-19.429 20l-101.143 42.857q-14.286 5.714-28 0t-20-19.429l-109.143-258.286-178.286 178.286q-10.857 10.857-25.714 10.857-6.857 0-13.714-2.857-22.857-9.714-22.857-33.714v-859.429q0-24 22.857-33.714 6.857-2.857 13.714-2.857 15.429 0 25.714 10.857z" - ], - "width": 657.8571428571429, - "attrs": [], - "isMulticolor": false, - "tags": [ - "mouse-pointer" - ], - "defaultCode": 62021, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 529, - "order": 1046, - "prevSize": 14, - "code": 62021, - "name": "mouse-pointer" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 529 - }, - { - "icon": { - "paths": [ - "M475.429 73.143q-182.857 0-182.857 128v237.714h73.143v73.143h-73.143v310.857q0 128 182.857 128h36.571v73.143h-36.571q-155.429 0-219.429-83.429-64 83.429-219.429 83.429h-36.571v-73.143h36.571q182.857 0 182.857-128v-310.857h-73.143v-73.143h73.143v-237.714q0-128-182.857-128h-36.571v-73.143h36.571q155.429 0 219.429 83.429 64-83.429 219.429-83.429h36.571v73.143h-36.571z" - ], - "width": 511.8571428571429, - "attrs": [], - "isMulticolor": false, - "tags": [ - "i-cursor" - ], - "defaultCode": 62022, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 530, - "order": 1047, - "prevSize": 14, - "code": 62022, - "name": "i-cursor" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 530 - }, - { - "icon": { - "paths": [ - "M1170.286 219.429h-73.143v585.143h73.143v219.429h-219.429v-73.143h-731.429v73.143h-219.429v-219.429h73.143v-585.143h-73.143v-219.429h219.429v73.143h731.429v-73.143h219.429v219.429zM1024 73.143v73.143h73.143v-73.143h-73.143zM73.143 73.143v73.143h73.143v-73.143h-73.143zM146.286 950.857v-73.143h-73.143v73.143h73.143zM950.857 877.714v-73.143h73.143v-585.143h-73.143v-73.143h-731.429v73.143h-73.143v585.143h73.143v73.143h731.429zM1097.143 950.857v-73.143h-73.143v73.143h73.143zM731.429 365.714h219.429v438.857h-512v-146.286h-219.429v-438.857h512v146.286zM292.571 585.143h365.714v-292.571h-365.714v292.571zM877.714 731.429v-292.571h-146.286v219.429h-219.429v73.143h365.714z" - ], - "width": 1170, - "attrs": [], - "isMulticolor": false, - "tags": [ - "object-group" - ], - "defaultCode": 62023, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 531, - "order": 1048, - "prevSize": 14, - "code": 62023, - "name": "object-group" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 531 - }, - { - "icon": { - "paths": [ - "M1316.571 438.857h-73.143v365.714h73.143v219.429h-219.429v-73.143h-512v73.143h-219.429v-219.429h73.143v-73.143h-219.429v73.143h-219.429v-219.429h73.143v-365.714h-73.143v-219.429h219.429v73.143h512v-73.143h219.429v219.429h-73.143v73.143h219.429v-73.143h219.429v219.429zM1170.286 292.571v73.143h73.143v-73.143h-73.143zM804.571 73.143v73.143h73.143v-73.143h-73.143zM73.143 73.143v73.143h73.143v-73.143h-73.143zM146.286 731.429v-73.143h-73.143v73.143h73.143zM877.714 658.286h-73.143v73.143h73.143v-73.143zM219.429 658.286h512v-73.143h73.143v-365.714h-73.143v-73.143h-512v73.143h-73.143v365.714h73.143v73.143zM512 950.857v-73.143h-73.143v73.143h73.143zM1243.429 950.857v-73.143h-73.143v73.143h73.143zM1170.286 804.571v-365.714h-73.143v-73.143h-219.429v219.429h73.143v219.429h-219.429v-73.143h-219.429v73.143h73.143v73.143h512v-73.143h73.143z" - ], - "width": 1317, - "attrs": [], - "isMulticolor": false, - "tags": [ - "object-ungroup" - ], - "defaultCode": 62024, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 532, - "order": 1049, - "prevSize": 14, - "code": 62024, - "name": "object-ungroup" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 532 - }, - { - "icon": { - "paths": [ - "M585.143 713.143v237.714h-530.286q-22.857 0-38.857-16t-16-38.857v-768q0-22.857 16-38.857t38.857-16h768q22.857 0 38.857 16t16 38.857v530.286h-237.714q-22.857 0-38.857 16t-16 38.857zM658.286 731.429h217.714q-8.571 46.857-37.143 75.429l-105.143 105.143q-28.571 28.571-75.429 37.143v-217.714z" - ], - "width": 877.7142857142858, - "attrs": [], - "isMulticolor": false, - "tags": [ - "sticky-note" - ], - "defaultCode": 62025, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 533, - "order": 1050, - "prevSize": 14, - "code": 62025, - "name": "sticky-note" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 533 - }, - { - "icon": { - "paths": [ - "M800 731.429h-141.714v141.714q16.571-5.714 23.429-12.571l105.714-105.714q6.857-6.857 12.571-23.429zM640 658.286h164.571v-512h-731.429v731.429h512v-164.571q0-22.857 16-38.857t38.857-16zM877.714 128v585.143q0 22.857-11.429 50.286t-27.429 43.429l-105.143 105.143q-16 16-43.429 27.429t-50.286 11.429h-585.143q-22.857 0-38.857-16t-16-38.857v-768q0-22.857 16-38.857t38.857-16h768q22.857 0 38.857 16t16 38.857z" - ], - "width": 877.7142857142858, - "attrs": [], - "isMulticolor": false, - "tags": [ - "sticky-note-o" - ], - "defaultCode": 62026, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 534, - "order": 1051, - "prevSize": 14, - "code": 62026, - "name": "sticky-note-o" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 534 - }, - { - "icon": { - "paths": [ - "M1114.857 570.286q0 14.857-8.857 25.429t-22 13.429q-4.571 1.143-10.286 1.143h-87.429v-80h87.429q5.714 0 10.286 1.143 13.143 2.857 22 13.429t8.857 25.429zM1104.571 448.571q0 14.286-8.571 24t-21.714 12q-1.714 0.571-8.571 0.571h-79.429v-73.714h79.429q1.714 0 4.857 0.286t3.714 0.286q13.143 2.286 21.714 12.286t8.571 24.286zM416 542.286v-176h-130.286v176q0 33.143-21.714 54t-60 20.857q-61.714 0-130.857-33.714v64q30.286 8.571 69.143 13.143t62.286 5.143l24 0.571q187.429 0 187.429-124zM824 647.429v-64.571q-56.571 29.714-114.286 33.714-61.714 4.571-96.571-23.429t-34.857-81.143 34.857-81.143 96.571-23.429q57.714 4 114.286 33.143v-64q-27.429-6.857-57.143-11.143t-45.714-5.429l-16-1.143q-72.571-3.429-124.857 8t-80.286 34.286-40.571 50.286-12.571 60.571 12.571 60.571 40.571 50.286 80.286 34.286 124.857 8q57.714-2.286 118.857-17.714zM1243.429 581.714q0-30.857-24.571-50.571t-62.286-22.571v-1.714q32.571-4.571 50.857-23.714t18.286-45.429q0-31.429-23.429-50.286t-61.143-20.571q-1.714 0-6.857-0.286t-8-0.286h-260v291.429h280.571q42.286 0 69.429-20.857t27.143-55.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-jcb" - ], - "defaultCode": 62027, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 535, - "order": 1052, - "prevSize": 14, - "code": 62027, - "name": "cc-jcb" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 535 - }, - { - "icon": { - "paths": [ - "M490.286 709.143v-396q-60.571 23.429-98.286 77.429t-37.714 120.857 37.714 120.857 98.286 76.857zM778.286 511.429q0-66.857-37.714-120.857t-98.286-77.429v396.571q60.571-23.429 98.286-77.429t37.714-120.857zM901.143 511.429q0 90.857-44.857 168t-122 122-168 44.857q-68 0-130-26.571t-106.857-71.429-71.429-106.857-26.571-130q0-90.857 44.857-168t122-122 168-44.857 168 44.857 122 122 44.857 168zM1120 515.429q0-79.429-31.714-149.429t-84.286-117.429-122-74.857-144.286-27.429h-172q-100.571 0-184.857 46.286t-134.286 131.429-50 191.429q0 97.714 49.714 181.429t134.857 132.286 184.571 48.571h172q73.714 0 143.714-28.857t122.571-77.143 84.286-115.714 31.714-140.571zM1316.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-diners-club" - ], - "defaultCode": 62028, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 536, - "order": 1053, - "prevSize": 14, - "code": 62028, - "name": "cc-diners-club" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 536 - }, - { - "icon": { - "paths": [ - "M950.857 932.571v-621.714q0-7.429-5.429-12.857t-12.857-5.429h-621.714q-7.429 0-12.857 5.429t-5.429 12.857v621.714q0 7.429 5.429 12.857t12.857 5.429h621.714q7.429 0 12.857-5.429t5.429-12.857zM1024 310.857v621.714q0 37.714-26.857 64.571t-64.571 26.857h-621.714q-37.714 0-64.571-26.857t-26.857-64.571v-621.714q0-37.714 26.857-64.571t64.571-26.857h621.714q37.714 0 64.571 26.857t26.857 64.571zM804.571 91.429v91.429h-73.143v-91.429q0-7.429-5.429-12.857t-12.857-5.429h-621.714q-7.429 0-12.857 5.429t-5.429 12.857v621.714q0 7.429 5.429 12.857t12.857 5.429h91.429v73.143h-91.429q-37.714 0-64.571-26.857t-26.857-64.571v-621.714q0-37.714 26.857-64.571t64.571-26.857h621.714q37.714 0 64.571 26.857t26.857 64.571z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "clone" - ], - "defaultCode": 62029, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 537, - "order": 1054, - "prevSize": 14, - "code": 62029, - "name": "clone" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 537 - }, - { - "icon": { - "paths": [ - "M987.429 256l-219.429 402.286h438.857zM256 256l-219.429 402.286h438.857zM725.143 146.286q-8 22.857-26 40.857t-40.857 26v737.714h347.429q8 0 13.143 5.143t5.143 13.143v36.571q0 8-5.143 13.143t-13.143 5.143h-768q-8 0-13.143-5.143t-5.143-13.143v-36.571q0-8 5.143-13.143t13.143-5.143h347.429v-737.714q-22.857-8-40.857-26t-26-40.857h-280.571q-8 0-13.143-5.143t-5.143-13.143v-36.571q0-8 5.143-13.143t13.143-5.143h280.571q12-32.571 40-52.857t63.429-20.286 63.429 20.286 40 52.857h280.571q8 0 13.143 5.143t5.143 13.143v36.571q0 8-5.143 13.143t-13.143 5.143h-280.571zM621.714 155.429q18.857 0 32.286-13.429t13.429-32.286-13.429-32.286-32.286-13.429-32.286 13.429-13.429 32.286 13.429 32.286 32.286 13.429zM1243.429 658.286q0 41.714-26.571 74.857t-67.143 52-82.571 28.286-79.714 9.429-79.714-9.429-82.571-28.286-67.143-52-26.571-74.857q0-6.286 20-46.286t52.571-99.714 61.143-111.714 58.286-105.143 32-57.143q10.286-18.857 32-18.857t32 18.857q2.286 4 32 57.143t58.286 105.143 61.143 111.714 52.571 99.714 20 46.286zM512 658.286q0 41.714-26.571 74.857t-67.143 52-82.571 28.286-79.714 9.429-79.714-9.429-82.571-28.286-67.143-52-26.571-74.857q0-6.286 20-46.286t52.571-99.714 61.143-111.714 58.286-105.143 32-57.143q10.286-18.857 32-18.857t32 18.857q2.286 4 32 57.143t58.286 105.143 61.143 111.714 52.571 99.714 20 46.286z" - ], - "width": 1243.8571428571427, - "attrs": [], - "isMulticolor": false, - "tags": [ - "balance-scale" - ], - "defaultCode": 62030, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 538, - "order": 1055, - "prevSize": 14, - "code": 62030, - "name": "balance-scale" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 538 - }, - { - "icon": { - "paths": [ - "M804.571 73.143q0 149.143-60.857 263.714t-152.286 175.143q91.429 60.571 152.286 175.143t60.857 263.714h54.857q8 0 13.143 5.143t5.143 13.143v36.571q0 8-5.143 13.143t-13.143 5.143h-841.143q-8 0-13.143-5.143t-5.143-13.143v-36.571q0-8 5.143-13.143t13.143-5.143h54.857q0-149.143 60.857-263.714t152.286-175.143q-91.429-60.571-152.286-175.143t-60.857-263.714h-54.857q-8 0-13.143-5.143t-5.143-13.143v-36.571q0-8 5.143-13.143t13.143-5.143h841.143q8 0 13.143 5.143t5.143 13.143v36.571q0 8-5.143 13.143t-13.143 5.143h-54.857zM499.429 477.714q44-16.571 85.143-52.857t74-87.143 52.857-120 20-144.571h-585.143q0 75.429 20 144.571t52.857 120 74 87.143 85.143 52.857q10.857 4 17.429 13.429t6.571 20.857-6.571 20.857-17.429 13.429q-44 16.571-85.143 52.857t-74 87.143-52.857 120-20 144.571h585.143q0-75.429-20-144.571t-52.857-120-74-87.143-85.143-52.857q-10.857-4-17.429-13.429t-6.571-20.857 6.571-20.857 17.429-13.429z" - ], - "width": 877.7142857142858, - "attrs": [], - "isMulticolor": false, - "tags": [ - "hourglass-o" - ], - "defaultCode": 62032, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 539, - "order": 1056, - "prevSize": 14, - "code": 62032, - "name": "hourglass-o" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 539 - }, - { - "icon": { - "paths": [ - "M804.571 73.143q0 149.143-60.857 263.714t-152.286 175.143q91.429 60.571 152.286 175.143t60.857 263.714h54.857q8 0 13.143 5.143t5.143 13.143v36.571q0 8-5.143 13.143t-13.143 5.143h-841.143q-8 0-13.143-5.143t-5.143-13.143v-36.571q0-8 5.143-13.143t13.143-5.143h54.857q0-149.143 60.857-263.714t152.286-175.143q-91.429-60.571-152.286-175.143t-60.857-263.714h-54.857q-8 0-13.143-5.143t-5.143-13.143v-36.571q0-8 5.143-13.143t13.143-5.143h841.143q8 0 13.143 5.143t5.143 13.143v36.571q0 8-5.143 13.143t-13.143 5.143h-54.857zM731.429 73.143h-585.143q0 37.714 5.143 73.143h574.857q5.143-34.857 5.143-73.143zM731.429 950.857q0-74.286-19.429-142.571t-51.714-118.857-72.286-86.857-83.429-54h-131.429q-43.429 17.714-83.429 54t-72.286 86.857-51.714 118.857-19.429 142.571h585.143z" - ], - "width": 877.7142857142858, - "attrs": [], - "isMulticolor": false, - "tags": [ - "hourglass-1", - "hourglass-start" - ], - "defaultCode": 62033, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 540, - "order": 1057, - "name": "hourglass-1, hourglass-start", - "prevSize": 14, - "code": 62033 - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 540 - }, - { - "icon": { - "paths": [ - "M804.571 73.143q0 149.143-60.857 263.714t-152.286 175.143q91.429 60.571 152.286 175.143t60.857 263.714h54.857q8 0 13.143 5.143t5.143 13.143v36.571q0 8-5.143 13.143t-13.143 5.143h-841.143q-8 0-13.143-5.143t-5.143-13.143v-36.571q0-8 5.143-13.143t13.143-5.143h54.857q0-149.143 60.857-263.714t152.286-175.143q-91.429-60.571-152.286-175.143t-60.857-263.714h-54.857q-8 0-13.143-5.143t-5.143-13.143v-36.571q0-8 5.143-13.143t13.143-5.143h841.143q8 0 13.143 5.143t5.143 13.143v36.571q0 8-5.143 13.143t-13.143 5.143h-54.857zM731.429 73.143h-585.143q0 117.714 48.571 219.429h488q48.571-101.714 48.571-219.429zM698.857 768q-30.857-80.571-83.143-138t-111.143-81.429h-131.429q-58.857 24-111.143 81.429t-83.143 138h520z" - ], - "width": 877.7142857142858, - "attrs": [], - "isMulticolor": false, - "tags": [ - "hourglass-2", - "hourglass-half" - ], - "defaultCode": 62034, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 541, - "order": 1058, - "name": "hourglass-2, hourglass-half", - "prevSize": 14, - "code": 62034 - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 541 - }, - { - "icon": { - "paths": [ - "M804.571 73.143q0 149.143-60.857 263.714t-152.286 175.143q91.429 60.571 152.286 175.143t60.857 263.714h54.857q8 0 13.143 5.143t5.143 13.143v36.571q0 8-5.143 13.143t-13.143 5.143h-841.143q-8 0-13.143-5.143t-5.143-13.143v-36.571q0-8 5.143-13.143t13.143-5.143h54.857q0-149.143 60.857-263.714t152.286-175.143q-91.429-60.571-152.286-175.143t-60.857-263.714h-54.857q-8 0-13.143-5.143t-5.143-13.143v-36.571q0-8 5.143-13.143t13.143-5.143h841.143q8 0 13.143 5.143t5.143 13.143v36.571q0 8-5.143 13.143t-13.143 5.143h-54.857zM499.429 477.714q44-16.571 85.143-52.857t74-87.143 52.857-120 20-144.571h-585.143q0 75.429 20 144.571t52.857 120 74 87.143 85.143 52.857q10.857 4 17.429 13.429t6.571 20.857-6.571 20.857-17.429 13.429q-78.286 29.143-139.429 112h400q-61.143-82.857-139.429-112-10.857-4-17.429-13.429t-6.571-20.857 6.571-20.857 17.429-13.429z" - ], - "width": 877.7142857142858, - "attrs": [], - "isMulticolor": false, - "tags": [ - "hourglass-3", - "hourglass-end" - ], - "defaultCode": 62035, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 542, - "order": 1059, - "name": "hourglass-3, hourglass-end", - "prevSize": 14, - "code": 62035 - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 542 - }, - { - "icon": { - "paths": [ - "M859.429 914.286q8 0 13.143 5.143t5.143 13.143v73.143q0 8-5.143 13.143t-13.143 5.143h-841.143q-8 0-13.143-5.143t-5.143-13.143v-73.143q0-8 5.143-13.143t13.143-5.143h841.143zM74.286 877.714q1.714-31.429 9.143-61.143t17.143-54.286 26.286-49.714 30.571-43.429 36.857-39.714 37.714-34.286 40.286-31.429 38-27.143 37.143-24.571q-24.571-16-37.143-24.571t-38-27.143-40.286-31.429-37.714-34.286-36.857-39.714-30.571-43.429-26.286-49.714-17.143-54.286-9.143-61.143h729.143q-1.714 31.429-9.143 61.143t-17.143 54.286-26.286 49.714-30.571 43.429-36.857 39.714-37.714 34.286-40.286 31.429-38 27.143-37.143 24.571q24.571 16 37.143 24.571t38 27.143 40.286 31.429 37.714 34.286 36.857 39.714 30.571 43.429 26.286 49.714 17.143 54.286 9.143 61.143h-729.143zM859.429 0q8 0 13.143 5.143t5.143 13.143v73.143q0 8-5.143 13.143t-13.143 5.143h-841.143q-8 0-13.143-5.143t-5.143-13.143v-73.143q0-8 5.143-13.143t13.143-5.143h841.143z" - ], - "width": 877.7142857142858, - "attrs": [], - "isMulticolor": false, - "tags": [ - "hourglass" - ], - "defaultCode": 62036, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 543, - "order": 1060, - "prevSize": 14, - "code": 62036, - "name": "hourglass" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 543 - }, - { - "icon": { - "paths": [ - "M438.857 219.429q-30.286 0-51.714 21.429t-21.429 51.714v73.143h-18.286v-53.143q0-27.429-18.286-46.571t-45.714-19.143q-26.286 0-45.143 18.857t-18.857 45.143v245.143l-18.286-17.143v-98.286q0-27.429-18.286-46.571t-45.714-19.143q-26.286 0-45.143 18.857t-18.857 45.143v128q0 26.857 20 46.857l177.143 169.143q22.286 22.286 22.286 58.286 0 14.857 10.857 25.714t25.714 10.857h365.714q14.857 0 25.714-10.857t10.857-25.714v-14.286q0-23.429 5.714-44l61.714-249.143q5.714-20.571 5.714-44v-140.571q0-27.429-18.286-46.571t-45.714-19.143q-26.286 0-45.143 18.857t-18.857 45.143v18.286h-18.286v-71.429q0-22.857-14.286-41.429t-36.571-23.143q-8-1.143-13.143-1.143-26.286 0-45.143 18.857t-18.857 45.143v73.143h-18.286v-69.714q0-29.143-18.571-51.143t-47.143-24.857q-2.857-0.571-7.429-0.571zM438.857 146.286q48 0 85.143 28.571 32.571-19.429 70.286-19.429 33.714 0 63.429 15.429t49.143 43.429q15.429-4 33.714-4 57.143 0 97.143 40.857t40 98v140.571q0 29.143-7.429 61.714l-62.286 249.143q-3.429 13.714-3.429 40.571 0 45.714-32 77.714t-77.714 32h-365.714q-48 0-78.857-33.429t-30.857-81.429l-176-169.143q-43.429-41.714-43.429-100v-128q0-56.571 40.286-96.857t96.857-40.286q6.286 0 9.143 0.571 3.429-54.286 43.143-91.429t94-37.143q29.714 0 56 12 41.143-39.429 99.429-39.429z" - ], - "width": 877.7142857142858, - "attrs": [], - "isMulticolor": false, - "tags": [ - "hand-grab-o", - "hand-rock-o" - ], - "defaultCode": 62037, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 544, - "order": 1061, - "name": "hand-grab-o, hand-rock-o", - "prevSize": 14, - "code": 62037 - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 544 - }, - { - "icon": { - "paths": [ - "M502.857 73.143q-26.286 0-45.143 18.857t-18.857 45.143v374.857h-18.286v-301.714q0-26.286-18.857-45.143t-45.143-18.857-45.143 18.857-18.857 45.143v448l-88-117.143q-21.714-29.143-58.286-29.143-30.286 0-51.714 21.429t-21.429 51.714q0 24.571 14.857 44l219.429 292.571q21.714 29.143 58.286 29.143h393.143q19.429 0 34.857-12.571t19.429-32l43.429-231.429q2.857-18.286 2.857-33.714v-284.571q0-26.286-18.857-45.143t-45.143-18.857-45.143 18.857-18.857 45.143v155.429h-18.286v-301.714q0-26.286-18.857-45.143t-45.143-18.857-45.143 18.857-18.857 45.143v301.714h-18.286v-374.857q0-26.286-18.857-45.143t-45.143-18.857zM502.857 0q38.857 0 71.714 20.286t50.571 55.143q10.857-2.286 24-2.286 56.571 0 96.857 40.286t40.286 96.857v9.714q60-3.429 103.143 36.571t43.143 100v284.571q0 22.857-4.571 47.429l-43.429 230.857q-8 45.143-43.714 74.857t-82 29.714h-393.143q-34.286 0-65.429-15.714t-51.714-42.571l-219.429-292.571q-29.143-38.857-29.143-88 0-60.571 42.857-103.429t103.429-42.857q44.571 0 73.143 19.429v-248q0-56.571 40.286-96.857t96.857-40.286q13.143 0 24 2.286 17.714-34.857 50.571-55.143t71.714-20.286z" - ], - "width": 950.8571428571429, - "attrs": [], - "isMulticolor": false, - "tags": [ - "hand-paper-o", - "hand-stop-o" - ], - "defaultCode": 62038, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 545, - "order": 1062, - "name": "hand-paper-o, hand-stop-o", - "prevSize": 14, - "code": 62038 - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 545 - }, - { - "icon": { - "paths": [ - "M613.143 950.857h-101.143q-93.143 0-129.143-80.571-13.143-28-13.143-58.286v-2.857q-35.429-17.143-56.286-50.571t-20.857-72.857q0-21.714 2.857-27.429h-149.143q-60.571 0-103.429-42.857t-42.857-103.429 42.857-103.429 103.429-42.857h64.571l-25.143-9.714q-42.286-16-68.286-53.429t-26-83.143q0-60.571 42.857-103.429t103.429-42.857q26.286 0 52 9.714l358.857 136.571h229.143q60.571 0 103.429 42.857t42.857 103.429v381.714q0 50.286-30.857 90t-80 51.714l-193.714 48.571q-52.571 13.143-106.286 13.143zM585.143 544.571l-88.571 40.571-93.143 42.286q-17.143 8-27.429 23.714t-10.286 34.571q0 26.286 18.857 45.143t45.143 18.857q14.857 0 26.286-5.714l193.143-88q-28-5.714-46-28.571t-18-51.429v-31.429zM768 722.286q0-26.286-18.857-45.143t-45.143-18.857q-14.857 0-26.286 5.714l-165.714 75.429q-16 7.429-21.143 9.714t-17.429 9.714-16.857 13.429-9.143 16.571-4.571 23.143q0 28.571 18 46.857t46.571 18.286q11.429 0 21.714-5.143l201.143-91.429q17.143-8 27.429-23.714t10.286-34.571zM635.429 292.571l-371.429-141.714q-13.714-4.571-26.286-4.571-30.286 0-51.714 21.429t-21.429 51.714q0 22.857 12.857 41.714t34 26.857l300.571 114.286v36.571h-365.714q-30.286 0-51.714 21.429t-21.429 51.714 21.429 51.714 51.714 21.429h305.714l133.143-60.571v-113.143q0-36 26.286-60.571l63.429-58.286h-39.429zM613.143 877.714q46.857 0 88.571-10.857l193.714-48.571q24.571-6.286 40-26t15.429-44.857v-381.714q0-30.286-21.429-51.714t-51.714-21.429h-176l-77.714 72q-20.571 18.857-20.571 46.857v169.143q0 26.286 18.857 44t45.143 17.714 45.143-20 18.857-46.286v-118.857h18.286v118.857q0 40-32.571 65.143 29.714 4.571 49.429 27.714t19.714 53.429q0 24-13.143 44.571t-34.857 30.286l-177.143 80.571h52z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "hand-scissors-o" - ], - "defaultCode": 62039, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 546, - "order": 1063, - "prevSize": 14, - "code": 62039, - "name": "hand-scissors-o" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 546 - }, - { - "icon": { - "paths": [ - "M657.714 0q34.857 0 66.286 16t52 44l326.857 446.286q67.429 90.857 67.429 205.143v202.857q0 45.714-32 77.714t-77.714 32h-219.429q-45.714 0-77.714-32t-32-77.714v-101.143l-163.429-81.714h-312q-45.714 0-77.714-32t-32-77.714v-18.286q0-68 48.286-116.286t116.286-48.286h240l24-73.143h-392q-57.143 0-99.143-38.571t-46.571-95.143q-37.143-45.143-37.143-104v-18.286q0-45.714 32-77.714t77.714-32h548zM1097.143 914.286v-202.857q0-89.714-53.143-162.286l-327.429-446.286q-22.286-29.714-58.857-29.714h-548q-14.857 0-25.714 10.857t-10.857 25.714q0 18.286 0.857 28.286t5.429 23.143 14.286 24.571q5.714-17.714 20.286-28.571t32.286-10.857h475.429v18.286h-475.429q-14.857 0-25.714 10.857t-10.857 25.714q0 25.143 1.714 33.143 4.571 25.143 25.143 41.714t46.286 16.571h417.714q22.857 0 38.857 16t16 38.857q0 8.571-2.857 17.143l-36.571 109.714q-5.714 16.571-20 27.143t-32 10.571h-253.143q-37.714 0-64.571 26.857t-26.857 64.571v18.286q0 14.857 10.857 25.714t25.714 10.857h320.571q9.143 0 16.571 4l181.143 90.286q13.714 7.429 22 20.571t8.286 28.571v112.571q0 14.857 10.857 25.714t25.714 10.857h219.429q14.857 0 25.714-10.857t10.857-25.714z" - ], - "width": 1170, - "attrs": [], - "isMulticolor": false, - "tags": [ - "hand-lizard-o" - ], - "defaultCode": 62040, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 547, - "order": 1064, - "prevSize": 14, - "code": 62040, - "name": "hand-lizard-o" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 547 - }, - { - "icon": { - "paths": [ - "M466.286 73.143q-27.429 0-45.429 19.429t-18 46.857q0 8 1.714 16l85.714 356.571h-14.857l-66.286-275.429q-5.143-21.714-22.571-35.429t-39.714-13.714q-26.857 0-45.143 19.429t-18.286 46.286q0 6.286 2.286 16.571 1.714 7.429 22.286 92t38.857 161.143 18.286 78.857v129.714l-175.429-131.429q-19.429-14.857-44-14.857-29.714 0-51.143 20.857t-21.429 50.571q0 38.286 32 62.857l289.714 216.571q19.429 14.857 43.429 14.857h396.571q18.857 0 33.714-11.714t19.429-30l57.143-229.143q4.571-17.143 5.714-50.286t5.143-49.143l66.286-273.143q1.714-6.857 1.714-14.857 0-26.286-18.857-45.143t-45.714-18.857q-21.714 0-39.429 14.571t-22.857 35.714l-56.571 233.143h-14.857l75.429-312.571q1.714-8 1.714-16 0-26.857-18.286-45.714t-45.714-18.857q-21.714 0-39.143 13.714t-22.571 35.429l-82.857 344h-72.571l-93.714-389.714q-5.143-21.714-22.571-35.429t-39.143-13.714zM834.857 1024h-396.571q-48.571 0-87.429-29.143l-289.714-217.143q-28.571-21.714-44.857-53.714t-16.286-67.429q0-60 42.857-102.286t102.857-42.286q14.286 0 28.286 3.143t23.714 6.286 23.429 11.714 20 13.143 22 16.857 21.429 16.286l-70.286-292.571q-4-20-4-33.714 0-53.143 34.286-92.571t86.857-45.143q8-49.714 46-82.571t88.857-32.857q47.429 0 84.571 29.429t48.571 75.714l58.857 244.571 47.429-198.857q11.429-46.286 48.571-75.714t84.571-29.429q49.714 0 87.143 30.857t47.143 79.429q53.143 5.714 88.571 44.571t35.429 92q0 17.143-4 32.571l-66.286 272.571q-2.857 12.571-2.857 38.286 0 29.143-7.429 61.714l-57.714 229.143q-10.857 42.857-45.429 70t-78.571 27.143z" - ], - "width": 1096.8571428571427, - "attrs": [], - "isMulticolor": false, - "tags": [ - "hand-spock-o" - ], - "defaultCode": 62041, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 548, - "order": 1065, - "prevSize": 14, - "code": 62041, - "name": "hand-spock-o" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 548 - }, - { - "icon": { - "paths": [ - "M365.714 73.143q-30.286 0-51.714 21.429t-21.429 51.714v512l-86.286-115.429q-23.429-30.857-61.143-30.857-29.714 0-50.857 21.714t-21.143 51.429q0 24.571 14.857 44l219.429 292.571q21.714 29.143 58.286 29.143h410.286q12.571 0 22.571-7.714t12.857-19.714l52.571-210.286q13.714-54.857 13.714-110.857v-124q0-23.429-16-40.571t-38.857-17.143-38.857 16-16 38.857h-18.286v-34.857q0-27.429-18.286-46.571t-45.714-19.143q-26.286 0-45.143 18.857t-18.857 45.143v36.571h-18.286v-51.429q0-31.429-21.143-54t-52-22.571q-30.286 0-51.714 21.429t-21.429 51.714v54.857h-18.286v-325.714q0-31.429-21.143-54t-52-22.571zM365.714 0q61.143 0 103.714 44.286t42.571 105.429v125.714q12.571-1.143 18.286-1.143 56.571 0 98.857 39.429 26.857-12 56.571-12 64.571 0 105.143 49.714 15.429-4 32-4 53.714 0 90.857 38.571t37.143 92.286v124q0 66.286-16 128.571l-52.571 210.286q-9.143 36.571-38.857 59.714t-67.429 23.143h-410.286q-34.286 0-65.429-15.714t-51.714-42.571l-219.429-292.571q-29.143-38.857-29.143-88 0-60 42.571-103.143t102.571-43.143q40.571 0 74.286 20v-312.571q0-60.571 42.857-103.429t103.429-42.857zM438.857 804.571v-219.429h-18.286v219.429h18.286zM585.143 804.571v-219.429h-18.286v219.429h18.286zM731.429 804.571v-219.429h-18.286v219.429h18.286z" - ], - "width": 950.8571428571429, - "attrs": [], - "isMulticolor": false, - "tags": [ - "hand-pointer-o" - ], - "defaultCode": 62042, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 549, - "order": 1066, - "prevSize": 14, - "code": 62042, - "name": "hand-pointer-o" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 549 - }, - { - "icon": { - "paths": [ - "M736 369.714q34.286 0 61.143 13.143 80.571 36 80.571 129.143v101.143q0 53.714-13.143 106.286l-48.571 193.714q-12 49.143-51.714 80t-90 30.857h-381.714q-60.571 0-103.429-42.857t-42.857-103.429v-229.143l-136.571-358.857q-9.714-25.714-9.714-52 0-60.571 42.857-103.429t103.429-42.857q45.714 0 83.143 26t53.429 68.286l9.714 25.143v-64.571q0-60.571 42.857-103.429t103.429-42.857 103.429 42.857 42.857 103.429v149.143q15.429-2.857 27.429-2.857 39.429 0 72.857 20.857t50.571 56.286zM612.571 365.714q-18.857 0-34.571 10.286t-23.714 27.429l-42.286 93.143-40.571 88.571h31.429q28.571 0 51.429 18t28.571 46l88-193.143q5.714-11.429 5.714-26.286 0-26.286-18.857-45.143t-45.143-18.857zM738.857 442.857q-12.571 0-23.143 4.571t-16.571 9.143-13.429 16.857-9.714 17.429-9.714 21.143l-75.429 165.714q-5.714 11.429-5.714 26.286 0 26.286 18.857 45.143t45.143 18.857q18.857 0 34.571-10.286t23.714-27.429l91.429-201.143q5.143-10.286 5.143-21.714 0-28.571-18.286-46.571t-46.857-18zM73.143 237.714q0 12.571 4.571 26.286l141.714 371.429v39.429l58.286-63.429q24.571-26.286 60.571-26.286h113.143l60.571-133.143v-305.714q0-30.286-21.429-51.714t-51.714-21.429-51.714 21.429-21.429 51.714v365.714h-36.571l-114.286-300.571q-8-21.143-26.857-34t-41.714-12.857q-30.286 0-51.714 21.429t-21.429 51.714zM674.286 950.857q25.143 0 44.857-15.429t26-40l48.571-193.714q10.857-41.714 10.857-88.571v-52l-80.571 177.143q-9.714 21.714-30.286 34.857t-44.571 13.143q-30.286 0-53.429-19.714t-27.714-49.429q-25.143 32.571-65.143 32.571h-118.857v-18.286h118.857q26.286 0 46.286-18.857t20-45.143-17.714-45.143-44-18.857h-169.143q-28 0-46.857 20.571l-72 77.714v176q0 30.286 21.429 51.714t51.714 21.429h381.714z" - ], - "width": 877.7142857142858, - "attrs": [], - "isMulticolor": false, - "tags": [ - "hand-peace-o" - ], - "defaultCode": 62043, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 550, - "order": 1067, - "prevSize": 14, - "code": 62043, - "name": "hand-peace-o" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 550 - }, - { - "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": 1068, - "prevSize": 14, - "code": 62044, - "name": "trademark" - }, - "setIdx": 0, - "setId": 4, - "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": 1069, - "prevSize": 14, - "code": 62045, - "name": "registered" - }, - "setIdx": 0, - "setId": 4, - "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": 1070, - "prevSize": 14, - "code": 62046, - "name": "creative-commons" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 553 - }, - { - "icon": { - "paths": [ - "M420.571 457.143l219.429 219.429-219.429 219.429-384-384 384-384 96 96-54.857 54.857-41.143-41.143-274.286 274.286 274.286 274.286 110.286-110.286-165.143-164zM749.714 128l384 384-384 384-96-96 54.857-54.857 41.143 41.143 274.286-274.286-274.286-274.286-110.286 110.286 165.143 164-54.857 54.857-219.429-219.429z" - ], - "width": 1170, - "attrs": [], - "isMulticolor": false, - "tags": [ - "gg" - ], - "defaultCode": 62048, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 554, - "order": 1071, - "prevSize": 14, - "code": 62048, - "name": "gg" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 554 - }, - { - "icon": { - "paths": [ - "M409.714 773.714l154.857-154.857-159.429-159.429-50.286 50.286 109.714 109.143-54.857 54.857-159.429-159.429 159.429-159.429 22.857 22.857 49.714-49.714-72.571-73.143-259.429 259.429zM614.286 769.143l259.429-259.429-259.429-259.429-154.857 154.857 159.429 159.429 50.286-50.286-109.714-109.143 54.857-54.857 159.429 159.429-159.429 159.429-22.857-22.857-49.714 50.286zM1024 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": [ - "gg-circle" - ], - "defaultCode": 62049, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 555, - "order": 1072, - "prevSize": 14, - "code": 62049, - "name": "gg-circle" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 555 - }, - { - "icon": { - "paths": [ - "M372 569.714q0 22.286-15.714 38t-37.429 15.714q-22.286 0-38-15.714t-15.714-38q0-21.714 15.714-37.429t38-15.714q21.714 0 37.429 15.714t15.714 37.429zM1031.429 569.143q0 22.286-15.714 38t-38 15.714-38-15.714-15.714-38 15.714-37.714 38-15.429 38 15.429 15.714 37.714zM437.143 569.714q0-45.143-32.286-77.714t-78-32.571-78 32.286-32.286 78 32.286 78 78 32.286 78-32.286 32.286-78zM1096 569.143q0-45.714-32.286-78t-78-32.286q-45.143 0-77.714 32.286t-32.571 78 32.286 78 78 32.286 78-32.286 32.286-78zM485.714 569.714q0 66.286-46.571 112.857t-112.286 46.571q-66.286 0-112.857-46.857t-46.571-112.571 46.857-112.286 112.571-46.571 112.286 46.571 46.571 112.286zM1145.143 569.143q0 65.714-46.571 112.286t-112.857 46.571q-65.714 0-112.286-46.571t-46.571-112.286 46.571-112.286 112.286-46.571q66.286 0 112.857 46.571t46.571 112.286zM594.286 570.857q0-109.143-77.429-186.571t-186.571-77.429q-71.429 0-132 35.429t-96 96.286-35.429 132.286 35.429 132.286 96 96.286 132 35.429q109.143 0 186.571-77.429t77.429-186.571zM976 243.429q-145.143-63.429-317.714-63.429-182.286 0-327.429 62.857 66.857 0 127.429 26t104.286 70 69.714 104.571 26 127.429q0-65.714 24.857-125.429t67.429-103.143 101.429-70.286 124-28.571zM1249.714 570.857q0-109.143-77.143-186.571t-186.286-77.429-186.571 77.429-77.429 186.571 77.429 186.571 186.571 77.429 186.286-77.429 77.143-186.571zM1097.714 247.429h218.857q-25.143 29.143-42.857 65.429t-22.857 65.429q62.857 86.286 62.857 192.571 0 89.143-44 164.571t-119.429 119.143-164 43.714q-76 0-142.286-32t-112-88.571q-26.857 32-73.714 102.286-6.286-12.571-30.571-47.143t-42.571-55.714q-45.714 56.571-112.286 88.857t-142.571 32.286q-88.571 0-164-43.714t-119.429-119.143-44-164.571q0-106.286 62.857-192.571-5.143-29.143-22.857-65.429t-42.857-65.429h208.571q85.143-57.143 202.857-89.429t246.857-32.286q128 0 240.571 32t198.857 89.714z" - ], - "width": 1317, - "attrs": [], - "isMulticolor": false, - "tags": [ - "tripadvisor" - ], - "defaultCode": 62050, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 556, - "order": 1073, - "prevSize": 14, - "code": 62050, - "name": "tripadvisor" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 556 - }, - { - "icon": { - "paths": [ - "M365.714 518.286q-107.429 0-183.429-76t-76-182.857q0-107.429 76-183.429t183.429-76 183.429 76 76 183.429q0 106.857-76 182.857t-183.429 76zM365.714 131.429q-52.571 0-90 37.429t-37.429 90.571q0 52.571 37.429 90t90 37.429 90-37.429 37.429-90q0-53.143-37.429-90.571t-90-37.429zM664.571 549.714q7.429 15.429 8.571 28.286t-2.571 23.143-15.143 22-24.286 21.143-35.143 23.714q-65.714 41.714-180 53.714l41.714 41.143 152.571 152.571q17.143 17.714 17.143 42.286t-17.143 41.714l-6.857 7.429q-17.714 17.143-42.286 17.143t-42.286-17.143q-38.286-38.857-152.571-153.143l-152.571 153.143q-17.714 17.143-42.286 17.143t-41.714-17.143l-6.857-7.429q-17.714-17.143-17.714-41.714t17.714-42.286l193.714-193.714q-116-12-181.143-53.714-22.286-14.286-35.143-23.714t-24.286-21.143-15.143-22-2.571-23.143 8.571-28.286q5.714-11.429 16-20t24-12.571 32 1.143 37.143 20q2.857 2.286 8.571 6.286t24.571 14 39.429 17.429 52.571 13.714 64.571 6.286q52 0 99.429-14.571t68.571-28.857l21.714-14.286q18.857-14.857 37.143-20t32-1.143 24 12.571 16 20z" - ], - "width": 731, - "attrs": [], - "isMulticolor": false, - "tags": [ - "odnoklassniki" - ], - "defaultCode": 62051, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 557, - "order": 1074, - "prevSize": 14, - "code": 62051, - "name": "odnoklassniki" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 557 - }, - { - "icon": { - "paths": [ - "M529.714 331.429q0 37.714-26.571 64.286t-64.286 26.571-64.286-26.571-26.571-64.286 26.571-64.286 64.286-26.571 64.286 26.571 26.571 64.286zM652 538.857q-5.714-11.429-16-18.286t-27.143-5.429-34.571 15.714q-5.714 4.571-16.571 11.429t-46.286 18.286-72.571 11.429-70.857-10.286-49.143-20.571l-15.429-10.286q-17.714-14.286-34.571-15.714t-27.143 5.429-16 18.286q-12.571 25.714-1.143 42.571t49.714 42q47.429 30.286 129.143 38.286l-29.143 29.714q-81.143 81.143-109.143 108.571-12.571 12.571-12.571 30t12.571 30l5.143 5.143q12.571 12.571 30 12.571t30-12.571l109.143-109.143q65.143 65.714 109.143 109.143 12.571 12.571 30 12.571t30-12.571l5.143-5.143q12.571-12.571 12.571-30t-12.571-30l-109.143-108.571-29.714-29.714q80.571-8 128.571-38.286 38.286-25.143 49.714-42t-1.143-42.571zM624 331.429q0-76.571-54.286-130.857t-130.857-54.286-130.857 54.286-54.286 130.857 54.286 130.857 130.857 54.286 130.857-54.286 54.286-130.857zM877.714 237.714v548.571q0 68-48.286 116.286t-116.286 48.286h-548.571q-68 0-116.286-48.286t-48.286-116.286v-548.571q0-68 48.286-116.286t116.286-48.286h548.571q68 0 116.286 48.286t48.286 116.286z" - ], - "width": 877.7142857142858, - "attrs": [], - "isMulticolor": false, - "tags": [ - "odnoklassniki-square" - ], - "defaultCode": 62052, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 558, - "order": 1075, - "prevSize": 14, - "code": 62052, - "name": "odnoklassniki-square" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 558 - }, - { - "icon": { - "paths": [ - "M894.286 73.143q37.143 0 62.857 26t25.714 63.143v296.571q0 100.571-38.857 192t-104.286 157.143-156.571 104.286-191.143 38.571q-100.571 0-191.714-38.571t-156.857-104.286-104.571-157.143-38.857-192v-296.571q0-36.571 26.286-62.857t62.857-26.286h805.143zM492 681.143q26.857 0 46.857-18.857l230.857-221.714q21.143-20 21.143-48.571 0-28-19.714-47.714t-47.714-19.714q-26.857 0-46.857 18.857l-184.571 177.143-184.571-177.143q-20-18.857-46.286-18.857-28 0-47.714 19.714t-19.714 47.714q0 29.143 20.571 48.571l231.429 221.714q18.857 18.857 46.286 18.857z" - ], - "width": 983, - "attrs": [], - "isMulticolor": false, - "tags": [ - "get-pocket" - ], - "defaultCode": 62053, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 559, - "order": 1076, - "prevSize": 14, - "code": 62053, - "name": "get-pocket" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 559 - }, - { - "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": 1077, - "prevSize": 14, - "code": 62054, - "name": "wikipedia-w" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 560 - }, - { - "icon": { - "paths": [ - "M542.286 510.286q0 14.857-9.429 25.714t-23.714 10.857q-14.857 0-25.714-9.429t-10.857-23.714q0-14.857 9.714-25.714t24-10.857 25.143 9.429 10.857 23.714zM550.857 543.429l200-332q-5.143 4.571-38.571 35.714t-71.714 66.571-78 72.571-66.857 63.143-28.857 29.429l-199.429 331.429q4-4 38.286-35.429t72-66.571 77.714-72.571 66.857-63.429 28.571-28.857zM920.571 512q0 114.857-59.429 212-1.714-1.143-9.714-6.286t-15.143-9.429-9.429-4.286q-7.429 0-7.429 7.429 0 5.714 33.714 25.143-42.286 64-105.429 108.857t-138 63.143l-9.143-38.286q-0.571-5.714-8.571-5.714-2.857 0-4.571 3.143t-1.143 5.429l9.143 38.857q-41.143 8.571-83.429 8.571-113.714 0-212.571-60 0.571-1.143 7.429-11.714t12.286-19.143 5.429-10.857q0-7.429-7.429-7.429-3.429 0-9.714 8.286t-12.857 19.714-7.714 13.143q-64.571-42.857-109.714-107.143t-62.857-139.714l39.429-8.571q5.714-1.714 5.714-8.571 0-2.857-3.143-4.571t-6-1.143l-38.857 8.571q-8-41.143-8-79.429 0-117.714 62.286-216.571 1.143 0.571 10.571 6.857t17.143 10.857 10 4.571q7.429 0 7.429-6.857 0-3.429-7.143-8.857t-18.571-12.286l-11.429-6.857q44-64 108-108t139.429-61.143l8.571 38.286q1.143 5.714 8.571 5.714 2.857 0 4.571-3.143t1.143-6l-8.571-37.714q40.571-7.429 76.571-7.429 116.571 0 216.571 62.286-22.286 32-22.286 37.143 0 7.429 6.857 7.429 6.286 0 27.429-36.571 63.429 42.857 107.143 106.286t61.429 137.714l-32 6.857q-5.714 1.143-5.714 9.143 0 2.857 3.143 4.571t5.429 1.143l32.571-7.429q8 41.143 8 80zM969.143 512q0-93.143-36.286-177.714t-97.429-145.714-145.714-97.429-177.714-36.286-177.714 36.286-145.714 97.429-97.429 145.714-36.286 177.714 36.286 177.714 97.429 145.714 145.714 97.429 177.714 36.286 177.714-36.286 145.714-97.429 97.429-145.714 36.286-177.714zM1024 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": [ - "safari" - ], - "defaultCode": 62055, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 561, - "order": 1078, - "prevSize": 14, - "code": 62055, - "name": "safari" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 561 - }, - { - "icon": { - "paths": [ - "M510.286 0q137.143-1.143 257.714 68.571 132.571 76.571 201.143 212.571l-424-22.286q-91.429-5.143-168 42.571t-105.714 131.143l-157.714-242.286q73.143-90.857 177.714-140.286t218.857-50zM83.429 231.429l192.571 378.857q41.143 81.714 120.571 124t167.429 25.714l-131.429 257.714q-121.143-18.857-220-90t-155.714-180.571-56.857-235.143q0-152.571 83.429-280.571zM989.714 328q33.143 85.714 34 177.429t-27.714 174.857-87.429 155.429-140.571 119.714q-131.429 76-284.571 68l231.429-356q50.286-74.857 47.143-166t-60.857-158.571zM512 339.429q71.429 0 122 50.571t50.571 122-50.571 122-122 50.571-122-50.571-50.571-122 50.571-122 122-50.571z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "chrome" - ], - "defaultCode": 62056, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 562, - "order": 1079, - "prevSize": 14, - "code": 62056, - "name": "chrome" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 562 - }, - { - "icon": { - "paths": [ - "M516 1024q-161.714 0-288.286-86t-188.286-227.714q-33.143-74.857-38.286-172t14.857-190 63.429-178.286 102.286-138.571l-6.286 160.571q6.286-8 38.857-8.857t40 8.857q24-46.286 91.714-78.857t134-33.714q-30.857 25.714-68.286 84.857t-33.429 93.429q14.286 4.571 35.714 7.714t36 4.286 38.857 2.286 28.857 1.714q8.571 2.857 5.429 26t-17.429 43.143q-2.857 4-9.429 10.571t-32.286 20.286-57.714 19.429l8.571 108-79.429-38.286q-10.286 24.571-4.286 46.571t20.571 38 37.429 23.714 46.286 3.714q29.143-5.143 56-19.714t47.714-25.714 42-10q34.857 2.286 51.143 18.857t11.143 37.143q-0.571 1.143-1.429 3.143t-4.857 7.143-10.286 8.857-18 6-26.571 0.571q-34.286 54.286-82.571 77.429t-119.714 16.857q42.286 34.857 92.857 47.143t96.286 3.429 88.286-29.714 73.143-50 46-59.429q24.571-52 22.286-110t-21.429-107.714-44.857-71.429q49.714 21.714 78.286 45.429t44 64.286q8.571-97.143-32.857-196t-119.714-162.286q151.429 44 235.429 159.714t86.286 295.714q1.143 72.571-23.143 145.714t-70.571 136-108 112-141.429 77.429-164.857 28.286z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "firefox" - ], - "defaultCode": 62057, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 563, - "order": 1080, - "prevSize": 14, - "code": 62057, - "name": "firefox" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 563 - }, - { - "icon": { - "paths": [ - "M438.857 930.286q44 0 79.714-36t57.429-94.857 33.714-134 12-153.429-12-153.429-33.714-134-57.429-94.857-79.714-36-79.714 36-57.429 94.857-33.714 134-12 153.429 12 153.429 33.714 134 57.429 94.857 79.714 36zM438.857 1024q-105.143 0-190.286-44t-137.143-116-80.571-164-28.571-188 28.571-188 80.571-164 137.143-116 190.286-44q84.571 0 156.571 28.571t122.571 77.714 86.571 114.857 52.857 139.429 16.857 151.429-16.857 151.429-52.857 139.429-86.571 114.857-122.571 77.714-156.571 28.571z" - ], - "width": 877.7142857142858, - "attrs": [], - "isMulticolor": false, - "tags": [ - "opera" - ], - "defaultCode": 62058, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 564, - "order": 1081, - "prevSize": 14, - "code": 62058, - "name": "opera" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 564 - }, - { - "icon": { - "paths": [ - "M409.143 917.143q-81.714-20-149.429-65.143t-112.857-109.143q-79.429 171.429-9.714 227.429 14.857 12 48.571 14t72.857-5.429 80.571-23.714 70-38zM396 442.286h258.286q0-61.714-35.143-96.571t-96.286-34.857q-58.857 0-92.857 35.714t-34 95.714zM985.143 228h-19.429q14.857-58.286 12.857-97.143t-14.286-62.857-36.286-32.571-53.429-6.286-65.714 15.143-73.429 32.286-76.571 45.143q73.714 21.143 136.286 64.857t105.714 102.286 62.857 132.286 8.857 149.714h-574.286q0 34.286 5.714 60.571t19.429 48.571 39.714 34.286 64.286 12q49.714 0 81.429-25.143t41.429-69.714h308.571q-40.571 131.429-160.857 215.429t-272.857 84q-47.429 0-90.857-8.571-20 22.857-86.286 53.714t-141.714 44.571-125.143-20q-44.571-34.286-57.143-90.857t4-122.286 50.286-138.286 82-141.714 99.143-129.429 101.429-104.857 89.429-64v-13.714q-68.571 21.143-147.714 78.571t-137.429 118.286-90.857 111.714q2.286-60.571 19.429-114.857t45.714-96.571 67.429-77.429 84.286-57.429 96-37.429 103.143-16.857 105.714 4.571q177.143-106.286 287.429-108h4q32.571 0 58.857 10.286 45.714 17.143 56 75.714t-17.143 142z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "internet-explorer" - ], - "defaultCode": 62059, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 565, - "order": 1082, - "prevSize": 14, - "code": 62059, - "name": "internet-explorer" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 565 - }, - { - "icon": { - "paths": [ - "M1024 713.143v-548.571q0-7.429-5.429-12.857t-12.857-5.429h-914.286q-7.429 0-12.857 5.429t-5.429 12.857v548.571q0 7.429 5.429 12.857t12.857 5.429h914.286q7.429 0 12.857-5.429t5.429-12.857zM1097.143 164.571v548.571q0 37.714-26.857 64.571t-64.571 26.857h-420.571v73.143h201.143q8 0 13.143 5.143t5.143 13.143v36.571q0 8-5.143 13.143t-13.143 5.143h-475.429q-8 0-13.143-5.143t-5.143-13.143v-36.571q0-8 5.143-13.143t13.143-5.143h201.143v-73.143h-420.571q-37.714 0-64.571-26.857t-26.857-64.571v-548.571q0-37.714 26.857-64.571t64.571-26.857h914.286q37.714 0 64.571 26.857t26.857 64.571z" - ], - "width": 1096.8571428571427, - "attrs": [], - "isMulticolor": false, - "tags": [ - "television", - "tv" - ], - "defaultCode": 62060, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 566, - "order": 1083, - "name": "television, tv", - "prevSize": 14, - "code": 62060 - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 566 - }, - { - "icon": { - "paths": [ - "M78.857 73.143h112.571q-40 36.571-72 85.143-20.571 32-33.714 65.714t-17.143 71.714-4.857 68.571 6 75.429 12 72 16 78q2.286 10.857 3.429 16 29.143 136 46.286 188 32.571 97.714 86.857 157.143h-155.429q-27.429 0-46.857-19.429t-19.429-46.857v-745.143q0-27.429 19.429-46.857t46.857-19.429zM769.143 73.143h176q27.429 0 46.857 19.429t19.429 46.857v745.143q0 27.429-19.429 46.857t-46.857 19.429h-101.714q121.143-120 112-322.857l-268 57.714q-1.143 25.714-6.857 46.857t-17.714 41.143-34 34-53.429 20.857q-70.286 14.857-113.714-22.857-18.286-15.429-30.286-34.857t-29.429-73.714-36.857-147.429q-20-93.143-26-150.286t-3.143-79.429 13.143-44q11.429-23.429 35.714-41.714t58.571-25.714q25.714-6.857 47.714-3.714t38.286 9.714 30.857 20 24.571 27.429 19.714 32.286l267.429-57.143q-38.857-100-102.857-164z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "contao" - ], - "defaultCode": 62061, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 567, - "order": 1084, - "prevSize": 14, - "code": 62061, - "name": "contao" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 567 - }, - { - "icon": { - "paths": [ - "M794.857 654.857v0l-0.571-0.571q-8.571-10.286-19.714-21.429t-35.714-32.857-53.429-35.429-54.571-13.714q-27.429 0-47.429 12.286t-29.143 30.857-13.143 33.714-4 27.143v0 0q0 12 4 27.429t13.143 33.714 29.143 30.571 47.429 12.286q25.714 0 54.571-13.714t53.714-35.714 35.429-32.571 19.714-21.429zM1201.714 654.857q0-12-4-27.143t-13.143-33.714-29.143-30.857-47.429-12.286q-25.714 0-54.571 13.714t-53.714 35.714-35.429 32.571-19.714 21.429l-0.571 0.571 0.571 0.571q8.571 10.286 19.714 21.429t35.714 32.857 53.429 35.429 54.571 13.714q27.429 0 47.429-12.286t29.143-30.571 13.143-33.714 4-27.429zM1316.571 653.143q0 39.429-13.714 78.571t-38.857 72-66.286 53.429-90.857 20.571q-38.857 0-76.571-13.714t-64.857-33.429-48.286-39.714-34-33.714-14.571-13.714-12.857 13.714-31.143 33.429-46.571 39.714-65.714 33.714-82 13.714q-37.143 0-70.571-12.857t-55.143-30.857-38-38-23.429-34-7.143-18.571q0 4.571-4.857 15.143t-14.286 26-26.857 31.429-39.429 30-55.143 22.857-71.429 8.857q-40.571 0-74.286-8.857t-56.286-22.571-40.286-32.286-27.429-36.286-15.714-36.286-8-30.857-2-20.857h124q0 31.429 28 61.429t72 30q45.143 0 76.857-38.286t31.714-84.571q0-45.714-29.714-78t-78.857-32.286q-2.857 0-7.429 0.286t-17.714 2.857-24.571 6.857-24 14-19.429 22.857h-111.429l58.286-333.143h344v99.429h-254.286q-15.429 90.857-23.429 141.714 2.286 0 9.429-7.429t18-16.286 37.143-16.286 61.714-7.429 65.143 11.714 47.143 28.286 29.429 33.429 17.714 28.571 6.286 11.714 7.429-14.286 20.857-34.571 34.571-40.857 55.429-34.857 76-14.286 80.286 14.286 66 34.571 47.714 40.857 32.286 34.857 12 14.286q1.143 0 12.571-14.286t32-34.571 47.714-40.857 66-34.857 80-14.286q52.571 0 94 20t66 53.143 37.143 71.429 12.571 78.286z" - ], - "width": 1317, - "attrs": [], - "isMulticolor": false, - "tags": [ - "500px" - ], - "defaultCode": 62062, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 568, - "order": 1085, - "prevSize": 14, - "code": 62062, - "name": "500px" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 568 - }, - { - "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": 1086, - "prevSize": 14, - "code": 62064, - "name": "amazon" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 569 - }, - { - "icon": { - "paths": [ - "M877.714 146.286q29.714 0 51.429 21.714t21.714 51.429v731.429q0 29.714-21.714 51.429t-51.429 21.714h-804.571q-29.714 0-51.429-21.714t-21.714-51.429v-731.429q0-29.714 21.714-51.429t51.429-21.714h73.143v-54.857q0-37.714 26.857-64.571t64.571-26.857h36.571q37.714 0 64.571 26.857t26.857 64.571v54.857h219.429v-54.857q0-37.714 26.857-64.571t64.571-26.857h36.571q37.714 0 64.571 26.857t26.857 64.571v54.857h73.143zM658.286 91.429v164.571q0 8 5.143 13.143t13.143 5.143h36.571q8 0 13.143-5.143t5.143-13.143v-164.571q0-8-5.143-13.143t-13.143-5.143h-36.571q-8 0-13.143 5.143t-5.143 13.143zM219.429 91.429v164.571q0 8 5.143 13.143t13.143 5.143h36.571q8 0 13.143-5.143t5.143-13.143v-164.571q0-8-5.143-13.143t-13.143-5.143h-36.571q-8 0-13.143 5.143t-5.143 13.143zM877.714 950.857v-585.143h-804.571v585.143h804.571zM512 621.714h128q8 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-128q0-8 5.143-13.143t13.143-5.143h36.571q8 0 13.143 5.143t5.143 13.143v128z" - ], - "width": 950.8571428571429, - "attrs": [], - "isMulticolor": false, - "tags": [ - "calendar-plus-o" - ], - "defaultCode": 62065, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 570, - "order": 1087, - "prevSize": 14, - "code": 62065, - "name": "calendar-plus-o" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 570 - }, - { - "icon": { - "paths": [ - "M658.286 640v36.571q0 8-5.143 13.143t-13.143 5.143h-329.143q-8 0-13.143-5.143t-5.143-13.143v-36.571q0-8 5.143-13.143t13.143-5.143h329.143q8 0 13.143 5.143t5.143 13.143zM73.143 950.857h804.571v-585.143h-804.571v585.143zM292.571 256v-164.571q0-8-5.143-13.143t-13.143-5.143h-36.571q-8 0-13.143 5.143t-5.143 13.143v164.571q0 8 5.143 13.143t13.143 5.143h36.571q8 0 13.143-5.143t5.143-13.143zM731.429 256v-164.571q0-8-5.143-13.143t-13.143-5.143h-36.571q-8 0-13.143 5.143t-5.143 13.143v164.571q0 8 5.143 13.143t13.143 5.143h36.571q8 0 13.143-5.143t5.143-13.143zM950.857 219.429v731.429q0 29.714-21.714 51.429t-51.429 21.714h-804.571q-29.714 0-51.429-21.714t-21.714-51.429v-731.429q0-29.714 21.714-51.429t51.429-21.714h73.143v-54.857q0-37.714 26.857-64.571t64.571-26.857h36.571q37.714 0 64.571 26.857t26.857 64.571v54.857h219.429v-54.857q0-37.714 26.857-64.571t64.571-26.857h36.571q37.714 0 64.571 26.857t26.857 64.571v54.857h73.143q29.714 0 51.429 21.714t21.714 51.429z" - ], - "width": 950.8571428571429, - "attrs": [], - "isMulticolor": false, - "tags": [ - "calendar-minus-o" - ], - "defaultCode": 62066, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 571, - "order": 1088, - "prevSize": 14, - "code": 62066, - "name": "calendar-minus-o" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 571 - }, - { - "icon": { - "paths": [ - "M634.857 791.429l-26.286 26.286q-5.143 5.143-12.571 5.143t-13.143-5.143l-107.429-108-107.429 108q-5.714 5.143-13.143 5.143t-12.571-5.143l-26.286-26.286q-5.143-5.143-5.143-12.571t5.143-13.143l108-107.429-108-107.429q-5.143-5.714-5.143-13.143t5.143-12.571l26.286-26.286q5.143-5.143 12.571-5.143t13.143 5.143l107.429 107.429 107.429-107.429q5.714-5.143 13.143-5.143t12.571 5.143l26.286 26.286q5.143 5.143 5.143 12.571t-5.143 13.143l-107.429 107.429 107.429 107.429q5.143 5.714 5.143 13.143t-5.143 12.571zM73.143 950.857h804.571v-585.143h-804.571v585.143zM292.571 256v-164.571q0-8-5.143-13.143t-13.143-5.143h-36.571q-8 0-13.143 5.143t-5.143 13.143v164.571q0 8 5.143 13.143t13.143 5.143h36.571q8 0 13.143-5.143t5.143-13.143zM731.429 256v-164.571q0-8-5.143-13.143t-13.143-5.143h-36.571q-8 0-13.143 5.143t-5.143 13.143v164.571q0 8 5.143 13.143t13.143 5.143h36.571q8 0 13.143-5.143t5.143-13.143zM950.857 219.429v731.429q0 29.714-21.714 51.429t-51.429 21.714h-804.571q-29.714 0-51.429-21.714t-21.714-51.429v-731.429q0-29.714 21.714-51.429t51.429-21.714h73.143v-54.857q0-37.714 26.857-64.571t64.571-26.857h36.571q37.714 0 64.571 26.857t26.857 64.571v54.857h219.429v-54.857q0-37.714 26.857-64.571t64.571-26.857h36.571q37.714 0 64.571 26.857t26.857 64.571v54.857h73.143q29.714 0 51.429 21.714t21.714 51.429z" - ], - "width": 950.8571428571429, - "attrs": [], - "isMulticolor": false, - "tags": [ - "calendar-times-o" - ], - "defaultCode": 62067, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 572, - "order": 1089, - "prevSize": 14, - "code": 62067, - "name": "calendar-times-o" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 572 - }, - { - "icon": { - "paths": [ - "M744.571 550.857l-292.571 292.571q-5.714 5.143-13.143 5.143t-13.143-5.143l-164.571-164.571q-5.143-5.714-5.143-13.143t5.143-12.571l26.286-26.286q5.143-5.143 12.571-5.143t13.143 5.143l125.714 125.714 253.714-253.714q5.714-5.143 13.143-5.143t12.571 5.143l26.286 26.286q5.143 5.143 5.143 12.571t-5.143 13.143zM73.143 950.857h804.571v-585.143h-804.571v585.143zM292.571 256v-164.571q0-8-5.143-13.143t-13.143-5.143h-36.571q-8 0-13.143 5.143t-5.143 13.143v164.571q0 8 5.143 13.143t13.143 5.143h36.571q8 0 13.143-5.143t5.143-13.143zM731.429 256v-164.571q0-8-5.143-13.143t-13.143-5.143h-36.571q-8 0-13.143 5.143t-5.143 13.143v164.571q0 8 5.143 13.143t13.143 5.143h36.571q8 0 13.143-5.143t5.143-13.143zM950.857 219.429v731.429q0 29.714-21.714 51.429t-51.429 21.714h-804.571q-29.714 0-51.429-21.714t-21.714-51.429v-731.429q0-29.714 21.714-51.429t51.429-21.714h73.143v-54.857q0-37.714 26.857-64.571t64.571-26.857h36.571q37.714 0 64.571 26.857t26.857 64.571v54.857h219.429v-54.857q0-37.714 26.857-64.571t64.571-26.857h36.571q37.714 0 64.571 26.857t26.857 64.571v54.857h73.143q29.714 0 51.429 21.714t21.714 51.429z" - ], - "width": 950.8571428571429, - "attrs": [], - "isMulticolor": false, - "tags": [ - "calendar-check-o" - ], - "defaultCode": 62068, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 573, - "order": 1090, - "prevSize": 14, - "code": 62068, - "name": "calendar-check-o" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 573 - }, - { - "icon": { - "paths": [ - "M256 0q14.857 0 25.714 10.857t10.857 25.714v509.143l306.286-245.143q9.714-8 22.857-8 14.857 0 25.714 10.857t10.857 25.714v216.571l306.286-245.143q9.714-8 22.857-8 14.857 0 25.714 10.857t10.857 25.714v658.286q0 14.857-10.857 25.714t-25.714 10.857h-950.857q-14.857 0-25.714-10.857t-10.857-25.714v-950.857q0-14.857 10.857-25.714t25.714-10.857h219.429z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "industry" - ], - "defaultCode": 62069, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 574, - "order": 1091, - "prevSize": 14, - "code": 62069, - "name": "industry" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 574 - }, - { - "icon": { - "paths": [ - "M292.571 621.714q37.714 0 73.143-8.571v374.286q0 14.857-10.857 25.714t-25.714 10.857h-73.143q-14.857 0-25.714-10.857t-10.857-25.714v-374.286q34.857 8.571 73.143 8.571zM292.571 0q121.143 0 206.857 85.714t85.714 206.857-85.714 206.857-206.857 85.714-206.857-85.714-85.714-206.857 85.714-206.857 206.857-85.714zM292.571 128q8 0 13.143-5.143t5.143-13.143-5.143-13.143-13.143-5.143q-83.429 0-142.286 58.857t-58.857 142.286q0 8 5.143 13.143t13.143 5.143 13.143-5.143 5.143-13.143q0-68 48.286-116.286t116.286-48.286z" - ], - "width": 585, - "attrs": [], - "isMulticolor": false, - "tags": [ - "map-pin" - ], - "defaultCode": 62070, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 575, - "order": 1092, - "prevSize": 14, - "code": 62070, - "name": "map-pin" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 575 - }, - { - "icon": { - "paths": [ - "M997.143 169.714q5.714 5.714 5.714 13.143t-5.714 13.143l-80.571 80.571q-16 16-38.857 16h-768q-14.857 0-25.714-10.857t-10.857-25.714v-146.286q0-14.857 10.857-25.714t25.714-10.857h329.143v-36.571q0-14.857 10.857-25.714t25.714-10.857h73.143q14.857 0 25.714 10.857t10.857 25.714v36.571h292.571q22.857 0 38.857 16zM438.857 694.857h146.286v292.571q0 14.857-10.857 25.714t-25.714 10.857h-73.143q-14.857 0-25.714-10.857t-10.857-25.714v-292.571zM914.286 438.857q14.857 0 25.714 10.857t10.857 25.714v146.286q0 14.857-10.857 25.714t-25.714 10.857h-768q-22.857 0-38.857-16l-80.571-80.571q-5.714-5.714-5.714-13.143t5.714-13.143l80.571-80.571q16-16 38.857-16h292.571v-109.714h146.286v109.714h329.143z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "map-signs" - ], - "defaultCode": 62071, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 576, - "order": 1093, - "prevSize": 14, - "code": 62071, - "name": "map-signs" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 576 - }, - { - "icon": { - "paths": [ - "M1154.286 6.286q16 11.429 16 30.286v804.571q0 11.429-6.286 20.571t-16.571 13.143l-365.714 146.286q-13.714 6.286-27.429 0l-352-140.571-352 140.571q-5.714 2.857-13.714 2.857-10.857 0-20.571-6.286-16-11.429-16-30.286v-804.571q0-11.429 6.286-20.571t16.571-13.143l365.714-146.286q13.714-6.286 27.429 0l352 140.571 352-140.571q18.286-7.429 34.286 3.429zM420.571 83.429v725.714l329.143 131.429v-725.714zM73.143 207.429v725.714l310.857-124v-725.714zM1097.143 816.571v-725.714l-310.857 124v725.714z" - ], - "width": 1170, - "attrs": [], - "isMulticolor": false, - "tags": [ - "map-o" - ], - "defaultCode": 62072, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 577, - "order": 1094, - "prevSize": 14, - "code": 62072, - "name": "map-o" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 577 - }, - { - "icon": { - "paths": [ - "M292.571 0q7.429 0 12.857 5.429t5.429 12.857v841.143q0 11.429-9.714 16l-274.286 146.286q-4 2.286-8.571 2.286-7.429 0-12.857-5.429t-5.429-12.857v-841.143q0-11.429 9.714-16l274.286-146.286q4-2.286 8.571-2.286zM1005.714 0q7.429 0 12.857 5.429t5.429 12.857v841.143q0 11.429-9.714 16l-274.286 146.286q-4 2.286-8.571 2.286-7.429 0-12.857-5.429t-5.429-12.857v-841.143q0-11.429 9.714-16l274.286-146.286q4-2.286 8.571-2.286zM365.714 0q4.571 0 8 1.714l292.571 146.286q10.286 5.714 10.286 16.571v841.143q0 7.429-5.429 12.857t-12.857 5.429q-4.571 0-8-1.714l-292.571-146.286q-10.286-5.714-10.286-16.571v-841.143q0-7.429 5.429-12.857t12.857-5.429z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "map" - ], - "defaultCode": 62073, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 578, - "order": 1095, - "prevSize": 14, - "code": 62073, - "name": "map" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 578 - }, - { - "icon": { - "paths": [ - "M365.714 512q0-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.714zM585.143 512q0-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 512q0-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.714zM1024 512q0 99.429-68.571 183.714t-186.286 133.143-257.143 48.857q-62.857 0-120.571-10.286-98.857 98.857-248.571 130.857-29.714 5.714-49.143 7.429-6.857 0.571-12.571-3.429t-7.429-10.286q-2.286-8.571 11.429-21.143 2.857-2.857 13.429-12.286t14.571-13.429 13.429-14.571 13.714-18 11.714-21.143 11.429-27.429 8.286-32.857 7.143-41.429q-83.429-51.429-131.143-123.714t-47.714-154q0-99.429 68.571-183.714t186.286-133.143 257.143-48.857 257.143 48.857 186.286 133.143 68.571 183.714z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "commenting" - ], - "defaultCode": 62074, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 579, - "order": 1096, - "prevSize": 14, - "code": 62074, - "name": "commenting" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 579 - }, - { - "icon": { - "paths": [ - "M365.714 512q0 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.714zM585.143 512q0 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 512q0 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.714zM512 219.429q-116.571 0-218 39.714t-161.143 107.143-59.714 145.714q0 64 40.857 122t115.143 100.286l49.714 28.571-15.429 54.857q-13.714 52-40 98.286 86.857-36 157.143-97.714l24.571-21.714 32.571 3.429q39.429 4.571 74.286 4.571 116.571 0 218-39.714t161.143-107.143 59.714-145.714-59.714-145.714-161.143-107.143-218-39.714zM1024 512q0 99.429-68.571 183.714t-186.286 133.143-257.143 48.857q-40 0-82.857-4.571-113.143 100-262.857 138.286-28 8-65.143 12.571h-2.857q-8.571 0-15.429-6t-9.143-15.714v-0.571q-1.714-2.286-0.286-6.857t1.143-5.714 2.571-5.429l3.429-5.143t4-4.857 4.571-5.143q4-4.571 17.714-19.714t19.714-21.714 17.714-22.571 18.571-29.143 15.429-33.714 14.857-43.429q-89.714-50.857-141.429-125.714t-51.714-160.571q0-74.286 40.571-142t109.143-116.857 163.429-78 198.857-28.857 198.857 28.857 163.429 78 109.143 116.857 40.571 142z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "commenting-o" - ], - "defaultCode": 62075, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 580, - "order": 1097, - "prevSize": 14, - "code": 62075, - "name": "commenting-o" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 580 - }, - { - "icon": { - "paths": [ - "M292.571 680.571l292.571-168.571v337.714l-292.571 169.143v-338.286zM0 512v337.714l292.571-169.143zM292.571 5.143v337.714l-292.571 169.143v-337.714zM292.571 342.857l292.571-168.571v337.714z" - ], - "width": 585, - "attrs": [], - "isMulticolor": false, - "tags": [ - "houzz" - ], - "defaultCode": 62076, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 581, - "order": 1098, - "prevSize": 14, - "code": 62076, - "name": "houzz" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 581 - }, - { - "icon": { - "paths": [ - "M976.571 296q-5.714 134.857-189.714 372-190.286 246.286-321.143 246.286-81.143 0-137.143-150.286-25.143-91.429-75.429-275.429-41.143-149.714-89.714-149.714-10.286 0-72.571 43.429l-44-56q13.714-12 61.714-55.143t74.286-66q89.143-78.857 137.714-83.429 54.286-5.143 87.429 31.714t46.286 116.286q25.143 164 37.714 213.143 31.429 142.286 68.571 142.286 29.143 0 88-92 57.714-92 62.286-140.571 7.429-79.429-62.286-79.429-32.571 0-69.143 14.857 68.571-224.571 262.286-218.286 143.429 4.571 134.857 186.286z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "vimeo" - ], - "defaultCode": 62077, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 582, - "order": 1099, - "prevSize": 14, - "code": 62077, - "name": "vimeo" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 582 - }, - { - "icon": { - "paths": [ - "M0 73.143h877.714v877.714h-877.714v-877.714zM620 710.286l-126.286-360.571 126.286-169.714h-362.286l126.286 169.714-126.286 360.571 181.143 173.714z" - ], - "width": 877.7142857142858, - "attrs": [], - "isMulticolor": false, - "tags": [ - "black-tie" - ], - "defaultCode": 62078, - "grid": 14 - }, - "attrs": [], - "properties": { - "id": 583, - "order": 1100, - "prevSize": 14, - "code": 62078, - "name": "black-tie" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 583 - }, - { - "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": 1101, - "prevSize": 14, - "code": 62080, - "name": "fonticons" - }, - "setIdx": 0, - "setId": 4, - "iconIdx": 584 - }, - { - "icon": { - "paths": [ - "M512 128q69.667 0 135.5 21.167t115.5 55 93.5 74.833 73.667 82 51.667 74.833 32.167 54.833l10 21.333q-2.333 5-6.333 13.5t-18.833 34.667-31.667 51.667-44.333 60-56.833 64.333-69.5 60.167-82.333 51.5-94.833 34.667-107.333 13.5q-69.667 0-135.5-21.167t-115.5-54.833-93.5-74.333-73.667-81.5-51.667-74.5-32.167-55l-10-21q2.333-5 6.333-13.5t18.833-34.833 31.667-51.833 44.333-60.333 56.833-64.667 69.5-60.333 82.333-51.833 94.833-34.833 107.333-13.5zM512 213.333q-46.667 0-91.667 12.333t-81.167 31.833-70.667 47.167-59.667 54.5-48.833 57.667-37.667 52.833-26.333 44q12.333 21.667 26.333 43.5t37.667 52.333 48.833 57 59.667 53.833 70.667 46.667 81.167 31.5 91.667 12.167 91.667-12.333 81.167-31.667 70.667-46.833 59.667-54.167 48.833-57.333 37.667-52.667 26.333-43.667q-12.333-21.667-26.333-43.667t-37.667-52.667-48.833-57.333-59.667-54.167-70.667-46.833-81.167-31.667-91.667-12.333zM512 341.333q70.667 0 120.667 50t50 120.667-50 120.667-120.667 50-120.667-50-50-120.667 50-120.667 120.667-50zM512 426.667q-35.333 0-60.333 25t-25 60.333 25 60.333 60.333 25 60.333-25 25-60.333-25-60.333-60.333-25z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "eye" - ], - "defaultCode": 57344, - "grid": 24 - }, - "attrs": [], - "properties": { - "id": 0, - "order": 2, - "prevSize": 24, - "name": "eye2", - "code": 57344 - }, - "setIdx": 2, - "setId": 2, - "iconIdx": 0 - }, - { - "icon": { - "paths": [ - "M674 0q41.667 0 80 15.667 40 16 70.667 46.667 31 31.333 46.667 70.333 15.333 37.667 15.333 80t-15.333 80q-15.667 39-46.667 70.333l-392.667 392.667q-18 18-42.667 28.333-24 9.333-48 9.333t-48-9.333q-24.667-10.333-42.667-28.333-18.667-18.667-28-42.333-9.333-22.667-9.333-48 0-25.667 9.333-48.333 9.333-23.333 28-42.333l362.333-362q12.667-12.667 30.333-12.667 17.333 0 30 12.667t12.667 30q0 17.667-12.667 30.333l-362.333 362q-12.333 12.333-12.333 30.333 0 17.667 12.333 30 13.333 12.667 30.333 12.667t30.333-12.667l392.667-392.667q37-37 37-90t-37-90q-38-37.333-90.333-37.333-52.667 0-90 37.333l-393.667 391.667q-30.667 30.667-46.667 70.667-15.667 38.333-15.667 80.333 0 41.333 15.667 80.333 16 39.667 46.667 70.333 31.667 31.333 70.667 47t80.333 15.667 80.333-15.667 70.667-47l392-392q12.667-12.667 30.333-12.667 17.333 0 30 12.667t12.667 30q0 17.667-12.667 30.333l-392 392q-43 43-99 65.667-53.333 22-112.333 22-58.667 0-112.333-22-56-22.667-99-65.667-42.667-42.667-65.333-98.667-22-54-22-112.333 0-58.667 22-112.333 22.333-55.333 65.333-99h0.333l393.333-391.667q30.667-30.667 70.333-46.667 39-15.667 80-15.667z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "paper-clip" - ], - "defaultCode": 57345, - "grid": 24 - }, - "attrs": [], - "properties": { - "id": 1, - "order": 3, - "prevSize": 24, - "name": "paper-clip", - "code": 57345 - }, - "setIdx": 2, - "setId": 2, - "iconIdx": 1 - }, - { - "icon": { - "paths": [ - "M170.667 128h682.667q53 0 90.5 37.5t37.5 90.5v512q0 53-37.5 90.5t-90.5 37.5h-682.667q-53 0-90.5-37.5t-37.5-90.5v-512q0-53 37.5-90.5t90.5-37.5zM896 768v-466l-357.333 286q-11.333 9.333-26.667 9.333t-26.667-9.333l-357.333-286v466q0 17.667 12.5 30.167t30.167 12.5h682.667q17.667 0 30.167-12.5t12.5-30.167zM853.333 213.333h-682.667q-6.333 0-14 2.333l355.333 284.333 355.333-284.333q-7.667-2.333-14-2.333z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "mail" - ], - "defaultCode": 57346, - "grid": 24 - }, - "attrs": [], - "properties": { - "id": 2, - "order": 4, - "prevSize": 24, - "name": "mail2", - "code": 57346 - }, - "setIdx": 2, - "setId": 2, - "iconIdx": 2 - }, - { - "icon": { - "paths": [ - "M341.333 170.667h341.333q69.333 0 132.5 27t109 72.833 72.833 109 27 132.5-27 132.5-72.833 109-109 72.833-132.5 27h-341.333q-69.333 0-132.5-27t-109-72.833-72.833-109-27-132.5 27-132.5 72.833-109 109-72.833 132.5-27zM341.333 341.333q70.667 0 120.667 50t50 120.667-50 120.667-120.667 50-120.667-50-50-120.667 50-120.667 120.667-50zM341.333 426.667q-35.333 0-60.333 25t-25 60.333 25 60.333 60.333 25 60.333-25 25-60.333-25-60.333-60.333-25zM682.667 256h-341.333q-69.667 0-128.5 34.333t-93.167 93.167-34.333 128.5 34.333 128.5 93.167 93.167 128.5 34.333h341.333q69.667 0 128.5-34.333t93.167-93.167 34.333-128.5-34.333-128.5-93.167-93.167-128.5-34.333z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "toggle" - ], - "defaultCode": 57347, - "grid": 24 - }, - "attrs": [], - "properties": { - "id": 3, - "order": 5, - "prevSize": 24, - "name": "toggle", - "code": 57347 - }, - "setIdx": 2, - "setId": 2, - "iconIdx": 3 - }, - { - "icon": { - "paths": [ - "M170.667 42.667h682.667q53 0 90.5 37.5t37.5 90.5v682.667q0 53-37.5 90.5t-90.5 37.5h-682.667q-53 0-90.5-37.5t-37.5-90.5v-682.667q0-53 37.5-90.5t90.5-37.5zM341.333 896v-512h-213.333v469.333q0 17.667 12.5 30.167t30.167 12.5h170.667zM896 853.333v-469.333h-469.333v512h426.667q17.667 0 30.167-12.5t12.5-30.167zM853.333 128h-682.667q-17.667 0-30.167 12.5t-12.5 30.167v128h768v-128q0-17.667-12.5-30.167t-30.167-12.5z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "layout" - ], - "defaultCode": 57348, - "grid": 24 - }, - "attrs": [], - "properties": { - "id": 4, - "order": 6, - "prevSize": 24, - "name": "layout", - "code": 57348 - }, - "setIdx": 2, - "setId": 2, - "iconIdx": 4 - }, - { - "icon": { - "paths": [ - "M725.333 42.667q50.333 0 97.167 19t83.833 56 56 83.833 19 97.167q0 50-19.167 97.167t-55.833 83.833l-128 128q-3.667 3.667-11 10.333-35.667 31.667-79.667 48.167t-90.333 16.5q-58.333 0-110.333-25-39-18.333-70.667-50t-50-70.667q25-25 60.333-25 12.333 0 25 3.667 21.667 35 56.667 56.667 41 25 89 25 33.333 0 64.667-12.667t56-37.333l128-128q24.667-24.667 37.333-56t12.667-64.667-12.667-64.667-37.333-56-56-37.333-64.667-12.667-64.667 12.667-56 37.333l-89.667 89.667q-42.667-11.667-88.333-11.667-7.333 0-20.667 0.667 6.667-7.333 10.333-11l128-128q36.667-36.667 83.833-55.833t97.167-19.167zM426.667 341.333q58.333 0 110.333 25 39 18.333 70.667 50t50 70.667q-25 25-60.333 25-12.333 0-25-3.667-21.667-35-56.667-56.667-41-25-89-25-33.333 0-64.667 12.667t-56 37.333l-128 128q-24.667 24.667-37.333 56t-12.667 64.667 12.667 64.667 37.333 56 56 37.333 64.667 12.667 64.667-12.667 56-37.333l89.667-89.667q42.667 11.667 88.333 11.667 7.333 0 20.667-0.667-6.667 7.333-10.333 11l-128 128q-37 37-83.833 56t-97.167 19q-50 0-97.167-19.167t-83.833-55.833q-37-37-56-83.833t-19-97.167 19-97.167 56-83.833l128-128q3.667-3.667 11-10.333 35.667-31.667 79.667-48.167t90.333-16.5z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "link" - ], - "defaultCode": 57349, - "grid": 24 - }, - "attrs": [], - "properties": { - "id": 5, - "order": 7, - "prevSize": 24, - "name": "link2", - "code": 57349 - }, - "setIdx": 2, - "setId": 2, - "iconIdx": 5 - }, - { - "icon": { - "paths": [ - "M512 42.667q55 0 104 17.833t87 49.167 68.333 74.5 50.5 93.333 31.5 106.5q33.667 169 71.5 267.167t99.167 159.5h-391.333q7.333 21 7.333 42.667 0 53-37.5 90.5t-90.5 37.5-90.5-37.5-37.5-90.5q0-21.667 7.333-42.667h-391.333q61.333-61.333 99.167-159.5t71.5-267.167q11.333-56.333 31.5-106.5t50.5-93.333 68.333-74.5 87-49.167 104-17.833zM512 810.667q-17.667 0-30.167 12.5t-12.5 30.167 12.5 30.167 30.167 12.5 30.167-12.5 12.5-30.167-12.5-30.167-30.167-12.5zM512 128q-38.667 0-72.833 12t-58.5 30.667-45.167 44.833-33.833 50.833-23.5 52.667-15.5 46.167-8.333 35.5q-42.667 215-94 324.667h703.333q-51.333-109.667-94-324.667-3.333-17.333-8.333-35.5t-15.5-46.167-23.5-52.667-33.833-50.833-45.167-44.833-58.5-30.667-72.833-12z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "bell" - ], - "defaultCode": 57350, - "grid": 24 - }, - "attrs": [], - "properties": { - "id": 6, - "order": 8, - "prevSize": 24, - "name": "bell2", - "code": 57350 - }, - "setIdx": 2, - "setId": 2, - "iconIdx": 6 - }, - { - "icon": { - "paths": [ - "M512 42.667q69.667 0 128.5 34.333t93.167 93.167 34.333 128.5v170.667h85.333q53 0 90.5 37.5t37.5 90.5v256q0 53-37.5 90.5t-90.5 37.5h-682.667q-53 0-90.5-37.5t-37.5-90.5v-256q0-53 37.5-90.5t90.5-37.5h85.333v-170.667q0-69.667 34.333-128.5t93.167-93.167 128.5-34.333zM853.333 554.667h-682.667q-17.667 0-30.167 12.5t-12.5 30.167v256q0 17.667 12.5 30.167t30.167 12.5h682.667q17.667 0 30.167-12.5t12.5-30.167v-256q0-17.667-12.5-30.167t-30.167-12.5zM512 128q-70.667 0-120.667 50t-50 120.667v170.667h341.333v-170.667q0-70.667-50-120.667t-120.667-50z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "lock" - ], - "defaultCode": 57351, - "grid": 24 - }, - "attrs": [], - "properties": { - "id": 7, - "order": 9, - "prevSize": 24, - "name": "lock2", - "code": 57351 - }, - "setIdx": 2, - "setId": 2, - "iconIdx": 7 - }, - { - "icon": { - "paths": [ - "M512 42.667q69.667 0 128.5 34.333t93.167 93.167 34.333 128.5v42.667q0 17.667-12.5 30.167t-30.167 12.5-30.167-12.5-12.5-30.167v-42.667q0-70.667-50-120.667t-120.667-50-120.667 50-50 120.667v170.667h512q53 0 90.5 37.5t37.5 90.5v256q0 53-37.5 90.5t-90.5 37.5h-682.667q-53 0-90.5-37.5t-37.5-90.5v-256q0-53 37.5-90.5t90.5-37.5h85.333v-170.667q0-69.667 34.333-128.5t93.167-93.167 128.5-34.333zM853.333 554.667h-682.667q-17.667 0-30.167 12.5t-12.5 30.167v256q0 17.667 12.5 30.167t30.167 12.5h682.667q17.667 0 30.167-12.5t12.5-30.167v-256q0-17.667-12.5-30.167t-30.167-12.5z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "unlock" - ], - "defaultCode": 57352, - "grid": 24 - }, - "attrs": [], - "properties": { - "id": 8, - "order": 10, - "prevSize": 24, - "name": "unlock", - "code": 57352 - }, - "setIdx": 2, - "setId": 2, - "iconIdx": 8 - }, - { - "icon": { - "paths": [ - "M298.667 42.667h426.667q53 0 90.5 37.5t37.5 90.5v810.667l-341.333-256-341.333 256v-810.667q0-53 37.5-90.5t90.5-37.5zM725.333 128h-426.667q-17.667 0-30.167 12.5t-12.5 30.167v640l256-192 256 192v-640q0-17.667-12.5-30.167t-30.167-12.5z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "ribbon" - ], - "defaultCode": 57353, - "grid": 24 - }, - "attrs": [], - "properties": { - "id": 9, - "order": 11, - "prevSize": 24, - "name": "ribbon", - "code": 57353 - }, - "setIdx": 2, - "setId": 2, - "iconIdx": 9 - }, - { - "icon": { - "paths": [ - "M170.667 42.667h682.667q53 0 90.5 37.5t37.5 90.5v682.667q0 53-37.5 90.5t-90.5 37.5h-682.667q-53 0-90.5-37.5t-37.5-90.5v-682.667q0-53 37.5-90.5t90.5-37.5zM896 743l-213.333-213.333-366.333 366.333h537q17.667 0 30.167-12.5t12.5-30.167v-110.333zM853.333 128h-682.667q-17.667 0-30.167 12.5t-12.5 30.167v682.667q0 17.667 12.5 30.167t30.167 12.5h25l487-487 213.333 213.333v-451.667q0-17.667-12.5-30.167t-30.167-12.5zM341.333 213.333q53 0 90.5 37.5t37.5 90.5-37.5 90.5-90.5 37.5-90.5-37.5-37.5-90.5 37.5-90.5 90.5-37.5zM341.333 298.667q-17.667 0-30.167 12.5t-12.5 30.167 12.5 30.167 30.167 12.5 30.167-12.5 12.5-30.167-12.5-30.167-30.167-12.5z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "image" - ], - "defaultCode": 57360, - "grid": 24 - }, - "attrs": [], - "properties": { - "id": 10, - "order": 12, - "prevSize": 24, - "name": "image2", - "code": 57360 - }, - "setIdx": 2, - "setId": 2, - "iconIdx": 10 - }, - { - "icon": { - "paths": [ - "M512 170.667q131 0 255 46t225 135.333q14.333 12.333 14.333 32 0 16.667-10.667 28.333l-2 2q-12.333 12.333-30 12.333-16.667 0-28.333-10.667-89-78.667-198.5-119.333t-224.833-40.667-224.833 40.667-198.5 119.333q-11.667 10.667-28.333 10.667-19.667 0-32-14.333-10.667-11.667-10.667-28.333 0-19.667 14.333-32 101.333-89.333 225.167-135.333t254.833-46zM512.333 682.667q58 0 107.667 29.333 10 6 15.667 15.833t5.667 21.167-6 21.333q-3 5-6.667 8.667-12.333 12.333-30.333 12.333-12 0-21.333-5.667-30.333-17.667-64.667-17.667-34.667 0-65 17.667-10.667 6-21.667 6-24.333 0-37-21-6-10-6-21.333 0-24.333 21-37 50.333-29.667 108.667-29.667zM512 427q80.667 0 157 26.667t140 79q15.667 12.667 15.667 33 0 15.333-9.667 27-2 2.667-2.667 3.333-12.333 12.333-30 12.333-15.667 0-27.333-9.667-52-42.667-114.667-64.667t-128.333-22-128.333 22-114.667 64.667q-11.667 9.667-27 9.667-20.333 0-33-15.667-9.667-11.667-9.667-27 0-20.333 15.667-33 63.333-52.333 140-79t157-26.667z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "signal", - "wave" - ], - "defaultCode": 57361, - "grid": 24 - }, - "attrs": [], - "properties": { - "id": 11, - "order": 13, - "prevSize": 24, - "name": "signal2", - "code": 57361 - }, - "setIdx": 2, - "setId": 2, - "iconIdx": 11 - }, - { - "icon": { - "paths": [ - "M512 42.667q95.667 0 182.5 37.167t149.667 100 100 149.667 37.167 182.5-37.167 182.5-100 149.667-149.667 100-182.5 37.167-182.5-37.167-149.667-100-100-149.667-37.167-182.5 37.167-182.5 100-149.667 149.667-100 182.5-37.167zM512 128q-78 0-149.167 30.5t-122.5 81.833-81.833 122.5-30.5 149.167 30.5 149.167 81.833 122.5 122.5 81.833 149.167 30.5 149.167-30.5 122.5-81.833 81.833-122.5 30.5-149.167-30.5-149.167-81.833-122.5-122.5-81.833-149.167-30.5zM512 213.333q60.667 0 116 23.667t95.333 63.667 63.667 95.333 23.667 116-23.667 116-63.667 95.333-95.333 63.667-116 23.667-116-23.667-95.333-63.667-63.667-95.333-23.667-116 23.667-116 63.667-95.333 95.333-63.667 116-23.667zM512 298.667q-43.333 0-82.833 17t-68 45.5-45.5 68-17 82.833 17 82.833 45.5 68 68 45.5 82.833 17 82.833-17 68-45.5 45.5-68 17-82.833-17-82.833-45.5-68-68-45.5-82.833-17zM512 384q53 0 90.5 37.5t37.5 90.5-37.5 90.5-90.5 37.5-90.5-37.5-37.5-90.5 37.5-90.5 90.5-37.5zM512 469.333q-17.667 0-30.167 12.5t-12.5 30.167 12.5 30.167 30.167 12.5 30.167-12.5 12.5-30.167-12.5-30.167-30.167-12.5z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "target" - ], - "defaultCode": 57362, - "grid": 24 - }, - "attrs": [], - "properties": { - "id": 12, - "order": 14, - "prevSize": 24, - "name": "target", - "code": 57362 - }, - "setIdx": 2, - "setId": 2, - "iconIdx": 12 - }, - { - "icon": { - "paths": [ - "M426.667 42.667h170.667q41.333 0 74.333 23.833t46.333 61.5h50q53 0 90.5 37.5t37.5 90.5v597.333q0 53-37.5 90.5t-90.5 37.5h-512q-53 0-90.5-37.5t-37.5-90.5v-597.333q0-53 37.5-90.5t90.5-37.5h50q13.333-37.667 46.333-61.5t74.333-23.833zM768 213.333h-50q-13.333 37.667-46.333 61.5t-74.333 23.833h-170.667q-41.333 0-74.333-23.833t-46.333-61.5h-50q-17.667 0-30.167 12.5t-12.5 30.167v597.333q0 17.667 12.5 30.167t30.167 12.5h512q17.667 0 30.167-12.5t12.5-30.167v-597.333q0-17.667-12.5-30.167t-30.167-12.5zM597.333 128h-170.667q-17.667 0-30.167 12.5t-12.5 30.167 12.5 30.167 30.167 12.5h170.667q17.667 0 30.167-12.5t12.5-30.167-12.5-30.167-30.167-12.5z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "clipboard" - ], - "defaultCode": 57363, - "grid": 24 - }, - "attrs": [], - "properties": { - "id": 13, - "order": 15, - "prevSize": 24, - "name": "clipboard2", - "code": 57363 - }, - "setIdx": 2, - "setId": 2, - "iconIdx": 13 - }, - { - "icon": { - "paths": [ - "M512 42.667q95.667 0 182.5 37.167t149.667 100 100 149.667 37.167 182.5-37.167 182.5-100 149.667-149.667 100-182.5 37.167-182.5-37.167-149.667-100-100-149.667-37.167-182.5 37.167-182.5 100-149.667 149.667-100 182.5-37.167zM512 128q-78 0-149.167 30.5t-122.5 81.833-81.833 122.5-30.5 149.167 30.5 149.167 81.833 122.5 122.5 81.833 149.167 30.5 149.167-30.5 122.5-81.833 81.833-122.5 30.5-149.167-30.5-149.167-81.833-122.5-122.5-81.833-149.167-30.5zM512 213.333q17.667 0 30.167 12.5t12.5 30.167v238.333l115.667 115.333q12.333 12.333 12.333 30.333t-12.333 30.333-30.333 12.333-30.333-12.333l-128-128q-12.333-12.333-12.333-30.333v-256q0-17.667 12.5-30.167t30.167-12.5z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "clock" - ], - "defaultCode": 57364, - "grid": 24 - }, - "attrs": [], - "properties": { - "id": 14, - "order": 16, - "prevSize": 24, - "name": "clock2", - "code": 57364 - }, - "setIdx": 2, - "setId": 2, - "iconIdx": 14 - }, - { - "icon": { - "paths": [ - "M384 0h256q53 0 90.5 37.5t37.5 90.5v98q60 53.333 94 127.833t34 158.167-34 158-94 128v98q0 53-37.5 90.5t-90.5 37.5h-256q-53 0-90.5-37.5t-37.5-90.5v-98q-60-53.667-94-128t-34-158 34-158.167 94-127.833v-98q0-53 37.5-90.5t90.5-37.5zM682.667 896v-40q-80 40-170.667 40t-170.667-40v40q0 17.667 12.5 30.167t30.167 12.5h256q17.667 0 30.167-12.5t12.5-30.167zM512 213.333q-60.667 0-116 23.667t-95.333 63.667-63.667 95.333-23.667 116 23.667 116 63.667 95.333 95.333 63.667 116 23.667 116-23.667 95.333-63.667 63.667-95.333 23.667-116-23.667-116-63.667-95.333-95.333-63.667-116-23.667zM512 298.667q17.667 0 30.167 12.5t12.5 30.167v153l73 72.667q12.333 12.333 12.333 30.333t-12.333 30.333-30.333 12.333-30.333-12.333l-85.333-85.333q-12.333-12.333-12.333-30.333v-170.667q0-17.667 12.5-30.167t30.167-12.5zM640 85.333h-256q-17.667 0-30.167 12.5t-12.5 30.167v40q80-40 170.667-40t170.667 40v-40q0-17.667-12.5-30.167t-30.167-12.5z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "watch" - ], - "defaultCode": 57365, - "grid": 24 - }, - "attrs": [], - "properties": { - "id": 15, - "order": 17, - "prevSize": 24, - "name": "watch", - "code": 57365 - }, - "setIdx": 2, - "setId": 2, - "iconIdx": 15 - }, - { - "icon": { - "paths": [ - "M170.667 85.333h682.667q53 0 90.5 37.5t37.5 90.5v426.667q0 53-37.5 90.5t-90.5 37.5h-106.667l-64-85.333h170.667q17.667 0 30.167-12.5t12.5-30.167v-426.667q0-17.667-12.5-30.167t-30.167-12.5h-682.667q-17.667 0-30.167 12.5t-12.5 30.167v426.667q0 17.667 12.5 30.167t30.167 12.5h170.667l-64 85.333h-106.667q-53 0-90.5-37.5t-37.5-90.5v-426.667q0-53 37.5-90.5t90.5-37.5zM597.333 853.333l-85.333-113.667-85.333 113.667h170.667zM256 938.667l256-341.333 256 341.333h-512z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "air-play" - ], - "defaultCode": 57366, - "grid": 24 - }, - "attrs": [], - "properties": { - "id": 16, - "order": 18, - "prevSize": 24, - "name": "air-play", - "code": 57366 - }, - "setIdx": 2, - "setId": 2, - "iconIdx": 16 - }, - { - "icon": { - "paths": [ - "M341.333 85.333h341.333l85.333 128h128q53 0 90.5 38.167t37.5 91.167v468.667q0 53-37.5 90.167t-90.5 37.167h-768q-53 0-90.5-37.5t-37.5-90.5v-468.667q0-53 37.5-90.833t90.5-37.833h128zM512 341.333q43.333 0 82.833 17t68 45.5 45.5 68 17 82.833-17 82.833-45.5 68-68 45.5-82.833 17-82.833-17-68-45.5-45.5-68-17-82.833 17-82.833 45.5-68 68-45.5 82.833-17zM512 426.667q-53 0-90.5 37.5t-37.5 90.5 37.5 90.5 90.5 37.5 90.5-37.5 37.5-90.5-37.5-90.5-90.5-37.5zM722.333 298.667l-83.667-128h-251.667l-85.333 128h-173.667q-17.667 0-30.167 12.667t-12.5 30.667v468.667q0 17.667 12.5 30.167t30.167 12.5h768q18 0 30.333-12.167t12.333-29.833v-468.667q0-18-12.667-31t-30-13h-173.667z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "camera" - ], - "defaultCode": 57367, - "grid": 24 - }, - "attrs": [], - "properties": { - "id": 17, - "order": 19, - "prevSize": 24, - "name": "camera2", - "code": 57367 - }, - "setIdx": 2, - "setId": 2, - "iconIdx": 17 - }, - { - "icon": { - "paths": [ - "M128 213.333h469.333q53 0 90.5 37.5t37.5 90.5v77.667l298.667-163v512l-298.667-163v77.667q0 53-37.5 90.5t-90.5 37.5h-469.333q-53 0-90.5-37.5t-37.5-90.5v-341.333q0-53 37.5-90.5t90.5-37.5zM597.333 298.667h-469.333q-17.667 0-30.167 12.5t-12.5 30.167v341.333q0 17.667 12.5 30.167t30.167 12.5h469.333q17.667 0 30.167-12.5t12.5-30.167v-341.333q0-17.667-12.5-30.167t-30.167-12.5zM938.667 624.333v-224.667l-205.667 112.333z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "video" - ], - "defaultCode": 57368, - "grid": 24 - }, - "attrs": [], - "properties": { - "id": 18, - "order": 20, - "prevSize": 24, - "name": "video2", - "code": 57368 - }, - "setIdx": 2, - "setId": 2, - "iconIdx": 18 - }, - { - "icon": { - "paths": [ - "M512 42.667q95.667 0 182.5 37.167t149.667 100 100 149.667 37.167 182.5-37.167 182.5-100 149.667-149.667 100-182.5 37.167-182.5-37.167-149.667-100-100-149.667-37.167-182.5 37.167-182.5 100-149.667 149.667-100 182.5-37.167zM512 128q-78 0-149.167 30.5t-122.5 81.833-81.833 122.5-30.5 149.167 30.5 149.167 81.833 122.5 122.5 81.833 149.167 30.5 149.167-30.5 122.5-81.833 81.833-122.5 30.5-149.167-30.5-149.167-81.833-122.5-122.5-81.833-149.167-30.5zM512 341.333q70.667 0 120.667 50t50 120.667-50 120.667-120.667 50-120.667-50-50-120.667 50-120.667 120.667-50zM512 426.667q-35.333 0-60.333 25t-25 60.333 25 60.333 60.333 25 60.333-25 25-60.333-25-60.333-60.333-25z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "disc" - ], - "defaultCode": 57369, - "grid": 24 - }, - "attrs": [], - "properties": { - "id": 19, - "order": 21, - "prevSize": 24, - "name": "disc", - "code": 57369 - }, - "setIdx": 2, - "setId": 2, - "iconIdx": 19 - }, - { - "icon": { - "paths": [ - "M384 85.333h256q53 0 90.5 37.5t37.5 90.5v213.333h85.333q53 0 90.5 37.5t37.5 90.5v170.667q0 53-37.5 90.5t-90.5 37.5h-92.667q-13.333 37.667-46.333 61.5t-74.333 23.833h-256q-41.333 0-74.333-23.833t-46.333-61.5h-92.667q-53 0-90.5-37.5t-37.5-90.5v-170.667q0-53 37.5-90.5t90.5-37.5h85.333v-213.333q0-53 37.5-90.5t90.5-37.5zM640 768h-256q-17.667 0-30.167 12.5t-12.5 30.167 12.5 30.167 30.167 12.5h256q17.667 0 30.167-12.5t12.5-30.167-12.5-30.167-30.167-12.5zM853.333 512h-682.667q-17.667 0-30.167 12.5t-12.5 30.167v170.667q0 17.667 12.5 30.167t30.167 12.5h92.667q13.333-37.667 46.333-61.5t74.333-23.833h256q41.333 0 74.333 23.833t46.333 61.5h92.667q17.667 0 30.167-12.5t12.5-30.167v-170.667q0-17.667-12.5-30.167t-30.167-12.5zM640 170.667h-256q-17.667 0-30.167 12.5t-12.5 30.167v213.333h341.333v-213.333q0-17.667-12.5-30.167t-30.167-12.5z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "printer" - ], - "defaultCode": 57376, - "grid": 24 - }, - "attrs": [], - "properties": { - "id": 20, - "order": 22, - "prevSize": 24, - "name": "printer", - "code": 57376 - }, - "setIdx": 2, - "setId": 2, - "iconIdx": 20 - }, - { - "icon": { - "paths": [ - "M170.667 85.333h682.667q53 0 90.5 37.5t37.5 90.5v426.667q0 53-37.5 90.5t-90.5 37.5h-298.667v85.333h128q17.667 0 30.167 12.5t12.5 30.167-12.5 30.167-30.167 12.5h-341.333q-17.667 0-30.167-12.5t-12.5-30.167 12.5-30.167 30.167-12.5h128v-85.333h-298.667q-53 0-90.5-37.5t-37.5-90.5v-426.667q0-53 37.5-90.5t90.5-37.5zM853.333 170.667h-682.667q-17.667 0-30.167 12.5t-12.5 30.167v426.667q0 17.667 12.5 30.167t30.167 12.5h682.667q17.667 0 30.167-12.5t12.5-30.167v-426.667q0-17.667-12.5-30.167t-30.167-12.5z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "monitor" - ], - "defaultCode": 57377, - "grid": 24 - }, - "attrs": [], - "properties": { - "id": 21, - "order": 23, - "prevSize": 24, - "name": "monitor", - "code": 57377 - }, - "setIdx": 2, - "setId": 2, - "iconIdx": 21 - }, - { - "icon": { - "paths": [ - "M512 42.667q87.333 0 169 10.5t149.833 30.667 109.333 53.667 41.167 75.833v597.333q0 42.333-41.167 75.833t-109.333 53.667-149.833 30.667-169 10.5-169-10.5-149.833-30.667-109.333-53.667-41.167-75.833v-597.333q0-42.333 41.167-75.833t109.333-53.667 149.833-30.667 169-10.5zM896 810v-194.333q-65.333 33-168.333 50t-215.667 17-215.667-17-168.333-50v195q2 7.333 17.833 17.667t48.5 22.333 76 22 107 16.667 134.667 6.667 134.667-6.667 107-16.833 76-22.167 48.5-22.333 17.833-18zM896 511.333v-194.333q-65.333 33-168.333 50t-215.667 17-215.667-17-168.333-50v195q2 7.333 17.833 17.667t48.5 22.333 76 22 107 16.667 134.667 6.667 134.667-6.667 106.833-16.667 75.833-22 48.667-22.5 18-18.167zM512 128q-70.333 0-133.667 6.667t-106.333 16.5-75.833 21.667-49.167 22.333-19 18.167q2.667 7.667 19 18.167t49.167 22.333 75.833 21.667 106.333 16.5 133.667 6.667 133.667-6.667 106.333-16.5 75.833-21.667 49.167-22.333 19-18.167q-2.667-7.667-19-18.167t-49.167-22.333-75.833-21.667-106.333-16.5-133.667-6.667z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "server" - ], - "defaultCode": 57378, - "grid": 24 - }, - "attrs": [], - "properties": { - "id": 22, - "order": 24, - "prevSize": 24, - "name": "server", - "code": 57378 - }, - "setIdx": 2, - "setId": 2, - "iconIdx": 22 - }, - { - "icon": { - "paths": [ - "M512 0q53 0 90.5 37.5t37.5 90.5v22q15.667 5.333 37.667 15.333l15.333-15.333q37.667-37.667 90.667-37.667 52.667 0 90.333 37.667t37.667 90.333q0 53-37.667 90.667l-15.333 15.333q10 22 15.333 37.667h22q53 0 90.5 37.5t37.5 90.5-37.5 90.5-90.5 37.5h-22q-5.333 15.667-15.333 37.667l15.333 15.333q37.667 37.667 37.667 90.667 0 52.667-37.667 90.333t-90.333 37.667q-53 0-90.667-37.667l-15.333-15.333q-22 10-37.667 15.333v22q0 53-37.5 90.5t-90.5 37.5-90.5-37.5-37.5-90.5v-22q-15.667-5.333-37.667-15.333l-15.333 15.333q-37.667 37.667-90.333 37.667-53 0-90.5-37.667t-37.5-90.333q0-53.333 37.333-90.667l15.333-15.333q-10-22-15.333-37.667h-22q-53 0-90.5-37.5t-37.5-90.5 37.5-90.5 90.5-37.5h22q5.333-15.667 15.333-37.667l-15.333-15.333q-37.333-37.333-37.333-90.667 0-52.667 37.5-90.333t90.5-37.667q52.667 0 90.333 37.667l15.333 15.333q22-10 37.667-15.333v-22q0-53 37.5-90.5t90.5-37.5zM512 85.333q-17.667 0-30.167 12.5t-12.5 30.167v88.333q-74.667 10.667-136.333 56.333l-62.333-62.333q-12.667-12.667-30-12.667-17.667 0-30.167 12.5t-12.5 30.167q0 18 12.333 30.333l62.333 62.333q-45.667 61.667-56.333 136.333h-88.333q-17.667 0-30.167 12.5t-12.5 30.167 12.5 30.167 30.167 12.5h88.333q10.667 74.667 56.333 136.333l-62.333 62.333q-12.333 12.333-12.333 30.333 0 17.667 12.5 30.167t30.167 12.5q17.333 0 30-12.667l62.333-62.333q61.667 45.667 136.333 56.333v88.333q0 17.667 12.5 30.167t30.167 12.5 30.167-12.5 12.5-30.167v-88.333q74.667-10.667 136.333-56.333l62.333 62.333q12.667 12.667 30.333 12.667t30.167-12.5 12.5-30.167-12.667-30.333l-62.333-62.333q45.667-61.667 56.333-136.333h88.333q17.667 0 30.167-12.5t12.5-30.167-12.5-30.167-30.167-12.5h-88.333q-10.667-74.667-56.333-136.333l62.333-62.333q12.667-12.667 12.667-30.333t-12.5-30.167-30.167-12.5-30.333 12.667l-62.333 62.333q-61.667-45.667-136.333-56.333v-88.333q0-17.667-12.5-30.167t-30.167-12.5zM512 341.333q70.667 0 120.667 50t50 120.667-50 120.667-120.667 50-120.667-50-50-120.667 50-120.667 120.667-50zM512 426.667q-35.333 0-60.333 25t-25 60.333 25 60.333 60.333 25 60.333-25 25-60.333-25-60.333-60.333-25z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "cog" - ], - "defaultCode": 57379, - "grid": 24 - }, - "attrs": [], - "properties": { - "id": 23, - "order": 25, - "prevSize": 24, - "name": "cog2", - "code": 57379 - }, - "setIdx": 2, - "setId": 2, - "iconIdx": 23 - }, - { - "icon": { - "paths": [ - "M753.333 85.333q69.667 0 128.5 34.333t93.167 93.167 34.333 128.5q0 50-19.167 97.167t-55.833 83.833l-422.333 422.333-422.333-422.333q-36.667-36.667-55.833-83.833t-19.167-97.167q0-69.667 34.333-128.5t93.167-93.167 128.5-34.333q50.333 0 97.167 19t83.833 56l60.333 60.333 60.333-60.333q36.667-36.667 83.833-55.833t97.167-19.167zM753.333 170.667q-33.333 0-64.667 12.667t-56 37.333l-120.667 120.667-120.667-120.667q-24.667-24.667-56-37.333t-64.667-12.667q-46.667 0-85.833 22.833t-62 62-22.833 85.833q0 33.333 12.667 64.667t37.333 56l362 362 362-362q24.667-24.667 37.333-56t12.667-64.667q0-46.667-22.833-85.833t-62-62-85.833-22.833z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "heart" - ], - "defaultCode": 57380, - "grid": 24 - }, - "attrs": [], - "properties": { - "id": 24, - "order": 26, - "prevSize": 24, - "name": "heart2", - "code": 57380 - }, - "setIdx": 2, - "setId": 2, - "iconIdx": 24 - }, - { - "icon": { - "paths": [ - "M426.667 42.667h384q17.667 0 30.167 12.5t12.5 30.167v853.333q0 17.667-12.5 30.167t-30.167 12.5-30.167-12.5-12.5-30.167v-810.667h-85.333v810.667q0 17.667-12.5 30.167t-30.167 12.5-30.167-12.5-12.5-30.167v-384h-170.667q-69.667 0-128.5-34.333t-93.167-93.167-34.333-128.5 34.333-128.5 93.167-93.167 128.5-34.333zM597.333 469.333v-341.333h-170.667q-70.667 0-120.667 50t-50 120.667 50 120.667 120.667 50h170.667z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "paragraph" - ], - "defaultCode": 57381, - "grid": 24 - }, - "attrs": [], - "properties": { - "id": 25, - "order": 27, - "prevSize": 24, - "name": "paragraph", - "code": 57381 - }, - "setIdx": 2, - "setId": 2, - "iconIdx": 25 - }, - { - "icon": { - "paths": [ - "M128 213.333h768q17.667 0 30.167 12.5t12.5 30.167-12.5 30.167-30.167 12.5h-768q-17.667 0-30.167-12.5t-12.5-30.167 12.5-30.167 30.167-12.5zM128 725.333h768q17.667 0 30.167 12.5t12.5 30.167-12.5 30.167-30.167 12.5h-768q-17.667 0-30.167-12.5t-12.5-30.167 12.5-30.167 30.167-12.5zM128 554.667h768q17.667 0 30.167 12.5t12.5 30.167-12.5 30.167-30.167 12.5h-768q-17.667 0-30.167-12.5t-12.5-30.167 12.5-30.167 30.167-12.5zM128 384h768q17.667 0 30.167 12.5t12.5 30.167-12.5 30.167-30.167 12.5h-768q-17.667 0-30.167-12.5t-12.5-30.167 12.5-30.167 30.167-12.5z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "align-justify" - ], - "defaultCode": 57382, - "grid": 24 - }, - "attrs": [], - "properties": { - "id": 26, - "order": 28, - "prevSize": 24, - "name": "align-justify", - "code": 57382 - }, - "setIdx": 2, - "setId": 2, - "iconIdx": 26 - }, - { - "icon": { - "paths": [ - "M128 213.333h768q17.667 0 30.167 12.5t12.5 30.167-12.5 30.167-30.167 12.5h-768q-17.667 0-30.167-12.5t-12.5-30.167 12.5-30.167 30.167-12.5zM128 725.333h597.333q17.667 0 30.167 12.5t12.5 30.167-12.5 30.167-30.167 12.5h-597.333q-17.667 0-30.167-12.5t-12.5-30.167 12.5-30.167 30.167-12.5zM128 554.667h768q17.667 0 30.167 12.5t12.5 30.167-12.5 30.167-30.167 12.5h-768q-17.667 0-30.167-12.5t-12.5-30.167 12.5-30.167 30.167-12.5zM128 384h597.333q17.667 0 30.167 12.5t12.5 30.167-12.5 30.167-30.167 12.5h-597.333q-17.667 0-30.167-12.5t-12.5-30.167 12.5-30.167 30.167-12.5z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "align-left" - ], - "defaultCode": 57383, - "grid": 24 - }, - "attrs": [], - "properties": { - "id": 27, - "order": 29, - "prevSize": 24, - "name": "align-left2", - "code": 57383 - }, - "setIdx": 2, - "setId": 2, - "iconIdx": 27 - }, - { - "icon": { - "paths": [ - "M128 213.333h768q17.667 0 30.167 12.5t12.5 30.167-12.5 30.167-30.167 12.5h-768q-17.667 0-30.167-12.5t-12.5-30.167 12.5-30.167 30.167-12.5zM213.333 725.333h597.333q17.667 0 30.167 12.5t12.5 30.167-12.5 30.167-30.167 12.5h-597.333q-17.667 0-30.167-12.5t-12.5-30.167 12.5-30.167 30.167-12.5zM128 554.667h768q17.667 0 30.167 12.5t12.5 30.167-12.5 30.167-30.167 12.5h-768q-17.667 0-30.167-12.5t-12.5-30.167 12.5-30.167 30.167-12.5zM213.333 384h597.333q17.667 0 30.167 12.5t12.5 30.167-12.5 30.167-30.167 12.5h-597.333q-17.667 0-30.167-12.5t-12.5-30.167 12.5-30.167 30.167-12.5z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "align-center" - ], - "defaultCode": 57384, - "grid": 24 - }, - "attrs": [], - "properties": { - "id": 28, - "order": 30, - "prevSize": 24, - "name": "align-center", - "code": 57384 - }, - "setIdx": 2, - "setId": 2, - "iconIdx": 28 - }, - { - "icon": { - "paths": [ - "M128 213.333h768q17.667 0 30.167 12.5t12.5 30.167-12.5 30.167-30.167 12.5h-768q-17.667 0-30.167-12.5t-12.5-30.167 12.5-30.167 30.167-12.5zM298.667 725.333h597.333q17.667 0 30.167 12.5t12.5 30.167-12.5 30.167-30.167 12.5h-597.333q-17.667 0-30.167-12.5t-12.5-30.167 12.5-30.167 30.167-12.5zM128 554.667h768q17.667 0 30.167 12.5t12.5 30.167-12.5 30.167-30.167 12.5h-768q-17.667 0-30.167-12.5t-12.5-30.167 12.5-30.167 30.167-12.5zM298.667 384h597.333q17.667 0 30.167 12.5t12.5 30.167-12.5 30.167-30.167 12.5h-597.333q-17.667 0-30.167-12.5t-12.5-30.167 12.5-30.167 30.167-12.5z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "align-right" - ], - "defaultCode": 57385, - "grid": 24 - }, - "attrs": [], - "properties": { - "id": 29, - "order": 31, - "prevSize": 24, - "name": "align-right2", - "code": 57385 - }, - "setIdx": 2, - "setId": 2, - "iconIdx": 29 - }, - { - "icon": { - "paths": [ - "M213.333 42.667h682.667v938.667h-682.667q-53 0-90.5-37.5t-37.5-90.5v-682.667q0-53 37.5-90.5t90.5-37.5zM810.667 896v-85.333h-597.333q-17.667 0-30.167 12.5t-12.5 30.167 12.5 30.167 30.167 12.5h597.333zM810.667 725.333v-597.333h-597.333q-17.667 0-30.167 12.5t-12.5 30.167v562q21-7.333 42.667-7.333h597.333z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "book" - ], - "defaultCode": 57392, - "grid": 24 - }, - "attrs": [], - "properties": { - "id": 30, - "order": 32, - "prevSize": 24, - "name": "book2", - "code": 57392 - }, - "setIdx": 2, - "setId": 2, - "iconIdx": 30 - }, - { - "icon": { - "paths": [ - "M0 298.667l512-256 512 256-512 256zM512 821.667l416-208.333 96 48-512 256.333-512-256.333 96-48zM512 640.333l416-208 96 48-512 256-512-256 96-48zM833.333 298.667l-321.333-160.667-321.333 160.667 321.333 160.667z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "layers" - ], - "defaultCode": 57393, - "grid": 24 - }, - "attrs": [], - "properties": { - "id": 31, - "order": 33, - "prevSize": 24, - "name": "layers2", - "code": 57393 - }, - "setIdx": 2, - "setId": 2, - "iconIdx": 31 - }, - { - "icon": { - "paths": [ - "M469.333 42.667h384q53 0 90.5 37.5t37.5 90.5v384q0 53-37.5 90.5t-90.5 37.5h-170.667v170.667q0 53-37.5 90.5t-90.5 37.5h-384q-53 0-90.5-37.5t-37.5-90.5v-384q0-53 37.5-90.5t90.5-37.5h170.667v-170.667q0-53 37.5-90.5t90.5-37.5zM341.333 554.667v-128h-170.667q-17.667 0-30.167 12.5t-12.5 30.167v384q0 17.667 12.5 30.167t30.167 12.5h384q17.667 0 30.167-12.5t12.5-30.167v-170.667h-128q-53 0-90.5-37.5t-37.5-90.5zM853.333 128h-384q-17.667 0-30.167 12.5t-12.5 30.167v384q0 17.667 12.5 30.167t30.167 12.5h384q17.667 0 30.167-12.5t12.5-30.167v-384q0-17.667-12.5-30.167t-30.167-12.5z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "stack" - ], - "defaultCode": 57394, - "grid": 24 - }, - "attrs": [], - "properties": { - "id": 32, - "order": 34, - "prevSize": 24, - "name": "stack", - "code": 57394 - }, - "setIdx": 2, - "setId": 2, - "iconIdx": 32 - }, - { - "icon": { - "paths": [ - "M384 85.333h426.667q53 0 90.5 37.5t37.5 90.5v426.667q0 53-37.5 90.5t-90.5 37.5h-426.667q-53 0-90.5-37.5t-37.5-90.5v-426.667q0-53 37.5-90.5t90.5-37.5zM170.667 263.333v547.333q0 17.667 12.5 30.167t30.167 12.5h547.333q-13.333 37.667-46.333 61.5t-74.333 23.833h-426.667q-53 0-90.5-37.5t-37.5-90.5v-426.667q0-41.333 23.833-74.333t61.5-46.333zM810.667 170.667h-426.667q-17.667 0-30.167 12.5t-12.5 30.167v426.667q0 17.667 12.5 30.167t30.167 12.5h426.667q17.667 0 30.167-12.5t12.5-30.167v-426.667q0-17.667-12.5-30.167t-30.167-12.5z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "stack-2" - ], - "defaultCode": 57395, - "grid": 24 - }, - "attrs": [], - "properties": { - "id": 33, - "order": 35, - "prevSize": 24, - "name": "stack-2", - "code": 57395 - }, - "setIdx": 2, - "setId": 2, - "iconIdx": 33 - }, - { - "icon": { - "paths": [ - "M213.333 0h597.333q53 0 90.5 37.5t37.5 90.5v768q0 53-37.5 90.5t-90.5 37.5h-597.333q-53 0-90.5-37.5t-37.5-90.5v-768q0-53 37.5-90.5t90.5-37.5zM341.333 725.333h341.333q17.667 0 30.167 12.5t12.5 30.167-12.5 30.167-30.167 12.5h-341.333q-17.667 0-30.167-12.5t-12.5-30.167 12.5-30.167 30.167-12.5zM341.333 554.667h341.333q17.667 0 30.167 12.5t12.5 30.167-12.5 30.167-30.167 12.5h-341.333q-17.667 0-30.167-12.5t-12.5-30.167 12.5-30.167 30.167-12.5zM810.667 85.333h-597.333q-17.667 0-30.167 12.5t-12.5 30.167v768q0 17.667 12.5 30.167t30.167 12.5h597.333q17.667 0 30.167-12.5t12.5-30.167v-768q0-17.667-12.5-30.167t-30.167-12.5zM341.333 384h341.333q17.667 0 30.167 12.5t12.5 30.167-12.5 30.167-30.167 12.5h-341.333q-17.667 0-30.167-12.5t-12.5-30.167 12.5-30.167 30.167-12.5zM341.333 213.333h170.667q17.667 0 30.167 12.5t12.5 30.167-12.5 30.167-30.167 12.5h-170.667q-17.667 0-30.167-12.5t-12.5-30.167 12.5-30.167 30.167-12.5z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "paper" - ], - "defaultCode": 57396, - "grid": 24 - }, - "attrs": [], - "properties": { - "id": 34, - "order": 36, - "prevSize": 24, - "name": "paper", - "code": 57396 - }, - "setIdx": 2, - "setId": 2, - "iconIdx": 34 - }, - { - "icon": { - "paths": [ - "M384 0h426.667q53 0 90.5 37.5t37.5 90.5v597.333q0 53-37.5 90.5t-90.5 37.5h-426.667q-53 0-90.5-37.5t-37.5-90.5v-597.333q0-53 37.5-90.5t90.5-37.5zM170.667 178v718q0 17.667 12.5 30.167t30.167 12.5h547.333q-13.333 37.667-46.333 61.5t-74.333 23.833h-426.667q-53 0-90.5-37.5t-37.5-90.5v-597.333q0-41.333 23.833-74.333t61.5-46.333zM810.667 85.333h-426.667q-17.667 0-30.167 12.5t-12.5 30.167v597.333q0 17.667 12.5 30.167t30.167 12.5h426.667q17.667 0 30.167-12.5t12.5-30.167v-597.333q0-17.667-12.5-30.167t-30.167-12.5z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "paper-stack" - ], - "defaultCode": 57397, - "grid": 24 - }, - "attrs": [], - "properties": { - "id": 35, - "order": 37, - "prevSize": 24, - "name": "paper-stack", - "code": 57397 - }, - "setIdx": 2, - "setId": 2, - "iconIdx": 35 - }, - { - "icon": { - "paths": [ - "M426.667 42.667q78 0 149.167 30.5t122.5 81.833 81.833 122.5 30.5 149.167q0 67-21.833 128.333t-62.167 111.333l242.333 242q12.333 12.333 12.333 30.333 0 18.333-12.167 30.5t-30.5 12.167q-18 0-30.333-12.333l-242-242.333q-50 40.333-111.333 62.167t-128.333 21.833q-78 0-149.167-30.5t-122.5-81.833-81.833-122.5-30.5-149.167 30.5-149.167 81.833-122.5 122.5-81.833 149.167-30.5zM426.667 128q-60.667 0-116 23.667t-95.333 63.667-63.667 95.333-23.667 116 23.667 116 63.667 95.333 95.333 63.667 116 23.667 116-23.667 95.333-63.667 63.667-95.333 23.667-116-23.667-116-63.667-95.333-95.333-63.667-116-23.667z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "search" - ], - "defaultCode": 57398, - "grid": 24 - }, - "attrs": [], - "properties": { - "id": 36, - "order": 38, - "prevSize": 24, - "name": "search", - "code": 57398 - }, - "setIdx": 2, - "setId": 2, - "iconIdx": 36 - }, - { - "icon": { - "paths": [ - "M426.667 42.667q78 0 149.167 30.5t122.5 81.833 81.833 122.5 30.5 149.167q0 67-21.833 128.333t-62.167 111.333l242.333 242q12.333 12.333 12.333 30.333 0 18.333-12.167 30.5t-30.5 12.167q-18 0-30.333-12.333l-242-242.333q-50 40.333-111.333 62.167t-128.333 21.833q-78 0-149.167-30.5t-122.5-81.833-81.833-122.5-30.5-149.167 30.5-149.167 81.833-122.5 122.5-81.833 149.167-30.5zM426.667 128q-60.667 0-116 23.667t-95.333 63.667-63.667 95.333-23.667 116 23.667 116 63.667 95.333 95.333 63.667 116 23.667 116-23.667 95.333-63.667 63.667-95.333 23.667-116-23.667-116-63.667-95.333-95.333-63.667-116-23.667zM426.667 256q17.667 0 30.167 12.5t12.5 30.167v85.333h85.333q17.667 0 30.167 12.5t12.5 30.167-12.5 30.167-30.167 12.5h-85.333v85.333q0 17.667-12.5 30.167t-30.167 12.5-30.167-12.5-12.5-30.167v-85.333h-85.333q-17.667 0-30.167-12.5t-12.5-30.167 12.5-30.167 30.167-12.5h85.333v-85.333q0-17.667 12.5-30.167t30.167-12.5z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "zoom-in" - ], - "defaultCode": 57399, - "grid": 24 - }, - "attrs": [], - "properties": { - "id": 37, - "order": 39, - "prevSize": 24, - "name": "zoom-in", - "code": 57399 - }, - "setIdx": 2, - "setId": 2, - "iconIdx": 37 - }, - { - "icon": { - "paths": [ - "M426.667 42.667q78 0 149.167 30.5t122.5 81.833 81.833 122.5 30.5 149.167q0 67-21.833 128.333t-62.167 111.333l242.333 242q12.333 12.333 12.333 30.333 0 18.333-12.167 30.5t-30.5 12.167q-18 0-30.333-12.333l-242-242.333q-50 40.333-111.333 62.167t-128.333 21.833q-78 0-149.167-30.5t-122.5-81.833-81.833-122.5-30.5-149.167 30.5-149.167 81.833-122.5 122.5-81.833 149.167-30.5zM426.667 128q-60.667 0-116 23.667t-95.333 63.667-63.667 95.333-23.667 116 23.667 116 63.667 95.333 95.333 63.667 116 23.667 116-23.667 95.333-63.667 63.667-95.333 23.667-116-23.667-116-63.667-95.333-95.333-63.667-116-23.667zM298.667 384h256q17.667 0 30.167 12.5t12.5 30.167-12.5 30.167-30.167 12.5h-256q-17.667 0-30.167-12.5t-12.5-30.167 12.5-30.167 30.167-12.5z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "zoom-out" - ], - "defaultCode": 57400, - "grid": 24 - }, - "attrs": [], - "properties": { - "id": 38, - "order": 40, - "prevSize": 24, - "name": "zoom-out", - "code": 57400 - }, - "setIdx": 2, - "setId": 2, - "iconIdx": 38 - }, - { - "icon": { - "paths": [ - "M356.667 155q17.333 0 30 12.5t12.667 30.167-12.667 30.333l-198.667 198.667h409.333q78 0 149.167 30.333t122.5 81.833 81.833 122.5 30.5 149.333v42.667q0 17.667-12.5 30.167t-30.167 12.5q-17.333 0-30-12.667t-12.667-30v-42.667q0-60.667-23.667-116t-63.667-95.333-95.333-63.667-116-23.667h-409.333l198.667 199q12.667 12.667 12.667 30 0 17.667-12.5 30.333t-30.167 12.667-30.333-12.667l-271.333-271.667q-12.333-12.333-12.333-30.333 0-17.667 12.333-30l271.333-271.667q12.667-12.667 30.333-12.667z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "reply" - ], - "defaultCode": 57401, - "grid": 24 - }, - "attrs": [], - "properties": { - "id": 39, - "order": 41, - "prevSize": 24, - "name": "reply2", - "code": 57401 - }, - "setIdx": 2, - "setId": 2, - "iconIdx": 39 - }, - { - "icon": { - "paths": [ - "M512 42.667q95.667 0 182.5 37.167t149.667 100 100 149.667 37.167 182.5-37.167 182.5-100 149.667-149.667 100-182.5 37.167-182.5-37.167-149.667-100-100-149.667-37.167-182.5 37.167-182.5 100-149.667 149.667-100 182.5-37.167zM512 128q-78 0-149.167 30.5t-122.5 81.833-81.833 122.5-30.5 149.167 30.5 149.167 81.833 122.5 122.5 81.833 149.167 30.5 149.167-30.5 122.5-81.833 81.833-122.5 30.5-149.167-30.5-149.167-81.833-122.5-122.5-81.833-149.167-30.5zM512 298.667q17.667 0 30.167 12.5t12.5 30.167v128h128q17.667 0 30.167 12.5t12.5 30.167-12.5 30.167-30.167 12.5h-128v128q0 17.667-12.5 30.167t-30.167 12.5-30.167-12.5-12.5-30.167v-128h-128q-17.667 0-30.167-12.5t-12.5-30.167 12.5-30.167 30.167-12.5h128v-128q0-17.667 12.5-30.167t30.167-12.5z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "circle-plus" - ], - "defaultCode": 57408, - "grid": 24 - }, - "attrs": [], - "properties": { - "id": 40, - "order": 42, - "prevSize": 24, - "name": "circle-plus", - "code": 57408 - }, - "setIdx": 2, - "setId": 2, - "iconIdx": 40 - }, - { - "icon": { - "paths": [ - "M512 42.667q95.667 0 182.5 37.167t149.667 100 100 149.667 37.167 182.5-37.167 182.5-100 149.667-149.667 100-182.5 37.167-182.5-37.167-149.667-100-100-149.667-37.167-182.5 37.167-182.5 100-149.667 149.667-100 182.5-37.167zM512 128q-78 0-149.167 30.5t-122.5 81.833-81.833 122.5-30.5 149.167 30.5 149.167 81.833 122.5 122.5 81.833 149.167 30.5 149.167-30.5 122.5-81.833 81.833-122.5 30.5-149.167-30.5-149.167-81.833-122.5-122.5-81.833-149.167-30.5zM341.333 469.333h341.333q17.667 0 30.167 12.5t12.5 30.167-12.5 30.167-30.167 12.5h-341.333q-17.667 0-30.167-12.5t-12.5-30.167 12.5-30.167 30.167-12.5z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "circle-minus" - ], - "defaultCode": 57409, - "grid": 24 - }, - "attrs": [], - "properties": { - "id": 41, - "order": 43, - "prevSize": 24, - "name": "circle-minus", - "code": 57409 - }, - "setIdx": 2, - "setId": 2, - "iconIdx": 41 - }, - { - "icon": { - "paths": [ - "M512 42.667q95.667 0 182.5 37.167t149.667 100 100 149.667 37.167 182.5-37.167 182.5-100 149.667-149.667 100-182.5 37.167-182.5-37.167-149.667-100-100-149.667-37.167-182.5 37.167-182.5 100-149.667 149.667-100 182.5-37.167zM512 128q-78 0-149.167 30.5t-122.5 81.833-81.833 122.5-30.5 149.167 30.5 149.167 81.833 122.5 122.5 81.833 149.167 30.5 149.167-30.5 122.5-81.833 81.833-122.5 30.5-149.167-30.5-149.167-81.833-122.5-122.5-81.833-149.167-30.5zM655.667 383.667q17.667 0 30.167 12.5t12.5 30.167-12.667 30.333l-181 181q-12.333 12.333-30 12.333-18 0-30.333-12.333l-90.667-90.333q-12.333-12.333-12.333-30.333 0-17.667 12.5-30.167t30.167-12.5 30.333 12.667l60.333 60.333 150.667-151q12.667-12.667 30.333-12.667z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "circle-check" - ], - "defaultCode": 57410, - "grid": 24 - }, - "attrs": [], - "properties": { - "id": 42, - "order": 44, - "prevSize": 24, - "name": "circle-check", - "code": 57410 - }, - "setIdx": 2, - "setId": 2, - "iconIdx": 42 - }, - { - "icon": { - "paths": [ - "M512 42.667q95.667 0 182.5 37.167t149.667 100 100 149.667 37.167 182.5-37.167 182.5-100 149.667-149.667 100-182.5 37.167-182.5-37.167-149.667-100-100-149.667-37.167-182.5 37.167-182.5 100-149.667 149.667-100 182.5-37.167zM512 128q-78 0-149.167 30.5t-122.5 81.833-81.833 122.5-30.5 149.167 30.5 149.167 81.833 122.5 122.5 81.833 149.167 30.5 149.167-30.5 122.5-81.833 81.833-122.5 30.5-149.167-30.5-149.167-81.833-122.5-122.5-81.833-149.167-30.5zM632.667 348.333q17.667 0 30.333 12.5t12.667 30.167-12.667 30.333l-90.667 90.667 90.667 90.333q12.667 12.667 12.667 30 0 17.667-12.667 30.167t-30.333 12.5-30-12.333l-90.667-90.333-90.333 90.333q-12.333 12.333-30.333 12.333-17.667 0-30.167-12.333t-12.5-30q0-18 12.333-30.333l90.667-90.333-90.667-90.667q-12.333-12.333-12.333-30t12.5-30.333 30.167-12.667 30.333 12.667l90.333 90.667 90.667-90.667q12.667-12.667 30-12.667z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "circle-cross" - ], - "defaultCode": 57411, - "grid": 24 - }, - "attrs": [], - "properties": { - "id": 43, - "order": 45, - "prevSize": 24, - "name": "circle-cross", - "code": 57411 - }, - "setIdx": 2, - "setId": 2, - "iconIdx": 43 - }, - { - "icon": { - "paths": [ - "M170.667 42.667h682.667q53 0 90.5 37.5t37.5 90.5v682.667q0 53-37.5 90.5t-90.5 37.5h-682.667q-53 0-90.5-37.5t-37.5-90.5v-682.667q0-53 37.5-90.5t90.5-37.5zM853.333 128h-682.667q-17.667 0-30.167 12.5t-12.5 30.167v682.667q0 17.667 12.5 30.167t30.167 12.5h682.667q17.667 0 30.167-12.5t12.5-30.167v-682.667q0-17.667-12.5-30.167t-30.167-12.5zM512 298.667q17.667 0 30.167 12.5t12.5 30.167v128h128q17.667 0 30.167 12.5t12.5 30.167-12.5 30.167-30.167 12.5h-128v128q0 17.667-12.5 30.167t-30.167 12.5-30.167-12.5-12.5-30.167v-128h-128q-17.667 0-30.167-12.5t-12.5-30.167 12.5-30.167 30.167-12.5h128v-128q0-17.667 12.5-30.167t30.167-12.5z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "square-plus" - ], - "defaultCode": 57412, - "grid": 24 - }, - "attrs": [], - "properties": { - "id": 44, - "order": 46, - "prevSize": 24, - "name": "square-plus", - "code": 57412 - }, - "setIdx": 2, - "setId": 2, - "iconIdx": 44 - }, - { - "icon": { - "paths": [ - "M170.667 42.667h682.667q53 0 90.5 37.5t37.5 90.5v682.667q0 53-37.5 90.5t-90.5 37.5h-682.667q-53 0-90.5-37.5t-37.5-90.5v-682.667q0-53 37.5-90.5t90.5-37.5zM853.333 128h-682.667q-17.667 0-30.167 12.5t-12.5 30.167v682.667q0 17.667 12.5 30.167t30.167 12.5h682.667q17.667 0 30.167-12.5t12.5-30.167v-682.667q0-17.667-12.5-30.167t-30.167-12.5zM341.333 469.333h341.333q17.667 0 30.167 12.5t12.5 30.167-12.5 30.167-30.167 12.5h-341.333q-17.667 0-30.167-12.5t-12.5-30.167 12.5-30.167 30.167-12.5z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "square-minus" - ], - "defaultCode": 57413, - "grid": 24 - }, - "attrs": [], - "properties": { - "id": 45, - "order": 47, - "prevSize": 24, - "name": "square-minus", - "code": 57413 - }, - "setIdx": 2, - "setId": 2, - "iconIdx": 45 - }, - { - "icon": { - "paths": [ - "M170.667 42.667h682.667q53 0 90.5 37.5t37.5 90.5v682.667q0 53-37.5 90.5t-90.5 37.5h-682.667q-53 0-90.5-37.5t-37.5-90.5v-682.667q0-53 37.5-90.5t90.5-37.5zM853.333 128h-682.667q-17.667 0-30.167 12.5t-12.5 30.167v682.667q0 17.667 12.5 30.167t30.167 12.5h682.667q17.667 0 30.167-12.5t12.5-30.167v-682.667q0-17.667-12.5-30.167t-30.167-12.5zM682.667 363.667q17.333 0 30 12.5t12.667 30.167-12.667 30.333l-211 211q-12.333 12.333-30 12.333-18 0-30.333-12.333l-120.667-120.667q-12.333-12.333-12.333-30.333 0-17.667 12.5-30.167t30.167-12.5q17.333 0 30 12.667l90.333 90.667 181-181q12.667-12.667 30.333-12.667z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "square-check" - ], - "defaultCode": 57414, - "grid": 24 - }, - "attrs": [], - "properties": { - "id": 46, - "order": 48, - "prevSize": 24, - "name": "square-check", - "code": 57414 - }, - "setIdx": 2, - "setId": 2, - "iconIdx": 46 - }, - { - "icon": { - "paths": [ - "M170.667 42.667h682.667q53 0 90.5 37.5t37.5 90.5v682.667q0 53-37.5 90.5t-90.5 37.5h-682.667q-53 0-90.5-37.5t-37.5-90.5v-682.667q0-53 37.5-90.5t90.5-37.5zM853.333 128h-682.667q-17.667 0-30.167 12.5t-12.5 30.167v682.667q0 17.667 12.5 30.167t30.167 12.5h682.667q17.667 0 30.167-12.5t12.5-30.167v-682.667q0-17.667-12.5-30.167t-30.167-12.5zM632.667 348.333q17.667 0 30.333 12.667t12.667 30.333-12.667 30.333l-90.667 90.333 90.667 90.333q12.667 12.667 12.667 30.333t-12.667 30.167-30.333 12.5-30-12.333l-90.667-90.667-90.667 90.667q-12 12.333-30 12.333-18.333 0-30.5-12.167t-12.167-30.5q0-18 12.333-30.333l90.667-90.333-90.667-90.333q-12.333-12.333-12.333-30.333 0-17.667 12.5-30.333t30.167-12.667q18 0 30 12.667l90.667 90.667 90.667-90.667q12.667-12.667 30-12.667z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "square-cross" - ], - "defaultCode": 57415, - "grid": 24 - }, - "attrs": [], - "properties": { - "id": 47, - "order": 49, - "prevSize": 24, - "name": "square-cross", - "code": 57415 - }, - "setIdx": 2, - "setId": 2, - "iconIdx": 47 - }, - { - "icon": { - "paths": [ - "M810.667 384q17.667 0 30.167 12.5t12.5 30.167v85.333q0 64-23.167 123.167t-63 103.667-95 74.333-117.5 37.5v88h128q17.667 0 30.167 12.5t12.5 30.167-12.5 30.167-30.167 12.5h-341.333q-17.667 0-30.167-12.5t-12.5-30.167 12.5-30.167 30.167-12.5h128v-88q-62.333-7.667-117.5-37.5t-95-74.333-63-103.667-23.167-123.167v-85.333q0-17.667 12.5-30.167t30.167-12.5 30.167 12.5 12.5 30.167v85.333q0 69.667 34.333 128.5t93.167 93.167 128.5 34.333 128.5-34.333 93.167-93.167 34.333-128.5v-85.333q0-17.667 12.5-30.167t30.167-12.5zM512 0q70.667 0 120.667 50t50 120.667v341.333q0 70.667-50 120.667t-120.667 50-120.667-50-50-120.667v-341.333q0-70.667 50-120.667t120.667-50zM512 85.333q-35.333 0-60.333 25t-25 60.333v341.333q0 35.333 25 60.333t60.333 25 60.333-25 25-60.333v-341.333q0-35.333-25-60.333t-60.333-25z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "microphone" - ], - "defaultCode": 57416, - "grid": 24 - }, - "attrs": [], - "properties": { - "id": 48, - "order": 50, - "prevSize": 24, - "name": "microphone", - "code": 57416 - }, - "setIdx": 2, - "setId": 2, - "iconIdx": 48 - }, - { - "icon": { - "paths": [ - "M512 128q78 0 149.167 30.5t122.5 81.833 81.833 122.5 30.5 149.167-30.5 149.167-81.833 122.5-122.5 81.833-149.167 30.5-149.167-30.5-122.5-81.833-81.833-122.5-30.5-149.167 30.5-149.167 81.833-122.5 122.5-81.833 149.167-30.5zM512 213.333q-60.667 0-116 23.667t-95.333 63.667-63.667 95.333-23.667 116 23.667 116 63.667 95.333 95.333 63.667 116 23.667 116-23.667 95.333-63.667 63.667-95.333 23.667-116-23.667-116-63.667-95.333-95.333-63.667-116-23.667z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "record" - ], - "defaultCode": 57417, - "grid": 24 - }, - "attrs": [], - "properties": { - "id": 49, - "order": 51, - "prevSize": 24, - "name": "record", - "code": 57417 - }, - "setIdx": 2, - "setId": 2, - "iconIdx": 49 - }, - { - "icon": { - "paths": [ - "M725.333 170.667q17.667 0 30.167 12.5t12.5 30.167q0 18-12.333 30.333l-268.667 268.333 268.667 268.667q12.333 12.333 12.333 30.333 0 17.667-12.5 30t-30.167 12.333q-18 0-30.333-12.333l-298.667-298.667q-12.333-13-12.333-30.333 0-17 12.333-30l298.667-298.667q12.667-12.667 30.333-12.667zM256 170.667q17.667 0 30.167 12.5t12.5 30.167v597.333q0 17.667-12.5 30.167t-30.167 12.5-30.167-12.5-12.5-30.167v-597.333q0-17.667 12.5-30.167t30.167-12.5z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "skip-back" - ], - "defaultCode": 57424, - "grid": 24 - }, - "attrs": [], - "properties": { - "id": 50, - "order": 52, - "prevSize": 24, - "name": "skip-back", - "code": 57424 - }, - "setIdx": 2, - "setId": 2, - "iconIdx": 50 - }, - { - "icon": { - "paths": [ - "M768 170.667q17.667 0 30.167 12.5t12.5 30.167-12.667 30.333l-268.333 268.333 268.333 268.333q12.667 12.667 12.667 30.333t-12.5 30.167-30.167 12.5q-18 0-30.333-12.333l-298.667-298.667q-12.333-12.333-12.333-30.333t12.333-30.333l298.667-298.667q12.333-12.333 30.333-12.333zM512 170.667q17.667 0 30.167 12.5t12.5 30.167-12.667 30.333l-268.333 268.333 268.333 268.333q12.667 12.667 12.667 30.333t-12.5 30.167-30.167 12.5q-18 0-30.333-12.333l-298.667-298.667q-12.333-12.333-12.333-30.333t12.333-30.333l298.667-298.667q12.333-12.333 30.333-12.333z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "rewind" - ], - "defaultCode": 57425, - "grid": 24 - }, - "attrs": [], - "properties": { - "id": 51, - "order": 53, - "prevSize": 24, - "name": "rewind", - "code": 57425 - }, - "setIdx": 2, - "setId": 2, - "iconIdx": 51 - }, - { - "icon": { - "paths": [ - "M170.667 896v-768l640 384zM644.667 512l-388.667-233.333v466.667z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "play" - ], - "defaultCode": 57426, - "grid": 24 - }, - "attrs": [], - "properties": { - "id": 52, - "order": 54, - "prevSize": 24, - "name": "play", - "code": 57426 - }, - "setIdx": 2, - "setId": 2, - "iconIdx": 52 - }, - { - "icon": { - "paths": [ - "M682.667 128q53 0 90.5 37.5t37.5 90.5v512q0 53-37.5 90.5t-90.5 37.5-90.5-37.5-37.5-90.5v-512q0-53 37.5-90.5t90.5-37.5zM341.333 128q53 0 90.5 37.5t37.5 90.5v512q0 53-37.5 90.5t-90.5 37.5-90.5-37.5-37.5-90.5v-512q0-53 37.5-90.5t90.5-37.5zM341.333 213.333q-17.667 0-30.167 12.5t-12.5 30.167v512q0 17.667 12.5 30.167t30.167 12.5 30.167-12.5 12.5-30.167v-512q0-17.667-12.5-30.167t-30.167-12.5zM682.667 213.333q-17.667 0-30.167 12.5t-12.5 30.167v512q0 17.667 12.5 30.167t30.167 12.5 30.167-12.5 12.5-30.167v-512q0-17.667-12.5-30.167t-30.167-12.5z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "pause" - ], - "defaultCode": 57427, - "grid": 24 - }, - "attrs": [], - "properties": { - "id": 53, - "order": 55, - "prevSize": 24, - "name": "pause", - "code": 57427 - }, - "setIdx": 2, - "setId": 2, - "iconIdx": 53 - }, - { - "icon": { - "paths": [ - "M256 128h512q53 0 90.5 37.5t37.5 90.5v512q0 53-37.5 90.5t-90.5 37.5h-512q-53 0-90.5-37.5t-37.5-90.5v-512q0-53 37.5-90.5t90.5-37.5zM768 213.333h-512q-17.667 0-30.167 12.5t-12.5 30.167v512q0 17.667 12.5 30.167t30.167 12.5h512q17.667 0 30.167-12.5t12.5-30.167v-512q0-17.667-12.5-30.167t-30.167-12.5z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "stop" - ], - "defaultCode": 57428, - "grid": 24 - }, - "attrs": [], - "properties": { - "id": 54, - "order": 56, - "prevSize": 24, - "name": "stop", - "code": 57428 - }, - "setIdx": 2, - "setId": 2, - "iconIdx": 54 - }, - { - "icon": { - "paths": [ - "M469.333 170.667q17.667 0 30 12.333l298.667 298.667q12.667 12.667 12.667 30.333t-12.667 30.333l-298.667 298.667q-12.333 12.333-30 12.333t-30.167-12.5-12.5-30.167q0-18 12.333-30.333l268.333-268.333-268.333-268.333q-12.333-12.333-12.333-30.333 0-18.333 12.167-30.5t30.5-12.167zM213.333 170.667q17.667 0 30 12.333l298.667 298.667q12.667 12.667 12.667 30.333t-12.667 30.333l-298.667 298.667q-12.333 12.333-30 12.333t-30.167-12.5-12.5-30.167q0-18 12.333-30.333l268.333-268.333-268.333-268.333q-12.333-12.333-12.333-30.333 0-18.333 12.167-30.5t30.5-12.167z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "fast-forward" - ], - "defaultCode": 57429, - "grid": 24 - }, - "attrs": [], - "properties": { - "id": 55, - "order": 57, - "prevSize": 24, - "name": "fast-forward", - "code": 57429 - }, - "setIdx": 2, - "setId": 2, - "iconIdx": 55 - }, - { - "icon": { - "paths": [ - "M256 170.667q17.667 0 30.333 12.667l298.667 298.667q12.333 12.333 12.333 30 0 18-12.333 30.333l-298.667 298.667q-12.333 12.333-30.333 12.333-17.667 0-30.167-12.333t-12.5-30q0-17.333 12.333-30.333l268.667-268.667-268.667-268.333q-12.333-13-12.333-30.333 0-17.667 12.5-30.167t30.167-12.5zM725.333 170.667q17.667 0 30.167 12.5t12.5 30.167v597.333q0 17.667-12.5 30.167t-30.167 12.5-30.167-12.5-12.5-30.167v-597.333q0-17.667 12.5-30.167t30.167-12.5z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "skip-forward" - ], - "defaultCode": 57430, - "grid": 24 - }, - "attrs": [], - "properties": { - "id": 56, - "order": 58, - "prevSize": 24, - "name": "skip-forward", - "code": 57430 - }, - "setIdx": 2, - "setId": 2, - "iconIdx": 56 - }, - { - "icon": { - "paths": [ - "M768 0q17.667 0 30.333 12.667l170.667 170.667q12.333 12.333 12.333 30 0 18-12.333 30.333l-170.667 170.667q-12.333 12.333-30.333 12.333-17.667 0-30.167-12.5t-12.5-30.167q0-17 12.333-30l98-98h-67.667q-60 0-112.667 26.167t-88.333 71.5q-55 70-55 158.333 0 89-42.667 165.333-22.667 41-55 73.667-47.333 48.333-110.333 75.333t-133.333 27h-85.333q-17.667 0-30.167-12.5t-12.5-30.167 12.5-30.167 30.167-12.5h85.333q60.333 0 112.833-26t88.167-71.333q55-70 55-158.667 0-89 42.667-165.333 23-41.333 55-73.333 47.333-48.333 110.333-75.5t133.333-27.167h67.667l-98-97.667q-12.333-13-12.333-30.333 0-17.667 12.5-30.167t30.167-12.5zM768 597.333q17.667 0 30.333 12.667l170.667 170.667q12.333 12.333 12.333 30.333 0 17.667-12.333 30l-170.667 170.667q-12.333 12.333-30.333 12.333-17.667 0-30.167-12.333t-12.5-30q0-17.333 12.333-30.333l98-98h-67.667q-70.333 0-133.333-27t-110.333-75.333q25.667-37.667 42.667-80.333 35.667 45.333 88.167 71.333t112.833 26h67.667l-98-97.667q-12.333-13-12.333-30.333 0-17.667 12.5-30.167t30.167-12.5zM85.333 170.667h85.333q70.333 0 133.333 27.167t110.333 75.5q-26 38.333-42.667 80.333-35.667-45.333-88.333-71.5t-112.667-26.167h-85.333q-17.667 0-30.167-12.5t-12.5-30.167 12.5-30.167 30.167-12.5z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "shuffle" - ], - "defaultCode": 57431, - "grid": 24 - }, - "attrs": [], - "properties": { - "id": 57, - "order": 59, - "prevSize": 24, - "name": "shuffle2", - "code": 57431 - }, - "setIdx": 2, - "setId": 2, - "iconIdx": 57 - }, - { - "icon": { - "paths": [ - "M42.667 554.667h256q17.667 0 30.167 12.5t12.5 30.167-12.5 30.167-30.167 12.5h-144l116 113.333q49.333 49.667 113 75 61 25 128.333 25t128.333-25q33.333-13.667 62.5-33.5t49.667-40.667 37.333-44.667 27-43.833 17.167-40q6-16.667 22-24.167t32.333-1.833q16.667 6 24.167 21.833t1.833 32.167q-14 42.667-40.667 84.667t-60 75.333q-61.333 61.333-141 93.667-77.333 31.333-160.667 31.333-83 0-160.667-31.333-79.667-32.333-141-93.667l-125-122.333v162q0 17.667-12.5 30.167t-30.167 12.5-30.167-12.5-12.5-30.167v-256q0-17.667 12.5-30.167t30.167-12.5zM512 85.333q83 0 160.667 31.333 79.667 32.333 141 93.667l0.667 0.667 124.333 121.667v-162q0-17.667 12.5-30.167t30.167-12.5 30.167 12.5 12.5 30.167v256q0 17.667-12.5 30.167t-30.167 12.5h-256q-17.667 0-30.167-12.5t-12.5-30.167 12.5-30.167 30.167-12.5h144l-116-113.333q-48.667-48.667-110.833-74.333t-130.5-25.667q-67.333 0-128.333 25-63.667 25.333-113 75-20 17.667-43.833 53.833t-36.833 73.833q-6 16.667-22 24.167t-32.333 1.833q-16.667-6-24.167-21.833t-1.833-32.167q14-42.667 40.667-84.667t60-75.333q61.333-61.333 141-93.667 77.667-31.333 160.667-31.333z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "repeat" - ], - "defaultCode": 57432, - "grid": 24 - }, - "attrs": [], - "properties": { - "id": 58, - "order": 60, - "prevSize": 24, - "name": "repeat", - "code": 57432 - }, - "setIdx": 2, - "setId": 2, - "iconIdx": 58 - }, - { - "icon": { - "paths": [ - "M170.667 85.333h213.333l85.333 128h384q53 0 90.5 37.5t37.5 90.5v469.333q0 53-37.5 90.5t-90.5 37.5h-682.667q-53 0-90.5-37.5t-37.5-90.5v-597.333q0-53 37.5-90.5t90.5-37.5zM423.667 298.667l-82.333-128h-170.667q-17.667 0-30.167 12.5t-12.5 30.167v597.333q0 17.667 12.5 30.167t30.167 12.5h682.667q17.667 0 30.167-12.5t12.5-30.167v-469.333q0-17.667-12.5-30.167t-30.167-12.5h-429.667z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "folder" - ], - "defaultCode": 57433, - "grid": 24 - }, - "attrs": [], - "properties": { - "id": 59, - "order": 61, - "prevSize": 24, - "name": "folder2", - "code": 57433 - }, - "setIdx": 2, - "setId": 2, - "iconIdx": 59 - }, - { - "icon": { - "paths": [ - "M512 42.667q75 0 145.833 21t130 59.667 106.667 91.167 79 117.833 43.5 137q7 41.333 7 85.333h-469.333v256q0 35.333 25 60.333t60.333 25 60.333-25 25-60.333q0-17.667 12.5-30.167t30.167-12.5 30.167 12.5 12.5 30.167q0 70.667-50 120.667t-120.667 50-120.667-50-50-120.667v-256h-469.333q0-44 7-85.333 12-71.667 43.5-137t79-117.833 106.667-91.167 130-59.667 145.833-21zM512 128q-101.333 0-190.333 44.667t-148.5 122.333-79.167 174.333h836q-19.667-96.667-79.167-174.333t-148.5-122.333-190.333-44.667z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "umbrella" - ], - "defaultCode": 57440, - "grid": 24 - }, - "attrs": [], - "properties": { - "id": 60, - "order": 62, - "prevSize": 24, - "name": "umbrella", - "code": 57440 - }, - "setIdx": 2, - "setId": 2, - "iconIdx": 60 - }, - { - "icon": { - "paths": [ - "M512 85.333q14.333 0 28.333 1-28.333 61-28.333 127 0 60.667 23.667 116t63.667 95.333 95.333 63.667 116 23.667q66 0 127-28.333 1 14 1 28.333 0 58-15.333 113.333t-42.833 102.167-66.833 86.167-86.167 66.833-102.167 42.833-113.333 15.333-113.333-15.333-102.167-42.833-86.167-66.833-66.833-86.167-42.833-102.167-15.333-113.333 15.333-113.333 42.833-102.167 66.833-86.167 86.167-66.833 102.167-42.833 113.333-15.333zM428 181q-55 14-102.5 45.333t-81.667 74.333-53.667 97.833-19.5 113.5q0 69.333 27 132.5t72.833 109 109 72.833 132.5 27q58.667 0 113.5-19.5t97.833-53.667 74.333-81.667 45.333-102.5q-14.333 1.333-32.333 1.333-78 0-149-30.5t-122.5-82-82-122.5-30.5-149q0-18 1.333-32.333z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "moon" - ], - "defaultCode": 57441, - "grid": 24 - }, - "attrs": [], - "properties": { - "id": 61, - "order": 63, - "prevSize": 24, - "name": "moon2", - "code": 57441 - }, - "setIdx": 2, - "setId": 2, - "iconIdx": 61 - }, - { - "icon": { - "paths": [ - "M490.667 0q61.667 0 105.5 43.833t43.833 105.5v459q39.667 33 62.5 80.167t22.833 100.833q0 47.667-18.5 91.167t-50 75-75 50-91.167 18.5-91.167-18.5-75-50-50-75-18.5-91.167q0-53.667 22.833-100.833t62.5-80.167v-459q0-61.667 43.833-105.5t105.5-43.833zM490.667 85.333q-26.667 0-45.333 18.667t-18.667 45.333v505.333q-38.333 18.333-61.833 54.5t-23.5 80.167q0 61.667 43.833 105.5t105.5 43.833 105.5-43.833 43.833-105.5q0-44-23.5-80.167t-61.833-54.5v-505.333q0-26.667-18.667-45.333t-45.333-18.667z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "thermometer" - ], - "defaultCode": 57442, - "grid": 24 - }, - "attrs": [], - "properties": { - "id": 62, - "order": 64, - "prevSize": 24, - "name": "thermometer2", - "code": 57442 - }, - "setIdx": 2, - "setId": 2, - "iconIdx": 62 - }, - { - "icon": { - "paths": [ - "M240.333 325.667l271.667-271.667 271.667 271.667q55.333 55.333 83.833 126t28.5 145.667q0 75.333-28.5 145.667t-83.833 125.667-126 84-145.667 28.667-145.667-28.667-126-84q-55-55.333-83.667-125.833t-28.667-145.5 28.667-145.667 83.667-126zM723.333 386l-211.333-211.333-211.333 211.333q-42.667 43-65 98t-22.333 113.333 22.167 113.167 65.167 97.833 98 65.333 113.333 22.333q58.667 0 113.5-22.333t97.833-65.333 65.167-97.667 22.167-113.333q0-58.333-22.167-113.333t-65.167-98z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "drop" - ], - "defaultCode": 57443, - "grid": 24 - }, - "attrs": [], - "properties": { - "id": 63, - "order": 65, - "prevSize": 24, - "name": "drop2", - "code": 57443 - }, - "setIdx": 2, - "setId": 2, - "iconIdx": 63 - }, - { - "icon": { - "paths": [ - "M512 256q69.667 0 128.5 34.333t93.167 93.167 34.333 128.5-34.333 128.5-93.167 93.167-128.5 34.333-128.5-34.333-93.167-93.167-34.333-128.5 34.333-128.5 93.167-93.167 128.5-34.333zM240.667 740.667q17.667 0 30.167 12.667t12.5 30.333q0 17.333-12.667 30l-60.333 60.333q-12.667 12.667-30 12.667-17.667 0-30.167-12.5t-12.5-30.167q0-18 12.333-30.333l60.333-60.333q12.667-12.667 30.333-12.667zM512 853.333q17.667 0 30.167 12.5t12.5 30.167v85.333q0 17.667-12.5 30.167t-30.167 12.5-30.167-12.5-12.5-30.167v-85.333q0-17.667 12.5-30.167t30.167-12.5zM42.667 469.333h85.333q17.667 0 30.167 12.5t12.5 30.167-12.5 30.167-30.167 12.5h-85.333q-17.667 0-30.167-12.5t-12.5-30.167 12.5-30.167 30.167-12.5zM512 341.333q-70.667 0-120.667 50t-50 120.667 50 120.667 120.667 50 120.667-50 50-120.667-50-120.667-120.667-50zM783.667 740.667q17.333 0 30 12.667l60.333 60.333q12.667 12.667 12.667 30.333 0 17.333-12.667 30t-30 12.667q-17.667 0-30.333-12.667l-60.333-60.333q-12.333-12.333-12.333-30t12.5-30.333 30.167-12.667zM180.333 137.333q17.333 0 30 12.667l60.333 60.333q12.667 12.667 12.667 30 0 17.667-12.5 30.167t-30.167 12.5q-18 0-30.333-12.333l-60.333-60.333q-12.333-12.333-12.333-30.333 0-17.667 12.5-30.167t30.167-12.5zM512 0q17.667 0 30.167 12.5t12.5 30.167v85.333q0 17.667-12.5 30.167t-30.167 12.5-30.167-12.5-12.5-30.167v-85.333q0-17.667 12.5-30.167t30.167-12.5zM896 469.333h85.333q17.667 0 30.167 12.5t12.5 30.167-12.5 30.167-30.167 12.5h-85.333q-17.667 0-30.167-12.5t-12.5-30.167 12.5-30.167 30.167-12.5zM844 137.333q17.333 0 30 12.667t12.667 30q0 17.667-12.667 30.333l-60.333 60.333q-12.333 12.333-30 12.333-18.333 0-30.5-12.167t-12.167-30.5q0-17.667 12.333-30l60.333-60.333q12.667-12.667 30.333-12.667z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "sun" - ], - "defaultCode": 57444, - "grid": 24 - }, - "attrs": [], - "properties": { - "id": 64, - "order": 66, - "prevSize": 24, - "name": "sun", - "code": 57444 - }, - "setIdx": 2, - "setId": 2, - "iconIdx": 64 - }, - { - "icon": { - "paths": [ - "M640 128q78 0 149.167 30.5t122.5 81.833 81.833 122.5 30.5 149.167-30.5 149.167-81.833 122.5-122.5 81.833-149.167 30.5h-384q-69.667 0-128.5-34.333t-93.167-93.167-34.333-128.5 34.333-128.5 93.167-93.167 128.5-34.333h22q26.333-74.333 79.333-132.167t126.833-90.833 155.833-33zM640 213.333q-55.333 0-106.5 19.833t-90 53.833-65 81.333-33.833 101h-88.667q-70.667 0-120.667 50t-50 120.667 50 120.667 120.667 50h384q60.667 0 116-23.667t95.333-63.667 63.667-95.333 23.667-116-23.667-116-63.667-95.333-95.333-63.667-116-23.667z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "cloud" - ], - "defaultCode": 57445, - "grid": 24 - }, - "attrs": [], - "properties": { - "id": 65, - "order": 67, - "prevSize": 24, - "name": "cloud2", - "code": 57445 - }, - "setIdx": 2, - "setId": 2, - "iconIdx": 65 - }, - { - "icon": { - "paths": [ - "M640 85.333q78 0 149.167 30.5t122.5 81.833 81.833 122.5 30.5 149.167q0 72.667-26.5 139.667t-72 117.333-108.667 83.5-134.167 41.167v-86q71.667-10.333 130.167-51.833t92.167-105.667 33.667-138.167q0-60.667-23.667-116t-63.667-95.333-95.333-63.667-116-23.667q-55.333 0-106.5 19.833t-90 53.833-65 81.333-33.833 101h-88.667q-70.667 0-120.667 50t-50 120.667q0 38.667 15.167 71.667t39.833 54.167 54.833 33 60.833 11.833h170.667v85.333h-170.667q-69.667 0-128.5-34.333t-93.167-93.167-34.333-128.5 34.333-128.5 93.167-93.167 128.5-34.333h22q26.333-74.333 79.333-132.167t126.833-90.833 155.833-33zM554.667 426.667q17.667 0 30.333 12.667l128 128q12.333 12.333 12.333 30 0 18.333-12.167 30.5t-30.5 12.167q-18 0-30.333-12.333l-55-55.333v281q0 17.667-12.5 30.167t-30.167 12.5-30.167-12.5-12.5-30.167v-281l-55 55.333q-12.333 12.333-30.333 12.333-17.667 0-30.167-12.5t-12.5-30.167q0-17 12.333-30l128-128q12.667-12.667 30.333-12.667z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "cloud-upload" - ], - "defaultCode": 57446, - "grid": 24 - }, - "attrs": [], - "properties": { - "id": 66, - "order": 68, - "prevSize": 24, - "name": "cloud-upload", - "code": 57446 - }, - "setIdx": 2, - "setId": 2, - "iconIdx": 66 - }, - { - "icon": { - "paths": [ - "M640 85.333q78 0 149.167 30.5t122.5 81.833 81.833 122.5 30.5 149.167q0 85-35 160.667t-96.667 129.167-140 77.5l21-20.667q18-18.333 28-42.667 9.333-22.667 9.333-49.333 0-6.667-0.333-9.333 59.333-41.333 93.833-105.833t34.5-139.5q0-60.667-23.667-116t-63.667-95.333-95.333-63.667-116-23.667q-55.333 0-106.5 19.833t-90 53.833-65 81.333-33.833 101h-88.667q-70.667 0-120.667 50t-50 120.667q0 38.667 15.167 71.667t39.833 54.167 54.833 33 60.833 11.833h50q11.667 29.333 30 48l37.667 37.333h-117.667q-69.667 0-128.5-34.333t-93.167-93.167-34.333-128.5 34.333-128.5 93.167-93.167 128.5-34.333h22q26.333-74.333 79.333-132.167t126.833-90.833 155.833-33zM554.667 426.667q17.667 0 30.167 12.5t12.5 30.167v281l55-55.333q12.333-12.333 30.333-12.333 18.333 0 30.5 12.167t12.167 30.5q0 18-12.333 30.333l-128 128q-12.333 12.333-30.333 12.333t-30.333-12.333l-128-128q-12.333-13-12.333-30.333 0-17.667 12.5-30.167t30.167-12.5q18 0 30.333 12.333l55 55.333v-281q0-17.667 12.5-30.167t30.167-12.5z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "cloud-download" - ], - "defaultCode": 57447, - "grid": 24 - }, - "attrs": [], - "properties": { - "id": 67, - "order": 69, - "prevSize": 24, - "name": "cloud-download", - "code": 57447 - }, - "setIdx": 2, - "setId": 2, - "iconIdx": 67 - }, - { - "icon": { - "paths": [ - "M213.333 0h597.333q53 0 90.5 37.5t37.5 90.5v597.333q0 53-37.5 90.5t-90.5 37.5h-170.667v-85.333h170.667q17.667 0 30.167-12.5t12.5-30.167v-597.333q0-17.667-12.5-30.167t-30.167-12.5h-597.333q-17.667 0-30.167 12.5t-12.5 30.167v597.333q0 17.667 12.5 30.167t30.167 12.5h170.667v85.333h-170.667q-53 0-90.5-37.5t-37.5-90.5v-597.333q0-53 37.5-90.5t90.5-37.5zM512 298.667q18 0 30.333 12.333l170.667 170.667q12.333 12.333 12.333 30.333 0 17.667-12.5 30.167t-30.167 12.5q-17.333 0-30.333-12.333l-97.667-98v537q0 17.667-12.5 30.167t-30.167 12.5-30.167-12.5-12.5-30.167v-537l-97.667 98q-13 12.333-30.333 12.333-17.667 0-30.167-12.5t-12.5-30.167q0-17.333 12.333-30.333l170.667-170.667q12.333-12.333 30.333-12.333z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "upload" - ], - "defaultCode": 57448, - "grid": 24 - }, - "attrs": [], - "properties": { - "id": 68, - "order": 70, - "prevSize": 24, - "name": "upload2", - "code": 57448 - }, - "setIdx": 2, - "setId": 2, - "iconIdx": 68 - }, - { - "icon": { - "paths": [ - "M640 170.667h170.667q53 0 90.5 37.5t37.5 90.5v597.333q0 53-37.5 90.5t-90.5 37.5h-597.333q-53 0-90.5-37.5t-37.5-90.5v-597.333q0-53 37.5-90.5t90.5-37.5h170.667v85.333h-170.667q-17.667 0-30.167 12.5t-12.5 30.167v597.333q0 17.667 12.5 30.167t30.167 12.5h597.333q17.667 0 30.167-12.5t12.5-30.167v-597.333q0-17.667-12.5-30.167t-30.167-12.5h-170.667v-85.333zM512 0q17.667 0 30.167 12.5t12.5 30.167v537l97.667-98q12.333-12.333 30.333-12.333 18.333 0 30.5 12.167t12.167 30.5q0 18-12.333 30.333l-170.667 170.667q-12.333 12.333-30.333 12.333t-30.333-12.333l-170.667-170.667q-12.333-13-12.333-30.333 0-17.667 12.5-30.167t30.167-12.5q18 0 30.333 12.333l97.667 98v-537q0-17.667 12.5-30.167t30.167-12.5z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "download" - ], - "defaultCode": 57449, - "grid": 24 - }, - "attrs": [], - "properties": { - "id": 69, - "order": 71, - "prevSize": 24, - "name": "download2", - "code": 57449 - }, - "setIdx": 2, - "setId": 2, - "iconIdx": 69 - }, - { - "icon": { - "paths": [ - "M0 469.333l1024-469.333-469.333 1024-128-426.667zM571.333 782.667l279.333-609.333-609.333 279.333 254 76z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "location" - ], - "defaultCode": 57456, - "grid": 24 - }, - "attrs": [], - "properties": { - "id": 70, - "order": 72, - "prevSize": 24, - "name": "location2", - "code": 57456 - }, - "setIdx": 2, - "setId": 2, - "iconIdx": 70 - }, - { - "icon": { - "paths": [ - "M512 42.667q95.667 0 182.5 37.167t149.667 100 100 149.667 37.167 182.5-37.167 182.5-100 149.667-149.667 100-182.5 37.167-182.5-37.167-149.667-100-100-149.667-37.167-182.5 37.167-182.5 100-149.667 149.667-100 182.5-37.167zM554.667 130.333v125.667q0 17.667-12.5 30.167t-30.167 12.5-30.167-12.5-12.5-30.167v-125.667q-66 7.333-125.167 36.333t-103.833 73.667-73.667 103.833-36.333 125.167h125.667q17.667 0 30.167 12.5t12.5 30.167-12.5 30.167-30.167 12.5h-125.667q7.333 66 36.333 125.167t73.667 103.833 103.833 73.667 125.167 36.333v-125.667q0-17.667 12.5-30.167t30.167-12.5 30.167 12.5 12.5 30.167v125.667q66-7.333 125.167-36.333t103.833-73.667 73.667-103.833 36.333-125.167h-125.667q-17.667 0-30.167-12.5t-12.5-30.167 12.5-30.167 30.167-12.5h125.667q-7.333-66-36.333-125.167t-73.667-103.833-103.833-73.667-125.167-36.333z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "location-2" - ], - "defaultCode": 57457, - "grid": 24 - }, - "attrs": [], - "properties": { - "id": 71, - "order": 73, - "prevSize": 24, - "name": "location-2", - "code": 57457 - }, - "setIdx": 2, - "setId": 2, - "iconIdx": 71 - }, - { - "icon": { - "paths": [ - "M682.667 213.333l341.333-213.333v810.667l-341.333 213.333-341.333-213.333-341.333 213.333v-810.667l341.333-213.333zM298.667 736.667v-609l-213.333 133.333v609zM640 287.333l-256-160.333v609.667l256 160v-609.333zM938.667 763.333v-609.333l-213.333 133.333v609.333z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "map" - ], - "defaultCode": 57458, - "grid": 24 - }, - "attrs": [], - "properties": { - "id": 72, - "order": 74, - "prevSize": 24, - "name": "map2", - "code": 57458 - }, - "setIdx": 2, - "setId": 2, - "iconIdx": 72 - }, - { - "icon": { - "paths": [ - "M128 213.333h640q53 0 90.5 37.5t37.5 90.5q53 0 90.5 37.5t37.5 90.5v85.333q0 53-37.5 90.5t-90.5 37.5q0 53-37.5 90.5t-90.5 37.5h-640q-53 0-90.5-37.5t-37.5-90.5v-341.333q0-53 37.5-90.5t90.5-37.5zM768 298.667h-640q-17.667 0-30.167 12.5t-12.5 30.167v341.333q0 17.667 12.5 30.167t30.167 12.5h640q17.667 0 30.167-12.5t12.5-30.167v-341.333q0-17.667-12.5-30.167t-30.167-12.5zM896 426.667v170.667q17.667 0 30.167-12.5t12.5-30.167v-85.333q0-17.667-12.5-30.167t-30.167-12.5z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "battery" - ], - "defaultCode": 57459, - "grid": 24 - }, - "attrs": [], - "properties": { - "id": 73, - "order": 75, - "prevSize": 24, - "name": "battery2", - "code": 57459 - }, - "setIdx": 2, - "setId": 2, - "iconIdx": 73 - }, - { - "icon": { - "paths": [ - "M512 0q69.667 0 128.5 34.333t93.167 93.167 34.333 128.5v128q0 53.333-20.667 101t-57.667 83q97.333 15.333 173 45.167t118.5 70.5 42.833 85.667v84q0 53-37.5 90.5t-90.5 37.5h-768q-53 0-90.5-37.5t-37.5-90.5v-84.333q0-45 42.833-85.667t118.333-70.5 172.833-44.833q-36.667-35.667-57.333-83.167t-20.667-100.833v-128q0-69.667 34.333-128.5t93.167-93.167 128.5-34.333zM512 640q-92.667 0-178.833 14.833t-150.167 41.5q-25.667 10.667-45.833 22.667t-30.667 21.667-15.833 16.833-5.333 11.5v84.333q0 17.667 12.5 30.167t30.167 12.5h768q17.667 0 30.167-12.5t12.5-30.167v-84q0-4.333-5.333-11.5t-15.833-16.833-30.667-21.667-45.833-23q-64-26.667-150.167-41.5t-178.833-14.833zM512 85.333q-70.667 0-120.667 50t-50 120.667v128q0 70.667 50 120.667t120.667 50 120.667-50 50-120.667v-128q0-70.667-50-120.667t-120.667-50z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "head" - ], - "defaultCode": 57460, - "grid": 24 - }, - "attrs": [], - "properties": { - "id": 74, - "order": 76, - "prevSize": 24, - "name": "head", - "code": 57460 - }, - "setIdx": 2, - "setId": 2, - "iconIdx": 74 - }, - { - "icon": { - "paths": [ - "M426.667 85.333h170.667q53 0 90.5 37.5t37.5 90.5v42.667h128q53 0 90.5 37.5t37.5 90.5v426.667q0 53-37.5 90.5t-90.5 37.5h-682.667q-53 0-90.5-37.5t-37.5-90.5v-426.667q0-53 37.5-90.5t90.5-37.5h128v-42.667q0-53 37.5-90.5t90.5-37.5zM213.333 853.333v-512h-42.667q-17.667 0-30.167 12.5t-12.5 30.167v426.667q0 17.667 12.5 30.167t30.167 12.5h42.667zM725.333 853.333v-512h-426.667v512h426.667zM853.333 341.333h-42.667v512h42.667q17.667 0 30.167-12.5t12.5-30.167v-426.667q0-17.667-12.5-30.167t-30.167-12.5zM597.333 170.667h-170.667q-17.667 0-30.167 12.5t-12.5 30.167v42.667h256v-42.667q0-17.667-12.5-30.167t-30.167-12.5z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "briefcase" - ], - "defaultCode": 57461, - "grid": 24 - }, - "attrs": [], - "properties": { - "id": 75, - "order": 77, - "prevSize": 24, - "name": "briefcase2", - "code": 57461 - }, - "setIdx": 2, - "setId": 2, - "iconIdx": 75 - }, - { - "icon": { - "paths": [ - "M170.667 42.667h682.667q53 0 90.5 37.5t37.5 90.5v469.333q0 53-37.5 90.5t-90.5 37.5h-341.333l-298.667 213.333v-213.333h-42.667q-53 0-90.5-37.5t-37.5-90.5v-469.333q0-53 37.5-90.5t90.5-37.5zM853.333 128h-682.667q-17.667 0-30.167 12.5t-12.5 30.167v469.333q0 17.667 12.5 30.167t30.167 12.5h128v133l186-133h368.667q17.667 0 30.167-12.5t12.5-30.167v-469.333q0-17.667-12.5-30.167t-30.167-12.5z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "speech-bubble" - ], - "defaultCode": 57462, - "grid": 24 - }, - "attrs": [], - "properties": { - "id": 76, - "order": 78, - "prevSize": 24, - "name": "speech-bubble", - "code": 57462 - }, - "setIdx": 2, - "setId": 2, - "iconIdx": 76 - }, - { - "icon": { - "paths": [ - "M512 42.667q70.667 0 120.667 50t50 120.667q0 59-36 104.833t-92 60.167v515.333q71-8 134.167-41.167t108.667-83.5 72-117.333 26.5-139.667q0-17.667 12.5-30.167t30.167-12.5 30.167 12.5 12.5 30.167q0 95.667-37.167 182.5t-100 149.667-149.667 100-182.5 37.167-182.5-37.167-149.667-100-100-149.667-37.167-182.5q0-17.667 12.5-30.167t30.167-12.5 30.167 12.5 12.5 30.167q0 72.667 26.5 139.667t72 117.333 108.667 83.5 134.167 41.167v-515.333q-56-14.333-92-60.167t-36-104.833q0-70.667 50-120.667t120.667-50zM512 128q-35.333 0-60.333 25t-25 60.333 25 60.333 60.333 25 60.333-25 25-60.333-25-60.333-60.333-25z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "anchor" - ], - "defaultCode": 57463, - "grid": 24 - }, - "attrs": [], - "properties": { - "id": 77, - "order": 79, - "prevSize": 24, - "name": "anchor", - "code": 57463 - }, - "setIdx": 2, - "setId": 2, - "iconIdx": 77 - }, - { - "icon": { - "paths": [ - "M512 42.667q12 0 18 0.333 62 2.333 120.5 20.5t108.167 48.833 91.167 73.833 70.333 93.833 45 110.167 16.167 121.833-16.167 121.833-45 110.167-70.333 93.833-91.167 73.833-108.167 48.833-120.5 20.5q-6 0.333-18 0.333t-18-0.333q-62-2.333-120.5-20.5t-108.167-48.833-91.167-73.833-70.333-93.833-45-110.167-16.167-121.833 16.167-121.833 45-110.167 70.333-93.833 91.167-73.833 108.167-48.833 120.5-20.5q6-0.333 18-0.333zM300.333 554.667h-170q13.333 119 91.667 209t192.667 120q-43.333-65.667-75.5-148.833t-38.833-180.167zM638.333 554.667h-252.667q3.333 42.667 13.833 85.333t23.5 75.5 30 64.833 30.667 52.667 28.333 39.667q14.667-19 28.333-39.833t30.667-52.833 30-64.833 23.5-75.333 13.833-85.167zM414.667 140.333q-114.333 30-192.667 120t-91.667 209h170q11.667-174 114.333-329zM893.667 554.667h-169.667q-12.333 174.333-114.667 329 114.333-30 192.667-120t91.667-209zM512 151.333q-14.667 19-28.167 39.833t-30.667 52.833-30.167 64.833-23.5 75.333-13.833 85.167h252.667q-3.333-42.667-13.833-85.333t-23.5-75.5-30-64.833-30.667-52.667-28.333-39.667zM609.333 140.333q102.333 154.667 114.667 329h169.667q-13.333-119-91.667-209t-192.667-120z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "globe" - ], - "defaultCode": 57464, - "grid": 24 - }, - "attrs": [], - "properties": { - "id": 78, - "order": 80, - "prevSize": 24, - "name": "globe2", - "code": 57464 - }, - "setIdx": 2, - "setId": 2, - "iconIdx": 78 - }, - { - "icon": { - "paths": [ - "M42.667 213.333l469.333-213.333 469.333 213.333v597.333l-469.333 213.333-469.333-213.333v-597.333zM469.333 454l-341.333-155v456.667l341.333 155.333v-457zM896 755.667v-456.667l-341.333 155v457zM826.667 236.667l-314.667-143-314.667 143 314.667 143z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "box" - ], - "defaultCode": 57465, - "grid": 24 - }, - "attrs": [], - "properties": { - "id": 79, - "order": 81, - "prevSize": 24, - "name": "box2", - "code": 57465 - }, - "setIdx": 2, - "setId": 2, - "iconIdx": 79 - }, - { - "icon": { - "paths": [ - "M469.333 85.333q83 0 160.667 31.333 79.667 32.333 141 93.667 0.333 0.333 125 122.333v-162q0-17.667 12.5-30.167t30.167-12.5 30.167 12.5 12.5 30.167v256q0 17.667-12.5 30.167t-30.167 12.5h-256q-17.667 0-30.167-12.5t-12.5-30.167 12.5-30.167 30.167-12.5h144q-92.667-90-116-113.333-49.667-49.667-113-75-61-25-128.333-25t-128.333 25q-63.667 25.333-113 75-49.333 49.333-75 113-25 61-25 128.333t25 128.333q25.667 63.667 75 113 49.333 49.667 113 75 61 25 128.333 25t128.333-25q63.333-25.333 113-75 55.333-55.333 80.667-127.667 5.667-16.667 21.667-24.167t32.667-1.833q16.667 6 24.333 22t1.667 32.667q-15.333 43.667-41.5 85.333t-59.167 74q-61.333 61.333-141 93.667-77.667 31.333-160.667 31.333t-160.667-31.333q-79.667-32.333-141-93.667t-93.667-141q-31.333-77.667-31.333-160.667t31.333-160.667q32.333-79.667 93.667-141t141-93.667q77.667-31.333 160.667-31.333z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "reload" - ], - "defaultCode": 57472, - "grid": 24 - }, - "attrs": [], - "properties": { - "id": 80, - "order": 82, - "prevSize": 24, - "name": "reload", - "code": 57472 - }, - "setIdx": 2, - "setId": 2, - "iconIdx": 80 - }, - { - "icon": { - "paths": [ - "M768 85.333q70.667 0 120.667 50t50 120.667-50 120.667-120.667 50q-37.667 0-71.167-15.5t-57.5-43.167l-216.333 108.333q3.667 17.667 3.667 35.667t-3.667 35.667l216.333 108.333q24-27.667 57.5-43.167t71.167-15.5q70.667 0 120.667 50t50 120.667-50 120.667-120.667 50-120.667-50-50-120.667q0-18 3.667-35.667l-216.333-108.333q-24 27.667-57.5 43.167t-71.167 15.5q-70.667 0-120.667-50t-50-120.667 50-120.667 120.667-50q37.667 0 71.167 15.5t57.5 43.167l216.333-108.333q-3.667-17.667-3.667-35.667 0-70.667 50-120.667t120.667-50zM256 426.667q-35.333 0-60.333 25t-25 60.333 25 60.333 60.333 25 60.333-25 25-60.333-25-60.333-60.333-25zM768 682.667q-35.333 0-60.333 25t-25 60.333 25 60.333 60.333 25 60.333-25 25-60.333-25-60.333-60.333-25zM768 170.667q-35.333 0-60.333 25t-25 60.333 25 60.333 60.333 25 60.333-25 25-60.333-25-60.333-60.333-25z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "share" - ], - "defaultCode": 57473, - "grid": 24 - }, - "attrs": [], - "properties": { - "id": 81, - "order": 83, - "prevSize": 24, - "name": "share2", - "code": 57473 - }, - "setIdx": 2, - "setId": 2, - "iconIdx": 81 - }, - { - "icon": { - "paths": [ - "M768 42.667h85.333q53 0 90.5 37.5t37.5 90.5v85.333q0 17.667-12.5 30.167t-30.167 12.5-30.167-12.5-12.5-30.167v-85.333q0-17.667-12.5-30.167t-30.167-12.5h-85.333q-17.667 0-30.167-12.5t-12.5-30.167 12.5-30.167 30.167-12.5zM85.333 725.333q17.667 0 30.167 12.5t12.5 30.167v85.333q0 17.667 12.5 30.167t30.167 12.5h85.333q17.667 0 30.167 12.5t12.5 30.167-12.5 30.167-30.167 12.5h-85.333q-53 0-90.5-37.5t-37.5-90.5v-85.333q0-17.667 12.5-30.167t30.167-12.5zM85.333 384q17.667 0 30.167 12.5t12.5 30.167v170.667q0 17.667-12.5 30.167t-30.167 12.5-30.167-12.5-12.5-30.167v-170.667q0-17.667 12.5-30.167t30.167-12.5zM426.667 896h170.667q17.667 0 30.167 12.5t12.5 30.167-12.5 30.167-30.167 12.5h-170.667q-17.667 0-30.167-12.5t-12.5-30.167 12.5-30.167 30.167-12.5zM170.667 42.667h85.333q17.667 0 30.167 12.5t12.5 30.167-12.5 30.167-30.167 12.5h-85.333q-17.667 0-30.167 12.5t-12.5 30.167v85.333q0 17.667-12.5 30.167t-30.167 12.5-30.167-12.5-12.5-30.167v-85.333q0-53 37.5-90.5t90.5-37.5zM938.667 725.333q17.667 0 30.167 12.5t12.5 30.167v85.333q0 53-37.5 90.5t-90.5 37.5h-85.333q-17.667 0-30.167-12.5t-12.5-30.167 12.5-30.167 30.167-12.5h85.333q17.667 0 30.167-12.5t12.5-30.167v-85.333q0-17.667 12.5-30.167t30.167-12.5zM938.667 384q17.667 0 30.167 12.5t12.5 30.167v170.667q0 17.667-12.5 30.167t-30.167 12.5-30.167-12.5-12.5-30.167v-170.667q0-17.667 12.5-30.167t30.167-12.5zM426.667 42.667h170.667q17.667 0 30.167 12.5t12.5 30.167-12.5 30.167-30.167 12.5h-170.667q-17.667 0-30.167-12.5t-12.5-30.167 12.5-30.167 30.167-12.5z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "marquee" - ], - "defaultCode": 57474, - "grid": 24 - }, - "attrs": [], - "properties": { - "id": 82, - "order": 84, - "prevSize": 24, - "name": "marquee", - "code": 57474 - }, - "setIdx": 2, - "setId": 2, - "iconIdx": 82 - }, - { - "icon": { - "paths": [ - "M512 298.667q17.667 0 30.167 12.5t12.5 30.167v128h128q17.667 0 30.167 12.5t12.5 30.167-12.5 30.167-30.167 12.5h-128v128q0 17.667-12.5 30.167t-30.167 12.5-30.167-12.5-12.5-30.167v-128h-128q-17.667 0-30.167-12.5t-12.5-30.167 12.5-30.167 30.167-12.5h128v-128q0-17.667 12.5-30.167t30.167-12.5zM85.333 725.333q17.667 0 30.167 12.5t12.5 30.167v85.333q0 17.667 12.5 30.167t30.167 12.5h85.333q17.667 0 30.167 12.5t12.5 30.167-12.5 30.167-30.167 12.5h-85.333q-53 0-90.5-37.5t-37.5-90.5v-85.333q0-17.667 12.5-30.167t30.167-12.5zM85.333 384q17.667 0 30.167 12.5t12.5 30.167v170.667q0 17.667-12.5 30.167t-30.167 12.5-30.167-12.5-12.5-30.167v-170.667q0-17.667 12.5-30.167t30.167-12.5zM426.667 896h170.667q17.667 0 30.167 12.5t12.5 30.167-12.5 30.167-30.167 12.5h-170.667q-17.667 0-30.167-12.5t-12.5-30.167 12.5-30.167 30.167-12.5zM170.667 42.667h85.333q17.667 0 30.167 12.5t12.5 30.167-12.5 30.167-30.167 12.5h-85.333q-17.667 0-30.167 12.5t-12.5 30.167v85.333q0 17.667-12.5 30.167t-30.167 12.5-30.167-12.5-12.5-30.167v-85.333q0-53 37.5-90.5t90.5-37.5zM938.667 725.333q17.667 0 30.167 12.5t12.5 30.167v85.333q0 53-37.5 90.5t-90.5 37.5h-85.333q-17.667 0-30.167-12.5t-12.5-30.167 12.5-30.167 30.167-12.5h85.333q17.667 0 30.167-12.5t12.5-30.167v-85.333q0-17.667 12.5-30.167t30.167-12.5zM938.667 384q17.667 0 30.167 12.5t12.5 30.167v170.667q0 17.667-12.5 30.167t-30.167 12.5-30.167-12.5-12.5-30.167v-170.667q0-17.667 12.5-30.167t30.167-12.5zM426.667 42.667h170.667q17.667 0 30.167 12.5t12.5 30.167-12.5 30.167-30.167 12.5h-170.667q-17.667 0-30.167-12.5t-12.5-30.167 12.5-30.167 30.167-12.5zM768 42.667h85.333q53 0 90.5 37.5t37.5 90.5v85.333q0 17.667-12.5 30.167t-30.167 12.5-30.167-12.5-12.5-30.167v-85.333q0-17.667-12.5-30.167t-30.167-12.5h-85.333q-17.667 0-30.167-12.5t-12.5-30.167 12.5-30.167 30.167-12.5z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "marquee-plus" - ], - "defaultCode": 57475, - "grid": 24 - }, - "attrs": [], - "properties": { - "id": 83, - "order": 85, - "prevSize": 24, - "name": "marquee-plus", - "code": 57475 - }, - "setIdx": 2, - "setId": 2, - "iconIdx": 83 - }, - { - "icon": { - "paths": [ - "M768 42.667h85.333q53 0 90.5 37.5t37.5 90.5v85.333q0 17.667-12.5 30.167t-30.167 12.5-30.167-12.5-12.5-30.167v-85.333q0-17.667-12.5-30.167t-30.167-12.5h-85.333q-17.667 0-30.167-12.5t-12.5-30.167 12.5-30.167 30.167-12.5zM85.333 725.333q17.667 0 30.167 12.5t12.5 30.167v85.333q0 17.667 12.5 30.167t30.167 12.5h85.333q17.667 0 30.167 12.5t12.5 30.167-12.5 30.167-30.167 12.5h-85.333q-53 0-90.5-37.5t-37.5-90.5v-85.333q0-17.667 12.5-30.167t30.167-12.5zM85.333 384q17.667 0 30.167 12.5t12.5 30.167v170.667q0 17.667-12.5 30.167t-30.167 12.5-30.167-12.5-12.5-30.167v-170.667q0-17.667 12.5-30.167t30.167-12.5zM426.667 896h170.667q17.667 0 30.167 12.5t12.5 30.167-12.5 30.167-30.167 12.5h-170.667q-17.667 0-30.167-12.5t-12.5-30.167 12.5-30.167 30.167-12.5zM170.667 42.667h85.333q17.667 0 30.167 12.5t12.5 30.167-12.5 30.167-30.167 12.5h-85.333q-17.667 0-30.167 12.5t-12.5 30.167v85.333q0 17.667-12.5 30.167t-30.167 12.5-30.167-12.5-12.5-30.167v-85.333q0-53 37.5-90.5t90.5-37.5zM938.667 725.333q17.667 0 30.167 12.5t12.5 30.167v85.333q0 53-37.5 90.5t-90.5 37.5h-85.333q-17.667 0-30.167-12.5t-12.5-30.167 12.5-30.167 30.167-12.5h85.333q17.667 0 30.167-12.5t12.5-30.167v-85.333q0-17.667 12.5-30.167t30.167-12.5zM341.333 469.333h341.333q17.667 0 30.167 12.5t12.5 30.167-12.5 30.167-30.167 12.5h-341.333q-17.667 0-30.167-12.5t-12.5-30.167 12.5-30.167 30.167-12.5zM938.667 384q17.667 0 30.167 12.5t12.5 30.167v170.667q0 17.667-12.5 30.167t-30.167 12.5-30.167-12.5-12.5-30.167v-170.667q0-17.667 12.5-30.167t30.167-12.5zM426.667 42.667h170.667q17.667 0 30.167 12.5t12.5 30.167-12.5 30.167-30.167 12.5h-170.667q-17.667 0-30.167-12.5t-12.5-30.167 12.5-30.167 30.167-12.5z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "marquee-minus" - ], - "defaultCode": 57476, - "grid": 24 - }, - "attrs": [], - "properties": { - "id": 84, - "order": 86, - "prevSize": 24, - "name": "marquee-minus", - "code": 57476 - }, - "setIdx": 2, - "setId": 2, - "iconIdx": 84 - }, - { - "icon": { - "paths": [ - "M42.667 42.667h482.667l418.667 418.333q37.333 37.333 37.333 90.333 0 53.333-37.333 90.667l-302 302q-37.333 37.333-90.333 37.333-53.333 0-90.667-37.333l-418.333-418.667v-482.667zM883.667 521.333l-393.667-393.333h-362v362l393.333 393.667q12.667 12.333 30.333 12.333t30-12.333l302-302q12.333-12.333 12.333-30t-12.333-30.333zM362.667 256q44.333 0 75.5 31.167t31.167 75.5-31.167 75.5-75.5 31.167-75.5-31.167-31.167-75.5 31.167-75.5 75.5-31.167zM362.667 341.333q-8.667 0-15 6.333t-6.333 15 6.333 15 15 6.333 15-6.333 6.333-15-6.333-15-15-6.333z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "tag" - ], - "defaultCode": 57477, - "grid": 24 - }, - "attrs": [], - "properties": { - "id": 85, - "order": 87, - "prevSize": 24, - "name": "tag2", - "code": 57477 - }, - "setIdx": 2, - "setId": 2, - "iconIdx": 85 - }, - { - "icon": { - "paths": [ - "M813.667 253q59 59 91.333 135.667 33.667 79.333 33.667 166t-33.667 166q-32.333 76.667-91.333 135.667t-135.667 91.333q-79.333 33.667-166 33.667t-166-33.667q-76.667-32.333-135.667-91.333t-91.333-135.667q-33.667-79.333-33.667-166t33.667-166q32.333-76.667 91.333-135.667 12.333-12.333 30-12.333t30.333 12.333 12.667 30-12.667 30.333q-47 47-73.333 108.333-26.667 64-26.667 133t26.667 133q26.333 61.333 73.333 108.333t108.333 73.333q64 26.667 133 26.667t133-26.667q61.333-26.333 108.333-73.333t73.333-108.333q26.667-64 26.667-133t-26.667-133q-26.333-61.333-73.333-108.333-12.667-12.667-12.667-30.333t12.667-30 30.333-12.333 30 12.333zM512 42.667q17.667 0 30.167 12.5t12.5 30.167v426.667q0 17.667-12.5 30.167t-30.167 12.5-30.167-12.5-12.5-30.167v-426.667q0-17.667 12.5-30.167t30.167-12.5z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "power" - ], - "defaultCode": 57478, - "grid": 24 - }, - "attrs": [], - "properties": { - "id": 86, - "order": 88, - "prevSize": 24, - "name": "power", - "code": 57478 - }, - "setIdx": 2, - "setId": 2, - "iconIdx": 86 - }, - { - "icon": { - "paths": [ - "M768 85.333q70.667 0 120.667 50t50 120.667-50 120.667-120.667 50h-85.333v170.667h85.333q70.667 0 120.667 50t50 120.667-50 120.667-120.667 50-120.667-50-50-120.667v-85.333h-170.667v85.333q0 70.667-50 120.667t-120.667 50-120.667-50-50-120.667 50-120.667 120.667-50h85.333v-170.667h-85.333q-70.667 0-120.667-50t-50-120.667 50-120.667 120.667-50 120.667 50 50 120.667v85.333h170.667v-85.333q0-70.667 50-120.667t120.667-50zM341.333 768v-85.333h-85.333q-35.333 0-60.333 25t-25 60.333 25 60.333 60.333 25 60.333-25 25-60.333zM256 170.667q-35.333 0-60.333 25t-25 60.333 25 60.333 60.333 25h85.333v-85.333q0-35.333-25-60.333t-60.333-25zM597.333 597.333v-170.667h-170.667v170.667h170.667zM768 682.667h-85.333v85.333q0 35.333 25 60.333t60.333 25 60.333-25 25-60.333-25-60.333-60.333-25zM768 170.667q-35.333 0-60.333 25t-25 60.333v85.333h85.333q35.333 0 60.333-25t25-60.333-25-60.333-60.333-25z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "command" - ], - "defaultCode": 57479, - "grid": 24 - }, - "attrs": [], - "properties": { - "id": 87, - "order": 89, - "prevSize": 24, - "name": "command", - "code": 57479 - }, - "setIdx": 2, - "setId": 2, - "iconIdx": 87 - }, - { - "icon": { - "paths": [ - "M128 170.667h213.333q24.333 0 37 21.333l329 576h188.667q17.667 0 30.167 12.5t12.5 30.167-12.5 30.167-30.167 12.5h-213.333q-24.333 0-37-21.333l-329-576h-188.667q-17.667 0-30.167-12.5t-12.5-30.167 12.5-30.167 30.167-12.5zM597.333 170.667h213.333q17.667 0 30.167 12.5t12.5 30.167-12.5 30.167-30.167 12.5h-213.333q-17.667 0-30.167-12.5t-12.5-30.167 12.5-30.167 30.167-12.5z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "alt" - ], - "defaultCode": 57480, - "grid": 24 - }, - "attrs": [], - "properties": { - "id": 88, - "order": 90, - "prevSize": 24, - "name": "alt", - "code": 57480 - }, - "setIdx": 2, - "setId": 2, - "iconIdx": 88 - }, - { - "icon": { - "paths": [ - "M559 45q86.333 8.667 163.833 47.667t136.167 103.333q57.667 63.333 89.667 143.667 32.667 83 32.667 172.333 0 95.667-37 182.667-34.333 82.333-100.333 149.333-67 66-149.333 100.333-87 37-182.667 37-89.333 0-172.333-32.667-80.333-32-143.667-89.667-64.333-58.667-103.333-136.167t-47.667-163.833q-1.667-19 10.833-33t31.833-14q16.333 0 28.5 11t13.833 27.333q7 71 38.833 134.333t84.833 111.333q51.667 47.667 117.333 73.333 68 26.667 141 26.667 78.333 0 149.333-30 67.333-28.333 122.333-82.333 54-55 82.333-122.333 30-71 30-149.333 0-73-26.667-141-25.667-65.667-73.333-117.333-48-53-111.333-84.833t-134.333-38.833q-16.333-1.667-27.333-13.833t-11-28.5q0-12.667 4.833-21.667t12.833-13.333 15.167-6 14.167-1.667zM85.333 42.667h256q17.667 0 30.167 12.5t12.5 30.167-12.5 30.167-30.167 12.5h-153l354 354q12.333 12 12.333 30 0 18.333-12.167 30.5t-30.5 12.167q-18 0-30.333-12.333l-353.667-354v153q0 17.667-12.5 30.167t-30.167 12.5-30.167-12.5-12.5-30.167v-256q0-17.667 12.5-30.167t30.167-12.5z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "esc" - ], - "defaultCode": 57481, - "grid": 24 - }, - "attrs": [], - "properties": { - "id": 89, - "order": 91, - "prevSize": 24, - "name": "esc", - "code": 57481 - }, - "setIdx": 2, - "setId": 2, - "iconIdx": 89 - }, - { - "icon": { - "paths": [ - "M853.333 42.667q53 0 90.5 37.5t37.5 90.5v682.667q0 53-37.5 90.5t-90.5 37.5-90.5-37.5-37.5-90.5v-682.667q0-53 37.5-90.5t90.5-37.5zM170.667 554.667q53 0 90.5 37.5t37.5 90.5v170.667q0 53-37.5 90.5t-90.5 37.5-90.5-37.5-37.5-90.5v-170.667q0-53 37.5-90.5t90.5-37.5zM170.667 640q-17.667 0-30.167 12.5t-12.5 30.167v170.667q0 17.667 12.5 30.167t30.167 12.5 30.167-12.5 12.5-30.167v-170.667q0-17.667-12.5-30.167t-30.167-12.5zM512 298.667q53 0 90.5 37.5t37.5 90.5v426.667q0 53-37.5 90.5t-90.5 37.5-90.5-37.5-37.5-90.5v-426.667q0-53 37.5-90.5t90.5-37.5zM512 384q-17.667 0-30.167 12.5t-12.5 30.167v426.667q0 17.667 12.5 30.167t30.167 12.5 30.167-12.5 12.5-30.167v-426.667q0-17.667-12.5-30.167t-30.167-12.5zM853.333 128q-17.667 0-30.167 12.5t-12.5 30.167v682.667q0 17.667 12.5 30.167t30.167 12.5 30.167-12.5 12.5-30.167v-682.667q0-17.667-12.5-30.167t-30.167-12.5z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "bar-graph" - ], - "defaultCode": 57488, - "grid": 24 - }, - "attrs": [], - "properties": { - "id": 90, - "order": 92, - "prevSize": 24, - "name": "bar-graph2", - "code": 57488 - }, - "setIdx": 2, - "setId": 2, - "iconIdx": 90 - }, - { - "icon": { - "paths": [ - "M512 42.667q53 0 90.5 37.5t37.5 90.5v682.667q0 53-37.5 90.5t-90.5 37.5-90.5-37.5-37.5-90.5v-682.667q0-53 37.5-90.5t90.5-37.5zM170.667 554.667q53 0 90.5 37.5t37.5 90.5v170.667q0 53-37.5 90.5t-90.5 37.5-90.5-37.5-37.5-90.5v-170.667q0-53 37.5-90.5t90.5-37.5zM170.667 640q-17.667 0-30.167 12.5t-12.5 30.167v170.667q0 17.667 12.5 30.167t30.167 12.5 30.167-12.5 12.5-30.167v-170.667q0-17.667-12.5-30.167t-30.167-12.5zM512 128q-17.667 0-30.167 12.5t-12.5 30.167v682.667q0 17.667 12.5 30.167t30.167 12.5 30.167-12.5 12.5-30.167v-682.667q0-17.667-12.5-30.167t-30.167-12.5zM853.333 298.667q53 0 90.5 37.5t37.5 90.5v426.667q0 53-37.5 90.5t-90.5 37.5-90.5-37.5-37.5-90.5v-426.667q0-53 37.5-90.5t90.5-37.5zM853.333 384q-17.667 0-30.167 12.5t-12.5 30.167v426.667q0 17.667 12.5 30.167t30.167 12.5 30.167-12.5 12.5-30.167v-426.667q0-17.667-12.5-30.167t-30.167-12.5z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "bar-graph-2" - ], - "defaultCode": 57489, - "grid": 24 - }, - "attrs": [], - "properties": { - "id": 91, - "order": 93, - "prevSize": 24, - "name": "bar-graph-2", - "code": 57489 - }, - "setIdx": 2, - "setId": 2, - "iconIdx": 91 - }, - { - "icon": { - "paths": [ - "M512 42.667q95.667 0 182.5 37.167t149.667 100 100 149.667 37.167 182.5-37.167 182.5-100 149.667-149.667 100-182.5 37.167-182.5-37.167-149.667-100-100-149.667-37.167-182.5 37.167-182.5 100-149.667 149.667-100 182.5-37.167zM469.333 554.667v-424.333q-71 8-134.167 41.167t-108.667 83.5-72 117.333-26.5 139.667q0 78 30.5 149.167t81.833 122.5 122.5 81.833 149.167 30.5q72.667 0 139.667-26.5t117.333-72 83.5-108.667 41.167-134.167h-424.333zM554.667 130.333v339h339q-7.333-66-36.333-125.167t-73.667-103.833-103.833-73.667-125.167-36.333z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "pie-graph" - ], - "defaultCode": 57490, - "grid": 24 - }, - "attrs": [], - "properties": { - "id": 92, - "order": 94, - "prevSize": 24, - "name": "pie-graph", - "code": 57490 - }, - "setIdx": 2, - "setId": 2, - "iconIdx": 92 - }, - { - "icon": { - "paths": [ - "M396.667 384l115.333-355 115.333 355h373.333l-302 209.667 115.333 348.667-302-221-302 219.333 115.333-347-302-209.667h373.333zM565.333 469.333l-53.333-169.667-53.333 169.667h-165.667l133.333 88.333-52.333 157.667 138.333-100 137.667 101-52.333-157.667 133-89.333h-165.333z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "star" - ], - "defaultCode": 57491, - "grid": 24 - }, - "attrs": [], - "properties": { - "id": 93, - "order": 95, - "prevSize": 24, - "name": "star2", - "code": 57491 - }, - "setIdx": 2, - "setId": 2, - "iconIdx": 93 - }, - { - "icon": { - "paths": [ - "M426.667 170.667q17.667 0 30.167 12.5t12.5 30.167q0 18-12.667 30.333l-225.667 225.667h665q17.667 0 30.167 12.5t12.5 30.167-12.5 30.167-30.167 12.5h-665l225.667 225.667q12.667 12.333 12.667 30.333 0 17.667-12.5 30.167t-30.167 12.5q-18 0-30.333-12.333l-298.667-298.667q-12.333-13-12.333-30.333t12.333-30.333l298.667-298.667q12.667-12.333 30.333-12.333z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "arrow-left" - ], - "defaultCode": 57492, - "grid": 24 - }, - "attrs": [], - "properties": { - "id": 94, - "order": 96, - "prevSize": 24, - "name": "arrow-left2", - "code": 57492 - }, - "setIdx": 2, - "setId": 2, - "iconIdx": 94 - }, - { - "icon": { - "paths": [ - "M597.333 170.667q18 0 30.333 12.333l298.667 298.667q12.333 12.333 12.333 30.333t-12.333 30.333l-298.667 298.667q-12.333 12.333-30.333 12.333-18.333 0-30.5-12.167t-12.167-30.5q0-18 12.333-30.333l226-225.667h-665q-17.667 0-30.167-12.5t-12.5-30.167 12.5-30.167 30.167-12.5h665l-226-225.667q-12.333-12.333-12.333-30.333 0-18.333 12.167-30.5t30.5-12.167z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "arrow-right" - ], - "defaultCode": 57493, - "grid": 24 - }, - "attrs": [], - "properties": { - "id": 95, - "order": 97, - "prevSize": 24, - "name": "arrow-right2", - "code": 57493 - }, - "setIdx": 2, - "setId": 2, - "iconIdx": 95 - }, - { - "icon": { - "paths": [ - "M512 85.333q18 0 30.333 12.333l298.667 298.667q12.333 12.333 12.333 30.333 0 18.333-12.167 30.5t-30.5 12.167q-18 0-30.333-12.333l-225.667-226v665q0 17.667-12.5 30.167t-30.167 12.5-30.167-12.5-12.5-30.167v-665l-225.667 226q-12.333 12.333-30.333 12.333-18.333 0-30.5-12.167t-12.167-30.5q0-18 12.333-30.333l298.667-298.667q12.333-12.333 30.333-12.333z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "arrow-up" - ], - "defaultCode": 57494, - "grid": 24 - }, - "attrs": [], - "properties": { - "id": 96, - "order": 98, - "prevSize": 24, - "name": "arrow-up2", - "code": 57494 - }, - "setIdx": 2, - "setId": 2, - "iconIdx": 96 - }, - { - "icon": { - "paths": [ - "M512 85.333q17.667 0 30.167 12.5t12.5 30.167v665l225.667-226q12.333-12.333 30.333-12.333 18.333 0 30.5 12.167t12.167 30.5q0 18-12.333 30.333l-298.667 298.667q-12.333 12.333-30.333 12.333t-30.333-12.333l-298.667-298.667q-12.333-12.333-12.333-30.333 0-18.333 12.167-30.5t30.5-12.167q18 0 30.333 12.333l225.667 226v-665q0-17.667 12.5-30.167t30.167-12.5z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "arrow-down" - ], - "defaultCode": 57495, - "grid": 24 - }, - "attrs": [], - "properties": { - "id": 97, - "order": 99, - "prevSize": 24, - "name": "arrow-down2", - "code": 57495 - }, - "setIdx": 2, - "setId": 2, - "iconIdx": 97 - }, - { - "icon": { - "paths": [ - "M213.333 341.333l213.333-213.333v768l-213.333-213.333h-85.333q-53 0-90.5-37.5t-37.5-90.5v-83.667q0-53 37.5-91.333t90.5-38.333h85.333zM341.333 690v-357.667l-92.667 94.333h-120.667q-17.333 0-30 13.167t-12.667 31.167v83.667q0 17.667 12.5 30.167t30.167 12.5h120.667zM620 369.667q12.333 0 23.167 7t16.167 19q23.333 56.333 23.333 116.333 0 61-23.333 115.667-5 12-15.833 19.167t-23.5 7.167q-15.667 0-29.167-11.833t-13.5-30.833q0-7.667 3.333-16.667 16.667-39.333 16.667-82.667 0-43-16.667-83-3.333-7.667-3.333-16.667 0-19 12.833-30.833t29.833-11.833zM750.333 250.667q24 0 36.667 21 33 55 49 113.667 17.333 62.667 17.333 126.667 0 63.667-17.333 127-16.333 59.333-49 113.667-12.333 20.667-36.667 20.667-16.667 0-29.667-12t-13-30.667q0-11.667 6.333-22 26-43.333 39.667-92.667 14.333-50 14.333-104 0-53.667-14.333-103.667-13.667-49.333-39.667-93-6.333-9.667-6.333-21.667 0-18 13.167-30.5t29.5-12.5zM878 133.667q23 0 35.333 18.667 54.333 79.667 82.5 171.333t28.167 188.333-28.167 188.333-82.5 171.333q-12 18.667-35.333 18.667-17.333 0-29.833-12t-12.5-30.667q0-13.333 7.333-24 95.667-140.333 95.667-311.667 0-84-24.333-163.333t-71.333-148.333q-7.333-10.667-7.333-24 0-18.667 12.5-30.667t29.833-12z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "volume" - ], - "defaultCode": 57496, - "grid": 24 - }, - "attrs": [], - "properties": { - "id": 98, - "order": 100, - "prevSize": 24, - "name": "volume", - "code": 57496 - }, - "setIdx": 2, - "setId": 2, - "iconIdx": 98 - }, - { - "icon": { - "paths": [ - "M256 341.333l213.333-213.333v768l-213.333-213.333h-85.333q-53 0-90.5-37.5t-37.5-90.5v-83.667q0-53 37.5-91.333t90.5-38.333h85.333zM384 690v-357.667l-92.667 94.333h-120.667q-17.333 0-30 13.167t-12.667 31.167v83.667q0 17.667 12.5 30.167t30.167 12.5h120.667zM896 341.333q18.333 0 30.5 12.167t12.167 30.5q0 18-12.333 30.333l-98 97.667 98 97.667q12.333 12.333 12.333 30.333 0 18.333-12.167 30.5t-30.5 12.167q-18 0-30.333-12.333l-97.667-98-97.667 98q-12.333 12.333-30.333 12.333-18.333 0-30.5-12.167t-12.167-30.5q0-18 12.333-30.333l98-97.667-98-97.667q-12.333-12.333-12.333-30.333 0-18.333 12.167-30.5t30.5-12.167q18 0 30.333 12.333l97.667 98 97.667-98q12.333-12.333 30.333-12.333z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "mute" - ], - "defaultCode": 57497, - "grid": 24 - }, - "attrs": [], - "properties": { - "id": 99, - "order": 101, - "prevSize": 24, - "name": "mute", - "code": 57497 - }, - "setIdx": 2, - "setId": 2, - "iconIdx": 99 - }, - { - "icon": { - "paths": [ - "M682.667 42.667h170.667q53 0 90.5 37.5t37.5 90.5v682.667q0 53-37.5 90.5t-90.5 37.5h-170.667q-53 0-90.5-37.5t-37.5-90.5v-682.667q0-53 37.5-90.5t90.5-37.5zM170.667 554.667h170.667q53 0 90.5 37.5t37.5 90.5v170.667q0 53-37.5 90.5t-90.5 37.5h-170.667q-53 0-90.5-37.5t-37.5-90.5v-170.667q0-53 37.5-90.5t90.5-37.5zM341.333 640h-170.667q-17.667 0-30.167 12.5t-12.5 30.167v170.667q0 17.667 12.5 30.167t30.167 12.5h170.667q17.667 0 30.167-12.5t12.5-30.167v-170.667q0-17.667-12.5-30.167t-30.167-12.5zM170.667 42.667h170.667q53 0 90.5 37.5t37.5 90.5v170.667q0 53-37.5 90.5t-90.5 37.5h-170.667q-53 0-90.5-37.5t-37.5-90.5v-170.667q0-53 37.5-90.5t90.5-37.5zM341.333 128h-170.667q-17.667 0-30.167 12.5t-12.5 30.167v170.667q0 17.667 12.5 30.167t30.167 12.5h170.667q17.667 0 30.167-12.5t12.5-30.167v-170.667q0-17.667-12.5-30.167t-30.167-12.5zM853.333 128h-170.667q-17.667 0-30.167 12.5t-12.5 30.167v682.667q0 17.667 12.5 30.167t30.167 12.5h170.667q17.667 0 30.167-12.5t12.5-30.167v-682.667q0-17.667-12.5-30.167t-30.167-12.5z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "content-right" - ], - "defaultCode": 57600, - "grid": 24 - }, - "attrs": [], - "properties": { - "id": 100, - "order": 102, - "prevSize": 24, - "name": "content-right", - "code": 57600 - }, - "setIdx": 2, - "setId": 2, - "iconIdx": 100 - }, - { - "icon": { - "paths": [ - "M170.667 42.667h170.667q53 0 90.5 37.5t37.5 90.5v682.667q0 53-37.5 90.5t-90.5 37.5h-170.667q-53 0-90.5-37.5t-37.5-90.5v-682.667q0-53 37.5-90.5t90.5-37.5zM341.333 128h-170.667q-17.667 0-30.167 12.5t-12.5 30.167v682.667q0 17.667 12.5 30.167t30.167 12.5h170.667q17.667 0 30.167-12.5t12.5-30.167v-682.667q0-17.667-12.5-30.167t-30.167-12.5zM682.667 554.667h170.667q53 0 90.5 37.5t37.5 90.5v170.667q0 53-37.5 90.5t-90.5 37.5h-170.667q-53 0-90.5-37.5t-37.5-90.5v-170.667q0-53 37.5-90.5t90.5-37.5zM853.333 640h-170.667q-17.667 0-30.167 12.5t-12.5 30.167v170.667q0 17.667 12.5 30.167t30.167 12.5h170.667q17.667 0 30.167-12.5t12.5-30.167v-170.667q0-17.667-12.5-30.167t-30.167-12.5zM682.667 42.667h170.667q53 0 90.5 37.5t37.5 90.5v170.667q0 53-37.5 90.5t-90.5 37.5h-170.667q-53 0-90.5-37.5t-37.5-90.5v-170.667q0-53 37.5-90.5t90.5-37.5zM853.333 128h-170.667q-17.667 0-30.167 12.5t-12.5 30.167v170.667q0 17.667 12.5 30.167t30.167 12.5h170.667q17.667 0 30.167-12.5t12.5-30.167v-170.667q0-17.667-12.5-30.167t-30.167-12.5z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "content-left" - ], - "defaultCode": 57601, - "grid": 24 - }, - "attrs": [], - "properties": { - "id": 101, - "order": 103, - "prevSize": 24, - "name": "content-left", - "code": 57601 - }, - "setIdx": 2, - "setId": 2, - "iconIdx": 101 - }, - { - "icon": { - "paths": [ - "M682.667 42.667h170.667q53 0 90.5 37.5t37.5 90.5v170.667q0 53-37.5 90.5t-90.5 37.5h-170.667q-53 0-90.5-37.5t-37.5-90.5v-170.667q0-53 37.5-90.5t90.5-37.5zM170.667 554.667h170.667q53 0 90.5 37.5t37.5 90.5v170.667q0 53-37.5 90.5t-90.5 37.5h-170.667q-53 0-90.5-37.5t-37.5-90.5v-170.667q0-53 37.5-90.5t90.5-37.5zM341.333 640h-170.667q-17.667 0-30.167 12.5t-12.5 30.167v170.667q0 17.667 12.5 30.167t30.167 12.5h170.667q17.667 0 30.167-12.5t12.5-30.167v-170.667q0-17.667-12.5-30.167t-30.167-12.5zM170.667 42.667h170.667q53 0 90.5 37.5t37.5 90.5v170.667q0 53-37.5 90.5t-90.5 37.5h-170.667q-53 0-90.5-37.5t-37.5-90.5v-170.667q0-53 37.5-90.5t90.5-37.5zM341.333 128h-170.667q-17.667 0-30.167 12.5t-12.5 30.167v170.667q0 17.667 12.5 30.167t30.167 12.5h170.667q17.667 0 30.167-12.5t12.5-30.167v-170.667q0-17.667-12.5-30.167t-30.167-12.5zM682.667 554.667h170.667q53 0 90.5 37.5t37.5 90.5v170.667q0 53-37.5 90.5t-90.5 37.5h-170.667q-53 0-90.5-37.5t-37.5-90.5v-170.667q0-53 37.5-90.5t90.5-37.5zM853.333 640h-170.667q-17.667 0-30.167 12.5t-12.5 30.167v170.667q0 17.667 12.5 30.167t30.167 12.5h170.667q17.667 0 30.167-12.5t12.5-30.167v-170.667q0-17.667-12.5-30.167t-30.167-12.5zM853.333 128h-170.667q-17.667 0-30.167 12.5t-12.5 30.167v170.667q0 17.667 12.5 30.167t30.167 12.5h170.667q17.667 0 30.167-12.5t12.5-30.167v-170.667q0-17.667-12.5-30.167t-30.167-12.5z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "grid" - ], - "defaultCode": 57602, - "grid": 24 - }, - "attrs": [], - "properties": { - "id": 102, - "order": 104, - "prevSize": 24, - "name": "grid2", - "code": 57602 - }, - "setIdx": 2, - "setId": 2, - "iconIdx": 102 - }, - { - "icon": { - "paths": [ - "M170.667 42.667h682.667q53 0 90.5 37.5t37.5 90.5v682.667q0 53-37.5 90.5t-90.5 37.5h-682.667q-53 0-90.5-37.5t-37.5-90.5v-682.667q0-53 37.5-90.5t90.5-37.5zM469.333 896v-341.333h-341.333v298.667q0 17.667 12.5 30.167t30.167 12.5h298.667zM469.333 469.333v-341.333h-298.667q-17.667 0-30.167 12.5t-12.5 30.167v298.667h341.333zM896 853.333v-298.667h-341.333v341.333h298.667q17.667 0 30.167-12.5t12.5-30.167zM853.333 128h-298.667v341.333h341.333v-298.667q0-17.667-12.5-30.167t-30.167-12.5z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "grid-2" - ], - "defaultCode": 57603, - "grid": 24 - }, - "attrs": [], - "properties": { - "id": 103, - "order": 105, - "prevSize": 24, - "name": "grid-2", - "code": 57603 - }, - "setIdx": 2, - "setId": 2, - "iconIdx": 103 - }, - { - "icon": { - "paths": [ - "M128 128h768q53 0 90.5 37.5t37.5 90.5v512q0 53-37.5 90.5t-90.5 37.5h-768q-53 0-90.5-37.5t-37.5-90.5v-512q0-53 37.5-90.5t90.5-37.5zM298.667 810.667v-597.333h-170.667q-17.667 0-30.167 12.5t-12.5 30.167v512q0 17.667 12.5 30.167t30.167 12.5h170.667zM640 810.667v-597.333h-256v597.333h256zM896 213.333h-170.667v597.333h170.667q17.667 0 30.167-12.5t12.5-30.167v-512q0-17.667-12.5-30.167t-30.167-12.5z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "columns" - ], - "defaultCode": 57604, - "grid": 24 - }, - "attrs": [], - "properties": { - "id": 104, - "order": 106, - "prevSize": 24, - "name": "columns", - "code": 57604 - }, - "setIdx": 2, - "setId": 2, - "iconIdx": 104 - }, - { - "icon": { - "paths": [ - "M693.333 650.333q17.333 0 30 12.667l120.667 120.667q12.667 12.667 12.667 30.333 0 17.333-12.667 30t-30 12.667q-17.667 0-30.333-12.667l-120.667-120.667q-12.333-12.333-12.333-30.333 0-17.667 12.5-30.167t30.167-12.5zM331 650.333q17.667 0 30.167 12.5t12.5 30.167-12.667 30.333l-120.667 120.667q-12.667 12.667-30 12.667-17.667 0-30.167-12.5t-12.5-30.167q0-18 12.333-30.333l120.667-120.667q12.667-12.667 30.333-12.667zM85.333 469.333h170.667q17.667 0 30.167 12.5t12.5 30.167-12.5 30.167-30.167 12.5h-170.667q-17.667 0-30.167-12.5t-12.5-30.167 12.5-30.167 30.167-12.5zM512 725.333q17.667 0 30.167 12.5t12.5 30.167v170.667q0 17.667-12.5 30.167t-30.167 12.5-30.167-12.5-12.5-30.167v-170.667q0-17.667 12.5-30.167t30.167-12.5zM210.333 167.333q17.333 0 30 12.667l120.667 120.667q12.667 12.667 12.667 30 0 17.667-12.5 30.167t-30.167 12.5q-18 0-30.333-12.333l-120.667-120.667q-12.333-12.333-12.333-30.333 0-17.667 12.5-30.167t30.167-12.5zM768 469.333h170.667q17.667 0 30.167 12.5t12.5 30.167-12.5 30.167-30.167 12.5h-170.667q-17.667 0-30.167-12.5t-12.5-30.167 12.5-30.167 30.167-12.5zM512 42.667q17.667 0 30.167 12.5t12.5 30.167v170.667q0 17.667-12.5 30.167t-30.167 12.5-30.167-12.5-12.5-30.167v-170.667q0-17.667 12.5-30.167t30.167-12.5zM814 167.333q17.333 0 30 12.667t12.667 30q0 17.667-12.667 30.333l-120.667 120.667q-12.333 12.333-30 12.333-18.333 0-30.5-12.167t-12.167-30.5q0-17.667 12.333-30l120.667-120.667q12.667-12.667 30.333-12.667z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "loader" - ], - "defaultCode": 57605, - "grid": 24 - }, - "attrs": [], - "properties": { - "id": 105, - "order": 107, - "prevSize": 24, - "name": "loader", - "code": 57605 - }, - "setIdx": 2, - "setId": 2, - "iconIdx": 105 - }, - { - "icon": { - "paths": [ - "M512 0q43.333 0 82.833 17t68 45.5 45.5 68 17 82.833v42.667h170.667v640q0 53-37.5 90.5t-90.5 37.5h-512q-53 0-90.5-37.5t-37.5-90.5v-640h170.667v-42.667q0-43.333 17-82.833t45.5-68 68-45.5 82.833-17zM810.667 896v-554.667h-597.333v554.667q0 17.667 12.5 30.167t30.167 12.5h512q17.667 0 30.167-12.5t12.5-30.167zM512 85.333q-53 0-90.5 37.5t-37.5 90.5v42.667h256v-42.667q0-53-37.5-90.5t-90.5-37.5z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "bag" - ], - "defaultCode": 57606, - "grid": 24 - }, - "attrs": [], - "properties": { - "id": 106, - "order": 108, - "prevSize": 24, - "name": "bag", - "code": 57606 - }, - "setIdx": 2, - "setId": 2, - "iconIdx": 106 - }, - { - "icon": { - "paths": [ - "M512 42.667q95.667 0 182.5 37.167t149.667 100 100 149.667 37.167 182.5-37.167 182.5-100 149.667-149.667 100-182.5 37.167-182.5-37.167-149.667-100-100-149.667-37.167-182.5 37.167-182.5 100-149.667 149.667-100 182.5-37.167zM751.667 812l-539.667-539.667q-40 50.333-62 111.667t-22 128q0 78 30.5 149.167t81.833 122.5 122.5 81.833 149.167 30.5q67 0 128.333-21.833t111.333-62.167zM512 128q-67 0-128.333 21.833t-111.333 62.167l539.667 539.667q40.333-50 62.167-111.333t21.833-128.333q0-78-30.5-149.167t-81.833-122.5-122.5-81.833-149.167-30.5z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "ban" - ], - "defaultCode": 57607, - "grid": 24 - }, - "attrs": [], - "properties": { - "id": 107, - "order": 109, - "prevSize": 24, - "name": "ban", - "code": 57607 - }, - "setIdx": 2, - "setId": 2, - "iconIdx": 107 - }, - { - "icon": { - "paths": [ - "M298.667 42.667q35.333 0 76 8.833t78.333 21.333l75.333 25t78.333 21.333 76 8.833q36 0 71-4.333t59.667-10.667 44.167-12.667 29.167-10.667l9.333-4.333v597.333q-3.333 1.667-10 4.5t-28.167 10.333-44.833 13-58.833 10.167-71.5 4.667q-35.333 0-76-8.833t-78.333-21.333l-75.333-25t-78.333-21.333-76-8.833q-63.667 0-128 14.333v284.333q0 17.667-12.5 30.167t-30.167 12.5-30.167-12.5-12.5-30.167v-853.333q3.333-1.667 10-4.5t28.167-10.333 44.833-13 58.833-10.167 71.5-4.667zM298.667 128q-65.333 0-128 17v422.333q64-12.667 128-12.667 47.333 0 94.667 10.833t107.667 30.833q7.667 2.667 28.833 9.833t31 10.333 28.833 8.667 31.833 8 29.5 4.667 31.667 2.167q65.333 0 128-17v-422.333q-64 12.667-128 12.667-47.333 0-94.667-10.833t-107.667-30.833q-7.667-2.667-28.833-9.833t-31-10.333-28.833-8.667-31.833-8-29.5-4.667-31.667-2.167z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "flag" - ], - "defaultCode": 57608, - "grid": 24 - }, - "attrs": [], - "properties": { - "id": 108, - "order": 110, - "prevSize": 24, - "name": "flag2", - "code": 57608 - }, - "setIdx": 2, - "setId": 2, - "iconIdx": 108 - }, - { - "icon": { - "paths": [ - "M426.667 42.667h170.667q53 0 90.5 37.5t37.5 90.5v42.667h170.667q17.667 0 30.167 12.5t12.5 30.167-12.5 30.167-30.167 12.5h-42.667v512q0 53-37.5 90.5t-90.5 37.5h-426.667q-53 0-90.5-37.5t-37.5-90.5v-512h-42.667q-17.667 0-30.167-12.5t-12.5-30.167 12.5-30.167 30.167-12.5h170.667v-42.667q0-53 37.5-90.5t90.5-37.5zM768 810.667v-512h-512v512q0 17.667 12.5 30.167t30.167 12.5h426.667q17.667 0 30.167-12.5t12.5-30.167zM597.333 128h-170.667q-17.667 0-30.167 12.5t-12.5 30.167v42.667h256v-42.667q0-17.667-12.5-30.167t-30.167-12.5z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "trash" - ], - "defaultCode": 57609, - "grid": 24 - }, - "attrs": [], - "properties": { - "id": 109, - "order": 111, - "prevSize": 24, - "name": "trash2", - "code": 57609 - }, - "setIdx": 2, - "setId": 2, - "iconIdx": 109 - }, - { - "icon": { - "paths": [ - "M725.333 42.667h128q53 0 90.5 37.5t37.5 90.5v128q0 17.667-12.5 30.167t-30.167 12.5-30.167-12.5-12.5-30.167v-128q0-17.667-12.5-30.167t-30.167-12.5h-128q-17.667 0-30.167-12.5t-12.5-30.167 12.5-30.167 30.167-12.5zM85.333 682.667q17.667 0 30.167 12.5t12.5 30.167v128q0 17.667 12.5 30.167t30.167 12.5h128q17.667 0 30.167 12.5t12.5 30.167-12.5 30.167-30.167 12.5h-128q-53 0-90.5-37.5t-37.5-90.5v-128q0-17.667 12.5-30.167t30.167-12.5zM170.667 42.667h128q17.667 0 30.167 12.5t12.5 30.167-12.5 30.167-30.167 12.5h-128q-17.667 0-30.167 12.5t-12.5 30.167v128q0 17.667-12.5 30.167t-30.167 12.5-30.167-12.5-12.5-30.167v-128q0-53 37.5-90.5t90.5-37.5zM938.667 682.667q17.667 0 30.167 12.5t12.5 30.167v128q0 53-37.5 90.5t-90.5 37.5h-128q-17.667 0-30.167-12.5t-12.5-30.167 12.5-30.167 30.167-12.5h128q17.667 0 30.167-12.5t12.5-30.167v-128q0-17.667 12.5-30.167t30.167-12.5z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "expand" - ], - "defaultCode": 57616, - "grid": 24 - }, - "attrs": [], - "properties": { - "id": 110, - "order": 112, - "prevSize": 24, - "name": "expand", - "code": 57616 - }, - "setIdx": 2, - "setId": 2, - "iconIdx": 110 - }, - { - "icon": { - "paths": [ - "M725.333 42.667q17.667 0 30.167 12.5t12.5 30.167v128q0 17.667 12.5 30.167t30.167 12.5h128q17.667 0 30.167 12.5t12.5 30.167-12.5 30.167-30.167 12.5h-128q-53 0-90.5-37.5t-37.5-90.5v-128q0-17.667 12.5-30.167t30.167-12.5zM85.333 682.667h128q53 0 90.5 37.5t37.5 90.5v128q0 17.667-12.5 30.167t-30.167 12.5-30.167-12.5-12.5-30.167v-128q0-17.667-12.5-30.167t-30.167-12.5h-128q-17.667 0-30.167-12.5t-12.5-30.167 12.5-30.167 30.167-12.5zM298.667 42.667q17.667 0 30.167 12.5t12.5 30.167v128q0 53-37.5 90.5t-90.5 37.5h-128q-17.667 0-30.167-12.5t-12.5-30.167 12.5-30.167 30.167-12.5h128q17.667 0 30.167-12.5t12.5-30.167v-128q0-17.667 12.5-30.167t30.167-12.5zM810.667 682.667h128q17.667 0 30.167 12.5t12.5 30.167-12.5 30.167-30.167 12.5h-128q-17.667 0-30.167 12.5t-12.5 30.167v128q0 17.667-12.5 30.167t-30.167 12.5-30.167-12.5-12.5-30.167v-128q0-53 37.5-90.5t90.5-37.5z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "contract" - ], - "defaultCode": 57617, - "grid": 24 - }, - "attrs": [], - "properties": { - "id": 111, - "order": 113, - "prevSize": 24, - "name": "contract", - "code": 57617 - }, - "setIdx": 2, - "setId": 2, - "iconIdx": 111 - }, - { - "icon": { - "paths": [ - "M597.333 554.333q17.667 0 30.333 12.667l268.333 268.333v-195.667q0-17.667 12.5-30.167t30.167-12.5 30.167 12.5 12.5 30.167v298.667q0 17.667-12.667 30.333t-30.333 12.667h-298.667q-17.667 0-30.167-12.5t-12.5-30.167 12.5-30.167 30.167-12.5h195.667l-268.333-268.333q-12.333-13-12.333-30.333 0-17.667 12.5-30.333t30.167-12.667zM85.333 42.667h298.667q17.667 0 30.167 12.5t12.5 30.167-12.5 30.167-30.167 12.5h-195.667l268.333 268q12.667 12.667 12.667 30.333t-12.667 30.167-30.333 12.5q-17 0-30.333-12.333l-268-268.333v195.667q0 17.667-12.5 30.167t-30.167 12.5-30.167-12.5-12.5-30.167v-298.667q0-17.667 12.5-30.167t30.167-12.5z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "maximize" - ], - "defaultCode": 57618, - "grid": 24 - }, - "attrs": [], - "properties": { - "id": 112, - "order": 114, - "prevSize": 24, - "name": "maximize", - "code": 57618 - }, - "setIdx": 2, - "setId": 2, - "iconIdx": 112 - }, - { - "icon": { - "paths": [ - "M85.333 42.667q18 0 30.333 12.333l268.333 268.333v-195.667q0-17.667 12.5-30.167t30.167-12.5 30.167 12.5 12.5 30.167v298.667q0 17.667-12.667 30.333t-30.333 12.667h-298.667q-17.667 0-30.167-12.5t-12.5-30.167 12.5-30.167 30.167-12.5h195.667l-268.333-268.333q-12.333-12.333-12.333-30.333 0-18.333 12.167-30.5t30.5-12.167zM597.667 554.667h298.667q17.667 0 30.167 12.5t12.5 30.167-12.5 30.167-30.167 12.5h-195.667l268 268.333q12.667 12.667 12.667 30.333t-12.5 30.167-30.167 12.5q-18 0-30.333-12.333l-268.333-268.333v195.667q0 17.667-12.5 30.167t-30.167 12.5-30.167-12.5-12.5-30.167v-298.667q0-17.667 12.667-30.333t30.333-12.667z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "minimize" - ], - "defaultCode": 57619, - "grid": 24 - }, - "attrs": [], - "properties": { - "id": 113, - "order": 115, - "prevSize": 24, - "name": "minimize", - "code": 57619 - }, - "setIdx": 2, - "setId": 2, - "iconIdx": 113 - }, - { - "icon": { - "paths": [ - "M512 85.333q17.667 0 30.167 12.5t12.5 30.167v341.333h341.333q17.667 0 30.167 12.5t12.5 30.167-12.5 30.167-30.167 12.5h-341.333v341.333q0 17.667-12.5 30.167t-30.167 12.5-30.167-12.5-12.5-30.167v-341.333h-341.333q-17.667 0-30.167-12.5t-12.5-30.167 12.5-30.167 30.167-12.5h341.333v-341.333q0-17.667 12.5-30.167t30.167-12.5z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "plus" - ], - "defaultCode": 57620, - "grid": 24 - }, - "attrs": [], - "properties": { - "id": 114, - "order": 116, - "prevSize": 24, - "name": "plus2", - "code": 57620 - }, - "setIdx": 2, - "setId": 2, - "iconIdx": 114 - }, - { - "icon": { - "paths": [ - "M128 469.333h768q17.667 0 30.167 12.5t12.5 30.167-12.5 30.167-30.167 12.5h-768q-17.667 0-30.167-12.5t-12.5-30.167 12.5-30.167 30.167-12.5z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "minus" - ], - "defaultCode": 57621, - "grid": 24 - }, - "attrs": [], - "properties": { - "id": 115, - "order": 117, - "prevSize": 24, - "name": "minus2", - "code": 57621 - }, - "setIdx": 2, - "setId": 2, - "iconIdx": 115 - }, - { - "icon": { - "paths": [ - "M896 213.333q18.333 0 30.5 12.167t12.167 30.5q0 18-12.333 30.333l-512 512q-12.333 12.333-30.333 12.333t-30.333-12.333l-256-256q-12.333-12.333-12.333-30.333 0-18.333 12.167-30.5t30.5-12.167q18 0 30.333 12.333l225.667 226 481.667-482q12.333-12.333 30.333-12.333z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "check" - ], - "defaultCode": 57622, - "grid": 24 - }, - "attrs": [], - "properties": { - "id": 116, - "order": 118, - "prevSize": 24, - "name": "check2", - "code": 57622 - }, - "setIdx": 2, - "setId": 2, - "iconIdx": 116 - }, - { - "icon": { - "paths": [ - "M810.667 170.667q18.333 0 30.5 12.167t12.167 30.5q0 18-12.333 30.333l-268.667 268.333 268.667 268.333q12.333 12.333 12.333 30.333 0 18.333-12.167 30.5t-30.5 12.167q-18 0-30.333-12.333l-268.333-268.667-268.333 268.667q-12.333 12.333-30.333 12.333-18.333 0-30.5-12.167t-12.167-30.5q0-18 12.333-30.333l268.667-268.333-268.667-268.333q-12.333-12.333-12.333-30.333 0-18.333 12.167-30.5t30.5-12.167q18 0 30.333 12.333l268.333 268.667 268.333-268.667q12.333-12.333 30.333-12.333z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "cross" - ], - "defaultCode": 57623, - "grid": 24 - }, - "attrs": [], - "properties": { - "id": 117, - "order": 119, - "prevSize": 24, - "name": "cross2", - "code": 57623 - }, - "setIdx": 2, - "setId": 2, - "iconIdx": 117 - }, - { - "icon": { - "paths": [ - "M512 0q18 0 30.333 12.333l150.667 151q12.667 12.667 12.667 30.333t-12.5 30.167-30.167 12.5-30.333-12.667l-78-78v323.667h323.667l-78-78q-12.667-12.667-12.667-30.333t12.5-30.167 30.167-12.5 30.333 12.667l151 150.667q12.333 12.333 12.333 30.333t-12.333 30l-151 151q-12.667 12.667-30.333 12.667t-30.167-12.5-12.5-30.167 12.667-30.333l78-78h-323.667v323.667l78-78q12.667-12.667 30.333-12.667t30.167 12.5 12.5 30.167-12.667 30.333l-150.667 151q-12.333 12.333-30.333 12.333-17.667 0-30-12.333l-151-151q-12.667-12.667-12.667-30.333t12.5-30.167 30.167-12.5 30.333 12.667l78 78v-323.667h-323.667l78 78q12.667 12.667 12.667 30.333t-12.5 30.167-30.167 12.5-30.333-12.667l-151-150.667q-12.333-12.333-12.333-30.333t12.333-30.333l151-150.667q12.667-12.667 30.333-12.667t30.167 12.5 12.5 30.167-12.667 30.333l-78 78h323.667v-323.667l-78 78q-12.667 12.667-30.333 12.667t-30.167-12.5-12.5-30.167 12.667-30.333l150.667-151q12.333-12.333 30.333-12.333z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "move" - ], - "defaultCode": 57624, - "grid": 24 - }, - "attrs": [], - "properties": { - "id": 118, - "order": 120, - "prevSize": 24, - "name": "move", - "code": 57624 - }, - "setIdx": 2, - "setId": 2, - "iconIdx": 118 - }, - { - "icon": { - "paths": [ - "M341.333 128h554.667q53 0 90.5 37.5t37.5 90.5v512q0 53-37.5 90.5t-90.5 37.5h-554.667l-341.333-384zM896 213.333h-516.333l-265.333 298.667 265.333 298.667h516.333q17.667 0 30.167-12.5t12.5-30.167v-512q0-17.667-12.5-30.167t-30.167-12.5zM810.667 384q0 18-12.333 30.333l-98 97.667 98 97.667q12.333 12.333 12.333 30.333 0 18.333-12.167 30.5t-30.5 12.167q-18 0-30.333-12.333l-97.667-98-97.667 98q-12.333 12.333-30.333 12.333-17.667 0-30.167-12.5t-12.5-30.167q0-17.333 12.333-30.333l98-97.667-98-97.667q-12.333-13-12.333-30.333 0-17.667 12.5-30.167t30.167-12.5q18 0 30.333 12.333l97.667 98 97.667-98q12.333-12.333 30.333-12.333 18.333 0 30.5 12.167t12.167 30.5z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "delete" - ], - "defaultCode": 57625, - "grid": 24 - }, - "attrs": [], - "properties": { - "id": 119, - "order": 121, - "prevSize": 24, - "name": "delete", - "code": 57625 - }, - "setIdx": 2, - "setId": 2, - "iconIdx": 119 - }, - { - "icon": { - "paths": [ - "M128 213.333h768q17.667 0 30.167 12.5t12.5 30.167-12.5 30.167-30.167 12.5h-768q-17.667 0-30.167-12.5t-12.5-30.167 12.5-30.167 30.167-12.5zM128 725.333h768q17.667 0 30.167 12.5t12.5 30.167-12.5 30.167-30.167 12.5h-768q-17.667 0-30.167-12.5t-12.5-30.167 12.5-30.167 30.167-12.5zM128 469.333h768q17.667 0 30.167 12.5t12.5 30.167-12.5 30.167-30.167 12.5h-768q-17.667 0-30.167-12.5t-12.5-30.167 12.5-30.167 30.167-12.5z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "menu" - ], - "defaultCode": 57632, - "grid": 24 - }, - "attrs": [], - "properties": { - "id": 120, - "order": 122, - "prevSize": 24, - "name": "menu2", - "code": 57632 - }, - "setIdx": 2, - "setId": 2, - "iconIdx": 120 - }, - { - "icon": { - "paths": [ - "M256 128h512l256 256v384q0 53-37.5 90.5t-90.5 37.5h-768q-53 0-90.5-37.5t-37.5-90.5v-384zM938.667 768v-298.667h-187.333q-28.333 74-94.5 122.333t-144.833 48.333q-52.333 0-101.667-22.333t-86-61.167-55-87.167h-184v298.667q0 17.333 12.333 30t30.333 12.667h768q17.667 0 30.167-12.5t12.5-30.167zM903.333 384l-169-170.667h-443l-170.667 170.667h220.667q0 42.333 22.667 81.667t62.5 64.167 85.5 24.833 85.5-24.833 62.5-64.167 22.667-81.667h220.667z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "archive" - ], - "defaultCode": 57633, - "grid": 24 - }, - "attrs": [], - "properties": { - "id": 121, - "order": 123, - "prevSize": 24, - "name": "archive2", - "code": 57633 - }, - "setIdx": 2, - "setId": 2, - "iconIdx": 121 - }, - { - "icon": { - "paths": [ - "M512 42.667q17.667 0 30.167 12.5t12.5 30.167v494.333l140.333-140.667q12.333-12.333 30.333-12.333 18.333 0 30.5 12.167t12.167 30.5q0 18-12.333 30.333l-213.333 213.333q-12.333 12.333-30.333 12.333t-30.333-12.333l-213.333-213.333q-12.333-13-12.333-30.333 0-17.667 12.5-30.167t30.167-12.5q18 0 30.333 12.333l140.333 140.667v-494.333q0-17.667 12.5-30.167t30.167-12.5zM938.667 640q17.667 0 30.167 12.5t12.5 30.167v170.667q0 53.333-37 90.333-37.667 37.667-90 37.667h-683.667q-52.333 0-90.667-37.333-37.333-38.333-37.333-90.667v-170.667q0-17.667 12.5-30.167t30.167-12.5 30.167 12.5 12.5 30.167v170.667q0 17.667 12.5 30.167t30.167 12.5h683.667q17.333 0 29.5-12.5t12.167-30.167v-170.667q0-17.667 12.5-30.167t30.167-12.5z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "inbox" - ], - "defaultCode": 57634, - "grid": 24 - }, - "attrs": [], - "properties": { - "id": 122, - "order": 124, - "prevSize": 24, - "name": "inbox2", - "code": 57634 - }, - "setIdx": 2, - "setId": 2, - "iconIdx": 122 - }, - { - "icon": { - "paths": [ - "M512 44.667q18 0 30.333 12.333l213.333 213.333q12.333 12.333 12.333 30.333 0 18.333-12.167 30.5t-30.5 12.167q-18 0-30.333-12.333l-140.333-140.667v494.333q0 17.667-12.5 30.167t-30.167 12.5-30.167-12.5-12.5-30.167v-494.333l-140.333 140.667q-13 12.333-30.333 12.333-17.667 0-30.167-12.5t-12.5-30.167q0-17.333 12.333-30.333l213.333-213.333q12.333-12.333 30.333-12.333zM938.667 642q17.667 0 30.167 12.5t12.5 30.167v170.667q0 53.333-37 90.333-37.667 37.667-90 37.667h-683.667q-52.333 0-90.667-37.333-37.333-38.333-37.333-90.667v-170.667q0-17.667 12.5-30.167t30.167-12.5 30.167 12.5 12.5 30.167v170.667q0 17.667 12.5 30.167t30.167 12.5h683.667q17.333 0 29.5-12.5t12.167-30.167v-170.667q0-17.667 12.5-30.167t30.167-12.5z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "outbox" - ], - "defaultCode": 57635, - "grid": 24 - }, - "attrs": [], - "properties": { - "id": 123, - "order": 125, - "prevSize": 24, - "name": "outbox", - "code": 57635 - }, - "setIdx": 2, - "setId": 2, - "iconIdx": 123 - }, - { - "icon": { - "paths": [ - "M213.333 0h426.667l298.667 298.667v597.333q0 53-37.5 90.5t-90.5 37.5h-597.333q-53 0-90.5-37.5t-37.5-90.5v-768q0-53 37.5-90.5t90.5-37.5zM554.667 384v-298.667h-341.333q-18 0-30.333 12.333t-12.333 30.333v768q0 18 12.333 30.333t30.333 12.333h597.333q18 0 30.333-12.333t12.333-30.333v-512h-298.667zM818 298.667l-178-178v178h178z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "file" - ], - "defaultCode": 57636, - "grid": 24 - }, - "attrs": [], - "properties": { - "id": 124, - "order": 126, - "prevSize": 24, - "name": "file", - "code": 57636 - }, - "setIdx": 2, - "setId": 2, - "iconIdx": 124 - }, - { - "icon": { - "paths": [ - "M213.333 0h426.667l298.667 298.667v597.333q0 53-37.5 90.5t-90.5 37.5h-597.333q-53 0-90.5-37.5t-37.5-90.5v-768q0-53 37.5-90.5t90.5-37.5zM512 469.333q17.667 0 30.167 12.5t12.5 30.167v85.333h85.333q17.667 0 30.167 12.5t12.5 30.167-12.5 30.167-30.167 12.5h-85.333v85.333q0 17.667-12.5 30.167t-30.167 12.5-30.167-12.5-12.5-30.167v-85.333h-85.333q-17.667 0-30.167-12.5t-12.5-30.167 12.5-30.167 30.167-12.5h85.333v-85.333q0-17.667 12.5-30.167t30.167-12.5zM554.667 384v-298.667h-341.333q-18 0-30.333 12.333t-12.333 30.333v768q0 18 12.333 30.333t30.333 12.333h597.333q18 0 30.333-12.333t12.333-30.333v-512h-298.667zM818 298.667l-178-178v178h178z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "file-add" - ], - "defaultCode": 57637, - "grid": 24 - }, - "attrs": [], - "properties": { - "id": 125, - "order": 127, - "prevSize": 24, - "name": "file-add", - "code": 57637 - }, - "setIdx": 2, - "setId": 2, - "iconIdx": 125 - }, - { - "icon": { - "paths": [ - "M213.333 0h426.667l298.667 298.667v597.333q0 53-37.5 90.5t-90.5 37.5h-597.333q-53 0-90.5-37.5t-37.5-90.5v-768q0-53 37.5-90.5t90.5-37.5zM384 597.333h256q17.667 0 30.167 12.5t12.5 30.167-12.5 30.167-30.167 12.5h-256q-17.667 0-30.167-12.5t-12.5-30.167 12.5-30.167 30.167-12.5zM554.667 384v-298.667h-341.333q-18 0-30.333 12.333t-12.333 30.333v768q0 18 12.333 30.333t30.333 12.333h597.333q18 0 30.333-12.333t12.333-30.333v-512h-298.667zM818 298.667l-178-178v178h178z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "file-subtract" - ], - "defaultCode": 57638, - "grid": 24 - }, - "attrs": [], - "properties": { - "id": 126, - "order": 128, - "prevSize": 24, - "name": "file-subtract", - "code": 57638 - }, - "setIdx": 2, - "setId": 2, - "iconIdx": 126 - }, - { - "icon": { - "paths": [ - "M512 42.667q92 0 178.333 35t153.667 102.333 102.333 153.667 35 178.333-35 178.333-102.333 153.667-153.667 102.333-178.333 35-178.333-35-153.667-102.333-102.333-153.667-35-178.333 35-178.333 102.333-153.667 153.667-102.333 178.333-35zM334 394.333l-122-122q-41.333 51.667-62.667 113.333t-21.333 126.333 21.333 126.333 62.667 113.333l122-122q-35.333-53.333-35.333-117.667t35.333-117.667zM751.667 812l-122-122q-53.333 35.333-117.667 35.333t-117.667-35.333l-122 122q51.667 41.333 113.333 62.667t126.333 21.333 126.333-21.333 113.333-62.667zM512 384q-53 0-90.5 37.5t-37.5 90.5 37.5 90.5 90.5 37.5 90.5-37.5 37.5-90.5-37.5-90.5-90.5-37.5zM512 128q-64.667 0-126.333 21.333t-113.333 62.667l122 122q53.333-35.333 117.667-35.333t117.667 35.333l122-122q-51.667-41.333-113.333-62.667t-126.333-21.333zM812 272.333l-122 122q35.333 53.333 35.333 117.667t-35.333 117.667l122 122q41.333-51.667 62.667-113.333t21.333-126.333-21.333-126.333-62.667-113.333z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "help" - ], - "defaultCode": 57639, - "grid": 24 - }, - "attrs": [], - "properties": { - "id": 127, - "order": 129, - "prevSize": 24, - "name": "help2", - "code": 57639 - }, - "setIdx": 2, - "setId": 2, - "iconIdx": 127 - }, - { - "icon": { - "paths": [ - "M170.667 42.667h298.667q17.667 0 30.167 12.5t12.5 30.167-12.5 30.167-30.167 12.5h-298.667q-17.667 0-30.167 12.5t-12.5 30.167v682.667q0 17.667 12.5 30.167t30.167 12.5h682.667q17.667 0 30.167-12.5t12.5-30.167v-298.667q0-17.667 12.5-30.167t30.167-12.5 30.167 12.5 12.5 30.167v298.667q0 53-37.5 90.5t-90.5 37.5h-682.667q-53 0-90.5-37.5t-37.5-90.5v-682.667q0-53 37.5-90.5t90.5-37.5zM682.667 42.667h256q17.667 0 30.167 12.5t12.5 30.167v256q0 17.667-12.5 30.167t-30.167 12.5-30.167-12.5-12.5-30.167v-153l-354 354q-12.333 12.333-30 12.333-18.333 0-30.5-12.167t-12.167-30.5q0-17.667 12.333-30l354-354h-153q-17.667 0-30.167-12.5t-12.5-30.167 12.5-30.167 30.167-12.5z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "open" - ], - "defaultCode": 57640, - "grid": 24 - }, - "attrs": [], - "properties": { - "id": 128, - "order": 130, - "prevSize": 24, - "name": "open", - "code": 57640 - }, - "setIdx": 2, - "setId": 2, - "iconIdx": 128 - }, - { - "icon": { - "paths": [ - "M853.333 384q53 0 90.5 37.5t37.5 90.5-37.5 90.5-90.5 37.5-90.5-37.5-37.5-90.5 37.5-90.5 90.5-37.5zM170.667 384q53 0 90.5 37.5t37.5 90.5-37.5 90.5-90.5 37.5-90.5-37.5-37.5-90.5 37.5-90.5 90.5-37.5zM170.667 469.333q-17.667 0-30.167 12.5t-12.5 30.167 12.5 30.167 30.167 12.5 30.167-12.5 12.5-30.167-12.5-30.167-30.167-12.5zM512 384q53 0 90.5 37.5t37.5 90.5-37.5 90.5-90.5 37.5-90.5-37.5-37.5-90.5 37.5-90.5 90.5-37.5zM512 469.333q-17.667 0-30.167 12.5t-12.5 30.167 12.5 30.167 30.167 12.5 30.167-12.5 12.5-30.167-12.5-30.167-30.167-12.5zM853.333 469.333q-17.667 0-30.167 12.5t-12.5 30.167 12.5 30.167 30.167 12.5 30.167-12.5 12.5-30.167-12.5-30.167-30.167-12.5z" - ], - "attrs": [], - "isMulticolor": false, - "tags": [ - "ellipsis" - ], - "defaultCode": 57641, - "grid": 24 - }, - "attrs": [], - "properties": { - "id": 129, - "order": 131, - "prevSize": 24, - "name": "ellipsis", - "code": 57641 - }, - "setIdx": 2, - "setId": 2, - "iconIdx": 129 - } - ], - "height": 1024, - "metadata": { - "name": "icomoon" - }, - "preferences": { - "showGlyphs": true, - "showQuickUse": true, - "showQuickUse2": true, - "showSVGs": true, - "fontPref": { - "prefix": "icon-", - "metadata": { - "fontFamily": "icomoon" - }, - "metrics": { - "emSize": 1024, - "baseline": 6.25, - "whitespace": 50 - }, - "embed": false - }, - "imagePref": { - "prefix": "icon-", - "png": true, - "useClassSelector": true, - "color": 4473924, - "bgColor": 16777215, - "classSelector": ".icon", - "columns": 16, - "margin": 16, - "height": 70, - "overrideSize": true - }, - "historySize": 100, - "showCodes": false - } -} \ No newline at end of file diff --git a/html/fonts/icomoon/icomoon/style.css b/html/fonts/icomoon/icomoon/style.css deleted file mode 100755 index 67a5bdd2..00000000 --- a/html/fonts/icomoon/icomoon/style.css +++ /dev/null @@ -1,2438 +0,0 @@ -@font-face { - font-family: 'icomoon'; - src:url('fonts/icomoon.eot?qtatmt'); - src:url('fonts/icomoon.eot?qtatmt#iefix') format('embedded-opentype'), - url('fonts/icomoon.ttf?qtatmt') format('truetype'), - url('fonts/icomoon.woff?qtatmt') format('woff'), - url('fonts/icomoon.svg?qtatmt#icomoon') format('svg'); - font-weight: normal; - font-style: normal; -} - -[class^="icon-"], [class*=" icon-"] { - font-family: 'icomoon'; - speak: none; - font-style: normal; - font-weight: normal; - font-variant: normal; - text-transform: none; - line-height: 1; - - /* Better Font Rendering =========== */ - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; -} - -.icon-glass:before { - content: "\f000"; -} -.icon-music:before { - content: "\f001"; -} -.icon-search2:before { - content: "\f002"; -} -.icon-envelope-o:before { - content: "\f003"; -} -.icon-heart:before { - content: "\f004"; -} -.icon-star:before { - content: "\f005"; -} -.icon-star-o:before { - content: "\f006"; -} -.icon-user:before { - content: "\f007"; -} -.icon-film:before { - content: "\f008"; -} -.icon-th-large:before { - content: "\f009"; -} -.icon-th:before { - content: "\f00a"; -} -.icon-th-list:before { - content: "\f00b"; -} -.icon-check:before { - content: "\f00c"; -} -.icon-close:before { - content: "\f00d"; -} -.icon-remove:before { - content: "\f00d"; -} -.icon-times:before { - content: "\f00d"; -} -.icon-search-plus:before { - content: "\f00e"; -} -.icon-search-minus:before { - content: "\f010"; -} -.icon-power-off:before { - content: "\f011"; -} -.icon-signal:before { - content: "\f012"; -} -.icon-cog:before { - content: "\f013"; -} -.icon-gear:before { - content: "\f013"; -} -.icon-trash-o:before { - content: "\f014"; -} -.icon-home:before { - content: "\f015"; -} -.icon-file-o:before { - content: "\f016"; -} -.icon-clock-o:before { - content: "\f017"; -} -.icon-road:before { - content: "\f018"; -} -.icon-download:before { - content: "\f019"; -} -.icon-arrow-circle-o-down:before { - content: "\f01a"; -} -.icon-arrow-circle-o-up:before { - content: "\f01b"; -} -.icon-inbox:before { - content: "\f01c"; -} -.icon-play-circle-o:before { - content: "\f01d"; -} -.icon-repeat2:before { - content: "\f01e"; -} -.icon-rotate-right:before { - content: "\f01e"; -} -.icon-refresh:before { - content: "\f021"; -} -.icon-list-alt:before { - content: "\f022"; -} -.icon-lock:before { - content: "\f023"; -} -.icon-flag:before { - content: "\f024"; -} -.icon-headphones:before { - content: "\f025"; -} -.icon-volume-off:before { - content: "\f026"; -} -.icon-volume-down:before { - content: "\f027"; -} -.icon-volume-up:before { - content: "\f028"; -} -.icon-qrcode:before { - content: "\f029"; -} -.icon-barcode:before { - content: "\f02a"; -} -.icon-tag:before { - content: "\f02b"; -} -.icon-tags:before { - content: "\f02c"; -} -.icon-book:before { - content: "\f02d"; -} -.icon-bookmark:before { - content: "\f02e"; -} -.icon-print:before { - content: "\f02f"; -} -.icon-camera:before { - content: "\f030"; -} -.icon-font:before { - content: "\f031"; -} -.icon-bold:before { - content: "\f032"; -} -.icon-italic:before { - content: "\f033"; -} -.icon-text-height:before { - content: "\f034"; -} -.icon-text-width:before { - content: "\f035"; -} -.icon-align-left:before { - content: "\f036"; -} -.icon-align-center2:before { - content: "\f037"; -} -.icon-align-right:before { - content: "\f038"; -} -.icon-align-justify2:before { - content: "\f039"; -} -.icon-list:before { - content: "\f03a"; -} -.icon-dedent:before { - content: "\f03b"; -} -.icon-outdent:before { - content: "\f03b"; -} -.icon-indent:before { - content: "\f03c"; -} -.icon-video-camera:before { - content: "\f03d"; -} -.icon-image:before { - content: "\f03e"; -} -.icon-photo:before { - content: "\f03e"; -} -.icon-picture-o:before { - content: "\f03e"; -} -.icon-pencil:before { - content: "\f040"; -} -.icon-map-marker:before { - content: "\f041"; -} -.icon-adjust:before { - content: "\f042"; -} -.icon-tint:before { - content: "\f043"; -} -.icon-edit:before { - content: "\f044"; -} -.icon-pencil-square-o:before { - content: "\f044"; -} -.icon-share-square-o:before { - content: "\f045"; -} -.icon-check-square-o:before { - content: "\f046"; -} -.icon-arrows:before { - content: "\f047"; -} -.icon-step-backward:before { - content: "\f048"; -} -.icon-fast-backward:before { - content: "\f049"; -} -.icon-backward:before { - content: "\f04a"; -} -.icon-play2:before { - content: "\f04b"; -} -.icon-pause2:before { - content: "\f04c"; -} -.icon-stop2:before { - content: "\f04d"; -} -.icon-forward:before { - content: "\f04e"; -} -.icon-fast-forward2:before { - content: "\f050"; -} -.icon-step-forward:before { - content: "\f051"; -} -.icon-eject:before { - content: "\f052"; -} -.icon-chevron-left:before { - content: "\f053"; -} -.icon-chevron-right:before { - content: "\f054"; -} -.icon-plus-circle:before { - content: "\f055"; -} -.icon-minus-circle:before { - content: "\f056"; -} -.icon-times-circle:before { - content: "\f057"; -} -.icon-check-circle:before { - content: "\f058"; -} -.icon-question-circle:before { - content: "\f059"; -} -.icon-info-circle:before { - content: "\f05a"; -} -.icon-crosshairs:before { - content: "\f05b"; -} -.icon-times-circle-o:before { - content: "\f05c"; -} -.icon-check-circle-o:before { - content: "\f05d"; -} -.icon-ban2:before { - content: "\f05e"; -} -.icon-arrow-left:before { - content: "\f060"; -} -.icon-arrow-right:before { - content: "\f061"; -} -.icon-arrow-up:before { - content: "\f062"; -} -.icon-arrow-down:before { - content: "\f063"; -} -.icon-mail-forward:before { - content: "\f064"; -} -.icon-share:before { - content: "\f064"; -} -.icon-expand2:before { - content: "\f065"; -} -.icon-compress:before { - content: "\f066"; -} -.icon-plus:before { - content: "\f067"; -} -.icon-minus:before { - content: "\f068"; -} -.icon-asterisk:before { - content: "\f069"; -} -.icon-exclamation-circle:before { - content: "\f06a"; -} -.icon-gift:before { - content: "\f06b"; -} -.icon-leaf:before { - content: "\f06c"; -} -.icon-fire:before { - content: "\f06d"; -} -.icon-eye:before { - content: "\f06e"; -} -.icon-eye-slash:before { - content: "\f070"; -} -.icon-exclamation-triangle:before { - content: "\f071"; -} -.icon-warning:before { - content: "\f071"; -} -.icon-plane:before { - content: "\f072"; -} -.icon-calendar:before { - content: "\f073"; -} -.icon-random:before { - content: "\f074"; -} -.icon-comment:before { - content: "\f075"; -} -.icon-magnet:before { - content: "\f076"; -} -.icon-chevron-up:before { - content: "\f077"; -} -.icon-chevron-down:before { - content: "\f078"; -} -.icon-retweet:before { - content: "\f079"; -} -.icon-shopping-cart:before { - content: "\f07a"; -} -.icon-folder:before { - content: "\f07b"; -} -.icon-folder-open:before { - content: "\f07c"; -} -.icon-arrows-v:before { - content: "\f07d"; -} -.icon-arrows-h:before { - content: "\f07e"; -} -.icon-bar-chart:before { - content: "\f080"; -} -.icon-bar-chart-o:before { - content: "\f080"; -} -.icon-twitter-square:before { - content: "\f081"; -} -.icon-facebook-square:before { - content: "\f082"; -} -.icon-camera-retro:before { - content: "\f083"; -} -.icon-key:before { - content: "\f084"; -} -.icon-cogs:before { - content: "\f085"; -} -.icon-gears:before { - content: "\f085"; -} -.icon-comments:before { - content: "\f086"; -} -.icon-thumbs-o-up:before { - content: "\f087"; -} -.icon-thumbs-o-down:before { - content: "\f088"; -} -.icon-star-half:before { - content: "\f089"; -} -.icon-heart-o:before { - content: "\f08a"; -} -.icon-sign-out:before { - content: "\f08b"; -} -.icon-linkedin-square:before { - content: "\f08c"; -} -.icon-thumb-tack:before { - content: "\f08d"; -} -.icon-external-link:before { - content: "\f08e"; -} -.icon-sign-in:before { - content: "\f090"; -} -.icon-trophy:before { - content: "\f091"; -} -.icon-github-square:before { - content: "\f092"; -} -.icon-upload:before { - content: "\f093"; -} -.icon-lemon-o:before { - content: "\f094"; -} -.icon-phone:before { - content: "\f095"; -} -.icon-square-o:before { - content: "\f096"; -} -.icon-bookmark-o:before { - content: "\f097"; -} -.icon-phone-square:before { - content: "\f098"; -} -.icon-twitter:before { - content: "\f099"; -} -.icon-facebook:before { - content: "\f09a"; -} -.icon-facebook-f:before { - content: "\f09a"; -} -.icon-github:before { - content: "\f09b"; -} -.icon-unlock2:before { - content: "\f09c"; -} -.icon-credit-card:before { - content: "\f09d"; -} -.icon-feed:before { - content: "\f09e"; -} -.icon-rss:before { - content: "\f09e"; -} -.icon-hdd-o:before { - content: "\f0a0"; -} -.icon-bullhorn:before { - content: "\f0a1"; -} -.icon-bell-o:before { - content: "\f0a2"; -} -.icon-certificate:before { - content: "\f0a3"; -} -.icon-hand-o-right:before { - content: "\f0a4"; -} -.icon-hand-o-left:before { - content: "\f0a5"; -} -.icon-hand-o-up:before { - content: "\f0a6"; -} -.icon-hand-o-down:before { - content: "\f0a7"; -} -.icon-arrow-circle-left:before { - content: "\f0a8"; -} -.icon-arrow-circle-right:before { - content: "\f0a9"; -} -.icon-arrow-circle-up:before { - content: "\f0aa"; -} -.icon-arrow-circle-down:before { - content: "\f0ab"; -} -.icon-globe:before { - content: "\f0ac"; -} -.icon-wrench:before { - content: "\f0ad"; -} -.icon-tasks:before { - content: "\f0ae"; -} -.icon-filter:before { - content: "\f0b0"; -} -.icon-briefcase:before { - content: "\f0b1"; -} -.icon-arrows-alt:before { - content: "\f0b2"; -} -.icon-group:before { - content: "\f0c0"; -} -.icon-users:before { - content: "\f0c0"; -} -.icon-chain:before { - content: "\f0c1"; -} -.icon-link:before { - content: "\f0c1"; -} -.icon-cloud:before { - content: "\f0c2"; -} -.icon-flask:before { - content: "\f0c3"; -} -.icon-cut:before { - content: "\f0c4"; -} -.icon-scissors:before { - content: "\f0c4"; -} -.icon-copy:before { - content: "\f0c5"; -} -.icon-files-o:before { - content: "\f0c5"; -} -.icon-paperclip:before { - content: "\f0c6"; -} -.icon-floppy-o:before { - content: "\f0c7"; -} -.icon-save:before { - content: "\f0c7"; -} -.icon-square:before { - content: "\f0c8"; -} -.icon-bars:before { - content: "\f0c9"; -} -.icon-navicon:before { - content: "\f0c9"; -} -.icon-reorder:before { - content: "\f0c9"; -} -.icon-list-ul:before { - content: "\f0ca"; -} -.icon-list-ol:before { - content: "\f0cb"; -} -.icon-strikethrough:before { - content: "\f0cc"; -} -.icon-underline:before { - content: "\f0cd"; -} -.icon-table:before { - content: "\f0ce"; -} -.icon-magic:before { - content: "\f0d0"; -} -.icon-truck:before { - content: "\f0d1"; -} -.icon-pinterest:before { - content: "\f0d2"; -} -.icon-pinterest-square:before { - content: "\f0d3"; -} -.icon-google-plus-square:before { - content: "\f0d4"; -} -.icon-google-plus:before { - content: "\f0d5"; -} -.icon-money:before { - content: "\f0d6"; -} -.icon-caret-down:before { - content: "\f0d7"; -} -.icon-caret-up:before { - content: "\f0d8"; -} -.icon-caret-left:before { - content: "\f0d9"; -} -.icon-caret-right:before { - content: "\f0da"; -} -.icon-columns2:before { - content: "\f0db"; -} -.icon-sort:before { - content: "\f0dc"; -} -.icon-unsorted:before { - content: "\f0dc"; -} -.icon-sort-desc:before { - content: "\f0dd"; -} -.icon-sort-down:before { - content: "\f0dd"; -} -.icon-sort-asc:before { - content: "\f0de"; -} -.icon-sort-up:before { - content: "\f0de"; -} -.icon-envelope:before { - content: "\f0e0"; -} -.icon-linkedin:before { - content: "\f0e1"; -} -.icon-rotate-left:before { - content: "\f0e2"; -} -.icon-undo:before { - content: "\f0e2"; -} -.icon-gavel:before { - content: "\f0e3"; -} -.icon-legal:before { - content: "\f0e3"; -} -.icon-dashboard:before { - content: "\f0e4"; -} -.icon-tachometer:before { - content: "\f0e4"; -} -.icon-comment-o:before { - content: "\f0e5"; -} -.icon-comments-o:before { - content: "\f0e6"; -} -.icon-bolt:before { - content: "\f0e7"; -} -.icon-flash:before { - content: "\f0e7"; -} -.icon-sitemap:before { - content: "\f0e8"; -} -.icon-umbrella2:before { - content: "\f0e9"; -} -.icon-clipboard:before { - content: "\f0ea"; -} -.icon-paste:before { - content: "\f0ea"; -} -.icon-lightbulb-o:before { - content: "\f0eb"; -} -.icon-exchange:before { - content: "\f0ec"; -} -.icon-cloud-download2:before { - content: "\f0ed"; -} -.icon-cloud-upload2:before { - content: "\f0ee"; -} -.icon-user-md:before { - content: "\f0f0"; -} -.icon-stethoscope:before { - content: "\f0f1"; -} -.icon-suitcase:before { - content: "\f0f2"; -} -.icon-bell:before { - content: "\f0f3"; -} -.icon-coffee:before { - content: "\f0f4"; -} -.icon-cutlery:before { - content: "\f0f5"; -} -.icon-file-text-o:before { - content: "\f0f6"; -} -.icon-building-o:before { - content: "\f0f7"; -} -.icon-hospital-o:before { - content: "\f0f8"; -} -.icon-ambulance:before { - content: "\f0f9"; -} -.icon-medkit:before { - content: "\f0fa"; -} -.icon-fighter-jet:before { - content: "\f0fb"; -} -.icon-beer:before { - content: "\f0fc"; -} -.icon-h-square:before { - content: "\f0fd"; -} -.icon-plus-square:before { - content: "\f0fe"; -} -.icon-angle-double-left:before { - content: "\f100"; -} -.icon-angle-double-right:before { - content: "\f101"; -} -.icon-angle-double-up:before { - content: "\f102"; -} -.icon-angle-double-down:before { - content: "\f103"; -} -.icon-angle-left:before { - content: "\f104"; -} -.icon-angle-right:before { - content: "\f105"; -} -.icon-angle-up:before { - content: "\f106"; -} -.icon-angle-down:before { - content: "\f107"; -} -.icon-desktop:before { - content: "\f108"; -} -.icon-laptop:before { - content: "\f109"; -} -.icon-tablet:before { - content: "\f10a"; -} -.icon-mobile:before { - content: "\f10b"; -} -.icon-mobile-phone:before { - content: "\f10b"; -} -.icon-circle-o:before { - content: "\f10c"; -} -.icon-quote-left:before { - content: "\f10d"; -} -.icon-quote-right:before { - content: "\f10e"; -} -.icon-spinner:before { - content: "\f110"; -} -.icon-circle:before { - content: "\f111"; -} -.icon-mail-reply:before { - content: "\f112"; -} -.icon-reply:before { - content: "\f112"; -} -.icon-github-alt:before { - content: "\f113"; -} -.icon-folder-o:before { - content: "\f114"; -} -.icon-folder-open-o:before { - content: "\f115"; -} -.icon-smile-o:before { - content: "\f118"; -} -.icon-frown-o:before { - content: "\f119"; -} -.icon-meh-o:before { - content: "\f11a"; -} -.icon-gamepad:before { - content: "\f11b"; -} -.icon-keyboard-o:before { - content: "\f11c"; -} -.icon-flag-o:before { - content: "\f11d"; -} -.icon-flag-checkered:before { - content: "\f11e"; -} -.icon-terminal:before { - content: "\f120"; -} -.icon-code:before { - content: "\f121"; -} -.icon-mail-reply-all:before { - content: "\f122"; -} -.icon-reply-all:before { - content: "\f122"; -} -.icon-star-half-empty:before { - content: "\f123"; -} -.icon-star-half-full:before { - content: "\f123"; -} -.icon-star-half-o:before { - content: "\f123"; -} -.icon-location-arrow:before { - content: "\f124"; -} -.icon-crop:before { - content: "\f125"; -} -.icon-code-fork:before { - content: "\f126"; -} -.icon-chain-broken:before { - content: "\f127"; -} -.icon-unlink:before { - content: "\f127"; -} -.icon-question:before { - content: "\f128"; -} -.icon-info:before { - content: "\f129"; -} -.icon-exclamation:before { - content: "\f12a"; -} -.icon-superscript:before { - content: "\f12b"; -} -.icon-subscript:before { - content: "\f12c"; -} -.icon-eraser:before { - content: "\f12d"; -} -.icon-puzzle-piece:before { - content: "\f12e"; -} -.icon-microphone2:before { - content: "\f130"; -} -.icon-microphone-slash:before { - content: "\f131"; -} -.icon-shield:before { - content: "\f132"; -} -.icon-calendar-o:before { - content: "\f133"; -} -.icon-fire-extinguisher:before { - content: "\f134"; -} -.icon-rocket:before { - content: "\f135"; -} -.icon-maxcdn:before { - content: "\f136"; -} -.icon-chevron-circle-left:before { - content: "\f137"; -} -.icon-chevron-circle-right:before { - content: "\f138"; -} -.icon-chevron-circle-up:before { - content: "\f139"; -} -.icon-chevron-circle-down:before { - content: "\f13a"; -} -.icon-html5:before { - content: "\f13b"; -} -.icon-css3:before { - content: "\f13c"; -} -.icon-anchor2:before { - content: "\f13d"; -} -.icon-unlock-alt:before { - content: "\f13e"; -} -.icon-bullseye:before { - content: "\f140"; -} -.icon-ellipsis-h:before { - content: "\f141"; -} -.icon-ellipsis-v:before { - content: "\f142"; -} -.icon-rss-square:before { - content: "\f143"; -} -.icon-play-circle:before { - content: "\f144"; -} -.icon-ticket:before { - content: "\f145"; -} -.icon-minus-square:before { - content: "\f146"; -} -.icon-minus-square-o:before { - content: "\f147"; -} -.icon-level-up:before { - content: "\f148"; -} -.icon-level-down:before { - content: "\f149"; -} -.icon-check-square:before { - content: "\f14a"; -} -.icon-pencil-square:before { - content: "\f14b"; -} -.icon-external-link-square:before { - content: "\f14c"; -} -.icon-share-square:before { - content: "\f14d"; -} -.icon-compass:before { - content: "\f14e"; -} -.icon-caret-square-o-down:before { - content: "\f150"; -} -.icon-toggle-down:before { - content: "\f150"; -} -.icon-caret-square-o-up:before { - content: "\f151"; -} -.icon-toggle-up:before { - content: "\f151"; -} -.icon-caret-square-o-right:before { - content: "\f152"; -} -.icon-toggle-right:before { - content: "\f152"; -} -.icon-eur:before { - content: "\f153"; -} -.icon-euro:before { - content: "\f153"; -} -.icon-gbp:before { - content: "\f154"; -} -.icon-dollar:before { - content: "\f155"; -} -.icon-usd:before { - content: "\f155"; -} -.icon-inr:before { - content: "\f156"; -} -.icon-rupee:before { - content: "\f156"; -} -.icon-cny:before { - content: "\f157"; -} -.icon-jpy:before { - content: "\f157"; -} -.icon-rmb:before { - content: "\f157"; -} -.icon-yen:before { - content: "\f157"; -} -.icon-rouble:before { - content: "\f158"; -} -.icon-rub:before { - content: "\f158"; -} -.icon-ruble:before { - content: "\f158"; -} -.icon-krw:before { - content: "\f159"; -} -.icon-won:before { - content: "\f159"; -} -.icon-bitcoin:before { - content: "\f15a"; -} -.icon-btc:before { - content: "\f15a"; -} -.icon-file2:before { - content: "\f15b"; -} -.icon-file-text:before { - content: "\f15c"; -} -.icon-sort-alpha-asc:before { - content: "\f15d"; -} -.icon-sort-alpha-desc:before { - content: "\f15e"; -} -.icon-sort-amount-asc:before { - content: "\f160"; -} -.icon-sort-amount-desc:before { - content: "\f161"; -} -.icon-sort-numeric-asc:before { - content: "\f162"; -} -.icon-sort-numeric-desc:before { - content: "\f163"; -} -.icon-thumbs-up:before { - content: "\f164"; -} -.icon-thumbs-down:before { - content: "\f165"; -} -.icon-youtube-square:before { - content: "\f166"; -} -.icon-youtube:before { - content: "\f167"; -} -.icon-xing:before { - content: "\f168"; -} -.icon-xing-square:before { - content: "\f169"; -} -.icon-youtube-play:before { - content: "\f16a"; -} -.icon-dropbox:before { - content: "\f16b"; -} -.icon-stack-overflow:before { - content: "\f16c"; -} -.icon-instagram:before { - content: "\f16d"; -} -.icon-flickr:before { - content: "\f16e"; -} -.icon-adn:before { - content: "\f170"; -} -.icon-bitbucket:before { - content: "\f171"; -} -.icon-bitbucket-square:before { - content: "\f172"; -} -.icon-tumblr:before { - content: "\f173"; -} -.icon-tumblr-square:before { - content: "\f174"; -} -.icon-long-arrow-down:before { - content: "\f175"; -} -.icon-long-arrow-up:before { - content: "\f176"; -} -.icon-long-arrow-left:before { - content: "\f177"; -} -.icon-long-arrow-right:before { - content: "\f178"; -} -.icon-apple:before { - content: "\f179"; -} -.icon-windows:before { - content: "\f17a"; -} -.icon-android:before { - content: "\f17b"; -} -.icon-linux:before { - content: "\f17c"; -} -.icon-dribbble:before { - content: "\f17d"; -} -.icon-skype:before { - content: "\f17e"; -} -.icon-foursquare:before { - content: "\f180"; -} -.icon-trello:before { - content: "\f181"; -} -.icon-female:before { - content: "\f182"; -} -.icon-male:before { - content: "\f183"; -} -.icon-gittip:before { - content: "\f184"; -} -.icon-gratipay:before { - content: "\f184"; -} -.icon-sun-o:before { - content: "\f185"; -} -.icon-moon-o:before { - content: "\f186"; -} -.icon-archive:before { - content: "\f187"; -} -.icon-bug:before { - content: "\f188"; -} -.icon-vk:before { - content: "\f189"; -} -.icon-weibo:before { - content: "\f18a"; -} -.icon-renren:before { - content: "\f18b"; -} -.icon-pagelines:before { - content: "\f18c"; -} -.icon-stack-exchange:before { - content: "\f18d"; -} -.icon-arrow-circle-o-right:before { - content: "\f18e"; -} -.icon-arrow-circle-o-left:before { - content: "\f190"; -} -.icon-caret-square-o-left:before { - content: "\f191"; -} -.icon-toggle-left:before { - content: "\f191"; -} -.icon-dot-circle-o:before { - content: "\f192"; -} -.icon-wheelchair:before { - content: "\f193"; -} -.icon-vimeo-square:before { - content: "\f194"; -} -.icon-try:before { - content: "\f195"; -} -.icon-turkish-lira:before { - content: "\f195"; -} -.icon-plus-square-o:before { - content: "\f196"; -} -.icon-space-shuttle:before { - content: "\f197"; -} -.icon-slack:before { - content: "\f198"; -} -.icon-envelope-square:before { - content: "\f199"; -} -.icon-wordpress:before { - content: "\f19a"; -} -.icon-openid:before { - content: "\f19b"; -} -.icon-bank:before { - content: "\f19c"; -} -.icon-institution:before { - content: "\f19c"; -} -.icon-university:before { - content: "\f19c"; -} -.icon-graduation-cap:before { - content: "\f19d"; -} -.icon-mortar-board:before { - content: "\f19d"; -} -.icon-yahoo:before { - content: "\f19e"; -} -.icon-google:before { - content: "\f1a0"; -} -.icon-reddit:before { - content: "\f1a1"; -} -.icon-reddit-square:before { - content: "\f1a2"; -} -.icon-stumbleupon-circle:before { - content: "\f1a3"; -} -.icon-stumbleupon:before { - content: "\f1a4"; -} -.icon-delicious:before { - content: "\f1a5"; -} -.icon-digg:before { - content: "\f1a6"; -} -.icon-pied-piper:before { - content: "\f1a7"; -} -.icon-pied-piper-alt:before { - content: "\f1a8"; -} -.icon-drupal:before { - content: "\f1a9"; -} -.icon-joomla:before { - content: "\f1aa"; -} -.icon-language:before { - content: "\f1ab"; -} -.icon-fax:before { - content: "\f1ac"; -} -.icon-building:before { - content: "\f1ad"; -} -.icon-child:before { - content: "\f1ae"; -} -.icon-paw:before { - content: "\f1b0"; -} -.icon-spoon:before { - content: "\f1b1"; -} -.icon-cube:before { - content: "\f1b2"; -} -.icon-cubes:before { - content: "\f1b3"; -} -.icon-behance:before { - content: "\f1b4"; -} -.icon-behance-square:before { - content: "\f1b5"; -} -.icon-steam:before { - content: "\f1b6"; -} -.icon-steam-square:before { - content: "\f1b7"; -} -.icon-recycle:before { - content: "\f1b8"; -} -.icon-automobile:before { - content: "\f1b9"; -} -.icon-car:before { - content: "\f1b9"; -} -.icon-cab:before { - content: "\f1ba"; -} -.icon-taxi:before { - content: "\f1ba"; -} -.icon-tree:before { - content: "\f1bb"; -} -.icon-spotify:before { - content: "\f1bc"; -} -.icon-deviantart:before { - content: "\f1bd"; -} -.icon-soundcloud:before { - content: "\f1be"; -} -.icon-database:before { - content: "\f1c0"; -} -.icon-file-pdf-o:before { - content: "\f1c1"; -} -.icon-file-word-o:before { - content: "\f1c2"; -} -.icon-file-excel-o:before { - content: "\f1c3"; -} -.icon-file-powerpoint-o:before { - content: "\f1c4"; -} -.icon-file-image-o:before { - content: "\f1c5"; -} -.icon-file-photo-o:before { - content: "\f1c5"; -} -.icon-file-picture-o:before { - content: "\f1c5"; -} -.icon-file-archive-o:before { - content: "\f1c6"; -} -.icon-file-zip-o:before { - content: "\f1c6"; -} -.icon-file-audio-o:before { - content: "\f1c7"; -} -.icon-file-sound-o:before { - content: "\f1c7"; -} -.icon-file-movie-o:before { - content: "\f1c8"; -} -.icon-file-video-o:before { - content: "\f1c8"; -} -.icon-file-code-o:before { - content: "\f1c9"; -} -.icon-vine:before { - content: "\f1ca"; -} -.icon-codepen:before { - content: "\f1cb"; -} -.icon-jsfiddle:before { - content: "\f1cc"; -} -.icon-life-bouy:before { - content: "\f1cd"; -} -.icon-life-buoy:before { - content: "\f1cd"; -} -.icon-life-ring:before { - content: "\f1cd"; -} -.icon-life-saver:before { - content: "\f1cd"; -} -.icon-support:before { - content: "\f1cd"; -} -.icon-circle-o-notch:before { - content: "\f1ce"; -} -.icon-ra:before { - content: "\f1d0"; -} -.icon-rebel:before { - content: "\f1d0"; -} -.icon-empire:before { - content: "\f1d1"; -} -.icon-ge:before { - content: "\f1d1"; -} -.icon-git-square:before { - content: "\f1d2"; -} -.icon-git:before { - content: "\f1d3"; -} -.icon-hacker-news:before { - content: "\f1d4"; -} -.icon-y-combinator-square:before { - content: "\f1d4"; -} -.icon-yc-square:before { - content: "\f1d4"; -} -.icon-tencent-weibo:before { - content: "\f1d5"; -} -.icon-qq:before { - content: "\f1d6"; -} -.icon-wechat:before { - content: "\f1d7"; -} -.icon-weixin:before { - content: "\f1d7"; -} -.icon-paper-plane:before { - content: "\f1d8"; -} -.icon-send:before { - content: "\f1d8"; -} -.icon-paper-plane-o:before { - content: "\f1d9"; -} -.icon-send-o:before { - content: "\f1d9"; -} -.icon-history:before { - content: "\f1da"; -} -.icon-circle-thin:before { - content: "\f1db"; -} -.icon-header:before { - content: "\f1dc"; -} -.icon-paragraph2:before { - content: "\f1dd"; -} -.icon-sliders:before { - content: "\f1de"; -} -.icon-share-alt:before { - content: "\f1e0"; -} -.icon-share-alt-square:before { - content: "\f1e1"; -} -.icon-bomb:before { - content: "\f1e2"; -} -.icon-futbol-o:before { - content: "\f1e3"; -} -.icon-soccer-ball-o:before { - content: "\f1e3"; -} -.icon-tty:before { - content: "\f1e4"; -} -.icon-binoculars:before { - content: "\f1e5"; -} -.icon-plug:before { - content: "\f1e6"; -} -.icon-slideshare:before { - content: "\f1e7"; -} -.icon-twitch:before { - content: "\f1e8"; -} -.icon-yelp:before { - content: "\f1e9"; -} -.icon-newspaper-o:before { - content: "\f1ea"; -} -.icon-wifi:before { - content: "\f1eb"; -} -.icon-calculator:before { - content: "\f1ec"; -} -.icon-paypal:before { - content: "\f1ed"; -} -.icon-google-wallet:before { - content: "\f1ee"; -} -.icon-cc-visa:before { - content: "\f1f0"; -} -.icon-cc-mastercard:before { - content: "\f1f1"; -} -.icon-cc-discover:before { - content: "\f1f2"; -} -.icon-cc-amex:before { - content: "\f1f3"; -} -.icon-cc-paypal:before { - content: "\f1f4"; -} -.icon-cc-stripe:before { - content: "\f1f5"; -} -.icon-bell-slash:before { - content: "\f1f6"; -} -.icon-bell-slash-o:before { - content: "\f1f7"; -} -.icon-trash:before { - content: "\f1f8"; -} -.icon-copyright:before { - content: "\f1f9"; -} -.icon-at:before { - content: "\f1fa"; -} -.icon-eyedropper:before { - content: "\f1fb"; -} -.icon-paint-brush:before { - content: "\f1fc"; -} -.icon-birthday-cake:before { - content: "\f1fd"; -} -.icon-area-chart:before { - content: "\f1fe"; -} -.icon-pie-chart:before { - content: "\f200"; -} -.icon-line-chart:before { - content: "\f201"; -} -.icon-lastfm:before { - content: "\f202"; -} -.icon-lastfm-square:before { - content: "\f203"; -} -.icon-toggle-off:before { - content: "\f204"; -} -.icon-toggle-on:before { - content: "\f205"; -} -.icon-bicycle:before { - content: "\f206"; -} -.icon-bus:before { - content: "\f207"; -} -.icon-ioxhost:before { - content: "\f208"; -} -.icon-angellist:before { - content: "\f209"; -} -.icon-cc:before { - content: "\f20a"; -} -.icon-ils:before { - content: "\f20b"; -} -.icon-shekel:before { - content: "\f20b"; -} -.icon-sheqel:before { - content: "\f20b"; -} -.icon-meanpath:before { - content: "\f20c"; -} -.icon-buysellads:before { - content: "\f20d"; -} -.icon-connectdevelop:before { - content: "\f20e"; -} -.icon-dashcube:before { - content: "\f210"; -} -.icon-forumbee:before { - content: "\f211"; -} -.icon-leanpub:before { - content: "\f212"; -} -.icon-sellsy:before { - content: "\f213"; -} -.icon-shirtsinbulk:before { - content: "\f214"; -} -.icon-simplybuilt:before { - content: "\f215"; -} -.icon-skyatlas:before { - content: "\f216"; -} -.icon-cart-plus:before { - content: "\f217"; -} -.icon-cart-arrow-down:before { - content: "\f218"; -} -.icon-diamond:before { - content: "\f219"; -} -.icon-ship:before { - content: "\f21a"; -} -.icon-user-secret:before { - content: "\f21b"; -} -.icon-motorcycle:before { - content: "\f21c"; -} -.icon-street-view:before { - content: "\f21d"; -} -.icon-heartbeat:before { - content: "\f21e"; -} -.icon-venus:before { - content: "\f221"; -} -.icon-mars:before { - content: "\f222"; -} -.icon-mercury:before { - content: "\f223"; -} -.icon-intersex:before { - content: "\f224"; -} -.icon-transgender:before { - content: "\f224"; -} -.icon-transgender-alt:before { - content: "\f225"; -} -.icon-venus-double:before { - content: "\f226"; -} -.icon-mars-double:before { - content: "\f227"; -} -.icon-venus-mars:before { - content: "\f228"; -} -.icon-mars-stroke:before { - content: "\f229"; -} -.icon-mars-stroke-v:before { - content: "\f22a"; -} -.icon-mars-stroke-h:before { - content: "\f22b"; -} -.icon-neuter:before { - content: "\f22c"; -} -.icon-genderless:before { - content: "\f22d"; -} -.icon-facebook-official:before { - content: "\f230"; -} -.icon-pinterest-p:before { - content: "\f231"; -} -.icon-whatsapp:before { - content: "\f232"; -} -.icon-server2:before { - content: "\f233"; -} -.icon-user-plus:before { - content: "\f234"; -} -.icon-user-times:before { - content: "\f235"; -} -.icon-bed:before { - content: "\f236"; -} -.icon-hotel:before { - content: "\f236"; -} -.icon-viacoin:before { - content: "\f237"; -} -.icon-train:before { - content: "\f238"; -} -.icon-subway:before { - content: "\f239"; -} -.icon-medium:before { - content: "\f23a"; -} -.icon-y-combinator:before { - content: "\f23b"; -} -.icon-yc:before { - content: "\f23b"; -} -.icon-optin-monster:before { - content: "\f23c"; -} -.icon-opencart:before { - content: "\f23d"; -} -.icon-expeditedssl:before { - content: "\f23e"; -} -.icon-battery-4:before { - content: "\f240"; -} -.icon-battery-full:before { - content: "\f240"; -} -.icon-battery-3:before { - content: "\f241"; -} -.icon-battery-three-quarters:before { - content: "\f241"; -} -.icon-battery-2:before { - content: "\f242"; -} -.icon-battery-half:before { - content: "\f242"; -} -.icon-battery-1:before { - content: "\f243"; -} -.icon-battery-quarter:before { - content: "\f243"; -} -.icon-battery-0:before { - content: "\f244"; -} -.icon-battery-empty:before { - content: "\f244"; -} -.icon-mouse-pointer:before { - content: "\f245"; -} -.icon-i-cursor:before { - content: "\f246"; -} -.icon-object-group:before { - content: "\f247"; -} -.icon-object-ungroup:before { - content: "\f248"; -} -.icon-sticky-note:before { - content: "\f249"; -} -.icon-sticky-note-o:before { - content: "\f24a"; -} -.icon-cc-jcb:before { - content: "\f24b"; -} -.icon-cc-diners-club:before { - content: "\f24c"; -} -.icon-clone:before { - content: "\f24d"; -} -.icon-balance-scale:before { - content: "\f24e"; -} -.icon-hourglass-o:before { - content: "\f250"; -} -.icon-hourglass-1:before { - content: "\f251"; -} -.icon-hourglass-start:before { - content: "\f251"; -} -.icon-hourglass-2:before { - content: "\f252"; -} -.icon-hourglass-half:before { - content: "\f252"; -} -.icon-hourglass-3:before { - content: "\f253"; -} -.icon-hourglass-end:before { - content: "\f253"; -} -.icon-hourglass:before { - content: "\f254"; -} -.icon-hand-grab-o:before { - content: "\f255"; -} -.icon-hand-rock-o:before { - content: "\f255"; -} -.icon-hand-paper-o:before { - content: "\f256"; -} -.icon-hand-stop-o:before { - content: "\f256"; -} -.icon-hand-scissors-o:before { - content: "\f257"; -} -.icon-hand-lizard-o:before { - content: "\f258"; -} -.icon-hand-spock-o:before { - content: "\f259"; -} -.icon-hand-pointer-o:before { - content: "\f25a"; -} -.icon-hand-peace-o:before { - content: "\f25b"; -} -.icon-trademark:before { - content: "\f25c"; -} -.icon-registered:before { - content: "\f25d"; -} -.icon-creative-commons:before { - content: "\f25e"; -} -.icon-gg:before { - content: "\f260"; -} -.icon-gg-circle:before { - content: "\f261"; -} -.icon-tripadvisor:before { - content: "\f262"; -} -.icon-odnoklassniki:before { - content: "\f263"; -} -.icon-odnoklassniki-square:before { - content: "\f264"; -} -.icon-get-pocket:before { - content: "\f265"; -} -.icon-wikipedia-w:before { - content: "\f266"; -} -.icon-safari:before { - content: "\f267"; -} -.icon-chrome:before { - content: "\f268"; -} -.icon-firefox:before { - content: "\f269"; -} -.icon-opera:before { - content: "\f26a"; -} -.icon-internet-explorer:before { - content: "\f26b"; -} -.icon-television:before { - content: "\f26c"; -} -.icon-tv:before { - content: "\f26c"; -} -.icon-contao:before { - content: "\f26d"; -} -.icon-500px:before { - content: "\f26e"; -} -.icon-amazon:before { - content: "\f270"; -} -.icon-calendar-plus-o:before { - content: "\f271"; -} -.icon-calendar-minus-o:before { - content: "\f272"; -} -.icon-calendar-times-o:before { - content: "\f273"; -} -.icon-calendar-check-o:before { - content: "\f274"; -} -.icon-industry:before { - content: "\f275"; -} -.icon-map-pin:before { - content: "\f276"; -} -.icon-map-signs:before { - content: "\f277"; -} -.icon-map-o:before { - content: "\f278"; -} -.icon-map:before { - content: "\f279"; -} -.icon-commenting:before { - content: "\f27a"; -} -.icon-commenting-o:before { - content: "\f27b"; -} -.icon-houzz:before { - content: "\f27c"; -} -.icon-vimeo:before { - content: "\f27d"; -} -.icon-black-tie:before { - content: "\f27e"; -} -.icon-fonticons:before { - content: "\f280"; -} -.icon-eye2:before { - content: "\e000"; -} -.icon-paper-clip:before { - content: "\e001"; -} -.icon-mail2:before { - content: "\e002"; -} -.icon-toggle:before { - content: "\e003"; -} -.icon-layout:before { - content: "\e004"; -} -.icon-link2:before { - content: "\e005"; -} -.icon-bell2:before { - content: "\e006"; -} -.icon-lock2:before { - content: "\e007"; -} -.icon-unlock:before { - content: "\e008"; -} -.icon-ribbon:before { - content: "\e009"; -} -.icon-image2:before { - content: "\e010"; -} -.icon-signal2:before { - content: "\e011"; -} -.icon-target:before { - content: "\e012"; -} -.icon-clipboard2:before { - content: "\e013"; -} -.icon-clock2:before { - content: "\e014"; -} -.icon-watch:before { - content: "\e015"; -} -.icon-air-play:before { - content: "\e016"; -} -.icon-camera2:before { - content: "\e017"; -} -.icon-video2:before { - content: "\e018"; -} -.icon-disc:before { - content: "\e019"; -} -.icon-printer:before { - content: "\e020"; -} -.icon-monitor:before { - content: "\e021"; -} -.icon-server:before { - content: "\e022"; -} -.icon-cog2:before { - content: "\e023"; -} -.icon-heart2:before { - content: "\e024"; -} -.icon-paragraph:before { - content: "\e025"; -} -.icon-align-justify:before { - content: "\e026"; -} -.icon-align-left2:before { - content: "\e027"; -} -.icon-align-center:before { - content: "\e028"; -} -.icon-align-right2:before { - content: "\e029"; -} -.icon-book2:before { - content: "\e030"; -} -.icon-layers2:before { - content: "\e031"; -} -.icon-stack:before { - content: "\e032"; -} -.icon-stack-2:before { - content: "\e033"; -} -.icon-paper:before { - content: "\e034"; -} -.icon-paper-stack:before { - content: "\e035"; -} -.icon-search:before { - content: "\e036"; -} -.icon-zoom-in:before { - content: "\e037"; -} -.icon-zoom-out:before { - content: "\e038"; -} -.icon-reply2:before { - content: "\e039"; -} -.icon-circle-plus:before { - content: "\e040"; -} -.icon-circle-minus:before { - content: "\e041"; -} -.icon-circle-check:before { - content: "\e042"; -} -.icon-circle-cross:before { - content: "\e043"; -} -.icon-square-plus:before { - content: "\e044"; -} -.icon-square-minus:before { - content: "\e045"; -} -.icon-square-check:before { - content: "\e046"; -} -.icon-square-cross:before { - content: "\e047"; -} -.icon-microphone:before { - content: "\e048"; -} -.icon-record:before { - content: "\e049"; -} -.icon-skip-back:before { - content: "\e050"; -} -.icon-rewind:before { - content: "\e051"; -} -.icon-play:before { - content: "\e052"; -} -.icon-pause:before { - content: "\e053"; -} -.icon-stop:before { - content: "\e054"; -} -.icon-fast-forward:before { - content: "\e055"; -} -.icon-skip-forward:before { - content: "\e056"; -} -.icon-shuffle2:before { - content: "\e057"; -} -.icon-repeat:before { - content: "\e058"; -} -.icon-folder2:before { - content: "\e059"; -} -.icon-umbrella:before { - content: "\e060"; -} -.icon-moon2:before { - content: "\e061"; -} -.icon-thermometer2:before { - content: "\e062"; -} -.icon-drop2:before { - content: "\e063"; -} -.icon-sun:before { - content: "\e064"; -} -.icon-cloud2:before { - content: "\e065"; -} -.icon-cloud-upload:before { - content: "\e066"; -} -.icon-cloud-download:before { - content: "\e067"; -} -.icon-upload2:before { - content: "\e068"; -} -.icon-download2:before { - content: "\e069"; -} -.icon-location2:before { - content: "\e070"; -} -.icon-location-2:before { - content: "\e071"; -} -.icon-map2:before { - content: "\e072"; -} -.icon-battery2:before { - content: "\e073"; -} -.icon-head:before { - content: "\e074"; -} -.icon-briefcase2:before { - content: "\e075"; -} -.icon-speech-bubble:before { - content: "\e076"; -} -.icon-anchor:before { - content: "\e077"; -} -.icon-globe2:before { - content: "\e078"; -} -.icon-box2:before { - content: "\e079"; -} -.icon-reload:before { - content: "\e080"; -} -.icon-share2:before { - content: "\e081"; -} -.icon-marquee:before { - content: "\e082"; -} -.icon-marquee-plus:before { - content: "\e083"; -} -.icon-marquee-minus:before { - content: "\e084"; -} -.icon-tag2:before { - content: "\e085"; -} -.icon-power:before { - content: "\e086"; -} -.icon-command:before { - content: "\e087"; -} -.icon-alt:before { - content: "\e088"; -} -.icon-esc:before { - content: "\e089"; -} -.icon-bar-graph2:before { - content: "\e090"; -} -.icon-bar-graph-2:before { - content: "\e091"; -} -.icon-pie-graph:before { - content: "\e092"; -} -.icon-star2:before { - content: "\e093"; -} -.icon-arrow-left2:before { - content: "\e094"; -} -.icon-arrow-right2:before { - content: "\e095"; -} -.icon-arrow-up2:before { - content: "\e096"; -} -.icon-arrow-down2:before { - content: "\e097"; -} -.icon-volume:before { - content: "\e098"; -} -.icon-mute:before { - content: "\e099"; -} -.icon-content-right:before { - content: "\e100"; -} -.icon-content-left:before { - content: "\e101"; -} -.icon-grid2:before { - content: "\e102"; -} -.icon-grid-2:before { - content: "\e103"; -} -.icon-columns:before { - content: "\e104"; -} -.icon-loader:before { - content: "\e105"; -} -.icon-bag:before { - content: "\e106"; -} -.icon-ban:before { - content: "\e107"; -} -.icon-flag2:before { - content: "\e108"; -} -.icon-trash2:before { - content: "\e109"; -} -.icon-expand:before { - content: "\e110"; -} -.icon-contract:before { - content: "\e111"; -} -.icon-maximize:before { - content: "\e112"; -} -.icon-minimize:before { - content: "\e113"; -} -.icon-plus2:before { - content: "\e114"; -} -.icon-minus2:before { - content: "\e115"; -} -.icon-check2:before { - content: "\e116"; -} -.icon-cross2:before { - content: "\e117"; -} -.icon-move:before { - content: "\e118"; -} -.icon-delete:before { - content: "\e119"; -} -.icon-menu2:before { - content: "\e120"; -} -.icon-archive2:before { - content: "\e121"; -} -.icon-inbox2:before { - content: "\e122"; -} -.icon-outbox:before { - content: "\e123"; -} -.icon-file:before { - content: "\e124"; -} -.icon-file-add:before { - content: "\e125"; -} -.icon-file-subtract:before { - content: "\e126"; -} -.icon-help2:before { - content: "\e127"; -} -.icon-open:before { - content: "\e128"; -} -.icon-ellipsis:before { - content: "\e129"; -} - diff --git a/html/fonts/iconsmind.eot b/html/fonts/iconsmind.eot deleted file mode 100644 index 2b0010fd..00000000 Binary files a/html/fonts/iconsmind.eot and /dev/null differ diff --git a/html/fonts/iconsmind.ttf b/html/fonts/iconsmind.ttf deleted file mode 100644 index 4e7a52ba..00000000 Binary files a/html/fonts/iconsmind.ttf and /dev/null differ diff --git a/html/fonts/iconsmind.woff b/html/fonts/iconsmind.woff deleted file mode 100644 index 88134609..00000000 Binary files a/html/fonts/iconsmind.woff and /dev/null differ diff --git a/html/fonts/socicon.eot b/html/fonts/socicon.eot deleted file mode 100644 index 5c179ca2..00000000 Binary files a/html/fonts/socicon.eot and /dev/null differ diff --git a/html/fonts/socicon.svg b/html/fonts/socicon.svg deleted file mode 100644 index 08ff56d2..00000000 --- a/html/fonts/socicon.svg +++ /dev/null @@ -1,186 +0,0 @@ - - - -Generated by IcoMoon - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/html/fonts/socicon.ttf b/html/fonts/socicon.ttf deleted file mode 100644 index d4dbc355..00000000 Binary files a/html/fonts/socicon.ttf and /dev/null differ diff --git a/html/fonts/socicon.woff b/html/fonts/socicon.woff deleted file mode 100644 index 3e600981..00000000 Binary files a/html/fonts/socicon.woff and /dev/null differ diff --git a/html/fonts/stack-interface.eot b/html/fonts/stack-interface.eot deleted file mode 100644 index b49e8580..00000000 Binary files a/html/fonts/stack-interface.eot and /dev/null differ diff --git a/html/fonts/stack-interface.svg b/html/fonts/stack-interface.svg deleted file mode 100644 index 506b152c..00000000 --- a/html/fonts/stack-interface.svg +++ /dev/null @@ -1,54 +0,0 @@ - - - -Copyright (C) 2016 by original authors @ fontello.com - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/html/fonts/stack-interface.ttf b/html/fonts/stack-interface.ttf deleted file mode 100644 index 40b17444..00000000 Binary files a/html/fonts/stack-interface.ttf and /dev/null differ diff --git a/html/fonts/stack-interface.woff b/html/fonts/stack-interface.woff deleted file mode 100644 index 53a3774f..00000000 Binary files a/html/fonts/stack-interface.woff and /dev/null differ diff --git a/html/fonts/stack-interface.woff2 b/html/fonts/stack-interface.woff2 deleted file mode 100644 index 0c463549..00000000 Binary files a/html/fonts/stack-interface.woff2 and /dev/null differ diff --git a/html/graphics/img/1-bitcoin-cash-logo-full.png b/html/graphics/img/1-bitcoin-cash-logo-full.png deleted file mode 100644 index 4678a36c..00000000 Binary files a/html/graphics/img/1-bitcoin-cash-logo-full.png and /dev/null differ diff --git a/html/graphics/img/1-bitcoin-cash-logo-large.png b/html/graphics/img/1-bitcoin-cash-logo-large.png deleted file mode 100644 index 2a937b91..00000000 Binary files a/html/graphics/img/1-bitcoin-cash-logo-large.png and /dev/null differ diff --git a/html/graphics/img/1-bitcoin-cash-logo-medium.png b/html/graphics/img/1-bitcoin-cash-logo-medium.png deleted file mode 100644 index 3abfaa44..00000000 Binary files a/html/graphics/img/1-bitcoin-cash-logo-medium.png and /dev/null differ diff --git a/html/graphics/img/1-bitcoin-cash-logo-small.png b/html/graphics/img/1-bitcoin-cash-logo-small.png deleted file mode 100644 index 233fd929..00000000 Binary files a/html/graphics/img/1-bitcoin-cash-logo-small.png and /dev/null differ diff --git a/html/graphics/img/1-bitcoin-cash-logo.svg b/html/graphics/img/1-bitcoin-cash-logo.svg deleted file mode 100644 index ab1bf46f..00000000 --- a/html/graphics/img/1-bitcoin-cash-logo.svg +++ /dev/null @@ -1 +0,0 @@ -1-bitcoin-cash-logo \ No newline at end of file diff --git a/html/graphics/img/10-bitcoin-cash-donations-full.png b/html/graphics/img/10-bitcoin-cash-donations-full.png deleted file mode 100644 index 9e11ade1..00000000 Binary files a/html/graphics/img/10-bitcoin-cash-donations-full.png and /dev/null differ diff --git a/html/graphics/img/10-bitcoin-cash-donations-large.png b/html/graphics/img/10-bitcoin-cash-donations-large.png deleted file mode 100644 index 4c0a20cf..00000000 Binary files a/html/graphics/img/10-bitcoin-cash-donations-large.png and /dev/null differ diff --git a/html/graphics/img/10-bitcoin-cash-donations-medium.png b/html/graphics/img/10-bitcoin-cash-donations-medium.png deleted file mode 100644 index 23eb4835..00000000 Binary files a/html/graphics/img/10-bitcoin-cash-donations-medium.png and /dev/null differ diff --git a/html/graphics/img/10-bitcoin-cash-donations-small.png b/html/graphics/img/10-bitcoin-cash-donations-small.png deleted file mode 100644 index 58051a9b..00000000 Binary files a/html/graphics/img/10-bitcoin-cash-donations-small.png and /dev/null differ diff --git a/html/graphics/img/10-bitcoin-cash-donations.svg b/html/graphics/img/10-bitcoin-cash-donations.svg deleted file mode 100755 index a68189d2..00000000 --- a/html/graphics/img/10-bitcoin-cash-donations.svg +++ /dev/null @@ -1 +0,0 @@ -10-bitcoin-cash-donations \ No newline at end of file diff --git a/html/graphics/img/11-bitcoin-cash-donations-orange-full.png b/html/graphics/img/11-bitcoin-cash-donations-orange-full.png deleted file mode 100644 index d0176edf..00000000 Binary files a/html/graphics/img/11-bitcoin-cash-donations-orange-full.png and /dev/null differ diff --git a/html/graphics/img/11-bitcoin-cash-donations-orange-large.png b/html/graphics/img/11-bitcoin-cash-donations-orange-large.png deleted file mode 100644 index 0a9ac962..00000000 Binary files a/html/graphics/img/11-bitcoin-cash-donations-orange-large.png and /dev/null differ diff --git a/html/graphics/img/11-bitcoin-cash-donations-orange-medium.png b/html/graphics/img/11-bitcoin-cash-donations-orange-medium.png deleted file mode 100644 index 11b215e1..00000000 Binary files a/html/graphics/img/11-bitcoin-cash-donations-orange-medium.png and /dev/null differ diff --git a/html/graphics/img/11-bitcoin-cash-donations-orange-small.png b/html/graphics/img/11-bitcoin-cash-donations-orange-small.png deleted file mode 100644 index 7227c62e..00000000 Binary files a/html/graphics/img/11-bitcoin-cash-donations-orange-small.png and /dev/null differ diff --git a/html/graphics/img/11-bitcoin-cash-donations-orange.svg b/html/graphics/img/11-bitcoin-cash-donations-orange.svg deleted file mode 100755 index 55b123cf..00000000 --- a/html/graphics/img/11-bitcoin-cash-donations-orange.svg +++ /dev/null @@ -1 +0,0 @@ -11-bitcoin-cash-donations-orange \ No newline at end of file diff --git a/html/graphics/img/12-bitcoin-cash-square-crop-full.png b/html/graphics/img/12-bitcoin-cash-square-crop-full.png deleted file mode 100644 index 25f4808e..00000000 Binary files a/html/graphics/img/12-bitcoin-cash-square-crop-full.png and /dev/null differ diff --git a/html/graphics/img/12-bitcoin-cash-square-crop-large.png b/html/graphics/img/12-bitcoin-cash-square-crop-large.png deleted file mode 100644 index b109bfb0..00000000 Binary files a/html/graphics/img/12-bitcoin-cash-square-crop-large.png and /dev/null differ diff --git a/html/graphics/img/12-bitcoin-cash-square-crop-medium.png b/html/graphics/img/12-bitcoin-cash-square-crop-medium.png deleted file mode 100644 index 49809fc7..00000000 Binary files a/html/graphics/img/12-bitcoin-cash-square-crop-medium.png and /dev/null differ diff --git a/html/graphics/img/12-bitcoin-cash-square-crop-small.png b/html/graphics/img/12-bitcoin-cash-square-crop-small.png deleted file mode 100644 index bc58f3cc..00000000 Binary files a/html/graphics/img/12-bitcoin-cash-square-crop-small.png and /dev/null differ diff --git a/html/graphics/img/12-bitcoin-cash-square-crop.svg b/html/graphics/img/12-bitcoin-cash-square-crop.svg deleted file mode 100644 index 48added2..00000000 --- a/html/graphics/img/12-bitcoin-cash-square-crop.svg +++ /dev/null @@ -1 +0,0 @@ -12-bitcoin-cash-square-crop \ No newline at end of file diff --git a/html/graphics/img/2-bitcoin-cash-logo-wt-full.png b/html/graphics/img/2-bitcoin-cash-logo-wt-full.png deleted file mode 100644 index 08734415..00000000 Binary files a/html/graphics/img/2-bitcoin-cash-logo-wt-full.png and /dev/null differ diff --git a/html/graphics/img/2-bitcoin-cash-logo-wt-large.png b/html/graphics/img/2-bitcoin-cash-logo-wt-large.png deleted file mode 100644 index 617b13b0..00000000 Binary files a/html/graphics/img/2-bitcoin-cash-logo-wt-large.png and /dev/null differ diff --git a/html/graphics/img/2-bitcoin-cash-logo-wt-medium.png b/html/graphics/img/2-bitcoin-cash-logo-wt-medium.png deleted file mode 100644 index 434d6cd0..00000000 Binary files a/html/graphics/img/2-bitcoin-cash-logo-wt-medium.png and /dev/null differ diff --git a/html/graphics/img/2-bitcoin-cash-logo-wt-small.png b/html/graphics/img/2-bitcoin-cash-logo-wt-small.png deleted file mode 100644 index 0845ea17..00000000 Binary files a/html/graphics/img/2-bitcoin-cash-logo-wt-small.png and /dev/null differ diff --git a/html/graphics/img/2-bitcoin-cash-logo-wt.svg b/html/graphics/img/2-bitcoin-cash-logo-wt.svg deleted file mode 100644 index 939f194f..00000000 --- a/html/graphics/img/2-bitcoin-cash-logo-wt.svg +++ /dev/null @@ -1 +0,0 @@ -2-bitcoin-cash-logo-wt \ No newline at end of file diff --git a/html/graphics/img/3-bitcoin-cash-logo-ot-full.png b/html/graphics/img/3-bitcoin-cash-logo-ot-full.png deleted file mode 100644 index b44e0809..00000000 Binary files a/html/graphics/img/3-bitcoin-cash-logo-ot-full.png and /dev/null differ diff --git a/html/graphics/img/3-bitcoin-cash-logo-ot-large.png b/html/graphics/img/3-bitcoin-cash-logo-ot-large.png deleted file mode 100644 index 5ca75a77..00000000 Binary files a/html/graphics/img/3-bitcoin-cash-logo-ot-large.png and /dev/null differ diff --git a/html/graphics/img/3-bitcoin-cash-logo-ot-medium.png b/html/graphics/img/3-bitcoin-cash-logo-ot-medium.png deleted file mode 100644 index 8e1330b3..00000000 Binary files a/html/graphics/img/3-bitcoin-cash-logo-ot-medium.png and /dev/null differ diff --git a/html/graphics/img/3-bitcoin-cash-logo-ot-small.png b/html/graphics/img/3-bitcoin-cash-logo-ot-small.png deleted file mode 100644 index 8fdba08c..00000000 Binary files a/html/graphics/img/3-bitcoin-cash-logo-ot-small.png and /dev/null differ diff --git a/html/graphics/img/3-bitcoin-cash-logo-ot.svg b/html/graphics/img/3-bitcoin-cash-logo-ot.svg deleted file mode 100644 index 4019d6a0..00000000 --- a/html/graphics/img/3-bitcoin-cash-logo-ot.svg +++ /dev/null @@ -1 +0,0 @@ -3-bitcoin-cash-logo-ot \ No newline at end of file diff --git a/html/graphics/img/3-bitcoin-cash-ogo-ot.svg b/html/graphics/img/3-bitcoin-cash-ogo-ot.svg deleted file mode 100644 index 27f765c0..00000000 --- a/html/graphics/img/3-bitcoin-cash-ogo-ot.svg +++ /dev/null @@ -1 +0,0 @@ -3-bitcoin-cash-ogo-ot \ No newline at end of file diff --git a/html/graphics/img/4-bitcoin-cash-logo-flag-full.png b/html/graphics/img/4-bitcoin-cash-logo-flag-full.png deleted file mode 100644 index 33cac8f7..00000000 Binary files a/html/graphics/img/4-bitcoin-cash-logo-flag-full.png and /dev/null differ diff --git a/html/graphics/img/4-bitcoin-cash-logo-flag-large.png b/html/graphics/img/4-bitcoin-cash-logo-flag-large.png deleted file mode 100644 index b9421f90..00000000 Binary files a/html/graphics/img/4-bitcoin-cash-logo-flag-large.png and /dev/null differ diff --git a/html/graphics/img/4-bitcoin-cash-logo-flag-medium.png b/html/graphics/img/4-bitcoin-cash-logo-flag-medium.png deleted file mode 100644 index 71766bdf..00000000 Binary files a/html/graphics/img/4-bitcoin-cash-logo-flag-medium.png and /dev/null differ diff --git a/html/graphics/img/4-bitcoin-cash-logo-flag-small.png b/html/graphics/img/4-bitcoin-cash-logo-flag-small.png deleted file mode 100644 index 3e1dbbc1..00000000 Binary files a/html/graphics/img/4-bitcoin-cash-logo-flag-small.png and /dev/null differ diff --git a/html/graphics/img/4-bitcoin-cash-logo-flag.svg b/html/graphics/img/4-bitcoin-cash-logo-flag.svg deleted file mode 100644 index e6a47c29..00000000 --- a/html/graphics/img/4-bitcoin-cash-logo-flag.svg +++ /dev/null @@ -1 +0,0 @@ -4-bitcoin-cash-logo-flag \ No newline at end of file diff --git a/html/graphics/img/5-bitcoin-cash-logo-horizontal-wt-full.png b/html/graphics/img/5-bitcoin-cash-logo-horizontal-wt-full.png deleted file mode 100644 index 1db42576..00000000 Binary files a/html/graphics/img/5-bitcoin-cash-logo-horizontal-wt-full.png and /dev/null differ diff --git a/html/graphics/img/5-bitcoin-cash-logo-horizontal-wt-large.png b/html/graphics/img/5-bitcoin-cash-logo-horizontal-wt-large.png deleted file mode 100644 index 287aeca1..00000000 Binary files a/html/graphics/img/5-bitcoin-cash-logo-horizontal-wt-large.png and /dev/null differ diff --git a/html/graphics/img/5-bitcoin-cash-logo-horizontal-wt-medium.png b/html/graphics/img/5-bitcoin-cash-logo-horizontal-wt-medium.png deleted file mode 100644 index 5d25a18d..00000000 Binary files a/html/graphics/img/5-bitcoin-cash-logo-horizontal-wt-medium.png and /dev/null differ diff --git a/html/graphics/img/5-bitcoin-cash-logo-horizontal-wt-small.png b/html/graphics/img/5-bitcoin-cash-logo-horizontal-wt-small.png deleted file mode 100644 index d1f2b6de..00000000 Binary files a/html/graphics/img/5-bitcoin-cash-logo-horizontal-wt-small.png and /dev/null differ diff --git a/html/graphics/img/5-bitcoin-cash-logo-horizontal-wt.svg b/html/graphics/img/5-bitcoin-cash-logo-horizontal-wt.svg deleted file mode 100755 index a3ac5670..00000000 --- a/html/graphics/img/5-bitcoin-cash-logo-horizontal-wt.svg +++ /dev/null @@ -1 +0,0 @@ -5-bitcoin-cash-logo-horizontal-wt \ No newline at end of file diff --git a/html/graphics/img/6-bitcoin-cash-logo-horizontal-full.png b/html/graphics/img/6-bitcoin-cash-logo-horizontal-full.png deleted file mode 100644 index 32a5ef4a..00000000 Binary files a/html/graphics/img/6-bitcoin-cash-logo-horizontal-full.png and /dev/null differ diff --git a/html/graphics/img/6-bitcoin-cash-logo-horizontal-large.png b/html/graphics/img/6-bitcoin-cash-logo-horizontal-large.png deleted file mode 100644 index be97f0bc..00000000 Binary files a/html/graphics/img/6-bitcoin-cash-logo-horizontal-large.png and /dev/null differ diff --git a/html/graphics/img/6-bitcoin-cash-logo-horizontal-medium.png b/html/graphics/img/6-bitcoin-cash-logo-horizontal-medium.png deleted file mode 100644 index 9af44901..00000000 Binary files a/html/graphics/img/6-bitcoin-cash-logo-horizontal-medium.png and /dev/null differ diff --git a/html/graphics/img/6-bitcoin-cash-logo-horizontal-small.png b/html/graphics/img/6-bitcoin-cash-logo-horizontal-small.png deleted file mode 100644 index a78e4d01..00000000 Binary files a/html/graphics/img/6-bitcoin-cash-logo-horizontal-small.png and /dev/null differ diff --git a/html/graphics/img/6-bitcoin-cash-logo-horizontal.svg b/html/graphics/img/6-bitcoin-cash-logo-horizontal.svg deleted file mode 100755 index fd9ea0b4..00000000 --- a/html/graphics/img/6-bitcoin-cash-logo-horizontal.svg +++ /dev/null @@ -1 +0,0 @@ -6-bitcoin-cash-logo-horizontal \ No newline at end of file diff --git a/html/graphics/img/7-bitcoin-cash-accepted-here-full.png b/html/graphics/img/7-bitcoin-cash-accepted-here-full.png deleted file mode 100644 index 9658d370..00000000 Binary files a/html/graphics/img/7-bitcoin-cash-accepted-here-full.png and /dev/null differ diff --git a/html/graphics/img/7-bitcoin-cash-accepted-here-large.png b/html/graphics/img/7-bitcoin-cash-accepted-here-large.png deleted file mode 100644 index b507177e..00000000 Binary files a/html/graphics/img/7-bitcoin-cash-accepted-here-large.png and /dev/null differ diff --git a/html/graphics/img/7-bitcoin-cash-accepted-here-medium.png b/html/graphics/img/7-bitcoin-cash-accepted-here-medium.png deleted file mode 100644 index ce82c890..00000000 Binary files a/html/graphics/img/7-bitcoin-cash-accepted-here-medium.png and /dev/null differ diff --git a/html/graphics/img/7-bitcoin-cash-accepted-here-small.png b/html/graphics/img/7-bitcoin-cash-accepted-here-small.png deleted file mode 100644 index 30a90079..00000000 Binary files a/html/graphics/img/7-bitcoin-cash-accepted-here-small.png and /dev/null differ diff --git a/html/graphics/img/7-bitcoin-cash-accepted-here.svg b/html/graphics/img/7-bitcoin-cash-accepted-here.svg deleted file mode 100755 index 2cc93d26..00000000 --- a/html/graphics/img/7-bitcoin-cash-accepted-here.svg +++ /dev/null @@ -1 +0,0 @@ -7-bitcoin-cash-accepted-here \ No newline at end of file diff --git a/html/graphics/img/8-bitcoin-cash-accepted-here-orange-full.png b/html/graphics/img/8-bitcoin-cash-accepted-here-orange-full.png deleted file mode 100644 index 39bc7838..00000000 Binary files a/html/graphics/img/8-bitcoin-cash-accepted-here-orange-full.png and /dev/null differ diff --git a/html/graphics/img/8-bitcoin-cash-accepted-here-orange-large.png b/html/graphics/img/8-bitcoin-cash-accepted-here-orange-large.png deleted file mode 100644 index bc5a2a9a..00000000 Binary files a/html/graphics/img/8-bitcoin-cash-accepted-here-orange-large.png and /dev/null differ diff --git a/html/graphics/img/8-bitcoin-cash-accepted-here-orange-medium.png b/html/graphics/img/8-bitcoin-cash-accepted-here-orange-medium.png deleted file mode 100644 index 63cc31db..00000000 Binary files a/html/graphics/img/8-bitcoin-cash-accepted-here-orange-medium.png and /dev/null differ diff --git a/html/graphics/img/8-bitcoin-cash-accepted-here-orange-small.png b/html/graphics/img/8-bitcoin-cash-accepted-here-orange-small.png deleted file mode 100644 index bab60f6c..00000000 Binary files a/html/graphics/img/8-bitcoin-cash-accepted-here-orange-small.png and /dev/null differ diff --git a/html/graphics/img/8-bitcoin-cash-accepted-here-orange.svg b/html/graphics/img/8-bitcoin-cash-accepted-here-orange.svg deleted file mode 100755 index b495a3c5..00000000 --- a/html/graphics/img/8-bitcoin-cash-accepted-here-orange.svg +++ /dev/null @@ -1 +0,0 @@ -8-bitcoin-cash-accepted-here-orange \ No newline at end of file diff --git a/html/graphics/img/9-bitcoin-cash-circle-full.png b/html/graphics/img/9-bitcoin-cash-circle-full.png deleted file mode 100644 index fa084a34..00000000 Binary files a/html/graphics/img/9-bitcoin-cash-circle-full.png and /dev/null differ diff --git a/html/graphics/img/9-bitcoin-cash-circle-large.png b/html/graphics/img/9-bitcoin-cash-circle-large.png deleted file mode 100644 index 0b9dec32..00000000 Binary files a/html/graphics/img/9-bitcoin-cash-circle-large.png and /dev/null differ diff --git a/html/graphics/img/9-bitcoin-cash-circle-medium.png b/html/graphics/img/9-bitcoin-cash-circle-medium.png deleted file mode 100644 index 1692a9f5..00000000 Binary files a/html/graphics/img/9-bitcoin-cash-circle-medium.png and /dev/null differ diff --git a/html/graphics/img/9-bitcoin-cash-circle-small.png b/html/graphics/img/9-bitcoin-cash-circle-small.png deleted file mode 100644 index af349224..00000000 Binary files a/html/graphics/img/9-bitcoin-cash-circle-small.png and /dev/null differ diff --git a/html/graphics/img/9-bitcoin-cash-circle.svg b/html/graphics/img/9-bitcoin-cash-circle.svg deleted file mode 100644 index 6949e30a..00000000 --- a/html/graphics/img/9-bitcoin-cash-circle.svg +++ /dev/null @@ -1 +0,0 @@ -9-bitcoin-cash-circle \ No newline at end of file diff --git a/html/graphics/img/Bitcoin-Cash-Logos.zip b/html/graphics/img/Bitcoin-Cash-Logos.zip deleted file mode 100644 index a6900548..00000000 Binary files a/html/graphics/img/Bitcoin-Cash-Logos.zip and /dev/null differ diff --git a/html/graphics/img/full_image_2.jpg b/html/graphics/img/full_image_2.jpg deleted file mode 100755 index 900ae400..00000000 Binary files a/html/graphics/img/full_image_2.jpg and /dev/null differ diff --git a/html/img/background.jpg b/html/img/background.jpg deleted file mode 100644 index 6f11b5dd..00000000 Binary files a/html/img/background.jpg and /dev/null differ diff --git a/html/img/background10.jpg b/html/img/background10.jpg deleted file mode 100644 index ab2657b9..00000000 Binary files a/html/img/background10.jpg and /dev/null differ diff --git a/html/img/background11.jpg b/html/img/background11.jpg deleted file mode 100644 index 3ee0bbeb..00000000 Binary files a/html/img/background11.jpg and /dev/null differ diff --git a/html/img/background12.jpg b/html/img/background12.jpg deleted file mode 100644 index 91a5b6f1..00000000 Binary files a/html/img/background12.jpg and /dev/null differ diff --git a/html/img/background13.jpg b/html/img/background13.jpg deleted file mode 100644 index 1cce5fff..00000000 Binary files a/html/img/background13.jpg and /dev/null differ diff --git a/html/img/background2.jpg b/html/img/background2.jpg deleted file mode 100644 index e78e0c1d..00000000 Binary files a/html/img/background2.jpg and /dev/null differ diff --git a/html/img/background3.jpg b/html/img/background3.jpg deleted file mode 100644 index 01ccbd22..00000000 Binary files a/html/img/background3.jpg and /dev/null differ diff --git a/html/img/background4.jpg b/html/img/background4.jpg deleted file mode 100644 index 1f50e77d..00000000 Binary files a/html/img/background4.jpg and /dev/null differ diff --git a/html/img/background5.jpg b/html/img/background5.jpg deleted file mode 100644 index 44a5cba1..00000000 Binary files a/html/img/background5.jpg and /dev/null differ diff --git a/html/img/background6.jpg b/html/img/background6.jpg deleted file mode 100644 index 69923fc7..00000000 Binary files a/html/img/background6.jpg and /dev/null differ diff --git a/html/img/background7.jpg b/html/img/background7.jpg deleted file mode 100644 index 1288ac1c..00000000 Binary files a/html/img/background7.jpg and /dev/null differ diff --git a/html/img/background8.jpg b/html/img/background8.jpg deleted file mode 100644 index 43e548b9..00000000 Binary files a/html/img/background8.jpg and /dev/null differ diff --git a/html/img/background9.jpg b/html/img/background9.jpg deleted file mode 100644 index 678e3704..00000000 Binary files a/html/img/background9.jpg and /dev/null differ diff --git a/html/img/bazaar.jpg b/html/img/bazaar.jpg deleted file mode 100644 index 5dd97579..00000000 Binary files a/html/img/bazaar.jpg and /dev/null differ diff --git a/html/img/bitcoincash-twitter.png b/html/img/bitcoincash-twitter.png deleted file mode 100644 index 69b431c5..00000000 Binary files a/html/img/bitcoincash-twitter.png and /dev/null differ diff --git a/html/img/bitcoincash-white.png b/html/img/bitcoincash-white.png deleted file mode 100644 index 936d4bd1..00000000 Binary files a/html/img/bitcoincash-white.png and /dev/null differ diff --git a/html/img/bitcoincash.png b/html/img/bitcoincash.png deleted file mode 100644 index 3a1cb794..00000000 Binary files a/html/img/bitcoincash.png and /dev/null differ diff --git a/html/img/exchanges/alfacashier.png b/html/img/exchanges/alfacashier.png deleted file mode 100644 index a8d5988c..00000000 Binary files a/html/img/exchanges/alfacashier.png and /dev/null differ diff --git a/html/img/exchanges/bestrate.png b/html/img/exchanges/bestrate.png deleted file mode 100644 index 0fec88ec..00000000 Binary files a/html/img/exchanges/bestrate.png and /dev/null differ diff --git a/html/img/exchanges/binance.png b/html/img/exchanges/binance.png deleted file mode 100644 index 97a3d815..00000000 Binary files a/html/img/exchanges/binance.png and /dev/null differ diff --git a/html/img/exchanges/bitbay.png b/html/img/exchanges/bitbay.png deleted file mode 100644 index 3d48fb7f..00000000 Binary files a/html/img/exchanges/bitbay.png and /dev/null differ diff --git a/html/img/exchanges/bitcoinde.png b/html/img/exchanges/bitcoinde.png deleted file mode 100644 index f4e656e1..00000000 Binary files a/html/img/exchanges/bitcoinde.png and /dev/null differ diff --git a/html/img/exchanges/bitcoinvietnam.png b/html/img/exchanges/bitcoinvietnam.png deleted file mode 100644 index f138d1af..00000000 Binary files a/html/img/exchanges/bitcoinvietnam.png and /dev/null differ diff --git a/html/img/exchanges/bitfinex.png b/html/img/exchanges/bitfinex.png deleted file mode 100644 index 8b06f75d..00000000 Binary files a/html/img/exchanges/bitfinex.png and /dev/null differ diff --git a/html/img/exchanges/bitflyer.png b/html/img/exchanges/bitflyer.png deleted file mode 100644 index dfb820de..00000000 Binary files a/html/img/exchanges/bitflyer.png and /dev/null differ diff --git a/html/img/exchanges/bithumb.png b/html/img/exchanges/bithumb.png deleted file mode 100644 index 595f5d3e..00000000 Binary files a/html/img/exchanges/bithumb.png and /dev/null differ diff --git a/html/img/exchanges/bitstamp.png b/html/img/exchanges/bitstamp.png deleted file mode 100644 index b9a7d152..00000000 Binary files a/html/img/exchanges/bitstamp.png and /dev/null differ diff --git a/html/img/exchanges/bitstarex.png b/html/img/exchanges/bitstarex.png deleted file mode 100644 index 8929704a..00000000 Binary files a/html/img/exchanges/bitstarex.png and /dev/null differ diff --git a/html/img/exchanges/bittrex.png b/html/img/exchanges/bittrex.png deleted file mode 100644 index b6340734..00000000 Binary files a/html/img/exchanges/bittrex.png and /dev/null differ diff --git a/html/img/exchanges/btcbox.png b/html/img/exchanges/btcbox.png deleted file mode 100644 index 753d360a..00000000 Binary files a/html/img/exchanges/btcbox.png and /dev/null differ diff --git a/html/img/exchanges/btcpop.png b/html/img/exchanges/btcpop.png deleted file mode 100644 index 79fc669b..00000000 Binary files a/html/img/exchanges/btcpop.png and /dev/null differ diff --git a/html/img/exchanges/bxinth.png b/html/img/exchanges/bxinth.png deleted file mode 100644 index 3deef3f6..00000000 Binary files a/html/img/exchanges/bxinth.png and /dev/null differ diff --git a/html/img/exchanges/cexio.png b/html/img/exchanges/cexio.png deleted file mode 100644 index cc9fb08e..00000000 Binary files a/html/img/exchanges/cexio.png and /dev/null differ diff --git a/html/img/exchanges/changelly.png b/html/img/exchanges/changelly.png deleted file mode 100644 index 87933be5..00000000 Binary files a/html/img/exchanges/changelly.png and /dev/null differ diff --git a/html/img/exchanges/changenow.png b/html/img/exchanges/changenow.png deleted file mode 100644 index b1a5bf1e..00000000 Binary files a/html/img/exchanges/changenow.png and /dev/null differ diff --git a/html/img/exchanges/coinbase.png b/html/img/exchanges/coinbase.png deleted file mode 100644 index 375d81d6..00000000 Binary files a/html/img/exchanges/coinbase.png and /dev/null differ diff --git a/html/img/exchanges/coinex.png b/html/img/exchanges/coinex.png deleted file mode 100644 index 82f8e1d4..00000000 Binary files a/html/img/exchanges/coinex.png and /dev/null differ diff --git a/html/img/exchanges/coinfalcon.png b/html/img/exchanges/coinfalcon.png deleted file mode 100644 index 7c48cb35..00000000 Binary files a/html/img/exchanges/coinfalcon.png and /dev/null differ diff --git a/html/img/exchanges/coinfloor.png b/html/img/exchanges/coinfloor.png deleted file mode 100644 index e8857166..00000000 Binary files a/html/img/exchanges/coinfloor.png and /dev/null differ diff --git a/html/img/exchanges/coinone.png b/html/img/exchanges/coinone.png deleted file mode 100644 index cfaae858..00000000 Binary files a/html/img/exchanges/coinone.png and /dev/null differ diff --git a/html/img/exchanges/coinwale.png b/html/img/exchanges/coinwale.png deleted file mode 100644 index 1731d6c1..00000000 Binary files a/html/img/exchanges/coinwale.png and /dev/null differ diff --git a/html/img/exchanges/etoro.png b/html/img/exchanges/etoro.png deleted file mode 100644 index 2c7020e9..00000000 Binary files a/html/img/exchanges/etoro.png and /dev/null differ diff --git a/html/img/exchanges/evercoin.png b/html/img/exchanges/evercoin.png deleted file mode 100644 index d86e8c9d..00000000 Binary files a/html/img/exchanges/evercoin.png and /dev/null differ diff --git a/html/img/exchanges/exmo.png b/html/img/exchanges/exmo.png deleted file mode 100644 index f433905e..00000000 Binary files a/html/img/exchanges/exmo.png and /dev/null differ diff --git a/html/img/exchanges/gdax.png b/html/img/exchanges/gdax.png deleted file mode 100644 index 4dcbb344..00000000 Binary files a/html/img/exchanges/gdax.png and /dev/null differ diff --git a/html/img/exchanges/hitbtc.png b/html/img/exchanges/hitbtc.png deleted file mode 100644 index b90a61b7..00000000 Binary files a/html/img/exchanges/hitbtc.png and /dev/null differ diff --git a/html/img/exchanges/houbi.png b/html/img/exchanges/houbi.png deleted file mode 100644 index 9e992bbb..00000000 Binary files a/html/img/exchanges/houbi.png and /dev/null differ diff --git a/html/img/exchanges/independentreserve.png b/html/img/exchanges/independentreserve.png deleted file mode 100644 index 9a7f09a3..00000000 Binary files a/html/img/exchanges/independentreserve.png and /dev/null differ diff --git a/html/img/exchanges/karsha.png b/html/img/exchanges/karsha.png deleted file mode 100644 index d6843628..00000000 Binary files a/html/img/exchanges/karsha.png and /dev/null differ diff --git a/html/img/exchanges/kex.png b/html/img/exchanges/kex.png deleted file mode 100644 index 102f0cd3..00000000 Binary files a/html/img/exchanges/kex.png and /dev/null differ diff --git a/html/img/exchanges/korbit.png b/html/img/exchanges/korbit.png deleted file mode 100644 index 38435d40..00000000 Binary files a/html/img/exchanges/korbit.png and /dev/null differ diff --git a/html/img/exchanges/kraken.png b/html/img/exchanges/kraken.png deleted file mode 100644 index cf452e9e..00000000 Binary files a/html/img/exchanges/kraken.png and /dev/null differ diff --git a/html/img/exchanges/localbitcoincash.png b/html/img/exchanges/localbitcoincash.png deleted file mode 100644 index dec40d38..00000000 Binary files a/html/img/exchanges/localbitcoincash.png and /dev/null differ diff --git a/html/img/exchanges/mercadobitcoin.png b/html/img/exchanges/mercadobitcoin.png deleted file mode 100644 index 32c2f606..00000000 Binary files a/html/img/exchanges/mercadobitcoin.png and /dev/null differ diff --git a/html/img/exchanges/ntrust.png b/html/img/exchanges/ntrust.png deleted file mode 100644 index 90d1a63b..00000000 Binary files a/html/img/exchanges/ntrust.png and /dev/null differ diff --git a/html/img/exchanges/poloniex.png b/html/img/exchanges/poloniex.png deleted file mode 100644 index 8db4cec2..00000000 Binary files a/html/img/exchanges/poloniex.png and /dev/null differ diff --git a/html/img/exchanges/quadrigacx.png b/html/img/exchanges/quadrigacx.png deleted file mode 100644 index 0050fb74..00000000 Binary files a/html/img/exchanges/quadrigacx.png and /dev/null differ diff --git a/html/img/exchanges/shapeshift.png b/html/img/exchanges/shapeshift.png deleted file mode 100644 index fe565c67..00000000 Binary files a/html/img/exchanges/shapeshift.png and /dev/null differ diff --git a/html/img/exchanges/simplefx.png b/html/img/exchanges/simplefx.png deleted file mode 100644 index 79223cd4..00000000 Binary files a/html/img/exchanges/simplefx.png and /dev/null differ diff --git a/html/img/exchanges/surbtc.png b/html/img/exchanges/surbtc.png deleted file mode 100644 index 84cd768d..00000000 Binary files a/html/img/exchanges/surbtc.png and /dev/null differ diff --git a/html/img/exchanges/therock.png b/html/img/exchanges/therock.png deleted file mode 100644 index 968faf80..00000000 Binary files a/html/img/exchanges/therock.png and /dev/null differ diff --git a/html/img/exchanges/toubi.png b/html/img/exchanges/toubi.png deleted file mode 100644 index 7c6a3514..00000000 Binary files a/html/img/exchanges/toubi.png and /dev/null differ diff --git a/html/img/exchanges/uphold.png b/html/img/exchanges/uphold.png deleted file mode 100644 index 64824356..00000000 Binary files a/html/img/exchanges/uphold.png and /dev/null differ diff --git a/html/img/exchanges/viabtc.png b/html/img/exchanges/viabtc.png deleted file mode 100644 index 4c293b23..00000000 Binary files a/html/img/exchanges/viabtc.png and /dev/null differ diff --git a/html/img/logo-dark.png b/html/img/logo-dark.png deleted file mode 100644 index fd6e2669..00000000 Binary files a/html/img/logo-dark.png and /dev/null differ diff --git a/html/img/projects/acceptbitcoincash.png b/html/img/projects/acceptbitcoincash.png deleted file mode 100644 index 5708d099..00000000 Binary files a/html/img/projects/acceptbitcoincash.png and /dev/null differ diff --git a/html/img/projects/awesomebitcoincash.png b/html/img/projects/awesomebitcoincash.png deleted file mode 100644 index 37c460a9..00000000 Binary files a/html/img/projects/awesomebitcoincash.png and /dev/null differ diff --git a/html/img/projects/bitbox.png b/html/img/projects/bitbox.png deleted file mode 100644 index d3ce87d5..00000000 Binary files a/html/img/projects/bitbox.png and /dev/null differ diff --git a/html/img/projects/cashshuffle.png b/html/img/projects/cashshuffle.png deleted file mode 100644 index 8e879181..00000000 Binary files a/html/img/projects/cashshuffle.png and /dev/null differ diff --git a/html/img/projects/joystream.png b/html/img/projects/joystream.png deleted file mode 100644 index 4e823d3f..00000000 Binary files a/html/img/projects/joystream.png and /dev/null differ diff --git a/html/img/projects/learnbitcoincash.png b/html/img/projects/learnbitcoincash.png deleted file mode 100644 index 8092083b..00000000 Binary files a/html/img/projects/learnbitcoincash.png and /dev/null differ diff --git a/html/img/projects/marcocoino.png b/html/img/projects/marcocoino.png deleted file mode 100644 index 0e75368f..00000000 Binary files a/html/img/projects/marcocoino.png and /dev/null differ diff --git a/html/img/projects/openbazaar.png b/html/img/projects/openbazaar.png deleted file mode 100644 index e4bf221a..00000000 Binary files a/html/img/projects/openbazaar.png and /dev/null differ diff --git a/html/img/projects/pompler.png b/html/img/projects/pompler.png deleted file mode 100644 index 62a2d3fe..00000000 Binary files a/html/img/projects/pompler.png and /dev/null differ diff --git a/html/img/projects/satoshidice.png b/html/img/projects/satoshidice.png deleted file mode 100644 index 50e592d9..00000000 Binary files a/html/img/projects/satoshidice.png and /dev/null differ diff --git a/html/img/projects/thebitcoincashfund.png b/html/img/projects/thebitcoincashfund.png deleted file mode 100644 index bca277c4..00000000 Binary files a/html/img/projects/thebitcoincashfund.png and /dev/null differ diff --git a/html/img/projects/xcpcash.png b/html/img/projects/xcpcash.png deleted file mode 100644 index 2fc37071..00000000 Binary files a/html/img/projects/xcpcash.png and /dev/null differ diff --git a/html/img/projects/yours.png b/html/img/projects/yours.png deleted file mode 100644 index 507522c0..00000000 Binary files a/html/img/projects/yours.png and /dev/null differ diff --git a/html/img/services/alfacoins.png b/html/img/services/alfacoins.png deleted file mode 100644 index 41bb8038..00000000 Binary files a/html/img/services/alfacoins.png and /dev/null differ diff --git a/html/img/services/alfatopme.png b/html/img/services/alfatopme.png deleted file mode 100644 index 5674d14a..00000000 Binary files a/html/img/services/alfatopme.png and /dev/null differ diff --git a/html/img/services/bitcoinrewards.png b/html/img/services/bitcoinrewards.png deleted file mode 100644 index 6ab574d8..00000000 Binary files a/html/img/services/bitcoinrewards.png and /dev/null differ diff --git a/html/img/services/blockchair.png b/html/img/services/blockchair.png deleted file mode 100644 index a0420c8b..00000000 Binary files a/html/img/services/blockchair.png and /dev/null differ diff --git a/html/img/services/blockdozer.png b/html/img/services/blockdozer.png deleted file mode 100644 index 673002d0..00000000 Binary files a/html/img/services/blockdozer.png and /dev/null differ diff --git a/html/img/services/chaintip.png b/html/img/services/chaintip.png deleted file mode 100644 index 22940da1..00000000 Binary files a/html/img/services/chaintip.png and /dev/null differ diff --git a/html/img/services/coindance.png b/html/img/services/coindance.png deleted file mode 100644 index d30e6b56..00000000 Binary files a/html/img/services/coindance.png and /dev/null differ diff --git a/html/img/services/coingate.png b/html/img/services/coingate.png deleted file mode 100644 index 89ec2728..00000000 Binary files a/html/img/services/coingate.png and /dev/null differ diff --git a/html/img/services/coinify.png b/html/img/services/coinify.png deleted file mode 100644 index c956d6d4..00000000 Binary files a/html/img/services/coinify.png and /dev/null differ diff --git a/html/img/services/coinmix.png b/html/img/services/coinmix.png deleted file mode 100644 index 79229b2a..00000000 Binary files a/html/img/services/coinmix.png and /dev/null differ diff --git a/html/img/services/coinpayments.png b/html/img/services/coinpayments.png deleted file mode 100644 index 7b76489b..00000000 Binary files a/html/img/services/coinpayments.png and /dev/null differ diff --git a/html/img/services/cointext.png b/html/img/services/cointext.png deleted file mode 100644 index d97fa76d..00000000 Binary files a/html/img/services/cointext.png and /dev/null differ diff --git a/html/img/services/gourl.png b/html/img/services/gourl.png deleted file mode 100644 index 3b156789..00000000 Binary files a/html/img/services/gourl.png and /dev/null differ diff --git a/html/img/services/livingroomofsatoshi.png b/html/img/services/livingroomofsatoshi.png deleted file mode 100644 index a37596dc..00000000 Binary files a/html/img/services/livingroomofsatoshi.png and /dev/null differ diff --git a/html/img/services/piixpay.png b/html/img/services/piixpay.png deleted file mode 100644 index 8192b583..00000000 Binary files a/html/img/services/piixpay.png and /dev/null differ diff --git a/html/img/services/rocketr.png b/html/img/services/rocketr.png deleted file mode 100644 index e9a9e8c5..00000000 Binary files a/html/img/services/rocketr.png and /dev/null differ diff --git a/html/img/services/tippr.png b/html/img/services/tippr.png deleted file mode 100644 index d8766419..00000000 Binary files a/html/img/services/tippr.png and /dev/null differ diff --git a/html/img/services/viabtc.png b/html/img/services/viabtc.png deleted file mode 100644 index 089df0ec..00000000 Binary files a/html/img/services/viabtc.png and /dev/null differ diff --git a/html/img/wallets/bitcoinabc.png b/html/img/wallets/bitcoinabc.png deleted file mode 100644 index 0ae58f41..00000000 Binary files a/html/img/wallets/bitcoinabc.png and /dev/null differ diff --git a/html/img/wallets/bitcoincashwallet.png b/html/img/wallets/bitcoincashwallet.png deleted file mode 100644 index 3934e468..00000000 Binary files a/html/img/wallets/bitcoincashwallet.png and /dev/null differ diff --git a/html/img/wallets/bitcoindotcom.png b/html/img/wallets/bitcoindotcom.png deleted file mode 100644 index 78fbc8e1..00000000 Binary files a/html/img/wallets/bitcoindotcom.png and /dev/null differ diff --git a/html/img/wallets/bitcoinindia.png b/html/img/wallets/bitcoinindia.png deleted file mode 100644 index 1b708525..00000000 Binary files a/html/img/wallets/bitcoinindia.png and /dev/null differ diff --git a/html/img/wallets/bitcoinunlimited.png b/html/img/wallets/bitcoinunlimited.png deleted file mode 100644 index e863def8..00000000 Binary files a/html/img/wallets/bitcoinunlimited.png and /dev/null differ diff --git a/html/img/wallets/bitcoinxt.png b/html/img/wallets/bitcoinxt.png deleted file mode 100644 index f401a92e..00000000 Binary files a/html/img/wallets/bitcoinxt.png and /dev/null differ diff --git a/html/img/wallets/bitpay.png b/html/img/wallets/bitpay.png deleted file mode 100644 index 1564e3d6..00000000 Binary files a/html/img/wallets/bitpay.png and /dev/null differ diff --git a/html/img/wallets/bitprim.png b/html/img/wallets/bitprim.png deleted file mode 100644 index 693bd9cc..00000000 Binary files a/html/img/wallets/bitprim.png and /dev/null differ diff --git a/html/img/wallets/bread.png b/html/img/wallets/bread.png deleted file mode 100644 index 07b4fa04..00000000 Binary files a/html/img/wallets/bread.png and /dev/null differ diff --git a/html/img/wallets/btcdotcom.png b/html/img/wallets/btcdotcom.png deleted file mode 100644 index ce552b4b..00000000 Binary files a/html/img/wallets/btcdotcom.png and /dev/null differ diff --git a/html/img/wallets/cashaddress.png b/html/img/wallets/cashaddress.png deleted file mode 100644 index 0330a4d2..00000000 Binary files a/html/img/wallets/cashaddress.png and /dev/null differ diff --git a/html/img/wallets/coinomi.png b/html/img/wallets/coinomi.png deleted file mode 100644 index a5a638df..00000000 Binary files a/html/img/wallets/coinomi.png and /dev/null differ diff --git a/html/img/wallets/coinspace.png b/html/img/wallets/coinspace.png deleted file mode 100644 index 96db9934..00000000 Binary files a/html/img/wallets/coinspace.png and /dev/null differ diff --git a/html/img/wallets/coldlar.png b/html/img/wallets/coldlar.png deleted file mode 100644 index cf6383b5..00000000 Binary files a/html/img/wallets/coldlar.png and /dev/null differ diff --git a/html/img/wallets/copay.png b/html/img/wallets/copay.png deleted file mode 100644 index 8ec64628..00000000 Binary files a/html/img/wallets/copay.png and /dev/null differ diff --git a/html/img/wallets/edge.png b/html/img/wallets/edge.png deleted file mode 100644 index 37da7cd1..00000000 Binary files a/html/img/wallets/edge.png and /dev/null differ diff --git a/html/img/wallets/electroncash.png b/html/img/wallets/electroncash.png deleted file mode 100644 index 2bd56549..00000000 Binary files a/html/img/wallets/electroncash.png and /dev/null differ diff --git a/html/img/wallets/exodus.png b/html/img/wallets/exodus.png deleted file mode 100644 index c843aa7e..00000000 Binary files a/html/img/wallets/exodus.png and /dev/null differ diff --git a/html/img/wallets/flowee.png b/html/img/wallets/flowee.png deleted file mode 100644 index 15cc999b..00000000 Binary files a/html/img/wallets/flowee.png and /dev/null differ diff --git a/html/img/wallets/freewallet.png b/html/img/wallets/freewallet.png deleted file mode 100644 index 59b96285..00000000 Binary files a/html/img/wallets/freewallet.png and /dev/null differ diff --git a/html/img/wallets/guarda.png b/html/img/wallets/guarda.png deleted file mode 100644 index 9e7f85f9..00000000 Binary files a/html/img/wallets/guarda.png and /dev/null differ diff --git a/html/img/wallets/ipayyou.png b/html/img/wallets/ipayyou.png deleted file mode 100644 index c5b74449..00000000 Binary files a/html/img/wallets/ipayyou.png and /dev/null differ diff --git a/html/img/wallets/jaxx.png b/html/img/wallets/jaxx.png deleted file mode 100644 index c15b9a27..00000000 Binary files a/html/img/wallets/jaxx.png and /dev/null differ diff --git a/html/img/wallets/keepkey.png b/html/img/wallets/keepkey.png deleted file mode 100644 index 11f8da03..00000000 Binary files a/html/img/wallets/keepkey.png and /dev/null differ diff --git a/html/img/wallets/ledger.png b/html/img/wallets/ledger.png deleted file mode 100644 index efd6a18f..00000000 Binary files a/html/img/wallets/ledger.png and /dev/null differ diff --git a/html/img/wallets/melisio.png b/html/img/wallets/melisio.png deleted file mode 100644 index 39e51868..00000000 Binary files a/html/img/wallets/melisio.png and /dev/null differ diff --git a/html/img/wallets/mobi.png b/html/img/wallets/mobi.png deleted file mode 100644 index 62a7693d..00000000 Binary files a/html/img/wallets/mobi.png and /dev/null differ diff --git a/html/img/wallets/parity.png b/html/img/wallets/parity.png deleted file mode 100644 index 70e7a02f..00000000 Binary files a/html/img/wallets/parity.png and /dev/null differ diff --git a/html/img/wallets/stashwallet.png b/html/img/wallets/stashwallet.png deleted file mode 100644 index f9c128f6..00000000 Binary files a/html/img/wallets/stashwallet.png and /dev/null differ diff --git a/html/img/wallets/strongcoin.png b/html/img/wallets/strongcoin.png deleted file mode 100644 index 35d301c8..00000000 Binary files a/html/img/wallets/strongcoin.png and /dev/null differ diff --git a/html/img/wallets/trezor.png b/html/img/wallets/trezor.png deleted file mode 100644 index 22420dc4..00000000 Binary files a/html/img/wallets/trezor.png and /dev/null differ diff --git a/html/img/wallets/unit.png b/html/img/wallets/unit.png deleted file mode 100644 index 8df3f665..00000000 Binary files a/html/img/wallets/unit.png and /dev/null differ diff --git a/html/img/wallets/walletgenerator.png b/html/img/wallets/walletgenerator.png deleted file mode 100644 index 12bc9952..00000000 Binary files a/html/img/wallets/walletgenerator.png and /dev/null differ diff --git a/html/img/wallets/webmoney.png b/html/img/wallets/webmoney.png deleted file mode 100644 index bdcd4e9c..00000000 Binary files a/html/img/wallets/webmoney.png and /dev/null differ diff --git a/html/js/bootstrap.min.js b/html/js/bootstrap.min.js deleted file mode 100755 index 133aeecb..00000000 --- a/html/js/bootstrap.min.js +++ /dev/null @@ -1,7 +0,0 @@ -/*! - * Bootstrap v3.3.5 (http://getbootstrap.com) - * Copyright 2011-2015 Twitter, Inc. - * Licensed under the MIT license - */ -if("undefined"==typeof jQuery)throw new Error("Bootstrap's JavaScript requires jQuery");+function(a){"use strict";var b=a.fn.jquery.split(" ")[0].split(".");if(b[0]<2&&b[1]<9||1==b[0]&&9==b[1]&&b[2]<1)throw new Error("Bootstrap's JavaScript requires jQuery version 1.9.1 or higher")}(jQuery),+function(a){"use strict";function b(){var a=document.createElement("bootstrap"),b={WebkitTransition:"webkitTransitionEnd",MozTransition:"transitionend",OTransition:"oTransitionEnd otransitionend",transition:"transitionend"};for(var c in b)if(void 0!==a.style[c])return{end:b[c]};return!1}a.fn.emulateTransitionEnd=function(b){var c=!1,d=this;a(this).one("bsTransitionEnd",function(){c=!0});var e=function(){c||a(d).trigger(a.support.transition.end)};return setTimeout(e,b),this},a(function(){a.support.transition=b(),a.support.transition&&(a.event.special.bsTransitionEnd={bindType:a.support.transition.end,delegateType:a.support.transition.end,handle:function(b){return a(b.target).is(this)?b.handleObj.handler.apply(this,arguments):void 0}})})}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var c=a(this),e=c.data("bs.alert");e||c.data("bs.alert",e=new d(this)),"string"==typeof b&&e[b].call(c)})}var c='[data-dismiss="alert"]',d=function(b){a(b).on("click",c,this.close)};d.VERSION="3.3.5",d.TRANSITION_DURATION=150,d.prototype.close=function(b){function c(){g.detach().trigger("closed.bs.alert").remove()}var e=a(this),f=e.attr("data-target");f||(f=e.attr("href"),f=f&&f.replace(/.*(?=#[^\s]*$)/,""));var g=a(f);b&&b.preventDefault(),g.length||(g=e.closest(".alert")),g.trigger(b=a.Event("close.bs.alert")),b.isDefaultPrevented()||(g.removeClass("in"),a.support.transition&&g.hasClass("fade")?g.one("bsTransitionEnd",c).emulateTransitionEnd(d.TRANSITION_DURATION):c())};var e=a.fn.alert;a.fn.alert=b,a.fn.alert.Constructor=d,a.fn.alert.noConflict=function(){return a.fn.alert=e,this},a(document).on("click.bs.alert.data-api",c,d.prototype.close)}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var d=a(this),e=d.data("bs.button"),f="object"==typeof b&&b;e||d.data("bs.button",e=new c(this,f)),"toggle"==b?e.toggle():b&&e.setState(b)})}var c=function(b,d){this.$element=a(b),this.options=a.extend({},c.DEFAULTS,d),this.isLoading=!1};c.VERSION="3.3.5",c.DEFAULTS={loadingText:"loading..."},c.prototype.setState=function(b){var c="disabled",d=this.$element,e=d.is("input")?"val":"html",f=d.data();b+="Text",null==f.resetText&&d.data("resetText",d[e]()),setTimeout(a.proxy(function(){d[e](null==f[b]?this.options[b]:f[b]),"loadingText"==b?(this.isLoading=!0,d.addClass(c).attr(c,c)):this.isLoading&&(this.isLoading=!1,d.removeClass(c).removeAttr(c))},this),0)},c.prototype.toggle=function(){var a=!0,b=this.$element.closest('[data-toggle="buttons"]');if(b.length){var c=this.$element.find("input");"radio"==c.prop("type")?(c.prop("checked")&&(a=!1),b.find(".active").removeClass("active"),this.$element.addClass("active")):"checkbox"==c.prop("type")&&(c.prop("checked")!==this.$element.hasClass("active")&&(a=!1),this.$element.toggleClass("active")),c.prop("checked",this.$element.hasClass("active")),a&&c.trigger("change")}else this.$element.attr("aria-pressed",!this.$element.hasClass("active")),this.$element.toggleClass("active")};var d=a.fn.button;a.fn.button=b,a.fn.button.Constructor=c,a.fn.button.noConflict=function(){return a.fn.button=d,this},a(document).on("click.bs.button.data-api",'[data-toggle^="button"]',function(c){var d=a(c.target);d.hasClass("btn")||(d=d.closest(".btn")),b.call(d,"toggle"),a(c.target).is('input[type="radio"]')||a(c.target).is('input[type="checkbox"]')||c.preventDefault()}).on("focus.bs.button.data-api blur.bs.button.data-api",'[data-toggle^="button"]',function(b){a(b.target).closest(".btn").toggleClass("focus",/^focus(in)?$/.test(b.type))})}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var d=a(this),e=d.data("bs.carousel"),f=a.extend({},c.DEFAULTS,d.data(),"object"==typeof b&&b),g="string"==typeof b?b:f.slide;e||d.data("bs.carousel",e=new c(this,f)),"number"==typeof b?e.to(b):g?e[g]():f.interval&&e.pause().cycle()})}var c=function(b,c){this.$element=a(b),this.$indicators=this.$element.find(".carousel-indicators"),this.options=c,this.paused=null,this.sliding=null,this.interval=null,this.$active=null,this.$items=null,this.options.keyboard&&this.$element.on("keydown.bs.carousel",a.proxy(this.keydown,this)),"hover"==this.options.pause&&!("ontouchstart"in document.documentElement)&&this.$element.on("mouseenter.bs.carousel",a.proxy(this.pause,this)).on("mouseleave.bs.carousel",a.proxy(this.cycle,this))};c.VERSION="3.3.5",c.TRANSITION_DURATION=600,c.DEFAULTS={interval:5e3,pause:"hover",wrap:!0,keyboard:!0},c.prototype.keydown=function(a){if(!/input|textarea/i.test(a.target.tagName)){switch(a.which){case 37:this.prev();break;case 39:this.next();break;default:return}a.preventDefault()}},c.prototype.cycle=function(b){return b||(this.paused=!1),this.interval&&clearInterval(this.interval),this.options.interval&&!this.paused&&(this.interval=setInterval(a.proxy(this.next,this),this.options.interval)),this},c.prototype.getItemIndex=function(a){return this.$items=a.parent().children(".item"),this.$items.index(a||this.$active)},c.prototype.getItemForDirection=function(a,b){var c=this.getItemIndex(b),d="prev"==a&&0===c||"next"==a&&c==this.$items.length-1;if(d&&!this.options.wrap)return b;var e="prev"==a?-1:1,f=(c+e)%this.$items.length;return this.$items.eq(f)},c.prototype.to=function(a){var b=this,c=this.getItemIndex(this.$active=this.$element.find(".item.active"));return a>this.$items.length-1||0>a?void 0:this.sliding?this.$element.one("slid.bs.carousel",function(){b.to(a)}):c==a?this.pause().cycle():this.slide(a>c?"next":"prev",this.$items.eq(a))},c.prototype.pause=function(b){return b||(this.paused=!0),this.$element.find(".next, .prev").length&&a.support.transition&&(this.$element.trigger(a.support.transition.end),this.cycle(!0)),this.interval=clearInterval(this.interval),this},c.prototype.next=function(){return this.sliding?void 0:this.slide("next")},c.prototype.prev=function(){return this.sliding?void 0:this.slide("prev")},c.prototype.slide=function(b,d){var e=this.$element.find(".item.active"),f=d||this.getItemForDirection(b,e),g=this.interval,h="next"==b?"left":"right",i=this;if(f.hasClass("active"))return this.sliding=!1;var j=f[0],k=a.Event("slide.bs.carousel",{relatedTarget:j,direction:h});if(this.$element.trigger(k),!k.isDefaultPrevented()){if(this.sliding=!0,g&&this.pause(),this.$indicators.length){this.$indicators.find(".active").removeClass("active");var l=a(this.$indicators.children()[this.getItemIndex(f)]);l&&l.addClass("active")}var m=a.Event("slid.bs.carousel",{relatedTarget:j,direction:h});return a.support.transition&&this.$element.hasClass("slide")?(f.addClass(b),f[0].offsetWidth,e.addClass(h),f.addClass(h),e.one("bsTransitionEnd",function(){f.removeClass([b,h].join(" ")).addClass("active"),e.removeClass(["active",h].join(" ")),i.sliding=!1,setTimeout(function(){i.$element.trigger(m)},0)}).emulateTransitionEnd(c.TRANSITION_DURATION)):(e.removeClass("active"),f.addClass("active"),this.sliding=!1,this.$element.trigger(m)),g&&this.cycle(),this}};var d=a.fn.carousel;a.fn.carousel=b,a.fn.carousel.Constructor=c,a.fn.carousel.noConflict=function(){return a.fn.carousel=d,this};var e=function(c){var d,e=a(this),f=a(e.attr("data-target")||(d=e.attr("href"))&&d.replace(/.*(?=#[^\s]+$)/,""));if(f.hasClass("carousel")){var g=a.extend({},f.data(),e.data()),h=e.attr("data-slide-to");h&&(g.interval=!1),b.call(f,g),h&&f.data("bs.carousel").to(h),c.preventDefault()}};a(document).on("click.bs.carousel.data-api","[data-slide]",e).on("click.bs.carousel.data-api","[data-slide-to]",e),a(window).on("load",function(){a('[data-ride="carousel"]').each(function(){var c=a(this);b.call(c,c.data())})})}(jQuery),+function(a){"use strict";function b(b){var c,d=b.attr("data-target")||(c=b.attr("href"))&&c.replace(/.*(?=#[^\s]+$)/,"");return a(d)}function c(b){return this.each(function(){var c=a(this),e=c.data("bs.collapse"),f=a.extend({},d.DEFAULTS,c.data(),"object"==typeof b&&b);!e&&f.toggle&&/show|hide/.test(b)&&(f.toggle=!1),e||c.data("bs.collapse",e=new d(this,f)),"string"==typeof b&&e[b]()})}var d=function(b,c){this.$element=a(b),this.options=a.extend({},d.DEFAULTS,c),this.$trigger=a('[data-toggle="collapse"][href="#'+b.id+'"],[data-toggle="collapse"][data-target="#'+b.id+'"]'),this.transitioning=null,this.options.parent?this.$parent=this.getParent():this.addAriaAndCollapsedClass(this.$element,this.$trigger),this.options.toggle&&this.toggle()};d.VERSION="3.3.5",d.TRANSITION_DURATION=350,d.DEFAULTS={toggle:!0},d.prototype.dimension=function(){var a=this.$element.hasClass("width");return a?"width":"height"},d.prototype.show=function(){if(!this.transitioning&&!this.$element.hasClass("in")){var b,e=this.$parent&&this.$parent.children(".panel").children(".in, .collapsing");if(!(e&&e.length&&(b=e.data("bs.collapse"),b&&b.transitioning))){var f=a.Event("show.bs.collapse");if(this.$element.trigger(f),!f.isDefaultPrevented()){e&&e.length&&(c.call(e,"hide"),b||e.data("bs.collapse",null));var g=this.dimension();this.$element.removeClass("collapse").addClass("collapsing")[g](0).attr("aria-expanded",!0),this.$trigger.removeClass("collapsed").attr("aria-expanded",!0),this.transitioning=1;var h=function(){this.$element.removeClass("collapsing").addClass("collapse in")[g](""),this.transitioning=0,this.$element.trigger("shown.bs.collapse")};if(!a.support.transition)return h.call(this);var i=a.camelCase(["scroll",g].join("-"));this.$element.one("bsTransitionEnd",a.proxy(h,this)).emulateTransitionEnd(d.TRANSITION_DURATION)[g](this.$element[0][i])}}}},d.prototype.hide=function(){if(!this.transitioning&&this.$element.hasClass("in")){var b=a.Event("hide.bs.collapse");if(this.$element.trigger(b),!b.isDefaultPrevented()){var c=this.dimension();this.$element[c](this.$element[c]())[0].offsetHeight,this.$element.addClass("collapsing").removeClass("collapse in").attr("aria-expanded",!1),this.$trigger.addClass("collapsed").attr("aria-expanded",!1),this.transitioning=1;var e=function(){this.transitioning=0,this.$element.removeClass("collapsing").addClass("collapse").trigger("hidden.bs.collapse")};return a.support.transition?void this.$element[c](0).one("bsTransitionEnd",a.proxy(e,this)).emulateTransitionEnd(d.TRANSITION_DURATION):e.call(this)}}},d.prototype.toggle=function(){this[this.$element.hasClass("in")?"hide":"show"]()},d.prototype.getParent=function(){return a(this.options.parent).find('[data-toggle="collapse"][data-parent="'+this.options.parent+'"]').each(a.proxy(function(c,d){var e=a(d);this.addAriaAndCollapsedClass(b(e),e)},this)).end()},d.prototype.addAriaAndCollapsedClass=function(a,b){var c=a.hasClass("in");a.attr("aria-expanded",c),b.toggleClass("collapsed",!c).attr("aria-expanded",c)};var e=a.fn.collapse;a.fn.collapse=c,a.fn.collapse.Constructor=d,a.fn.collapse.noConflict=function(){return a.fn.collapse=e,this},a(document).on("click.bs.collapse.data-api",'[data-toggle="collapse"]',function(d){var e=a(this);e.attr("data-target")||d.preventDefault();var f=b(e),g=f.data("bs.collapse"),h=g?"toggle":e.data();c.call(f,h)})}(jQuery),+function(a){"use strict";function b(b){var c=b.attr("data-target");c||(c=b.attr("href"),c=c&&/#[A-Za-z]/.test(c)&&c.replace(/.*(?=#[^\s]*$)/,""));var d=c&&a(c);return d&&d.length?d:b.parent()}function c(c){c&&3===c.which||(a(e).remove(),a(f).each(function(){var d=a(this),e=b(d),f={relatedTarget:this};e.hasClass("open")&&(c&&"click"==c.type&&/input|textarea/i.test(c.target.tagName)&&a.contains(e[0],c.target)||(e.trigger(c=a.Event("hide.bs.dropdown",f)),c.isDefaultPrevented()||(d.attr("aria-expanded","false"),e.removeClass("open").trigger("hidden.bs.dropdown",f))))}))}function d(b){return this.each(function(){var c=a(this),d=c.data("bs.dropdown");d||c.data("bs.dropdown",d=new g(this)),"string"==typeof b&&d[b].call(c)})}var e=".dropdown-backdrop",f='[data-toggle="dropdown"]',g=function(b){a(b).on("click.bs.dropdown",this.toggle)};g.VERSION="3.3.5",g.prototype.toggle=function(d){var e=a(this);if(!e.is(".disabled, :disabled")){var f=b(e),g=f.hasClass("open");if(c(),!g){"ontouchstart"in document.documentElement&&!f.closest(".navbar-nav").length&&a(document.createElement("div")).addClass("dropdown-backdrop").insertAfter(a(this)).on("click",c);var h={relatedTarget:this};if(f.trigger(d=a.Event("show.bs.dropdown",h)),d.isDefaultPrevented())return;e.trigger("focus").attr("aria-expanded","true"),f.toggleClass("open").trigger("shown.bs.dropdown",h)}return!1}},g.prototype.keydown=function(c){if(/(38|40|27|32)/.test(c.which)&&!/input|textarea/i.test(c.target.tagName)){var d=a(this);if(c.preventDefault(),c.stopPropagation(),!d.is(".disabled, :disabled")){var e=b(d),g=e.hasClass("open");if(!g&&27!=c.which||g&&27==c.which)return 27==c.which&&e.find(f).trigger("focus"),d.trigger("click");var h=" li:not(.disabled):visible a",i=e.find(".dropdown-menu"+h);if(i.length){var j=i.index(c.target);38==c.which&&j>0&&j--,40==c.which&&jdocument.documentElement.clientHeight;this.$element.css({paddingLeft:!this.bodyIsOverflowing&&a?this.scrollbarWidth:"",paddingRight:this.bodyIsOverflowing&&!a?this.scrollbarWidth:""})},c.prototype.resetAdjustments=function(){this.$element.css({paddingLeft:"",paddingRight:""})},c.prototype.checkScrollbar=function(){var a=window.innerWidth;if(!a){var b=document.documentElement.getBoundingClientRect();a=b.right-Math.abs(b.left)}this.bodyIsOverflowing=document.body.clientWidth
',trigger:"hover focus",title:"",delay:0,html:!1,container:!1,viewport:{selector:"body",padding:0}},c.prototype.init=function(b,c,d){if(this.enabled=!0,this.type=b,this.$element=a(c),this.options=this.getOptions(d),this.$viewport=this.options.viewport&&a(a.isFunction(this.options.viewport)?this.options.viewport.call(this,this.$element):this.options.viewport.selector||this.options.viewport),this.inState={click:!1,hover:!1,focus:!1},this.$element[0]instanceof document.constructor&&!this.options.selector)throw new Error("`selector` option must be specified when initializing "+this.type+" on the window.document object!");for(var e=this.options.trigger.split(" "),f=e.length;f--;){var g=e[f];if("click"==g)this.$element.on("click."+this.type,this.options.selector,a.proxy(this.toggle,this));else if("manual"!=g){var h="hover"==g?"mouseenter":"focusin",i="hover"==g?"mouseleave":"focusout";this.$element.on(h+"."+this.type,this.options.selector,a.proxy(this.enter,this)),this.$element.on(i+"."+this.type,this.options.selector,a.proxy(this.leave,this))}}this.options.selector?this._options=a.extend({},this.options,{trigger:"manual",selector:""}):this.fixTitle()},c.prototype.getDefaults=function(){return c.DEFAULTS},c.prototype.getOptions=function(b){return b=a.extend({},this.getDefaults(),this.$element.data(),b),b.delay&&"number"==typeof b.delay&&(b.delay={show:b.delay,hide:b.delay}),b},c.prototype.getDelegateOptions=function(){var b={},c=this.getDefaults();return this._options&&a.each(this._options,function(a,d){c[a]!=d&&(b[a]=d)}),b},c.prototype.enter=function(b){var c=b instanceof this.constructor?b:a(b.currentTarget).data("bs."+this.type);return c||(c=new this.constructor(b.currentTarget,this.getDelegateOptions()),a(b.currentTarget).data("bs."+this.type,c)),b instanceof a.Event&&(c.inState["focusin"==b.type?"focus":"hover"]=!0),c.tip().hasClass("in")||"in"==c.hoverState?void(c.hoverState="in"):(clearTimeout(c.timeout),c.hoverState="in",c.options.delay&&c.options.delay.show?void(c.timeout=setTimeout(function(){"in"==c.hoverState&&c.show()},c.options.delay.show)):c.show())},c.prototype.isInStateTrue=function(){for(var a in this.inState)if(this.inState[a])return!0;return!1},c.prototype.leave=function(b){var c=b instanceof this.constructor?b:a(b.currentTarget).data("bs."+this.type);return c||(c=new this.constructor(b.currentTarget,this.getDelegateOptions()),a(b.currentTarget).data("bs."+this.type,c)),b instanceof a.Event&&(c.inState["focusout"==b.type?"focus":"hover"]=!1),c.isInStateTrue()?void 0:(clearTimeout(c.timeout),c.hoverState="out",c.options.delay&&c.options.delay.hide?void(c.timeout=setTimeout(function(){"out"==c.hoverState&&c.hide()},c.options.delay.hide)):c.hide())},c.prototype.show=function(){var b=a.Event("show.bs."+this.type);if(this.hasContent()&&this.enabled){this.$element.trigger(b);var d=a.contains(this.$element[0].ownerDocument.documentElement,this.$element[0]);if(b.isDefaultPrevented()||!d)return;var e=this,f=this.tip(),g=this.getUID(this.type);this.setContent(),f.attr("id",g),this.$element.attr("aria-describedby",g),this.options.animation&&f.addClass("fade");var h="function"==typeof this.options.placement?this.options.placement.call(this,f[0],this.$element[0]):this.options.placement,i=/\s?auto?\s?/i,j=i.test(h);j&&(h=h.replace(i,"")||"top"),f.detach().css({top:0,left:0,display:"block"}).addClass(h).data("bs."+this.type,this),this.options.container?f.appendTo(this.options.container):f.insertAfter(this.$element),this.$element.trigger("inserted.bs."+this.type);var k=this.getPosition(),l=f[0].offsetWidth,m=f[0].offsetHeight;if(j){var n=h,o=this.getPosition(this.$viewport);h="bottom"==h&&k.bottom+m>o.bottom?"top":"top"==h&&k.top-mo.width?"left":"left"==h&&k.left-lg.top+g.height&&(e.top=g.top+g.height-i)}else{var j=b.left-f,k=b.left+f+c;jg.right&&(e.left=g.left+g.width-k)}return e},c.prototype.getTitle=function(){var a,b=this.$element,c=this.options;return a=b.attr("data-original-title")||("function"==typeof c.title?c.title.call(b[0]):c.title)},c.prototype.getUID=function(a){do a+=~~(1e6*Math.random());while(document.getElementById(a));return a},c.prototype.tip=function(){if(!this.$tip&&(this.$tip=a(this.options.template),1!=this.$tip.length))throw new Error(this.type+" `template` option must consist of exactly 1 top-level element!");return this.$tip},c.prototype.arrow=function(){return this.$arrow=this.$arrow||this.tip().find(".tooltip-arrow")},c.prototype.enable=function(){this.enabled=!0},c.prototype.disable=function(){this.enabled=!1},c.prototype.toggleEnabled=function(){this.enabled=!this.enabled},c.prototype.toggle=function(b){var c=this;b&&(c=a(b.currentTarget).data("bs."+this.type),c||(c=new this.constructor(b.currentTarget,this.getDelegateOptions()),a(b.currentTarget).data("bs."+this.type,c))),b?(c.inState.click=!c.inState.click,c.isInStateTrue()?c.enter(c):c.leave(c)):c.tip().hasClass("in")?c.leave(c):c.enter(c)},c.prototype.destroy=function(){var a=this;clearTimeout(this.timeout),this.hide(function(){a.$element.off("."+a.type).removeData("bs."+a.type),a.$tip&&a.$tip.detach(),a.$tip=null,a.$arrow=null,a.$viewport=null})};var d=a.fn.tooltip;a.fn.tooltip=b,a.fn.tooltip.Constructor=c,a.fn.tooltip.noConflict=function(){return a.fn.tooltip=d,this}}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var d=a(this),e=d.data("bs.popover"),f="object"==typeof b&&b;(e||!/destroy|hide/.test(b))&&(e||d.data("bs.popover",e=new c(this,f)),"string"==typeof b&&e[b]())})}var c=function(a,b){this.init("popover",a,b)};if(!a.fn.tooltip)throw new Error("Popover requires tooltip.js");c.VERSION="3.3.5",c.DEFAULTS=a.extend({},a.fn.tooltip.Constructor.DEFAULTS,{placement:"right",trigger:"click",content:"",template:''}),c.prototype=a.extend({},a.fn.tooltip.Constructor.prototype),c.prototype.constructor=c,c.prototype.getDefaults=function(){return c.DEFAULTS},c.prototype.setContent=function(){var a=this.tip(),b=this.getTitle(),c=this.getContent();a.find(".popover-title")[this.options.html?"html":"text"](b),a.find(".popover-content").children().detach().end()[this.options.html?"string"==typeof c?"html":"append":"text"](c),a.removeClass("fade top bottom left right in"),a.find(".popover-title").html()||a.find(".popover-title").hide()},c.prototype.hasContent=function(){return this.getTitle()||this.getContent()},c.prototype.getContent=function(){var a=this.$element,b=this.options;return a.attr("data-content")||("function"==typeof b.content?b.content.call(a[0]):b.content)},c.prototype.arrow=function(){return this.$arrow=this.$arrow||this.tip().find(".arrow")};var d=a.fn.popover;a.fn.popover=b,a.fn.popover.Constructor=c,a.fn.popover.noConflict=function(){return a.fn.popover=d,this}}(jQuery),+function(a){"use strict";function b(c,d){this.$body=a(document.body),this.$scrollElement=a(a(c).is(document.body)?window:c),this.options=a.extend({},b.DEFAULTS,d),this.selector=(this.options.target||"")+" .nav li > a",this.offsets=[],this.targets=[],this.activeTarget=null,this.scrollHeight=0,this.$scrollElement.on("scroll.bs.scrollspy",a.proxy(this.process,this)),this.refresh(),this.process()}function c(c){return this.each(function(){var d=a(this),e=d.data("bs.scrollspy"),f="object"==typeof c&&c;e||d.data("bs.scrollspy",e=new b(this,f)),"string"==typeof c&&e[c]()})}b.VERSION="3.3.5",b.DEFAULTS={offset:10},b.prototype.getScrollHeight=function(){return this.$scrollElement[0].scrollHeight||Math.max(this.$body[0].scrollHeight,document.documentElement.scrollHeight)},b.prototype.refresh=function(){var b=this,c="offset",d=0;this.offsets=[],this.targets=[],this.scrollHeight=this.getScrollHeight(),a.isWindow(this.$scrollElement[0])||(c="position",d=this.$scrollElement.scrollTop()),this.$body.find(this.selector).map(function(){var b=a(this),e=b.data("target")||b.attr("href"),f=/^#./.test(e)&&a(e);return f&&f.length&&f.is(":visible")&&[[f[c]().top+d,e]]||null}).sort(function(a,b){return a[0]-b[0]}).each(function(){b.offsets.push(this[0]),b.targets.push(this[1])})},b.prototype.process=function(){var a,b=this.$scrollElement.scrollTop()+this.options.offset,c=this.getScrollHeight(),d=this.options.offset+c-this.$scrollElement.height(),e=this.offsets,f=this.targets,g=this.activeTarget;if(this.scrollHeight!=c&&this.refresh(),b>=d)return g!=(a=f[f.length-1])&&this.activate(a);if(g&&b=e[a]&&(void 0===e[a+1]||b .dropdown-menu > .active").removeClass("active").end().find('[data-toggle="tab"]').attr("aria-expanded",!1),b.addClass("active").find('[data-toggle="tab"]').attr("aria-expanded",!0),h?(b[0].offsetWidth,b.addClass("in")):b.removeClass("fade"),b.parent(".dropdown-menu").length&&b.closest("li.dropdown").addClass("active").end().find('[data-toggle="tab"]').attr("aria-expanded",!0),e&&e()}var g=d.find("> .active"),h=e&&a.support.transition&&(g.length&&g.hasClass("fade")||!!d.find("> .fade").length);g.length&&h?g.one("bsTransitionEnd",f).emulateTransitionEnd(c.TRANSITION_DURATION):f(),g.removeClass("in")};var d=a.fn.tab;a.fn.tab=b,a.fn.tab.Constructor=c,a.fn.tab.noConflict=function(){return a.fn.tab=d,this};var e=function(c){c.preventDefault(),b.call(a(this),"show")};a(document).on("click.bs.tab.data-api",'[data-toggle="tab"]',e).on("click.bs.tab.data-api",'[data-toggle="pill"]',e)}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var d=a(this),e=d.data("bs.affix"),f="object"==typeof b&&b;e||d.data("bs.affix",e=new c(this,f)),"string"==typeof b&&e[b]()})}var c=function(b,d){this.options=a.extend({},c.DEFAULTS,d),this.$target=a(this.options.target).on("scroll.bs.affix.data-api",a.proxy(this.checkPosition,this)).on("click.bs.affix.data-api",a.proxy(this.checkPositionWithEventLoop,this)),this.$element=a(b),this.affixed=null,this.unpin=null,this.pinnedOffset=null,this.checkPosition()};c.VERSION="3.3.5",c.RESET="affix affix-top affix-bottom",c.DEFAULTS={offset:0,target:window},c.prototype.getState=function(a,b,c,d){var e=this.$target.scrollTop(),f=this.$element.offset(),g=this.$target.height();if(null!=c&&"top"==this.affixed)return c>e?"top":!1;if("bottom"==this.affixed)return null!=c?e+this.unpin<=f.top?!1:"bottom":a-d>=e+g?!1:"bottom";var h=null==this.affixed,i=h?e:f.top,j=h?g:b;return null!=c&&c>=e?"top":null!=d&&i+j>=a-d?"bottom":!1},c.prototype.getPinnedOffset=function(){if(this.pinnedOffset)return this.pinnedOffset;this.$element.removeClass(c.RESET).addClass("affix");var a=this.$target.scrollTop(),b=this.$element.offset();return this.pinnedOffset=b.top-a},c.prototype.checkPositionWithEventLoop=function(){setTimeout(a.proxy(this.checkPosition,this),1)},c.prototype.checkPosition=function(){if(this.$element.is(":visible")){var b=this.$element.height(),d=this.options.offset,e=d.top,f=d.bottom,g=Math.max(a(document).height(),a(document.body).height());"object"!=typeof d&&(f=e=d),"function"==typeof e&&(e=d.top(this.$element)),"function"==typeof f&&(f=d.bottom(this.$element));var h=this.getState(g,b,e,f);if(this.affixed!=h){null!=this.unpin&&this.$element.css("top","");var i="affix"+(h?"-"+h:""),j=a.Event(i+".bs.affix");if(this.$element.trigger(j),j.isDefaultPrevented())return;this.affixed=h,this.unpin="bottom"==h?this.getPinnedOffset():null,this.$element.removeClass(c.RESET).addClass(i).trigger(i.replace("affix","affixed")+".bs.affix")}"bottom"==h&&this.$element.offset({top:g-b-f})}};var d=a.fn.affix;a.fn.affix=b,a.fn.affix.Constructor=c,a.fn.affix.noConflict=function(){return a.fn.affix=d,this},a(window).on("load",function(){a('[data-spy="affix"]').each(function(){var c=a(this),d=c.data();d.offset=d.offset||{},null!=d.offsetBottom&&(d.offset.bottom=d.offsetBottom),null!=d.offsetTop&&(d.offset.top=d.offsetTop),b.call(c,d)})})}(jQuery); \ No newline at end of file diff --git a/html/js/countdown.min.js b/html/js/countdown.min.js deleted file mode 100644 index 70444d58..00000000 --- a/html/js/countdown.min.js +++ /dev/null @@ -1,22 +0,0 @@ -/*! - * The Final Countdown for jQuery v2.2.0 (http://hilios.github.io/jQuery.countdown/) - * Copyright (c) 2016 Edson Hilios - * - * Permission is hereby granted, free of charge, to any person obtaining a copy of - * this software and associated documentation files (the "Software"), to deal in - * the Software without restriction, including without limitation the rights to - * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of - * the Software, and to permit persons to whom the Software is furnished to do so, - * subject to the following conditions: - * - * The above copyright notice and this permission notice shall be included in all - * copies or substantial portions of the Software. - * - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS - * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR - * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER - * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN - * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - */ -!function(a){"use strict";"function"==typeof define&&define.amd?define(["jquery"],a):a(jQuery)}(function(a){"use strict";function b(a){if(a instanceof Date)return a;if(String(a).match(g))return String(a).match(/^[0-9]*$/)&&(a=Number(a)),String(a).match(/\-/)&&(a=String(a).replace(/\-/g,"/")),new Date(a);throw new Error("Couldn't cast `"+a+"` to a date object.")}function c(a){var b=a.toString().replace(/([.?*+^$[\]\\(){}|-])/g,"\\$1");return new RegExp(b)}function d(a){return function(b){var d=b.match(/%(-|!)?[A-Z]{1}(:[^;]+;)?/gi);if(d)for(var f=0,g=d.length;f1?c:d}var f=[],g=[],h={precision:100,elapse:!1,defer:!1};g.push(/^[0-9]*$/.source),g.push(/([0-9]{1,2}\/){2}[0-9]{4}( [0-9]{1,2}(:[0-9]{2}){2})?/.source),g.push(/[0-9]{4}([\/\-][0-9]{1,2}){2}( [0-9]{1,2}(:[0-9]{2}){2})?/.source),g=new RegExp(g.join("|"));var i={Y:"years",m:"months",n:"daysToMonth",d:"daysToWeek",w:"weeks",W:"weeksToMonth",H:"hours",M:"minutes",S:"seconds",D:"totalDays",I:"totalHours",N:"totalMinutes",T:"totalSeconds"},j=function(b,c,d){this.el=b,this.$el=a(b),this.interval=null,this.offset={},this.options=a.extend({},h),this.instanceNumber=f.length,f.push(this),this.$el.data("countdown-instance",this.instanceNumber),d&&("function"==typeof d?(this.$el.on("update.countdown",d),this.$el.on("stoped.countdown",d),this.$el.on("finish.countdown",d)):this.options=a.extend({},h,d)),this.setFinalDate(c),this.options.defer===!1&&this.start()};a.extend(j.prototype,{start:function(){null!==this.interval&&clearInterval(this.interval);var a=this;this.update(),this.interval=setInterval(function(){a.update.call(a)},this.options.precision)},stop:function(){clearInterval(this.interval),this.interval=null,this.dispatchEvent("stoped")},toggle:function(){this.interval?this.stop():this.start()},pause:function(){this.stop()},resume:function(){this.start()},remove:function(){this.stop.call(this),f[this.instanceNumber]=null,delete this.$el.data().countdownInstance},setFinalDate:function(a){this.finalDate=b(a)},update:function(){if(0===this.$el.closest("html").length)return void this.remove();var b,c=void 0!==a._data(this.el,"events"),d=new Date;b=this.finalDate.getTime()-d.getTime(),b=Math.ceil(b/1e3),b=!this.options.elapse&&b<0?0:Math.abs(b),this.totalSecsLeft!==b&&c&&(this.totalSecsLeft=b,this.elapsed=d>=this.finalDate,this.offset={seconds:this.totalSecsLeft%60,minutes:Math.floor(this.totalSecsLeft/60)%60,hours:Math.floor(this.totalSecsLeft/60/60)%24,days:Math.floor(this.totalSecsLeft/60/60/24)%7,daysToWeek:Math.floor(this.totalSecsLeft/60/60/24)%7,daysToMonth:Math.floor(this.totalSecsLeft/60/60/24%30.4368),weeks:Math.floor(this.totalSecsLeft/60/60/24/7),weeksToMonth:Math.floor(this.totalSecsLeft/60/60/24/7)%4,months:Math.floor(this.totalSecsLeft/60/60/24/30.4368),years:Math.abs(this.finalDate.getFullYear()-d.getFullYear()),totalDays:Math.floor(this.totalSecsLeft/60/60/24),totalHours:Math.floor(this.totalSecsLeft/60/60),totalMinutes:Math.floor(this.totalSecsLeft/60),totalSeconds:this.totalSecsLeft},this.options.elapse||0!==this.totalSecsLeft?this.dispatchEvent("update"):(this.stop(),this.dispatchEvent("finish")))},dispatchEvent:function(b){var c=a.Event(b+".countdown");c.finalDate=this.finalDate,c.elapsed=this.elapsed,c.offset=a.extend({},this.offset),c.strftime=d(this.offset),this.$el.trigger(c)}}),a.fn.countdown=function(){var b=Array.prototype.slice.call(arguments,0);return this.each(function(){var c=a(this).data("countdown-instance");if(void 0!==c){var d=f[c],e=b[0];j.prototype.hasOwnProperty(e)?d[e].apply(d,b.slice(1)):null===String(e).match(/^[$A-Z_][0-9A-Z_$]*$/i)?(d.setFinalDate.call(d,e),d.start()):a.error("Method %s does not exist on jQuery.countdown".replace(/\%s/gi,e))}else new j(this,b[0],b[1])})}}); \ No newline at end of file diff --git a/html/js/datepicker.js b/html/js/datepicker.js deleted file mode 100644 index 076d42f9..00000000 --- a/html/js/datepicker.js +++ /dev/null @@ -1,13 +0,0 @@ -/*! - * pickadate.js v3.5.6, 2015/04/20 - * By Amsul, http://amsul.ca - * Hosted on http://amsul.github.io/pickadate.js - * Licensed under MIT - */ -!function(a){"function"==typeof define&&define.amd?define("picker",["jquery"],a):"object"==typeof exports?module.exports=a(require("jquery")):this.Picker=a(jQuery)}(function(a){function b(f,g,i,m){function n(){return b._.node("div",b._.node("div",b._.node("div",b._.node("div",B.component.nodes(w.open),y.box),y.wrap),y.frame),y.holder,'tabindex="-1"')}function o(){z.data(g,B).addClass(y.input).val(z.data("value")?B.get("select",x.format):f.value),x.editable||z.on("focus."+w.id+" click."+w.id,function(a){a.preventDefault(),B.open()}).on("keydown."+w.id,u),e(f,{haspopup:!0,expanded:!1,readonly:!1,owns:f.id+"_root"})}function p(){e(B.$root[0],"hidden",!0)}function q(){B.$holder.on({keydown:u,"focus.toOpen":t,blur:function(){z.removeClass(y.target)},focusin:function(a){B.$root.removeClass(y.focused),a.stopPropagation()},"mousedown click":function(b){var c=b.target;c!=B.$holder[0]&&(b.stopPropagation(),"mousedown"!=b.type||a(c).is("input, select, textarea, button, option")||(b.preventDefault(),B.$holder[0].focus()))}}).on("click","[data-pick], [data-nav], [data-clear], [data-close]",function(){var b=a(this),c=b.data(),d=b.hasClass(y.navDisabled)||b.hasClass(y.disabled),e=h();e=e&&(e.type||e.href),(d||e&&!a.contains(B.$root[0],e))&&B.$holder[0].focus(),!d&&c.nav?B.set("highlight",B.component.item.highlight,{nav:c.nav}):!d&&"pick"in c?(B.set("select",c.pick),x.closeOnSelect&&B.close(!0)):c.clear?(B.clear(),x.closeOnClear&&B.close(!0)):c.close&&B.close(!0)})}function r(){var b;x.hiddenName===!0?(b=f.name,f.name=""):(b=["string"==typeof x.hiddenPrefix?x.hiddenPrefix:"","string"==typeof x.hiddenSuffix?x.hiddenSuffix:"_submit"],b=b[0]+f.name+b[1]),B._hidden=a('")[0],z.on("change."+w.id,function(){B._hidden.value=f.value?B.get("select",x.formatSubmit):""})}function s(){v&&l?B.$holder.find("."+y.frame).one("transitionend",function(){B.$holder[0].focus()}):B.$holder[0].focus()}function t(a){a.stopPropagation(),z.addClass(y.target),B.$root.addClass(y.focused),B.open()}function u(a){var b=a.keyCode,c=/^(8|46)$/.test(b);return 27==b?(B.close(!0),!1):void((32==b||c||!w.open&&B.component.key[b])&&(a.preventDefault(),a.stopPropagation(),c?B.clear().close():B.open()))}if(!f)return b;var v=!1,w={id:f.id||"P"+Math.abs(~~(Math.random()*new Date))},x=i?a.extend(!0,{},i.defaults,m):m||{},y=a.extend({},b.klasses(),x.klass),z=a(f),A=function(){return this.start()},B=A.prototype={constructor:A,$node:z,start:function(){return w&&w.start?B:(w.methods={},w.start=!0,w.open=!1,w.type=f.type,f.autofocus=f==h(),f.readOnly=!x.editable,f.id=f.id||w.id,"text"!=f.type&&(f.type="text"),B.component=new i(B,x),B.$root=a('
'),p(),B.$holder=a(n()).appendTo(B.$root),q(),x.formatSubmit&&r(),o(),x.containerHidden?a(x.containerHidden).append(B._hidden):z.after(B._hidden),x.container?a(x.container).append(B.$root):z.after(B.$root),B.on({start:B.component.onStart,render:B.component.onRender,stop:B.component.onStop,open:B.component.onOpen,close:B.component.onClose,set:B.component.onSet}).on({start:x.onStart,render:x.onRender,stop:x.onStop,open:x.onOpen,close:x.onClose,set:x.onSet}),v=c(B.$holder[0]),f.autofocus&&B.open(),B.trigger("start").trigger("render"))},render:function(b){return b?(B.$holder=a(n()),q(),B.$root.html(B.$holder)):B.$root.find("."+y.box).html(B.component.nodes(w.open)),B.trigger("render")},stop:function(){return w.start?(B.close(),B._hidden&&B._hidden.parentNode.removeChild(B._hidden),B.$root.remove(),z.removeClass(y.input).removeData(g),setTimeout(function(){z.off("."+w.id)},0),f.type=w.type,f.readOnly=!1,B.trigger("stop"),w.methods={},w.start=!1,B):B},open:function(c){return w.open?B:(z.addClass(y.active),e(f,"expanded",!0),setTimeout(function(){B.$root.addClass(y.opened),e(B.$root[0],"hidden",!1)},0),c!==!1&&(w.open=!0,v&&k.css("overflow","hidden").css("padding-right","+="+d()),s(),j.on("click."+w.id+" focusin."+w.id,function(a){var b=a.target;b!=f&&b!=document&&3!=a.which&&B.close(b===B.$holder[0])}).on("keydown."+w.id,function(c){var d=c.keyCode,e=B.component.key[d],f=c.target;27==d?B.close(!0):f!=B.$holder[0]||!e&&13!=d?a.contains(B.$root[0],f)&&13==d&&(c.preventDefault(),f.click()):(c.preventDefault(),e?b._.trigger(B.component.key.go,B,[b._.trigger(e)]):B.$root.find("."+y.highlighted).hasClass(y.disabled)||(B.set("select",B.component.item.highlight),x.closeOnSelect&&B.close(!0)))})),B.trigger("open"))},close:function(a){return a&&(x.editable?f.focus():(B.$holder.off("focus.toOpen").focus(),setTimeout(function(){B.$holder.on("focus.toOpen",t)},0))),z.removeClass(y.active),e(f,"expanded",!1),setTimeout(function(){B.$root.removeClass(y.opened+" "+y.focused),e(B.$root[0],"hidden",!0)},0),w.open?(w.open=!1,v&&k.css("overflow","").css("padding-right","-="+d()),j.off("."+w.id),B.trigger("close")):B},clear:function(a){return B.set("clear",null,a)},set:function(b,c,d){var e,f,g=a.isPlainObject(b),h=g?b:{};if(d=g&&a.isPlainObject(c)?c:d||{},b){g||(h[b]=c);for(e in h)f=h[e],e in B.component.item&&(void 0===f&&(f=null),B.component.set(e,f,d)),("select"==e||"clear"==e)&&z.val("clear"==e?"":B.get(e,x.format)).trigger("change");B.render()}return d.muted?B:B.trigger("set",h)},get:function(a,c){if(a=a||"value",null!=w[a])return w[a];if("valueSubmit"==a){if(B._hidden)return B._hidden.value;a="value"}if("value"==a)return f.value;if(a in B.component.item){if("string"==typeof c){var d=B.component.get(a);return d?b._.trigger(B.component.formats.toString,B.component,[c,d]):""}return B.component.get(a)}},on:function(b,c,d){var e,f,g=a.isPlainObject(b),h=g?b:{};if(b){g||(h[b]=c);for(e in h)f=h[e],d&&(e="_"+e),w.methods[e]=w.methods[e]||[],w.methods[e].push(f)}return B},off:function(){var a,b,c=arguments;for(a=0,namesCount=c.length;a').appendTo("body"),c=b[0].offsetWidth;b.css("overflow","scroll");var d=a('
').appendTo(b),e=d[0].offsetWidth;return b.remove(),c-e}function e(b,c,d){if(a.isPlainObject(c))for(var e in c)f(b,e,c[e]);else f(b,c,d)}function f(a,b,c){a.setAttribute(("role"==b?"":"aria-")+b,c)}function g(b,c){a.isPlainObject(b)||(b={attribute:c}),c="";for(var d in b){var e=("role"==d?"":"aria-")+d,f=b[d];c+=null==f?"":e+'="'+b[d]+'"'}return c}function h(){try{return document.activeElement}catch(a){}}var i=a(window),j=a(document),k=a(document.documentElement),l=null!=document.documentElement.style.transition;return b.klasses=function(a){return a=a||"picker",{picker:a,opened:a+"--opened",focused:a+"--focused",input:a+"__input",active:a+"__input--active",target:a+"__input--target",holder:a+"__holder",frame:a+"__frame",wrap:a+"__wrap",box:a+"__box"}},b._={group:function(a){for(var c,d="",e=b._.trigger(a.min,a);e<=b._.trigger(a.max,a,[e]);e+=a.i)c=b._.trigger(a.item,a,[e]),d+=b._.node(a.node,c[0],c[1],c[2]);return d},node:function(b,c,d,e){return c?(c=a.isArray(c)?c.join(""):c,d=d?' class="'+d+'"':"",e=e?" "+e:"","<"+b+d+e+">"+c+""):""},lead:function(a){return(10>a?"0":"")+a},trigger:function(a,b,c){return"function"==typeof a?a.apply(b,c||[]):a},digits:function(a){return/\d/.test(a[1])?2:1},isDate:function(a){return{}.toString.call(a).indexOf("Date")>-1&&this.isInteger(a.getDate())},isInteger:function(a){return{}.toString.call(a).indexOf("Number")>-1&&a%1===0},ariaAttr:g},b.extend=function(c,d){a.fn[c]=function(e,f){var g=this.data(c);return"picker"==e?g:g&&"string"==typeof e?b._.trigger(g[e],g,[f]):this.each(function(){var f=a(this);f.data(c)||new b(this,c,d,e)})},a.fn[c].defaults=d.defaults},b}); - -/*! - * Date picker for pickadate.js v3.5.6 - * http://amsul.github.io/pickadate.js/date.htm - */ -!function(a){"function"==typeof define&&define.amd?define(["picker","jquery"],a):"object"==typeof exports?module.exports=a(require("./picker.js"),require("jquery")):a(Picker,jQuery)}(function(a,b){function c(a,b){var c=this,d=a.$node[0],e=d.value,f=a.$node.data("value"),g=f||e,h=f?b.formatSubmit:b.format,i=function(){return d.currentStyle?"rtl"==d.currentStyle.direction:"rtl"==getComputedStyle(a.$root[0]).direction};c.settings=b,c.$node=a.$node,c.queue={min:"measure create",max:"measure create",now:"now create",select:"parse create validate",highlight:"parse navigate create validate",view:"parse create validate viewset",disable:"deactivate",enable:"activate"},c.item={},c.item.clear=null,c.item.disable=(b.disable||[]).slice(0),c.item.enable=-function(a){return a[0]===!0?a.shift():-1}(c.item.disable),c.set("min",b.min).set("max",b.max).set("now"),g?c.set("select",g,{format:h,defaultValue:!0}):c.set("select",null).set("highlight",c.item.now),c.key={40:7,38:-7,39:function(){return i()?-1:1},37:function(){return i()?1:-1},go:function(a){var b=c.item.highlight,d=new Date(b.year,b.month,b.date+a);c.set("highlight",d,{interval:a}),this.render()}},a.on("render",function(){a.$root.find("."+b.klass.selectMonth).on("change",function(){var c=this.value;c&&(a.set("highlight",[a.get("view").year,c,a.get("highlight").date]),a.$root.find("."+b.klass.selectMonth).trigger("focus"))}),a.$root.find("."+b.klass.selectYear).on("change",function(){var c=this.value;c&&(a.set("highlight",[c,a.get("view").month,a.get("highlight").date]),a.$root.find("."+b.klass.selectYear).trigger("focus"))})},1).on("open",function(){var d="";c.disabled(c.get("now"))&&(d=":not(."+b.klass.buttonToday+")"),a.$root.find("button"+d+", select").attr("disabled",!1)},1).on("close",function(){a.$root.find("button, select").attr("disabled",!0)},1)}var d=7,e=6,f=a._;c.prototype.set=function(a,b,c){var d=this,e=d.item;return null===b?("clear"==a&&(a="select"),e[a]=b,d):(e["enable"==a?"disable":"flip"==a?"enable":a]=d.queue[a].split(" ").map(function(e){return b=d[e](a,b,c)}).pop(),"select"==a?d.set("highlight",e.select,c):"highlight"==a?d.set("view",e.highlight,c):a.match(/^(flip|min|max|disable|enable)$/)&&(e.select&&d.disabled(e.select)&&d.set("select",e.select,c),e.highlight&&d.disabled(e.highlight)&&d.set("highlight",e.highlight,c)),d)},c.prototype.get=function(a){return this.item[a]},c.prototype.create=function(a,c,d){var e,g=this;return c=void 0===c?a:c,c==-(1/0)||c==1/0?e=c:b.isPlainObject(c)&&f.isInteger(c.pick)?c=c.obj:b.isArray(c)?(c=new Date(c[0],c[1],c[2]),c=f.isDate(c)?c:g.create().obj):c=f.isInteger(c)||f.isDate(c)?g.normalize(new Date(c),d):g.now(a,c,d),{year:e||c.getFullYear(),month:e||c.getMonth(),date:e||c.getDate(),day:e||c.getDay(),obj:e||c,pick:e||c.getTime()}},c.prototype.createRange=function(a,c){var d=this,e=function(a){return a===!0||b.isArray(a)||f.isDate(a)?d.create(a):a};return f.isInteger(a)||(a=e(a)),f.isInteger(c)||(c=e(c)),f.isInteger(a)&&b.isPlainObject(c)?a=[c.year,c.month,c.date+a]:f.isInteger(c)&&b.isPlainObject(a)&&(c=[a.year,a.month,a.date+c]),{from:e(a),to:e(c)}},c.prototype.withinRange=function(a,b){return a=this.createRange(a.from,a.to),b.pick>=a.from.pick&&b.pick<=a.to.pick},c.prototype.overlapRanges=function(a,b){var c=this;return a=c.createRange(a.from,a.to),b=c.createRange(b.from,b.to),c.withinRange(a,b.from)||c.withinRange(a,b.to)||c.withinRange(b,a.from)||c.withinRange(b,a.to)},c.prototype.now=function(a,b,c){return b=new Date,c&&c.rel&&b.setDate(b.getDate()+c.rel),this.normalize(b,c)},c.prototype.navigate=function(a,c,d){var e,f,g,h,i=b.isArray(c),j=b.isPlainObject(c),k=this.item.view;if(i||j){for(j?(f=c.year,g=c.month,h=c.date):(f=+c[0],g=+c[1],h=+c[2]),d&&d.nav&&k&&k.month!==g&&(f=k.year,g=k.month),e=new Date(f,g+(d&&d.nav?d.nav:0),1),f=e.getFullYear(),g=e.getMonth();new Date(f,g,h).getMonth()!==g;)h-=1;c=[f,g,h]}return c},c.prototype.normalize=function(a){return a.setHours(0,0,0,0),a},c.prototype.measure=function(a,b){var c=this;return b?"string"==typeof b?b=c.parse(a,b):f.isInteger(b)&&(b=c.now(a,b,{rel:b})):b="min"==a?-(1/0):1/0,b},c.prototype.viewset=function(a,b){return this.create([b.year,b.month,1])},c.prototype.validate=function(a,c,d){var e,g,h,i,j=this,k=c,l=d&&d.interval?d.interval:1,m=-1===j.item.enable,n=j.item.min,o=j.item.max,p=m&&j.item.disable.filter(function(a){if(b.isArray(a)){var d=j.create(a).pick;dc.pick&&(g=!0)}return f.isInteger(a)}).length;if((!d||!d.nav&&!d.defaultValue)&&(!m&&j.disabled(c)||m&&j.disabled(c)&&(p||e||g)||!m&&(c.pick<=n.pick||c.pick>=o.pick)))for(m&&!p&&(!g&&l>0||!e&&0>l)&&(l*=-1);j.disabled(c)&&(Math.abs(l)>1&&(c.monthk.month)&&(c=k,l=l>0?1:-1),c.pick<=n.pick?(h=!0,l=1,c=j.create([n.year,n.month,n.date+(c.pick===n.pick?0:-1)])):c.pick>=o.pick&&(i=!0,l=-1,c=j.create([o.year,o.month,o.date+(c.pick===o.pick?0:1)])),!h||!i);)c=j.create([c.year,c.month,c.date+l]);return c},c.prototype.disabled=function(a){var c=this,d=c.item.disable.filter(function(d){return f.isInteger(d)?a.day===(c.settings.firstDay?d:d-1)%7:b.isArray(d)||f.isDate(d)?a.pick===c.create(d).pick:b.isPlainObject(d)?c.withinRange(d,a):void 0});return d=d.length&&!d.filter(function(a){return b.isArray(a)&&"inverted"==a[3]||b.isPlainObject(a)&&a.inverted}).length,-1===c.item.enable?!d:d||a.pickc.item.max.pick},c.prototype.parse=function(a,b,c){var d=this,e={};return b&&"string"==typeof b?(c&&c.format||(c=c||{},c.format=d.settings.format),d.formats.toArray(c.format).map(function(a){var c=d.formats[a],g=c?f.trigger(c,d,[b,e]):a.replace(/^!/,"").length;c&&(e[a]=b.substr(0,g)),b=b.substr(g)}),[e.yyyy||e.yy,+(e.mm||e.m)-1,e.dd||e.d]):b},c.prototype.formats=function(){function a(a,b,c){var d=a.match(/[^\x00-\x7F]+|\w+/)[0];return c.mm||c.m||(c.m=b.indexOf(d)+1),d.length}function b(a){return a.match(/\w+/)[0].length}return{d:function(a,b){return a?f.digits(a):b.date},dd:function(a,b){return a?2:f.lead(b.date)},ddd:function(a,c){return a?b(a):this.settings.weekdaysShort[c.day]},dddd:function(a,c){return a?b(a):this.settings.weekdaysFull[c.day]},m:function(a,b){return a?f.digits(a):b.month+1},mm:function(a,b){return a?2:f.lead(b.month+1)},mmm:function(b,c){var d=this.settings.monthsShort;return b?a(b,d,c):d[c.month]},mmmm:function(b,c){var d=this.settings.monthsFull;return b?a(b,d,c):d[c.month]},yy:function(a,b){return a?2:(""+b.year).slice(2)},yyyy:function(a,b){return a?4:b.year},toArray:function(a){return a.split(/(d{1,4}|m{1,4}|y{4}|yy|!.)/g)},toString:function(a,b){var c=this;return c.formats.toArray(a).map(function(a){return f.trigger(c.formats[a],c,[0,b])||a.replace(/^!/,"")}).join("")}}}(),c.prototype.isDateExact=function(a,c){var d=this;return f.isInteger(a)&&f.isInteger(c)||"boolean"==typeof a&&"boolean"==typeof c?a===c:(f.isDate(a)||b.isArray(a))&&(f.isDate(c)||b.isArray(c))?d.create(a).pick===d.create(c).pick:b.isPlainObject(a)&&b.isPlainObject(c)?d.isDateExact(a.from,c.from)&&d.isDateExact(a.to,c.to):!1},c.prototype.isDateOverlap=function(a,c){var d=this,e=d.settings.firstDay?1:0;return f.isInteger(a)&&(f.isDate(c)||b.isArray(c))?(a=a%7+e,a===d.create(c).day+1):f.isInteger(c)&&(f.isDate(a)||b.isArray(a))?(c=c%7+e,c===d.create(a).day+1):b.isPlainObject(a)&&b.isPlainObject(c)?d.overlapRanges(a,c):!1},c.prototype.flipEnable=function(a){var b=this.item;b.enable=a||(-1==b.enable?1:-1)},c.prototype.deactivate=function(a,c){var d=this,e=d.item.disable.slice(0);return"flip"==c?d.flipEnable():c===!1?(d.flipEnable(1),e=[]):c===!0?(d.flipEnable(-1),e=[]):c.map(function(a){for(var c,g=0;gi;i+=1){if(h=e[i],d.isDateExact(h,a)){c=e[i]=null,j=!0;break}if(d.isDateOverlap(h,a)){b.isPlainObject(a)?(a.inverted=!0,c=a):b.isArray(a)?(c=a,c[3]||c.push("inverted")):f.isDate(a)&&(c=[a.getFullYear(),a.getMonth(),a.getDate(),"inverted"]);break}}if(c)for(i=0;g>i;i+=1)if(d.isDateExact(e[i],a)){e[i]=null;break}if(j)for(i=0;g>i;i+=1)if(d.isDateOverlap(e[i],a)){e[i]=null;break}c&&e.push(c)}),e.filter(function(a){return null!=a})},c.prototype.nodes=function(a){var b=this,c=b.settings,g=b.item,h=g.now,i=g.select,j=g.highlight,k=g.view,l=g.disable,m=g.min,n=g.max,o=function(a,b){return c.firstDay&&(a.push(a.shift()),b.push(b.shift())),f.node("thead",f.node("tr",f.group({min:0,max:d-1,i:1,node:"th",item:function(d){return[a[d],c.klass.weekdays,'scope=col title="'+b[d]+'"']}})))}((c.showWeekdaysFull?c.weekdaysFull:c.weekdaysShort).slice(0),c.weekdaysFull.slice(0)),p=function(a){return f.node("div"," ",c.klass["nav"+(a?"Next":"Prev")]+(a&&k.year>=n.year&&k.month>=n.month||!a&&k.year<=m.year&&k.month<=m.month?" "+c.klass.navDisabled:""),"data-nav="+(a||-1)+" "+f.ariaAttr({role:"button",controls:b.$node[0].id+"_table"})+' title="'+(a?c.labelMonthNext:c.labelMonthPrev)+'"')},q=function(){var d=c.showMonthsShort?c.monthsShort:c.monthsFull;return c.selectMonths?f.node("select",f.group({min:0,max:11,i:1,node:"option",item:function(a){return[d[a],0,"value="+a+(k.month==a?" selected":"")+(k.year==m.year&&an.month?" disabled":"")]}}),c.klass.selectMonth,(a?"":"disabled")+" "+f.ariaAttr({controls:b.$node[0].id+"_table"})+' title="'+c.labelMonthSelect+'"'):f.node("div",d[k.month],c.klass.month)},r=function(){var d=k.year,e=c.selectYears===!0?5:~~(c.selectYears/2);if(e){var g=m.year,h=n.year,i=d-e,j=d+e;if(g>i&&(j+=g-i,i=g),j>h){var l=i-g,o=j-h;i-=l>o?o:l,j=h}return f.node("select",f.group({min:i,max:j,i:1,node:"option",item:function(a){return[a,0,"value="+a+(d==a?" selected":"")]}}),c.klass.selectYear,(a?"":"disabled")+" "+f.ariaAttr({controls:b.$node[0].id+"_table"})+' title="'+c.labelYearSelect+'"')}return f.node("div",d,c.klass.year)};return f.node("div",(c.selectYears?r()+q():q()+r())+p()+p(1),c.klass.header)+f.node("table",o+f.node("tbody",f.group({min:0,max:e-1,i:1,node:"tr",item:function(a){var e=c.firstDay&&0===b.create([k.year,k.month,1]).day?-7:0;return[f.group({min:d*a-k.day+e+1,max:function(){return this.min+d-1},i:1,node:"td",item:function(a){a=b.create([k.year,k.month,a+(c.firstDay?1:0)]);var d=i&&i.pick==a.pick,e=j&&j.pick==a.pick,g=l&&b.disabled(a)||a.pickn.pick,o=f.trigger(b.formats.toString,b,[c.format,a]);return[f.node("div",a.date,function(b){return b.push(k.month==a.month?c.klass.infocus:c.klass.outfocus),h.pick==a.pick&&b.push(c.klass.now),d&&b.push(c.klass.selected),e&&b.push(c.klass.highlighted),g&&b.push(c.klass.disabled),b.join(" ")}([c.klass.day]),"data-pick="+a.pick+" "+f.ariaAttr({role:"gridcell",label:o,selected:d&&b.$node.val()===o?!0:null,activedescendant:e?!0:null,disabled:g?!0:null})),"",f.ariaAttr({role:"presentation"})]}})]}})),c.klass.table,'id="'+b.$node[0].id+'_table" '+f.ariaAttr({role:"grid",controls:b.$node[0].id,readonly:!0}))+f.node("div",f.node("button",c.today,c.klass.buttonToday,"type=button data-pick="+h.pick+(a&&!b.disabled(h)?"":" disabled")+" "+f.ariaAttr({controls:b.$node[0].id}))+f.node("button",c.clear,c.klass.buttonClear,"type=button data-clear=1"+(a?"":" disabled")+" "+f.ariaAttr({controls:b.$node[0].id}))+f.node("button",c.close,c.klass.buttonClose,"type=button data-close=true "+(a?"":" disabled")+" "+f.ariaAttr({controls:b.$node[0].id})),c.klass.footer)},c.defaults=function(a){return{labelMonthNext:"Next month",labelMonthPrev:"Previous month",labelMonthSelect:"Select a month",labelYearSelect:"Select a year",monthsFull:["January","February","March","April","May","June","July","August","September","October","November","December"],monthsShort:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],weekdaysFull:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],weekdaysShort:["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],today:"Today",clear:"Clear",close:"Close",closeOnSelect:!0,closeOnClear:!0,format:"d mmmm, yyyy",klass:{table:a+"table",header:a+"header",navPrev:a+"nav--prev",navNext:a+"nav--next",navDisabled:a+"nav--disabled",month:a+"month",year:a+"year",selectMonth:a+"select--month",selectYear:a+"select--year",weekdays:a+"weekday",day:a+"day",disabled:a+"day--disabled",selected:a+"day--selected",highlighted:a+"day--highlighted",now:a+"day--today",infocus:a+"day--infocus",outfocus:a+"day--outfocus",footer:a+"footer",buttonClear:a+"button--clear",buttonToday:a+"button--today",buttonClose:a+"button--close"}}}(a.klasses().picker+"__"),a.extend("pickadate",c)}); \ No newline at end of file diff --git a/html/js/easypiechart.min.js b/html/js/easypiechart.min.js deleted file mode 100644 index efa45d0f..00000000 --- a/html/js/easypiechart.min.js +++ /dev/null @@ -1,9 +0,0 @@ -/**! - * easy-pie-chart - * Lightweight plugin to render simple, animated and retina optimized pie charts - * - * @license - * @author Robert Fleischmann (http://robert-fleischmann.de) - * @version 2.1.7 - **/ -!function(a,b){"function"==typeof define&&define.amd?define(["jquery"],function(a){return b(a)}):"object"==typeof exports?module.exports=b(require("jquery")):b(jQuery)}(this,function(a){var b=function(a,b){var c,d=document.createElement("canvas");a.appendChild(d),"object"==typeof G_vmlCanvasManager&&G_vmlCanvasManager.initElement(d);var e=d.getContext("2d");d.width=d.height=b.size;var f=1;window.devicePixelRatio>1&&(f=window.devicePixelRatio,d.style.width=d.style.height=[b.size,"px"].join(""),d.width=d.height=b.size*f,e.scale(f,f)),e.translate(b.size/2,b.size/2),e.rotate((-0.5+b.rotate/180)*Math.PI);var g=(b.size-b.lineWidth)/2;b.scaleColor&&b.scaleLength&&(g-=b.scaleLength+2),Date.now=Date.now||function(){return+new Date};var h=function(a,b,c){c=Math.min(Math.max(-1,c||0),1);var d=0>=c?!0:!1;e.beginPath(),e.arc(0,0,g,0,2*Math.PI*c,d),e.strokeStyle=a,e.lineWidth=b,e.stroke()},i=function(){var a,c;e.lineWidth=1,e.fillStyle=b.scaleColor,e.save();for(var d=24;d>0;--d)d%6===0?(c=b.scaleLength,a=0):(c=.6*b.scaleLength,a=b.scaleLength-c),e.fillRect(-b.size/2+a,0,c,1),e.rotate(Math.PI/12);e.restore()},j=function(){return window.requestAnimationFrame||window.webkitRequestAnimationFrame||window.mozRequestAnimationFrame||function(a){window.setTimeout(a,1e3/60)}}(),k=function(){b.scaleColor&&i(),b.trackColor&&h(b.trackColor,b.trackWidth||b.lineWidth,1)};this.getCanvas=function(){return d},this.getCtx=function(){return e},this.clear=function(){e.clearRect(b.size/-2,b.size/-2,b.size,b.size)},this.draw=function(a){b.scaleColor||b.trackColor?e.getImageData&&e.putImageData?c?e.putImageData(c,0,0):(k(),c=e.getImageData(0,0,b.size*f,b.size*f)):(this.clear(),k()):this.clear(),e.lineCap=b.lineCap;var d;d="function"==typeof b.barColor?b.barColor(a):b.barColor,h(d,b.lineWidth,a/100)}.bind(this),this.animate=function(a,c){var d=Date.now();b.onStart(a,c);var e=function(){var f=Math.min(Date.now()-d,b.animate.duration),g=b.easing(this,f,a,c-a,b.animate.duration);this.draw(g),b.onStep(a,c,g),f>=b.animate.duration?b.onStop(a,c):j(e)}.bind(this);j(e)}.bind(this)},c=function(a,c){var d={barColor:"#ef1e25",trackColor:"#f9f9f9",scaleColor:"#dfe0e0",scaleLength:5,lineCap:"round",lineWidth:3,trackWidth:void 0,size:110,rotate:0,animate:{duration:1e3,enabled:!0},easing:function(a,b,c,d,e){return b/=e/2,1>b?d/2*b*b+c:-d/2*(--b*(b-2)-1)+c},onStart:function(a,b){},onStep:function(a,b,c){},onStop:function(a,b){}};if("undefined"!=typeof b)d.renderer=b;else{if("undefined"==typeof SVGRenderer)throw new Error("Please load either the SVG- or the CanvasRenderer");d.renderer=SVGRenderer}var e={},f=0,g=function(){this.el=a,this.options=e;for(var b in d)d.hasOwnProperty(b)&&(e[b]=c&&"undefined"!=typeof c[b]?c[b]:d[b],"function"==typeof e[b]&&(e[b]=e[b].bind(this)));"string"==typeof e.easing&&"undefined"!=typeof jQuery&&jQuery.isFunction(jQuery.easing[e.easing])?e.easing=jQuery.easing[e.easing]:e.easing=d.easing,"number"==typeof e.animate&&(e.animate={duration:e.animate,enabled:!0}),"boolean"!=typeof e.animate||e.animate||(e.animate={duration:1e3,enabled:e.animate}),this.renderer=new e.renderer(a,e),this.renderer.draw(f),a.dataset&&a.dataset.percent?this.update(parseFloat(a.dataset.percent)):a.getAttribute&&a.getAttribute("data-percent")&&this.update(parseFloat(a.getAttribute("data-percent")))}.bind(this);this.update=function(a){return a=parseFloat(a),e.animate.enabled?this.renderer.animate(f,a):this.renderer.draw(a),f=a,this}.bind(this),this.disableAnimation=function(){return e.animate.enabled=!1,this},this.enableAnimation=function(){return e.animate.enabled=!0,this},g()};a.fn.easyPieChart=function(b){return this.each(function(){var d;a.data(this,"easyPieChart")||(d=a.extend({},b,a(this).data()),a.data(this,"easyPieChart",new c(this,d)))})}}); \ No newline at end of file diff --git a/html/js/flickity.min.js b/html/js/flickity.min.js deleted file mode 100644 index 2cd2cd05..00000000 --- a/html/js/flickity.min.js +++ /dev/null @@ -1,13 +0,0 @@ -/*! - * Flickity PACKAGED v2.0.2 - * Touch, responsive, flickable carousels - * - * Licensed GPLv3 for open source use - * or Flickity Commercial License for commercial use - * - * http://flickity.metafizzy.co - * Copyright 2016 Metafizzy - */ - -!function(t,e){"use strict";"function"==typeof define&&define.amd?define("jquery-bridget/jquery-bridget",["jquery"],function(i){e(t,i)}):"object"==typeof module&&module.exports?module.exports=e(t,require("jquery")):t.jQueryBridget=e(t,t.jQuery)}(window,function(t,e){"use strict";function i(i,o,a){function h(t,e,n){var s,o="$()."+i+'("'+e+'")';return t.each(function(t,h){var l=a.data(h,i);if(!l)return void r(i+" not initialized. Cannot call methods, i.e. "+o);var c=l[e];if(!c||"_"==e.charAt(0))return void r(o+" is not a valid method");var d=c.apply(l,n);s=void 0===s?d:s}),void 0!==s?s:t}function l(t,e){t.each(function(t,n){var s=a.data(n,i);s?(s.option(e),s._init()):(s=new o(n,e),a.data(n,i,s))})}a=a||e||t.jQuery,a&&(o.prototype.option||(o.prototype.option=function(t){a.isPlainObject(t)&&(this.options=a.extend(!0,this.options,t))}),a.fn[i]=function(t){if("string"==typeof t){var e=s.call(arguments,1);return h(this,t,e)}return l(this,t),this},n(a))}function n(t){!t||t&&t.bridget||(t.bridget=i)}var s=Array.prototype.slice,o=t.console,r="undefined"==typeof o?function(){}:function(t){o.error(t)};return n(e||t.jQuery),i}),function(t,e){"function"==typeof define&&define.amd?define("ev-emitter/ev-emitter",e):"object"==typeof module&&module.exports?module.exports=e():t.EvEmitter=e()}("undefined"!=typeof window?window:this,function(){function t(){}var e=t.prototype;return e.on=function(t,e){if(t&&e){var i=this._events=this._events||{},n=i[t]=i[t]||[];return n.indexOf(e)==-1&&n.push(e),this}},e.once=function(t,e){if(t&&e){this.on(t,e);var i=this._onceEvents=this._onceEvents||{},n=i[t]=i[t]||{};return n[e]=!0,this}},e.off=function(t,e){var i=this._events&&this._events[t];if(i&&i.length){var n=i.indexOf(e);return n!=-1&&i.splice(n,1),this}},e.emitEvent=function(t,e){var i=this._events&&this._events[t];if(i&&i.length){var n=0,s=i[n];e=e||[];for(var o=this._onceEvents&&this._onceEvents[t];s;){var r=o&&o[s];r&&(this.off(t,s),delete o[s]),s.apply(this,e),n+=r?0:1,s=i[n]}return this}},t}),function(t,e){"use strict";"function"==typeof define&&define.amd?define("get-size/get-size",[],function(){return e()}):"object"==typeof module&&module.exports?module.exports=e():t.getSize=e()}(window,function(){"use strict";function t(t){var e=parseFloat(t),i=t.indexOf("%")==-1&&!isNaN(e);return i&&e}function e(){}function i(){for(var t={width:0,height:0,innerWidth:0,innerHeight:0,outerWidth:0,outerHeight:0},e=0;e