@eeacms/volto-eea-design-system 0.2.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (263) hide show
  1. package/.coverage.babel.config.js +13 -0
  2. package/.github/ISSUE_TEMPLATE/bug_report.md +50 -0
  3. package/.github/ISSUE_TEMPLATE/feature_request.md +50 -0
  4. package/.github/workflows/node.js.yml +59 -0
  5. package/.prettierignore +4 -0
  6. package/.project.eslintrc.js +45 -0
  7. package/.release-it.json +17 -0
  8. package/.storybook/manager.js +15 -0
  9. package/CHANGELOG.md +1025 -0
  10. package/DEVELOP.md +51 -0
  11. package/LICENSE.md +9 -0
  12. package/README.md +196 -0
  13. package/bootstrap +41 -0
  14. package/cypress.json +17 -0
  15. package/jest-addon.config.js +36 -0
  16. package/locales/volto.pot +0 -0
  17. package/mockups/README.md +1 -0
  18. package/package.json +49 -0
  19. package/razzle.extend.js +23 -0
  20. package/src/helpers/index.js +2 -0
  21. package/src/helpers/useClickOutside.js +30 -0
  22. package/src/helpers/usePrevious.js +9 -0
  23. package/src/i18n.js +180 -0
  24. package/src/index.js +6 -0
  25. package/src/semantic.less +262 -0
  26. package/src/ui/Avatar/Avatar.jsx +32 -0
  27. package/src/ui/Avatar/Avatar.stories.jsx +61 -0
  28. package/src/ui/AvatarGrid/AvatarGrid.jsx +49 -0
  29. package/src/ui/AvatarGrid/AvatarGrid.stories.jsx +66 -0
  30. package/src/ui/Banner/Banner.jsx +59 -0
  31. package/src/ui/Banner/Banner.stories.jsx +121 -0
  32. package/src/ui/Blockquote/Blockquote.jsx +16 -0
  33. package/src/ui/Blockquote/Blockquote.stories.jsx +48 -0
  34. package/src/ui/Breadcrumbs/Breadcrumb.stories.jsx +76 -0
  35. package/src/ui/Breadcrumbs/Breadcrumbs.jsx +67 -0
  36. package/src/ui/Breadcrumbs/Breadcrumbs.stories.jsx +30 -0
  37. package/src/ui/Button/Button.stories.jsx +169 -0
  38. package/src/ui/Divider/Divider.jsx +7 -0
  39. package/src/ui/Footer/Contact.jsx +28 -0
  40. package/src/ui/Footer/Footer.jsx +52 -0
  41. package/src/ui/Footer/FooterActions.jsx +22 -0
  42. package/src/ui/Footer/FooterHeader.jsx +10 -0
  43. package/src/ui/Footer/FooterSites.jsx +33 -0
  44. package/src/ui/Footer/Social.jsx +25 -0
  45. package/src/ui/Footer/SubFooter.jsx +9 -0
  46. package/src/ui/FormFieldWrapper/FormFieldWrapper.jsx +51 -0
  47. package/src/ui/Header/Header.jsx +224 -0
  48. package/src/ui/Header/HeaderMenuPopUp.js +79 -0
  49. package/src/ui/Header/HeaderSearchPopUp.js +33 -0
  50. package/src/ui/InpageNavigation/InpageNavigation.jsx +61 -0
  51. package/src/ui/InpageNavigation/InpageNavigation.stories.jsx +166 -0
  52. package/src/ui/KeyContent/KeyContent.jsx +22 -0
  53. package/src/ui/KeyContent/KeyContent.stories.jsx +62 -0
  54. package/src/ui/Loader/Loader.stories.jsx +45 -0
  55. package/src/ui/Logo/Logo.jsx +31 -0
  56. package/src/ui/Popup/Popup.stories.jsx +97 -0
  57. package/src/ui/PublicationCard/PublicationCard.jsx +27 -0
  58. package/src/ui/PublicationCard/PublicationCard.stories.jsx +69 -0
  59. package/src/ui/Pullquote/Pullquote.jsx +44 -0
  60. package/src/ui/Pullquote/Pullquote.stories.jsx +101 -0
  61. package/src/ui/RelatedContent/RelatedContent.jsx +90 -0
  62. package/src/ui/RelatedContent/RelatedContent.stories.jsx +80 -0
  63. package/src/ui/Segment/Segment.stories.jsx +163 -0
  64. package/src/ui/Tag/Tag.jsx +13 -0
  65. package/src/ui/Tag/Tag.stories.jsx +21 -0
  66. package/src/ui/TagList/TagList.jsx +23 -0
  67. package/src/ui/TagList/TagList.stories.jsx +63 -0
  68. package/src/ui/Testimonial/Testimonial.jsx +53 -0
  69. package/src/ui/Testimonial/Testimonial.stories.jsx +51 -0
  70. package/src/ui/Timeline/Timeline.jsx +44 -0
  71. package/src/ui/Timeline/Timeline.stories.jsx +322 -0
  72. package/src/ui/index.js +31 -0
  73. package/templates/eea.hbs +50 -0
  74. package/theme/theme.config +122 -0
  75. package/theme/theme.less +64 -0
  76. package/theme/themes/eea/assets/images/EEA_Logo_Vertical.png +0 -0
  77. package/theme/themes/eea/assets/images/Footer/EEALogo.png +0 -0
  78. package/theme/themes/eea/assets/images/Footer/EULogo.png +0 -0
  79. package/theme/themes/eea/assets/images/Footer/Extras/Logo1.png +0 -0
  80. package/theme/themes/eea/assets/images/Footer/Extras/Logo10.png +0 -0
  81. package/theme/themes/eea/assets/images/Footer/Extras/Logo2.png +0 -0
  82. package/theme/themes/eea/assets/images/Footer/Extras/Logo3.png +0 -0
  83. package/theme/themes/eea/assets/images/Footer/Extras/Logo4.png +0 -0
  84. package/theme/themes/eea/assets/images/Footer/Extras/Logo5.png +0 -0
  85. package/theme/themes/eea/assets/images/Footer/Extras/Logo6.png +0 -0
  86. package/theme/themes/eea/assets/images/Footer/Extras/Logo7.png +0 -0
  87. package/theme/themes/eea/assets/images/Footer/Extras/Logo8.png +0 -0
  88. package/theme/themes/eea/assets/images/Footer/Extras/Logo9.png +0 -0
  89. package/theme/themes/eea/assets/images/Footer/Extras/abstract-visual.svg +32 -0
  90. package/theme/themes/eea/assets/images/Footer/Extras/footervisual.svg +1755 -0
  91. package/theme/themes/eea/assets/images/Footer/Vector1.png +0 -0
  92. package/theme/themes/eea/assets/images/Footer/Vector2.png +0 -0
  93. package/theme/themes/eea/assets/images/Header/EeaLogo.png +0 -0
  94. package/theme/themes/eea/assets/images/Header/Vector.png +0 -0
  95. package/theme/themes/eea/assets/images/Header/close-line.svg +1 -0
  96. package/theme/themes/eea/assets/images/Header/close.png +0 -0
  97. package/theme/themes/eea/assets/images/Header/down-arrow.png +0 -0
  98. package/theme/themes/eea/assets/images/Header/eea-logo.svg +14 -0
  99. package/theme/themes/eea/assets/images/Header/eea.png +0 -0
  100. package/theme/themes/eea/assets/images/Header/eeaIcon.png +0 -0
  101. package/theme/themes/eea/assets/images/Header/global-line.svg +1 -0
  102. package/theme/themes/eea/assets/images/Header/globeIcon.png +0 -0
  103. package/theme/themes/eea/assets/images/Header/hamburgerMenuIcon.png +0 -0
  104. package/theme/themes/eea/assets/images/Header/menu-left-arrow.svg +3 -0
  105. package/theme/themes/eea/assets/images/Header/menu-line.svg +1 -0
  106. package/theme/themes/eea/assets/images/Header/search-line.svg +1 -0
  107. package/theme/themes/eea/assets/images/Header/search.png +0 -0
  108. package/theme/themes/eea/assets/images/Header/searchIcon.png +0 -0
  109. package/theme/themes/eea/assets/images/arrow-down.svg +10 -0
  110. package/theme/themes/eea/assets/images/avatar.png +0 -0
  111. package/theme/themes/eea/assets/images/banner.png +0 -0
  112. package/theme/themes/eea/assets/images/eea-logo.png +0 -0
  113. package/theme/themes/eea/assets/images/eea_icon.png +0 -0
  114. package/theme/themes/eea/assets/images/europe-flag.svg +4 -0
  115. package/theme/themes/eea/assets/images/home-icon.svg +3 -0
  116. package/theme/themes/eea/assets/images/loaderImage.png +0 -0
  117. package/theme/themes/eea/assets/images/mega-menu-arrow.svg +3 -0
  118. package/theme/themes/eea/assets/logo/EEA-Logo-White-2.svg +9 -0
  119. package/theme/themes/eea/assets/logo/EEA-Logo-white.svg +9 -0
  120. package/theme/themes/eea/assets/logo/EIONETLogo.png +0 -0
  121. package/theme/themes/eea/assets/logo/bise.svg +47 -0
  122. package/theme/themes/eea/assets/logo/cca.svg +20 -0
  123. package/theme/themes/eea/assets/logo/copernicus.svg +62 -0
  124. package/theme/themes/eea/assets/logo/energy.svg +77 -0
  125. package/theme/themes/eea/assets/logo/fise.svg +37 -0
  126. package/theme/themes/eea/assets/logo/freshwater.svg +48 -0
  127. package/theme/themes/eea/assets/logo/industry.svg +40 -0
  128. package/theme/themes/eea/assets/logo/insitu.svg +43 -0
  129. package/theme/themes/eea/assets/logo/ipchem.svg +23 -0
  130. package/theme/themes/eea/assets/logo/marine.svg +63 -0
  131. package/theme/themes/eea/collections/breadcrumb.overrides +44 -0
  132. package/theme/themes/eea/collections/breadcrumb.variables +49 -0
  133. package/theme/themes/eea/collections/form.overrides +56 -0
  134. package/theme/themes/eea/collections/form.variables +211 -0
  135. package/theme/themes/eea/collections/grid.overrides +17 -0
  136. package/theme/themes/eea/collections/grid.variables +103 -0
  137. package/theme/themes/eea/collections/menu.overrides +84 -0
  138. package/theme/themes/eea/collections/menu.variables +471 -0
  139. package/theme/themes/eea/collections/message.overrides +34 -0
  140. package/theme/themes/eea/collections/message.variables +142 -0
  141. package/theme/themes/eea/collections/table.overrides +30 -0
  142. package/theme/themes/eea/collections/table.variables +249 -0
  143. package/theme/themes/eea/definitions/elements/icon.less +499 -0
  144. package/theme/themes/eea/elements/button.overrides +199 -0
  145. package/theme/themes/eea/elements/button.variables +405 -0
  146. package/theme/themes/eea/elements/container.overrides +98 -0
  147. package/theme/themes/eea/elements/container.variables +66 -0
  148. package/theme/themes/eea/elements/divider.overrides +17 -0
  149. package/theme/themes/eea/elements/divider.variables +53 -0
  150. package/theme/themes/eea/elements/flag.overrides +1235 -0
  151. package/theme/themes/eea/elements/flag.variables +13 -0
  152. package/theme/themes/eea/elements/header.overrides +205 -0
  153. package/theme/themes/eea/elements/header.variables +151 -0
  154. package/theme/themes/eea/elements/icon.overrides +5589 -0
  155. package/theme/themes/eea/elements/icon.variables +95 -0
  156. package/theme/themes/eea/elements/image.overrides +3 -0
  157. package/theme/themes/eea/elements/image.variables +44 -0
  158. package/theme/themes/eea/elements/input.overrides +83 -0
  159. package/theme/themes/eea/elements/input.variables +104 -0
  160. package/theme/themes/eea/elements/label.overrides +49 -0
  161. package/theme/themes/eea/elements/label.variables +267 -0
  162. package/theme/themes/eea/elements/list.overrides +28 -0
  163. package/theme/themes/eea/elements/list.variables +233 -0
  164. package/theme/themes/eea/elements/loader.overrides +3 -0
  165. package/theme/themes/eea/elements/loader.variables +73 -0
  166. package/theme/themes/eea/elements/placeholder.overrides +3 -0
  167. package/theme/themes/eea/elements/placeholder.variables +55 -0
  168. package/theme/themes/eea/elements/rail.overrides +3 -0
  169. package/theme/themes/eea/elements/rail.variables +34 -0
  170. package/theme/themes/eea/elements/reveal.overrides +3 -0
  171. package/theme/themes/eea/elements/reveal.variables +18 -0
  172. package/theme/themes/eea/elements/segment.overrides +8 -0
  173. package/theme/themes/eea/elements/segment.variables +154 -0
  174. package/theme/themes/eea/elements/step.overrides +18 -0
  175. package/theme/themes/eea/elements/step.variables +130 -0
  176. package/theme/themes/eea/extras/avatar.less +97 -0
  177. package/theme/themes/eea/extras/avatar.variables +34 -0
  178. package/theme/themes/eea/extras/avatarGrid.less +43 -0
  179. package/theme/themes/eea/extras/avatarGrid.variables +20 -0
  180. package/theme/themes/eea/extras/banner.less +213 -0
  181. package/theme/themes/eea/extras/banner.variables +77 -0
  182. package/theme/themes/eea/extras/blockquote.less +89 -0
  183. package/theme/themes/eea/extras/blockquote.variables +35 -0
  184. package/theme/themes/eea/extras/custom.overrides +0 -0
  185. package/theme/themes/eea/extras/custom.variables +0 -0
  186. package/theme/themes/eea/extras/divider.less +14 -0
  187. package/theme/themes/eea/extras/divider.variables +9 -0
  188. package/theme/themes/eea/extras/footer.less +273 -0
  189. package/theme/themes/eea/extras/footer.variables +109 -0
  190. package/theme/themes/eea/extras/header.less +691 -0
  191. package/theme/themes/eea/extras/header.variables +149 -0
  192. package/theme/themes/eea/extras/inpageNavigation.less +57 -0
  193. package/theme/themes/eea/extras/inpageNavigation.variables +30 -0
  194. package/theme/themes/eea/extras/keyContent.less +36 -0
  195. package/theme/themes/eea/extras/keyContent.variables +18 -0
  196. package/theme/themes/eea/extras/main.overrides +31 -0
  197. package/theme/themes/eea/extras/main.variables +33 -0
  198. package/theme/themes/eea/extras/publicationCard.less +62 -0
  199. package/theme/themes/eea/extras/publicationCard.variables +24 -0
  200. package/theme/themes/eea/extras/pullquote.less +76 -0
  201. package/theme/themes/eea/extras/pullquote.variables +34 -0
  202. package/theme/themes/eea/extras/select.overrides +0 -0
  203. package/theme/themes/eea/extras/select.variables +0 -0
  204. package/theme/themes/eea/extras/tag.less +37 -0
  205. package/theme/themes/eea/extras/tag.variables +22 -0
  206. package/theme/themes/eea/extras/tagList.less +50 -0
  207. package/theme/themes/eea/extras/tagList.variables +13 -0
  208. package/theme/themes/eea/extras/testimonial.less +28 -0
  209. package/theme/themes/eea/extras/testimonial.variables +13 -0
  210. package/theme/themes/eea/extras/timeline.less +114 -0
  211. package/theme/themes/eea/extras/timeline.variables +40 -0
  212. package/theme/themes/eea/globals/reset.overrides +454 -0
  213. package/theme/themes/eea/globals/reset.variables +6 -0
  214. package/theme/themes/eea/globals/site.overrides +27 -0
  215. package/theme/themes/eea/globals/site.variables +1135 -0
  216. package/theme/themes/eea/modules/accordion.overrides +83 -0
  217. package/theme/themes/eea/modules/accordion.variables +114 -0
  218. package/theme/themes/eea/modules/chatroom.overrides +3 -0
  219. package/theme/themes/eea/modules/chatroom.variables +3 -0
  220. package/theme/themes/eea/modules/checkbox.overrides +67 -0
  221. package/theme/themes/eea/modules/checkbox.variables +194 -0
  222. package/theme/themes/eea/modules/dimmer.overrides +3 -0
  223. package/theme/themes/eea/modules/dimmer.variables +58 -0
  224. package/theme/themes/eea/modules/dropdown.overrides +53 -0
  225. package/theme/themes/eea/modules/dropdown.variables +390 -0
  226. package/theme/themes/eea/modules/embed.overrides +3 -0
  227. package/theme/themes/eea/modules/embed.variables +53 -0
  228. package/theme/themes/eea/modules/modal.overrides +3 -0
  229. package/theme/themes/eea/modules/modal.variables +193 -0
  230. package/theme/themes/eea/modules/nag.overrides +3 -0
  231. package/theme/themes/eea/modules/nag.variables +74 -0
  232. package/theme/themes/eea/modules/popup.overrides +83 -0
  233. package/theme/themes/eea/modules/popup.variables +153 -0
  234. package/theme/themes/eea/modules/progress.overrides +3 -0
  235. package/theme/themes/eea/modules/progress.variables +113 -0
  236. package/theme/themes/eea/modules/rating.overrides +74 -0
  237. package/theme/themes/eea/modules/rating.variables +103 -0
  238. package/theme/themes/eea/modules/search.overrides +3 -0
  239. package/theme/themes/eea/modules/search.variables +163 -0
  240. package/theme/themes/eea/modules/shape.overrides +3 -0
  241. package/theme/themes/eea/modules/shape.variables +40 -0
  242. package/theme/themes/eea/modules/sidebar.overrides +3 -0
  243. package/theme/themes/eea/modules/sidebar.variables +45 -0
  244. package/theme/themes/eea/modules/sticky.overrides +3 -0
  245. package/theme/themes/eea/modules/sticky.variables +7 -0
  246. package/theme/themes/eea/modules/tab.overrides +13 -0
  247. package/theme/themes/eea/modules/tab.variables +17 -0
  248. package/theme/themes/eea/modules/transition.overrides +1087 -0
  249. package/theme/themes/eea/modules/transition.variables +10 -0
  250. package/theme/themes/eea/modules/video.overrides +3 -0
  251. package/theme/themes/eea/modules/video.variables +16 -0
  252. package/theme/themes/eea/views/ad.overrides +3 -0
  253. package/theme/themes/eea/views/ad.variables +13 -0
  254. package/theme/themes/eea/views/card.overrides +73 -0
  255. package/theme/themes/eea/views/card.variables +237 -0
  256. package/theme/themes/eea/views/comment.overrides +3 -0
  257. package/theme/themes/eea/views/comment.variables +98 -0
  258. package/theme/themes/eea/views/feed.overrides +3 -0
  259. package/theme/themes/eea/views/feed.variables +141 -0
  260. package/theme/themes/eea/views/item.overrides +8 -0
  261. package/theme/themes/eea/views/item.variables +157 -0
  262. package/theme/themes/eea/views/statistic.overrides +19 -0
  263. package/theme/themes/eea/views/statistic.variables +105 -0
@@ -0,0 +1,1235 @@
1
+ /* Flag Sprite Based On http://www.famfamfam.com/lab/icons/flags/ */
2
+
3
+ /*******************************
4
+ Theme Overrides
5
+ *******************************/
6
+
7
+ i.flag.ad:before,
8
+ i.flag.andorra:before {
9
+ background-position: 0px 0px;
10
+ }
11
+
12
+ i.flag.ae:before,
13
+ i.flag.united.arab.emirates:before,
14
+ i.flag.uae:before {
15
+ background-position: 0px -26px;
16
+ }
17
+
18
+ i.flag.af:before,
19
+ i.flag.afghanistan:before {
20
+ background-position: 0px -52px;
21
+ }
22
+
23
+ i.flag.ag:before,
24
+ i.flag.antigua:before {
25
+ background-position: 0px -78px;
26
+ }
27
+
28
+ i.flag.ai:before,
29
+ i.flag.anguilla:before {
30
+ background-position: 0px -104px;
31
+ }
32
+
33
+ i.flag.al:before,
34
+ i.flag.albania:before {
35
+ background-position: 0px -130px;
36
+ }
37
+
38
+ i.flag.am:before,
39
+ i.flag.armenia:before {
40
+ background-position: 0px -156px;
41
+ }
42
+
43
+ i.flag.an:before,
44
+ i.flag.netherlands.antilles:before {
45
+ background-position: 0px -182px;
46
+ }
47
+
48
+ i.flag.ao:before,
49
+ i.flag.angola:before {
50
+ background-position: 0px -208px;
51
+ }
52
+
53
+ i.flag.ar:before,
54
+ i.flag.argentina:before {
55
+ background-position: 0px -234px;
56
+ }
57
+
58
+ i.flag.as:before,
59
+ i.flag.american.samoa:before {
60
+ background-position: 0px -260px;
61
+ }
62
+
63
+ i.flag.at:before,
64
+ i.flag.austria:before {
65
+ background-position: 0px -286px;
66
+ }
67
+
68
+ i.flag.au:before,
69
+ i.flag.australia:before {
70
+ background-position: 0px -312px;
71
+ }
72
+
73
+ i.flag.aw:before,
74
+ i.flag.aruba:before {
75
+ background-position: 0px -338px;
76
+ }
77
+
78
+ i.flag.ax:before,
79
+ i.flag.aland.islands:before {
80
+ background-position: 0px -364px;
81
+ }
82
+
83
+ i.flag.az:before,
84
+ i.flag.azerbaijan:before {
85
+ background-position: 0px -390px;
86
+ }
87
+
88
+ i.flag.ba:before,
89
+ i.flag.bosnia:before {
90
+ background-position: 0px -416px;
91
+ }
92
+
93
+ i.flag.bb:before,
94
+ i.flag.barbados:before {
95
+ background-position: 0px -442px;
96
+ }
97
+
98
+ i.flag.bd:before,
99
+ i.flag.bangladesh:before {
100
+ background-position: 0px -468px;
101
+ }
102
+
103
+ i.flag.be:before,
104
+ i.flag.belgium:before {
105
+ background-position: 0px -494px;
106
+ }
107
+
108
+ i.flag.bf:before,
109
+ i.flag.burkina.faso:before {
110
+ background-position: 0px -520px;
111
+ }
112
+
113
+ i.flag.bg:before,
114
+ i.flag.bulgaria:before {
115
+ background-position: 0px -546px;
116
+ }
117
+
118
+ i.flag.bh:before,
119
+ i.flag.bahrain:before {
120
+ background-position: 0px -572px;
121
+ }
122
+
123
+ i.flag.bi:before,
124
+ i.flag.burundi:before {
125
+ background-position: 0px -598px;
126
+ }
127
+
128
+ i.flag.bj:before,
129
+ i.flag.benin:before {
130
+ background-position: 0px -624px;
131
+ }
132
+
133
+ i.flag.bm:before,
134
+ i.flag.bermuda:before {
135
+ background-position: 0px -650px;
136
+ }
137
+
138
+ i.flag.bn:before,
139
+ i.flag.brunei:before {
140
+ background-position: 0px -676px;
141
+ }
142
+
143
+ i.flag.bo:before,
144
+ i.flag.bolivia:before {
145
+ background-position: 0px -702px;
146
+ }
147
+
148
+ i.flag.br:before,
149
+ i.flag.brazil:before {
150
+ background-position: 0px -728px;
151
+ }
152
+
153
+ i.flag.bs:before,
154
+ i.flag.bahamas:before {
155
+ background-position: 0px -754px;
156
+ }
157
+
158
+ i.flag.bt:before,
159
+ i.flag.bhutan:before {
160
+ background-position: 0px -780px;
161
+ }
162
+
163
+ i.flag.bv:before,
164
+ i.flag.bouvet.island:before {
165
+ background-position: 0px -806px;
166
+ }
167
+
168
+ i.flag.bw:before,
169
+ i.flag.botswana:before {
170
+ background-position: 0px -832px;
171
+ }
172
+
173
+ i.flag.by:before,
174
+ i.flag.belarus:before {
175
+ background-position: 0px -858px;
176
+ }
177
+
178
+ i.flag.bz:before,
179
+ i.flag.belize:before {
180
+ background-position: 0px -884px;
181
+ }
182
+
183
+ i.flag.ca:before,
184
+ i.flag.canada:before {
185
+ background-position: 0px -910px;
186
+ }
187
+
188
+ i.flag.cc:before,
189
+ i.flag.cocos.islands:before {
190
+ background-position: 0px -962px;
191
+ }
192
+
193
+ i.flag.cd:before,
194
+ i.flag.congo:before {
195
+ background-position: 0px -988px;
196
+ }
197
+
198
+ i.flag.cf:before,
199
+ i.flag.central.african.republic:before {
200
+ background-position: 0px -1014px;
201
+ }
202
+
203
+ i.flag.cg:before,
204
+ i.flag.congo.brazzaville:before {
205
+ background-position: 0px -1040px;
206
+ }
207
+
208
+ i.flag.ch:before,
209
+ i.flag.switzerland:before {
210
+ background-position: 0px -1066px;
211
+ }
212
+
213
+ i.flag.ci:before,
214
+ i.flag.cote.divoire:before {
215
+ background-position: 0px -1092px;
216
+ }
217
+
218
+ i.flag.ck:before,
219
+ i.flag.cook.islands:before {
220
+ background-position: 0px -1118px;
221
+ }
222
+
223
+ i.flag.cl:before,
224
+ i.flag.chile:before {
225
+ background-position: 0px -1144px;
226
+ }
227
+
228
+ i.flag.cm:before,
229
+ i.flag.cameroon:before {
230
+ background-position: 0px -1170px;
231
+ }
232
+
233
+ i.flag.cn:before,
234
+ i.flag.china:before {
235
+ background-position: 0px -1196px;
236
+ }
237
+
238
+ i.flag.co:before,
239
+ i.flag.colombia:before {
240
+ background-position: 0px -1222px;
241
+ }
242
+
243
+ i.flag.cr:before,
244
+ i.flag.costa.rica:before {
245
+ background-position: 0px -1248px;
246
+ }
247
+
248
+ i.flag.cs:before,
249
+ i.flag.serbia:before {
250
+ background-position: 0px -1274px;
251
+ }
252
+
253
+ i.flag.cu:before,
254
+ i.flag.cuba:before {
255
+ background-position: 0px -1300px;
256
+ }
257
+
258
+ i.flag.cv:before,
259
+ i.flag.cape.verde:before {
260
+ background-position: 0px -1326px;
261
+ }
262
+
263
+ i.flag.cx:before,
264
+ i.flag.christmas.island:before {
265
+ background-position: 0px -1352px;
266
+ }
267
+
268
+ i.flag.cy:before,
269
+ i.flag.cyprus:before {
270
+ background-position: 0px -1378px;
271
+ }
272
+
273
+ i.flag.cz:before,
274
+ i.flag.czech.republic:before {
275
+ background-position: 0px -1404px;
276
+ }
277
+
278
+ i.flag.de:before,
279
+ i.flag.germany:before {
280
+ background-position: 0px -1430px;
281
+ }
282
+
283
+ i.flag.dj:before,
284
+ i.flag.djibouti:before {
285
+ background-position: 0px -1456px;
286
+ }
287
+
288
+ i.flag.dk:before,
289
+ i.flag.denmark:before {
290
+ background-position: 0px -1482px;
291
+ }
292
+
293
+ i.flag.dm:before,
294
+ i.flag.dominica:before {
295
+ background-position: 0px -1508px;
296
+ }
297
+
298
+ i.flag.do:before,
299
+ i.flag.dominican.republic:before {
300
+ background-position: 0px -1534px;
301
+ }
302
+
303
+ i.flag.dz:before,
304
+ i.flag.algeria:before {
305
+ background-position: 0px -1560px;
306
+ }
307
+
308
+ i.flag.ec:before,
309
+ i.flag.ecuador:before {
310
+ background-position: 0px -1586px;
311
+ }
312
+
313
+ i.flag.ee:before,
314
+ i.flag.estonia:before {
315
+ background-position: 0px -1612px;
316
+ }
317
+
318
+ i.flag.eg:before,
319
+ i.flag.egypt:before {
320
+ background-position: 0px -1638px;
321
+ }
322
+
323
+ i.flag.eh:before,
324
+ i.flag.western.sahara:before {
325
+ background-position: 0px -1664px;
326
+ }
327
+
328
+ i.flag.gb.eng:before,
329
+ i.flag.england:before {
330
+ background-position: 0px -1690px;
331
+ }
332
+
333
+ i.flag.er:before,
334
+ i.flag.eritrea:before {
335
+ background-position: 0px -1716px;
336
+ }
337
+
338
+ i.flag.es:before,
339
+ i.flag.spain:before {
340
+ background-position: 0px -1742px;
341
+ }
342
+
343
+ i.flag.et:before,
344
+ i.flag.ethiopia:before {
345
+ background-position: 0px -1768px;
346
+ }
347
+
348
+ i.flag.eu:before,
349
+ i.flag.european.union:before {
350
+ background-position: 0px -1794px;
351
+ }
352
+
353
+ i.flag.fi:before,
354
+ i.flag.finland:before {
355
+ background-position: 0px -1846px;
356
+ }
357
+
358
+ i.flag.fj:before,
359
+ i.flag.fiji:before {
360
+ background-position: 0px -1872px;
361
+ }
362
+
363
+ i.flag.fk:before,
364
+ i.flag.falkland.islands:before {
365
+ background-position: 0px -1898px;
366
+ }
367
+
368
+ i.flag.fm:before,
369
+ i.flag.micronesia:before {
370
+ background-position: 0px -1924px;
371
+ }
372
+
373
+ i.flag.fo:before,
374
+ i.flag.faroe.islands:before {
375
+ background-position: 0px -1950px;
376
+ }
377
+
378
+ i.flag.fr:before,
379
+ i.flag.france:before {
380
+ background-position: 0px -1976px;
381
+ }
382
+
383
+ i.flag.ga:before,
384
+ i.flag.gabon:before {
385
+ background-position: -36px 0px;
386
+ }
387
+
388
+ i.flag.gb:before,
389
+ i.flag.uk:before,
390
+ i.flag.united.kingdom:before {
391
+ background-position: -36px -26px;
392
+ }
393
+
394
+ i.flag.gd:before,
395
+ i.flag.grenada:before {
396
+ background-position: -36px -52px;
397
+ }
398
+
399
+ i.flag.ge:before,
400
+ i.flag.georgia:before {
401
+ background-position: -36px -78px;
402
+ }
403
+
404
+ i.flag.gf:before,
405
+ i.flag.french.guiana:before {
406
+ background-position: -36px -104px;
407
+ }
408
+
409
+ i.flag.gh:before,
410
+ i.flag.ghana:before {
411
+ background-position: -36px -130px;
412
+ }
413
+
414
+ i.flag.gi:before,
415
+ i.flag.gibraltar:before {
416
+ background-position: -36px -156px;
417
+ }
418
+
419
+ i.flag.gl:before,
420
+ i.flag.greenland:before {
421
+ background-position: -36px -182px;
422
+ }
423
+
424
+ i.flag.gm:before,
425
+ i.flag.gambia:before {
426
+ background-position: -36px -208px;
427
+ }
428
+
429
+ i.flag.gn:before,
430
+ i.flag.guinea:before {
431
+ background-position: -36px -234px;
432
+ }
433
+
434
+ i.flag.gp:before,
435
+ i.flag.guadeloupe:before {
436
+ background-position: -36px -260px;
437
+ }
438
+
439
+ i.flag.gq:before,
440
+ i.flag.equatorial.guinea:before {
441
+ background-position: -36px -286px;
442
+ }
443
+
444
+ i.flag.gr:before,
445
+ i.flag.greece:before {
446
+ background-position: -36px -312px;
447
+ }
448
+
449
+ i.flag.gs:before,
450
+ i.flag.sandwich.islands:before {
451
+ background-position: -36px -338px;
452
+ }
453
+
454
+ i.flag.gt:before,
455
+ i.flag.guatemala:before {
456
+ background-position: -36px -364px;
457
+ }
458
+
459
+ i.flag.gu:before,
460
+ i.flag.guam:before {
461
+ background-position: -36px -390px;
462
+ }
463
+
464
+ i.flag.gw:before,
465
+ i.flag.guinea-bissau:before {
466
+ background-position: -36px -416px;
467
+ }
468
+
469
+ i.flag.gy:before,
470
+ i.flag.guyana:before {
471
+ background-position: -36px -442px;
472
+ }
473
+
474
+ i.flag.hk:before,
475
+ i.flag.hong.kong:before {
476
+ background-position: -36px -468px;
477
+ }
478
+
479
+ i.flag.hm:before,
480
+ i.flag.heard.island:before {
481
+ background-position: -36px -494px;
482
+ }
483
+
484
+ i.flag.hn:before,
485
+ i.flag.honduras:before {
486
+ background-position: -36px -520px;
487
+ }
488
+
489
+ i.flag.hr:before,
490
+ i.flag.croatia:before {
491
+ background-position: -36px -546px;
492
+ }
493
+
494
+ i.flag.ht:before,
495
+ i.flag.haiti:before {
496
+ background-position: -36px -572px;
497
+ }
498
+
499
+ i.flag.hu:before,
500
+ i.flag.hungary:before {
501
+ background-position: -36px -598px;
502
+ }
503
+
504
+ i.flag.id:before,
505
+ i.flag.indonesia:before {
506
+ background-position: -36px -624px;
507
+ }
508
+
509
+ i.flag.ie:before,
510
+ i.flag.ireland:before {
511
+ background-position: -36px -650px;
512
+ }
513
+
514
+ i.flag.il:before,
515
+ i.flag.israel:before {
516
+ background-position: -36px -676px;
517
+ }
518
+
519
+ i.flag.in:before,
520
+ i.flag.india:before {
521
+ background-position: -36px -702px;
522
+ }
523
+
524
+ i.flag.io:before,
525
+ i.flag.indian.ocean.territory:before {
526
+ background-position: -36px -728px;
527
+ }
528
+
529
+ i.flag.iq:before,
530
+ i.flag.iraq:before {
531
+ background-position: -36px -754px;
532
+ }
533
+
534
+ i.flag.ir:before,
535
+ i.flag.iran:before {
536
+ background-position: -36px -780px;
537
+ }
538
+
539
+ i.flag.is:before,
540
+ i.flag.iceland:before {
541
+ background-position: -36px -806px;
542
+ }
543
+
544
+ i.flag.it:before,
545
+ i.flag.italy:before {
546
+ background-position: -36px -832px;
547
+ }
548
+
549
+ i.flag.jm:before,
550
+ i.flag.jamaica:before {
551
+ background-position: -36px -858px;
552
+ }
553
+
554
+ i.flag.jo:before,
555
+ i.flag.jordan:before {
556
+ background-position: -36px -884px;
557
+ }
558
+
559
+ i.flag.jp:before,
560
+ i.flag.japan:before {
561
+ background-position: -36px -910px;
562
+ }
563
+
564
+ i.flag.ke:before,
565
+ i.flag.kenya:before {
566
+ background-position: -36px -936px;
567
+ }
568
+
569
+ i.flag.kg:before,
570
+ i.flag.kyrgyzstan:before {
571
+ background-position: -36px -962px;
572
+ }
573
+
574
+ i.flag.kh:before,
575
+ i.flag.cambodia:before {
576
+ background-position: -36px -988px;
577
+ }
578
+
579
+ i.flag.ki:before,
580
+ i.flag.kiribati:before {
581
+ background-position: -36px -1014px;
582
+ }
583
+
584
+ i.flag.km:before,
585
+ i.flag.comoros:before {
586
+ background-position: -36px -1040px;
587
+ }
588
+
589
+ i.flag.kn:before,
590
+ i.flag.saint.kitts.and.nevis:before {
591
+ background-position: -36px -1066px;
592
+ }
593
+
594
+ i.flag.kp:before,
595
+ i.flag.north.korea:before {
596
+ background-position: -36px -1092px;
597
+ }
598
+
599
+ i.flag.kr:before,
600
+ i.flag.south.korea:before {
601
+ background-position: -36px -1118px;
602
+ }
603
+
604
+ i.flag.kw:before,
605
+ i.flag.kuwait:before {
606
+ background-position: -36px -1144px;
607
+ }
608
+
609
+ i.flag.ky:before,
610
+ i.flag.cayman.islands:before {
611
+ background-position: -36px -1170px;
612
+ }
613
+
614
+ i.flag.kz:before,
615
+ i.flag.kazakhstan:before {
616
+ background-position: -36px -1196px;
617
+ }
618
+
619
+ i.flag.la:before,
620
+ i.flag.laos:before {
621
+ background-position: -36px -1222px;
622
+ }
623
+
624
+ i.flag.lb:before,
625
+ i.flag.lebanon:before {
626
+ background-position: -36px -1248px;
627
+ }
628
+
629
+ i.flag.lc:before,
630
+ i.flag.saint.lucia:before {
631
+ background-position: -36px -1274px;
632
+ }
633
+
634
+ i.flag.li:before,
635
+ i.flag.liechtenstein:before {
636
+ background-position: -36px -1300px;
637
+ }
638
+
639
+ i.flag.lk:before,
640
+ i.flag.sri.lanka:before {
641
+ background-position: -36px -1326px;
642
+ }
643
+
644
+ i.flag.lr:before,
645
+ i.flag.liberia:before {
646
+ background-position: -36px -1352px;
647
+ }
648
+
649
+ i.flag.ls:before,
650
+ i.flag.lesotho:before {
651
+ background-position: -36px -1378px;
652
+ }
653
+
654
+ i.flag.lt:before,
655
+ i.flag.lithuania:before {
656
+ background-position: -36px -1404px;
657
+ }
658
+
659
+ i.flag.lu:before,
660
+ i.flag.luxembourg:before {
661
+ background-position: -36px -1430px;
662
+ }
663
+
664
+ i.flag.lv:before,
665
+ i.flag.latvia:before {
666
+ background-position: -36px -1456px;
667
+ }
668
+
669
+ i.flag.ly:before,
670
+ i.flag.libya:before {
671
+ background-position: -36px -1482px;
672
+ }
673
+
674
+ i.flag.ma:before,
675
+ i.flag.morocco:before {
676
+ background-position: -36px -1508px;
677
+ }
678
+
679
+ i.flag.mc:before,
680
+ i.flag.monaco:before {
681
+ background-position: -36px -1534px;
682
+ }
683
+
684
+ i.flag.md:before,
685
+ i.flag.moldova:before {
686
+ background-position: -36px -1560px;
687
+ }
688
+
689
+ i.flag.me:before,
690
+ i.flag.montenegro:before {
691
+ background-position: -36px -1586px;
692
+ }
693
+
694
+ i.flag.mg:before,
695
+ i.flag.madagascar:before {
696
+ background-position: -36px -1613px;
697
+ }
698
+
699
+ i.flag.mh:before,
700
+ i.flag.marshall.islands:before {
701
+ background-position: -36px -1639px;
702
+ }
703
+
704
+ i.flag.mk:before,
705
+ i.flag.macedonia:before {
706
+ background-position: -36px -1665px;
707
+ }
708
+
709
+ i.flag.ml:before,
710
+ i.flag.mali:before {
711
+ background-position: -36px -1691px;
712
+ }
713
+
714
+ i.flag.mm:before,
715
+ i.flag.myanmar:before,
716
+ i.flag.burma:before {
717
+ background-position: -73px -1821px;
718
+ }
719
+
720
+ i.flag.mn:before,
721
+ i.flag.mongolia:before {
722
+ background-position: -36px -1743px;
723
+ }
724
+
725
+ i.flag.mo:before,
726
+ i.flag.macau:before {
727
+ background-position: -36px -1769px;
728
+ }
729
+
730
+ i.flag.mp:before,
731
+ i.flag.northern.mariana.islands:before {
732
+ background-position: -36px -1795px;
733
+ }
734
+
735
+ i.flag.mq:before,
736
+ i.flag.martinique:before {
737
+ background-position: -36px -1821px;
738
+ }
739
+
740
+ i.flag.mr:before,
741
+ i.flag.mauritania:before {
742
+ background-position: -36px -1847px;
743
+ }
744
+
745
+ i.flag.ms:before,
746
+ i.flag.montserrat:before {
747
+ background-position: -36px -1873px;
748
+ }
749
+
750
+ i.flag.mt:before,
751
+ i.flag.malta:before {
752
+ background-position: -36px -1899px;
753
+ }
754
+
755
+ i.flag.mu:before,
756
+ i.flag.mauritius:before {
757
+ background-position: -36px -1925px;
758
+ }
759
+
760
+ i.flag.mv:before,
761
+ i.flag.maldives:before {
762
+ background-position: -36px -1951px;
763
+ }
764
+
765
+ i.flag.mw:before,
766
+ i.flag.malawi:before {
767
+ background-position: -36px -1977px;
768
+ }
769
+
770
+ i.flag.mx:before,
771
+ i.flag.mexico:before {
772
+ background-position: -72px 0px;
773
+ }
774
+
775
+ i.flag.my:before,
776
+ i.flag.malaysia:before {
777
+ background-position: -72px -26px;
778
+ }
779
+
780
+ i.flag.mz:before,
781
+ i.flag.mozambique:before {
782
+ background-position: -72px -52px;
783
+ }
784
+
785
+ i.flag.na:before,
786
+ i.flag.namibia:before {
787
+ background-position: -72px -78px;
788
+ }
789
+
790
+ i.flag.nc:before,
791
+ i.flag.new.caledonia:before {
792
+ background-position: -72px -104px;
793
+ }
794
+
795
+ i.flag.ne:before,
796
+ i.flag.niger:before {
797
+ background-position: -72px -130px;
798
+ }
799
+
800
+ i.flag.nf:before,
801
+ i.flag.norfolk.island:before {
802
+ background-position: -72px -156px;
803
+ }
804
+
805
+ i.flag.ng:before,
806
+ i.flag.nigeria:before {
807
+ background-position: -72px -182px;
808
+ }
809
+
810
+ i.flag.ni:before,
811
+ i.flag.nicaragua:before {
812
+ background-position: -72px -208px;
813
+ }
814
+
815
+ i.flag.nl:before,
816
+ i.flag.netherlands:before {
817
+ background-position: -72px -234px;
818
+ }
819
+
820
+ i.flag.no:before,
821
+ i.flag.norway:before {
822
+ background-position: -72px -260px;
823
+ }
824
+
825
+ i.flag.np:before,
826
+ i.flag.nepal:before {
827
+ background-position: -72px -286px;
828
+ }
829
+
830
+ i.flag.nr:before,
831
+ i.flag.nauru:before {
832
+ background-position: -72px -312px;
833
+ }
834
+
835
+ i.flag.nu:before,
836
+ i.flag.niue:before {
837
+ background-position: -72px -338px;
838
+ }
839
+
840
+ i.flag.nz:before,
841
+ i.flag.new.zealand:before {
842
+ background-position: -72px -364px;
843
+ }
844
+
845
+ i.flag.om:before,
846
+ i.flag.oman:before {
847
+ background-position: -72px -390px;
848
+ }
849
+
850
+ i.flag.pa:before,
851
+ i.flag.panama:before {
852
+ background-position: -72px -416px;
853
+ }
854
+
855
+ i.flag.pe:before,
856
+ i.flag.peru:before {
857
+ background-position: -72px -442px;
858
+ }
859
+
860
+ i.flag.pf:before,
861
+ i.flag.french.polynesia:before {
862
+ background-position: -72px -468px;
863
+ }
864
+
865
+ i.flag.pg:before,
866
+ i.flag.new.guinea:before {
867
+ background-position: -72px -494px;
868
+ }
869
+
870
+ i.flag.ph:before,
871
+ i.flag.philippines:before {
872
+ background-position: -72px -520px;
873
+ }
874
+
875
+ i.flag.pk:before,
876
+ i.flag.pakistan:before {
877
+ background-position: -72px -546px;
878
+ }
879
+
880
+ i.flag.pl:before,
881
+ i.flag.poland:before {
882
+ background-position: -72px -572px;
883
+ }
884
+
885
+ i.flag.pm:before,
886
+ i.flag.saint.pierre:before {
887
+ background-position: -72px -598px;
888
+ }
889
+
890
+ i.flag.pn:before,
891
+ i.flag.pitcairn.islands:before {
892
+ background-position: -72px -624px;
893
+ }
894
+
895
+ i.flag.pr:before,
896
+ i.flag.puerto.rico:before {
897
+ background-position: -72px -650px;
898
+ }
899
+
900
+ i.flag.ps:before,
901
+ i.flag.palestine:before {
902
+ background-position: -72px -676px;
903
+ }
904
+
905
+ i.flag.pt:before,
906
+ i.flag.portugal:before {
907
+ background-position: -72px -702px;
908
+ }
909
+
910
+ i.flag.pw:before,
911
+ i.flag.palau:before {
912
+ background-position: -72px -728px;
913
+ }
914
+
915
+ i.flag.py:before,
916
+ i.flag.paraguay:before {
917
+ background-position: -72px -754px;
918
+ }
919
+
920
+ i.flag.qa:before,
921
+ i.flag.qatar:before {
922
+ background-position: -72px -780px;
923
+ }
924
+
925
+ i.flag.re:before,
926
+ i.flag.reunion:before {
927
+ background-position: -72px -806px;
928
+ }
929
+
930
+ i.flag.ro:before,
931
+ i.flag.romania:before {
932
+ background-position: -72px -832px;
933
+ }
934
+
935
+ i.flag.rs:before,
936
+ i.flag.serbia:before {
937
+ background-position: -72px -858px;
938
+ }
939
+
940
+ i.flag.ru:before,
941
+ i.flag.russia:before {
942
+ background-position: -72px -884px;
943
+ }
944
+
945
+ i.flag.rw:before,
946
+ i.flag.rwanda:before {
947
+ background-position: -72px -910px;
948
+ }
949
+
950
+ i.flag.sa:before,
951
+ i.flag.saudi.arabia:before {
952
+ background-position: -72px -936px;
953
+ }
954
+
955
+ i.flag.sb:before,
956
+ i.flag.solomon.islands:before {
957
+ background-position: -72px -962px;
958
+ }
959
+
960
+ i.flag.sc:before,
961
+ i.flag.seychelles:before {
962
+ background-position: -72px -988px;
963
+ }
964
+
965
+ i.flag.gb.sct:before,
966
+ i.flag.scotland:before {
967
+ background-position: -72px -1014px;
968
+ }
969
+
970
+ i.flag.sd:before,
971
+ i.flag.sudan:before {
972
+ background-position: -72px -1040px;
973
+ }
974
+
975
+ i.flag.se:before,
976
+ i.flag.sweden:before {
977
+ background-position: -72px -1066px;
978
+ }
979
+
980
+ i.flag.sg:before,
981
+ i.flag.singapore:before {
982
+ background-position: -72px -1092px;
983
+ }
984
+
985
+ i.flag.sh:before,
986
+ i.flag.saint.helena:before {
987
+ background-position: -72px -1118px;
988
+ }
989
+
990
+ i.flag.si:before,
991
+ i.flag.slovenia:before {
992
+ background-position: -72px -1144px;
993
+ }
994
+
995
+ i.flag.sj:before,
996
+ i.flag.svalbard:before,
997
+ i.flag.jan.mayen:before {
998
+ background-position: -72px -1170px;
999
+ }
1000
+
1001
+ i.flag.sk:before,
1002
+ i.flag.slovakia:before {
1003
+ background-position: -72px -1196px;
1004
+ }
1005
+
1006
+ i.flag.sl:before,
1007
+ i.flag.sierra.leone:before {
1008
+ background-position: -72px -1222px;
1009
+ }
1010
+
1011
+ i.flag.sm:before,
1012
+ i.flag.san.marino:before {
1013
+ background-position: -72px -1248px;
1014
+ }
1015
+
1016
+ i.flag.sn:before,
1017
+ i.flag.senegal:before {
1018
+ background-position: -72px -1274px;
1019
+ }
1020
+
1021
+ i.flag.so:before,
1022
+ i.flag.somalia:before {
1023
+ background-position: -72px -1300px;
1024
+ }
1025
+
1026
+ i.flag.sr:before,
1027
+ i.flag.suriname:before {
1028
+ background-position: -72px -1326px;
1029
+ }
1030
+
1031
+ i.flag.st:before,
1032
+ i.flag.sao.tome:before {
1033
+ background-position: -72px -1352px;
1034
+ }
1035
+
1036
+ i.flag.sv:before,
1037
+ i.flag.el.salvador:before {
1038
+ background-position: -72px -1378px;
1039
+ }
1040
+
1041
+ i.flag.sy:before,
1042
+ i.flag.syria:before {
1043
+ background-position: -72px -1404px;
1044
+ }
1045
+
1046
+ i.flag.sz:before,
1047
+ i.flag.swaziland:before {
1048
+ background-position: -72px -1430px;
1049
+ }
1050
+
1051
+ i.flag.tc:before,
1052
+ i.flag.caicos.islands:before {
1053
+ background-position: -72px -1456px;
1054
+ }
1055
+
1056
+ i.flag.td:before,
1057
+ i.flag.chad:before {
1058
+ background-position: -72px -1482px;
1059
+ }
1060
+
1061
+ i.flag.tf:before,
1062
+ i.flag.french.territories:before {
1063
+ background-position: -72px -1508px;
1064
+ }
1065
+
1066
+ i.flag.tg:before,
1067
+ i.flag.togo:before {
1068
+ background-position: -72px -1534px;
1069
+ }
1070
+
1071
+ i.flag.th:before,
1072
+ i.flag.thailand:before {
1073
+ background-position: -72px -1560px;
1074
+ }
1075
+
1076
+ i.flag.tj:before,
1077
+ i.flag.tajikistan:before {
1078
+ background-position: -72px -1586px;
1079
+ }
1080
+
1081
+ i.flag.tk:before,
1082
+ i.flag.tokelau:before {
1083
+ background-position: -72px -1612px;
1084
+ }
1085
+
1086
+ i.flag.tl:before,
1087
+ i.flag.timorleste:before {
1088
+ background-position: -72px -1638px;
1089
+ }
1090
+
1091
+ i.flag.tm:before,
1092
+ i.flag.turkmenistan:before {
1093
+ background-position: -72px -1664px;
1094
+ }
1095
+
1096
+ i.flag.tn:before,
1097
+ i.flag.tunisia:before {
1098
+ background-position: -72px -1690px;
1099
+ }
1100
+
1101
+ i.flag.to:before,
1102
+ i.flag.tonga:before {
1103
+ background-position: -72px -1716px;
1104
+ }
1105
+
1106
+ i.flag.tr:before,
1107
+ i.flag.turkey:before {
1108
+ background-position: -72px -1742px;
1109
+ }
1110
+
1111
+ i.flag.tt:before,
1112
+ i.flag.trinidad:before {
1113
+ background-position: -72px -1768px;
1114
+ }
1115
+
1116
+ i.flag.tv:before,
1117
+ i.flag.tuvalu:before {
1118
+ background-position: -72px -1794px;
1119
+ }
1120
+
1121
+ i.flag.tw:before,
1122
+ i.flag.taiwan:before {
1123
+ background-position: -72px -1820px;
1124
+ }
1125
+
1126
+ i.flag.tz:before,
1127
+ i.flag.tanzania:before {
1128
+ background-position: -72px -1846px;
1129
+ }
1130
+
1131
+ i.flag.ua:before,
1132
+ i.flag.ukraine:before {
1133
+ background-position: -72px -1872px;
1134
+ }
1135
+
1136
+ i.flag.ug:before,
1137
+ i.flag.uganda:before {
1138
+ background-position: -72px -1898px;
1139
+ }
1140
+
1141
+ i.flag.um:before,
1142
+ i.flag.us.minor.islands:before {
1143
+ background-position: -72px -1924px;
1144
+ }
1145
+
1146
+ i.flag.us:before,
1147
+ i.flag.america:before,
1148
+ i.flag.united.states:before {
1149
+ background-position: -72px -1950px;
1150
+ }
1151
+
1152
+ i.flag.uy:before,
1153
+ i.flag.uruguay:before {
1154
+ background-position: -72px -1976px;
1155
+ }
1156
+
1157
+ i.flag.uz:before,
1158
+ i.flag.uzbekistan:before {
1159
+ background-position: -108px 0px;
1160
+ }
1161
+
1162
+ i.flag.va:before,
1163
+ i.flag.vatican.city:before {
1164
+ background-position: -108px -26px;
1165
+ }
1166
+
1167
+ i.flag.vc:before,
1168
+ i.flag.saint.vincent:before {
1169
+ background-position: -108px -52px;
1170
+ }
1171
+
1172
+ i.flag.ve:before,
1173
+ i.flag.venezuela:before {
1174
+ background-position: -108px -78px;
1175
+ }
1176
+
1177
+ i.flag.vg:before,
1178
+ i.flag.british.virgin.islands:before {
1179
+ background-position: -108px -104px;
1180
+ }
1181
+
1182
+ i.flag.vi:before,
1183
+ i.flag.us.virgin.islands:before {
1184
+ background-position: -108px -130px;
1185
+ }
1186
+
1187
+ i.flag.vn:before,
1188
+ i.flag.vietnam:before {
1189
+ background-position: -108px -156px;
1190
+ }
1191
+
1192
+ i.flag.vu:before,
1193
+ i.flag.vanuatu:before {
1194
+ background-position: -108px -182px;
1195
+ }
1196
+
1197
+ i.flag.gb.wls:before,
1198
+ i.flag.wales:before {
1199
+ background-position: -108px -208px;
1200
+ }
1201
+
1202
+ i.flag.wf:before,
1203
+ i.flag.wallis.and.futuna:before {
1204
+ background-position: -108px -234px;
1205
+ }
1206
+
1207
+ i.flag.ws:before,
1208
+ i.flag.samoa:before {
1209
+ background-position: -108px -260px;
1210
+ }
1211
+
1212
+ i.flag.ye:before,
1213
+ i.flag.yemen:before {
1214
+ background-position: -108px -286px;
1215
+ }
1216
+
1217
+ i.flag.yt:before,
1218
+ i.flag.mayotte:before {
1219
+ background-position: -108px -312px;
1220
+ }
1221
+
1222
+ i.flag.za:before,
1223
+ i.flag.south.africa:before {
1224
+ background-position: -108px -338px;
1225
+ }
1226
+
1227
+ i.flag.zm:before,
1228
+ i.flag.zambia:before {
1229
+ background-position: -108px -364px;
1230
+ }
1231
+
1232
+ i.flag.zw:before,
1233
+ i.flag.zimbabwe:before {
1234
+ background-position: -108px -390px;
1235
+ }