semantic-ui-sass 0.19.3.1 → 1.7.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (107) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +21 -0
  3. data/README.md +5 -6
  4. data/app/assets/fonts/semantic-ui/icons.eot +0 -0
  5. data/app/assets/fonts/semantic-ui/icons.otf +0 -0
  6. data/app/assets/fonts/semantic-ui/icons.svg +472 -367
  7. data/app/assets/fonts/semantic-ui/icons.ttf +0 -0
  8. data/app/assets/fonts/semantic-ui/icons.woff +0 -0
  9. data/app/assets/images/semantic-ui/flags.png +0 -0
  10. data/app/assets/javascripts/semantic-ui.js +9 -5
  11. data/app/assets/javascripts/semantic-ui/accordion.js +169 -102
  12. data/app/assets/javascripts/semantic-ui/api.js +840 -0
  13. data/app/assets/javascripts/semantic-ui/checkbox.js +203 -46
  14. data/app/assets/javascripts/semantic-ui/{behavior/colorize.js → colorize.js} +4 -2
  15. data/app/assets/javascripts/semantic-ui/dimmer.js +110 -76
  16. data/app/assets/javascripts/semantic-ui/dropdown.js +897 -285
  17. data/app/assets/javascripts/semantic-ui/{behavior/form.js → form.js} +127 -42
  18. data/app/assets/javascripts/semantic-ui/modal.js +294 -219
  19. data/app/assets/javascripts/semantic-ui/nag.js +120 -186
  20. data/app/assets/javascripts/semantic-ui/popup.js +491 -223
  21. data/app/assets/javascripts/semantic-ui/progress.js +779 -0
  22. data/app/assets/javascripts/semantic-ui/rating.js +66 -22
  23. data/app/assets/javascripts/semantic-ui/search.js +219 -99
  24. data/app/assets/javascripts/semantic-ui/shape.js +72 -29
  25. data/app/assets/javascripts/semantic-ui/sidebar.js +678 -142
  26. data/app/assets/javascripts/semantic-ui/site.js +487 -0
  27. data/app/assets/javascripts/semantic-ui/{behavior/state.js → state.js} +116 -151
  28. data/app/assets/javascripts/semantic-ui/sticky.js +771 -0
  29. data/app/assets/javascripts/semantic-ui/tab.js +680 -603
  30. data/app/assets/javascripts/semantic-ui/transition.js +269 -158
  31. data/app/assets/javascripts/semantic-ui/video.js +113 -32
  32. data/app/assets/javascripts/semantic-ui/visibility.js +970 -0
  33. data/app/assets/javascripts/semantic-ui/visit.js +513 -0
  34. data/app/assets/stylesheets/semantic-ui.scss +2 -0
  35. data/app/assets/stylesheets/semantic-ui/collections/_breadcrumb.scss +58 -14
  36. data/app/assets/stylesheets/semantic-ui/collections/_form.scss +464 -372
  37. data/app/assets/stylesheets/semantic-ui/collections/_grid.scss +1385 -533
  38. data/app/assets/stylesheets/semantic-ui/collections/_menu.scss +482 -655
  39. data/app/assets/stylesheets/semantic-ui/collections/_message.scss +238 -139
  40. data/app/assets/stylesheets/semantic-ui/collections/_table.scss +631 -280
  41. data/app/assets/stylesheets/semantic-ui/elements/_all.scss +3 -2
  42. data/app/assets/stylesheets/semantic-ui/elements/_button.scss +1614 -657
  43. data/app/assets/stylesheets/semantic-ui/elements/_divider.scss +143 -80
  44. data/app/assets/stylesheets/semantic-ui/elements/_flag.scss +1018 -0
  45. data/app/assets/stylesheets/semantic-ui/elements/_header.scss +302 -145
  46. data/app/assets/stylesheets/semantic-ui/elements/_icon.scss +1653 -1365
  47. data/app/assets/stylesheets/semantic-ui/elements/_image.scss +160 -59
  48. data/app/assets/stylesheets/semantic-ui/elements/_input.scss +247 -118
  49. data/app/assets/stylesheets/semantic-ui/elements/_label.scss +501 -470
  50. data/app/assets/stylesheets/semantic-ui/elements/_list.scss +888 -0
  51. data/app/assets/stylesheets/semantic-ui/elements/_loader.scss +189 -98
  52. data/app/assets/stylesheets/semantic-ui/elements/_rail.scss +125 -0
  53. data/app/assets/stylesheets/semantic-ui/elements/_reveal.scss +147 -212
  54. data/app/assets/stylesheets/semantic-ui/elements/_segment.scss +328 -190
  55. data/app/assets/stylesheets/semantic-ui/elements/_step.scss +261 -185
  56. data/app/assets/stylesheets/semantic-ui/globals/_all.scss +2 -0
  57. data/app/assets/stylesheets/semantic-ui/globals/_reset.scss +430 -0
  58. data/app/assets/stylesheets/semantic-ui/globals/_site.scss +128 -0
  59. data/app/assets/stylesheets/semantic-ui/modules/_accordion.scss +190 -106
  60. data/app/assets/stylesheets/semantic-ui/modules/_all.scss +2 -1
  61. data/app/assets/stylesheets/semantic-ui/modules/_checkbox.scss +303 -201
  62. data/app/assets/stylesheets/semantic-ui/modules/_dimmer.scss +72 -63
  63. data/app/assets/stylesheets/semantic-ui/modules/_dropdown.scss +711 -331
  64. data/app/assets/stylesheets/semantic-ui/modules/_modal.scss +262 -140
  65. data/app/assets/stylesheets/semantic-ui/modules/_nag.scss +82 -71
  66. data/app/assets/stylesheets/semantic-ui/modules/_popup.scss +163 -119
  67. data/app/assets/stylesheets/semantic-ui/modules/_progress.scss +435 -0
  68. data/app/assets/stylesheets/semantic-ui/modules/_rating.scss +163 -68
  69. data/app/assets/stylesheets/semantic-ui/modules/_search.scss +223 -150
  70. data/app/assets/stylesheets/semantic-ui/modules/_shape.scss +39 -40
  71. data/app/assets/stylesheets/semantic-ui/modules/_sidebar.scss +413 -147
  72. data/app/assets/stylesheets/semantic-ui/modules/_sticky.scss +80 -0
  73. data/app/assets/stylesheets/semantic-ui/modules/_tab.scss +49 -20
  74. data/app/assets/stylesheets/semantic-ui/modules/_transition.scss +542 -568
  75. data/app/assets/stylesheets/semantic-ui/modules/_video.scss +69 -37
  76. data/app/assets/stylesheets/semantic-ui/views/_ad.scss +265 -0
  77. data/app/assets/stylesheets/semantic-ui/views/_all.scss +1 -1
  78. data/app/assets/stylesheets/semantic-ui/views/_card.scss +758 -0
  79. data/app/assets/stylesheets/semantic-ui/views/_comment.scss +133 -92
  80. data/app/assets/stylesheets/semantic-ui/views/_feed.scss +200 -87
  81. data/app/assets/stylesheets/semantic-ui/views/_item.scss +298 -523
  82. data/app/assets/stylesheets/semantic-ui/views/_statistic.scss +390 -12
  83. data/lib/semantic/ui/sass/version.rb +2 -2
  84. data/tasks/converter.rb +99 -216
  85. metadata +22 -27
  86. data/app/assets/fonts/semantic-ui/basic.icons.eot +0 -0
  87. data/app/assets/fonts/semantic-ui/basic.icons.svg +0 -450
  88. data/app/assets/fonts/semantic-ui/basic.icons.ttf +0 -0
  89. data/app/assets/fonts/semantic-ui/basic.icons.woff +0 -0
  90. data/app/assets/images/semantic-ui/loader-large-inverted.gif +0 -0
  91. data/app/assets/images/semantic-ui/loader-large.gif +0 -0
  92. data/app/assets/images/semantic-ui/loader-medium-inverted.gif +0 -0
  93. data/app/assets/images/semantic-ui/loader-medium.gif +0 -0
  94. data/app/assets/images/semantic-ui/loader-mini-inverted.gif +0 -0
  95. data/app/assets/images/semantic-ui/loader-mini.gif +0 -0
  96. data/app/assets/images/semantic-ui/loader-small-inverted.gif +0 -0
  97. data/app/assets/images/semantic-ui/loader-small.gif +0 -0
  98. data/app/assets/javascripts/semantic-ui/behavior/api.js +0 -634
  99. data/app/assets/javascripts/semantic-ui/chatroom.js +0 -772
  100. data/app/assets/stylesheets/semantic-ui/depends/_basic.icon.scss +0 -4
  101. data/app/assets/stylesheets/semantic-ui/depends/_icon.scss +0 -4
  102. data/app/assets/stylesheets/semantic-ui/depends/_loader.scss +0 -8
  103. data/app/assets/stylesheets/semantic-ui/elements/_basic.icon.scss +0 -1124
  104. data/app/assets/stylesheets/semantic-ui/elements/_progress.scss +0 -280
  105. data/app/assets/stylesheets/semantic-ui/modules/_chatroom.scss +0 -299
  106. data/app/assets/stylesheets/semantic-ui/modules/_reveal.scss +0 -322
  107. data/app/assets/stylesheets/semantic-ui/views/_list.scss +0 -700
@@ -1,7 +1,7 @@
1
- /*
2
- * # Semantic - Divider
3
- * http://github.com/jlukic/semantic-ui/
4
- *
1
+ /*
2
+ * # Semantic UI
3
+ * https://github.com/Semantic-Org/Semantic-UI
4
+ * http://www.semantic-ui.com/
5
5
  *
6
6
  * Copyright 2014 Contributors
7
7
  * Released under the MIT license
@@ -9,39 +9,73 @@
9
9
  *
10
10
  */
11
11
 
12
+
13
+
12
14
  /*******************************
13
15
  Divider
14
16
  *******************************/
15
17
 
16
18
  .ui.divider {
17
19
  margin: 1rem 0rem;
18
- border-top: 1px solid rgba(0, 0, 0, 0.1);
19
- border-bottom: 1px solid rgba(255, 255, 255, 0.8);
20
20
  line-height: 1;
21
21
  height: 0em;
22
- -webkit-box-sizing: border-box;
23
- -moz-box-sizing: border-box;
24
- -ms-box-sizing: border-box;
25
- box-sizing: border-box;
22
+ font-weight: bold;
23
+ text-transform: uppercase;
24
+ letter-spacing: 0.05em;
25
+ color: rgba(0, 0, 0, 0.85);
26
26
  -webkit-user-select: none;
27
- -moz-user-select: none;
28
- -ms-user-select: none;
29
- user-select: none;
27
+ -moz-user-select: none;
28
+ -ms-user-select: none;
29
+ user-select: none;
30
30
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
31
31
  }
32
32
 
33
- .ui.vertical.divider,
33
+ /*--------------
34
+ Basic
35
+ ---------------*/
36
+
37
+ .ui.divider:not(.vertical):not(.horizontal) {
38
+ border-top: 1px solid rgba(0, 0, 0, 0.1);
39
+ border-bottom: 1px solid rgba(255, 255, 255, 0.2);
40
+ }
41
+
42
+ /*--------------
43
+ Coupling
44
+ ---------------*/
45
+
46
+ .ui.grid > .ui.divider {
47
+ font-size: 1rem;
48
+ }
49
+
50
+ /*--------------
51
+ Horizontal
52
+ ---------------*/
53
+
34
54
  .ui.horizontal.divider {
35
- position: absolute;
36
- border: none;
37
- height: 0em;
38
- margin: 0em;
39
- background-color: transparent;
40
- font-size: 0.875rem;
41
- font-weight: bold;
55
+ position: relative;
56
+ height: auto;
57
+ margin: '';
58
+ overflow: hidden;
59
+ line-height: 1;
42
60
  text-align: center;
43
- text-transform: uppercase;
44
- color: rgba(0, 0, 0, 0.8);
61
+ }
62
+ .ui.horizontal.divider:before,
63
+ .ui.horizontal.divider:after {
64
+ position: absolute;
65
+ content: '';
66
+ z-index: 3;
67
+ width: 50%;
68
+ top: 50%;
69
+ height: 0px;
70
+ border-top: 1px solid rgba(0, 0, 0, 0.1);
71
+ border-bottom: 1px solid rgba(255, 255, 255, 0.2);
72
+ }
73
+ .ui.horizontal.divider:before {
74
+ margin-left: -webkit-calc(-50% - 1em );
75
+ margin-left: calc(-50% - 1em );
76
+ }
77
+ .ui.horizontal.divider:after {
78
+ margin-left: 1em;
45
79
  }
46
80
 
47
81
  /*--------------
@@ -53,70 +87,70 @@
53
87
  z-index: 2;
54
88
  top: 50%;
55
89
  left: 50%;
56
- margin: 0% 0% 0% -3%;
57
- width: 6%;
58
- height: 50%;
59
- line-height: 0;
90
+ margin: 0rem;
60
91
  padding: 0em;
92
+ width: auto;
93
+ height: 50%;
94
+ line-height: 0em;
95
+ text-align: center;
96
+ -webkit-transform: translateX(-50%);
97
+ -ms-transform: translateX(-50%);
98
+ transform: translateX(-50%);
61
99
  }
62
-
63
100
  .ui.vertical.divider:before,
64
101
  .ui.vertical.divider:after {
65
102
  position: absolute;
66
103
  left: 50%;
67
- content: " ";
104
+ content: '';
68
105
  z-index: 3;
69
106
  border-left: 1px solid rgba(0, 0, 0, 0.1);
70
- border-right: 1px solid rgba(255, 255, 255, 0.8);
107
+ border-right: 1px solid rgba(255, 255, 255, 0.2);
71
108
  width: 0%;
72
- height: 80%;
109
+ height: -webkit-calc(100% - 1rem );
110
+ height: calc(100% - 1rem );
73
111
  }
74
-
75
112
  .ui.vertical.divider:before {
76
113
  top: -100%;
77
114
  }
78
-
79
115
  .ui.vertical.divider:after {
80
116
  top: auto;
81
117
  bottom: 0px;
82
118
  }
83
119
 
84
- /*--------------
85
- Horizontal
86
- ---------------*/
87
-
88
- .ui.horizontal.divider {
89
- position: relative;
90
- top: 0%;
91
- left: 0%;
92
- margin: 1rem 1.5rem;
93
- height: auto;
94
- padding: 0em;
95
- line-height: 1;
96
- }
97
-
98
- .ui.horizontal.divider:before,
99
- .ui.horizontal.divider:after {
100
- position: absolute;
101
- top: 50%;
102
- content: " ";
103
- z-index: 3;
104
- width: 50%;
105
- top: 50%;
106
- height: 0%;
107
- border-top: 1px solid rgba(0, 0, 0, 0.1);
108
- border-bottom: 1px solid rgba(255, 255, 255, 0.8);
109
- }
110
-
111
- .ui.horizontal.divider:before {
112
- left: 0%;
113
- margin-left: -1.5rem;
114
- }
115
-
116
- .ui.horizontal.divider:after {
117
- left: auto;
118
- right: 0%;
119
- margin-right: -1.5rem;
120
+ /* Inside grid */
121
+ @media only screen and (max-width: 767px) {
122
+ .ui.stackable.grid .ui.vertical.divider,
123
+ .ui.grid .stackable.row .ui.vertical.divider {
124
+ position: relative;
125
+ margin: 1rem 0rem;
126
+ left: 50%;
127
+ height: auto;
128
+ overflow: hidden;
129
+ line-height: 1;
130
+ text-align: center;
131
+ }
132
+ .ui.stackable.grid .ui.vertical.divider:before,
133
+ .ui.grid .stackable.row .ui.vertical.divider:before,
134
+ .ui.stackable.grid .ui.vertical.divider:after,
135
+ .ui.grid .stackable.row .ui.vertical.divider:after {
136
+ position: absolute;
137
+ left: auto;
138
+ content: '';
139
+ z-index: 3;
140
+ width: 50%;
141
+ top: 50%;
142
+ height: 0px;
143
+ border-top: 1px solid rgba(0, 0, 0, 0.1);
144
+ border-bottom: 1px solid rgba(255, 255, 255, 0.2);
145
+ }
146
+ .ui.stackable.grid .ui.vertical.divider:before,
147
+ .ui.grid .stackable.row .ui.vertical.divider:before {
148
+ margin-left: -51%;
149
+ }
150
+ .ui.stackable.grid .ui.vertical.divider:after,
151
+ .ui.grid .stackable.row .ui.vertical.divider:after {
152
+ margin-left: 1em;
153
+ }
120
154
  }
121
155
 
122
156
  /*--------------
@@ -124,35 +158,44 @@
124
158
  ---------------*/
125
159
 
126
160
  .ui.divider > .icon {
127
- margin: 0em;
161
+ margin: 0rem;
128
162
  font-size: 1rem;
163
+ height: 1em;
129
164
  vertical-align: middle;
130
165
  }
131
166
 
167
+
132
168
  /*******************************
133
- Variations
169
+ Variations
134
170
  *******************************/
135
171
 
172
+
173
+ /*--------------
174
+ Hidden
175
+ ---------------*/
176
+
177
+ .ui.hidden.divider {
178
+ border-color: transparent !important;
179
+ }
180
+
136
181
  /*--------------
137
182
  Inverted
138
183
  ---------------*/
139
184
 
140
185
  .ui.divider.inverted {
141
- color: rgba(255, 255, 255, 1);
186
+ color: #ffffff;
142
187
  }
143
-
144
188
  .ui.vertical.inverted.divider,
145
189
  .ui.horizontal.inverted.divider {
146
- color: rgba(255, 255, 255, 0.9);
190
+ color: #ffffff;
147
191
  }
148
-
149
192
  .ui.divider.inverted,
150
193
  .ui.divider.inverted:after,
151
194
  .ui.divider.inverted:before {
152
- border-top-color: rgba(0, 0, 0, 0.15);
153
- border-bottom-color: rgba(255, 255, 255, 0.15);
154
- border-left-color: rgba(0, 0, 0, 0.15);
155
- border-right-color: rgba(255, 255, 255, 0.15);
195
+ border-top-color: rgba(0, 0, 0, 0.15) !important;
196
+ border-bottom-color: rgba(255, 255, 255, 0.15) !important;
197
+ border-left-color: rgba(0, 0, 0, 0.15) !important;
198
+ border-right-color: rgba(255, 255, 255, 0.15) !important;
156
199
  }
157
200
 
158
201
  /*--------------
@@ -178,4 +221,24 @@
178
221
  .ui.section.divider {
179
222
  margin-top: 2rem;
180
223
  margin-bottom: 2rem;
181
- }
224
+ }
225
+
226
+ /*--------------
227
+ Sizes
228
+ ---------------*/
229
+
230
+ .ui.divider {
231
+ font-size: 1rem;
232
+ }
233
+
234
+
235
+ /*******************************
236
+ Theme Overrides
237
+ *******************************/
238
+
239
+
240
+
241
+ /*******************************
242
+ Site Overrides
243
+ *******************************/
244
+
@@ -0,0 +1,1018 @@
1
+ /*
2
+ * # Semantic UI
3
+ * https://github.com/Semantic-Org/Semantic-UI
4
+ * http://www.semantic-ui.com/
5
+ *
6
+ * Copyright 2014 Contributors
7
+ * Released under the MIT license
8
+ * http://opensource.org/licenses/MIT
9
+ *
10
+ */
11
+
12
+ i.flag:not(.icon) {
13
+ display: inline-block;
14
+ width: 16px;
15
+ height: 11px;
16
+ line-height: 11px;
17
+ vertical-align: baseline;
18
+ margin: 0em 0.5em 0em 0em;
19
+ text-decoration: inherit;
20
+ speak: none;
21
+ font-smoothing: antialiased;
22
+ -webkit-backface-visibility: hidden;
23
+ backface-visibility: hidden;
24
+ }
25
+ i.flag:not(.icon):before {
26
+ display: inline-block;
27
+ content: '';
28
+ background: image-url("semantic-ui/flags.png") no-repeat 0px 0px;
29
+ width: 16px;
30
+ height: 11px;
31
+ }
32
+
33
+ /* Flag Sprite Based On http://www.famfamfam.com/lab/icons/flags/ */
34
+
35
+
36
+ /*******************************
37
+ Theme Overrides
38
+ *******************************/
39
+
40
+ i.flag.ad:before,
41
+ i.flag.andorra:before {
42
+ background-position: 0px 0px;
43
+ }
44
+ i.flag.ae:before,
45
+ i.flag.united.arab.emirates:before,
46
+ i.flag.uae:before {
47
+ background-position: 0px -26px;
48
+ }
49
+ i.flag.af:before,
50
+ i.flag.afghanistan:before {
51
+ background-position: 0px -52px;
52
+ }
53
+ i.flag.ag:before,
54
+ i.flag.antigua:before {
55
+ background-position: 0px -78px;
56
+ }
57
+ i.flag.ai:before,
58
+ i.flag.anguilla:before {
59
+ background-position: 0px -104px;
60
+ }
61
+ i.flag.al:before,
62
+ i.flag.albania:before {
63
+ background-position: 0px -130px;
64
+ }
65
+ i.flag.am:before,
66
+ i.flag.armenia:before {
67
+ background-position: 0px -156px;
68
+ }
69
+ i.flag.an:before,
70
+ i.flag.netherlands.antilles:before {
71
+ background-position: 0px -182px;
72
+ }
73
+ i.flag.ao:before,
74
+ i.flag.angola:before {
75
+ background-position: 0px -208px;
76
+ }
77
+ i.flag.ar:before,
78
+ i.flag.argentina:before {
79
+ background-position: 0px -234px;
80
+ }
81
+ i.flag.as:before,
82
+ i.flag.american.samoa:before {
83
+ background-position: 0px -260px;
84
+ }
85
+ i.flag.at:before,
86
+ i.flag.austria:before {
87
+ background-position: 0px -286px;
88
+ }
89
+ i.flag.au:before,
90
+ i.flag.australia:before {
91
+ background-position: 0px -312px;
92
+ }
93
+ i.flag.aw:before,
94
+ i.flag.aruba:before {
95
+ background-position: 0px -338px;
96
+ }
97
+ i.flag.ax:before,
98
+ i.flag.aland.islands:before {
99
+ background-position: 0px -364px;
100
+ }
101
+ i.flag.az:before,
102
+ i.flag.azerbaijan:before {
103
+ background-position: 0px -390px;
104
+ }
105
+ i.flag.ba:before,
106
+ i.flag.bosnia:before {
107
+ background-position: 0px -416px;
108
+ }
109
+ i.flag.bb:before,
110
+ i.flag.barbados:before {
111
+ background-position: 0px -442px;
112
+ }
113
+ i.flag.bd:before,
114
+ i.flag.bangladesh:before {
115
+ background-position: 0px -468px;
116
+ }
117
+ i.flag.be:before,
118
+ i.flag.belgium:before {
119
+ background-position: 0px -494px;
120
+ }
121
+ i.flag.bf:before,
122
+ i.flag.burkina.faso:before {
123
+ background-position: 0px -520px;
124
+ }
125
+ i.flag.bg:before,
126
+ i.flag.bulgaria:before {
127
+ background-position: 0px -546px;
128
+ }
129
+ i.flag.bh:before,
130
+ i.flag.bahrain:before {
131
+ background-position: 0px -572px;
132
+ }
133
+ i.flag.bi:before,
134
+ i.flag.burundi:before {
135
+ background-position: 0px -598px;
136
+ }
137
+ i.flag.bj:before,
138
+ i.flag.benin:before {
139
+ background-position: 0px -624px;
140
+ }
141
+ i.flag.bm:before,
142
+ i.flag.bermuda:before {
143
+ background-position: 0px -650px;
144
+ }
145
+ i.flag.bn:before,
146
+ i.flag.brunei:before {
147
+ background-position: 0px -676px;
148
+ }
149
+ i.flag.bo:before,
150
+ i.flag.bolivia:before {
151
+ background-position: 0px -702px;
152
+ }
153
+ i.flag.br:before,
154
+ i.flag.brazil:before {
155
+ background-position: 0px -728px;
156
+ }
157
+ i.flag.bs:before,
158
+ i.flag.bahamas:before {
159
+ background-position: 0px -754px;
160
+ }
161
+ i.flag.bt:before,
162
+ i.flag.bhutan:before {
163
+ background-position: 0px -780px;
164
+ }
165
+ i.flag.bv:before,
166
+ i.flag.bouvet.island:before {
167
+ background-position: 0px -806px;
168
+ }
169
+ i.flag.bw:before,
170
+ i.flag.botswana:before {
171
+ background-position: 0px -832px;
172
+ }
173
+ i.flag.by:before,
174
+ i.flag.belarus:before {
175
+ background-position: 0px -858px;
176
+ }
177
+ i.flag.bz:before,
178
+ i.flag.belize:before {
179
+ background-position: 0px -884px;
180
+ }
181
+ i.flag.ca:before,
182
+ i.flag.canada:before {
183
+ background-position: 0px -910px;
184
+ }
185
+ i.flag.cc:before,
186
+ i.flag.cocos.islands:before {
187
+ background-position: 0px -962px;
188
+ }
189
+ i.flag.cd:before,
190
+ i.flag.congo:before {
191
+ background-position: 0px -988px;
192
+ }
193
+ i.flag.cf:before,
194
+ i.flag.central.african.republic:before {
195
+ background-position: 0px -1014px;
196
+ }
197
+ i.flag.cg:before,
198
+ i.flag.congo.brazzaville:before {
199
+ background-position: 0px -1040px;
200
+ }
201
+ i.flag.ch:before,
202
+ i.flag.switzerland:before {
203
+ background-position: 0px -1066px;
204
+ }
205
+ i.flag.ci:before,
206
+ i.flag.cote.divoire:before {
207
+ background-position: 0px -1092px;
208
+ }
209
+ i.flag.ck:before,
210
+ i.flag.cook.islands:before {
211
+ background-position: 0px -1118px;
212
+ }
213
+ i.flag.cl:before,
214
+ i.flag.chile:before {
215
+ background-position: 0px -1144px;
216
+ }
217
+ i.flag.cm:before,
218
+ i.flag.cameroon:before {
219
+ background-position: 0px -1170px;
220
+ }
221
+ i.flag.cn:before,
222
+ i.flag.china:before {
223
+ background-position: 0px -1196px;
224
+ }
225
+ i.flag.co:before,
226
+ i.flag.colombia:before {
227
+ background-position: 0px -1222px;
228
+ }
229
+ i.flag.cr:before,
230
+ i.flag.costa.rica:before {
231
+ background-position: 0px -1248px;
232
+ }
233
+ i.flag.cs:before,
234
+ i.flag.serbia:before {
235
+ background-position: 0px -1274px;
236
+ }
237
+ i.flag.cu:before,
238
+ i.flag.cuba:before {
239
+ background-position: 0px -1300px;
240
+ }
241
+ i.flag.cv:before,
242
+ i.flag.cape.verde:before {
243
+ background-position: 0px -1326px;
244
+ }
245
+ i.flag.cx:before,
246
+ i.flag.christmas.island:before {
247
+ background-position: 0px -1352px;
248
+ }
249
+ i.flag.cy:before,
250
+ i.flag.cyprus:before {
251
+ background-position: 0px -1378px;
252
+ }
253
+ i.flag.cz:before,
254
+ i.flag.czech.republic:before {
255
+ background-position: 0px -1404px;
256
+ }
257
+ i.flag.de:before,
258
+ i.flag.germany:before {
259
+ background-position: 0px -1430px;
260
+ }
261
+ i.flag.dj:before,
262
+ i.flag.djibouti:before {
263
+ background-position: 0px -1456px;
264
+ }
265
+ i.flag.dk:before,
266
+ i.flag.denmark:before {
267
+ background-position: 0px -1482px;
268
+ }
269
+ i.flag.dm:before,
270
+ i.flag.dominica:before {
271
+ background-position: 0px -1508px;
272
+ }
273
+ i.flag.do:before,
274
+ i.flag.dominican.republic:before {
275
+ background-position: 0px -1534px;
276
+ }
277
+ i.flag.dz:before,
278
+ i.flag.algeria:before {
279
+ background-position: 0px -1560px;
280
+ }
281
+ i.flag.ec:before,
282
+ i.flag.ecuador:before {
283
+ background-position: 0px -1586px;
284
+ }
285
+ i.flag.ee:before,
286
+ i.flag.estonia:before {
287
+ background-position: 0px -1612px;
288
+ }
289
+ i.flag.eg:before,
290
+ i.flag.egypt:before {
291
+ background-position: 0px -1638px;
292
+ }
293
+ i.flag.eh:before,
294
+ i.flag.western.sahara:before {
295
+ background-position: 0px -1664px;
296
+ }
297
+ i.flag.er:before,
298
+ i.flag.eritrea:before {
299
+ background-position: 0px -1716px;
300
+ }
301
+ i.flag.es:before,
302
+ i.flag.spain:before {
303
+ background-position: 0px -1742px;
304
+ }
305
+ i.flag.et:before,
306
+ i.flag.ethiopia:before {
307
+ background-position: 0px -1768px;
308
+ }
309
+ i.flag.eu:before,
310
+ i.flag.european.union:before {
311
+ background-position: 0px -1794px;
312
+ }
313
+ i.flag.fi:before,
314
+ i.flag.finland:before {
315
+ background-position: 0px -1846px;
316
+ }
317
+ i.flag.fj:before,
318
+ i.flag.fiji:before {
319
+ background-position: 0px -1872px;
320
+ }
321
+ i.flag.fk:before,
322
+ i.flag.falkland.islands:before {
323
+ background-position: 0px -1898px;
324
+ }
325
+ i.flag.fm:before,
326
+ i.flag.micronesia:before {
327
+ background-position: 0px -1924px;
328
+ }
329
+ i.flag.fo:before,
330
+ i.flag.faroe.islands:before {
331
+ background-position: 0px -1950px;
332
+ }
333
+ i.flag.fr:before,
334
+ i.flag.france:before {
335
+ background-position: 0px -1976px;
336
+ }
337
+ i.flag.ga:before,
338
+ i.flag.gabon:before {
339
+ background-position: -36px 0px;
340
+ }
341
+ i.flag.gb:before,
342
+ i.flag.england:before,
343
+ i.flag.united.kingdom:before {
344
+ background-position: -36px -26px;
345
+ }
346
+ i.flag.gd:before,
347
+ i.flag.grenada:before {
348
+ background-position: -36px -52px;
349
+ }
350
+ i.flag.ge:before,
351
+ i.flag.georgia:before {
352
+ background-position: -36px -78px;
353
+ }
354
+ i.flag.gf:before,
355
+ i.flag.french.guiana:before {
356
+ background-position: -36px -104px;
357
+ }
358
+ i.flag.gh:before,
359
+ i.flag.ghana:before {
360
+ background-position: -36px -130px;
361
+ }
362
+ i.flag.gi:before,
363
+ i.flag.gibraltar:before {
364
+ background-position: -36px -156px;
365
+ }
366
+ i.flag.gl:before,
367
+ i.flag.greenland:before {
368
+ background-position: -36px -182px;
369
+ }
370
+ i.flag.gm:before,
371
+ i.flag.gambia:before {
372
+ background-position: -36px -208px;
373
+ }
374
+ i.flag.gn:before,
375
+ i.flag.guinea:before {
376
+ background-position: -36px -234px;
377
+ }
378
+ i.flag.gp:before,
379
+ i.flag.guadeloupe:before {
380
+ background-position: -36px -260px;
381
+ }
382
+ i.flag.gq:before,
383
+ i.flag.equatorial.guinea:before {
384
+ background-position: -36px -286px;
385
+ }
386
+ i.flag.gr:before,
387
+ i.flag.greece:before {
388
+ background-position: -36px -312px;
389
+ }
390
+ i.flag.gs:before,
391
+ i.flag.sandwich.islands:before {
392
+ background-position: -36px -338px;
393
+ }
394
+ i.flag.gt:before,
395
+ i.flag.guatemala:before {
396
+ background-position: -36px -364px;
397
+ }
398
+ i.flag.gu:before,
399
+ i.flag.guam:before {
400
+ background-position: -36px -390px;
401
+ }
402
+ i.flag.gw:before,
403
+ i.flag.guinea-bissau:before {
404
+ background-position: -36px -416px;
405
+ }
406
+ i.flag.gy:before,
407
+ i.flag.guyana:before {
408
+ background-position: -36px -442px;
409
+ }
410
+ i.flag.hk:before,
411
+ i.flag.hong.kong:before {
412
+ background-position: -36px -468px;
413
+ }
414
+ i.flag.hm:before,
415
+ i.flag.heard.island:before {
416
+ background-position: -36px -494px;
417
+ }
418
+ i.flag.hn:before,
419
+ i.flag.honduras:before {
420
+ background-position: -36px -520px;
421
+ }
422
+ i.flag.hr:before,
423
+ i.flag.croatia:before {
424
+ background-position: -36px -546px;
425
+ }
426
+ i.flag.ht:before,
427
+ i.flag.haiti:before {
428
+ background-position: -36px -572px;
429
+ }
430
+ i.flag.hu:before,
431
+ i.flag.hungary:before {
432
+ background-position: -36px -598px;
433
+ }
434
+ i.flag.id:before,
435
+ i.flag.indonesia:before {
436
+ background-position: -36px -624px;
437
+ }
438
+ i.flag.ie:before,
439
+ i.flag.ireland:before {
440
+ background-position: -36px -650px;
441
+ }
442
+ i.flag.il:before,
443
+ i.flag.israel:before {
444
+ background-position: -36px -676px;
445
+ }
446
+ i.flag.in:before,
447
+ i.flag.india:before {
448
+ background-position: -36px -702px;
449
+ }
450
+ i.flag.io:before,
451
+ i.flag.indian.ocean.territory:before {
452
+ background-position: -36px -728px;
453
+ }
454
+ i.flag.iq:before,
455
+ i.flag.iraq:before {
456
+ background-position: -36px -754px;
457
+ }
458
+ i.flag.ir:before,
459
+ i.flag.iran:before {
460
+ background-position: -36px -780px;
461
+ }
462
+ i.flag.is:before,
463
+ i.flag.iceland:before {
464
+ background-position: -36px -806px;
465
+ }
466
+ i.flag.it:before,
467
+ i.flag.italy:before {
468
+ background-position: -36px -832px;
469
+ }
470
+ i.flag.jm:before,
471
+ i.flag.jamaica:before {
472
+ background-position: -36px -858px;
473
+ }
474
+ i.flag.jo:before,
475
+ i.flag.jordan:before {
476
+ background-position: -36px -884px;
477
+ }
478
+ i.flag.jp:before,
479
+ i.flag.japan:before {
480
+ background-position: -36px -910px;
481
+ }
482
+ i.flag.ke:before,
483
+ i.flag.kenya:before {
484
+ background-position: -36px -936px;
485
+ }
486
+ i.flag.kg:before,
487
+ i.flag.kyrgyzstan:before {
488
+ background-position: -36px -962px;
489
+ }
490
+ i.flag.kh:before,
491
+ i.flag.cambodia:before {
492
+ background-position: -36px -988px;
493
+ }
494
+ i.flag.ki:before,
495
+ i.flag.kiribati:before {
496
+ background-position: -36px -1014px;
497
+ }
498
+ i.flag.km:before,
499
+ i.flag.comoros:before {
500
+ background-position: -36px -1040px;
501
+ }
502
+ i.flag.kn:before,
503
+ i.flag.saint.kitts.and.nevis:before {
504
+ background-position: -36px -1066px;
505
+ }
506
+ i.flag.kp:before,
507
+ i.flag.north.korea:before {
508
+ background-position: -36px -1092px;
509
+ }
510
+ i.flag.kr:before,
511
+ i.flag.south.korea:before {
512
+ background-position: -36px -1118px;
513
+ }
514
+ i.flag.kw:before,
515
+ i.flag.kuwait:before {
516
+ background-position: -36px -1144px;
517
+ }
518
+ i.flag.ky:before,
519
+ i.flag.cayman.islands:before {
520
+ background-position: -36px -1170px;
521
+ }
522
+ i.flag.kz:before,
523
+ i.flag.kazakhstan:before {
524
+ background-position: -36px -1196px;
525
+ }
526
+ i.flag.la:before,
527
+ i.flag.laos:before {
528
+ background-position: -36px -1222px;
529
+ }
530
+ i.flag.lb:before,
531
+ i.flag.lebanon:before {
532
+ background-position: -36px -1248px;
533
+ }
534
+ i.flag.lc:before,
535
+ i.flag.saint.lucia:before {
536
+ background-position: -36px -1274px;
537
+ }
538
+ i.flag.li:before,
539
+ i.flag.liechtenstein:before {
540
+ background-position: -36px -1300px;
541
+ }
542
+ i.flag.lk:before,
543
+ i.flag.sri.lanka:before {
544
+ background-position: -36px -1326px;
545
+ }
546
+ i.flag.lr:before,
547
+ i.flag.liberia:before {
548
+ background-position: -36px -1352px;
549
+ }
550
+ i.flag.ls:before,
551
+ i.flag.lesotho:before {
552
+ background-position: -36px -1378px;
553
+ }
554
+ i.flag.lt:before,
555
+ i.flag.lithuania:before {
556
+ background-position: -36px -1404px;
557
+ }
558
+ i.flag.lu:before,
559
+ i.flag.luxembourg:before {
560
+ background-position: -36px -1430px;
561
+ }
562
+ i.flag.lv:before,
563
+ i.flag.latvia:before {
564
+ background-position: -36px -1456px;
565
+ }
566
+ i.flag.ly:before,
567
+ i.flag.libya:before {
568
+ background-position: -36px -1482px;
569
+ }
570
+ i.flag.ma:before,
571
+ i.flag.morocco:before {
572
+ background-position: -36px -1508px;
573
+ }
574
+ i.flag.mc:before,
575
+ i.flag.monaco:before {
576
+ background-position: -36px -1534px;
577
+ }
578
+ i.flag.md:before,
579
+ i.flag.moldova:before {
580
+ background-position: -36px -1560px;
581
+ }
582
+ i.flag.me:before,
583
+ i.flag.montenegro:before {
584
+ background-position: -36px -1586px;
585
+ }
586
+ i.flag.mg:before,
587
+ i.flag.madagascar:before {
588
+ background-position: -36px -1613px;
589
+ }
590
+ i.flag.mh:before,
591
+ i.flag.marshall.islands:before {
592
+ background-position: -36px -1639px;
593
+ }
594
+ i.flag.mk:before,
595
+ i.flag.macedonia:before {
596
+ background-position: -36px -1665px;
597
+ }
598
+ i.flag.ml:before,
599
+ i.flag.mali:before {
600
+ background-position: -36px -1691px;
601
+ }
602
+ i.flag.mm:before,
603
+ i.flag.myanmar:before,
604
+ i.flag.burma:before {
605
+ background-position: -36px -1717px;
606
+ }
607
+ i.flag.mn:before,
608
+ i.flag.mongolia:before {
609
+ background-position: -36px -1743px;
610
+ }
611
+ i.flag.mo:before,
612
+ i.flag.macau:before {
613
+ background-position: -36px -1769px;
614
+ }
615
+ i.flag.mp:before,
616
+ i.flag.northern.mariana.islands:before {
617
+ background-position: -36px -1795px;
618
+ }
619
+ i.flag.mq:before,
620
+ i.flag.martinique:before {
621
+ background-position: -36px -1821px;
622
+ }
623
+ i.flag.mr:before,
624
+ i.flag.mauritania:before {
625
+ background-position: -36px -1847px;
626
+ }
627
+ i.flag.ms:before,
628
+ i.flag.montserrat:before {
629
+ background-position: -36px -1873px;
630
+ }
631
+ i.flag.mt:before,
632
+ i.flag.malta:before {
633
+ background-position: -36px -1899px;
634
+ }
635
+ i.flag.mu:before,
636
+ i.flag.mauritius:before {
637
+ background-position: -36px -1925px;
638
+ }
639
+ i.flag.mv:before,
640
+ i.flag.maldives:before {
641
+ background-position: -36px -1951px;
642
+ }
643
+ i.flag.mw:before,
644
+ i.flag.malawi:before {
645
+ background-position: -36px -1977px;
646
+ }
647
+ i.flag.mx:before,
648
+ i.flag.mexico:before {
649
+ background-position: -72px 0px;
650
+ }
651
+ i.flag.my:before,
652
+ i.flag.malaysia:before {
653
+ background-position: -72px -26px;
654
+ }
655
+ i.flag.mz:before,
656
+ i.flag.mozambique:before {
657
+ background-position: -72px -52px;
658
+ }
659
+ i.flag.na:before,
660
+ i.flag.namibia:before {
661
+ background-position: -72px -78px;
662
+ }
663
+ i.flag.nc:before,
664
+ i.flag.new.caledonia:before {
665
+ background-position: -72px -104px;
666
+ }
667
+ i.flag.ne:before,
668
+ i.flag.niger:before {
669
+ background-position: -72px -130px;
670
+ }
671
+ i.flag.nf:before,
672
+ i.flag.norfolk.island:before {
673
+ background-position: -72px -156px;
674
+ }
675
+ i.flag.ng:before,
676
+ i.flag.nigeria:before {
677
+ background-position: -72px -182px;
678
+ }
679
+ i.flag.ni:before,
680
+ i.flag.nicaragua:before {
681
+ background-position: -72px -208px;
682
+ }
683
+ i.flag.nl:before,
684
+ i.flag.netherlands:before {
685
+ background-position: -72px -234px;
686
+ }
687
+ i.flag.no:before,
688
+ i.flag.norway:before {
689
+ background-position: -72px -260px;
690
+ }
691
+ i.flag.np:before,
692
+ i.flag.nepal:before {
693
+ background-position: -72px -286px;
694
+ }
695
+ i.flag.nr:before,
696
+ i.flag.nauru:before {
697
+ background-position: -72px -312px;
698
+ }
699
+ i.flag.nu:before,
700
+ i.flag.niue:before {
701
+ background-position: -72px -338px;
702
+ }
703
+ i.flag.nz:before,
704
+ i.flag.new.zealand:before {
705
+ background-position: -72px -364px;
706
+ }
707
+ i.flag.om:before,
708
+ i.flag.oman:before {
709
+ background-position: -72px -390px;
710
+ }
711
+ i.flag.pa:before,
712
+ i.flag.panama:before {
713
+ background-position: -72px -416px;
714
+ }
715
+ i.flag.pe:before,
716
+ i.flag.peru:before {
717
+ background-position: -72px -442px;
718
+ }
719
+ i.flag.pf:before,
720
+ i.flag.french.polynesia:before {
721
+ background-position: -72px -468px;
722
+ }
723
+ i.flag.pg:before,
724
+ i.flag.new.guinea:before {
725
+ background-position: -72px -494px;
726
+ }
727
+ i.flag.ph:before,
728
+ i.flag.philippines:before {
729
+ background-position: -72px -520px;
730
+ }
731
+ i.flag.pk:before,
732
+ i.flag.pakistan:before {
733
+ background-position: -72px -546px;
734
+ }
735
+ i.flag.pl:before,
736
+ i.flag.poland:before {
737
+ background-position: -72px -572px;
738
+ }
739
+ i.flag.pm:before,
740
+ i.flag.saint.pierre:before {
741
+ background-position: -72px -598px;
742
+ }
743
+ i.flag.pn:before,
744
+ i.flag.pitcairn.islands:before {
745
+ background-position: -72px -624px;
746
+ }
747
+ i.flag.pr:before,
748
+ i.flag.puerto.rico:before {
749
+ background-position: -72px -650px;
750
+ }
751
+ i.flag.ps:before,
752
+ i.flag.palestine:before {
753
+ background-position: -72px -676px;
754
+ }
755
+ i.flag.pt:before,
756
+ i.flag.portugal:before {
757
+ background-position: -72px -702px;
758
+ }
759
+ i.flag.pw:before,
760
+ i.flag.palau:before {
761
+ background-position: -72px -728px;
762
+ }
763
+ i.flag.py:before,
764
+ i.flag.paraguay:before {
765
+ background-position: -72px -754px;
766
+ }
767
+ i.flag.qa:before,
768
+ i.flag.qatar:before {
769
+ background-position: -72px -780px;
770
+ }
771
+ i.flag.re:before,
772
+ i.flag.reunion:before {
773
+ background-position: -72px -806px;
774
+ }
775
+ i.flag.ro:before,
776
+ i.flag.romania:before {
777
+ background-position: -72px -832px;
778
+ }
779
+ i.flag.rs:before,
780
+ i.flag.serbia:before {
781
+ background-position: -72px -858px;
782
+ }
783
+ i.flag.ru:before,
784
+ i.flag.russia:before {
785
+ background-position: -72px -884px;
786
+ }
787
+ i.flag.rw:before,
788
+ i.flag.rwanda:before {
789
+ background-position: -72px -910px;
790
+ }
791
+ i.flag.sa:before,
792
+ i.flag.saudi.arabia:before {
793
+ background-position: -72px -936px;
794
+ }
795
+ i.flag.sb:before,
796
+ i.flag.solomon.islands:before {
797
+ background-position: -72px -962px;
798
+ }
799
+ i.flag.sc:before,
800
+ i.flag.seychelles:before {
801
+ background-position: -72px -988px;
802
+ }
803
+ i.flag.sd:before,
804
+ i.flag.sudan:before {
805
+ background-position: -72px -1040px;
806
+ }
807
+ i.flag.se:before,
808
+ i.flag.sweden:before {
809
+ background-position: -72px -1066px;
810
+ }
811
+ i.flag.sg:before,
812
+ i.flag.singapore:before {
813
+ background-position: -72px -1092px;
814
+ }
815
+ i.flag.sh:before,
816
+ i.flag.saint.helena:before {
817
+ background-position: -72px -1118px;
818
+ }
819
+ i.flag.si:before,
820
+ i.flag.slovenia:before {
821
+ background-position: -72px -1144px;
822
+ }
823
+ i.flag.sj:before,
824
+ i.flag.svalbard:before,
825
+ i.flag.jan.mayen:before {
826
+ background-position: -72px -1170px;
827
+ }
828
+ i.flag.sk:before,
829
+ i.flag.slovakia:before {
830
+ background-position: -72px -1196px;
831
+ }
832
+ i.flag.sl:before,
833
+ i.flag.sierra.leone:before {
834
+ background-position: -72px -1222px;
835
+ }
836
+ i.flag.sm:before,
837
+ i.flag.san.marino:before {
838
+ background-position: -72px -1248px;
839
+ }
840
+ i.flag.sn:before,
841
+ i.flag.senegal:before {
842
+ background-position: -72px -1274px;
843
+ }
844
+ i.flag.so:before,
845
+ i.flag.somalia:before {
846
+ background-position: -72px -1300px;
847
+ }
848
+ i.flag.sr:before,
849
+ i.flag.suriname:before {
850
+ background-position: -72px -1326px;
851
+ }
852
+ i.flag.st:before,
853
+ i.flag.sao.tome:before {
854
+ background-position: -72px -1352px;
855
+ }
856
+ i.flag.sv:before,
857
+ i.flag.el.salvador:before {
858
+ background-position: -72px -1378px;
859
+ }
860
+ i.flag.sy:before,
861
+ i.flag.syria:before {
862
+ background-position: -72px -1404px;
863
+ }
864
+ i.flag.sz:before,
865
+ i.flag.swaziland:before {
866
+ background-position: -72px -1430px;
867
+ }
868
+ i.flag.tc:before,
869
+ i.flag.caicos.islands:before {
870
+ background-position: -72px -1456px;
871
+ }
872
+ i.flag.td:before,
873
+ i.flag.chad:before {
874
+ background-position: -72px -1482px;
875
+ }
876
+ i.flag.tf:before,
877
+ i.flag.french.territories:before {
878
+ background-position: -72px -1508px;
879
+ }
880
+ i.flag.tg:before,
881
+ i.flag.togo:before {
882
+ background-position: -72px -1534px;
883
+ }
884
+ i.flag.th:before,
885
+ i.flag.thailand:before {
886
+ background-position: -72px -1560px;
887
+ }
888
+ i.flag.tj:before,
889
+ i.flag.tajikistan:before {
890
+ background-position: -72px -1586px;
891
+ }
892
+ i.flag.tk:before,
893
+ i.flag.tokelau:before {
894
+ background-position: -72px -1612px;
895
+ }
896
+ i.flag.tl:before,
897
+ i.flag.timorleste:before {
898
+ background-position: -72px -1638px;
899
+ }
900
+ i.flag.tm:before,
901
+ i.flag.turkmenistan:before {
902
+ background-position: -72px -1664px;
903
+ }
904
+ i.flag.tn:before,
905
+ i.flag.tunisia:before {
906
+ background-position: -72px -1690px;
907
+ }
908
+ i.flag.to:before,
909
+ i.flag.tonga:before {
910
+ background-position: -72px -1716px;
911
+ }
912
+ i.flag.tr:before,
913
+ i.flag.turkey:before {
914
+ background-position: -72px -1742px;
915
+ }
916
+ i.flag.tt:before,
917
+ i.flag.trinidad:before {
918
+ background-position: -72px -1768px;
919
+ }
920
+ i.flag.tv:before,
921
+ i.flag.tuvalu:before {
922
+ background-position: -72px -1794px;
923
+ }
924
+ i.flag.tw:before,
925
+ i.flag.taiwan:before {
926
+ background-position: -72px -1820px;
927
+ }
928
+ i.flag.tz:before,
929
+ i.flag.tanzania:before {
930
+ background-position: -72px -1846px;
931
+ }
932
+ i.flag.ua:before,
933
+ i.flag.ukraine:before {
934
+ background-position: -72px -1872px;
935
+ }
936
+ i.flag.ug:before,
937
+ i.flag.uganda:before {
938
+ background-position: -72px -1898px;
939
+ }
940
+ i.flag.um:before,
941
+ i.flag.us.minor.islands:before {
942
+ background-position: -72px -1924px;
943
+ }
944
+ i.flag.us:before,
945
+ i.flag.america:before,
946
+ i.flag.united.states:before {
947
+ background-position: -72px -1950px;
948
+ }
949
+ i.flag.uy:before,
950
+ i.flag.uruguay:before {
951
+ background-position: -72px -1976px;
952
+ }
953
+ i.flag.uz:before,
954
+ i.flag.uzbekistan:before {
955
+ background-position: -108px 0px;
956
+ }
957
+ i.flag.va:before,
958
+ i.flag.vatican.city:before {
959
+ background-position: -108px -26px;
960
+ }
961
+ i.flag.vc:before,
962
+ i.flag.saint.vincent:before {
963
+ background-position: -108px -52px;
964
+ }
965
+ i.flag.ve:before,
966
+ i.flag.venezuela:before {
967
+ background-position: -108px -78px;
968
+ }
969
+ i.flag.vg:before,
970
+ i.flag.british.virgin.islands:before {
971
+ background-position: -108px -104px;
972
+ }
973
+ i.flag.vi:before,
974
+ i.flag.us.virgin.islands:before {
975
+ background-position: -108px -130px;
976
+ }
977
+ i.flag.vn:before,
978
+ i.flag.vietnam:before {
979
+ background-position: -108px -156px;
980
+ }
981
+ i.flag.vu:before,
982
+ i.flag.vanuatu:before {
983
+ background-position: -108px -182px;
984
+ }
985
+ i.flag.wf:before,
986
+ i.flag.wallis.and.futuna:before {
987
+ background-position: -108px -234px;
988
+ }
989
+ i.flag.ws:before,
990
+ i.flag.samoa:before {
991
+ background-position: -108px -260px;
992
+ }
993
+ i.flag.ye:before,
994
+ i.flag.yemen:before {
995
+ background-position: -108px -286px;
996
+ }
997
+ i.flag.yt:before,
998
+ i.flag.mayotte:before {
999
+ background-position: -108px -312px;
1000
+ }
1001
+ i.flag.za:before,
1002
+ i.flag.south.africa:before {
1003
+ background-position: -108px -338px;
1004
+ }
1005
+ i.flag.zm:before,
1006
+ i.flag.zambia:before {
1007
+ background-position: -108px -364px;
1008
+ }
1009
+ i.flag.zw:before,
1010
+ i.flag.zimbabwe:before {
1011
+ background-position: -108px -390px;
1012
+ }
1013
+
1014
+
1015
+ /*******************************
1016
+ Site Overrides
1017
+ *******************************/
1018
+