timequake 1.0.0beta

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,54 @@
1
+ $black: #000 !default;
2
+ $gray: #D3D3D3 !default;
3
+ $light-gray: #ECECEC !default;
4
+ $white: #FFF !default;
5
+ $red: #E23838 !default;
6
+ $orange: #F78200 !default;
7
+ $yellow: #FFB900 !default;
8
+ $green: #5EBD3E !default;
9
+ $blue: #009CDF !default;
10
+ $indigo: #31457D !default;
11
+ $violet: #973999 !default;
12
+ $teal: #2D9FA2 !default;
13
+
14
+ $copy-color: #333 !default;
15
+ $primary-color: $red !default;
16
+ $secondary-color: $yellow !default;
17
+ $tertiary-color: $blue !default;
18
+
19
+ .black { color: $black !important; }
20
+ .gray { color: $gray !important; }
21
+ .light-gray { color: $light-gray !important; }
22
+ .grey { color: $gray !important; }
23
+ .light-grey { color: $light-gray !important; }
24
+ .white { color: $white !important; }
25
+ .red { color: $red !important; }
26
+ .orange { color: $orange !important; }
27
+ .yellow { color: $yellow !important; }
28
+ .green { color: $green !important; }
29
+ .blue { color: $blue !important; }
30
+ .indigo { color: $indigo !important; }
31
+ .violet { color: $violet !important; }
32
+ .teal { color: $teal !important; }
33
+ .copy-color { color: $copy-color !important; }
34
+ .primary-color { color: $primary-color !important; }
35
+ .secondary-color { color: $secondary-color !important; }
36
+ .tertiary-color { color: $tertiary-color !important; }
37
+
38
+ .black-bg { background-color: $black !important; }
39
+ .gray-bg { background-color: $gray !important; }
40
+ .light-gray-bg { background-color: $light-gray !important; }
41
+ .grey-bg { background-color: $gray !important; }
42
+ .light-grey-bg { background-color: $light-gray !important; }
43
+ .white-bg { background-color: $white !important; }
44
+ .red-bg { background-color: $red !important; }
45
+ .orange-bg { background-color: $orange !important; }
46
+ .yellow-bg { background-color: $yellow !important; }
47
+ .green-bg { background-color: $green !important; }
48
+ .blue-bg { background-color: $blue !important; }
49
+ .indigo-bg { background-color: $indigo !important; }
50
+ .violet-bg { background-color: $violet !important; }
51
+ .teal-bg { background-color: $teal !important; }
52
+ .primary-color-bg { background-color: $primary-color !important; }
53
+ .secondary-color-bg { background-color: $secondary-color !important; }
54
+ .tertiary-color-bg { background-color: $tertiary-color !important; }
@@ -0,0 +1,50 @@
1
+ $input-border: none !default;
2
+ $input-border-radius: 0 !default;
3
+ $input-bg: $light-gray !default;
4
+ $input-padding: 8px !default;
5
+ $input-margin-bottom: 16px !default;
6
+ $input-height: 38px !default;
7
+ $text-area-min-height: 200px !default;
8
+ $label-margin-bottom: 8px !default;
9
+ $form-font: $copy-font !default;
10
+ $label-font: $form-font !default;
11
+ $input-font-size: $copy-font-size !default;
12
+ $label-font-size: $copy-font-size !default;
13
+ $file-font-size: 14px !default;
14
+
15
+ form {
16
+ input,
17
+ textarea,
18
+ select {
19
+ width: 100%;
20
+ border: $input-border;
21
+ border-radius: $input-border-radius;
22
+ background-color: $input-bg;
23
+ padding: $input-padding;
24
+ margin-bottom: $input-margin-bottom;
25
+ font-family: $form-font;
26
+ font-size: $input-font-size;
27
+ height: $input-height;
28
+ }
29
+
30
+ textarea { min-height: $text-area-min-height; }
31
+
32
+ input[type='file'] {
33
+ border: none;
34
+ background-color: transparent;
35
+ padding: 0;
36
+ height: auto;
37
+ font-size: $file-font-size;
38
+ }
39
+
40
+ input[type='submit'] { height: auto; }
41
+
42
+ label {
43
+ display: inline-block;
44
+ margin-bottom: $label-margin-bottom;
45
+ font-family: $label-font;
46
+ font-size: $label-font-size;
47
+ font-weight: bold;
48
+ text-transform: capitalize;
49
+ }
50
+ }
@@ -0,0 +1,60 @@
1
+ $modal-bg-color: $white !default;
2
+ $modal-max-width: 1200px !default;
3
+ $modal-content-padding: 20px !default;
4
+ $modal-border-radius: 5px !default;
5
+ $modal-border-color: $white !default;
6
+ $modal-border-width: 5px !default;
7
+ $modal-border-style: solid !default;
8
+ $modal-close-size: 30px !default;
9
+ $modal-close-color: $copy-color !default;
10
+ $modal-close-transform: rotate(45deg) !default;
11
+
12
+ .modal {
13
+ position: fixed;
14
+ top: 0;
15
+ bottom: 0;
16
+ left: 0;
17
+ right: 0;
18
+ background: rgba(0,0,0,.3);
19
+ display: flex;
20
+ justify-content: center;
21
+ align-items: center;
22
+ z-index: 0;
23
+ opacity: 0;
24
+ transition: 500ms all;
25
+
26
+ &.modal-tall {
27
+ align-items: flex-start;
28
+ padding-top: 32px;
29
+ overflow: scroll;
30
+ }
31
+
32
+ &.active {
33
+ z-index: 9999;
34
+ opacity: 1;
35
+ }
36
+
37
+ .modal-content {
38
+ position: relative;
39
+ background: $modal-bg-color;
40
+ border-radius: $modal-border-radius;
41
+ padding: $modal-content-padding;
42
+ border-width: $modal-border-width;
43
+ border-style: $modal-border-style;
44
+ border-color: $modal-border-color;
45
+ max-width: $modal-max-width;
46
+
47
+ .modal-close {
48
+ position: absolute;
49
+ top: 0;
50
+ right: 15px;
51
+ color: $modal-close-color;
52
+ font-size: $modal-close-size;
53
+ cursor: pointer;
54
+ transition: all 300ms;
55
+ transform: $modal-close-transform;
56
+
57
+ &:hover { color: lighten($modal-close-color, 5%); }
58
+ }
59
+ }
60
+ }
@@ -0,0 +1,2449 @@
1
+ /*RESET*/
2
+ * {
3
+ margin: 0;
4
+ padding: 0;
5
+ box-sizing: border-box;
6
+ }
7
+
8
+ /* GRID */
9
+ .row {
10
+ width: 100%;
11
+ max-width: 1200px;
12
+ margin-right: auto;
13
+ margin-left: auto;
14
+ display: flex;
15
+ flex-wrap: wrap;
16
+ }
17
+
18
+ .row.expanded { max-width: none; }
19
+
20
+ .row::after {
21
+ content: "";
22
+ clear: both;
23
+ display: table;
24
+ }
25
+
26
+ .column {
27
+ float: left;
28
+ margin-right: 10px;
29
+ margin-left: 10px;
30
+ width: calc(100% - 20px);
31
+ position: relative;
32
+ }
33
+
34
+ .row.no-gutters .column,
35
+ .column.no-gutters {
36
+ margin-right: 0;
37
+ margin-left: 0;
38
+ }
39
+
40
+ .sm-1 { width: calc(8.33% - 20px); }
41
+ .sm-2 { width: calc(16.66% - 20px); }
42
+ .sm-3 { width: calc(25% - 20px); }
43
+ .sm-4 { width: calc(33.33% - 20px); }
44
+ .sm-5 { width: calc(41.66% - 20px); }
45
+ .sm-6 { width: calc(50% - 20px); }
46
+ .sm-7 { width: calc(58.33% - 20px); }
47
+ .sm-8 { width: calc(66.66% - 20px); }
48
+ .sm-9 { width: calc(75% - 20px); }
49
+ .sm-10 { width: calc(83.33% - 20px); }
50
+ .sm-11 { width: calc(91.66% - 20px); }
51
+ .sm-12 { width: calc(100% - 20px); }
52
+
53
+ .sm-1.no-gutters { width: calc(8.33%); }
54
+ .sm-2.no-gutters { width: calc(16.66%); }
55
+ .sm-3.no-gutters { width: calc(25%); }
56
+ .sm-4.no-gutters { width: calc(33.33%); }
57
+ .sm-5.no-gutters { width: calc(41.66%); }
58
+ .sm-6.no-gutters { width: calc(50%); }
59
+ .sm-7.no-gutters { width: calc(58.33%); }
60
+ .sm-8.no-gutters { width: calc(66.66%); }
61
+ .sm-9.no-gutters { width: calc(75%); }
62
+ .sm-10.no-gutters { width: calc(83.33%); }
63
+ .sm-11.no-gutters { width: calc(91.66%); }
64
+ .sm-12.no-gutters { width: calc(100%); }
65
+
66
+ .row.no-gutters .sm-1 { width: calc(8.33%); }
67
+ .row.no-gutters .sm-2 { width: calc(16.66%); }
68
+ .row.no-gutters .sm-3 { width: calc(25%); }
69
+ .row.no-gutters .sm-4 { width: calc(33.33%); }
70
+ .row.no-gutters .sm-5 { width: calc(41.66%); }
71
+ .row.no-gutters .sm-6 { width: calc(50%); }
72
+ .row.no-gutters .sm-7 { width: calc(58.33%); }
73
+ .row.no-gutters .sm-8 { width: calc(66.66%); }
74
+ .row.no-gutters .sm-9 { width: calc(75%); }
75
+ .row.no-gutters .sm-10 { width: calc(83.33%); }
76
+ .row.no-gutters .sm-11 { width: calc(91.66%); }
77
+ .row.no-gutters .sm-12 { width: calc(100%); }
78
+
79
+ .sm-5-col-row .column { width: calc((100% - 20px * 5) / 5); }
80
+ .sm-7-col-row .column { width: calc((100% - 20px * 7) / 7); }
81
+ .sm-8-col-row .column { width: calc((100% - 20px * 8) / 8); }
82
+ .sm-9-col-row .column { width: calc((100% - 20px * 9) / 9); }
83
+ .sm-10-col-row .column { width: calc((100% - 20px * 10) / 10); }
84
+ .sm-11-col-row .column { width: calc((100% - 20px * 11) / 11); }
85
+
86
+ .sm-offset-1 { margin-left: calc(8.33% + 10px); }
87
+ .sm-offset-2 { margin-left: calc(16.66% + 10px); }
88
+ .sm-offset-3 { margin-left: calc(25% + 10px); }
89
+ .sm-offset-4 { margin-left: calc(33.33% + 10px); }
90
+ .sm-offset-5 { margin-left: calc(41.66% + 10px); }
91
+ .sm-offset-6 { margin-left: calc(50% + 10px); }
92
+ .sm-offset-7 { margin-left: calc(58.33% + 10px); }
93
+ .sm-offset-8 { margin-left: calc(66.66% + 10px); }
94
+ .sm-offset-9 { margin-left: calc(75% + 10px); }
95
+ .sm-offset-10 { margin-left: calc(83.33% + 10px); }
96
+ .sm-offset-11 { margin-left: calc(91.66% + 10px); }
97
+ .sm-offset-12 { margin-left: calc(100% + 10px); }
98
+
99
+ .sm-push-1 { left: calc(8.33%); }
100
+ .sm-push-2 { left: calc(16.66%); }
101
+ .sm-push-3 { left: calc(25%); }
102
+ .sm-push-4 { left: calc(33.33%); }
103
+ .sm-push-5 { left: calc(41.66%); }
104
+ .sm-push-6 { left: calc(50%); }
105
+ .sm-push-7 { left: calc(58.33%); }
106
+ .sm-push-8 { left: calc(66.66%); }
107
+ .sm-push-9 { left: calc(75%); }
108
+ .sm-push-10 { left: calc(83.33%); }
109
+ .sm-push-11 { left: calc(91.66%); }
110
+ .sm-push-12 { left: calc(100%); }
111
+
112
+ .sm-pull-1 { left: calc(-8.33%); }
113
+ .sm-pull-2 { left: calc(-16.66%); }
114
+ .sm-pull-3 { left: calc(-25%); }
115
+ .sm-pull-4 { left: calc(-33.33%); }
116
+ .sm-pull-5 { left: calc(-41.66%); }
117
+ .sm-pull-6 { left: calc(-50%); }
118
+ .sm-pull-7 { left: calc(-58.33%); }
119
+ .sm-pull-8 { left: calc(-66.66%); }
120
+ .sm-pull-9 { left: calc(-75%); }
121
+ .sm-pull-10 { left: calc(-83.33%); }
122
+ .sm-pull-11 { left: calc(-91.66%); }
123
+ .sm-pull-12 { left: calc(-100%); }
124
+
125
+ @media (min-width: $medium) {
126
+ .md-1 { width: calc(8.33% - 20px); }
127
+ .md-2 { width: calc(16.66% - 20px); }
128
+ .md-3 { width: calc(25% - 20px); }
129
+ .md-4 { width: calc(33.33% - 20px); }
130
+ .md-5 { width: calc(41.66% - 20px); }
131
+ .md-6 { width: calc(50% - 20px); }
132
+ .md-7 { width: calc(58.33% - 20px); }
133
+ .md-8 { width: calc(66.66% - 20px); }
134
+ .md-9 { width: calc(75% - 20px); }
135
+ .md-10 { width: calc(83.33% - 20px); }
136
+ .md-11 { width: calc(91.66% - 20px); }
137
+ .md-12 { width: calc(100% - 20px); }
138
+
139
+ .md-1.no-gutters { width: calc(8.33%); }
140
+ .md-2.no-gutters { width: calc(16.66%); }
141
+ .md-3.no-gutters { width: calc(25%); }
142
+ .md-4.no-gutters { width: calc(33.33%); }
143
+ .md-5.no-gutters { width: calc(41.66%); }
144
+ .md-6.no-gutters { width: calc(50%); }
145
+ .md-7.no-gutters { width: calc(58.33%); }
146
+ .md-8.no-gutters { width: calc(66.66%); }
147
+ .md-9.no-gutters { width: calc(75%); }
148
+ .md-10.no-gutters { width: calc(83.33%); }
149
+ .md-11.no-gutters { width: calc(91.66%); }
150
+ .md-12.no-gutters { width: calc(100%); }
151
+
152
+ .row.no-gutters .md-1 { width: calc(8.33%); }
153
+ .row.no-gutters .md-2 { width: calc(16.66%); }
154
+ .row.no-gutters .md-3 { width: calc(25%); }
155
+ .row.no-gutters .md-4 { width: calc(33.33%); }
156
+ .row.no-gutters .md-5 { width: calc(41.66%); }
157
+ .row.no-gutters .md-6 { width: calc(50%); }
158
+ .row.no-gutters .md-7 { width: calc(58.33%); }
159
+ .row.no-gutters .md-8 { width: calc(66.66%); }
160
+ .row.no-gutters .md-9 { width: calc(75%); }
161
+ .row.no-gutters .md-10 { width: calc(83.33%); }
162
+ .row.no-gutters .md-11 { width: calc(91.66%); }
163
+ .row.no-gutters .md-12 { width: calc(100%); }
164
+
165
+ .md-5-col-row .column { width: calc((100% - 20px * 5) / 5); }
166
+ .md-7-col-row .column { width: calc((100% - 20px * 7) / 7); }
167
+ .md-8-col-row .column { width: calc((100% - 20px * 8) / 8); }
168
+ .md-9-col-row .column { width: calc((100% - 20px * 9) / 9); }
169
+ .md-10-col-row .column { width: calc((100% - 20px * 10) / 10); }
170
+ .md-11-col-row .column { width: calc((100% - 20px * 11) / 11); }
171
+
172
+ .md-offset-1 { margin-left: calc(8.33% + 10px); }
173
+ .md-offset-2 { margin-left: calc(16.66% + 10px); }
174
+ .md-offset-3 { margin-left: calc(25% + 10px); }
175
+ .md-offset-4 { margin-left: calc(33.33% + 10px); }
176
+ .md-offset-5 { margin-left: calc(41.66% + 10px); }
177
+ .md-offset-6 { margin-left: calc(50% + 10px); }
178
+ .md-offset-7 { margin-left: calc(58.33% + 10px); }
179
+ .md-offset-8 { margin-left: calc(66.66% + 10px); }
180
+ .md-offset-9 { margin-left: calc(75% + 10px); }
181
+ .md-offset-10 { margin-left: calc(83.33% + 10px); }
182
+ .md-offset-11 { margin-left: calc(91.66% + 10px); }
183
+ .md-offset-12 { margin-left: calc(100% + 10px); }
184
+
185
+ .md-push-1 { left: calc(8.33%); }
186
+ .md-push-2 { left: calc(16.66%); }
187
+ .md-push-3 { left: calc(25%); }
188
+ .md-push-4 { left: calc(33.33%); }
189
+ .md-push-5 { left: calc(41.66%); }
190
+ .md-push-6 { left: calc(50%); }
191
+ .md-push-7 { left: calc(58.33%); }
192
+ .md-push-8 { left: calc(66.66%); }
193
+ .md-push-9 { left: calc(75%); }
194
+ .md-push-10 { left: calc(83.33%); }
195
+ .md-push-11 { left: calc(91.66%); }
196
+ .md-push-12 { left: calc(100%); }
197
+
198
+ .md-pull-1 { left: calc(-8.33%); }
199
+ .md-pull-2 { left: calc(-16.66%); }
200
+ .md-pull-3 { left: calc(-25%); }
201
+ .md-pull-4 { left: calc(-33.33%); }
202
+ .md-pull-5 { left: calc(-41.66%); }
203
+ .md-pull-6 { left: calc(-50%); }
204
+ .md-pull-7 { left: calc(-58.33%); }
205
+ .md-pull-8 { left: calc(-66.66%); }
206
+ .md-pull-9 { left: calc(-75%); }
207
+ .md-pull-10 { left: calc(-83.33%); }
208
+ .md-pull-11 { left: calc(-91.66%); }
209
+ .md-pull-12 { left: calc(-100%); }
210
+ }
211
+
212
+ @media (min-width: $large) {
213
+ .lg-1 { width: calc(8.33% - 20px); }
214
+ .lg-2 { width: calc(16.66% - 20px); }
215
+ .lg-3 { width: calc(25% - 20px); }
216
+ .lg-4 { width: calc(33.33% - 20px); }
217
+ .lg-5 { width: calc(41.66% - 20px); }
218
+ .lg-6 { width: calc(50% - 20px); }
219
+ .lg-7 { width: calc(58.33% - 20px); }
220
+ .lg-8 { width: calc(66.66% - 20px); }
221
+ .lg-9 { width: calc(75% - 20px); }
222
+ .lg-10 { width: calc(83.33% - 20px); }
223
+ .lg-11 { width: calc(91.66% - 20px); }
224
+ .lg-12 { width: calc(100% - 20px); }
225
+
226
+ .lg-1.no-gutters { width: calc(8.33%); }
227
+ .lg-2.no-gutters { width: calc(16.66%); }
228
+ .lg-3.no-gutters { width: calc(25%); }
229
+ .lg-4.no-gutters { width: calc(33.33%); }
230
+ .lg-5.no-gutters { width: calc(41.66%); }
231
+ .lg-6.no-gutters { width: calc(50%); }
232
+ .lg-7.no-gutters { width: calc(58.33%); }
233
+ .lg-8.no-gutters { width: calc(66.66%); }
234
+ .lg-9.no-gutters { width: calc(75%); }
235
+ .lg-10.no-gutters { width: calc(83.33%); }
236
+ .lg-11.no-gutters { width: calc(91.66%); }
237
+ .lg-12.no-gutters { width: calc(100%); }
238
+
239
+ .row.no-gutters .lg-1 { width: calc(8.33%); }
240
+ .row.no-gutters .lg-2 { width: calc(16.66%); }
241
+ .row.no-gutters .lg-3 { width: calc(25%); }
242
+ .row.no-gutters .lg-4 { width: calc(33.33%); }
243
+ .row.no-gutters .lg-5 { width: calc(41.66%); }
244
+ .row.no-gutters .lg-6 { width: calc(50%); }
245
+ .row.no-gutters .lg-7 { width: calc(58.33%); }
246
+ .row.no-gutters .lg-8 { width: calc(66.66%); }
247
+ .row.no-gutters .lg-9 { width: calc(75%); }
248
+ .row.no-gutters .lg-10 { width: calc(83.33%); }
249
+ .row.no-gutters .lg-11 { width: calc(91.66%); }
250
+ .row.no-gutters .lg-12 { width: calc(100%); }
251
+
252
+ .lg-5-col-row .column { width: calc((100% - 20px * 5) / 5);}
253
+ .lg-7-col-row .column { width: calc((100% - 20px * 7) / 7); }
254
+ .lg-8-col-row .column { width: calc((100% - 20px * 8) / 8); }
255
+ .lg-9-col-row .column { width: calc((100% - 20px * 9) / 9); }
256
+ .lg-10-col-row .column { width: calc((100% - 20px * 10) / 10); }
257
+ .lg-11-col-row .column { width: calc((100% - 20px * 11) / 11); }
258
+
259
+ .lg-offset-1 { margin-left: calc(8.33% + 10px); }
260
+ .lg-offset-2 { margin-left: calc(16.66% + 10px); }
261
+ .lg-offset-3 { margin-left: calc(25% + 10px); }
262
+ .lg-offset-4 { margin-left: calc(33.33% + 10px); }
263
+ .lg-offset-5 { margin-left: calc(41.66% + 10px); }
264
+ .lg-offset-6 { margin-left: calc(50% + 10px); }
265
+ .lg-offset-7 { margin-left: calc(58.33% + 10px); }
266
+ .lg-offset-8 { margin-left: calc(66.66% + 10px); }
267
+ .lg-offset-9 { margin-left: calc(75% + 10px); }
268
+ .lg-offset-10 { margin-left: calc(83.33% + 10px); }
269
+ .lg-offset-11 { margin-left: calc(91.66% + 10px); }
270
+ .lg-offset-12 { margin-left: calc(100% + 10px); }
271
+
272
+ .lg-push-1 { left: calc(8.33%); }
273
+ .lg-push-2 { left: calc(16.66%); }
274
+ .lg-push-3 { left: calc(25%); }
275
+ .lg-push-4 { left: calc(33.33%); }
276
+ .lg-push-5 { left: calc(41.66%); }
277
+ .lg-push-6 { left: calc(50%); }
278
+ .lg-push-7 { left: calc(58.33%); }
279
+ .lg-push-8 { left: calc(66.66%); }
280
+ .lg-push-9 { left: calc(75%); }
281
+ .lg-push-10 { left: calc(83.33%); }
282
+ .lg-push-11 { left: calc(91.66%); }
283
+ .lg-push-12 { left: calc(100%); }
284
+
285
+ .lg-pull-1 { left: calc(-8.33%); }
286
+ .lg-pull-2 { left: calc(-16.66%); }
287
+ .lg-pull-3 { left: calc(-25%); }
288
+ .lg-pull-4 { left: calc(-33.33%); }
289
+ .lg-pull-5 { left: calc(-41.66%); }
290
+ .lg-pull-6 { left: calc(-50%); }
291
+ .lg-pull-7 { left: calc(-58.33%); }
292
+ .lg-pull-8 { left: calc(-66.66%); }
293
+ .lg-pull-9 { left: calc(-75%); }
294
+ .lg-pull-10 { left: calc(-83.33%); }
295
+ .lg-pull-11 { left: calc(-91.66%); }
296
+ .lg-pull-12 { left: calc(-100%); }
297
+ }
298
+
299
+ @media (min-width: $xlarge) {
300
+ .xlg-1 { width: calc(8.33% - 20px); }
301
+ .xlg-2 { width: calc(16.66% - 20px); }
302
+ .xlg-3 { width: calc(25% - 20px); }
303
+ .xlg-4 { width: calc(33.33% - 20px); }
304
+ .xlg-5 { width: calc(41.66% - 20px); }
305
+ .xlg-6 { width: calc(50% - 20px); }
306
+ .xlg-7 { width: calc(58.33% - 20px); }
307
+ .xlg-8 { width: calc(66.66% - 20px); }
308
+ .xlg-9 { width: calc(75% - 20px); }
309
+ .xlg-10 { width: calc(83.33% - 20px); }
310
+ .xlg-11 { width: calc(91.66% - 20px); }
311
+ .xlg-12 { width: calc(100% - 20px); }
312
+
313
+ .xl-1.no-gutters { width: calc(8.33%); }
314
+ .xl-2.no-gutters { width: calc(16.66%); }
315
+ .xl-3.no-gutters { width: calc(25%); }
316
+ .xl-4.no-gutters { width: calc(33.33%); }
317
+ .xl-5.no-gutters { width: calc(41.66%); }
318
+ .xl-6.no-gutters { width: calc(50%); }
319
+ .xl-7.no-gutters { width: calc(58.33%); }
320
+ .xl-8.no-gutters { width: calc(66.66%); }
321
+ .xl-9.no-gutters { width: calc(75%); }
322
+ .xl-10.no-gutters { width: calc(83.33%); }
323
+ .xl-11.no-gutters { width: calc(91.66%); }
324
+ .xl-12.no-gutters { width: calc(100%); }
325
+
326
+ .row.no-gutters .xlg-1 { width: calc(8.33%); }
327
+ .row.no-gutters .xlg-2 { width: calc(16.66%); }
328
+ .row.no-gutters .xlg-3 { width: calc(25%); }
329
+ .row.no-gutters .xlg-4 { width: calc(33.33%); }
330
+ .row.no-gutters .xlg-5 { width: calc(41.66%); }
331
+ .row.no-gutters .xlg-6 { width: calc(50%); }
332
+ .row.no-gutters .xlg-7 { width: calc(58.33%); }
333
+ .row.no-gutters .xlg-8 { width: calc(66.66%); }
334
+ .row.no-gutters .xlg-9 { width: calc(75%); }
335
+ .row.no-gutters .xlg-10 { width: calc(83.33%); }
336
+ .row.no-gutters .xlg-11 { width: calc(91.66%); }
337
+ .row.no-gutters .xlg-12 { width: calc(100%); }
338
+
339
+ .xlg-5-col-row .column { width: calc((100% - 20px * 5) / 5);}
340
+ .xlg-7-col-row .column { width: calc((100% - 20px * 7) / 7); }
341
+ .xlg-8-col-row .column { width: calc((100% - 20px * 8) / 8); }
342
+ .xlg-9-col-row .column { width: calc((100% - 20px * 9) / 9); }
343
+ .xlg-10-col-row .column { width: calc((100% - 20px * 10) / 10); }
344
+ .xlg-11-col-row .column { width: calc((100% - 20px * 11) / 11); }
345
+
346
+ .xlg-offset-1 { margin-left: calc(8.33% + 10px); }
347
+ .xlg-offset-2 { margin-left: calc(16.66% + 10px); }
348
+ .xlg-offset-3 { margin-left: calc(25% + 10px); }
349
+ .xlg-offset-4 { margin-left: calc(33.33% + 10px); }
350
+ .xlg-offset-5 { margin-left: calc(41.66% + 10px); }
351
+ .xlg-offset-6 { margin-left: calc(50% + 10px); }
352
+ .xlg-offset-7 { margin-left: calc(58.33% + 10px); }
353
+ .xlg-offset-8 { margin-left: calc(66.66% + 10px); }
354
+ .xlg-offset-9 { margin-left: calc(75% + 10px); }
355
+ .xlg-offset-10 { margin-left: calc(83.33% + 10px); }
356
+ .xlg-offset-11 { margin-left: calc(91.66% + 10px); }
357
+ .xlg-offset-12 { margin-left: calc(100% + 10px); }
358
+
359
+ .xlg-push-1 { left: calc(8.33%); }
360
+ .xlg-push-2 { left: calc(16.66%); }
361
+ .xlg-push-3 { left: calc(25%); }
362
+ .xlg-push-4 { left: calc(33.33%); }
363
+ .xlg-push-5 { left: calc(41.66%); }
364
+ .xlg-push-6 { left: calc(50%); }
365
+ .xlg-push-7 { left: calc(58.33%); }
366
+ .xlg-push-8 { left: calc(66.66%); }
367
+ .xlg-push-9 { left: calc(75%); }
368
+ .xlg-push-10 { left: calc(83.33%); }
369
+ .xlg-push-11 { left: calc(91.66%); }
370
+ .xlg-push-12 { left: calc(100%); }
371
+
372
+ .xlg-pull-1 { left: calc(-8.33%); }
373
+ .xlg-pull-2 { left: calc(-16.66%); }
374
+ .xlg-pull-3 { left: calc(-25%); }
375
+ .xlg-pull-4 { left: calc(-33.33%); }
376
+ .xlg-pull-5 { left: calc(-41.66%); }
377
+ .xlg-pull-6 { left: calc(-50%); }
378
+ .xlg-pull-7 { left: calc(-58.33%); }
379
+ .xlg-pull-8 { left: calc(-66.66%); }
380
+ .xlg-pull-9 { left: calc(-75%); }
381
+ .xlg-pull-10 { left: calc(-83.33%); }
382
+ .xlg-pull-11 { left: calc(-91.66%); }
383
+ .xlg-pull-12 { left: calc(-100%); }
384
+ }
385
+
386
+ @media (min-width: $xxlarge) {
387
+ .xxlg-1 { width: calc(8.33% - 20px); }
388
+ .xxlg-2 { width: calc(16.66% - 20px); }
389
+ .xxlg-3 { width: calc(25% - 20px); }
390
+ .xxlg-4 { width: calc(33.33% - 20px); }
391
+ .xxlg-5 { width: calc(41.66% - 20px); }
392
+ .xxlg-6 { width: calc(50% - 20px); }
393
+ .xxlg-7 { width: calc(58.33% - 20px); }
394
+ .xxlg-8 { width: calc(66.66% - 20px); }
395
+ .xxlg-9 { width: calc(75% - 20px); }
396
+ .xxlg-10 { width: calc(83.33% - 20px); }
397
+ .xxlg-11 { width: calc(91.66% - 20px); }
398
+ .xxlg-12 { width: calc(100% - 20px); }
399
+
400
+ .xxlg-1.no-gutters { width: calc(8.33%); }
401
+ .xxlg-2.no-gutters { width: calc(16.66%); }
402
+ .xxlg-3.no-gutters { width: calc(25%); }
403
+ .xxlg-4.no-gutters { width: calc(33.33%); }
404
+ .xxlg-5.no-gutters { width: calc(41.66%); }
405
+ .xxlg-6.no-gutters { width: calc(50%); }
406
+ .xxlg-7.no-gutters { width: calc(58.33%); }
407
+ .xxlg-8.no-gutters { width: calc(66.66%); }
408
+ .xxlg-9.no-gutters { width: calc(75%); }
409
+ .xxlg-10.no-gutters { width: calc(83.33%); }
410
+ .xxlg-11.no-gutters { width: calc(91.66%); }
411
+ .xxlg-12.no-gutters { width: calc(100%); }
412
+
413
+ .row.no-gutters .xxlg-1 { width: calc(8.33%); }
414
+ .row.no-gutters .xxlg-2 { width: calc(16.66%); }
415
+ .row.no-gutters .xxlg-3 { width: calc(25%); }
416
+ .row.no-gutters .xxlg-4 { width: calc(33.33%); }
417
+ .row.no-gutters .xxlg-5 { width: calc(41.66%); }
418
+ .row.no-gutters .xxlg-6 { width: calc(50%); }
419
+ .row.no-gutters .xxlg-7 { width: calc(58.33%); }
420
+ .row.no-gutters .xxlg-8 { width: calc(66.66%); }
421
+ .row.no-gutters .xxlg-9 { width: calc(75%); }
422
+ .row.no-gutters .xxlg-10 { width: calc(83.33%); }
423
+ .row.no-gutters .xxlg-11 { width: calc(91.66%); }
424
+ .row.no-gutters .xxlg-12 { width: calc(100%); }
425
+
426
+ .xxlg-5-col-row .column { width: calc((100% - 20px * 5) / 5);}
427
+ .xxlg-7-col-row .column { width: calc((100% - 20px * 7) / 7); }
428
+ .xxlg-8-col-row .column { width: calc((100% - 20px * 8) / 8); }
429
+ .xxlg-9-col-row .column { width: calc((100% - 20px * 9) / 9); }
430
+ .xxlg-10-col-row .column { width: calc((100% - 20px * 10) / 10); }
431
+ .xxlg-11-col-row .column { width: calc((100% - 20px * 11) / 11); }
432
+
433
+ .xxlg-offset-1 { margin-left: calc(8.33% + 10px); }
434
+ .xxlg-offset-2 { margin-left: calc(16.66% + 10px); }
435
+ .xxlg-offset-3 { margin-left: calc(25% + 10px); }
436
+ .xxlg-offset-4 { margin-left: calc(33.33% + 10px); }
437
+ .xxlg-offset-5 { margin-left: calc(41.66% + 10px); }
438
+ .xxlg-offset-6 { margin-left: calc(50% + 10px); }
439
+ .xxlg-offset-7 { margin-left: calc(58.33% + 10px); }
440
+ .xxlg-offset-8 { margin-left: calc(66.66% + 10px); }
441
+ .xxlg-offset-9 { margin-left: calc(75% + 10px); }
442
+ .xxlg-offset-10 { margin-left: calc(83.33% + 10px); }
443
+ .xxlg-offset-11 { margin-left: calc(91.66% + 10px); }
444
+ .xxlg-offset-12 { margin-left: calc(100% + 10px); }
445
+
446
+ .xxlg-push-1 { left: calc(8.33%); }
447
+ .xxlg-push-2 { left: calc(16.66%); }
448
+ .xxlg-push-3 { left: calc(25%); }
449
+ .xxlg-push-4 { left: calc(33.33%); }
450
+ .xxlg-push-5 { left: calc(41.66%); }
451
+ .xxlg-push-6 { left: calc(50%); }
452
+ .xxlg-push-7 { left: calc(58.33%); }
453
+ .xxlg-push-8 { left: calc(66.66%); }
454
+ .xxlg-push-9 { left: calc(75%); }
455
+ .xxlg-push-10 { left: calc(83.33%); }
456
+ .xxlg-push-11 { left: calc(91.66%); }
457
+ .xxlg-push-12 { left: calc(100%); }
458
+
459
+ .xxlg-pull-1 { left: calc(-8.33%); }
460
+ .xxlg-pull-2 { left: calc(-16.66%); }
461
+ .xxlg-pull-3 { left: calc(-25%); }
462
+ .xxlg-pull-4 { left: calc(-33.33%); }
463
+ .xxlg-pull-5 { left: calc(-41.66%); }
464
+ .xxlg-pull-6 { left: calc(-50%); }
465
+ .xxlg-pull-7 { left: calc(-58.33%); }
466
+ .xxlg-pull-8 { left: calc(-66.66%); }
467
+ .xxlg-pull-9 { left: calc(-75%); }
468
+ .xxlg-pull-10 { left: calc(-83.33%); }
469
+ .xxlg-pull-11 { left: calc(-91.66%); }
470
+ .xxlg-pull-12 { left: calc(-100%); }
471
+ }
472
+
473
+ /* TEXT HELPERS */
474
+ .bold { font-weight: bold !important; }
475
+ .italic { font-style: italic !important; }
476
+ .uppercase { text-transform: uppercase !important; }
477
+ .lowercase { text-transform: lowercase !important; }
478
+ .capitalize { text-transform: capitalize !important; }
479
+ .nowrap { white-space: nowrap !important; }
480
+ .underline { text-decoration: underline !important; }
481
+ .line-through { text-decoration: line-through !important; }
482
+
483
+ .text-center { text-align: center !important; }
484
+ .text-right { text-align: right !important; }
485
+ .text-left { text-align: left !important; }
486
+ .text-justify { text-align: justify !important; }
487
+
488
+ .fz-12 { font-size: 12px !important; }
489
+ .fz-14 { font-size: 14px !important; }
490
+ .fz-16 { font-size: 16px !important; }
491
+ .fz-18 { font-size: 18px !important; }
492
+ .fz-20 { font-size: 20px !important; }
493
+ .fz-22 { font-size: 22px !important; }
494
+ .fz-24 { font-size: 24px !important; }
495
+ .fz-26 { font-size: 26px !important; }
496
+ .fz-28 { font-size: 28px !important; }
497
+ .fz-30 { font-size: 30px !important; }
498
+ .fz-32 { font-size: 32px !important; }
499
+ .fz-34 { font-size: 34px !important; }
500
+ .fz-36 { font-size: 36px !important; }
501
+ .fz-38 { font-size: 38px !important; }
502
+ .fz-40 { font-size: 40px !important; }
503
+ .fz-44 { font-size: 44px !important; }
504
+ .fz-48 { font-size: 48px !important; }
505
+ .fz-52 { font-size: 52px !important; }
506
+ .fz-56 { font-size: 56px !important; }
507
+ .fz-60 { font-size: 60px !important; }
508
+ .fz-64 { font-size: 64px !important; }
509
+ .fz-68 { font-size: 68px !important; }
510
+ .fz-72 { font-size: 72px !important; }
511
+ .fz-96 { font-size: 96px !important; }
512
+
513
+ .fz-18-26 { font-size: 18px !important; }
514
+ .fz-20-28 { font-size: 20px !important; }
515
+ .fz-22-30 { font-size: 22px !important; }
516
+ .fz-24-32 { font-size: 24px !important; }
517
+ .fz-26-34 { font-size: 26px !important; }
518
+ .fz-28-36 { font-size: 28px !important; }
519
+ .fz-30-38 { font-size: 30px !important; }
520
+ .fz-32-40 { font-size: 32px !important; }
521
+ .fz-34-42 { font-size: 34px !important; }
522
+ .fz-36-44 { font-size: 36px !important; }
523
+ .fz-38-46 { font-size: 38px !important; }
524
+ .fz-40-48 { font-size: 40px !important; }
525
+ .fz-44-52 { font-size: 44px !important; }
526
+ .fz-48-56 { font-size: 48px !important; }
527
+
528
+ .fw-100 { font-weight: 100 !important; }
529
+ .fw-200 { font-weight: 200 !important; }
530
+ .fw-300 { font-weight: 300 !important; }
531
+ .fw-400 { font-weight: 400 !important; }
532
+ .fw-500 { font-weight: 500 !important; }
533
+ .fw-600 { font-weight: 600 !important; }
534
+ .fw-700 { font-weight: 700 !important; }
535
+ .fw-800 { font-weight: 800 !important; }
536
+ .fw-900 { font-weight: 900 !important; }
537
+
538
+ @media (min-width: $medium) {
539
+ .md-text-center { text-align: center !important; }
540
+ .md-text-right { text-align: right !important; }
541
+ .md-text-left { text-align: left !important; }
542
+ .md-text-justify { text-align: justify !important; }
543
+ }
544
+
545
+ @media (min-width: $large) {
546
+ .lg-text-center { text-align: center !important; }
547
+ .lg-text-right { text-align: right !important; }
548
+ .lg-text-left { text-align: left !important; }
549
+ .lg-text-justify { text-align: justify !important; }
550
+
551
+ .fz-18-26 { font-size: 26px !important; }
552
+ .fz-20-28 { font-size: 28px !important; }
553
+ .fz-22-30 { font-size: 30px !important; }
554
+ .fz-24-32 { font-size: 32px !important; }
555
+ .fz-26-34 { font-size: 34px !important; }
556
+ .fz-28-36 { font-size: 36px !important; }
557
+ .fz-30-38 { font-size: 38px !important; }
558
+ .fz-32-40 { font-size: 40px !important; }
559
+ .fz-34-42 { font-size: 42px !important; }
560
+ .fz-36-44 { font-size: 44px !important; }
561
+ .fz-38-46 { font-size: 46px !important; }
562
+ .fz-40-48 { font-size: 48px !important; }
563
+ .fz-44-52 { font-size: 52px !important; }
564
+ .fz-48-56 { font-size: 56px !important; }
565
+ }
566
+
567
+ @media (min-width: $xlarge) {
568
+ .xlg-text-center { text-align: center !important; }
569
+ .xlg-text-right { text-align: right !important; }
570
+ .xlg-text-left { text-align: left !important; }
571
+ .xlg-text-justify { text-align: justify !important; }
572
+ }
573
+
574
+ @media (min-width: $xxlarge) {
575
+ .xxlg-text-center { text-align: center !important; }
576
+ .xxlg-text-right { text-align: right !important; }
577
+ .xxlg-text-left { text-align: left !important; }
578
+ .xxlg-text-justify { text-align: justify !important; }
579
+ }
580
+
581
+ /* VISIBILITY HELPERS */
582
+ .hide { display: none !important; }
583
+ .md-show { display: none !important; }
584
+ .md-show-inline { display: none !important; }
585
+ .lg-show { display: none !important; }
586
+ .lg-show-inline { display: none !important; }
587
+ .xlg-show { display: none !important; }
588
+ .xlg-show-inline { display: none !important; }
589
+ .xxlg-show { display: none !important; }
590
+ .xxlg-show-inline { display: none !important; }
591
+ .invisible { visibility: hidden !important; }
592
+
593
+ @media (min-width: $medium) {
594
+ .md-hide { display: none !important; }
595
+ .md-show { display: block !important; }
596
+ .md-show-inline { display: inline-block !important; }
597
+ .md-invisible { visibility: hidden !important; }
598
+ }
599
+
600
+ @media (min-width: $large) {
601
+ .lg-hide { display: none !important; }
602
+ .lg-show { display: block !important; }
603
+ .lg-show-inline { display: inline-block !important; }
604
+ .lg-invisible { visibility: hidden !important; }
605
+ }
606
+
607
+ @media (min-width: $xlarge) {
608
+ .xlg-hide { display: none !important; }
609
+ .xlg-show { display: block !important; }
610
+ .xlg-show-inline { display: inline-block !important; }
611
+ .xlg-invisible { visibility: hidden !important; }
612
+ }
613
+
614
+ @media (min-width: $xxlarge) {
615
+ .xxlg-hide { display: none !important; }
616
+ .xxlg-show { display: block !important; }
617
+ .xxlg-show-inline { display: inline-block !important; }
618
+ .xxlg-invisible { visibility: hidden !important; }
619
+ }
620
+
621
+ /* DISPLAY HELPERS */
622
+ .inline-block { display: inline-block !important; }
623
+ .block { display: block !important; }
624
+ .flex { display: flex !important; }
625
+
626
+ @media (min-width: $medium) {
627
+ .md-inline-block { display: inline-block !important; }
628
+ .md-block { display: block !important; }
629
+ .md-flex { display: flex !important; }
630
+ }
631
+
632
+ @media (min-width: $large) {
633
+ .lg-inline-block { display: inline-block !important; }
634
+ .lg-block { display: block !important; }
635
+ .lg-flex { display: flex !important; }
636
+ }
637
+
638
+ @media (min-width: $xlarge) {
639
+ .xlg-inline-block { display: inline-block !important; }
640
+ .xlg-block { display: block !important; }
641
+ .xlg-flex { display: flex !important; }
642
+ }
643
+
644
+ @media (min-width: $xxlarge) {
645
+ .xxlg-inline-block { display: inline-block !important; }
646
+ .xxlg-block { display: block !important; }
647
+ .xxlg-flex { display: flex !important; }
648
+ }
649
+
650
+ /* FLEX HELPERS */
651
+ .no-flex-wrap { flex-wrap: nowrap !important; }
652
+ .flex-wrap { flex-wrap: wrap !important; }
653
+
654
+ .jc-start { justify-content: flex-start !important; }
655
+ .jc-end { justify-content: flex-end !important; }
656
+ .jc-center { justify-content: center !important; }
657
+ .jc-space-around { justify-content: space-around !important; }
658
+ .jc-space-between { justify-content: space-between !important; }
659
+ .jc-space-evenly { justify-content: space-evenly !important; }
660
+
661
+ .ai-start { align-items: flex-start !important; }
662
+ .ai-end { align-items: flex-end !important; }
663
+ .ai-center { align-items: center !important; }
664
+ .ai-stretch { align-items: stretch !important; }
665
+ .ai-baseline { align-items: baseline !important; }
666
+
667
+ .as-start { align-self: flex-start !important; }
668
+ .as-end { align-self: flex-end !important; }
669
+ .as-center { align-self: center !important; }
670
+ .as-stretch { align-self: stretch !important; }
671
+
672
+ @media (min-width: $medium) {
673
+ .md-no-flex-wrap { flex-wrap: nowrap !important; }
674
+ .md-flex-wrap { flex-wrap: wrap !important; }
675
+
676
+ .md-jc-start { justify-content: flex-start !important; }
677
+ .md-jc-end { justify-content: flex-end !important; }
678
+ .md-jc-center { justify-content: center !important; }
679
+ .md-jc-space-around { justify-content: space-around !important; }
680
+ .md-jc-space-between { justify-content: space-between !important; }
681
+ .md-jc-space-evenly { justify-content: space-evenly !important; }
682
+
683
+ .md-ai-start { align-items: flex-start !important; }
684
+ .md-ai-end { align-items: flex-end !important; }
685
+ .md-ai-center { align-items: center !important; }
686
+ .md-ai-stretch { align-items: stretch !important; }
687
+ .md-ai-baseline { align-items: baseline !important; }
688
+
689
+ .md-as-start { align-self: flex-start !important; }
690
+ .md-as-end { align-self: flex-end !important; }
691
+ .md-as-center { align-self: center !important; }
692
+ .md-as-stretch { align-self: stretch !important; }
693
+ }
694
+
695
+ @media (min-width: $large) {
696
+ .lg-no-flex-wrap { flex-wrap: nowrap !important; }
697
+ .lg-flex-wrap { flex-wrap: wrap !important; }
698
+
699
+ .lg-jc-start { justify-content: flex-start !important; }
700
+ .lg-jc-end { justify-content: flex-end !important; }
701
+ .lg-jc-center { justify-content: center !important; }
702
+ .lg-jc-space-around { justify-content: space-around !important; }
703
+ .lg-jc-space-between { justify-content: space-between !important; }
704
+ .lg-jc-space-evenly { justify-content: space-evenly !important; }
705
+
706
+ .lg-ai-start { align-items: flex-start !important; }
707
+ .lg-ai-end { align-items: flex-end !important; }
708
+ .lg-ai-center { align-items: center !important; }
709
+ .lg-ai-stretch { align-items: stretch !important; }
710
+ .lg-ai-baseline { align-items: baseline !important; }
711
+
712
+ .lg-as-start { align-self: flex-start !important; }
713
+ .lg-as-end { align-self: flex-end !important; }
714
+ .lg-as-center { align-self: center !important; }
715
+ .lg-as-stretch { align-self: stretch !important; }
716
+ }
717
+
718
+ @media (min-width: $xlarge) {
719
+ .xlg-no-flex-wrap { flex-wrap: nowrap !important; }
720
+ .xlg-flex-wrap { flex-wrap: wrap !important; }
721
+
722
+ .xlg-jc-start { justify-content: flex-start !important; }
723
+ .xlg-jc-end { justify-content: flex-end !important; }
724
+ .xlg-jc-center { justify-content: center !important; }
725
+ .xlg-jc-space-around { justify-content: space-around !important; }
726
+ .xlg-jc-space-between { justify-content: space-between !important; }
727
+ .xlg-jc-space-evenly { justify-content: space-evenly !important; }
728
+
729
+ .xlg-ai-start { align-items: flex-start !important; }
730
+ .xlg-ai-end { align-items: flex-end !important; }
731
+ .xlg-ai-center { align-items: center !important; }
732
+ .xlg-ai-stretch { align-items: stretch !important; }
733
+ .xlg-ai-baseline { align-items: baseline !important; }
734
+
735
+ .xlg-as-start { align-self: flex-start !important; }
736
+ .xlg-as-end { align-self: flex-end !important; }
737
+ .xlg-as-center { align-self: center !important; }
738
+ .xlg-as-stretch { align-self: stretch !important; }
739
+ }
740
+
741
+ @media (min-width: $xxlarge) {
742
+ .xxlg-no-flex-wrap { flex-wrap: nowrap !important; }
743
+ .xxlg-flex-wrap { flex-wrap: wrap !important; }
744
+
745
+ .xxlg-jc-start { justify-content: flex-start !important; }
746
+ .xxlg-jc-end { justify-content: flex-end !important; }
747
+ .xxlg-jc-center { justify-content: center !important; }
748
+ .xxlg-jc-space-around { justify-content: space-around !important; }
749
+ .xxlg-jc-space-between { justify-content: space-between !important; }
750
+ .xxlg-jc-space-evenly { justify-content: space-evenly !important; }
751
+
752
+ .xxlg-ai-start { align-items: flex-start !important; }
753
+ .xxlg-ai-end { align-items: flex-end !important; }
754
+ .xxlg-ai-center { align-items: center !important; }
755
+ .xxlg-ai-stretch { align-items: stretch !important; }
756
+ .xxlg-ai-baseline { align-items: baseline !important; }
757
+
758
+ .xxlg-as-start { align-self: flex-start !important; }
759
+ .xxlg-as-end { align-self: flex-end !important; }
760
+ .xxlg-as-center { align-self: center !important; }
761
+ .xxlg-as-stretch { align-self: stretch !important; }
762
+ }
763
+
764
+ /* POSITION HELPERS */
765
+ .relative { position: relative !important; }
766
+ .absolute { position: absolute !important; }
767
+ .fixed { position: fixed !important; }
768
+ .static { position: static !important; }
769
+ .float-right { float: right !important; }
770
+ .float-left { float: left !important; }
771
+
772
+ .vert-horz-center {
773
+ display: flex;
774
+ justify-content: center;
775
+ align-items: center;
776
+ }
777
+
778
+ .vert-center {
779
+ display: flex;
780
+ align-items: center;
781
+ }
782
+
783
+ @media (min-width: $medium) {
784
+ .md-relative { position: relative !important; }
785
+ .md-absolute { position: absolute !important; }
786
+ .md-fixed { position: fixed !important; }
787
+ .md-static { position: static !important; }
788
+ .md-float-right { float: right !important; }
789
+ .md-float-left { float: left !important; }
790
+ }
791
+
792
+ @media (min-width: $large) {
793
+ .lg-relative { position: relative !important; }
794
+ .lg-absolute { position: absolute !important; }
795
+ .lg-fixed { position: fixed !important; }
796
+ .lg-static { position: static !important; }
797
+ .lg-float-right { float: right !important; }
798
+ .lg-float-left { float: left !important; }
799
+ }
800
+
801
+ @media (min-width: $xlarge) {
802
+ .xlg-relative { position: relative !important; }
803
+ .xlg-absolute { position: absolute !important; }
804
+ .xlg-fixed { position: fixed !important; }
805
+ .xlg-static { position: static !important; }
806
+ .xlg-float-right { float: right !important; }
807
+ .xlg-float-left { float: left !important; }
808
+ }
809
+
810
+ @media (min-width: $xxlarge) {
811
+ .xxlg-relative { position: relative !important; }
812
+ .xxlg-absolute { position: absolute !important; }
813
+ .xxlg-fixed { position: fixed !important; }
814
+ .xxlg-static { position: static !important; }
815
+ .xxlg-float-right { float: right !important; }
816
+ .xxlg-float-left { float: left !important; }
817
+ }
818
+
819
+ /* SIZE HELPERS */
820
+ .width-100 { width: 100% !important; }
821
+ .width-50 { width: 50% !important; }
822
+ .width-33 { width: 33.33% !important; }
823
+ .width-25 { width: 25% !important; }
824
+ .width-auto { width: auto !important; }
825
+ .height-100 { height: 100% !important; }
826
+ .height-50 { height: 50% !important; }
827
+ .height-33 { height: 33.33% !important; }
828
+ .height-25 { height: 25% !important; }
829
+ .height-auto { height: auto !important; }
830
+
831
+ @media (min-width: $medium) {
832
+ .md-width-100 { width: 100% !important; }
833
+ .md-width-50 { width: 50% !important; }
834
+ .md-width-33 { width: 33.33% !important; }
835
+ .md-width-25 { width: 25% !important; }
836
+ .md-width-auto { width: auto !important; }
837
+ .md-height-100 { height: 100% !important; }
838
+ .md-height-50 { height: 50% !important; }
839
+ .md-height-33 { height: 33.33% !important; }
840
+ .md-height-25 { height: 25% !important; }
841
+ .md-height-auto { height: auto !important; }
842
+ }
843
+
844
+ @media (min-width: $large) {
845
+ .lg-width-100 { width: 100% !important; }
846
+ .lg-width-50 { width: 50% !important; }
847
+ .lg-width-33 { width: 33.33% !important; }
848
+ .lg-width-25 { width: 25% !important; }
849
+ .lg-width-auto { width: auto !important; }
850
+ .lg-height-100 { height: 100% !important; }
851
+ .lg-height-50 { height: 50% !important; }
852
+ .lg-height-33 { height: 33.33% !important; }
853
+ .lg-height-25 { height: 25% !important; }
854
+ .lg-height-auto { height: auto !important; }
855
+ }
856
+
857
+ @media (min-width: $xlarge) {
858
+ .xlg-width-100 { width: 100% !important; }
859
+ .xlg-width-50 { width: 50% !important; }
860
+ .xlg-width-33 { width: 33.33% !important; }
861
+ .xlg-width-25 { width: 25% !important; }
862
+ .xlg-width-auto { width: auto !important; }
863
+ .xlg-height-100 { height: 100% !important; }
864
+ .xlg-height-50 { height: 50% !important; }
865
+ .xlg-height-33 { height: 33.33% !important; }
866
+ .xlg-height-25 { height: 25% !important; }
867
+ .xlg-height-auto { height: auto !important; }
868
+ }
869
+
870
+ @media (min-width: $xxlarge) {
871
+ .xxlg-width-100 { width: 100% !important; }
872
+ .xxlg-width-50 { width: 50% !important; }
873
+ .xxlg-width-33 { width: 33.33% !important; }
874
+ .xxlg-width-25 { width: 25% !important; }
875
+ .xxlg-width-auto { width: auto !important; }
876
+ .xxlg-height-100 { height: 100% !important; }
877
+ .xxlg-height-50 { height: 50% !important; }
878
+ .xxlg-height-33 { height: 33.33% !important; }
879
+ .xxlg-height-25 { height: 25% !important; }
880
+ .xxlg-height-auto { height: auto !important; }
881
+ }
882
+
883
+ /* MARGIN HELLPERS */
884
+ .m-0 { margin: 0 !important; }
885
+ .m-hr { margin: .5rem !important; }
886
+ .m-1 { margin: 1rem !important; }
887
+ .m-2 { margin: 2rem !important; }
888
+ .m-3 { margin: 3rem !important; }
889
+ .m-4 { margin: 4rem !important; }
890
+ .m-5 { margin: 5rem !important; }
891
+ .m-6 { margin: 6rem !important; }
892
+ .m-7{ margin: 7rem !important; }
893
+ .m-8{ margin: 8rem !important; }
894
+
895
+ .mx-0 {
896
+ margin-left: 0 !important;
897
+ margin-right: 0 !important;
898
+ }
899
+
900
+ .mx-hr {
901
+ margin-left: .5rem !important;
902
+ margin-right: .5rem !important;
903
+ }
904
+
905
+ .mx-1 {
906
+ margin-left: 1rem !important;
907
+ margin-right: 1rem !important;
908
+ }
909
+
910
+ .mx-2 {
911
+ margin-left: 2rem !important;
912
+ margin-right: 2rem !important;
913
+ }
914
+
915
+ .mx-3 {
916
+ margin-left: 3rem !important;
917
+ margin-right: 3rem !important;
918
+ }
919
+
920
+ .mx-4 {
921
+ margin-left: 4rem !important;
922
+ margin-right: 4rem !important;
923
+ }
924
+
925
+ .mx-5 {
926
+ margin-left: 5rem !important;
927
+ margin-right: 5rem !important;
928
+ }
929
+
930
+ .mx-6 {
931
+ margin-left: 6rem !important;
932
+ margin-right: 6rem !important;
933
+ }
934
+
935
+ .mx-7 {
936
+ margin-left: 7rem !important;
937
+ margin-right: 7rem !important;
938
+ }
939
+
940
+ .mx-8 {
941
+ margin-left: 8rem !important;
942
+ margin-right: 8rem !important;
943
+ }
944
+
945
+ .my-0 {
946
+ margin-top: 0 !important;
947
+ margin-bottom: 0 !important;
948
+ }
949
+
950
+ .my-hr {
951
+ margin-top: .5rem !important;
952
+ margin-bottom: .5rem !important;
953
+ }
954
+
955
+ .my-1 {
956
+ margin-top: 1rem !important;
957
+ margin-bottom: 1rem !important;
958
+ }
959
+
960
+ .my-2 {
961
+ margin-top: 2rem !important;
962
+ margin-bottom: 2rem !important;
963
+ }
964
+
965
+ .my-3 {
966
+ margin-top: 3rem !important;
967
+ margin-bottom: 3rem !important;
968
+ }
969
+
970
+ .my-4 {
971
+ margin-top: 4rem !important;
972
+ margin-bottom: 4rem !important;
973
+ }
974
+
975
+ .my-5 {
976
+ margin-top: 5rem !important;
977
+ margin-bottom: 5rem !important;
978
+ }
979
+
980
+ .my-6 {
981
+ margin-top: 6rem !important;
982
+ margin-bottom: 6rem !important;
983
+ }
984
+
985
+ .my-7 {
986
+ margin-top: 7rem !important;
987
+ margin-bottom: 7rem !important;
988
+ }
989
+
990
+ .my-8 {
991
+ margin-top: 8rem !important;
992
+ margin-bottom: 8rem !important;
993
+ }
994
+
995
+ .mt-0 { margin-top: 0 !important; }
996
+ .mt-hr { margin-top: .5rem !important; }
997
+ .mt-1 { margin-top: 1rem !important; }
998
+ .mt-2 { margin-top: 2rem !important; }
999
+ .mt-3 { margin-top: 3rem !important; }
1000
+ .mt-4 { margin-top: 4rem !important; }
1001
+ .mt-5 { margin-top: 5rem !important; }
1002
+ .mt-6 { margin-top: 6rem !important; }
1003
+ .mt-7 { margin-top: 7rem !important; }
1004
+ .mt-8 { margin-top: 8rem !important; }
1005
+
1006
+ .mr-0 { margin-right: 0 !important; }
1007
+ .mr-hr { margin-right: .5rem !important; }
1008
+ .mr-1 { margin-right: 1rem !important; }
1009
+ .mr-2 { margin-right: 2rem !important; }
1010
+ .mr-3 { margin-right: 3rem !important; }
1011
+ .mr-4 { margin-right: 4rem !important; }
1012
+ .mr-5 { margin-right: 5rem !important; }
1013
+ .mr-6 { margin-right: 6rem !important; }
1014
+ .mr-7 { margin-right: 7rem !important; }
1015
+ .mr-8 { margin-right: 8rem !important; }
1016
+
1017
+ .ml-0 { margin-left: 0 !important; }
1018
+ .ml-hr { margin-left: .5rem !important; }
1019
+ .ml-1 { margin-left: 1rem !important; }
1020
+ .ml-2 { margin-left: 2rem !important; }
1021
+ .ml-3 { margin-left: 3rem !important; }
1022
+ .ml-4 { margin-left: 4rem !important; }
1023
+ .ml-5 { margin-left: 5rem !important; }
1024
+ .ml-6 { margin-left: 6rem !important; }
1025
+ .ml-7 { margin-left: 7rem !important; }
1026
+ .ml-8 { margin-left: 8rem !important; }
1027
+
1028
+ .mb-0 { margin-bottom: 0 !important; }
1029
+ .mb-hr { margin-bottom: .5rem !important; }
1030
+ .mb-1 { margin-bottom: 1rem !important; }
1031
+ .mb-2 { margin-bottom: 2rem !important; }
1032
+ .mb-3 { margin-bottom: 3rem !important; }
1033
+ .mb-4 { margin-bottom: 4rem !important; }
1034
+ .mb-5 { margin-bottom: 5rem !important; }
1035
+ .mb-6 { margin-bottom: 6rem !important; }
1036
+ .mb-7 { margin-bottom: 7rem !important; }
1037
+ .mb-8 { margin-bottom: 8rem !important; }
1038
+
1039
+ /* PADDING HELLPERS */
1040
+ .p-0 { padding: 0 !important; }
1041
+ .p-hr { padding: .5rem !important; }
1042
+ .p-1 { padding: 1rem !important; }
1043
+ .p-2 { padding: 2rem !important; }
1044
+ .p-3 { padding: 3rem !important; }
1045
+ .p-4 { padding: 4rem !important; }
1046
+ .p-5 { padding: 5rem !important; }
1047
+ .p-6 { padding: 6rem !important; }
1048
+ .p-7 { padding: 7rem !important; }
1049
+ .p-8 { padding: 8rem !important; }
1050
+
1051
+ .px-0 {
1052
+ padding-left: 0 !important;
1053
+ padding-right: 0 !important;
1054
+ }
1055
+
1056
+ .px-hr {
1057
+ padding-left: .5rem !important;
1058
+ padding-right: .5rem !important;
1059
+ }
1060
+
1061
+ .px-1 {
1062
+ padding-left: 1rem !important;
1063
+ padding-right: 1rem !important;
1064
+ }
1065
+
1066
+ .px-2 {
1067
+ padding-left: 2rem !important;
1068
+ padding-right: 2rem !important;
1069
+ }
1070
+
1071
+ .px-3 {
1072
+ padding-left: 3rem !important;
1073
+ padding-right: 3rem !important;
1074
+ }
1075
+
1076
+ .px-4 {
1077
+ padding-left: 4rem !important;
1078
+ padding-right: 4rem !important;
1079
+ }
1080
+
1081
+ .px-5 {
1082
+ padding-left: 5rem !important;
1083
+ padding-right: 5rem !important;
1084
+ }
1085
+
1086
+ .px-6 {
1087
+ padding-left: 6rem !important;
1088
+ padding-right: 6rem !important;
1089
+ }
1090
+
1091
+ .px-7 {
1092
+ padding-left: 7rem !important;
1093
+ padding-right: 7rem !important;
1094
+ }
1095
+
1096
+ .px-8 {
1097
+ padding-left: 8rem !important;
1098
+ padding-right: 8rem !important;
1099
+ }
1100
+
1101
+ .py-0 {
1102
+ padding-top: 0 !important;
1103
+ padding-bottom: 0 !important;
1104
+ }
1105
+
1106
+ .py-hr {
1107
+ padding-top: .5rem !important;
1108
+ padding-bottom: .5rem !important;
1109
+ }
1110
+
1111
+ .py-1 {
1112
+ padding-top: 1rem !important;
1113
+ padding-bottom: 1rem !important;
1114
+ }
1115
+
1116
+ .py-2 {
1117
+ padding-top: 2rem !important;
1118
+ padding-bottom: 2rem !important;
1119
+ }
1120
+
1121
+ .py-3 {
1122
+ padding-top: 3rem !important;
1123
+ padding-bottom: 3rem !important;
1124
+ }
1125
+
1126
+ .py-4 {
1127
+ padding-top: 4rem !important;
1128
+ padding-bottom: 4rem !important;
1129
+ }
1130
+
1131
+ .py-5 {
1132
+ padding-top: 5rem !important;
1133
+ padding-bottom: 5rem !important;
1134
+ }
1135
+
1136
+ .py-6 {
1137
+ padding-top: 6rem !important;
1138
+ padding-bottom: 6rem !important;
1139
+ }
1140
+
1141
+ .py-7 {
1142
+ padding-top: 7rem !important;
1143
+ padding-bottom: 7rem !important;
1144
+ }
1145
+
1146
+ .py-8 {
1147
+ padding-top: 8rem !important;
1148
+ padding-bottom: 8rem !important;
1149
+ }
1150
+
1151
+ .pt-0 { padding-top: 0 !important; }
1152
+ .pt-hr { padding-top: .5rem !important; }
1153
+ .pt-1 { padding-top: 1rem !important; }
1154
+ .pt-2 { padding-top: 2rem !important; }
1155
+ .pt-3 { padding-top: 3rem !important; }
1156
+ .pt-4 { padding-top: 4rem !important; }
1157
+ .pt-5 { padding-top: 5rem !important; }
1158
+ .pt-6 { padding-top: 6rem !important; }
1159
+ .pt-7 { padding-top: 7rem !important; }
1160
+ .pt-8 { padding-top: 8rem !important; }
1161
+
1162
+ .pr-0 { padding-right: 0 !important; }
1163
+ .pr-hr { padding-right: .5rem !important; }
1164
+ .pr-1 { padding-right: 1rem !important; }
1165
+ .pr-2 { padding-right: 2rem !important; }
1166
+ .pr-3 { padding-right: 3rem !important; }
1167
+ .pr-4 { padding-right: 4rem !important; }
1168
+ .pr-5 { padding-right: 5rem !important; }
1169
+ .pr-6 { padding-right: 6rem !important; }
1170
+ .pr-7 { padding-right: 7rem !important; }
1171
+ .pr-8 { padding-right: 8rem !important; }
1172
+
1173
+ .pl-0 { padding-left: 0 !important; }
1174
+ .pl-hr { padding-left: .5rem !important; }
1175
+ .pl-1 { padding-left: 1rem !important; }
1176
+ .pl-2 { padding-left: 2rem !important; }
1177
+ .pl-3 { padding-left: 3rem !important; }
1178
+ .pl-4 { padding-left: 4rem !important; }
1179
+ .pl-5 { padding-left: 5rem !important; }
1180
+ .pl-6 { padding-left: 6rem !important; }
1181
+ .pl-7 { padding-left: 7rem !important; }
1182
+ .pl-8 { padding-left: 8rem !important; }
1183
+
1184
+ .pb-0 { padding-bottom: 0 !important; }
1185
+ .pb-hr {padding-bottom: .5rem !important; }
1186
+ .pb-1 { padding-bottom: 1rem !important; }
1187
+ .pb-2 { padding-bottom: 2rem !important; }
1188
+ .pb-3 { padding-bottom: 3rem !important; }
1189
+ .pb-4 { padding-bottom: 4rem !important; }
1190
+ .pb-5 { padding-bottom: 5rem !important; }
1191
+ .pb-6 { padding-bottom: 6rem !important; }
1192
+ .pb-7 { padding-bottom: 7rem !important; }
1193
+ .pb-8 { padding-bottom: 8rem !important; }
1194
+
1195
+ @media (min-width: $medium) {
1196
+ /* MEDIUM MARGIN HELLPERS */
1197
+ .md-m-0 { margin: 0 !important; }
1198
+ .md-m-hr { margin: .5rem !important; }
1199
+ .md-m-1 { margin: 1rem !important; }
1200
+ .md-m-2 { margin: 2rem !important; }
1201
+ .md-m-3 { margin: 3rem !important; }
1202
+ .md-m-4 { margin: 4rem !important; }
1203
+ .md-m-5 { margin: 5rem !important; }
1204
+ .md-m-6 { margin: 6rem !important; }
1205
+ .md-m-7 { margin: 7rem !important; }
1206
+ .md-m-8 { margin: 8rem !important; }
1207
+
1208
+ .md-mx-0 {
1209
+ margin-left: 0 !important;
1210
+ margin-right: 0 !important;
1211
+ }
1212
+
1213
+ .md-mx-hr {
1214
+ margin-left: .5rem !important;
1215
+ margin-right: .5rem !important;
1216
+ }
1217
+
1218
+ .md-mx-1 {
1219
+ margin-left: 1rem !important;
1220
+ margin-right: 1rem !important;
1221
+ }
1222
+
1223
+ .md-mx-2 {
1224
+ margin-left: 2rem !important;
1225
+ margin-right: 2rem !important;
1226
+ }
1227
+
1228
+ .md-mx-3 {
1229
+ margin-left: 3rem !important;
1230
+ margin-right: 3rem !important;
1231
+ }
1232
+
1233
+ .md-mx-4 {
1234
+ margin-left: 4rem !important;
1235
+ margin-right: 4rem !important;
1236
+ }
1237
+
1238
+ .md-mx-5 {
1239
+ margin-left: 5rem !important;
1240
+ margin-right: 5rem !important;
1241
+ }
1242
+
1243
+ .md-mx-6 {
1244
+ margin-left: 6rem !important;
1245
+ margin-right: 6rem !important;
1246
+ }
1247
+
1248
+ .md-mx-7 {
1249
+ margin-left: 7rem !important;
1250
+ margin-right: 7rem !important;
1251
+ }
1252
+
1253
+ .md-mx-8 {
1254
+ margin-left: 8rem !important;
1255
+ margin-right: 8rem !important;
1256
+ }
1257
+
1258
+ .md-my-0 {
1259
+ margin-top: 0 !important;
1260
+ margin-bottom: 0 !important;
1261
+ }
1262
+
1263
+ .md-my-hr {
1264
+ margin-top: .5rem !important;
1265
+ margin-bottom: .5rem !important;
1266
+ }
1267
+
1268
+ .md-my-1 {
1269
+ margin-top: 1rem !important;
1270
+ margin-bottom: 1rem !important;
1271
+ }
1272
+
1273
+ .md-my-2 {
1274
+ margin-top: 2rem !important;
1275
+ margin-bottom: 2rem !important;
1276
+ }
1277
+
1278
+ .md-my-3 {
1279
+ margin-top: 3rem !important;
1280
+ margin-bottom: 3rem !important;
1281
+ }
1282
+
1283
+ .md-my-4 {
1284
+ margin-top: 4rem !important;
1285
+ margin-bottom: 4rem !important;
1286
+ }
1287
+
1288
+ .md-my-5 {
1289
+ margin-top: 5rem !important;
1290
+ margin-bottom: 5rem !important;
1291
+ }
1292
+
1293
+ .md-my-6 {
1294
+ margin-top: 6rem !important;
1295
+ margin-bottom: 6rem !important;
1296
+ }
1297
+
1298
+ .md-my-7 {
1299
+ margin-top: 7rem !important;
1300
+ margin-bottom: 7rem !important;
1301
+ }
1302
+
1303
+ .md-my-8 {
1304
+ margin-top: 8rem !important;
1305
+ margin-bottom: 8rem !important;
1306
+ }
1307
+
1308
+ .md-mt-0 { margin-top: 0 !important; }
1309
+ .md-mt-hr { margin-top: .5rem !important; }
1310
+ .md-mt-1 { margin-top: 1rem !important; }
1311
+ .md-mt-2 { margin-top: 2rem !important; }
1312
+ .md-mt-3 { margin-top: 3rem !important; }
1313
+ .md-mt-4 { margin-top: 4rem !important; }
1314
+ .md-mt-5 { margin-top: 5rem !important; }
1315
+ .md-mt-6 { margin-top: 6rem !important; }
1316
+ .md-mt-7 { margin-top: 7rem !important; }
1317
+ .md-mt-8 { margin-top: 8rem !important; }
1318
+
1319
+ .md-mr-0 { margin-right: 0 !important; }
1320
+ .md-mr-hr { margin-right: .5rem !important; }
1321
+ .md-mr-1 { margin-right: 1rem !important; }
1322
+ .md-mr-2 { margin-right: 2rem !important; }
1323
+ .md-mr-3 { margin-right: 3rem !important; }
1324
+ .md-mr-4 { margin-right: 4rem !important; }
1325
+ .md-mr-5 { margin-right: 5rem !important; }
1326
+ .md-mr-6 { margin-right: 6rem !important; }
1327
+ .md-mr-7 { margin-right: 7rem !important; }
1328
+ .md-mr-8 { margin-right: 8rem !important; }
1329
+
1330
+ .md-ml-0 { margin-left: 0 !important; }
1331
+ .md-ml-hr { margin-left: .5rem !important; }
1332
+ .md-ml-1 { margin-left: 1rem !important; }
1333
+ .md-ml-2 { margin-left: 2rem !important; }
1334
+ .md-ml-3 { margin-left: 3rem !important; }
1335
+ .md-ml-4 { margin-left: 4rem !important; }
1336
+ .md-ml-5 { margin-left: 5rem !important; }
1337
+ .md-ml-6 { margin-left: 6rem !important; }
1338
+ .md-ml-7 { margin-left: 7rem !important; }
1339
+ .md-ml-8 { margin-left: 8rem !important; }
1340
+
1341
+ .md-mb-0 { margin-bottom: 0 !important; }
1342
+ .md-mb-hr { margin-bottom: .5rem !important; }
1343
+ .md-mb-1 { margin-bottom: 1rem !important; }
1344
+ .md-mb-2 { margin-bottom: 2rem !important; }
1345
+ .md-mb-3 { margin-bottom: 3rem !important; }
1346
+ .md-mb-4 { margin-bottom: 4rem !important; }
1347
+ .md-mb-5 { margin-bottom: 5rem !important; }
1348
+ .md-mb-6 { margin-bottom: 6rem !important; }
1349
+ .md-mb-7 { margin-bottom: 7rem !important; }
1350
+ .md-mb-8 { margin-bottom: 8rem !important; }
1351
+
1352
+ /* MEDIUM PADDING HELLPERS */
1353
+ .md-p-0 { padding: 0 !important; }
1354
+ .md-p-hr { padding: .5rem !important; }
1355
+ .md-p-1 { padding: 1rem !important; }
1356
+ .md-p-2 { padding: 2rem !important; }
1357
+ .md-p-3 { padding: 3rem !important; }
1358
+ .md-p-4 { padding: 4rem !important; }
1359
+ .md-p-5 { padding: 5rem !important; }
1360
+ .md-p-6 { padding: 6rem !important; }
1361
+ .md-p-7 { padding: 7rem !important; }
1362
+ .md-p-8 { padding: 8rem !important; }
1363
+
1364
+ .md-px-0 {
1365
+ padding-left: 0 !important;
1366
+ padding-right: 0 !important;
1367
+ }
1368
+
1369
+ .md-px-hr {
1370
+ padding-left: .5rem !important;
1371
+ padding-right: .5rem !important;
1372
+ }
1373
+
1374
+ .md-px-1 {
1375
+ padding-left: 1rem !important;
1376
+ padding-right: 1rem !important;
1377
+ }
1378
+
1379
+ .md-px-2 {
1380
+ padding-left: 2rem !important;
1381
+ padding-right: 2rem !important;
1382
+ }
1383
+
1384
+ .md-px-3 {
1385
+ padding-left: 3rem !important;
1386
+ padding-right: 3rem !important;
1387
+ }
1388
+
1389
+ .md-px-4 {
1390
+ padding-left: 4rem !important;
1391
+ padding-right: 4rem !important;
1392
+ }
1393
+
1394
+ .md-px-5 {
1395
+ padding-left: 5rem !important;
1396
+ padding-right: 5rem !important;
1397
+ }
1398
+
1399
+ .md-px-6 {
1400
+ padding-left: 6rem !important;
1401
+ padding-right: 6rem !important;
1402
+ }
1403
+
1404
+ .md-px-7 {
1405
+ padding-left: 7rem !important;
1406
+ padding-right: 7rem !important;
1407
+ }
1408
+
1409
+ .md-px-8 {
1410
+ padding-left: 8rem !important;
1411
+ padding-right: 8rem !important;
1412
+ }
1413
+
1414
+ .md-py-0 {
1415
+ padding-top: 0 !important;
1416
+ padding-bottom: 0 !important;
1417
+ }
1418
+
1419
+ .md-py-hr {
1420
+ padding-top: .5rem !important;
1421
+ padding-bottom: .5rem !important;
1422
+ }
1423
+
1424
+ .md-py-1 {
1425
+ padding-top: 1rem !important;
1426
+ padding-bottom: 1rem !important;
1427
+ }
1428
+
1429
+ .md-py-2 {
1430
+ padding-top: 2rem !important;
1431
+ padding-bottom: 2rem !important;
1432
+ }
1433
+
1434
+ .md-py-3 {
1435
+ padding-top: 3rem !important;
1436
+ padding-bottom: 3rem !important;
1437
+ }
1438
+
1439
+ .md-py-4 {
1440
+ padding-top: 4rem !important;
1441
+ padding-bottom: 4rem !important;
1442
+ }
1443
+
1444
+ .md-py-5 {
1445
+ padding-top: 5rem !important;
1446
+ padding-bottom: 5rem !important;
1447
+ }
1448
+
1449
+ .md-py-6 {
1450
+ padding-top: 6rem !important;
1451
+ padding-bottom: 6rem !important;
1452
+ }
1453
+
1454
+ .md-py-7 {
1455
+ padding-top: 7rem !important;
1456
+ padding-bottom: 7rem !important;
1457
+ }
1458
+
1459
+ .md-py-8 {
1460
+ padding-top: 8rem !important;
1461
+ padding-bottom: 8rem !important;
1462
+ }
1463
+
1464
+ .md-pt-0 { padding-top: 0 !important; }
1465
+ .md-pt-hr { padding-top: .5rem !important; }
1466
+ .md-pt-1 { padding-top: 1rem !important; }
1467
+ .md-pt-2 { padding-top: 2rem !important; }
1468
+ .md-pt-3 { padding-top: 3rem !important; }
1469
+ .md-pt-4 { padding-top: 4rem !important; }
1470
+ .md-pt-5 { padding-top: 5rem !important; }
1471
+ .md-pt-6 { padding-top: 6rem !important; }
1472
+ .md-pt-7 { padding-top: 7rem !important; }
1473
+ .md-pt-8 { padding-top: 8rem !important; }
1474
+
1475
+ .md-pr-0 { padding-right: 0 !important; }
1476
+ .md-pr-hr { padding-right: .5rem !important; }
1477
+ .md-pr-1 { padding-right: 1rem !important; }
1478
+ .md-pr-2 { padding-right: 2rem !important; }
1479
+ .md-pr-3 { padding-right: 3rem !important; }
1480
+ .md-pr-4 { padding-right: 4rem !important; }
1481
+ .md-pr-5 { padding-right: 5rem !important; }
1482
+ .md-pr-6 { padding-right: 6rem !important; }
1483
+ .md-pr-7 { padding-right: 7rem !important; }
1484
+ .md-pr-8 { padding-right: 8rem !important; }
1485
+
1486
+ .md-pl-0 { padding-left: 0 !important; }
1487
+ .md-pl-hr { padding-left: .5rem !important; }
1488
+ .md-pl-1 { padding-left: 1rem !important; }
1489
+ .md-pl-2 { padding-left: 2rem !important; }
1490
+ .md-pl-3 { padding-left: 3rem !important; }
1491
+ .md-pl-4 { padding-left: 4rem !important; }
1492
+ .md-pl-5 { padding-left: 5rem !important; }
1493
+ .md-pl-6 { padding-left: 6rem !important; }
1494
+ .md-pl-7 { padding-left: 7rem !important; }
1495
+ .md-pl-8 { padding-left: 8rem !important; }
1496
+
1497
+ .md-pb-0 { padding-bottom: 0 !important; }
1498
+ .md-pb-hr {padding-bottom: .5rem !important; }
1499
+ .md-pb-1 { padding-bottom: 1rem !important; }
1500
+ .md-pb-2 { padding-bottom: 2rem !important; }
1501
+ .md-pb-3 { padding-bottom: 3rem !important; }
1502
+ .md-pb-4 { padding-bottom: 4rem !important; }
1503
+ .md-pb-5 { padding-bottom: 5rem !important; }
1504
+ .md-pb-6 { padding-bottom: 6rem !important; }
1505
+ .md-pb-7 { padding-bottom: 7rem !important; }
1506
+ .md-pb-8 { padding-bottom: 8rem !important; }
1507
+ }
1508
+
1509
+ @media (min-width: $large) {
1510
+ /* LARGE MARGIN HELLPERS */
1511
+ .lg-m-0 { margin: 0 !important; }
1512
+ .lg-m-hr { margin: .5rem !important; }
1513
+ .lg-m-1 { margin: 1rem !important; }
1514
+ .lg-m-2 { margin: 2rem !important; }
1515
+ .lg-m-3 { margin: 3rem !important; }
1516
+ .lg-m-4 { margin: 4rem !important; }
1517
+ .lg-m-5 { margin: 5rem !important; }
1518
+ .lg-m-6 { margin: 6rem !important; }
1519
+ .lg-m-7{ margin: 7rem !important; }
1520
+ .lg-m-8{ margin: 8rem !important; }
1521
+
1522
+ .lg-mx-0 {
1523
+ margin-left: 0 !important;
1524
+ margin-right: 0 !important;
1525
+ }
1526
+
1527
+ .lg-mx-hr {
1528
+ margin-left: .5rem !important;
1529
+ margin-right: .5rem !important;
1530
+ }
1531
+
1532
+ .lg-mx-1 {
1533
+ margin-left: 1rem !important;
1534
+ margin-right: 1rem !important;
1535
+ }
1536
+
1537
+ .lg-mx-2 {
1538
+ margin-left: 2rem !important;
1539
+ margin-right: 2rem !important;
1540
+ }
1541
+
1542
+ .lg-mx-3 {
1543
+ margin-left: 3rem !important;
1544
+ margin-right: 3rem !important;
1545
+ }
1546
+
1547
+ .lg-mx-4 {
1548
+ margin-left: 4rem !important;
1549
+ margin-right: 4rem !important;
1550
+ }
1551
+
1552
+ .lg-mx-5 {
1553
+ margin-left: 5rem !important;
1554
+ margin-right: 5rem !important;
1555
+ }
1556
+
1557
+ .lg-mx-6 {
1558
+ margin-left: 6rem !important;
1559
+ margin-right: 6rem !important;
1560
+ }
1561
+
1562
+ .lg-mx-7 {
1563
+ margin-left: 7rem !important;
1564
+ margin-right: 7rem !important;
1565
+ }
1566
+
1567
+ .lg-mx-8 {
1568
+ margin-left: 8rem !important;
1569
+ margin-right: 8rem !important;
1570
+ }
1571
+
1572
+ .lg-my-0 {
1573
+ margin-top: 0 !important;
1574
+ margin-bottom: 0 !important;
1575
+ }
1576
+
1577
+ .lg-my-hr {
1578
+ margin-top: .5rem !important;
1579
+ margin-bottom: .5rem !important;
1580
+ }
1581
+
1582
+ .lg-my-1 {
1583
+ margin-top: 1rem !important;
1584
+ margin-bottom: 1rem !important;
1585
+ }
1586
+
1587
+ .lg-my-2 {
1588
+ margin-top: 2rem !important;
1589
+ margin-bottom: 2rem !important;
1590
+ }
1591
+
1592
+ .lg-my-3 {
1593
+ margin-top: 3rem !important;
1594
+ margin-bottom: 3rem !important;
1595
+ }
1596
+
1597
+ .lg-my-4 {
1598
+ margin-top: 4rem !important;
1599
+ margin-bottom: 4rem !important;
1600
+ }
1601
+
1602
+ .lg-my-5 {
1603
+ margin-top: 5rem !important;
1604
+ margin-bottom: 5rem !important;
1605
+ }
1606
+
1607
+ .lg-my-6 {
1608
+ margin-top: 6rem !important;
1609
+ margin-bottom: 6rem !important;
1610
+ }
1611
+
1612
+ .lg-my-7 {
1613
+ margin-top: 7rem !important;
1614
+ margin-bottom: 7rem !important;
1615
+ }
1616
+
1617
+ .lg-my-8 {
1618
+ margin-top: 8rem !important;
1619
+ margin-bottom: 8rem !important;
1620
+ }
1621
+
1622
+ .lg-mt-0 { margin-top: 0 !important; }
1623
+ .lg-mt-hr { margin-top: .5rem !important; }
1624
+ .lg-mt-1 { margin-top: 1rem !important; }
1625
+ .lg-mt-2 { margin-top: 2rem !important; }
1626
+ .lg-mt-3 { margin-top: 3rem !important; }
1627
+ .lg-mt-4 { margin-top: 4rem !important; }
1628
+ .lg-mt-5 { margin-top: 5rem !important; }
1629
+ .lg-mt-6 { margin-top: 6rem !important; }
1630
+ .lg-mt-7 { margin-top: 7rem !important; }
1631
+ .lg-mt-8 { margin-top: 8rem !important; }
1632
+
1633
+ .lg-mr-0 { margin-right: 0 !important; }
1634
+ .lg-mr-hr { margin-right: .5rem !important; }
1635
+ .lg-mr-1 { margin-right: 1rem !important; }
1636
+ .lg-mr-2 { margin-right: 2rem !important; }
1637
+ .lg-mr-3 { margin-right: 3rem !important; }
1638
+ .lg-mr-4 { margin-right: 4rem !important; }
1639
+ .lg-mr-5 { margin-right: 5rem !important; }
1640
+ .lg-mr-6 { margin-right: 6rem !important; }
1641
+ .lg-mr-7 { margin-right: 7rem !important; }
1642
+ .lg-mr-8 { margin-right: 8rem !important; }
1643
+
1644
+ .lg-ml-0 { margin-left: 0 !important; }
1645
+ .lg-ml-hr { margin-left: .5rem !important; }
1646
+ .lg-ml-1 { margin-left: 1rem !important; }
1647
+ .lg-ml-2 { margin-left: 2rem !important; }
1648
+ .lg-ml-3 { margin-left: 3rem !important; }
1649
+ .lg-ml-4 { margin-left: 4rem !important; }
1650
+ .lg-ml-5 { margin-left: 5rem !important; }
1651
+ .lg-ml-6 { margin-left: 6rem !important; }
1652
+ .lg-ml-7 { margin-left: 7rem !important; }
1653
+ .lg-ml-8 { margin-left: 8rem !important; }
1654
+
1655
+ .lg-mb-0 { margin-bottom: 0 !important; }
1656
+ .lg-mb-hr { margin-bottom: .5rem !important; }
1657
+ .lg-mb-1 { margin-bottom: 1rem !important; }
1658
+ .lg-mb-2 { margin-bottom: 2rem !important; }
1659
+ .lg-mb-3 { margin-bottom: 3rem !important; }
1660
+ .lg-mb-4 { margin-bottom: 4rem !important; }
1661
+ .lg-mb-5 { margin-bottom: 5rem !important; }
1662
+ .lg-mb-6 { margin-bottom: 6rem !important; }
1663
+ .lg-mb-7 { margin-bottom: 7rem !important; }
1664
+ .lg-mb-8 { margin-bottom: 8rem !important; }
1665
+
1666
+ /* LARGE PADDING HELLPERS */
1667
+ .lg-p-0 { padding: 0 !important; }
1668
+ .lg-p-hr { padding: .5rem !important; }
1669
+ .lg-p-1 { padding: 1rem !important; }
1670
+ .lg-p-2 { padding: 2rem !important; }
1671
+ .lg-p-3 { padding: 3rem !important; }
1672
+ .lg-p-4 { padding: 4rem !important; }
1673
+ .lg-p-5 { padding: 5rem !important; }
1674
+ .lg-p-6 { padding: 6rem !important; }
1675
+ .lg-p-7 { padding: 7rem !important; }
1676
+ .lg-p-8 { padding: 8rem !important; }
1677
+
1678
+ .lg-px-0 {
1679
+ padding-left: 0 !important;
1680
+ padding-right: 0 !important;
1681
+ }
1682
+
1683
+ .lg-px-hr {
1684
+ padding-left: .5rem !important;
1685
+ padding-right: .5rem !important;
1686
+ }
1687
+
1688
+ .lg-px-1 {
1689
+ padding-left: 1rem !important;
1690
+ padding-right: 1rem !important;
1691
+ }
1692
+
1693
+ .lg-px-2 {
1694
+ padding-left: 2rem !important;
1695
+ padding-right: 2rem !important;
1696
+ }
1697
+
1698
+ .lg-px-3 {
1699
+ padding-left: 3rem !important;
1700
+ padding-right: 3rem !important;
1701
+ }
1702
+
1703
+ .lg-px-4 {
1704
+ padding-left: 4rem !important;
1705
+ padding-right: 4rem !important;
1706
+ }
1707
+
1708
+ .lg-px-5 {
1709
+ padding-left: 5rem !important;
1710
+ padding-right: 5rem !important;
1711
+ }
1712
+
1713
+ .lg-px-6 {
1714
+ padding-left: 6rem !important;
1715
+ padding-right: 6rem !important;
1716
+ }
1717
+
1718
+ .lg-px-7 {
1719
+ padding-left: 7rem !important;
1720
+ padding-right: 7rem !important;
1721
+ }
1722
+
1723
+ .lg-px-8 {
1724
+ padding-left: 8rem !important;
1725
+ padding-right: 8rem !important;
1726
+ }
1727
+
1728
+ .lg-py-0 {
1729
+ padding-top: 0 !important;
1730
+ padding-bottom: 0 !important;
1731
+ }
1732
+
1733
+ .lg-py-hr {
1734
+ padding-top: .5rem !important;
1735
+ padding-bottom: .5rem !important;
1736
+ }
1737
+
1738
+ .lg-py-1 {
1739
+ padding-top: 1rem !important;
1740
+ padding-bottom: 1rem !important;
1741
+ }
1742
+
1743
+ .lg-py-2 {
1744
+ padding-top: 2rem !important;
1745
+ padding-bottom: 2rem !important;
1746
+ }
1747
+
1748
+ .lg-py-3 {
1749
+ padding-top: 3rem !important;
1750
+ padding-bottom: 3rem !important;
1751
+ }
1752
+
1753
+ .lg-py-4 {
1754
+ padding-top: 4rem !important;
1755
+ padding-bottom: 4rem !important;
1756
+ }
1757
+
1758
+ .lg-py-5 {
1759
+ padding-top: 5rem !important;
1760
+ padding-bottom: 5rem !important;
1761
+ }
1762
+
1763
+ .lg-py-6 {
1764
+ padding-top: 6rem !important;
1765
+ padding-bottom: 6rem !important;
1766
+ }
1767
+
1768
+ .lg-py-7 {
1769
+ padding-top: 7rem !important;
1770
+ padding-bottom: 7rem !important;
1771
+ }
1772
+
1773
+ .lg-py-8 {
1774
+ padding-top: 8rem !important;
1775
+ padding-bottom: 8rem !important;
1776
+ }
1777
+
1778
+ .lg-pt-0 { padding-top: 0 !important; }
1779
+ .lg-pt-hr { padding-top: .5rem !important; }
1780
+ .lg-pt-1 { padding-top: 1rem !important; }
1781
+ .lg-pt-2 { padding-top: 2rem !important; }
1782
+ .lg-pt-3 { padding-top: 3rem !important; }
1783
+ .lg-pt-4 { padding-top: 4rem !important; }
1784
+ .lg-pt-5 { padding-top: 5rem !important; }
1785
+ .lg-pt-6 { padding-top: 6rem !important; }
1786
+ .lg-pt-7 { padding-top: 7rem !important; }
1787
+ .lg-pt-8 { padding-top: 8rem !important; }
1788
+
1789
+ .lg-pr-0 { padding-right: 0 !important; }
1790
+ .lg-pr-hr { padding-right: .5rem !important; }
1791
+ .lg-pr-1 { padding-right: 1rem !important; }
1792
+ .lg-pr-2 { padding-right: 2rem !important; }
1793
+ .lg-pr-3 { padding-right: 3rem !important; }
1794
+ .lg-pr-4 { padding-right: 4rem !important; }
1795
+ .lg-pr-5 { padding-right: 5rem !important; }
1796
+ .lg-pr-6 { padding-right: 6rem !important; }
1797
+ .lg-pr-7 { padding-right: 7rem !important; }
1798
+ .lg-pr-8 { padding-right: 8rem !important; }
1799
+
1800
+ .lg-pl-0 { padding-left: 0 !important; }
1801
+ .lg-pl-hr { padding-left: .5rem !important; }
1802
+ .lg-pl-1 { padding-left: 1rem !important; }
1803
+ .lg-pl-2 { padding-left: 2rem !important; }
1804
+ .lg-pl-3 { padding-left: 3rem !important; }
1805
+ .lg-pl-4 { padding-left: 4rem !important; }
1806
+ .lg-pl-5 { padding-left: 5rem !important; }
1807
+ .lg-pl-6 { padding-left: 6rem !important; }
1808
+ .lg-pl-7 { padding-left: 7rem !important; }
1809
+ .lg-pl-8 { padding-left: 8rem !important; }
1810
+
1811
+ .lg-pb-0 { padding-bottom: 0 !important; }
1812
+ .lg-pb-hr {padding-bottom: .5rem !important; }
1813
+ .lg-pb-1 { padding-bottom: 1rem !important; }
1814
+ .lg-pb-2 { padding-bottom: 2rem !important; }
1815
+ .lg-pb-3 { padding-bottom: 3rem !important; }
1816
+ .lg-pb-4 { padding-bottom: 4rem !important; }
1817
+ .lg-pb-5 { padding-bottom: 5rem !important; }
1818
+ .lg-pb-6 { padding-bottom: 6rem !important; }
1819
+ .lg-pb-7 { padding-bottom: 7rem !important; }
1820
+ .lg-pb-8 { padding-bottom: 8rem !important; }
1821
+ }
1822
+
1823
+ @media (min-width: $xlarge) {
1824
+ /* XLARGE MARGIN HELLPERS */
1825
+ .xlg-m-0 { margin: 0 !important; }
1826
+ .xlg-m-hr { margin: .5rem !important; }
1827
+ .xlg-m-1 { margin: 1rem !important; }
1828
+ .xlg-m-2 { margin: 2rem !important; }
1829
+ .xlg-m-3 { margin: 3rem !important; }
1830
+ .xlg-m-4 { margin: 4rem !important; }
1831
+ .xlg-m-5 { margin: 5rem !important; }
1832
+ .xlg-m-6 { margin: 6rem !important; }
1833
+ .xlg-m-7{ margin: 7rem !important; }
1834
+ .xlg-m-8{ margin: 8rem !important; }
1835
+
1836
+ .xlg-mx-0 {
1837
+ margin-left: 0 !important;
1838
+ margin-right: 0 !important;
1839
+ }
1840
+
1841
+ .xlg-mx-hr {
1842
+ margin-left: .5rem !important;
1843
+ margin-right: .5rem !important;
1844
+ }
1845
+
1846
+ .xlg-mx-1 {
1847
+ margin-left: 1rem !important;
1848
+ margin-right: 1rem !important;
1849
+ }
1850
+
1851
+ .xlg-mx-2 {
1852
+ margin-left: 2rem !important;
1853
+ margin-right: 2rem !important;
1854
+ }
1855
+
1856
+ .xlg-mx-3 {
1857
+ margin-left: 3rem !important;
1858
+ margin-right: 3rem !important;
1859
+ }
1860
+
1861
+ .xlg-mx-4 {
1862
+ margin-left: 4rem !important;
1863
+ margin-right: 4rem !important;
1864
+ }
1865
+
1866
+ .xlg-mx-5 {
1867
+ margin-left: 5rem !important;
1868
+ margin-right: 5rem !important;
1869
+ }
1870
+
1871
+ .xlg-mx-6 {
1872
+ margin-left: 6rem !important;
1873
+ margin-right: 6rem !important;
1874
+ }
1875
+
1876
+ .xlg-mx-7 {
1877
+ margin-left: 7rem !important;
1878
+ margin-right: 7rem !important;
1879
+ }
1880
+
1881
+ .xlg-mx-8 {
1882
+ margin-left: 8rem !important;
1883
+ margin-right: 8rem !important;
1884
+ }
1885
+
1886
+ .xlg-my-0 {
1887
+ margin-top: 0 !important;
1888
+ margin-bottom: 0 !important;
1889
+ }
1890
+
1891
+ .xlg-my-hr {
1892
+ margin-top: .5rem !important;
1893
+ margin-bottom: .5rem !important;
1894
+ }
1895
+
1896
+ .xlg-my-1 {
1897
+ margin-top: 1rem !important;
1898
+ margin-bottom: 1rem !important;
1899
+ }
1900
+
1901
+ .xlg-my-2 {
1902
+ margin-top: 2rem !important;
1903
+ margin-bottom: 2rem !important;
1904
+ }
1905
+
1906
+ .xlg-my-3 {
1907
+ margin-top: 3rem !important;
1908
+ margin-bottom: 3rem !important;
1909
+ }
1910
+
1911
+ .xlg-my-4 {
1912
+ margin-top: 4rem !important;
1913
+ margin-bottom: 4rem !important;
1914
+ }
1915
+
1916
+ .xlg-my-5 {
1917
+ margin-top: 5rem !important;
1918
+ margin-bottom: 5rem !important;
1919
+ }
1920
+
1921
+ .xlg-my-6 {
1922
+ margin-top: 6rem !important;
1923
+ margin-bottom: 6rem !important;
1924
+ }
1925
+
1926
+ .xlg-my-7 {
1927
+ margin-top: 7rem !important;
1928
+ margin-bottom: 7rem !important;
1929
+ }
1930
+
1931
+ .xlg-my-8 {
1932
+ margin-top: 8rem !important;
1933
+ margin-bottom: 8rem !important;
1934
+ }
1935
+
1936
+ .xlg-mt-0 { margin-top: 0 !important; }
1937
+ .xlg-mt-hr { margin-top: .5rem !important; }
1938
+ .xlg-mt-1 { margin-top: 1rem !important; }
1939
+ .xlg-mt-2 { margin-top: 2rem !important; }
1940
+ .xlg-mt-3 { margin-top: 3rem !important; }
1941
+ .xlg-mt-4 { margin-top: 4rem !important; }
1942
+ .xlg-mt-5 { margin-top: 5rem !important; }
1943
+ .xlg-mt-6 { margin-top: 6rem !important; }
1944
+ .xlg-mt-7 { margin-top: 7rem !important; }
1945
+ .xlg-mt-8 { margin-top: 8rem !important; }
1946
+
1947
+ .xlg-mr-0 { margin-right: 0 !important; }
1948
+ .xlg-mr-hr { margin-right: .5rem !important; }
1949
+ .xlg-mr-1 { margin-right: 1rem !important; }
1950
+ .xlg-mr-2 { margin-right: 2rem !important; }
1951
+ .xlg-mr-3 { margin-right: 3rem !important; }
1952
+ .xlg-mr-4 { margin-right: 4rem !important; }
1953
+ .xlg-mr-5 { margin-right: 5rem !important; }
1954
+ .xlg-mr-6 { margin-right: 6rem !important; }
1955
+ .xlg-mr-7 { margin-right: 7rem !important; }
1956
+ .xlg-mr-8 { margin-right: 8rem !important; }
1957
+
1958
+ .xlg-ml-0 { margin-left: 0 !important; }
1959
+ .xlg-ml-hr { margin-left: .5rem !important; }
1960
+ .xlg-ml-1 { margin-left: 1rem !important; }
1961
+ .xlg-ml-2 { margin-left: 2rem !important; }
1962
+ .xlg-ml-3 { margin-left: 3rem !important; }
1963
+ .xlg-ml-4 { margin-left: 4rem !important; }
1964
+ .xlg-ml-5 { margin-left: 5rem !important; }
1965
+ .xlg-ml-6 { margin-left: 6rem !important; }
1966
+ .xlg-ml-7 { margin-left: 7rem !important; }
1967
+ .xlg-ml-8 { margin-left: 8rem !important; }
1968
+
1969
+ .xlg-mb-0 { margin-bottom: 0 !important; }
1970
+ .xlg-mb-hr { margin-bottom: .5rem !important; }
1971
+ .xlg-mb-1 { margin-bottom: 1rem !important; }
1972
+ .xlg-mb-2 { margin-bottom: 2rem !important; }
1973
+ .xlg-mb-3 { margin-bottom: 3rem !important; }
1974
+ .xlg-mb-4 { margin-bottom: 4rem !important; }
1975
+ .xlg-mb-5 { margin-bottom: 5rem !important; }
1976
+ .xlg-mb-6 { margin-bottom: 6rem !important; }
1977
+ .xlg-mb-7 { margin-bottom: 7rem !important; }
1978
+ .xlg-mb-8 { margin-bottom: 8rem !important; }
1979
+
1980
+ /* XLARGE PADDING HELLPERS */
1981
+ .xlg-p-0 { padding: 0 !important; }
1982
+ .xlg-p-hr { padding: .5rem !important; }
1983
+ .xlg-p-1 { padding: 1rem !important; }
1984
+ .xlg-p-2 { padding: 2rem !important; }
1985
+ .xlg-p-3 { padding: 3rem !important; }
1986
+ .xlg-p-4 { padding: 4rem !important; }
1987
+ .xlg-p-5 { padding: 5rem !important; }
1988
+ .xlg-p-6 { padding: 6rem !important; }
1989
+ .xlg-p-7 { padding: 7rem !important; }
1990
+ .xlg-p-8 { padding: 8rem !important; }
1991
+
1992
+ .xlg-px-0 {
1993
+ padding-left: 0 !important;
1994
+ padding-right: 0 !important;
1995
+ }
1996
+
1997
+ .xlg-px-hr {
1998
+ padding-left: .5rem !important;
1999
+ padding-right: .5rem !important;
2000
+ }
2001
+
2002
+ .xlg-px-1 {
2003
+ padding-left: 1rem !important;
2004
+ padding-right: 1rem !important;
2005
+ }
2006
+
2007
+ .xlg-px-2 {
2008
+ padding-left: 2rem !important;
2009
+ padding-right: 2rem !important;
2010
+ }
2011
+
2012
+ .xlg-px-3 {
2013
+ padding-left: 3rem !important;
2014
+ padding-right: 3rem !important;
2015
+ }
2016
+
2017
+ .xlg-px-4 {
2018
+ padding-left: 4rem !important;
2019
+ padding-right: 4rem !important;
2020
+ }
2021
+
2022
+ .xlg-px-5 {
2023
+ padding-left: 5rem !important;
2024
+ padding-right: 5rem !important;
2025
+ }
2026
+
2027
+ .xlg-px-6 {
2028
+ padding-left: 6rem !important;
2029
+ padding-right: 6rem !important;
2030
+ }
2031
+
2032
+ .xlg-px-7 {
2033
+ padding-left: 7rem !important;
2034
+ padding-right: 7rem !important;
2035
+ }
2036
+
2037
+ .xlg-px-8 {
2038
+ padding-left: 8rem !important;
2039
+ padding-right: 8rem !important;
2040
+ }
2041
+
2042
+ .xlg-py-0 {
2043
+ padding-top: 0 !important;
2044
+ padding-bottom: 0 !important;
2045
+ }
2046
+
2047
+ .xlg-py-hr {
2048
+ padding-top: .5rem !important;
2049
+ padding-bottom: .5rem !important;
2050
+ }
2051
+
2052
+ .xlg-py-1 {
2053
+ padding-top: 1rem !important;
2054
+ padding-bottom: 1rem !important;
2055
+ }
2056
+
2057
+ .xlg-py-2 {
2058
+ padding-top: 2rem !important;
2059
+ padding-bottom: 2rem !important;
2060
+ }
2061
+
2062
+ .xlg-py-3 {
2063
+ padding-top: 3rem !important;
2064
+ padding-bottom: 3rem !important;
2065
+ }
2066
+
2067
+ .xlg-py-4 {
2068
+ padding-top: 4rem !important;
2069
+ padding-bottom: 4rem !important;
2070
+ }
2071
+
2072
+ .xlg-py-5 {
2073
+ padding-top: 5rem !important;
2074
+ padding-bottom: 5rem !important;
2075
+ }
2076
+
2077
+ .xlg-py-6 {
2078
+ padding-top: 6rem !important;
2079
+ padding-bottom: 6rem !important;
2080
+ }
2081
+
2082
+ .xlg-py-7 {
2083
+ padding-top: 7rem !important;
2084
+ padding-bottom: 7rem !important;
2085
+ }
2086
+
2087
+ .xlg-py-8 {
2088
+ padding-top: 8rem !important;
2089
+ padding-bottom: 8rem !important;
2090
+ }
2091
+
2092
+ .xlg-pt-0 { padding-top: 0 !important; }
2093
+ .xlg-pt-hr { padding-top: .5rem !important; }
2094
+ .xlg-pt-1 { padding-top: 1rem !important; }
2095
+ .xlg-pt-2 { padding-top: 2rem !important; }
2096
+ .xlg-pt-3 { padding-top: 3rem !important; }
2097
+ .xlg-pt-4 { padding-top: 4rem !important; }
2098
+ .xlg-pt-5 { padding-top: 5rem !important; }
2099
+ .xlg-pt-6 { padding-top: 6rem !important; }
2100
+ .xlg-pt-7 { padding-top: 7rem !important; }
2101
+ .xlg-pt-8 { padding-top: 8rem !important; }
2102
+
2103
+ .xlg-pr-0 { padding-right: 0 !important; }
2104
+ .xlg-pr-hr { padding-right: .5rem !important; }
2105
+ .xlg-pr-1 { padding-right: 1rem !important; }
2106
+ .xlg-pr-2 { padding-right: 2rem !important; }
2107
+ .xlg-pr-3 { padding-right: 3rem !important; }
2108
+ .xlg-pr-4 { padding-right: 4rem !important; }
2109
+ .xlg-pr-5 { padding-right: 5rem !important; }
2110
+ .xlg-pr-6 { padding-right: 6rem !important; }
2111
+ .xlg-pr-7 { padding-right: 7rem !important; }
2112
+ .xlg-pr-8 { padding-right: 8rem !important; }
2113
+
2114
+ .xlg-pl-0 { padding-left: 0 !important; }
2115
+ .xlg-pl-hr { padding-left: .5rem !important; }
2116
+ .xlg-pl-1 { padding-left: 1rem !important; }
2117
+ .xlg-pl-2 { padding-left: 2rem !important; }
2118
+ .xlg-pl-3 { padding-left: 3rem !important; }
2119
+ .xlg-pl-4 { padding-left: 4rem !important; }
2120
+ .xlg-pl-5 { padding-left: 5rem !important; }
2121
+ .xlg-pl-6 { padding-left: 6rem !important; }
2122
+ .xlg-pl-7 { padding-left: 7rem !important; }
2123
+ .xlg-pl-8 { padding-left: 8rem !important; }
2124
+
2125
+ .xlg-pb-0 { padding-bottom: 0 !important; }
2126
+ .xlg-pb-hr {padding-bottom: .5rem !important; }
2127
+ .xlg-pb-1 { padding-bottom: 1rem !important; }
2128
+ .xlg-pb-2 { padding-bottom: 2rem !important; }
2129
+ .xlg-pb-3 { padding-bottom: 3rem !important; }
2130
+ .xlg-pb-4 { padding-bottom: 4rem !important; }
2131
+ .xlg-pb-5 { padding-bottom: 5rem !important; }
2132
+ .xlg-pb-6 { padding-bottom: 6rem !important; }
2133
+ .xlg-pb-7 { padding-bottom: 7rem !important; }
2134
+ .xlg-pb-8 { padding-bottom: 8rem !important; }
2135
+ }
2136
+
2137
+ @media (min-width: $xxlarge) {
2138
+ /* XXLARGE MARGIN HELLPERS */
2139
+ .xxlg-m-0 { margin: 0 !important; }
2140
+ .xxlg-m-hr { margin: .5rem !important; }
2141
+ .xxlg-m-1 { margin: 1rem !important; }
2142
+ .xxlg-m-2 { margin: 2rem !important; }
2143
+ .xxlg-m-3 { margin: 3rem !important; }
2144
+ .xxlg-m-4 { margin: 4rem !important; }
2145
+ .xxlg-m-5 { margin: 5rem !important; }
2146
+ .xxlg-m-6 { margin: 6rem !important; }
2147
+ .xxlg-m-7{ margin: 7rem !important; }
2148
+ .xxlg-m-8{ margin: 8rem !important; }
2149
+
2150
+ .xxlg-mx-0 {
2151
+ margin-left: 0 !important;
2152
+ margin-right: 0 !important;
2153
+ }
2154
+
2155
+ .xxlg-mx-hr {
2156
+ margin-left: .5rem !important;
2157
+ margin-right: .5rem !important;
2158
+ }
2159
+
2160
+ .xxlg-mx-1 {
2161
+ margin-left: 1rem !important;
2162
+ margin-right: 1rem !important;
2163
+ }
2164
+
2165
+ .xxlg-mx-2 {
2166
+ margin-left: 2rem !important;
2167
+ margin-right: 2rem !important;
2168
+ }
2169
+
2170
+ .xxlg-mx-3 {
2171
+ margin-left: 3rem !important;
2172
+ margin-right: 3rem !important;
2173
+ }
2174
+
2175
+ .xxlg-mx-4 {
2176
+ margin-left: 4rem !important;
2177
+ margin-right: 4rem !important;
2178
+ }
2179
+
2180
+ .xxlg-mx-5 {
2181
+ margin-left: 5rem !important;
2182
+ margin-right: 5rem !important;
2183
+ }
2184
+
2185
+ .xxlg-mx-6 {
2186
+ margin-left: 6rem !important;
2187
+ margin-right: 6rem !important;
2188
+ }
2189
+
2190
+ .xxlg-mx-7 {
2191
+ margin-left: 7rem !important;
2192
+ margin-right: 7rem !important;
2193
+ }
2194
+
2195
+ .xxlg-mx-8 {
2196
+ margin-left: 8rem !important;
2197
+ margin-right: 8rem !important;
2198
+ }
2199
+
2200
+ .xxlg-my-0 {
2201
+ margin-top: 0 !important;
2202
+ margin-bottom: 0 !important;
2203
+ }
2204
+
2205
+ .xxlg-my-hr {
2206
+ margin-top: .5rem !important;
2207
+ margin-bottom: .5rem !important;
2208
+ }
2209
+
2210
+ .xxlg-my-1 {
2211
+ margin-top: 1rem !important;
2212
+ margin-bottom: 1rem !important;
2213
+ }
2214
+
2215
+ .xxlg-my-2 {
2216
+ margin-top: 2rem !important;
2217
+ margin-bottom: 2rem !important;
2218
+ }
2219
+
2220
+ .xxlg-my-3 {
2221
+ margin-top: 3rem !important;
2222
+ margin-bottom: 3rem !important;
2223
+ }
2224
+
2225
+ .xxlg-my-4 {
2226
+ margin-top: 4rem !important;
2227
+ margin-bottom: 4rem !important;
2228
+ }
2229
+
2230
+ .xxlg-my-5 {
2231
+ margin-top: 5rem !important;
2232
+ margin-bottom: 5rem !important;
2233
+ }
2234
+
2235
+ .xxlg-my-6 {
2236
+ margin-top: 6rem !important;
2237
+ margin-bottom: 6rem !important;
2238
+ }
2239
+
2240
+ .xxlg-my-7 {
2241
+ margin-top: 7rem !important;
2242
+ margin-bottom: 7rem !important;
2243
+ }
2244
+
2245
+ .xxlg-my-8 {
2246
+ margin-top: 8rem !important;
2247
+ margin-bottom: 8rem !important;
2248
+ }
2249
+
2250
+ .xxlg-mt-0 { margin-top: 0 !important; }
2251
+ .xxlg-mt-hr { margin-top: .5rem !important; }
2252
+ .xxlg-mt-1 { margin-top: 1rem !important; }
2253
+ .xxlg-mt-2 { margin-top: 2rem !important; }
2254
+ .xxlg-mt-3 { margin-top: 3rem !important; }
2255
+ .xxlg-mt-4 { margin-top: 4rem !important; }
2256
+ .xxlg-mt-5 { margin-top: 5rem !important; }
2257
+ .xxlg-mt-6 { margin-top: 6rem !important; }
2258
+ .xxlg-mt-7 { margin-top: 7rem !important; }
2259
+ .xxlg-mt-8 { margin-top: 8rem !important; }
2260
+
2261
+ .xxlg-mr-0 { margin-right: 0 !important; }
2262
+ .xxlg-mr-hr { margin-right: .5rem !important; }
2263
+ .xxlg-mr-1 { margin-right: 1rem !important; }
2264
+ .xxlg-mr-2 { margin-right: 2rem !important; }
2265
+ .xxlg-mr-3 { margin-right: 3rem !important; }
2266
+ .xxlg-mr-4 { margin-right: 4rem !important; }
2267
+ .xxlg-mr-5 { margin-right: 5rem !important; }
2268
+ .xxlg-mr-6 { margin-right: 6rem !important; }
2269
+ .xxlg-mr-7 { margin-right: 7rem !important; }
2270
+ .xxlg-mr-8 { margin-right: 8rem !important; }
2271
+
2272
+ .xxlg-ml-0 { margin-left: 0 !important; }
2273
+ .xxlg-ml-hr { margin-left: .5rem !important; }
2274
+ .xxlg-ml-1 { margin-left: 1rem !important; }
2275
+ .xxlg-ml-2 { margin-left: 2rem !important; }
2276
+ .xxlg-ml-3 { margin-left: 3rem !important; }
2277
+ .xxlg-ml-4 { margin-left: 4rem !important; }
2278
+ .xxlg-ml-5 { margin-left: 5rem !important; }
2279
+ .xxlg-ml-6 { margin-left: 6rem !important; }
2280
+ .xxlg-ml-7 { margin-left: 7rem !important; }
2281
+ .xxlg-ml-8 { margin-left: 8rem !important; }
2282
+
2283
+ .xxlg-mb-0 { margin-bottom: 0 !important; }
2284
+ .xxlg-mb-hr { margin-bottom: .5rem !important; }
2285
+ .xxlg-mb-1 { margin-bottom: 1rem !important; }
2286
+ .xxlg-mb-2 { margin-bottom: 2rem !important; }
2287
+ .xxlg-mb-3 { margin-bottom: 3rem !important; }
2288
+ .xxlg-mb-4 { margin-bottom: 4rem !important; }
2289
+ .xxlg-mb-5 { margin-bottom: 5rem !important; }
2290
+ .xxlg-mb-6 { margin-bottom: 6rem !important; }
2291
+ .xxlg-mb-7 { margin-bottom: 7rem !important; }
2292
+ .xxlg-mb-8 { margin-bottom: 8rem !important; }
2293
+
2294
+ /* XXLARGE PADDING HELLPERS */
2295
+ .xxlg-p-0 { padding: 0 !important; }
2296
+ .xxlg-p-hr { padding: .5rem !important; }
2297
+ .xxlg-p-1 { padding: 1rem !important; }
2298
+ .xxlg-p-2 { padding: 2rem !important; }
2299
+ .xxlg-p-3 { padding: 3rem !important; }
2300
+ .xxlg-p-4 { padding: 4rem !important; }
2301
+ .xxlg-p-5 { padding: 5rem !important; }
2302
+ .xxlg-p-6 { padding: 6rem !important; }
2303
+ .xxlg-p-7 { padding: 7rem !important; }
2304
+ .xxlg-p-8 { padding: 8rem !important; }
2305
+
2306
+ .xxlg-px-0 {
2307
+ padding-left: 0 !important;
2308
+ padding-right: 0 !important;
2309
+ }
2310
+
2311
+ .xxlg-px-hr {
2312
+ padding-left: .5rem !important;
2313
+ padding-right: .5rem !important;
2314
+ }
2315
+
2316
+ .xxlg-px-1 {
2317
+ padding-left: 1rem !important;
2318
+ padding-right: 1rem !important;
2319
+ }
2320
+
2321
+ .xxlg-px-2 {
2322
+ padding-left: 2rem !important;
2323
+ padding-right: 2rem !important;
2324
+ }
2325
+
2326
+ .xxlg-px-3 {
2327
+ padding-left: 3rem !important;
2328
+ padding-right: 3rem !important;
2329
+ }
2330
+
2331
+ .xxlg-px-4 {
2332
+ padding-left: 4rem !important;
2333
+ padding-right: 4rem !important;
2334
+ }
2335
+
2336
+ .xxlg-px-5 {
2337
+ padding-left: 5rem !important;
2338
+ padding-right: 5rem !important;
2339
+ }
2340
+
2341
+ .xxlg-px-6 {
2342
+ padding-left: 6rem !important;
2343
+ padding-right: 6rem !important;
2344
+ }
2345
+
2346
+ .xxlg-px-7 {
2347
+ padding-left: 7rem !important;
2348
+ padding-right: 7rem !important;
2349
+ }
2350
+
2351
+ .xxlg-px-8 {
2352
+ padding-left: 8rem !important;
2353
+ padding-right: 8rem !important;
2354
+ }
2355
+
2356
+ .xxlg-py-0 {
2357
+ padding-top: 0 !important;
2358
+ padding-bottom: 0 !important;
2359
+ }
2360
+
2361
+ .xxlg-py-hr {
2362
+ padding-top: .5rem !important;
2363
+ padding-bottom: .5rem !important;
2364
+ }
2365
+
2366
+ .xxlg-py-1 {
2367
+ padding-top: 1rem !important;
2368
+ padding-bottom: 1rem !important;
2369
+ }
2370
+
2371
+ .xxlg-py-2 {
2372
+ padding-top: 2rem !important;
2373
+ padding-bottom: 2rem !important;
2374
+ }
2375
+
2376
+ .xxlg-py-3 {
2377
+ padding-top: 3rem !important;
2378
+ padding-bottom: 3rem !important;
2379
+ }
2380
+
2381
+ .xxlg-py-4 {
2382
+ padding-top: 4rem !important;
2383
+ padding-bottom: 4rem !important;
2384
+ }
2385
+
2386
+ .xxlg-py-5 {
2387
+ padding-top: 5rem !important;
2388
+ padding-bottom: 5rem !important;
2389
+ }
2390
+
2391
+ .xxlg-py-6 {
2392
+ padding-top: 6rem !important;
2393
+ padding-bottom: 6rem !important;
2394
+ }
2395
+
2396
+ .xxlg-py-7 {
2397
+ padding-top: 7rem !important;
2398
+ padding-bottom: 7rem !important;
2399
+ }
2400
+
2401
+ .xxlg-py-8 {
2402
+ padding-top: 8rem !important;
2403
+ padding-bottom: 8rem !important;
2404
+ }
2405
+
2406
+ .xxlg-pt-0 { padding-top: 0 !important; }
2407
+ .xxlg-pt-hr { padding-top: .5rem !important; }
2408
+ .xxlg-pt-1 { padding-top: 1rem !important; }
2409
+ .xxlg-pt-2 { padding-top: 2rem !important; }
2410
+ .xxlg-pt-3 { padding-top: 3rem !important; }
2411
+ .xxlg-pt-4 { padding-top: 4rem !important; }
2412
+ .xxlg-pt-5 { padding-top: 5rem !important; }
2413
+ .xxlg-pt-6 { padding-top: 6rem !important; }
2414
+ .xxlg-pt-7 { padding-top: 7rem !important; }
2415
+ .xxlg-pt-8 { padding-top: 8rem !important; }
2416
+
2417
+ .xxlg-pr-0 { padding-right: 0 !important; }
2418
+ .xxlg-pr-hr { padding-right: .5rem !important; }
2419
+ .xxlg-pr-1 { padding-right: 1rem !important; }
2420
+ .xxlg-pr-2 { padding-right: 2rem !important; }
2421
+ .xxlg-pr-3 { padding-right: 3rem !important; }
2422
+ .xxlg-pr-4 { padding-right: 4rem !important; }
2423
+ .xxlg-pr-5 { padding-right: 5rem !important; }
2424
+ .xxlg-pr-6 { padding-right: 6rem !important; }
2425
+ .xxlg-pr-7 { padding-right: 7rem !important; }
2426
+ .xxlg-pr-8 { padding-right: 8rem !important; }
2427
+
2428
+ .xxlg-pl-0 { padding-left: 0 !important; }
2429
+ .xxlg-pl-hr { padding-left: .5rem !important; }
2430
+ .xxlg-pl-1 { padding-left: 1rem !important; }
2431
+ .xxlg-pl-2 { padding-left: 2rem !important; }
2432
+ .xxlg-pl-3 { padding-left: 3rem !important; }
2433
+ .xxlg-pl-4 { padding-left: 4rem !important; }
2434
+ .xxlg-pl-5 { padding-left: 5rem !important; }
2435
+ .xxlg-pl-6 { padding-left: 6rem !important; }
2436
+ .xxlg-pl-7 { padding-left: 7rem !important; }
2437
+ .xxlg-pl-8 { padding-left: 8rem !important; }
2438
+
2439
+ .xxlg-pb-0 { padding-bottom: 0 !important; }
2440
+ .xxlg-pb-hr {padding-bottom: .5rem !important; }
2441
+ .xxlg-pb-1 { padding-bottom: 1rem !important; }
2442
+ .xxlg-pb-2 { padding-bottom: 2rem !important; }
2443
+ .xxlg-pb-3 { padding-bottom: 3rem !important; }
2444
+ .xxlg-pb-4 { padding-bottom: 4rem !important; }
2445
+ .xxlg-pb-5 { padding-bottom: 5rem !important; }
2446
+ .xxlg-pb-6 { padding-bottom: 6rem !important; }
2447
+ .xxlg-pb-7 { padding-bottom: 7rem !important; }
2448
+ .xxlg-pb-8 { padding-bottom: 8rem !important; }
2449
+ }