ama_css 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (37) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +17 -0
  3. data/.ruby-version +1 -0
  4. data/Gemfile +4 -0
  5. data/LICENSE.txt +22 -0
  6. data/README.md +29 -0
  7. data/Rakefile +1 -0
  8. data/ama_css.gemspec +25 -0
  9. data/app/assets/images/foundation/ama_logo.png +0 -0
  10. data/app/assets/images/foundation/bkg-utility-bar.gif +0 -0
  11. data/app/assets/images/foundation/btn-search.gif +0 -0
  12. data/app/assets/images/foundation/calendar.png +0 -0
  13. data/app/assets/images/foundation/exclamation.png +0 -0
  14. data/app/assets/images/foundation/lightbulb.png +0 -0
  15. data/app/assets/images/foundation/lightbulb_off.png +0 -0
  16. data/app/assets/images/foundation/lock.png +0 -0
  17. data/app/assets/javascripts/foundation/index.js +0 -0
  18. data/app/assets/stylesheets/foundation/_grid.settings.scss +10 -0
  19. data/app/assets/stylesheets/foundation/_variables.scss +136 -0
  20. data/app/assets/stylesheets/foundation/application.css.scss +18 -0
  21. data/app/assets/stylesheets/foundation/base/_elements.scss +129 -0
  22. data/app/assets/stylesheets/foundation/base/_icons-block.scss +46 -0
  23. data/app/assets/stylesheets/foundation/base/_icons-line.scss +46 -0
  24. data/app/assets/stylesheets/foundation/base/_icons-social.scss +63 -0
  25. data/app/assets/stylesheets/foundation/base/_normalize.scss +397 -0
  26. data/app/assets/stylesheets/foundation/index.css +0 -0
  27. data/app/assets/stylesheets/foundation/layout/components.scss +91 -0
  28. data/app/assets/stylesheets/foundation/layout/layout.scss +181 -0
  29. data/app/assets/stylesheets/foundation/modules/forms.scss +140 -0
  30. data/app/assets/stylesheets/foundation/modules/login.scss +36 -0
  31. data/app/assets/stylesheets/foundation/modules/module.css.scss +353 -0
  32. data/app/assets/stylesheets/foundation/modules/module.mobile.css.scss +550 -0
  33. data/app/assets/stylesheets/foundation/oauths.css.scss +3 -0
  34. data/app/assets/stylesheets/foundation/theme/theme.scss +65 -0
  35. data/lib/ama_css/version.rb +3 -0
  36. data/lib/ama_css.rb +8 -0
  37. metadata +136 -0
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 2b4563bfa599ef8ee1f413472e13ff1253a9d558
4
+ data.tar.gz: 09da106062dd678dcdf915f533c3f642634ca570
5
+ SHA512:
6
+ metadata.gz: acec1c9fedb5435550620c910d6f833126f4d48899fec1b19c20783b6391d808cf7962c0e1fae8d91a8d99db61330a2103023e9d7af9f5f212b230bde19fd6a1
7
+ data.tar.gz: 63974c847484eb416c8addf56b71e41153374882efed886c93bb8ffe566ab70f935af6884c8ffdd77cae5b78993275de24af89b6af2e6d3cbb26e9950a3196f7
data/.gitignore ADDED
@@ -0,0 +1,17 @@
1
+ *.gem
2
+ *.rbc
3
+ .bundle
4
+ .config
5
+ .yardoc
6
+ Gemfile.lock
7
+ InstalledFiles
8
+ _yardoc
9
+ coverage
10
+ doc/
11
+ lib/bundler/man
12
+ pkg
13
+ rdoc
14
+ spec/reports
15
+ test/tmp
16
+ test/version_tmp
17
+ tmp
data/.ruby-version ADDED
@@ -0,0 +1 @@
1
+ 2.1.0
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in ama_css.gemspec
4
+ gemspec
data/LICENSE.txt ADDED
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2014 Darko Dosenovic
2
+
3
+ MIT License
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining
6
+ a copy of this software and associated documentation files (the
7
+ "Software"), to deal in the Software without restriction, including
8
+ without limitation the rights to use, copy, modify, merge, publish,
9
+ distribute, sublicense, and/or sell copies of the Software, and to
10
+ permit persons to whom the Software is furnished to do so, subject to
11
+ the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be
14
+ included in all copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,29 @@
1
+ # AmaCss
2
+
3
+ TODO: Write a gem description
4
+
5
+ ## Installation
6
+
7
+ Add this line to your application's Gemfile:
8
+
9
+ gem 'ama_css'
10
+
11
+ And then execute:
12
+
13
+ $ bundle
14
+
15
+ Or install it yourself as:
16
+
17
+ $ gem install ama_css
18
+
19
+ ## Usage
20
+
21
+ TODO: Write usage instructions here
22
+
23
+ ## Contributing
24
+
25
+ 1. Fork it ( http://github.com/<my-github-username>/ama_css/fork )
26
+ 2. Create your feature branch (`git checkout -b my-new-feature`)
27
+ 3. Commit your changes (`git commit -am 'Add some feature'`)
28
+ 4. Push to the branch (`git push origin my-new-feature`)
29
+ 5. Create new Pull Request
data/Rakefile ADDED
@@ -0,0 +1 @@
1
+ require "bundler/gem_tasks"
data/ama_css.gemspec ADDED
@@ -0,0 +1,25 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'ama_css/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "ama_css"
8
+ spec.version = AmaCss::VERSION
9
+ spec.authors = ["Darko Dosenovic"]
10
+ spec.email = ["darko.dosenovic@ama.ab.ca"]
11
+ spec.summary = ["CSS used by AMA apps"]
12
+ spec.description = ["This gem has been created to standardized use of css files for basic AMA applications."]
13
+ spec.homepage = ""
14
+ spec.license = "MIT"
15
+
16
+ spec.files = `git ls-files`.split($/)
17
+ #spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
18
+ #spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
19
+ spec.require_paths = ["lib"]
20
+
21
+ spec.add_development_dependency "bundler", "~> 1.5"
22
+ spec.add_development_dependency "rake"
23
+ spec.add_dependency "bourbon", "3.1.1"
24
+ spec.add_dependency "neat", "1.2.0"
25
+ end
File without changes
@@ -0,0 +1,10 @@
1
+ @import "neat-helpers";
2
+ //$visual-grid:true;
3
+ $mobile: new-breakpoint(max-width 768px 6);
4
+ $smalldesk: new-breakpoint(max-width 1099px 12);
5
+ $landscape: new-breakpoint(orientation landscape);
6
+ // Change the grid settings
7
+ $column: 4.375em;
8
+ $gutter: 1.25em;
9
+ $grid-columns: 12;
10
+ $max-width: 68.75em;
@@ -0,0 +1,136 @@
1
+ // --------------------------------------------------
2
+ // BASE
3
+ // --------------------------------------------------
4
+ $base-font-family: Helvetica,Arial,sans-serif;
5
+ $base-font-size: 16px;
6
+ $base-font-size-em: 1em;
7
+ $base-line-height: $base-font-size * 1.5;
8
+ $base-vertical-margin: .5em 0 1em;
9
+ $base-vertical-padding: .5em 0 1em;
10
+ $base-padding: 20px;
11
+ $base-margin: 20px;
12
+ $base-border-thickness: 1px;
13
+ $col-width: 60px;
14
+ $col-margin: $base-margin;
15
+ $box-radius-small: 2px;
16
+ $box-radius-big: 5px;
17
+ $gridcols: 12;
18
+ $margin-vertical: 0 $base-margin;
19
+
20
+ // --------------------------------------------------
21
+ // THEME
22
+ // --------------------------------------------------
23
+ $color-ama-red: #BB0B0E;
24
+ $color-ama-blue: #0F3C62;
25
+ $color-primary: $color-ama-blue; /*blue*/
26
+ $color-secondary-a: $color-ama-red; /*red*/
27
+ $color-secondary-b: #A3B219; /*olive*/
28
+ $color-complimentary: #A7A8A5; /*metal*/
29
+ $color-superdark: #222;
30
+ $color-dark: #555;
31
+ $color-medium: #999;
32
+ $color-light: #cacaca;
33
+ $color-superlight: #efefef;
34
+ $color-text-alert: #910f0f; // bold red
35
+ $color-white: #FFF; // white
36
+ $base-font-color: $color-primary;
37
+ $color-red: #8E0000;
38
+ $color-blue: #0C429D;
39
+ $color-green: #5F9600;
40
+
41
+ $color-border: $color-light; // light grey
42
+ $color-background: $color-superlight; // lightest grey
43
+ $color-background-alt: lighten($color-primary,40); // light primary
44
+ $color-background-alt2: lighten($color-secondary-b,5); // light secondary-b
45
+ $color-text: $base-font-color;
46
+ $color-text-alt: $color-primary;
47
+ $color-alert-bg: lighten($color-text-alert,50);
48
+ $color-text-callout: $color-medium;
49
+ $color-text-highlight: invert($color-primary);
50
+
51
+ $text-small:.84em;
52
+
53
+ @mixin boxRadius($size){
54
+ @if $size == small{
55
+ -webkit-border-radius: $box-radius-small;
56
+ -moz-border-radius: $box-radius-small;
57
+ border-radius: $box-radius-small;
58
+ }
59
+ @else if $size == big{
60
+ -webkit-border-radius: $box-radius-big;
61
+ -moz-border-radius: $box-radius-big;
62
+ border-radius: $box-radius-big;
63
+ }
64
+ @else{
65
+ -webkit-border-radius: $size;
66
+ -moz-border-radius: $size;
67
+ border-radius: $size;
68
+ }
69
+ }
70
+
71
+ %boxRadius-small{
72
+ @include boxRadius(small);
73
+ }
74
+ %boxRadius-big{
75
+ @include boxRadius(big);
76
+ }
77
+
78
+ @mixin pushright($columns){
79
+ @include shift($columns);
80
+ }
81
+
82
+ @mixin makeColumn($columns){
83
+ width:(($col-width + $col-margin) * $columns) - $col-margin;
84
+ @if $columns < $gridcols{
85
+ float:left;
86
+ }
87
+ }
88
+
89
+ @mixin button-coloring($color) {
90
+ &:hover { background-color: darken($color,10); }
91
+ &:active{ background-color: darken($color,15); color:$color-white; }
92
+ }
93
+
94
+ @mixin notification($color) {
95
+ background: lighten($color, 65%);
96
+ border: 1px solid lighten($color, 20%);
97
+ margin: 0 0 ($base-margin) 0;
98
+ padding: ($base-padding / 4);
99
+ text-shadow: 0px 1px 0px rgba(255,255,255,0.5);
100
+ @extend %boxRadius-big;
101
+ }
102
+ @mixin notification-icon($content) { content:$content; font-family: "SSSymbolicons"; vertical-align: middle; margin-right: 5px; }
103
+
104
+ @mixin faq-icon($icon) { content: $icon; font-family: "SSSymbolicons"; vertical-align: middle; margin-right: ($base-margin / 4); }
105
+
106
+ @mixin clearfix(){
107
+ display: block;
108
+ *zoom: 1;
109
+ &:before,
110
+ &:after {
111
+ display: table;
112
+ content: "";
113
+ }
114
+ &:after {
115
+ clear: both;
116
+ }
117
+ }
118
+
119
+ @mixin wrapper($padding, $min-height) {
120
+ padding: $padding;
121
+ margin-top: $base-margin;
122
+ min-height: $min-height;
123
+ @include media($mobile) {
124
+ min-height:0;
125
+ }
126
+ }
127
+
128
+ @mixin levels($color, $value, $border-radii) {
129
+ background-color:lighten($color, $value);
130
+ color:$color-white;
131
+ border-radius: $border-radii;
132
+ }
133
+
134
+ %clearfix{
135
+ @include clearfix();
136
+ }
@@ -0,0 +1,18 @@
1
+ @import "bourbon";
2
+ @import "grid.settings";
3
+ @import "neat";
4
+
5
+ @import "variables";
6
+ @import "base/normalize";
7
+ @import "base/elements";
8
+ @import "base/icons-line";
9
+ @import "base/icons-block";
10
+ @import "base/icons-social";
11
+
12
+ @import "layout/layout";
13
+ @import "layout/components";
14
+ @import "modules/module";
15
+ @import "modules/login";
16
+ @import "modules/forms";
17
+
18
+ @import "theme/theme";
@@ -0,0 +1,129 @@
1
+ body {
2
+ color: $base-font-color;
3
+ font-size: $base-font-size;
4
+ line-height: $base-line-height;
5
+ height: 100%;
6
+ margin: 0px;
7
+ background: $color-white;
8
+ font-family: $base-font-family;
9
+ }
10
+
11
+ hr {
12
+ border: 0 #ccc solid;
13
+ border-top-width: 1px;
14
+ clear: both;
15
+ height: 0;
16
+ }
17
+
18
+ /* Links */
19
+ a:link, a:visited, a:active {
20
+ color: $base-font-color;
21
+ }
22
+ a:hover{
23
+ color: lighten($base-font-color,20);
24
+ }
25
+
26
+ dt { font-size: $base-font-size * 1.5; margin: 0 0 $base-margin 0; }
27
+ dd { margin: 0 0 ($base-margin * 0.75) 0; }
28
+ address { font-style: normal; }
29
+
30
+ h1 {
31
+ font-weight: bold;
32
+ line-height: 1em;
33
+ margin: 0 0 $base-margin 0;
34
+ }
35
+
36
+ h2, h3, h4, h5, h6 {
37
+ font-weight: bold;
38
+ line-height: 1em;
39
+ margin: $base-margin 0;
40
+ }
41
+
42
+ h1 { font-size: $base-font-size-em * 2.25; }
43
+ h2 { font-size: $base-font-size-em * 2.0; }
44
+ h3 { font-size: $base-font-size-em * 1.75; }
45
+ h4 { font-size: $base-font-size-em * 1.25; }
46
+ h5 { font-size: $base-font-size-em}
47
+ h6 { font-size: $base-font-size-em * 0.90; }
48
+
49
+ p,
50
+ dl,
51
+ hr,
52
+ ol,
53
+ ul,
54
+ pre,
55
+ table,
56
+ address,
57
+ fieldset {
58
+ margin: $base-padding/4 0 $base-padding;
59
+ }
60
+ p { @extend %color-text; }
61
+ ul, ol { margin: 0 0 $base-margin $base-margin*2; padding: 0px; list-style-position:outside; }
62
+ ul li{ list-style-type: disc; }
63
+ ol li{ list-type: decimal; }
64
+ ul li, ol li{ padding:0 0 $base-padding/4 $base-padding/2; @extend %color-text; }
65
+ li:last-child{ padding-bottom:0; margin-bottom:0; }
66
+
67
+ fieldset{ margin: 0; padding:$base-padding/2; }
68
+ legend{ font-size:1.3em;}
69
+ img{ max-width:100%;}
70
+ label{
71
+ display: block;
72
+ @extend %color-text;
73
+ font-weight:bold;
74
+ margin:0 $base-margin/5 $base-margin/5 0;
75
+ }
76
+
77
+ textarea,
78
+ input[type="text"],
79
+ input[type="password"],
80
+ input[type="datetime"],
81
+ input[type="datetime-local"],
82
+ input[type="date"],
83
+ input[type="month"],
84
+ input[type="time"],
85
+ input[type="week"],
86
+ input[type="number"],
87
+ input[type="email"],
88
+ input[type="url"],
89
+ input[type="search"],
90
+ input[type="tel"],
91
+ input[type="color"], .uneditable-input {
92
+ border:1px solid $color-medium;
93
+ color:$color-dark;
94
+ @extend %boxRadius-small;
95
+ padding:$base-padding/5;
96
+ width:100%;
97
+ line-height:24px;
98
+ }
99
+ textarea{ width:100%; min-height:120px;}
100
+ textarea:focus,input:focus{ color:$color-superdark;}
101
+ select{
102
+ min-height:$base-margin;
103
+ display:inline;
104
+ }
105
+ label.small{
106
+ font-size:.9em;
107
+ }
108
+
109
+ sup { position: relative; font-size: 0.6em; vertical-align: super; }
110
+ sub { position: relative; font-size: 0.6em; vertical-align: baseline; }
111
+
112
+ s, strikethrough {
113
+ position: relative;
114
+ text-decoration: none;
115
+ }
116
+
117
+ s:before, strikethrough:before {
118
+ border-bottom: 2px solid red;
119
+ position: absolute;
120
+ content: "";
121
+ width: 100%;
122
+ height: 60%;
123
+ }
124
+
125
+ .allcaps { text-transform: uppercase; }
126
+ .badvariable { color: #FF0033; background-color: #33FF33; }
127
+ .small{
128
+ font-size:$text-small;
129
+ }
@@ -0,0 +1,46 @@
1
+ @charset "UTF-8";
2
+
3
+ /*
4
+ * Symbolset
5
+ * www.symbolset.com
6
+ * Copyright ยฉ 2012 Oak Studios LLC
7
+ */
8
+
9
+ @font-face {
10
+ font-family: "SSSymbolicons";
11
+ src: url('/webfonts/ss-symbolicons-block.eot');
12
+ src: url('/webfonts/ss-symbolicons-block.eot?#iefix') format('embedded-opentype'),
13
+ url('/webfonts/ss-symbolicons-block.woff') format('woff'),
14
+ url('/webfonts/ss-symbolicons-block.ttf') format('truetype'),
15
+ url('/webfonts/ss-symbolicons-block.svg#SSSymboliconsBlock') format('svg');
16
+ font-weight: normal;
17
+ font-style: normal;
18
+ }
19
+
20
+ /* This triggers a redraw in IE to Fix IE8's :before content rendering. */
21
+ html:hover [class^="ss-"]{-ms-zoom: 1;}
22
+
23
+ .ss-icon, .ss-icon.ss-symbolicons-block,
24
+ [class^="ss-"]:before, [class*=" ss-"]:before,
25
+ [class^="ss-"].ss-symbolicons-block:before, [class*=" ss-"].ss-symbolicons-block:before,
26
+ [class^="ss-"].right:after, [class*=" ss-"].right:after,
27
+ [class^="ss-"].ss-symbolicons-block.right:after, [class*=" ss-"].ss-symbolicons-block.right:after {
28
+ font-family: "SSSymbolicons";
29
+ font-style: normal;
30
+ font-weight: normal;
31
+ text-decoration: none;
32
+ text-rendering: optimizeLegibility;
33
+ white-space: nowrap;
34
+ /*-webkit-font-feature-settings: "liga"; Currently broken in Chrome >= v22. Falls back to text-rendering. Safari is unaffected. */
35
+ -moz-font-feature-settings: "liga=1";
36
+ -moz-font-feature-settings: "liga";
37
+ -ms-font-feature-settings: "liga" 1;
38
+ -o-font-feature-settings: "liga";
39
+ font-feature-settings: "liga";
40
+ -webkit-font-smoothing: antialiased;
41
+ }
42
+
43
+ [class^="ss-"].right:before,
44
+ [class*=" ss-"].right:before{display:none;content:'';}
45
+
46
+ .ss-crosshair:before,.ss-crosshair.right:after{content:'โŒ–'}.ss-search:before,.ss-search.right:after{content:'๐Ÿ”'}.ss-zoomin:before,.ss-zoomin.right:after{content:'๎€‚'}.ss-zoomout:before,.ss-zoomout.right:after{content:'๎€ƒ'}.ss-binoculars:before,.ss-binoculars.right:after{content:'๎€'}.ss-raisedhand:before,.ss-raisedhand.right:after{content:'โœ‹'}.ss-link:before,.ss-link.right:after{content:'๐Ÿ”—'}.ss-write:before,.ss-write.right:after{content:'โœŽ'}.ss-compose:before,.ss-compose.right:after{content:'๐Ÿ“'}.ss-lock:before,.ss-lock.right:after{content:'๐Ÿ”’'}.ss-unlock:before,.ss-unlock.right:after{content:'๐Ÿ”“'}.ss-key:before,.ss-key.right:after{content:'๐Ÿ”‘'}.ss-backspace:before,.ss-backspace.right:after{content:'โŒซ'}.ss-ban:before,.ss-ban.right:after{content:'๐Ÿšซ'}.ss-nosmoking:before,.ss-nosmoking.right:after{content:'๐Ÿšญ'}.ss-trash:before,.ss-trash.right:after{content:'๎ƒ'}.ss-target:before,.ss-target.right:after{content:'โ—Ž'}.ss-stopsign:before,.ss-stopsign.right:after{content:'๎ƒ‘'}.ss-radioactive:before,.ss-radioactive.right:after{content:'โ˜ข'}.ss-skull:before,.ss-skull.right:after{content:'๐Ÿ’€'}.ss-lightning:before,.ss-lightning.right:after{content:'โ˜‡'}.ss-tag:before,.ss-tag.right:after{content:'๎„€'}.ss-newtag:before,.ss-newtag.right:after{content:'๎„'}.ss-flag:before,.ss-flag.right:after{content:'โš‘'}.ss-like:before,.ss-like.right:after{content:'๐Ÿ‘'}.ss-dislike:before,.ss-dislike.right:after{content:'๐Ÿ‘Ž'}.ss-heart:before,.ss-heart.right:after{content:'โ™ฅ'}.ss-addheart:before,.ss-addheart.right:after{content:'๎†ข'}.ss-deleteheart:before,.ss-deleteheart.right:after{content:'๐Ÿ’”'}.ss-star:before,.ss-star.right:after{content:'โ‹†'}.ss-trophy:before,.ss-trophy.right:after{content:'๐Ÿ†'}.ss-award:before,.ss-award.right:after{content:'๎‡€'}.ss-medal:before,.ss-medal.right:after{content:'๎‡'}.ss-badge:before,.ss-badge.right:after{content:'๐Ÿ“›'}.ss-crown:before,.ss-crown.right:after{content:'๐Ÿ‘‘'}.ss-bullseye:before,.ss-bullseye.right:after{content:'๐ŸŽฏ'}.ss-sample:before,.ss-sample.right:after{content:'๎ˆ€'}.ss-crop:before,.ss-crop.right:after{content:'๎ˆ'}.ss-layers:before,.ss-layers.right:after{content:'๎ˆ‚'}.ss-magicwand:before,.ss-magicwand.right:after{content:'๎ˆƒ'}.ss-cut:before,.ss-cut.right:after{content:'โœ‚'}.ss-cutpaste:before,.ss-cutpaste.right:after{content:'๎ˆ„'}.ss-clipboard:before,.ss-clipboard.right:after{content:'๐Ÿ“‹'}.ss-rules:before,.ss-rules.right:after{content:'๐Ÿ“'}.ss-rulerpencil:before,.ss-rulerpencil.right:after{content:'๎ˆ…'}.ss-gridlines:before,.ss-gridlines.right:after{content:'๎ˆ†'}.ss-pen:before,.ss-pen.right:after{content:'โœ’'}.ss-pencilbrush:before,.ss-pencilbrush.right:after{content:'๎ˆข'}.ss-pencilbrushpen:before,.ss-pencilbrushpen.right:after{content:'๎ˆฃ'}.ss-brush:before,.ss-brush.right:after{content:'๎ˆค'}.ss-paintroller:before,.ss-paintroller.right:after{content:'๎ˆฅ'}.ss-fill:before,.ss-fill.right:after{content:'๎‰€'}.ss-stroke:before,.ss-stroke.right:after{content:'๎‰'}.ss-crayons:before,.ss-crayons.right:after{content:'๎‰‚'}.ss-palette:before,.ss-palette.right:after{content:'๐ŸŽจ'}.ss-fliphorizontally:before,.ss-fliphorizontally.right:after{content:'๎‰ '}.ss-flipvertically:before,.ss-flipvertically.right:after{content:'๎‰ก'}.ss-effects:before,.ss-effects.right:after{content:'๎Š€'}.ss-bezier:before,.ss-bezier.right:after{content:'๎Š '}.ss-pixels:before,.ss-pixels.right:after{content:'๎Šก'}.ss-phone:before,.ss-phone.right:after{content:'๐Ÿ“ž'}.ss-rotaryphone:before,.ss-rotaryphone.right:after{content:'โ˜Ž'}.ss-touchtonephone:before,.ss-touchtonephone.right:after{content:'โ˜'}.ss-phonebook:before,.ss-phonebook.right:after{content:'๎Œ'}.ss-voicemail:before,.ss-voicemail.right:after{content:'โŒ•'}.ss-megaphone:before,.ss-megaphone.right:after{content:'๐Ÿ“ข'}.ss-rss:before,.ss-rss.right:after{content:'๎Œ'}.ss-podcast:before,.ss-podcast.right:after{content:'๎Œ‘'}.ss-mailbox:before,.ss-mailbox.right:after{content:'๐Ÿ“ซ'}.ss-send:before,.ss-send.right:after{content:'๎'}.ss-mail:before,.ss-mail.right:after{content:'โœ‰'}.ss-incomingmail:before,.ss-incomingmail.right:after{content:'๐Ÿ“ฉ'}.ss-inbox:before,.ss-inbox.right:after{content:'๐Ÿ“ฅ'}.ss-outbox:before,.ss-outbox.right:after{content:'๐Ÿ“ค'}.ss-stamp:before,.ss-stamp.right:after{content:'๎‘'}.ss-chat:before,.ss-chat.right:after{content:'๐Ÿ’ฌ'}.ss-chats:before,.ss-chats.right:after{content:'๎Ž'}.ss-textchat:before,.ss-textchat.right:after{content:'๎Ž–'}.ss-exclamationchat:before,.ss-exclamationchat.right:after{content:'๎Ž—'}.ss-questionchat:before,.ss-questionchat.right:after{content:'๎Ž˜'}.ss-ellipsischat:before,.ss-ellipsischat.right:after{content:'๎Ž™'}.ss-smile:before,.ss-smile.right:after{content:'โ˜ป'}.ss-frown:before,.ss-frown.right:after{content:'โ˜น'}.ss-toothsmile:before,.ss-toothsmile.right:after{content:'๐Ÿ˜ƒ'}.ss-toothlesssmile:before,.ss-toothlesssmile.right:after{content:'๐Ÿ˜€'}.ss-user:before,.ss-user.right:after{content:'๐Ÿ‘ค'}.ss-users:before,.ss-users.right:after{content:'๐Ÿ‘ฅ'}.ss-adduser:before,.ss-adduser.right:after{content:'๎'}.ss-removeuser:before,.ss-removeuser.right:after{content:'๎‚'}.ss-deleteuser:before,.ss-deleteuser.right:after{content:'๎„'}.ss-heartuser:before,.ss-heartuser.right:after{content:'๎…'}.ss-males:before,.ss-males.right:after{content:'๐Ÿ‘ฌ'}.ss-females:before,.ss-females.right:after{content:'๐Ÿ‘ญ'}.ss-malefemale:before,.ss-malefemale.right:after{content:'๐Ÿ‘ซ'}.ss-userportrait:before,.ss-userportrait.right:after{content:'๎ '}.ss-userframe:before,.ss-userframe.right:after{content:'๎ก'}.ss-usersframe:before,.ss-usersframe.right:after{content:'๎ข'}.ss-baby:before,.ss-baby.right:after{content:'๐Ÿ‘ถ'}.ss-swaddledbaby:before,.ss-swaddledbaby.right:after{content:'๎ฐ'}.ss-robot:before,.ss-robot.right:after{content:'๎‘€'}.ss-happyrobot:before,.ss-happyrobot.right:after{content:'๎‘'}.ss-alien:before,.ss-alien.right:after{content:'๐Ÿ‘ฝ'}.ss-ghost:before,.ss-ghost.right:after{content:'๐Ÿ‘ป'}.ss-contacts:before,.ss-contacts.right:after{content:'๐Ÿ“‡'}.ss-addressbook:before,.ss-addressbook.right:after{content:'๐Ÿ“‘'}.ss-footsteps:before,.ss-footsteps.right:after{content:'๐Ÿ‘ฃ'}.ss-cart:before,.ss-cart.right:after{content:'๎”€'}.ss-shoppingbag:before,.ss-shoppingbag.right:after{content:'๎” '}.ss-gift:before,.ss-gift.right:after{content:'๐ŸŽ'}.ss-store:before,.ss-store.right:after{content:'๐Ÿช'}.ss-safe:before,.ss-safe.right:after{content:'๎•€'}.ss-bill:before,.ss-bill.right:after{content:'๎•'}.ss-creditcard:before,.ss-creditcard.right:after{content:'๐Ÿ’ณ'}.ss-banknote:before,.ss-banknote.right:after{content:'๐Ÿ’ต'}.ss-moneybag:before,.ss-moneybag.right:after{content:'๐Ÿ’ฐ'}.ss-calculator:before,.ss-calculator.right:after{content:'๎•‘'}.ss-bank:before,.ss-bank.right:after{content:'๐Ÿฆ'}.ss-gavel:before,.ss-gavel.right:after{content:'๐Ÿ”จ'}.ss-meeting:before,.ss-meeting.right:after{content:'๎–'}.ss-barchart:before,.ss-barchart.right:after{content:'๐Ÿ“Š'}.ss-piechart:before,.ss-piechart.right:after{content:'๎•ฐ'}.ss-activity:before,.ss-activity.right:after{content:'๐Ÿ“ˆ'}.ss-flowchart:before,.ss-flowchart.right:after{content:'๎•ท'}.ss-box:before,.ss-box.right:after{content:'๐Ÿ“ฆ'}.ss-crate:before,.ss-crate.right:after{content:'๎—˜'}.ss-home:before,.ss-home.right:after{content:'โŒ‚'}.ss-fence:before,.ss-fence.right:after{content:'๎˜'}.ss-buildings:before,.ss-buildings.right:after{content:'๐Ÿข'}.ss-bridge:before,.ss-bridge.right:after{content:'๎˜ƒ'}.ss-barn:before,.ss-barn.right:after{content:'๎˜„'}.ss-lodging:before,.ss-lodging.right:after{content:'๐Ÿจ'}.ss-earth:before,.ss-earth.right:after{content:'๐ŸŒŽ'}.ss-globe:before,.ss-globe.right:after{content:'๐ŸŒ'}.ss-compass:before,.ss-compass.right:after{content:'๎™ฑ'}.ss-signpost:before,.ss-signpost.right:after{content:'๎™ฒ'}.ss-map:before,.ss-map.right:after{content:'๎™ณ'}.ss-location:before,.ss-location.right:after{content:'๎›'}.ss-pushpin:before,.ss-pushpin.right:after{content:'๐Ÿ“Œ'}.ss-script:before,.ss-script.right:after{content:'๎œ€'}.ss-playscript:before,.ss-playscript.right:after{content:'๎œ'}.ss-stopscript:before,.ss-stopscript.right:after{content:'๎œ‚'}.ss-recordscript:before,.ss-recordscript.right:after{content:'๎œƒ'}.ss-bug:before,.ss-bug.right:after{content:'๐Ÿ›'}.ss-puzzle:before,.ss-puzzle.right:after{content:'๎œ'}.ss-window:before,.ss-window.right:after{content:'๎œ”'}.ss-database:before,.ss-database.right:after{content:'๎ž '}.ss-adddatabase:before,.ss-adddatabase.right:after{content:'๎žข'}.ss-deletedatabase:before,.ss-deletedatabase.right:after{content:'๎žฅ'}.ss-hdd:before,.ss-hdd.right:after{content:'๎žฐ'}.ss-networkhdd:before,.ss-networkhdd.right:after{content:'๎žถ'}.ss-downloadhdd:before,.ss-downloadhdd.right:after{content:'๎žท'}.ss-airplay:before,.ss-airplay.right:after{content:'๎ €'}.ss-music:before,.ss-music.right:after{content:'โ™ซ'}.ss-mic:before,.ss-mic.right:after{content:'๐ŸŽค'}.ss-headphones:before,.ss-headphones.right:after{content:'๐ŸŽง'}.ss-volume:before,.ss-volume.right:after{content:'๐Ÿ”ˆ'}.ss-radio:before,.ss-radio.right:after{content:'๐Ÿ“ป'}.ss-phonograph:before,.ss-phonograph.right:after{content:'๎ ‚'}.ss-disc:before,.ss-disc.right:after{content:'๐Ÿ’ฟ'}.ss-discs:before,.ss-discs.right:after{content:'๎ ‘'}.ss-playlist:before,.ss-playlist.right:after{content:'๎  '}.ss-musichome:before,.ss-musichome.right:after{content:'๎ ก'}.ss-itunes:before,.ss-itunes.right:after{content:'๎ ข'}.ss-camera:before,.ss-camera.right:after{content:'๐Ÿ“ท'}.ss-picture:before,.ss-picture.right:after{content:'๐ŸŒ„'}.ss-pictures:before,.ss-pictures.right:after{content:'๎ก‘'}.ss-searchpicture:before,.ss-searchpicture.right:after{content:'๎ก–'}.ss-video:before,.ss-video.right:after{content:'๐Ÿ“น'}.ss-clapboard:before,.ss-clapboard.right:after{content:'๐ŸŽฌ'}.ss-film:before,.ss-film.right:after{content:'๎ขฐ'}.ss-playfilm:before,.ss-playfilm.right:after{content:'๎ขฑ'}.ss-tv:before,.ss-tv.right:after{content:'๐Ÿ“บ'}.ss-flatscreen:before,.ss-flatscreen.right:after{content:'๎ฃ€'}.ss-projector:before,.ss-projector.right:after{content:'๎ฃ'}.ss-videogame:before,.ss-videogame.right:after{content:'๐ŸŽฎ'}.ss-play:before,.ss-play.right:after{content:'โ–ถ'}.ss-pause:before,.ss-pause.right:after{content:'๎ข '}.ss-stop:before,.ss-stop.right:after{content:'โ– '}.ss-record:before,.ss-record.right:after{content:'โ—'}.ss-rewind:before,.ss-rewind.right:after{content:'โช'}.ss-fastforward:before,.ss-fastforward.right:after{content:'โฉ'}.ss-skipback:before,.ss-skipback.right:after{content:'โฎ'}.ss-skipforward:before,.ss-skipforward.right:after{content:'โญ'}.ss-eject:before,.ss-eject.right:after{content:'โ'}.ss-shuffle:before,.ss-shuffle.right:after{content:'๐Ÿ”€'}.ss-filecabinet:before,.ss-filecabinet.right:after{content:'๎ค€'}.ss-storagebox:before,.ss-storagebox.right:after{content:'๎ค'}.ss-books:before,.ss-books.right:after{content:'๐Ÿ“š'}.ss-bookspencil:before,.ss-bookspencil.right:after{content:'๎ฅ '}.ss-openbook:before,.ss-openbook.right:after{content:'๐Ÿ“–'}.ss-bookinsert:before,.ss-bookinsert.right:after{content:'๎ฅก'}.ss-notebook:before,.ss-notebook.right:after{content:'๐Ÿ““'}.ss-ledger:before,.ss-ledger.right:after{content:'๐Ÿ“’'}.ss-album:before,.ss-album.right:after{content:'๎ฅฐ'}.ss-newspaper:before,.ss-newspaper.right:after{content:'๐Ÿ“ฐ'}.ss-spiralbound:before,.ss-spiralbound.right:after{content:'๎ฅฑ'}.ss-notepad:before,.ss-notepad.right:after{content:'๎ฅฒ'}.ss-notice:before,.ss-notice.right:after{content:'๎ฅณ'}.ss-grid:before,.ss-grid.right:after{content:'๎ฆ '}.ss-thumbnails:before,.ss-thumbnails.right:after{content:'๎ฆฃ'}.ss-filter:before,.ss-filter.right:after{content:'๎ฆฐ'}.ss-desktop:before,.ss-desktop.right:after{content:'๐Ÿ’ป'}.ss-laptop:before,.ss-laptop.right:after{content:'๎จ€'}.ss-tablet:before,.ss-tablet.right:after{content:'๎จ'}.ss-cell:before,.ss-cell.right:after{content:'๐Ÿ“ฑ'}.ss-cellbars:before,.ss-cellbars.right:after{content:'๐Ÿ“ถ'}.ss-battery:before,.ss-battery.right:after{content:'๐Ÿ”‹'}.ss-mediumbattery:before,.ss-mediumbattery.right:after{content:'๎จ‘'}.ss-emptybattery:before,.ss-emptybattery.right:after{content:'๎จ“'}.ss-chargingbattery:before,.ss-chargingbattery.right:after{content:'๎จ”'}.ss-screwdrivermobile:before,.ss-screwdrivermobile.right:after{content:'๎จ '}.ss-brushmobile:before,.ss-brushmobile.right:after{content:'๎จก'}.ss-pencilmobile:before,.ss-pencilmobile.right:after{content:'๎จข'}.ss-door:before,.ss-door.right:after{content:'๐Ÿšช'}.ss-washer:before,.ss-washer.right:after{content:'๎ช€'}.ss-dryer:before,.ss-dryer.right:after{content:'๎ช'}.ss-fireplace:before,.ss-fireplace.right:after{content:'๎ช‚'}.ss-toilet:before,.ss-toilet.right:after{content:'๐Ÿšฝ'}.ss-toiletpaper:before,.ss-toiletpaper.right:after{content:'๎ช„'}.ss-lightbulb:before,.ss-lightbulb.right:after{content:'๐Ÿ’ก'}.ss-cfl:before,.ss-cfl.right:after{content:'๎ช…'}.ss-flashlight:before,.ss-flashlight.right:after{content:'๐Ÿ”ฆ'}.ss-candle:before,.ss-candle.right:after{content:'๎ชฐ'}.ss-campfire:before,.ss-campfire.right:after{content:'๐Ÿ”ฅ'}.ss-picnictable:before,.ss-picnictable.right:after{content:'๎ชฑ'}.ss-frame:before,.ss-frame.right:after{content:'๎ช'}.ss-heartframe:before,.ss-heartframe.right:after{content:'๐Ÿ’Ÿ'}.ss-starframe:before,.ss-starframe.right:after{content:'๎ช‘'}.ss-treeframe:before,.ss-treeframe.right:after{content:'๎ช’'}.ss-flowerframe:before,.ss-flowerframe.right:after{content:'๎ช“'}.ss-questionframe:before,.ss-questionframe.right:after{content:'๎ช”'}.ss-utensilsframe:before,.ss-utensilsframe.right:after{content:'๎ช•'}.ss-atom:before,.ss-atom.right:after{content:'โš›'}.ss-fluxcapacitor:before,.ss-fluxcapacitor.right:after{content:'๎ซ'}.ss-rings:before,.ss-rings.right:after{content:'๐Ÿ’'}.ss-balloons:before,.ss-balloons.right:after{content:'๐ŸŽˆ'}.ss-easteregg:before,.ss-easteregg.right:after{content:'๎ซ '}.ss-jackolantern:before,.ss-jackolantern.right:after{content:'๐ŸŽƒ'}.ss-menorah:before,.ss-menorah.right:after{content:'๎ซก'}.ss-christmastree:before,.ss-christmastree.right:after{content:'๐ŸŽ„'}.ss-teddy:before,.ss-teddy.right:after{content:'๎ช '}.ss-blocks:before,.ss-blocks.right:after{content:'๎ชก'}.ss-rattle:before,.ss-rattle.right:after{content:'๎ชข'}.ss-diaper:before,.ss-diaper.right:after{content:'๎ชฃ'}.ss-pailshovel:before,.ss-pailshovel.right:after{content:'๎ชค'}.ss-sweep:before,.ss-sweep.right:after{content:'๎ช†'}.ss-headstone:before,.ss-headstone.right:after{content:'โ›ผ'}.ss-onedie:before,.ss-onedie.right:after{content:'โš€'}.ss-twodie:before,.ss-twodie.right:after{content:'โš'}.ss-threedie:before,.ss-threedie.right:after{content:'โš‚'}.ss-fourdie:before,.ss-fourdie.right:after{content:'โšƒ'}.ss-fivedie:before,.ss-fivedie.right:after{content:'โš„'}.ss-sixdie:before,.ss-sixdie.right:after{content:'โš…'}.ss-fuzzydice:before,.ss-fuzzydice.right:after{content:'๎ช‡'}.ss-download:before,.ss-download.right:after{content:'๎ฌ€'}.ss-downloadbox:before,.ss-downloadbox.right:after{content:'๎ฌ‚'}.ss-downloadcrate:before,.ss-downloadcrate.right:after{content:'๎ฌƒ'}.ss-upload:before,.ss-upload.right:after{content:'๎ญ€'}.ss-uploadbox:before,.ss-uploadbox.right:after{content:'๎ญ‚'}.ss-uploadcrate:before,.ss-uploadcrate.right:after{content:'๎ญƒ'}.ss-transfer:before,.ss-transfer.right:after{content:'โ‡†'}.ss-refresh:before,.ss-refresh.right:after{content:'โ†ป'}.ss-sync:before,.ss-sync.right:after{content:'๎ฎ‚'}.ss-wifi:before,.ss-wifi.right:after{content:'๎ฎ„'}.ss-connection:before,.ss-connection.right:after{content:'๎ฎ…'}.ss-usb:before,.ss-usb.right:after{content:'๎ฎ†'}.ss-files:before,.ss-files.right:after{content:'๎ฐ€'}.ss-addfile:before,.ss-addfile.right:after{content:'๎ฐ'}.ss-removefile:before,.ss-removefile.right:after{content:'๎ฐ‚'}.ss-deletefile:before,.ss-deletefile.right:after{content:'๎ฐ„'}.ss-searchfile:before,.ss-searchfile.right:after{content:'๎ฐ…'}.ss-folder:before,.ss-folder.right:after{content:'๐Ÿ“'}.ss-addfolder:before,.ss-addfolder.right:after{content:'๎ฑฑ'}.ss-removefolder:before,.ss-removefolder.right:after{content:'๎ฑฒ'}.ss-deletefolder:before,.ss-deletefolder.right:after{content:'๎ฑด'}.ss-downloadfolder:before,.ss-downloadfolder.right:after{content:'๎ฑถ'}.ss-uploadfolder:before,.ss-uploadfolder.right:after{content:'๎ฑท'}.ss-undo:before,.ss-undo.right:after{content:'โ†ฉ'}.ss-redo:before,.ss-redo.right:after{content:'โ†ช'}.ss-quote:before,.ss-quote.right:after{content:'โ€œ'}.ss-font:before,.ss-font.right:after{content:'๎ด'}.ss-anchor:before,.ss-anchor.right:after{content:'๎ด'}.ss-print:before,.ss-print.right:after{content:'โŽ™'}.ss-fax:before,.ss-fax.right:after{content:'๐Ÿ“ '}.ss-shredder:before,.ss-shredder.right:after{content:'๎ต€'}.ss-typewriter:before,.ss-typewriter.right:after{content:'๎ต'}.ss-list:before,.ss-list.right:after{content:'๎ต'}.ss-action:before,.ss-action.right:after{content:'๎ธ€'}.ss-redirect:before,.ss-redirect.right:after{content:'โ†—'}.ss-expand:before,.ss-expand.right:after{content:'โคข'}.ss-contract:before,.ss-contract.right:after{content:'๎ธ'}.ss-scaleup:before,.ss-scaleup.right:after{content:'๎ธ„'}.ss-scaledown:before,.ss-scaledown.right:after{content:'๎ธ…'}.ss-power:before,.ss-power.right:after{content:'๎ธ'}.ss-lifepreserver:before,.ss-lifepreserver.right:after{content:'๎ธ‘'}.ss-help:before,.ss-help.right:after{content:'โ“'}.ss-info:before,.ss-info.right:after{content:'โ„น'}.ss-alert:before,.ss-alert.right:after{content:'โš '}.ss-caution:before,.ss-caution.right:after{content:'โ›”'}.ss-plus:before,.ss-plus.right:after{content:'+'}.ss-hyphen:before,.ss-hyphen.right:after{content:'-'}.ss-check:before,.ss-check.right:after{content:'โœ“'}.ss-delete:before,.ss-delete.right:after{content:'โก'}.ss-dogface:before,.ss-dogface.right:after{content:'๐Ÿถ'}.ss-catface:before,.ss-catface.right:after{content:'๐Ÿฑ'}.ss-bearface:before,.ss-bearface.right:after{content:'๐Ÿป'}.ss-bird:before,.ss-bird.right:after{content:'๐Ÿฆ'}.ss-dog:before,.ss-dog.right:after{content:'๐Ÿ•'}.ss-sheep:before,.ss-sheep.right:after{content:'๐Ÿ‘'}.ss-pig:before,.ss-pig.right:after{content:'๐Ÿ–'}.ss-bone:before,.ss-bone.right:after{content:'๎ฝ '}.ss-tooth:before,.ss-tooth.right:after{content:'๎ฝก'}.ss-palmtree:before,.ss-palmtree.right:after{content:'๐ŸŒด'}.ss-tree:before,.ss-tree.right:after{content:'๐ŸŒฒ'}.ss-leaf:before,.ss-leaf.right:after{content:'๐Ÿ‚'}.ss-flower:before,.ss-flower.right:after{content:'โš˜'}.ss-settings:before,.ss-settings.right:after{content:'โš™'}.ss-dashboard:before,.ss-dashboard.right:after{content:'๏€€'}.ss-notifications:before,.ss-notifications.right:after{content:'๐Ÿ””'}.ss-toggles:before,.ss-toggles.right:after{content:'๏€'}.ss-switch:before,.ss-switch.right:after{content:'๏€‚'}.ss-switchoff:before,.ss-switchoff.right:after{content:'๏€ƒ'}.ss-brightness:before,.ss-brightness.right:after{content:'๐Ÿ”†'}.ss-flashoff:before,.ss-flashoff.right:after{content:'๏€‘'}.ss-toolbox:before,.ss-toolbox.right:after{content:'๏€ฐ'}.ss-tools:before,.ss-tools.right:after{content:'๏€ฑ'}.ss-wrench:before,.ss-wrench.right:after{content:'๐Ÿ”ง'}.ss-wrenches:before,.ss-wrenches.right:after{content:'๏€ฒ'}.ss-wrenchpencil:before,.ss-wrenchpencil.right:after{content:'๏€ณ'}.ss-screwdriverpencil:before,.ss-screwdriverpencil.right:after{content:'๏€ด'}.ss-hammerscrewdriver:before,.ss-hammerscrewdriver.right:after{content:'๏€ต'}.ss-tapemeasure:before,.ss-tapemeasure.right:after{content:'๏€ถ'}.ss-hourglass:before,.ss-hourglass.right:after{content:'โณ'}.ss-clock:before,.ss-clock.right:after{content:'โฒ'}.ss-stopwatch:before,.ss-stopwatch.right:after{content:'โฑ'}.ss-alarmclock:before,.ss-alarmclock.right:after{content:'โฐ'}.ss-calendar:before,.ss-calendar.right:after{content:'๐Ÿ“…'}.ss-keyboardup:before,.ss-keyboardup.right:after{content:'๏ƒ'}.ss-keyboarddown:before,.ss-keyboarddown.right:after{content:'๏ƒ‘'}.ss-heavyasterisk:before,.ss-heavyasterisk.right:after{content:'โœฑ'}.ss-egg:before,.ss-egg.right:after{content:'๏„€'}.ss-cheese:before,.ss-cheese.right:after{content:'๏„'}.ss-hotdog:before,.ss-hotdog.right:after{content:'๏„‚'}.ss-burger:before,.ss-burger.right:after{content:'๐Ÿ”'}.ss-birthdaycake:before,.ss-birthdaycake.right:after{content:'๐ŸŽ‚'}.ss-pancakes:before,.ss-pancakes.right:after{content:'๏„“'}.ss-pizza:before,.ss-pizza.right:after{content:'๐Ÿ•'}.ss-frenchfries:before,.ss-frenchfries.right:after{content:'๐ŸŸ'}.ss-apple:before,.ss-apple.right:after{content:'๐Ÿ'}.ss-mug:before,.ss-mug.right:after{content:'โ˜•'}.ss-coffee:before,.ss-coffee.right:after{content:'๏„ '}.ss-growler:before,.ss-growler.right:after{content:'๏„ก'}.ss-beer:before,.ss-beer.right:after{content:'๐Ÿบ'}.ss-bottle:before,.ss-bottle.right:after{content:'๏„ข'}.ss-wine:before,.ss-wine.right:after{content:'๏„ฃ'}.ss-wineglass:before,.ss-wineglass.right:after{content:'๐Ÿท'}.ss-cocktail:before,.ss-cocktail.right:after{content:'๐Ÿธ'}.ss-soda:before,.ss-soda.right:after{content:'๏„ค'}.ss-cup:before,.ss-cup.right:after{content:'๏„ฅ'}.ss-babybottle:before,.ss-babybottle.right:after{content:'๐Ÿผ'}.ss-jug:before,.ss-jug.right:after{content:'๏„ฆ'}.ss-oven:before,.ss-oven.right:after{content:'๏…€'}.ss-takeout:before,.ss-takeout.right:after{content:'๏… '}.ss-paperbag:before,.ss-paperbag.right:after{content:'๏…ก'}.ss-utensils:before,.ss-utensils.right:after{content:'๐Ÿด'}.ss-tshirt:before,.ss-tshirt.right:after{content:'๐Ÿ‘•'}.ss-graduationcap:before,.ss-graduationcap.right:after{content:'๐ŸŽ“'}.ss-fabric:before,.ss-fabric.right:after{content:'๏‡ฐ'}.ss-swatch:before,.ss-swatch.right:after{content:'๏‡ฑ'}.ss-weave:before,.ss-weave.right:after{content:'๏‡ฒ'}.ss-thread:before,.ss-thread.right:after{content:'๏‡ณ'}.ss-yarn:before,.ss-yarn.right:after{content:'๏‡ด'}.ss-crochet:before,.ss-crochet.right:after{content:'๏‡ต'}.ss-needles:before,.ss-needles.right:after{content:'๏‡ถ'}.ss-scissorsneedles:before,.ss-scissorsneedles.right:after{content:'๏‡ท'}.ss-button:before,.ss-button.right:after{content:'๏‡ธ'}.ss-zipper:before,.ss-zipper.right:after{content:'๏‡น'}.ss-sun:before,.ss-sun.right:after{content:'โ˜€'}.ss-partlycloudy:before,.ss-partlycloudy.right:after{content:'โ›…'}.ss-rainbow:before,.ss-rainbow.right:after{content:'๐ŸŒˆ'}.ss-umbrella:before,.ss-umbrella.right:after{content:'โ˜‚'}.ss-crescentmoon:before,.ss-crescentmoon.right:after{content:'๐ŸŒ™'}.ss-newmoon:before,.ss-newmoon.right:after{content:'๐ŸŒ‘'}.ss-waxingcrescentmoon:before,.ss-waxingcrescentmoon.right:after{content:'๐ŸŒ’'}.ss-firstquartermoon:before,.ss-firstquartermoon.right:after{content:'๐ŸŒ“'}.ss-waxinggibbousmoon:before,.ss-waxinggibbousmoon.right:after{content:'๐ŸŒ”'}.ss-fullmoon:before,.ss-fullmoon.right:after{content:'๐ŸŒ•'}.ss-waninggibbousmoon:before,.ss-waninggibbousmoon.right:after{content:'๐ŸŒ–'}.ss-lastquartermoon:before,.ss-lastquartermoon.right:after{content:'๐ŸŒ—'}.ss-waningcrescentmoon:before,.ss-waningcrescentmoon.right:after{content:'๐ŸŒ˜'}.ss-car:before,.ss-car.right:after{content:'๐Ÿš˜'}.ss-carrepair:before,.ss-carrepair.right:after{content:'๏Œ€'}.ss-taxi:before,.ss-taxi.right:after{content:'๐Ÿš–'}.ss-train:before,.ss-train.right:after{content:'๐Ÿš†'}.ss-bus:before,.ss-bus.right:after{content:'๐Ÿš'}.ss-truck:before,.ss-truck.right:after{content:'๐Ÿšš'}.ss-trailer:before,.ss-trailer.right:after{content:'๏Œ'}.ss-trailerdump:before,.ss-trailerdump.right:after{content:'๏Œ‚'}.ss-plane:before,.ss-plane.right:after{content:'โœˆ'}.ss-bike:before,.ss-bike.right:after{content:'๐Ÿšฒ'}.ss-motorcycle:before,.ss-motorcycle.right:after{content:'๏Œƒ'}.ss-boat:before,.ss-boat.right:after{content:'๐Ÿšข'}.ss-rocket:before,.ss-rocket.right:after{content:'๐Ÿš€'}.ss-ufo:before,.ss-ufo.right:after{content:'๏Œ„'}.ss-squarekey:before,.ss-squarekey.right:after{content:'๏Œ'}.ss-tire:before,.ss-tire.right:after{content:'๏Œ‘'}.ss-fuel:before,.ss-fuel.right:after{content:'โ›ฝ'}.ss-parking:before,.ss-parking.right:after{content:'๏Œ’'}.ss-wheelchair:before,.ss-wheelchair.right:after{content:'โ™ฟ'}.ss-restroom:before,.ss-restroom.right:after{content:'๐Ÿšป'}.ss-elevator:before,.ss-elevator.right:after{content:'๏Ž€'}.ss-briefcase:before,.ss-briefcase.right:after{content:'๐Ÿ’ผ'}.ss-theatre:before,.ss-theatre.right:after{content:'๐ŸŽญ'}.ss-ticket:before,.ss-ticket.right:after{content:'๐ŸŽซ'}.ss-golf:before,.ss-golf.right:after{content:'๏€'}.ss-billiards:before,.ss-billiards.right:after{content:'๐ŸŽฑ'}.ss-baseball:before,.ss-baseball.right:after{content:'โšพ'}.ss-tennis:before,.ss-tennis.right:after{content:'๐ŸŽพ'}.ss-basketball:before,.ss-basketball.right:after{content:'๐Ÿ€'}.ss-football:before,.ss-football.right:after{content:'๐Ÿˆ'}.ss-soccer:before,.ss-soccer.right:after{content:'โšฝ'}.ss-flaginhole:before,.ss-flaginhole.right:after{content:'โ›ณ'}.ss-paddles:before,.ss-paddles.right:after{content:'๏‡'}.ss-skiboot:before,.ss-skiboot.right:after{content:'๏ˆ'}.ss-skis:before,.ss-skis.right:after{content:'๐ŸŽฟ'}.ss-hiker:before,.ss-hiker.right:after{content:'๏'}.ss-runner:before,.ss-runner.right:after{content:'๐Ÿƒ'}.ss-hottub:before,.ss-hottub.right:after{content:'๏‘'}.ss-exercise:before,.ss-exercise.right:after{content:'๏”'}.ss-hospital:before,.ss-hospital.right:after{content:'โ›จ'}.ss-medicalcross:before,.ss-medicalcross.right:after{content:'๏’ฐ'}.ss-medicalbag:before,.ss-medicalbag.right:after{content:'๏’ฑ'}.ss-bandage:before,.ss-bandage.right:after{content:'๏’ฒ'}.ss-flask:before,.ss-flask.right:after{content:'๏“€'}.ss-testtube:before,.ss-testtube.right:after{content:'๏“'}.ss-up:before,.ss-up.right:after{content:'โฌ†'}.ss-right:before,.ss-right.right:after{content:'โžก'}.ss-down:before,.ss-down.right:after{content:'โฌ‡'}.ss-left:before,.ss-left.right:after{content:'โฌ…'}.ss-navigateup:before,.ss-navigateup.right:after{content:'๏”€'}.ss-navigateright:before,.ss-navigateright.right:after{content:'โ–ป'}.ss-navigatedown:before,.ss-navigatedown.right:after{content:'๏”'}.ss-navigateleft:before,.ss-navigateleft.right:after{content:'โ—…'}.ss-share:before,.ss-share.right:after{content:'๏˜'}