flint-gs 2.0.3 → 2.0.4

Sign up to get free protection for your applications and to get access to all the features.
Files changed (78) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +27 -24
  3. data/lib/flint.rb +4 -72
  4. data/lib/flint/functions.rb +97 -0
  5. data/lib/flint/version.rb +4 -0
  6. data/stylesheets/flint/functions/lib/_list-to-string.scss +16 -10
  7. data/stylesheets/flint/functions/lib/_string-to-list.scss +2 -2
  8. data/stylesheets/flint/functions/lib/_support-syntax-bem.scss +4 -4
  9. data/stylesheets/flint/mixins/lib/_main.scss +0 -2
  10. data/tests/bootcamp/_bootcamp.scss +46 -0
  11. data/tests/bootcamp/core/functions/_actual.scss +3 -0
  12. data/tests/bootcamp/core/functions/_error.scss +29 -0
  13. data/tests/bootcamp/core/functions/_expect.scss +6 -0
  14. data/tests/bootcamp/core/functions/_not-to.scss +5 -0
  15. data/tests/bootcamp/core/functions/_should.scss +6 -0
  16. data/tests/bootcamp/core/functions/_to.scss +5 -0
  17. data/tests/bootcamp/core/mixins/_describe.scss +31 -0
  18. data/tests/bootcamp/core/mixins/_it.scss +31 -0
  19. data/tests/bootcamp/core/mixins/_runner.scss +28 -0
  20. data/tests/bootcamp/core/mixins/_should.scss +46 -0
  21. data/tests/bootcamp/core/mixins/_xdescribe.scss +9 -0
  22. data/tests/bootcamp/core/mixins/_xit.scss +9 -0
  23. data/tests/bootcamp/core/variables/_helpers.scss +5 -0
  24. data/tests/bootcamp/core/variables/_settings.scss +2 -0
  25. data/tests/bootcamp/core/variables/_should.scss +6 -0
  26. data/tests/bootcamp/core/variables/_trackers.scss +6 -0
  27. data/tests/bootcamp/lib/_sassyjson.scss +1075 -0
  28. data/tests/bootcamp/matchers/_be.scss +3 -0
  29. data/tests/bootcamp/matchers/_equal.scss +3 -0
  30. data/tests/bootcamp/matchers/lists/_be-empty.scss +3 -0
  31. data/tests/bootcamp/matchers/lists/_be-longer-than.scss +3 -0
  32. data/tests/bootcamp/matchers/lists/_be-shorter-than.scss +3 -0
  33. data/tests/bootcamp/matchers/lists/_contain.scss +3 -0
  34. data/tests/bootcamp/matchers/lists/_deep-contain.scss +3 -0
  35. data/tests/bootcamp/matchers/lists/_deep-equal.scss +47 -0
  36. data/tests/bootcamp/matchers/lists/_have-length-of.scss +3 -0
  37. data/tests/bootcamp/matchers/numbers/_be-close-to.scss +12 -0
  38. data/tests/bootcamp/matchers/numbers/_be-greater-than.scss +12 -0
  39. data/tests/bootcamp/matchers/numbers/_be-less-than.scss +12 -0
  40. data/tests/bootcamp/matchers/types/_be-falsy.scss +3 -0
  41. data/tests/bootcamp/matchers/types/_be-null.scss +3 -0
  42. data/tests/bootcamp/matchers/types/_be-truthy.scss +3 -0
  43. data/tests/bootcamp/matchers/types/_have-type-of.scss +3 -0
  44. data/tests/bootcamp/utils/_contain.scss +15 -0
  45. data/tests/bootcamp/utils/_equal.scss +23 -0
  46. data/tests/bootcamp/utils/_list-join.scss +35 -0
  47. data/tests/bootcamp/utils/_power.scss +15 -0
  48. data/tests/config.rb +52 -0
  49. data/tests/input/functions/_functions.scss +48 -0
  50. data/tests/input/functions/helpers/_helpers.scss +416 -0
  51. data/tests/input/functions/lib/_calc-breakpoint.scss +62 -0
  52. data/tests/input/functions/lib/_calc-width.scss +195 -0
  53. data/tests/input/functions/lib/_exists.scss +30 -0
  54. data/tests/input/functions/lib/_fluid-width.scss +32 -0
  55. data/tests/input/functions/lib/_get-index.scss +31 -0
  56. data/tests/input/functions/lib/_get-instance-value.scss +72 -0
  57. data/tests/input/functions/lib/_get-value.scss +28 -0
  58. data/tests/input/functions/lib/_has-family-instance.scss +35 -0
  59. data/tests/input/functions/lib/_instance.scss +187 -0
  60. data/tests/input/functions/lib/_last.scss +18 -0
  61. data/tests/input/functions/lib/_list-to-string.scss +28 -0
  62. data/tests/input/functions/lib/_map-fetch.scss +34 -0
  63. data/tests/input/functions/lib/_next-index.scss +24 -0
  64. data/tests/input/functions/lib/_purge.scss +14 -0
  65. data/tests/input/functions/lib/_remove.scss +14 -0
  66. data/tests/input/functions/lib/_replace-substring.scss +14 -0
  67. data/tests/input/functions/lib/_replace.scss +14 -0
  68. data/tests/input/functions/lib/_steal-key.scss +19 -0
  69. data/tests/input/functions/lib/_steal-values.scss +16 -0
  70. data/tests/input/functions/lib/_string-to-list.scss +28 -0
  71. data/tests/input/functions/lib/_support-syntax-bem.scss +14 -0
  72. data/tests/input/functions/lib/_support-syntax.scss +21 -0
  73. data/tests/input/functions/lib/_types-in-list.scss +50 -0
  74. data/tests/input/functions/lib/_use-syntax.scss +14 -0
  75. data/tests/input/output.scss +243 -0
  76. data/tests/output/output.css +1900 -0
  77. data/tests/tests.html +110 -0
  78. metadata +170 -4
@@ -0,0 +1,14 @@
1
+ /*
2
+ * Parser to support BEM syntax
3
+ */
4
+ @include describe("[function] support-syntax-bem") {
5
+
6
+ $selectors: ".block__element__element--modifier";
7
+
8
+ @include it("should expect selector string to be parsed to valid list of BEM selectors") {
9
+ @include should(expect(
10
+ flint-support-syntax-bem($selectors)),
11
+ to(be((".block", ".block__element", ".block__element__element--modifier")))
12
+ );
13
+ }
14
+ }
@@ -0,0 +1,21 @@
1
+ /*
2
+ * Support syntax
3
+ */
4
+ @include describe("[function] support-syntax") {
5
+
6
+ $selectors: ".block__element--modifier";
7
+
8
+ @include it("should expect truthy value to return from supported syntax") {
9
+ @include should(expect(
10
+ flint-support-syntax("BEM", $selectors)),
11
+ to(be-truthy())
12
+ );
13
+ }
14
+
15
+ @include it("should expect to return null if invalid syntax is passed") {
16
+ @include should(expect(
17
+ flint-support-syntax("OOCSS", $selectors)),
18
+ to(be((false)))
19
+ );
20
+ }
21
+ }
@@ -0,0 +1,50 @@
1
+ /*
2
+ * Checks type of each item in list
3
+ */
4
+ @include describe("[function] types-in-list") {
5
+
6
+ $list-of-numbers: 1, 2, 3, 4, 5;
7
+ $list-of-strings: "one", "two", "three";
8
+ $mixed-list: 1, "two", 3, "four";
9
+ $string: "string";
10
+
11
+ @include it("should expect to return false if list is not passed") {
12
+ @include should(expect(
13
+ flint-types-in-list($string)),
14
+ to(be(false))
15
+ );
16
+ }
17
+
18
+ @include it("should expect types to be asserted in list") {
19
+ @include should(expect(
20
+ flint-types-in-list($list-of-numbers)),
21
+ to(be(true))
22
+ );
23
+ @include should(expect(
24
+ flint-types-in-list($list-of-numbers, "number")),
25
+ to(be((true)))
26
+ );
27
+ @include should(expect(
28
+ flint-types-in-list($list-of-strings, "string", 3)),
29
+ to(be((true)))
30
+ );
31
+ @include should(expect(
32
+ flint-types-in-list($mixed-list, "number" "string" "number" "string", 4)),
33
+ to(be((true)))
34
+ );
35
+ }
36
+
37
+ @include it("should expect auto asserted types to return false") {
38
+ @include should(expect(
39
+ flint-types-in-list($mixed-list)),
40
+ to(be((false)))
41
+ );
42
+ }
43
+
44
+ @include it("should expect asserted length to return false") {
45
+ @include should(expect(
46
+ flint-types-in-list($list-of-strings, "string", 1)),
47
+ to(be((false)))
48
+ );
49
+ }
50
+ }
@@ -0,0 +1,14 @@
1
+ /*
2
+ * Use global syntax
3
+ */
4
+ @include describe("[function] use-syntax") {
5
+
6
+ $selectors: ".block__element--modifier";
7
+
8
+ @include it("should expect to return false unless syntax is set") {
9
+ @include should(expect(
10
+ flint-use-syntax($selectors)),
11
+ to(be(false))
12
+ );
13
+ }
14
+ }
@@ -0,0 +1,243 @@
1
+ /**
2
+ * Configuration map
3
+ */
4
+ $flint: (
5
+ "breakpoints": (
6
+ "desktop": (
7
+ "columns": 16,
8
+ "breakpoint": 80em
9
+ ),
10
+ "laptop": (
11
+ "columns": 12,
12
+ "breakpoint": 60em
13
+ ),
14
+ "tablet": (
15
+ "columns": 8,
16
+ "breakpoint": 40em
17
+ ),
18
+ "mobile": (
19
+ "columns": 4,
20
+ "breakpoint": 20em
21
+ )
22
+ ),
23
+ "settings": (
24
+ "default": "mobile",
25
+ "grid": "fluid",
26
+ "gutter": 0.625em,
27
+ "float-direction": "left",
28
+ "max-width": true,
29
+ "center-container": true,
30
+ "border-box-sizing": true,
31
+ "instance-maps": true,
32
+ "support-syntax": false,
33
+ "debug-mode": false
34
+ )
35
+ );
36
+
37
+ // Bootcamp
38
+ @import "../bootcamp/bootcamp";
39
+
40
+ // Flint
41
+ @import "../../stylesheets/flint";
42
+
43
+ // Enable development mode
44
+ $flint__development-mode: true !global;
45
+
46
+ // Test speed improvements
47
+ // $flint__use-ruby-functions: false !global;
48
+
49
+ /*
50
+ * BEGIN TESTS
51
+ * -----------
52
+ */
53
+ @include runner-start;
54
+ /*
55
+ * -----------
56
+ * BEGIN TESTS
57
+ */
58
+
59
+ @include it("should expect foundation to not be set") {
60
+ @include should(expect($flint__foundation),
61
+ to(be("non-existent"))
62
+ );
63
+ }
64
+
65
+ @include _("foundation");
66
+
67
+ @include it("should expect foundation to be set") {
68
+ @include should(expect($flint__foundation),
69
+ to(be("existent"))
70
+ );
71
+ }
72
+
73
+ @import "functions/functions";
74
+
75
+ /*
76
+ * END TESTS
77
+ * ---------
78
+ */
79
+ @include runner-end;
80
+ /*
81
+ * ---------
82
+ * END TESTS
83
+ */
84
+
85
+
86
+
87
+ /*
88
+ * Visual HTML test
89
+ */
90
+ $color__blue: #2C3F52;
91
+ $color__blue--dark: #15202A;
92
+ $color__blue--darkest: #0E181E;
93
+ $color__yellow: #FFF87B;
94
+
95
+ // Pseudo content
96
+ @mixin col-num($i) {
97
+ &:before {
98
+ @include _(desktop) {
99
+ content: "#{$i} of 16";
100
+ }
101
+ @include _(laptop) {
102
+ @if $i > 12 { $i: 12; }
103
+ content: "#{$i} of 12";
104
+ }
105
+ @include _(tablet) {
106
+ @if $i > 8 { $i: 8; }
107
+ content: "#{$i} of 8";
108
+ }
109
+ @include _(mobile) {
110
+ @if $i > 4 { $i: 4; }
111
+ content: "#{$i} of 4";
112
+ }
113
+ }
114
+ }
115
+
116
+ // Generate cols
117
+ @for $i from 1 through 16 {
118
+ .col-#{$i} {
119
+
120
+ @if $i == 16 {
121
+
122
+ @include _($i 12 8 4);
123
+ @include col-num($i);
124
+
125
+ .col-#{$i}-child {
126
+ @include _($i/2 12/2 8/2 4/2, auto);
127
+ @include col-num($i/2);
128
+
129
+ .col-#{$i}-grandchild {
130
+ @include _($i/4 12/4 8/4 4/4, auto);
131
+ @include col-num($i/4);
132
+ }
133
+ }
134
+
135
+ } @else if $i > 12 {
136
+
137
+ @include _($i 12 8 4);
138
+ @include col-num($i);
139
+
140
+ .col-#{$i}-child {
141
+ @include _($i/2 12/2 8/2 4/2, auto);
142
+ @include col-num($i/2);
143
+ }
144
+
145
+ } @else if $i > 8 {
146
+
147
+ @include _($i $i 8 4);
148
+ @include col-num($i);
149
+
150
+ .col-#{$i}-child {
151
+ @include _($i/2 $i/2 8/2 4/2, auto);
152
+ @include col-num($i/2);
153
+ }
154
+
155
+ } @else if $i > 4 {
156
+
157
+ @include _($i $i $i 4);
158
+ @include col-num($i);
159
+
160
+ .col-#{$i}-child {
161
+ @include _($i/2 $i/2 $i/2 4/2, auto);
162
+ @include col-num($i/2);
163
+ }
164
+
165
+ } @else {
166
+
167
+ @include _($i);
168
+ @include col-num($i);
169
+
170
+ .col-#{$i}-child {
171
+ @include _($i, auto);
172
+ @include col-num($i);
173
+ }
174
+
175
+ }
176
+
177
+ // background: if($i > 10, darken($color__blue, ($i*0.25)), lighten($color__blue, (16/$i)));
178
+ clear: both;
179
+
180
+ div {
181
+ // background: if($i > 10, lighten($color__blue, ($i*0.25)), darken($color__blue, (16/$i)));
182
+ height: 100% !important;
183
+
184
+ div {
185
+ // background: if($i > 10, darken($color__blue, ($i*0.25)), lighten($color__blue, (16/$i)));
186
+ }
187
+ }
188
+ }
189
+ }
190
+
191
+ .col-third {
192
+ @include _(16/3 12/3 8/3 4/3);
193
+ // background: $color__blue;
194
+
195
+ &:before { content: "1/3"; }
196
+ }
197
+
198
+ .col-fourth {
199
+ @include _(16/4 12/4 8/4 4/4);
200
+ // background: $color__blue;
201
+
202
+ &:before { content: "1/4"; }
203
+ }
204
+
205
+ .col-fifth {
206
+ @include _(16/5 12/5 8/5 4/5);
207
+ // background: $color__blue;
208
+
209
+ &:before { content: "1/5"; }
210
+
211
+ .col-fifth-child {
212
+ @include _((16/5)/3 (12/5)/3 (8/5)/3 (4/5)/3, auto);
213
+ height: 100% !important;
214
+ }
215
+ }
216
+
217
+ div[class*="col"] {
218
+ position: relative;
219
+ font: 10px Consolas, "Andale Mono WT", "Andale Mono", "Lucida Console", "Lucida Sans Typewriter", "DejaVu Sans Mono", "Bitstream Vera Sans Mono", "Liberation Mono", "Nimbus Mono L", Monaco, "Courier New", Courier, monospace;
220
+ color: $color__yellow;
221
+ height: 120px;
222
+ margin-top: 10px;
223
+ margin-bottom: 10px;
224
+ padding: 2em 0;
225
+ outline: lighten($color__blue, 10%) solid 2px;
226
+
227
+ &:before {
228
+ position: absolute;
229
+ top: 1em;
230
+ left: 1em;
231
+ }
232
+ }
233
+
234
+ section {
235
+ background: $color__blue--darkest;
236
+ // & + & { background: darken($color__blue--darkest, 5%); }
237
+ // & + & + & { background: darken($color__blue--darkest, 10%); }
238
+ // & + & + & + & { background: darken($color__blue--darkest, 15%); }
239
+ }
240
+
241
+ .container {
242
+ @include _(container, clear);
243
+ }
@@ -0,0 +1,1900 @@
1
+ @charset "UTF-8";
2
+ *, *:before, *:after {
3
+ box-sizing: border-box;
4
+ }
5
+ @media (min-width: 60.0625em) {
6
+ .instance {
7
+ float: left;
8
+ width: 23.4375%;
9
+ margin-right: 0.78125%;
10
+ margin-left: 0.78125%;
11
+ }
12
+ }
13
+
14
+ .parent-instance {
15
+ float: left;
16
+ width: 93.75%;
17
+ margin-right: 3.125%;
18
+ margin-left: 3.125%;
19
+ }
20
+ @media (min-width: 60.0625em) {
21
+ .parent-instance {
22
+ width: 23.4375%;
23
+ margin-right: 0.78125%;
24
+ margin-left: 0.78125%;
25
+ }
26
+ }
27
+ @media (min-width: 40.0625em) and (max-width: 60em) {
28
+ .parent-instance {
29
+ width: 31.25%;
30
+ margin-right: 1.04167%;
31
+ margin-left: 1.04167%;
32
+ }
33
+ }
34
+ @media (min-width: 20.0625em) and (max-width: 40em) {
35
+ .parent-instance {
36
+ width: 46.875%;
37
+ margin-right: 1.5625%;
38
+ margin-left: 1.5625%;
39
+ }
40
+ }
41
+ .parent-instance .child-instance {
42
+ float: left;
43
+ width: 43.33333%;
44
+ margin-right: 3.33333%;
45
+ margin-left: 3.33333%;
46
+ }
47
+ @media (min-width: 60.0625em) {
48
+ .parent-instance .child-instance {
49
+ width: 43.33333%;
50
+ margin-right: 3.33333%;
51
+ margin-left: 3.33333%;
52
+ }
53
+ }
54
+ @media (min-width: 40.0625em) and (max-width: 60em) {
55
+ .parent-instance .child-instance {
56
+ width: 43.33333%;
57
+ margin-right: 3.33333%;
58
+ margin-left: 3.33333%;
59
+ }
60
+ }
61
+ @media (min-width: 20.0625em) and (max-width: 40em) {
62
+ .parent-instance .child-instance {
63
+ width: 43.33333%;
64
+ margin-right: 3.33333%;
65
+ margin-left: 3.33333%;
66
+ }
67
+ }
68
+
69
+ @media (min-width: 40.0625em) and (max-width: 60em) {
70
+ .parent-instance {
71
+ float: left;
72
+ width: 31.25%;
73
+ margin-right: 1.04167%;
74
+ margin-left: 1.04167%;
75
+ }
76
+ }
77
+ @media (min-width: 40.0625em) and (max-width: 60em) {
78
+ .parent-instance .child-instance {
79
+ float: left;
80
+ width: 14.58333%;
81
+ margin-right: 1.04167%;
82
+ margin-left: 1.04167%;
83
+ }
84
+ }
85
+
86
+ @media (min-width: 60.0625em) {
87
+ .parent-instance {
88
+ float: left;
89
+ width: 23.4375%;
90
+ margin-right: 0.78125%;
91
+ margin-left: 0.78125%;
92
+ }
93
+ }
94
+ @media (min-width: 60.0625em) {
95
+ .parent-instance .child-instance {
96
+ float: left;
97
+ width: 10.9375%;
98
+ margin-right: 0.78125%;
99
+ margin-left: 0.78125%;
100
+ }
101
+ }
102
+
103
+ Test Results {
104
+ Success: true;
105
+ Stats: ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔;
106
+ Tests: 77;
107
+ Asserts: 177;
108
+ Passed: 77;
109
+ Failed: 0;
110
+ Skipped: 0;
111
+ }
112
+
113
+ .col-1 {
114
+ float: left;
115
+ width: 18.75%;
116
+ margin-right: 3.125%;
117
+ margin-left: 3.125%;
118
+ clear: both;
119
+ }
120
+ @media (min-width: 60.0625em) {
121
+ .col-1 {
122
+ width: 4.6875%;
123
+ margin-right: 0.78125%;
124
+ margin-left: 0.78125%;
125
+ }
126
+ }
127
+ @media (min-width: 40.0625em) and (max-width: 60em) {
128
+ .col-1 {
129
+ width: 6.25%;
130
+ margin-right: 1.04167%;
131
+ margin-left: 1.04167%;
132
+ }
133
+ }
134
+ @media (min-width: 20.0625em) and (max-width: 40em) {
135
+ .col-1 {
136
+ width: 9.375%;
137
+ margin-right: 1.5625%;
138
+ margin-left: 1.5625%;
139
+ }
140
+ }
141
+ @media (min-width: 60.0625em) {
142
+ .col-1:before {
143
+ content: "1 of 16";
144
+ }
145
+ }
146
+ @media (min-width: 40.0625em) and (max-width: 60em) {
147
+ .col-1:before {
148
+ content: "1 of 12";
149
+ }
150
+ }
151
+ @media (min-width: 20.0625em) and (max-width: 40em) {
152
+ .col-1:before {
153
+ content: "1 of 8";
154
+ }
155
+ }
156
+ @media (min-width: 0) and (max-width: 20em) {
157
+ .col-1:before {
158
+ content: "1 of 4";
159
+ }
160
+ }
161
+ .col-1 .col-1-child {
162
+ float: left;
163
+ width: 66.66667%;
164
+ margin-right: 16.66667%;
165
+ margin-left: 16.66667%;
166
+ }
167
+ @media (min-width: 60.0625em) {
168
+ .col-1 .col-1-child {
169
+ width: 66.66667%;
170
+ margin-right: 16.66667%;
171
+ margin-left: 16.66667%;
172
+ }
173
+ }
174
+ @media (min-width: 40.0625em) and (max-width: 60em) {
175
+ .col-1 .col-1-child {
176
+ width: 66.66667%;
177
+ margin-right: 16.66667%;
178
+ margin-left: 16.66667%;
179
+ }
180
+ }
181
+ @media (min-width: 20.0625em) and (max-width: 40em) {
182
+ .col-1 .col-1-child {
183
+ width: 66.66667%;
184
+ margin-right: 16.66667%;
185
+ margin-left: 16.66667%;
186
+ }
187
+ }
188
+ @media (min-width: 60.0625em) {
189
+ .col-1 .col-1-child:before {
190
+ content: "1 of 16";
191
+ }
192
+ }
193
+ @media (min-width: 40.0625em) and (max-width: 60em) {
194
+ .col-1 .col-1-child:before {
195
+ content: "1 of 12";
196
+ }
197
+ }
198
+ @media (min-width: 20.0625em) and (max-width: 40em) {
199
+ .col-1 .col-1-child:before {
200
+ content: "1 of 8";
201
+ }
202
+ }
203
+ @media (min-width: 0) and (max-width: 20em) {
204
+ .col-1 .col-1-child:before {
205
+ content: "1 of 4";
206
+ }
207
+ }
208
+ .col-1 div {
209
+ height: 100% !important;
210
+ }
211
+
212
+ .col-2 {
213
+ float: left;
214
+ width: 43.75%;
215
+ margin-right: 3.125%;
216
+ margin-left: 3.125%;
217
+ clear: both;
218
+ }
219
+ @media (min-width: 60.0625em) {
220
+ .col-2 {
221
+ width: 10.9375%;
222
+ margin-right: 0.78125%;
223
+ margin-left: 0.78125%;
224
+ }
225
+ }
226
+ @media (min-width: 40.0625em) and (max-width: 60em) {
227
+ .col-2 {
228
+ width: 14.58333%;
229
+ margin-right: 1.04167%;
230
+ margin-left: 1.04167%;
231
+ }
232
+ }
233
+ @media (min-width: 20.0625em) and (max-width: 40em) {
234
+ .col-2 {
235
+ width: 21.875%;
236
+ margin-right: 1.5625%;
237
+ margin-left: 1.5625%;
238
+ }
239
+ }
240
+ @media (min-width: 60.0625em) {
241
+ .col-2:before {
242
+ content: "2 of 16";
243
+ }
244
+ }
245
+ @media (min-width: 40.0625em) and (max-width: 60em) {
246
+ .col-2:before {
247
+ content: "2 of 12";
248
+ }
249
+ }
250
+ @media (min-width: 20.0625em) and (max-width: 40em) {
251
+ .col-2:before {
252
+ content: "2 of 8";
253
+ }
254
+ }
255
+ @media (min-width: 0) and (max-width: 20em) {
256
+ .col-2:before {
257
+ content: "2 of 4";
258
+ }
259
+ }
260
+ .col-2 .col-2-child {
261
+ float: left;
262
+ width: 85.71429%;
263
+ margin-right: 7.14286%;
264
+ margin-left: 7.14286%;
265
+ }
266
+ @media (min-width: 60.0625em) {
267
+ .col-2 .col-2-child {
268
+ width: 85.71429%;
269
+ margin-right: 7.14286%;
270
+ margin-left: 7.14286%;
271
+ }
272
+ }
273
+ @media (min-width: 40.0625em) and (max-width: 60em) {
274
+ .col-2 .col-2-child {
275
+ width: 85.71429%;
276
+ margin-right: 7.14286%;
277
+ margin-left: 7.14286%;
278
+ }
279
+ }
280
+ @media (min-width: 20.0625em) and (max-width: 40em) {
281
+ .col-2 .col-2-child {
282
+ width: 85.71429%;
283
+ margin-right: 7.14286%;
284
+ margin-left: 7.14286%;
285
+ }
286
+ }
287
+ @media (min-width: 60.0625em) {
288
+ .col-2 .col-2-child:before {
289
+ content: "2 of 16";
290
+ }
291
+ }
292
+ @media (min-width: 40.0625em) and (max-width: 60em) {
293
+ .col-2 .col-2-child:before {
294
+ content: "2 of 12";
295
+ }
296
+ }
297
+ @media (min-width: 20.0625em) and (max-width: 40em) {
298
+ .col-2 .col-2-child:before {
299
+ content: "2 of 8";
300
+ }
301
+ }
302
+ @media (min-width: 0) and (max-width: 20em) {
303
+ .col-2 .col-2-child:before {
304
+ content: "2 of 4";
305
+ }
306
+ }
307
+ .col-2 div {
308
+ height: 100% !important;
309
+ }
310
+
311
+ .col-3 {
312
+ float: left;
313
+ width: 68.75%;
314
+ margin-right: 3.125%;
315
+ margin-left: 3.125%;
316
+ clear: both;
317
+ }
318
+ @media (min-width: 60.0625em) {
319
+ .col-3 {
320
+ width: 17.1875%;
321
+ margin-right: 0.78125%;
322
+ margin-left: 0.78125%;
323
+ }
324
+ }
325
+ @media (min-width: 40.0625em) and (max-width: 60em) {
326
+ .col-3 {
327
+ width: 22.91667%;
328
+ margin-right: 1.04167%;
329
+ margin-left: 1.04167%;
330
+ }
331
+ }
332
+ @media (min-width: 20.0625em) and (max-width: 40em) {
333
+ .col-3 {
334
+ width: 34.375%;
335
+ margin-right: 1.5625%;
336
+ margin-left: 1.5625%;
337
+ }
338
+ }
339
+ @media (min-width: 60.0625em) {
340
+ .col-3:before {
341
+ content: "3 of 16";
342
+ }
343
+ }
344
+ @media (min-width: 40.0625em) and (max-width: 60em) {
345
+ .col-3:before {
346
+ content: "3 of 12";
347
+ }
348
+ }
349
+ @media (min-width: 20.0625em) and (max-width: 40em) {
350
+ .col-3:before {
351
+ content: "3 of 8";
352
+ }
353
+ }
354
+ @media (min-width: 0) and (max-width: 20em) {
355
+ .col-3:before {
356
+ content: "3 of 4";
357
+ }
358
+ }
359
+ .col-3 .col-3-child {
360
+ float: left;
361
+ width: 90.90909%;
362
+ margin-right: 4.54545%;
363
+ margin-left: 4.54545%;
364
+ }
365
+ @media (min-width: 60.0625em) {
366
+ .col-3 .col-3-child {
367
+ width: 90.90909%;
368
+ margin-right: 4.54545%;
369
+ margin-left: 4.54545%;
370
+ }
371
+ }
372
+ @media (min-width: 40.0625em) and (max-width: 60em) {
373
+ .col-3 .col-3-child {
374
+ width: 90.90909%;
375
+ margin-right: 4.54545%;
376
+ margin-left: 4.54545%;
377
+ }
378
+ }
379
+ @media (min-width: 20.0625em) and (max-width: 40em) {
380
+ .col-3 .col-3-child {
381
+ width: 90.90909%;
382
+ margin-right: 4.54545%;
383
+ margin-left: 4.54545%;
384
+ }
385
+ }
386
+ @media (min-width: 60.0625em) {
387
+ .col-3 .col-3-child:before {
388
+ content: "3 of 16";
389
+ }
390
+ }
391
+ @media (min-width: 40.0625em) and (max-width: 60em) {
392
+ .col-3 .col-3-child:before {
393
+ content: "3 of 12";
394
+ }
395
+ }
396
+ @media (min-width: 20.0625em) and (max-width: 40em) {
397
+ .col-3 .col-3-child:before {
398
+ content: "3 of 8";
399
+ }
400
+ }
401
+ @media (min-width: 0) and (max-width: 20em) {
402
+ .col-3 .col-3-child:before {
403
+ content: "3 of 4";
404
+ }
405
+ }
406
+ .col-3 div {
407
+ height: 100% !important;
408
+ }
409
+
410
+ .col-4 {
411
+ float: left;
412
+ width: 93.75%;
413
+ margin-right: 3.125%;
414
+ margin-left: 3.125%;
415
+ clear: both;
416
+ }
417
+ @media (min-width: 60.0625em) {
418
+ .col-4 {
419
+ width: 23.4375%;
420
+ margin-right: 0.78125%;
421
+ margin-left: 0.78125%;
422
+ }
423
+ }
424
+ @media (min-width: 40.0625em) and (max-width: 60em) {
425
+ .col-4 {
426
+ width: 31.25%;
427
+ margin-right: 1.04167%;
428
+ margin-left: 1.04167%;
429
+ }
430
+ }
431
+ @media (min-width: 20.0625em) and (max-width: 40em) {
432
+ .col-4 {
433
+ width: 46.875%;
434
+ margin-right: 1.5625%;
435
+ margin-left: 1.5625%;
436
+ }
437
+ }
438
+ @media (min-width: 60.0625em) {
439
+ .col-4:before {
440
+ content: "4 of 16";
441
+ }
442
+ }
443
+ @media (min-width: 40.0625em) and (max-width: 60em) {
444
+ .col-4:before {
445
+ content: "4 of 12";
446
+ }
447
+ }
448
+ @media (min-width: 20.0625em) and (max-width: 40em) {
449
+ .col-4:before {
450
+ content: "4 of 8";
451
+ }
452
+ }
453
+ @media (min-width: 0) and (max-width: 20em) {
454
+ .col-4:before {
455
+ content: "4 of 4";
456
+ }
457
+ }
458
+ .col-4 .col-4-child {
459
+ float: left;
460
+ width: 93.33333%;
461
+ margin-right: 3.33333%;
462
+ margin-left: 3.33333%;
463
+ }
464
+ @media (min-width: 60.0625em) {
465
+ .col-4 .col-4-child {
466
+ width: 93.33333%;
467
+ margin-right: 3.33333%;
468
+ margin-left: 3.33333%;
469
+ }
470
+ }
471
+ @media (min-width: 40.0625em) and (max-width: 60em) {
472
+ .col-4 .col-4-child {
473
+ width: 93.33333%;
474
+ margin-right: 3.33333%;
475
+ margin-left: 3.33333%;
476
+ }
477
+ }
478
+ @media (min-width: 20.0625em) and (max-width: 40em) {
479
+ .col-4 .col-4-child {
480
+ width: 93.33333%;
481
+ margin-right: 3.33333%;
482
+ margin-left: 3.33333%;
483
+ }
484
+ }
485
+ @media (min-width: 60.0625em) {
486
+ .col-4 .col-4-child:before {
487
+ content: "4 of 16";
488
+ }
489
+ }
490
+ @media (min-width: 40.0625em) and (max-width: 60em) {
491
+ .col-4 .col-4-child:before {
492
+ content: "4 of 12";
493
+ }
494
+ }
495
+ @media (min-width: 20.0625em) and (max-width: 40em) {
496
+ .col-4 .col-4-child:before {
497
+ content: "4 of 8";
498
+ }
499
+ }
500
+ @media (min-width: 0) and (max-width: 20em) {
501
+ .col-4 .col-4-child:before {
502
+ content: "4 of 4";
503
+ }
504
+ }
505
+ .col-4 div {
506
+ height: 100% !important;
507
+ }
508
+
509
+ .col-5 {
510
+ float: left;
511
+ width: 93.75%;
512
+ margin-right: 3.125%;
513
+ margin-left: 3.125%;
514
+ clear: both;
515
+ }
516
+ @media (min-width: 60.0625em) {
517
+ .col-5 {
518
+ width: 29.6875%;
519
+ margin-right: 0.78125%;
520
+ margin-left: 0.78125%;
521
+ }
522
+ }
523
+ @media (min-width: 40.0625em) and (max-width: 60em) {
524
+ .col-5 {
525
+ width: 39.58333%;
526
+ margin-right: 1.04167%;
527
+ margin-left: 1.04167%;
528
+ }
529
+ }
530
+ @media (min-width: 20.0625em) and (max-width: 40em) {
531
+ .col-5 {
532
+ width: 59.375%;
533
+ margin-right: 1.5625%;
534
+ margin-left: 1.5625%;
535
+ }
536
+ }
537
+ @media (min-width: 60.0625em) {
538
+ .col-5:before {
539
+ content: "5 of 16";
540
+ }
541
+ }
542
+ @media (min-width: 40.0625em) and (max-width: 60em) {
543
+ .col-5:before {
544
+ content: "5 of 12";
545
+ }
546
+ }
547
+ @media (min-width: 20.0625em) and (max-width: 40em) {
548
+ .col-5:before {
549
+ content: "5 of 8";
550
+ }
551
+ }
552
+ @media (min-width: 0) and (max-width: 20em) {
553
+ .col-5:before {
554
+ content: "4 of 4";
555
+ }
556
+ }
557
+ .col-5 .col-5-child {
558
+ float: left;
559
+ width: 43.33333%;
560
+ margin-right: 3.33333%;
561
+ margin-left: 3.33333%;
562
+ }
563
+ @media (min-width: 60.0625em) {
564
+ .col-5 .col-5-child {
565
+ width: 44.73684%;
566
+ margin-right: 2.63158%;
567
+ margin-left: 2.63158%;
568
+ }
569
+ }
570
+ @media (min-width: 40.0625em) and (max-width: 60em) {
571
+ .col-5 .col-5-child {
572
+ width: 44.73684%;
573
+ margin-right: 2.63158%;
574
+ margin-left: 2.63158%;
575
+ }
576
+ }
577
+ @media (min-width: 20.0625em) and (max-width: 40em) {
578
+ .col-5 .col-5-child {
579
+ width: 44.73684%;
580
+ margin-right: 2.63158%;
581
+ margin-left: 2.63158%;
582
+ }
583
+ }
584
+ @media (min-width: 60.0625em) {
585
+ .col-5 .col-5-child:before {
586
+ content: "2.5 of 16";
587
+ }
588
+ }
589
+ @media (min-width: 40.0625em) and (max-width: 60em) {
590
+ .col-5 .col-5-child:before {
591
+ content: "2.5 of 12";
592
+ }
593
+ }
594
+ @media (min-width: 20.0625em) and (max-width: 40em) {
595
+ .col-5 .col-5-child:before {
596
+ content: "2.5 of 8";
597
+ }
598
+ }
599
+ @media (min-width: 0) and (max-width: 20em) {
600
+ .col-5 .col-5-child:before {
601
+ content: "2.5 of 4";
602
+ }
603
+ }
604
+ .col-5 div {
605
+ height: 100% !important;
606
+ }
607
+
608
+ .col-6 {
609
+ float: left;
610
+ width: 93.75%;
611
+ margin-right: 3.125%;
612
+ margin-left: 3.125%;
613
+ clear: both;
614
+ }
615
+ @media (min-width: 60.0625em) {
616
+ .col-6 {
617
+ width: 35.9375%;
618
+ margin-right: 0.78125%;
619
+ margin-left: 0.78125%;
620
+ }
621
+ }
622
+ @media (min-width: 40.0625em) and (max-width: 60em) {
623
+ .col-6 {
624
+ width: 47.91667%;
625
+ margin-right: 1.04167%;
626
+ margin-left: 1.04167%;
627
+ }
628
+ }
629
+ @media (min-width: 20.0625em) and (max-width: 40em) {
630
+ .col-6 {
631
+ width: 71.875%;
632
+ margin-right: 1.5625%;
633
+ margin-left: 1.5625%;
634
+ }
635
+ }
636
+ @media (min-width: 60.0625em) {
637
+ .col-6:before {
638
+ content: "6 of 16";
639
+ }
640
+ }
641
+ @media (min-width: 40.0625em) and (max-width: 60em) {
642
+ .col-6:before {
643
+ content: "6 of 12";
644
+ }
645
+ }
646
+ @media (min-width: 20.0625em) and (max-width: 40em) {
647
+ .col-6:before {
648
+ content: "6 of 8";
649
+ }
650
+ }
651
+ @media (min-width: 0) and (max-width: 20em) {
652
+ .col-6:before {
653
+ content: "4 of 4";
654
+ }
655
+ }
656
+ .col-6 .col-6-child {
657
+ float: left;
658
+ width: 43.33333%;
659
+ margin-right: 3.33333%;
660
+ margin-left: 3.33333%;
661
+ }
662
+ @media (min-width: 60.0625em) {
663
+ .col-6 .col-6-child {
664
+ width: 45.65217%;
665
+ margin-right: 2.17391%;
666
+ margin-left: 2.17391%;
667
+ }
668
+ }
669
+ @media (min-width: 40.0625em) and (max-width: 60em) {
670
+ .col-6 .col-6-child {
671
+ width: 45.65217%;
672
+ margin-right: 2.17391%;
673
+ margin-left: 2.17391%;
674
+ }
675
+ }
676
+ @media (min-width: 20.0625em) and (max-width: 40em) {
677
+ .col-6 .col-6-child {
678
+ width: 45.65217%;
679
+ margin-right: 2.17391%;
680
+ margin-left: 2.17391%;
681
+ }
682
+ }
683
+ @media (min-width: 60.0625em) {
684
+ .col-6 .col-6-child:before {
685
+ content: "3 of 16";
686
+ }
687
+ }
688
+ @media (min-width: 40.0625em) and (max-width: 60em) {
689
+ .col-6 .col-6-child:before {
690
+ content: "3 of 12";
691
+ }
692
+ }
693
+ @media (min-width: 20.0625em) and (max-width: 40em) {
694
+ .col-6 .col-6-child:before {
695
+ content: "3 of 8";
696
+ }
697
+ }
698
+ @media (min-width: 0) and (max-width: 20em) {
699
+ .col-6 .col-6-child:before {
700
+ content: "3 of 4";
701
+ }
702
+ }
703
+ .col-6 div {
704
+ height: 100% !important;
705
+ }
706
+
707
+ .col-7 {
708
+ float: left;
709
+ width: 93.75%;
710
+ margin-right: 3.125%;
711
+ margin-left: 3.125%;
712
+ clear: both;
713
+ }
714
+ @media (min-width: 60.0625em) {
715
+ .col-7 {
716
+ width: 42.1875%;
717
+ margin-right: 0.78125%;
718
+ margin-left: 0.78125%;
719
+ }
720
+ }
721
+ @media (min-width: 40.0625em) and (max-width: 60em) {
722
+ .col-7 {
723
+ width: 56.25%;
724
+ margin-right: 1.04167%;
725
+ margin-left: 1.04167%;
726
+ }
727
+ }
728
+ @media (min-width: 20.0625em) and (max-width: 40em) {
729
+ .col-7 {
730
+ width: 84.375%;
731
+ margin-right: 1.5625%;
732
+ margin-left: 1.5625%;
733
+ }
734
+ }
735
+ @media (min-width: 60.0625em) {
736
+ .col-7:before {
737
+ content: "7 of 16";
738
+ }
739
+ }
740
+ @media (min-width: 40.0625em) and (max-width: 60em) {
741
+ .col-7:before {
742
+ content: "7 of 12";
743
+ }
744
+ }
745
+ @media (min-width: 20.0625em) and (max-width: 40em) {
746
+ .col-7:before {
747
+ content: "7 of 8";
748
+ }
749
+ }
750
+ @media (min-width: 0) and (max-width: 20em) {
751
+ .col-7:before {
752
+ content: "4 of 4";
753
+ }
754
+ }
755
+ .col-7 .col-7-child {
756
+ float: left;
757
+ width: 43.33333%;
758
+ margin-right: 3.33333%;
759
+ margin-left: 3.33333%;
760
+ }
761
+ @media (min-width: 60.0625em) {
762
+ .col-7 .col-7-child {
763
+ width: 46.2963%;
764
+ margin-right: 1.85185%;
765
+ margin-left: 1.85185%;
766
+ }
767
+ }
768
+ @media (min-width: 40.0625em) and (max-width: 60em) {
769
+ .col-7 .col-7-child {
770
+ width: 46.2963%;
771
+ margin-right: 1.85185%;
772
+ margin-left: 1.85185%;
773
+ }
774
+ }
775
+ @media (min-width: 20.0625em) and (max-width: 40em) {
776
+ .col-7 .col-7-child {
777
+ width: 46.2963%;
778
+ margin-right: 1.85185%;
779
+ margin-left: 1.85185%;
780
+ }
781
+ }
782
+ @media (min-width: 60.0625em) {
783
+ .col-7 .col-7-child:before {
784
+ content: "3.5 of 16";
785
+ }
786
+ }
787
+ @media (min-width: 40.0625em) and (max-width: 60em) {
788
+ .col-7 .col-7-child:before {
789
+ content: "3.5 of 12";
790
+ }
791
+ }
792
+ @media (min-width: 20.0625em) and (max-width: 40em) {
793
+ .col-7 .col-7-child:before {
794
+ content: "3.5 of 8";
795
+ }
796
+ }
797
+ @media (min-width: 0) and (max-width: 20em) {
798
+ .col-7 .col-7-child:before {
799
+ content: "3.5 of 4";
800
+ }
801
+ }
802
+ .col-7 div {
803
+ height: 100% !important;
804
+ }
805
+
806
+ .col-8 {
807
+ float: left;
808
+ width: 93.75%;
809
+ margin-right: 3.125%;
810
+ margin-left: 3.125%;
811
+ clear: both;
812
+ }
813
+ @media (min-width: 60.0625em) {
814
+ .col-8 {
815
+ width: 48.4375%;
816
+ margin-right: 0.78125%;
817
+ margin-left: 0.78125%;
818
+ }
819
+ }
820
+ @media (min-width: 40.0625em) and (max-width: 60em) {
821
+ .col-8 {
822
+ width: 64.58333%;
823
+ margin-right: 1.04167%;
824
+ margin-left: 1.04167%;
825
+ }
826
+ }
827
+ @media (min-width: 20.0625em) and (max-width: 40em) {
828
+ .col-8 {
829
+ width: 96.875%;
830
+ margin-right: 1.5625%;
831
+ margin-left: 1.5625%;
832
+ }
833
+ }
834
+ @media (min-width: 60.0625em) {
835
+ .col-8:before {
836
+ content: "8 of 16";
837
+ }
838
+ }
839
+ @media (min-width: 40.0625em) and (max-width: 60em) {
840
+ .col-8:before {
841
+ content: "8 of 12";
842
+ }
843
+ }
844
+ @media (min-width: 20.0625em) and (max-width: 40em) {
845
+ .col-8:before {
846
+ content: "8 of 8";
847
+ }
848
+ }
849
+ @media (min-width: 0) and (max-width: 20em) {
850
+ .col-8:before {
851
+ content: "4 of 4";
852
+ }
853
+ }
854
+ .col-8 .col-8-child {
855
+ float: left;
856
+ width: 43.33333%;
857
+ margin-right: 3.33333%;
858
+ margin-left: 3.33333%;
859
+ }
860
+ @media (min-width: 60.0625em) {
861
+ .col-8 .col-8-child {
862
+ width: 46.77419%;
863
+ margin-right: 1.6129%;
864
+ margin-left: 1.6129%;
865
+ }
866
+ }
867
+ @media (min-width: 40.0625em) and (max-width: 60em) {
868
+ .col-8 .col-8-child {
869
+ width: 46.77419%;
870
+ margin-right: 1.6129%;
871
+ margin-left: 1.6129%;
872
+ }
873
+ }
874
+ @media (min-width: 20.0625em) and (max-width: 40em) {
875
+ .col-8 .col-8-child {
876
+ width: 46.77419%;
877
+ margin-right: 1.6129%;
878
+ margin-left: 1.6129%;
879
+ }
880
+ }
881
+ @media (min-width: 60.0625em) {
882
+ .col-8 .col-8-child:before {
883
+ content: "4 of 16";
884
+ }
885
+ }
886
+ @media (min-width: 40.0625em) and (max-width: 60em) {
887
+ .col-8 .col-8-child:before {
888
+ content: "4 of 12";
889
+ }
890
+ }
891
+ @media (min-width: 20.0625em) and (max-width: 40em) {
892
+ .col-8 .col-8-child:before {
893
+ content: "4 of 8";
894
+ }
895
+ }
896
+ @media (min-width: 0) and (max-width: 20em) {
897
+ .col-8 .col-8-child:before {
898
+ content: "4 of 4";
899
+ }
900
+ }
901
+ .col-8 div {
902
+ height: 100% !important;
903
+ }
904
+
905
+ .col-9 {
906
+ float: left;
907
+ width: 93.75%;
908
+ margin-right: 3.125%;
909
+ margin-left: 3.125%;
910
+ clear: both;
911
+ }
912
+ @media (min-width: 60.0625em) {
913
+ .col-9 {
914
+ width: 54.6875%;
915
+ margin-right: 0.78125%;
916
+ margin-left: 0.78125%;
917
+ }
918
+ }
919
+ @media (min-width: 40.0625em) and (max-width: 60em) {
920
+ .col-9 {
921
+ width: 72.91667%;
922
+ margin-right: 1.04167%;
923
+ margin-left: 1.04167%;
924
+ }
925
+ }
926
+ @media (min-width: 20.0625em) and (max-width: 40em) {
927
+ .col-9 {
928
+ width: 96.875%;
929
+ margin-right: 1.5625%;
930
+ margin-left: 1.5625%;
931
+ }
932
+ }
933
+ @media (min-width: 60.0625em) {
934
+ .col-9:before {
935
+ content: "9 of 16";
936
+ }
937
+ }
938
+ @media (min-width: 40.0625em) and (max-width: 60em) {
939
+ .col-9:before {
940
+ content: "9 of 12";
941
+ }
942
+ }
943
+ @media (min-width: 20.0625em) and (max-width: 40em) {
944
+ .col-9:before {
945
+ content: "8 of 8";
946
+ }
947
+ }
948
+ @media (min-width: 0) and (max-width: 20em) {
949
+ .col-9:before {
950
+ content: "4 of 4";
951
+ }
952
+ }
953
+ .col-9 .col-9-child {
954
+ float: left;
955
+ width: 43.33333%;
956
+ margin-right: 3.33333%;
957
+ margin-left: 3.33333%;
958
+ }
959
+ @media (min-width: 60.0625em) {
960
+ .col-9 .col-9-child {
961
+ width: 47.14286%;
962
+ margin-right: 1.42857%;
963
+ margin-left: 1.42857%;
964
+ }
965
+ }
966
+ @media (min-width: 40.0625em) and (max-width: 60em) {
967
+ .col-9 .col-9-child {
968
+ width: 47.14286%;
969
+ margin-right: 1.42857%;
970
+ margin-left: 1.42857%;
971
+ }
972
+ }
973
+ @media (min-width: 20.0625em) and (max-width: 40em) {
974
+ .col-9 .col-9-child {
975
+ width: 46.77419%;
976
+ margin-right: 1.6129%;
977
+ margin-left: 1.6129%;
978
+ }
979
+ }
980
+ @media (min-width: 60.0625em) {
981
+ .col-9 .col-9-child:before {
982
+ content: "4.5 of 16";
983
+ }
984
+ }
985
+ @media (min-width: 40.0625em) and (max-width: 60em) {
986
+ .col-9 .col-9-child:before {
987
+ content: "4.5 of 12";
988
+ }
989
+ }
990
+ @media (min-width: 20.0625em) and (max-width: 40em) {
991
+ .col-9 .col-9-child:before {
992
+ content: "4.5 of 8";
993
+ }
994
+ }
995
+ @media (min-width: 0) and (max-width: 20em) {
996
+ .col-9 .col-9-child:before {
997
+ content: "4 of 4";
998
+ }
999
+ }
1000
+ .col-9 div {
1001
+ height: 100% !important;
1002
+ }
1003
+
1004
+ .col-10 {
1005
+ float: left;
1006
+ width: 93.75%;
1007
+ margin-right: 3.125%;
1008
+ margin-left: 3.125%;
1009
+ clear: both;
1010
+ }
1011
+ @media (min-width: 60.0625em) {
1012
+ .col-10 {
1013
+ width: 60.9375%;
1014
+ margin-right: 0.78125%;
1015
+ margin-left: 0.78125%;
1016
+ }
1017
+ }
1018
+ @media (min-width: 40.0625em) and (max-width: 60em) {
1019
+ .col-10 {
1020
+ width: 81.25%;
1021
+ margin-right: 1.04167%;
1022
+ margin-left: 1.04167%;
1023
+ }
1024
+ }
1025
+ @media (min-width: 20.0625em) and (max-width: 40em) {
1026
+ .col-10 {
1027
+ width: 96.875%;
1028
+ margin-right: 1.5625%;
1029
+ margin-left: 1.5625%;
1030
+ }
1031
+ }
1032
+ @media (min-width: 60.0625em) {
1033
+ .col-10:before {
1034
+ content: "10 of 16";
1035
+ }
1036
+ }
1037
+ @media (min-width: 40.0625em) and (max-width: 60em) {
1038
+ .col-10:before {
1039
+ content: "10 of 12";
1040
+ }
1041
+ }
1042
+ @media (min-width: 20.0625em) and (max-width: 40em) {
1043
+ .col-10:before {
1044
+ content: "8 of 8";
1045
+ }
1046
+ }
1047
+ @media (min-width: 0) and (max-width: 20em) {
1048
+ .col-10:before {
1049
+ content: "4 of 4";
1050
+ }
1051
+ }
1052
+ .col-10 .col-10-child {
1053
+ float: left;
1054
+ width: 43.33333%;
1055
+ margin-right: 3.33333%;
1056
+ margin-left: 3.33333%;
1057
+ }
1058
+ @media (min-width: 60.0625em) {
1059
+ .col-10 .col-10-child {
1060
+ width: 47.4359%;
1061
+ margin-right: 1.28205%;
1062
+ margin-left: 1.28205%;
1063
+ }
1064
+ }
1065
+ @media (min-width: 40.0625em) and (max-width: 60em) {
1066
+ .col-10 .col-10-child {
1067
+ width: 47.4359%;
1068
+ margin-right: 1.28205%;
1069
+ margin-left: 1.28205%;
1070
+ }
1071
+ }
1072
+ @media (min-width: 20.0625em) and (max-width: 40em) {
1073
+ .col-10 .col-10-child {
1074
+ width: 46.77419%;
1075
+ margin-right: 1.6129%;
1076
+ margin-left: 1.6129%;
1077
+ }
1078
+ }
1079
+ @media (min-width: 60.0625em) {
1080
+ .col-10 .col-10-child:before {
1081
+ content: "5 of 16";
1082
+ }
1083
+ }
1084
+ @media (min-width: 40.0625em) and (max-width: 60em) {
1085
+ .col-10 .col-10-child:before {
1086
+ content: "5 of 12";
1087
+ }
1088
+ }
1089
+ @media (min-width: 20.0625em) and (max-width: 40em) {
1090
+ .col-10 .col-10-child:before {
1091
+ content: "5 of 8";
1092
+ }
1093
+ }
1094
+ @media (min-width: 0) and (max-width: 20em) {
1095
+ .col-10 .col-10-child:before {
1096
+ content: "4 of 4";
1097
+ }
1098
+ }
1099
+ .col-10 div {
1100
+ height: 100% !important;
1101
+ }
1102
+
1103
+ .col-11 {
1104
+ float: left;
1105
+ width: 93.75%;
1106
+ margin-right: 3.125%;
1107
+ margin-left: 3.125%;
1108
+ clear: both;
1109
+ }
1110
+ @media (min-width: 60.0625em) {
1111
+ .col-11 {
1112
+ width: 67.1875%;
1113
+ margin-right: 0.78125%;
1114
+ margin-left: 0.78125%;
1115
+ }
1116
+ }
1117
+ @media (min-width: 40.0625em) and (max-width: 60em) {
1118
+ .col-11 {
1119
+ width: 89.58333%;
1120
+ margin-right: 1.04167%;
1121
+ margin-left: 1.04167%;
1122
+ }
1123
+ }
1124
+ @media (min-width: 20.0625em) and (max-width: 40em) {
1125
+ .col-11 {
1126
+ width: 96.875%;
1127
+ margin-right: 1.5625%;
1128
+ margin-left: 1.5625%;
1129
+ }
1130
+ }
1131
+ @media (min-width: 60.0625em) {
1132
+ .col-11:before {
1133
+ content: "11 of 16";
1134
+ }
1135
+ }
1136
+ @media (min-width: 40.0625em) and (max-width: 60em) {
1137
+ .col-11:before {
1138
+ content: "11 of 12";
1139
+ }
1140
+ }
1141
+ @media (min-width: 20.0625em) and (max-width: 40em) {
1142
+ .col-11:before {
1143
+ content: "8 of 8";
1144
+ }
1145
+ }
1146
+ @media (min-width: 0) and (max-width: 20em) {
1147
+ .col-11:before {
1148
+ content: "4 of 4";
1149
+ }
1150
+ }
1151
+ .col-11 .col-11-child {
1152
+ float: left;
1153
+ width: 43.33333%;
1154
+ margin-right: 3.33333%;
1155
+ margin-left: 3.33333%;
1156
+ }
1157
+ @media (min-width: 60.0625em) {
1158
+ .col-11 .col-11-child {
1159
+ width: 47.67442%;
1160
+ margin-right: 1.16279%;
1161
+ margin-left: 1.16279%;
1162
+ }
1163
+ }
1164
+ @media (min-width: 40.0625em) and (max-width: 60em) {
1165
+ .col-11 .col-11-child {
1166
+ width: 47.67442%;
1167
+ margin-right: 1.16279%;
1168
+ margin-left: 1.16279%;
1169
+ }
1170
+ }
1171
+ @media (min-width: 20.0625em) and (max-width: 40em) {
1172
+ .col-11 .col-11-child {
1173
+ width: 46.77419%;
1174
+ margin-right: 1.6129%;
1175
+ margin-left: 1.6129%;
1176
+ }
1177
+ }
1178
+ @media (min-width: 60.0625em) {
1179
+ .col-11 .col-11-child:before {
1180
+ content: "5.5 of 16";
1181
+ }
1182
+ }
1183
+ @media (min-width: 40.0625em) and (max-width: 60em) {
1184
+ .col-11 .col-11-child:before {
1185
+ content: "5.5 of 12";
1186
+ }
1187
+ }
1188
+ @media (min-width: 20.0625em) and (max-width: 40em) {
1189
+ .col-11 .col-11-child:before {
1190
+ content: "5.5 of 8";
1191
+ }
1192
+ }
1193
+ @media (min-width: 0) and (max-width: 20em) {
1194
+ .col-11 .col-11-child:before {
1195
+ content: "4 of 4";
1196
+ }
1197
+ }
1198
+ .col-11 div {
1199
+ height: 100% !important;
1200
+ }
1201
+
1202
+ .col-12 {
1203
+ float: left;
1204
+ width: 93.75%;
1205
+ margin-right: 3.125%;
1206
+ margin-left: 3.125%;
1207
+ clear: both;
1208
+ }
1209
+ @media (min-width: 60.0625em) {
1210
+ .col-12 {
1211
+ width: 73.4375%;
1212
+ margin-right: 0.78125%;
1213
+ margin-left: 0.78125%;
1214
+ }
1215
+ }
1216
+ @media (min-width: 40.0625em) and (max-width: 60em) {
1217
+ .col-12 {
1218
+ width: 97.91667%;
1219
+ margin-right: 1.04167%;
1220
+ margin-left: 1.04167%;
1221
+ }
1222
+ }
1223
+ @media (min-width: 20.0625em) and (max-width: 40em) {
1224
+ .col-12 {
1225
+ width: 96.875%;
1226
+ margin-right: 1.5625%;
1227
+ margin-left: 1.5625%;
1228
+ }
1229
+ }
1230
+ @media (min-width: 60.0625em) {
1231
+ .col-12:before {
1232
+ content: "12 of 16";
1233
+ }
1234
+ }
1235
+ @media (min-width: 40.0625em) and (max-width: 60em) {
1236
+ .col-12:before {
1237
+ content: "12 of 12";
1238
+ }
1239
+ }
1240
+ @media (min-width: 20.0625em) and (max-width: 40em) {
1241
+ .col-12:before {
1242
+ content: "8 of 8";
1243
+ }
1244
+ }
1245
+ @media (min-width: 0) and (max-width: 20em) {
1246
+ .col-12:before {
1247
+ content: "4 of 4";
1248
+ }
1249
+ }
1250
+ .col-12 .col-12-child {
1251
+ float: left;
1252
+ width: 43.33333%;
1253
+ margin-right: 3.33333%;
1254
+ margin-left: 3.33333%;
1255
+ }
1256
+ @media (min-width: 60.0625em) {
1257
+ .col-12 .col-12-child {
1258
+ width: 47.87234%;
1259
+ margin-right: 1.06383%;
1260
+ margin-left: 1.06383%;
1261
+ }
1262
+ }
1263
+ @media (min-width: 40.0625em) and (max-width: 60em) {
1264
+ .col-12 .col-12-child {
1265
+ width: 47.87234%;
1266
+ margin-right: 1.06383%;
1267
+ margin-left: 1.06383%;
1268
+ }
1269
+ }
1270
+ @media (min-width: 20.0625em) and (max-width: 40em) {
1271
+ .col-12 .col-12-child {
1272
+ width: 46.77419%;
1273
+ margin-right: 1.6129%;
1274
+ margin-left: 1.6129%;
1275
+ }
1276
+ }
1277
+ @media (min-width: 60.0625em) {
1278
+ .col-12 .col-12-child:before {
1279
+ content: "6 of 16";
1280
+ }
1281
+ }
1282
+ @media (min-width: 40.0625em) and (max-width: 60em) {
1283
+ .col-12 .col-12-child:before {
1284
+ content: "6 of 12";
1285
+ }
1286
+ }
1287
+ @media (min-width: 20.0625em) and (max-width: 40em) {
1288
+ .col-12 .col-12-child:before {
1289
+ content: "6 of 8";
1290
+ }
1291
+ }
1292
+ @media (min-width: 0) and (max-width: 20em) {
1293
+ .col-12 .col-12-child:before {
1294
+ content: "4 of 4";
1295
+ }
1296
+ }
1297
+ .col-12 div {
1298
+ height: 100% !important;
1299
+ }
1300
+
1301
+ .col-13 {
1302
+ float: left;
1303
+ width: 93.75%;
1304
+ margin-right: 3.125%;
1305
+ margin-left: 3.125%;
1306
+ clear: both;
1307
+ }
1308
+ @media (min-width: 60.0625em) {
1309
+ .col-13 {
1310
+ width: 79.6875%;
1311
+ margin-right: 0.78125%;
1312
+ margin-left: 0.78125%;
1313
+ }
1314
+ }
1315
+ @media (min-width: 40.0625em) and (max-width: 60em) {
1316
+ .col-13 {
1317
+ width: 97.91667%;
1318
+ margin-right: 1.04167%;
1319
+ margin-left: 1.04167%;
1320
+ }
1321
+ }
1322
+ @media (min-width: 20.0625em) and (max-width: 40em) {
1323
+ .col-13 {
1324
+ width: 96.875%;
1325
+ margin-right: 1.5625%;
1326
+ margin-left: 1.5625%;
1327
+ }
1328
+ }
1329
+ @media (min-width: 60.0625em) {
1330
+ .col-13:before {
1331
+ content: "13 of 16";
1332
+ }
1333
+ }
1334
+ @media (min-width: 40.0625em) and (max-width: 60em) {
1335
+ .col-13:before {
1336
+ content: "12 of 12";
1337
+ }
1338
+ }
1339
+ @media (min-width: 20.0625em) and (max-width: 40em) {
1340
+ .col-13:before {
1341
+ content: "8 of 8";
1342
+ }
1343
+ }
1344
+ @media (min-width: 0) and (max-width: 20em) {
1345
+ .col-13:before {
1346
+ content: "4 of 4";
1347
+ }
1348
+ }
1349
+ .col-13 .col-13-child {
1350
+ float: left;
1351
+ width: 43.33333%;
1352
+ margin-right: 3.33333%;
1353
+ margin-left: 3.33333%;
1354
+ }
1355
+ @media (min-width: 60.0625em) {
1356
+ .col-13 .col-13-child {
1357
+ width: 48.03922%;
1358
+ margin-right: 0.98039%;
1359
+ margin-left: 0.98039%;
1360
+ }
1361
+ }
1362
+ @media (min-width: 40.0625em) and (max-width: 60em) {
1363
+ .col-13 .col-13-child {
1364
+ width: 47.87234%;
1365
+ margin-right: 1.06383%;
1366
+ margin-left: 1.06383%;
1367
+ }
1368
+ }
1369
+ @media (min-width: 20.0625em) and (max-width: 40em) {
1370
+ .col-13 .col-13-child {
1371
+ width: 46.77419%;
1372
+ margin-right: 1.6129%;
1373
+ margin-left: 1.6129%;
1374
+ }
1375
+ }
1376
+ @media (min-width: 60.0625em) {
1377
+ .col-13 .col-13-child:before {
1378
+ content: "6.5 of 16";
1379
+ }
1380
+ }
1381
+ @media (min-width: 40.0625em) and (max-width: 60em) {
1382
+ .col-13 .col-13-child:before {
1383
+ content: "6.5 of 12";
1384
+ }
1385
+ }
1386
+ @media (min-width: 20.0625em) and (max-width: 40em) {
1387
+ .col-13 .col-13-child:before {
1388
+ content: "6.5 of 8";
1389
+ }
1390
+ }
1391
+ @media (min-width: 0) and (max-width: 20em) {
1392
+ .col-13 .col-13-child:before {
1393
+ content: "4 of 4";
1394
+ }
1395
+ }
1396
+ .col-13 div {
1397
+ height: 100% !important;
1398
+ }
1399
+
1400
+ .col-14 {
1401
+ float: left;
1402
+ width: 93.75%;
1403
+ margin-right: 3.125%;
1404
+ margin-left: 3.125%;
1405
+ clear: both;
1406
+ }
1407
+ @media (min-width: 60.0625em) {
1408
+ .col-14 {
1409
+ width: 85.9375%;
1410
+ margin-right: 0.78125%;
1411
+ margin-left: 0.78125%;
1412
+ }
1413
+ }
1414
+ @media (min-width: 40.0625em) and (max-width: 60em) {
1415
+ .col-14 {
1416
+ width: 97.91667%;
1417
+ margin-right: 1.04167%;
1418
+ margin-left: 1.04167%;
1419
+ }
1420
+ }
1421
+ @media (min-width: 20.0625em) and (max-width: 40em) {
1422
+ .col-14 {
1423
+ width: 96.875%;
1424
+ margin-right: 1.5625%;
1425
+ margin-left: 1.5625%;
1426
+ }
1427
+ }
1428
+ @media (min-width: 60.0625em) {
1429
+ .col-14:before {
1430
+ content: "14 of 16";
1431
+ }
1432
+ }
1433
+ @media (min-width: 40.0625em) and (max-width: 60em) {
1434
+ .col-14:before {
1435
+ content: "12 of 12";
1436
+ }
1437
+ }
1438
+ @media (min-width: 20.0625em) and (max-width: 40em) {
1439
+ .col-14:before {
1440
+ content: "8 of 8";
1441
+ }
1442
+ }
1443
+ @media (min-width: 0) and (max-width: 20em) {
1444
+ .col-14:before {
1445
+ content: "4 of 4";
1446
+ }
1447
+ }
1448
+ .col-14 .col-14-child {
1449
+ float: left;
1450
+ width: 43.33333%;
1451
+ margin-right: 3.33333%;
1452
+ margin-left: 3.33333%;
1453
+ }
1454
+ @media (min-width: 60.0625em) {
1455
+ .col-14 .col-14-child {
1456
+ width: 48.18182%;
1457
+ margin-right: 0.90909%;
1458
+ margin-left: 0.90909%;
1459
+ }
1460
+ }
1461
+ @media (min-width: 40.0625em) and (max-width: 60em) {
1462
+ .col-14 .col-14-child {
1463
+ width: 47.87234%;
1464
+ margin-right: 1.06383%;
1465
+ margin-left: 1.06383%;
1466
+ }
1467
+ }
1468
+ @media (min-width: 20.0625em) and (max-width: 40em) {
1469
+ .col-14 .col-14-child {
1470
+ width: 46.77419%;
1471
+ margin-right: 1.6129%;
1472
+ margin-left: 1.6129%;
1473
+ }
1474
+ }
1475
+ @media (min-width: 60.0625em) {
1476
+ .col-14 .col-14-child:before {
1477
+ content: "7 of 16";
1478
+ }
1479
+ }
1480
+ @media (min-width: 40.0625em) and (max-width: 60em) {
1481
+ .col-14 .col-14-child:before {
1482
+ content: "7 of 12";
1483
+ }
1484
+ }
1485
+ @media (min-width: 20.0625em) and (max-width: 40em) {
1486
+ .col-14 .col-14-child:before {
1487
+ content: "7 of 8";
1488
+ }
1489
+ }
1490
+ @media (min-width: 0) and (max-width: 20em) {
1491
+ .col-14 .col-14-child:before {
1492
+ content: "4 of 4";
1493
+ }
1494
+ }
1495
+ .col-14 div {
1496
+ height: 100% !important;
1497
+ }
1498
+
1499
+ .col-15 {
1500
+ float: left;
1501
+ width: 93.75%;
1502
+ margin-right: 3.125%;
1503
+ margin-left: 3.125%;
1504
+ clear: both;
1505
+ }
1506
+ @media (min-width: 60.0625em) {
1507
+ .col-15 {
1508
+ width: 92.1875%;
1509
+ margin-right: 0.78125%;
1510
+ margin-left: 0.78125%;
1511
+ }
1512
+ }
1513
+ @media (min-width: 40.0625em) and (max-width: 60em) {
1514
+ .col-15 {
1515
+ width: 97.91667%;
1516
+ margin-right: 1.04167%;
1517
+ margin-left: 1.04167%;
1518
+ }
1519
+ }
1520
+ @media (min-width: 20.0625em) and (max-width: 40em) {
1521
+ .col-15 {
1522
+ width: 96.875%;
1523
+ margin-right: 1.5625%;
1524
+ margin-left: 1.5625%;
1525
+ }
1526
+ }
1527
+ @media (min-width: 60.0625em) {
1528
+ .col-15:before {
1529
+ content: "15 of 16";
1530
+ }
1531
+ }
1532
+ @media (min-width: 40.0625em) and (max-width: 60em) {
1533
+ .col-15:before {
1534
+ content: "12 of 12";
1535
+ }
1536
+ }
1537
+ @media (min-width: 20.0625em) and (max-width: 40em) {
1538
+ .col-15:before {
1539
+ content: "8 of 8";
1540
+ }
1541
+ }
1542
+ @media (min-width: 0) and (max-width: 20em) {
1543
+ .col-15:before {
1544
+ content: "4 of 4";
1545
+ }
1546
+ }
1547
+ .col-15 .col-15-child {
1548
+ float: left;
1549
+ width: 43.33333%;
1550
+ margin-right: 3.33333%;
1551
+ margin-left: 3.33333%;
1552
+ }
1553
+ @media (min-width: 60.0625em) {
1554
+ .col-15 .col-15-child {
1555
+ width: 48.30508%;
1556
+ margin-right: 0.84746%;
1557
+ margin-left: 0.84746%;
1558
+ }
1559
+ }
1560
+ @media (min-width: 40.0625em) and (max-width: 60em) {
1561
+ .col-15 .col-15-child {
1562
+ width: 47.87234%;
1563
+ margin-right: 1.06383%;
1564
+ margin-left: 1.06383%;
1565
+ }
1566
+ }
1567
+ @media (min-width: 20.0625em) and (max-width: 40em) {
1568
+ .col-15 .col-15-child {
1569
+ width: 46.77419%;
1570
+ margin-right: 1.6129%;
1571
+ margin-left: 1.6129%;
1572
+ }
1573
+ }
1574
+ @media (min-width: 60.0625em) {
1575
+ .col-15 .col-15-child:before {
1576
+ content: "7.5 of 16";
1577
+ }
1578
+ }
1579
+ @media (min-width: 40.0625em) and (max-width: 60em) {
1580
+ .col-15 .col-15-child:before {
1581
+ content: "7.5 of 12";
1582
+ }
1583
+ }
1584
+ @media (min-width: 20.0625em) and (max-width: 40em) {
1585
+ .col-15 .col-15-child:before {
1586
+ content: "7.5 of 8";
1587
+ }
1588
+ }
1589
+ @media (min-width: 0) and (max-width: 20em) {
1590
+ .col-15 .col-15-child:before {
1591
+ content: "4 of 4";
1592
+ }
1593
+ }
1594
+ .col-15 div {
1595
+ height: 100% !important;
1596
+ }
1597
+
1598
+ .col-16 {
1599
+ float: left;
1600
+ width: 93.75%;
1601
+ margin-right: 3.125%;
1602
+ margin-left: 3.125%;
1603
+ clear: both;
1604
+ }
1605
+ @media (min-width: 60.0625em) {
1606
+ .col-16 {
1607
+ width: 98.4375%;
1608
+ margin-right: 0.78125%;
1609
+ margin-left: 0.78125%;
1610
+ }
1611
+ }
1612
+ @media (min-width: 40.0625em) and (max-width: 60em) {
1613
+ .col-16 {
1614
+ width: 97.91667%;
1615
+ margin-right: 1.04167%;
1616
+ margin-left: 1.04167%;
1617
+ }
1618
+ }
1619
+ @media (min-width: 20.0625em) and (max-width: 40em) {
1620
+ .col-16 {
1621
+ width: 96.875%;
1622
+ margin-right: 1.5625%;
1623
+ margin-left: 1.5625%;
1624
+ }
1625
+ }
1626
+ @media (min-width: 60.0625em) {
1627
+ .col-16:before {
1628
+ content: "16 of 16";
1629
+ }
1630
+ }
1631
+ @media (min-width: 40.0625em) and (max-width: 60em) {
1632
+ .col-16:before {
1633
+ content: "12 of 12";
1634
+ }
1635
+ }
1636
+ @media (min-width: 20.0625em) and (max-width: 40em) {
1637
+ .col-16:before {
1638
+ content: "8 of 8";
1639
+ }
1640
+ }
1641
+ @media (min-width: 0) and (max-width: 20em) {
1642
+ .col-16:before {
1643
+ content: "4 of 4";
1644
+ }
1645
+ }
1646
+ .col-16 .col-16-child {
1647
+ float: left;
1648
+ width: 43.33333%;
1649
+ margin-right: 3.33333%;
1650
+ margin-left: 3.33333%;
1651
+ }
1652
+ @media (min-width: 60.0625em) {
1653
+ .col-16 .col-16-child {
1654
+ width: 48.4127%;
1655
+ margin-right: 0.79365%;
1656
+ margin-left: 0.79365%;
1657
+ }
1658
+ }
1659
+ @media (min-width: 40.0625em) and (max-width: 60em) {
1660
+ .col-16 .col-16-child {
1661
+ width: 47.87234%;
1662
+ margin-right: 1.06383%;
1663
+ margin-left: 1.06383%;
1664
+ }
1665
+ }
1666
+ @media (min-width: 20.0625em) and (max-width: 40em) {
1667
+ .col-16 .col-16-child {
1668
+ width: 46.77419%;
1669
+ margin-right: 1.6129%;
1670
+ margin-left: 1.6129%;
1671
+ }
1672
+ }
1673
+ @media (min-width: 60.0625em) {
1674
+ .col-16 .col-16-child:before {
1675
+ content: "8 of 16";
1676
+ }
1677
+ }
1678
+ @media (min-width: 40.0625em) and (max-width: 60em) {
1679
+ .col-16 .col-16-child:before {
1680
+ content: "8 of 12";
1681
+ }
1682
+ }
1683
+ @media (min-width: 20.0625em) and (max-width: 40em) {
1684
+ .col-16 .col-16-child:before {
1685
+ content: "8 of 8";
1686
+ }
1687
+ }
1688
+ @media (min-width: 0) and (max-width: 20em) {
1689
+ .col-16 .col-16-child:before {
1690
+ content: "4 of 4";
1691
+ }
1692
+ }
1693
+ .col-16 .col-16-child .col-16-grandchild {
1694
+ float: left;
1695
+ width: 34.61538%;
1696
+ margin-right: 7.69231%;
1697
+ margin-left: 7.69231%;
1698
+ }
1699
+ @media (min-width: 60.0625em) {
1700
+ .col-16 .col-16-child .col-16-grandchild {
1701
+ width: 46.72131%;
1702
+ margin-right: 1.63934%;
1703
+ margin-left: 1.63934%;
1704
+ }
1705
+ }
1706
+ @media (min-width: 40.0625em) and (max-width: 60em) {
1707
+ .col-16 .col-16-child .col-16-grandchild {
1708
+ width: 45.55556%;
1709
+ margin-right: 2.22222%;
1710
+ margin-left: 2.22222%;
1711
+ }
1712
+ }
1713
+ @media (min-width: 20.0625em) and (max-width: 40em) {
1714
+ .col-16 .col-16-child .col-16-grandchild {
1715
+ width: 43.10345%;
1716
+ margin-right: 3.44828%;
1717
+ margin-left: 3.44828%;
1718
+ }
1719
+ }
1720
+ @media (min-width: 60.0625em) {
1721
+ .col-16 .col-16-child .col-16-grandchild:before {
1722
+ content: "4 of 16";
1723
+ }
1724
+ }
1725
+ @media (min-width: 40.0625em) and (max-width: 60em) {
1726
+ .col-16 .col-16-child .col-16-grandchild:before {
1727
+ content: "4 of 12";
1728
+ }
1729
+ }
1730
+ @media (min-width: 20.0625em) and (max-width: 40em) {
1731
+ .col-16 .col-16-child .col-16-grandchild:before {
1732
+ content: "4 of 8";
1733
+ }
1734
+ }
1735
+ @media (min-width: 0) and (max-width: 20em) {
1736
+ .col-16 .col-16-child .col-16-grandchild:before {
1737
+ content: "4 of 4";
1738
+ }
1739
+ }
1740
+ .col-16 div {
1741
+ height: 100% !important;
1742
+ }
1743
+
1744
+ .col-third {
1745
+ float: left;
1746
+ width: 27.08333%;
1747
+ margin-right: 3.125%;
1748
+ margin-left: 3.125%;
1749
+ }
1750
+ @media (min-width: 60.0625em) {
1751
+ .col-third {
1752
+ width: 31.77083%;
1753
+ margin-right: 0.78125%;
1754
+ margin-left: 0.78125%;
1755
+ }
1756
+ }
1757
+ @media (min-width: 40.0625em) and (max-width: 60em) {
1758
+ .col-third {
1759
+ width: 31.25%;
1760
+ margin-right: 1.04167%;
1761
+ margin-left: 1.04167%;
1762
+ }
1763
+ }
1764
+ @media (min-width: 20.0625em) and (max-width: 40em) {
1765
+ .col-third {
1766
+ width: 30.20833%;
1767
+ margin-right: 1.5625%;
1768
+ margin-left: 1.5625%;
1769
+ }
1770
+ }
1771
+ .col-third:before {
1772
+ content: "1/3";
1773
+ }
1774
+
1775
+ .col-fourth {
1776
+ float: left;
1777
+ width: 18.75%;
1778
+ margin-right: 3.125%;
1779
+ margin-left: 3.125%;
1780
+ }
1781
+ @media (min-width: 60.0625em) {
1782
+ .col-fourth {
1783
+ width: 23.4375%;
1784
+ margin-right: 0.78125%;
1785
+ margin-left: 0.78125%;
1786
+ }
1787
+ }
1788
+ @media (min-width: 40.0625em) and (max-width: 60em) {
1789
+ .col-fourth {
1790
+ width: 22.91667%;
1791
+ margin-right: 1.04167%;
1792
+ margin-left: 1.04167%;
1793
+ }
1794
+ }
1795
+ @media (min-width: 20.0625em) and (max-width: 40em) {
1796
+ .col-fourth {
1797
+ width: 21.875%;
1798
+ margin-right: 1.5625%;
1799
+ margin-left: 1.5625%;
1800
+ }
1801
+ }
1802
+ .col-fourth:before {
1803
+ content: "1/4";
1804
+ }
1805
+
1806
+ .col-fifth {
1807
+ float: left;
1808
+ width: 13.75%;
1809
+ margin-right: 3.125%;
1810
+ margin-left: 3.125%;
1811
+ }
1812
+ @media (min-width: 60.0625em) {
1813
+ .col-fifth {
1814
+ width: 18.4375%;
1815
+ margin-right: 0.78125%;
1816
+ margin-left: 0.78125%;
1817
+ }
1818
+ }
1819
+ @media (min-width: 40.0625em) and (max-width: 60em) {
1820
+ .col-fifth {
1821
+ width: 17.91667%;
1822
+ margin-right: 1.04167%;
1823
+ margin-left: 1.04167%;
1824
+ }
1825
+ }
1826
+ @media (min-width: 20.0625em) and (max-width: 40em) {
1827
+ .col-fifth {
1828
+ width: 16.875%;
1829
+ margin-right: 1.5625%;
1830
+ margin-left: 1.5625%;
1831
+ }
1832
+ }
1833
+ .col-fifth:before {
1834
+ content: "1/5";
1835
+ }
1836
+ .col-fifth .col-fifth-child {
1837
+ float: left;
1838
+ width: -12.12121%;
1839
+ margin-right: 22.72727%;
1840
+ margin-left: 22.72727%;
1841
+ height: 100% !important;
1842
+ }
1843
+ @media (min-width: 60.0625em) {
1844
+ .col-fifth .col-fifth-child {
1845
+ width: 24.85876%;
1846
+ margin-right: 4.23729%;
1847
+ margin-left: 4.23729%;
1848
+ }
1849
+ }
1850
+ @media (min-width: 40.0625em) and (max-width: 60em) {
1851
+ .col-fifth .col-fifth-child {
1852
+ width: 21.70543%;
1853
+ margin-right: 5.81395%;
1854
+ margin-left: 5.81395%;
1855
+ }
1856
+ }
1857
+ @media (min-width: 20.0625em) and (max-width: 40em) {
1858
+ .col-fifth .col-fifth-child {
1859
+ width: 14.81481%;
1860
+ margin-right: 9.25926%;
1861
+ margin-left: 9.25926%;
1862
+ }
1863
+ }
1864
+
1865
+ div[class*="col"] {
1866
+ position: relative;
1867
+ font: 10px Consolas, "Andale Mono WT", "Andale Mono", "Lucida Console", "Lucida Sans Typewriter", "DejaVu Sans Mono", "Bitstream Vera Sans Mono", "Liberation Mono", "Nimbus Mono L", Monaco, "Courier New", Courier, monospace;
1868
+ color: #FFF87B;
1869
+ height: 120px;
1870
+ margin-top: 10px;
1871
+ margin-bottom: 10px;
1872
+ padding: 2em 0;
1873
+ outline: #3e5873 solid 2px;
1874
+ }
1875
+ div[class*="col"]:before {
1876
+ position: absolute;
1877
+ top: 1em;
1878
+ left: 1em;
1879
+ }
1880
+
1881
+ section {
1882
+ background: #0E181E;
1883
+ }
1884
+
1885
+ .container {
1886
+ zoom: 1;
1887
+ float: none;
1888
+ max-width: 80em;
1889
+ margin-right: auto;
1890
+ margin-left: auto;
1891
+ }
1892
+ .container:before, .container:after {
1893
+ content: "\0020";
1894
+ display: block;
1895
+ height: 0;
1896
+ overflow: hidden;
1897
+ }
1898
+ .container:after {
1899
+ clear: both;
1900
+ }