PluginProbe
Getwid – Gutenberg Blocks / 3.0.2
Getwid – Gutenberg Blocks v3.0.2
3.0.2 3.0.1 3.0.0 2.1.0 2.1.1 2.1.2 2.1.3 2.2.0 trunk 1.8.7 1.9.1 2.0.10 2.0.11 2.0.12 2.0.13 2.0.14 2.0.5 2.0.6 2.0.7 2.0.8 2.0.9
getwid / assets / common-styles / style.css

style.css in Getwid – Gutenberg Blocks 3.0.2, at assets/common-styles/style.css

1,710 lines 38.0 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 /*!
2 * getwid-common-styles
3 */
4 /*
5 * Blocks that require common styles:
6 *
7 * template-parts/acf/background-image
8 * template-parts/post-featured-background-image
9 * advanced-heading
10 * advanced-spacer
11 * content-slider
12 * content-timeline
13 * countdown
14 * custom-post-type
15 * icon-box
16 * icon
17 * image-box
18 * image-hotspot
19 * images-slider
20 * media-text-slider
21 * post-carousel
22 * post-slider
23 * recent-posts
24 * section
25 * social-links
26 * video-popup
27 */
28 @keyframes slideInDownShort {
29 from {
30 transform: translate3d(0, -100px, 0);
31 visibility: visible;
32 }
33 to {
34 transform: translate3d(0, 0, 0);
35 }
36 }
37 .slideInDownShort {
38 animation-name: slideInDownShort;
39 }
40
41 @keyframes slideInLeftShort {
42 from {
43 transform: translate3d(-100px, 0, 0);
44 visibility: visible;
45 }
46 to {
47 transform: translate3d(0, 0, 0);
48 }
49 }
50 .slideInLeftShort {
51 animation-name: slideInLeftShort;
52 }
53
54 @keyframes slideInRightShort {
55 from {
56 transform: translate3d(100px, 0, 0);
57 visibility: visible;
58 }
59 to {
60 transform: translate3d(0, 0, 0);
61 }
62 }
63 .slideInRightShort {
64 animation-name: slideInRightShort;
65 }
66
67 @keyframes slideInUpShort {
68 from {
69 transform: translate3d(0, 100px, 0);
70 visibility: visible;
71 }
72 to {
73 transform: translate3d(0, 0, 0);
74 }
75 }
76 .slideInUpShort {
77 animation-name: slideInUpShort;
78 }
79
80 @keyframes bounceInDownShort {
81 from, 60%, 75%, 90%, to {
82 animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
83 }
84 0% {
85 opacity: 0;
86 transform: translate3d(0, -100px, 0);
87 }
88 60% {
89 opacity: 1;
90 transform: translate3d(0, 25px, 0);
91 }
92 75% {
93 transform: translate3d(0, -10px, 0);
94 }
95 90% {
96 transform: translate3d(0, 5px, 0);
97 }
98 to {
99 transform: translate3d(0, 0, 0);
100 }
101 }
102 .bounceInDownShort {
103 animation-name: bounceInDownShort;
104 }
105
106 @keyframes bounceInLeftShort {
107 from, 60%, 75%, 90%, to {
108 animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
109 }
110 0% {
111 opacity: 0;
112 transform: translate3d(-100px, 0, 0);
113 }
114 60% {
115 opacity: 1;
116 transform: translate3d(25px, 0, 0);
117 }
118 75% {
119 transform: translate3d(-10px, 0, 0);
120 }
121 90% {
122 transform: translate3d(5px, 0, 0);
123 }
124 to {
125 transform: translate3d(0, 0, 0);
126 }
127 }
128 .bounceInLeftShort {
129 animation-name: bounceInLeftShort;
130 }
131
132 @keyframes bounceInRightShort {
133 from, 60%, 75%, 90%, to {
134 animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
135 }
136 from {
137 opacity: 0;
138 transform: translate3d(100px, 0, 0);
139 }
140 60% {
141 opacity: 1;
142 transform: translate3d(-25px, 0, 0);
143 }
144 75% {
145 transform: translate3d(10px, 0, 0);
146 }
147 90% {
148 transform: translate3d(-5px, 0, 0);
149 }
150 to {
151 transform: translate3d(0, 0, 0);
152 }
153 }
154 .bounceInRightShort {
155 animation-name: bounceInRightShort;
156 }
157
158 @keyframes bounceInUpShort {
159 from, 60%, 75%, 90%, to {
160 animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
161 }
162 from {
163 opacity: 0;
164 transform: translate3d(0, 100px, 0);
165 }
166 60% {
167 opacity: 1;
168 transform: translate3d(0, -20px, 0);
169 }
170 75% {
171 transform: translate3d(0, 10px, 0);
172 }
173 90% {
174 transform: translate3d(0, -5px, 0);
175 }
176 to {
177 transform: translate3d(0, 0, 0);
178 }
179 }
180 .bounceInUpShort {
181 animation-name: bounceInUpShort;
182 }
183
184 @keyframes fadeInDownShort {
185 from {
186 opacity: 0;
187 transform: translate3d(0, -100px, 0);
188 }
189 to {
190 opacity: 1;
191 transform: translate3d(0, 0, 0);
192 }
193 }
194 .fadeInDownShort {
195 animation-name: fadeInDownShort;
196 }
197
198 @keyframes fadeInLeftShort {
199 from {
200 opacity: 0;
201 transform: translate3d(-100px, 0, 0);
202 }
203 to {
204 opacity: 1;
205 transform: translate3d(0, 0, 0);
206 }
207 }
208 .fadeInLeftShort {
209 animation-name: fadeInLeftShort;
210 }
211
212 @keyframes fadeInRightShort {
213 from {
214 opacity: 0;
215 transform: translate3d(100px, 0, 0);
216 }
217 to {
218 opacity: 1;
219 transform: translate3d(0, 0, 0);
220 }
221 }
222 .fadeInRightShort {
223 animation-name: fadeInRightShort;
224 }
225
226 @keyframes fadeInUpShort {
227 from {
228 opacity: 0;
229 transform: translate3d(0, 100px, 0);
230 }
231 to {
232 opacity: 1;
233 transform: translate3d(0, 0, 0);
234 }
235 }
236 .fadeInUpShort {
237 animation-name: fadeInUpShort;
238 }
239
240 @keyframes lightSpeedInShort {
241 from {
242 transform: translate3d(400px, 0, 0) skewX(-30deg);
243 opacity: 0;
244 }
245 60% {
246 transform: skewX(20deg);
247 opacity: 1;
248 }
249 80% {
250 transform: skewX(-5deg);
251 }
252 to {
253 transform: translate3d(0, 0, 0);
254 }
255 }
256 .lightSpeedInShort {
257 animation-name: lightSpeedInShort;
258 animation-timing-function: ease-out;
259 }
260
261 @keyframes getwidPulseAnimation {
262 0% {
263 transform: scale(1);
264 opacity: 1;
265 }
266 100% {
267 transform: scale(1.5);
268 opacity: 0;
269 }
270 }
271 @keyframes getwidTimelinePointBounce {
272 0% {
273 opacity: 0;
274 transform: scale(0.5);
275 }
276 60% {
277 opacity: 1;
278 transform: scale(1.2);
279 }
280 100% {
281 transform: scale(1);
282 }
283 }
284 @keyframes getwidFadeIn {
285 from {
286 opacity: 0;
287 }
288 to {
289 opacity: 1;
290 }
291 }
292 .wp-block-getwid-post-carousel.is-carousel .slick-list,
293 .wp-block-getwid-images-slider.is-carousel .slick-list {
294 margin: 0 -5px;
295 }
296 .wp-block-getwid-post-carousel.is-carousel .slick-slide,
297 .wp-block-getwid-images-slider.is-carousel .slick-slide {
298 margin: 0 5px;
299 }
300 .wp-block-getwid-post-carousel.has-slides-gap-none .slick-list,
301 .wp-block-getwid-images-slider.has-slides-gap-none .slick-list {
302 margin: 0;
303 }
304 .wp-block-getwid-post-carousel.has-slides-gap-none .slick-slide,
305 .wp-block-getwid-images-slider.has-slides-gap-none .slick-slide {
306 margin: 0;
307 }
308 .wp-block-getwid-post-carousel.has-slides-gap-small .slick-list,
309 .wp-block-getwid-images-slider.has-slides-gap-small .slick-list {
310 margin: 0 -5px;
311 }
312 .wp-block-getwid-post-carousel.has-slides-gap-small .slick-slide,
313 .wp-block-getwid-images-slider.has-slides-gap-small .slick-slide {
314 margin: 0 5px;
315 }
316 .wp-block-getwid-post-carousel.has-slides-gap-normal .slick-list,
317 .wp-block-getwid-images-slider.has-slides-gap-normal .slick-list {
318 margin: 0 -10px;
319 }
320 .wp-block-getwid-post-carousel.has-slides-gap-normal .slick-slide,
321 .wp-block-getwid-images-slider.has-slides-gap-normal .slick-slide {
322 margin: 0 10px;
323 }
324 .wp-block-getwid-post-carousel.has-slides-gap-large .slick-list,
325 .wp-block-getwid-images-slider.has-slides-gap-large .slick-list {
326 margin: 0 -20px;
327 }
328 .wp-block-getwid-post-carousel.has-slides-gap-large .slick-slide,
329 .wp-block-getwid-images-slider.has-slides-gap-large .slick-slide {
330 margin: 0 20px;
331 }
332 .wp-block-getwid-post-carousel.has-slides-gap-huge .slick-list,
333 .wp-block-getwid-images-slider.has-slides-gap-huge .slick-list {
334 margin: 0 -30px;
335 }
336 .wp-block-getwid-post-carousel.has-slides-gap-huge .slick-slide,
337 .wp-block-getwid-images-slider.has-slides-gap-huge .slick-slide {
338 margin: 0 30px;
339 }
340
341 .wp-block-getwid-content-slider .slick-prev,
342 .wp-block-getwid-content-slider .slick-next,
343 .wp-block-getwid-images-slider .slick-prev,
344 .wp-block-getwid-images-slider .slick-next,
345 .wp-block-getwid-media-text-slider .slick-prev,
346 .wp-block-getwid-media-text-slider .slick-next,
347 .wp-block-getwid-post-slider .slick-prev,
348 .wp-block-getwid-post-slider .slick-next,
349 .wp-block-getwid-post-carousel .slick-prev,
350 .wp-block-getwid-post-carousel .slick-next {
351 z-index: 1;
352 background-color: transparent;
353 }
354 .wp-block-getwid-content-slider .slick-prev:before,
355 .wp-block-getwid-content-slider .slick-next:before,
356 .wp-block-getwid-images-slider .slick-prev:before,
357 .wp-block-getwid-images-slider .slick-next:before,
358 .wp-block-getwid-media-text-slider .slick-prev:before,
359 .wp-block-getwid-media-text-slider .slick-next:before,
360 .wp-block-getwid-post-slider .slick-prev:before,
361 .wp-block-getwid-post-slider .slick-next:before,
362 .wp-block-getwid-post-carousel .slick-prev:before,
363 .wp-block-getwid-post-carousel .slick-next:before {
364 color: #000;
365 }
366 .wp-block-getwid-content-slider .slick-prev:hover, .wp-block-getwid-content-slider .slick-prev:focus,
367 .wp-block-getwid-content-slider .slick-next:hover,
368 .wp-block-getwid-content-slider .slick-next:focus,
369 .wp-block-getwid-images-slider .slick-prev:hover,
370 .wp-block-getwid-images-slider .slick-prev:focus,
371 .wp-block-getwid-images-slider .slick-next:hover,
372 .wp-block-getwid-images-slider .slick-next:focus,
373 .wp-block-getwid-media-text-slider .slick-prev:hover,
374 .wp-block-getwid-media-text-slider .slick-prev:focus,
375 .wp-block-getwid-media-text-slider .slick-next:hover,
376 .wp-block-getwid-media-text-slider .slick-next:focus,
377 .wp-block-getwid-post-slider .slick-prev:hover,
378 .wp-block-getwid-post-slider .slick-prev:focus,
379 .wp-block-getwid-post-slider .slick-next:hover,
380 .wp-block-getwid-post-slider .slick-next:focus,
381 .wp-block-getwid-post-carousel .slick-prev:hover,
382 .wp-block-getwid-post-carousel .slick-prev:focus,
383 .wp-block-getwid-post-carousel .slick-next:hover,
384 .wp-block-getwid-post-carousel .slick-next:focus {
385 text-decoration: none;
386 }
387 .wp-block-getwid-content-slider .slick-dotted.slick-slider,
388 .wp-block-getwid-images-slider .slick-dotted.slick-slider,
389 .wp-block-getwid-media-text-slider .slick-dotted.slick-slider,
390 .wp-block-getwid-post-slider .slick-dotted.slick-slider,
391 .wp-block-getwid-post-carousel .slick-dotted.slick-slider {
392 margin-bottom: 0;
393 padding-bottom: 30px;
394 }
395 .wp-block-getwid-content-slider .slick-dots,
396 .wp-block-getwid-images-slider .slick-dots,
397 .wp-block-getwid-media-text-slider .slick-dots,
398 .wp-block-getwid-post-slider .slick-dots,
399 .wp-block-getwid-post-carousel .slick-dots {
400 margin: 0 auto;
401 max-width: 100%;
402 width: 100%;
403 bottom: 0;
404 }
405 .wp-block-getwid-content-slider .slick-dots li,
406 .wp-block-getwid-images-slider .slick-dots li,
407 .wp-block-getwid-media-text-slider .slick-dots li,
408 .wp-block-getwid-post-slider .slick-dots li,
409 .wp-block-getwid-post-carousel .slick-dots li {
410 margin: 0 5px;
411 }
412 .wp-block-getwid-content-slider.has-arrows-inside,
413 .wp-block-getwid-images-slider.has-arrows-inside,
414 .wp-block-getwid-media-text-slider.has-arrows-inside,
415 .wp-block-getwid-post-slider.has-arrows-inside,
416 .wp-block-getwid-post-carousel.has-arrows-inside {
417 padding-left: 0;
418 padding-right: 0;
419 }
420 .wp-block-getwid-content-slider.has-arrows-inside .slick-prev,
421 .wp-block-getwid-content-slider.has-arrows-inside .slick-next,
422 .wp-block-getwid-images-slider.has-arrows-inside .slick-prev,
423 .wp-block-getwid-images-slider.has-arrows-inside .slick-next,
424 .wp-block-getwid-media-text-slider.has-arrows-inside .slick-prev,
425 .wp-block-getwid-media-text-slider.has-arrows-inside .slick-next,
426 .wp-block-getwid-post-slider.has-arrows-inside .slick-prev,
427 .wp-block-getwid-post-slider.has-arrows-inside .slick-next,
428 .wp-block-getwid-post-carousel.has-arrows-inside .slick-prev,
429 .wp-block-getwid-post-carousel.has-arrows-inside .slick-next {
430 text-shadow: 0px 0px 3px rgba(0, 0, 0, 0.5);
431 }
432 .wp-block-getwid-content-slider.has-arrows-inside .slick-prev:before,
433 .wp-block-getwid-content-slider.has-arrows-inside .slick-next:before,
434 .wp-block-getwid-images-slider.has-arrows-inside .slick-prev:before,
435 .wp-block-getwid-images-slider.has-arrows-inside .slick-next:before,
436 .wp-block-getwid-media-text-slider.has-arrows-inside .slick-prev:before,
437 .wp-block-getwid-media-text-slider.has-arrows-inside .slick-next:before,
438 .wp-block-getwid-post-slider.has-arrows-inside .slick-prev:before,
439 .wp-block-getwid-post-slider.has-arrows-inside .slick-next:before,
440 .wp-block-getwid-post-carousel.has-arrows-inside .slick-prev:before,
441 .wp-block-getwid-post-carousel.has-arrows-inside .slick-next:before {
442 color: #fff;
443 }
444 .wp-block-getwid-content-slider.has-arrows-inside .slick-prev,
445 .wp-block-getwid-images-slider.has-arrows-inside .slick-prev,
446 .wp-block-getwid-media-text-slider.has-arrows-inside .slick-prev,
447 .wp-block-getwid-post-slider.has-arrows-inside .slick-prev,
448 .wp-block-getwid-post-carousel.has-arrows-inside .slick-prev {
449 /*rtl:begin:remove*/
450 left: 25px;
451 /*rtl:end:remove*/
452 /*rtl:raw: right: 25px; */
453 }
454 .wp-block-getwid-content-slider.has-arrows-inside .slick-next,
455 .wp-block-getwid-images-slider.has-arrows-inside .slick-next,
456 .wp-block-getwid-media-text-slider.has-arrows-inside .slick-next,
457 .wp-block-getwid-post-slider.has-arrows-inside .slick-next,
458 .wp-block-getwid-post-carousel.has-arrows-inside .slick-next {
459 /*rtl:begin:remove*/
460 right: 25px;
461 /*rtl:end:remove*/
462 /*rtl:raw: left: 25px; */
463 }
464 .wp-block-getwid-content-slider.has-dots-inside .slick-dotted.slick-slider,
465 .wp-block-getwid-images-slider.has-dots-inside .slick-dotted.slick-slider,
466 .wp-block-getwid-media-text-slider.has-dots-inside .slick-dotted.slick-slider,
467 .wp-block-getwid-post-slider.has-dots-inside .slick-dotted.slick-slider,
468 .wp-block-getwid-post-carousel.has-dots-inside .slick-dotted.slick-slider {
469 margin-bottom: 0;
470 padding-bottom: 0;
471 }
472 .wp-block-getwid-content-slider.has-dots-inside .slick-dots,
473 .wp-block-getwid-images-slider.has-dots-inside .slick-dots,
474 .wp-block-getwid-media-text-slider.has-dots-inside .slick-dots,
475 .wp-block-getwid-post-slider.has-dots-inside .slick-dots,
476 .wp-block-getwid-post-carousel.has-dots-inside .slick-dots {
477 bottom: 20px;
478 }
479 .wp-block-getwid-content-slider.has-dots-inside .slick-dots li .slick-active,
480 .wp-block-getwid-images-slider.has-dots-inside .slick-dots li .slick-active,
481 .wp-block-getwid-media-text-slider.has-dots-inside .slick-dots li .slick-active,
482 .wp-block-getwid-post-slider.has-dots-inside .slick-dots li .slick-active,
483 .wp-block-getwid-post-carousel.has-dots-inside .slick-dots li .slick-active {
484 color: #fff;
485 }
486 .wp-block-getwid-content-slider.has-dots-inside .slick-dots li button,
487 .wp-block-getwid-images-slider.has-dots-inside .slick-dots li button,
488 .wp-block-getwid-media-text-slider.has-dots-inside .slick-dots li button,
489 .wp-block-getwid-post-slider.has-dots-inside .slick-dots li button,
490 .wp-block-getwid-post-carousel.has-dots-inside .slick-dots li button {
491 text-shadow: 0px 0px 3px rgba(0, 0, 0, 0.5);
492 }
493 .wp-block-getwid-content-slider.has-dots-inside .slick-dots li button:before,
494 .wp-block-getwid-images-slider.has-dots-inside .slick-dots li button:before,
495 .wp-block-getwid-media-text-slider.has-dots-inside .slick-dots li button:before,
496 .wp-block-getwid-post-slider.has-dots-inside .slick-dots li button:before,
497 .wp-block-getwid-post-carousel.has-dots-inside .slick-dots li button:before {
498 color: #fff;
499 }
500 .wp-block-getwid-content-slider.alignfull .slick-list,
501 .wp-block-getwid-images-slider.alignfull .slick-list,
502 .wp-block-getwid-media-text-slider.alignfull .slick-list,
503 .wp-block-getwid-post-slider.alignfull .slick-list,
504 .wp-block-getwid-post-carousel.alignfull .slick-list {
505 margin: 0;
506 }
507 .wp-block-getwid-content-slider.alignfull.has-arrows-ouside .slick-prev, .wp-block-getwid-content-slider.alignfull.has-arrows-outside .slick-prev,
508 .wp-block-getwid-images-slider.alignfull.has-arrows-ouside .slick-prev,
509 .wp-block-getwid-images-slider.alignfull.has-arrows-outside .slick-prev,
510 .wp-block-getwid-media-text-slider.alignfull.has-arrows-ouside .slick-prev,
511 .wp-block-getwid-media-text-slider.alignfull.has-arrows-outside .slick-prev,
512 .wp-block-getwid-post-slider.alignfull.has-arrows-ouside .slick-prev,
513 .wp-block-getwid-post-slider.alignfull.has-arrows-outside .slick-prev,
514 .wp-block-getwid-post-carousel.alignfull.has-arrows-ouside .slick-prev,
515 .wp-block-getwid-post-carousel.alignfull.has-arrows-outside .slick-prev {
516 left: 25px;
517 }
518 .wp-block-getwid-content-slider.alignfull.has-arrows-ouside .slick-next, .wp-block-getwid-content-slider.alignfull.has-arrows-outside .slick-next,
519 .wp-block-getwid-images-slider.alignfull.has-arrows-ouside .slick-next,
520 .wp-block-getwid-images-slider.alignfull.has-arrows-outside .slick-next,
521 .wp-block-getwid-media-text-slider.alignfull.has-arrows-ouside .slick-next,
522 .wp-block-getwid-media-text-slider.alignfull.has-arrows-outside .slick-next,
523 .wp-block-getwid-post-slider.alignfull.has-arrows-ouside .slick-next,
524 .wp-block-getwid-post-slider.alignfull.has-arrows-outside .slick-next,
525 .wp-block-getwid-post-carousel.alignfull.has-arrows-ouside .slick-next,
526 .wp-block-getwid-post-carousel.alignfull.has-arrows-outside .slick-next {
527 right: 25px;
528 }
529
530 @media screen and (min-width: 768px) and (max-width: 991px) {
531 .fs-tablet-50 .wp-block-getwid-advanced-heading__content,
532 .fs-tablet-50 .wp-block-getwid-countdown__content {
533 font-size: 50%;
534 }
535 }
536
537 @media screen and (max-width: 767px) {
538 .fs-mobile-50 .wp-block-getwid-advanced-heading__content,
539 .fs-mobile-50 .wp-block-getwid-countdown__content {
540 font-size: 50%;
541 }
542 }
543
544 @media screen and (min-width: 768px) and (max-width: 991px) {
545 .fs-tablet-60 .wp-block-getwid-advanced-heading__content,
546 .fs-tablet-60 .wp-block-getwid-countdown__content {
547 font-size: 60%;
548 }
549 }
550
551 @media screen and (max-width: 767px) {
552 .fs-mobile-60 .wp-block-getwid-advanced-heading__content,
553 .fs-mobile-60 .wp-block-getwid-countdown__content {
554 font-size: 60%;
555 }
556 }
557
558 @media screen and (min-width: 768px) and (max-width: 991px) {
559 .fs-tablet-70 .wp-block-getwid-advanced-heading__content,
560 .fs-tablet-70 .wp-block-getwid-countdown__content {
561 font-size: 70%;
562 }
563 }
564
565 @media screen and (max-width: 767px) {
566 .fs-mobile-70 .wp-block-getwid-advanced-heading__content,
567 .fs-mobile-70 .wp-block-getwid-countdown__content {
568 font-size: 70%;
569 }
570 }
571
572 @media screen and (min-width: 768px) and (max-width: 991px) {
573 .fs-tablet-80 .wp-block-getwid-advanced-heading__content,
574 .fs-tablet-80 .wp-block-getwid-countdown__content {
575 font-size: 80%;
576 }
577 }
578
579 @media screen and (max-width: 767px) {
580 .fs-mobile-80 .wp-block-getwid-advanced-heading__content,
581 .fs-mobile-80 .wp-block-getwid-countdown__content {
582 font-size: 80%;
583 }
584 }
585
586 @media screen and (min-width: 768px) and (max-width: 991px) {
587 .fs-tablet-90 .wp-block-getwid-advanced-heading__content,
588 .fs-tablet-90 .wp-block-getwid-countdown__content {
589 font-size: 90%;
590 }
591 }
592
593 @media screen and (max-width: 767px) {
594 .fs-mobile-90 .wp-block-getwid-advanced-heading__content,
595 .fs-mobile-90 .wp-block-getwid-countdown__content {
596 font-size: 90%;
597 }
598 }
599
600 @media screen and (min-width: 768px) and (max-width: 991px) {
601 .fs-tablet-100 .wp-block-getwid-advanced-heading__content,
602 .fs-tablet-100 .wp-block-getwid-countdown__content {
603 font-size: 100%;
604 }
605 }
606
607 @media screen and (max-width: 767px) {
608 .fs-mobile-100 .wp-block-getwid-advanced-heading__content,
609 .fs-mobile-100 .wp-block-getwid-countdown__content {
610 font-size: 100%;
611 }
612 }
613
614 @media screen and (min-width: 768px) and (max-width: 991px) {
615 .fs-tablet-110 .wp-block-getwid-advanced-heading__content,
616 .fs-tablet-110 .wp-block-getwid-countdown__content {
617 font-size: 110%;
618 }
619 }
620
621 @media screen and (max-width: 767px) {
622 .fs-mobile-110 .wp-block-getwid-advanced-heading__content,
623 .fs-mobile-110 .wp-block-getwid-countdown__content {
624 font-size: 110%;
625 }
626 }
627
628 @media screen and (min-width: 768px) and (max-width: 991px) {
629 .fs-tablet-120 .wp-block-getwid-advanced-heading__content,
630 .fs-tablet-120 .wp-block-getwid-countdown__content {
631 font-size: 120%;
632 }
633 }
634
635 @media screen and (max-width: 767px) {
636 .fs-mobile-120 .wp-block-getwid-advanced-heading__content,
637 .fs-mobile-120 .wp-block-getwid-countdown__content {
638 font-size: 120%;
639 }
640 }
641
642 [data-animation] .wp-block-getwid-image-box__image-wrapper, [data-animation].wp-block-getwid-icon__wrapper,
643 [data-animation] .wp-block-getwid-icon-box__icon-wrapper {
644 transition: 0.3s ease;
645 transform: none;
646 }
647
648 [data-animation=slideTop]:hover .wp-block-getwid-image-box__image-wrapper, [data-animation=slideTop]:hover.wp-block-getwid-icon__wrapper,
649 [data-animation=slideTop]:hover .wp-block-getwid-icon-box__icon-wrapper {
650 transform: translateY(-10px);
651 }
652
653 [data-animation=slideBottom]:hover .wp-block-getwid-image-box__image-wrapper, [data-animation=slideBottom]:hover.wp-block-getwid-icon__wrapper,
654 [data-animation=slideBottom]:hover .wp-block-getwid-icon-box__icon-wrapper {
655 transform: translateY(10px);
656 }
657
658 [data-animation=slideLeft]:hover .wp-block-getwid-image-box__image-wrapper, [data-animation=slideLeft]:hover.wp-block-getwid-icon__wrapper,
659 [data-animation=slideLeft]:hover .wp-block-getwid-icon-box__icon-wrapper {
660 transform: translateX(-10px);
661 }
662
663 [data-animation=slideRight]:hover .wp-block-getwid-image-box__image-wrapper, [data-animation=slideRight]:hover.wp-block-getwid-icon__wrapper,
664 [data-animation=slideRight]:hover .wp-block-getwid-icon-box__icon-wrapper {
665 transform: translateX(10px);
666 }
667
668 [data-animation=zoomSmall]:hover .wp-block-getwid-image-box__image-wrapper, [data-animation=zoomSmall]:hover.wp-block-getwid-icon__wrapper,
669 [data-animation=zoomSmall]:hover .wp-block-getwid-icon-box__icon-wrapper {
670 transform: scale(1.05);
671 }
672
673 [data-animation=zoomBig]:hover .wp-block-getwid-image-box__image-wrapper, [data-animation=zoomBig]:hover.wp-block-getwid-icon__wrapper,
674 [data-animation=zoomBig]:hover .wp-block-getwid-icon-box__icon-wrapper {
675 transform: scale(1.2);
676 }
677
678 .getwid-columns {
679 margin-left: -30px;
680 margin-right: -30px;
681 display: flex;
682 flex-wrap: wrap;
683 }
684 .getwid-columns-1 > * {
685 padding-left: 30px;
686 padding-right: 30px;
687 margin-right: 0;
688 margin-left: 0;
689 width: 100%;
690 }
691 @media screen and (min-width: 992px) {
692 .getwid-columns-1 > * {
693 width: 100%;
694 }
695 }
696 .getwid-columns-2 > * {
697 padding-left: 30px;
698 padding-right: 30px;
699 margin-right: 0;
700 margin-left: 0;
701 width: 100%;
702 }
703 @media screen and (min-width: 992px) {
704 .getwid-columns-2 > * {
705 width: 50%;
706 }
707 }
708 .getwid-columns-3 > * {
709 padding-left: 30px;
710 padding-right: 30px;
711 margin-right: 0;
712 margin-left: 0;
713 width: 100%;
714 }
715 @media screen and (min-width: 992px) {
716 .getwid-columns-3 > * {
717 width: 33.3333333333%;
718 }
719 }
720 .getwid-columns-4 > * {
721 padding-left: 30px;
722 padding-right: 30px;
723 margin-right: 0;
724 margin-left: 0;
725 width: 100%;
726 }
727 @media screen and (min-width: 992px) {
728 .getwid-columns-4 > * {
729 width: 25%;
730 }
731 }
732 .getwid-columns-5 > * {
733 padding-left: 30px;
734 padding-right: 30px;
735 margin-right: 0;
736 margin-left: 0;
737 width: 100%;
738 }
739 @media screen and (min-width: 992px) {
740 .getwid-columns-5 > * {
741 width: 20%;
742 }
743 }
744 .getwid-columns-6 > * {
745 padding-left: 30px;
746 padding-right: 30px;
747 margin-right: 0;
748 margin-left: 0;
749 width: 100%;
750 }
751 @media screen and (min-width: 992px) {
752 .getwid-columns-6 > * {
753 width: 16.6666666667%;
754 }
755 }
756 .getwid-columns-7 > * {
757 padding-left: 30px;
758 padding-right: 30px;
759 margin-right: 0;
760 margin-left: 0;
761 width: 100%;
762 }
763 @media screen and (min-width: 992px) {
764 .getwid-columns-7 > * {
765 width: 14.2857142857%;
766 }
767 }
768 .getwid-columns-8 > * {
769 padding-left: 30px;
770 padding-right: 30px;
771 margin-right: 0;
772 margin-left: 0;
773 width: 100%;
774 }
775 @media screen and (min-width: 992px) {
776 .getwid-columns-8 > * {
777 width: 12.5%;
778 }
779 }
780 .getwid-columns-9 > * {
781 padding-left: 30px;
782 padding-right: 30px;
783 margin-right: 0;
784 margin-left: 0;
785 width: 100%;
786 }
787 @media screen and (min-width: 992px) {
788 .getwid-columns-9 > * {
789 width: 11.1111111111%;
790 }
791 }
792 .getwid-columns-10 > * {
793 padding-left: 30px;
794 padding-right: 30px;
795 margin-right: 0;
796 margin-left: 0;
797 width: 100%;
798 }
799 @media screen and (min-width: 992px) {
800 .getwid-columns-10 > * {
801 width: 10%;
802 }
803 }
804 .getwid-columns-11 > * {
805 padding-left: 30px;
806 padding-right: 30px;
807 margin-right: 0;
808 margin-left: 0;
809 width: 100%;
810 }
811 @media screen and (min-width: 992px) {
812 .getwid-columns-11 > * {
813 width: 9.0909090909%;
814 }
815 }
816 .getwid-columns-12 > * {
817 padding-left: 30px;
818 padding-right: 30px;
819 margin-right: 0;
820 margin-left: 0;
821 width: 100%;
822 }
823 @media screen and (min-width: 992px) {
824 .getwid-columns-12 > * {
825 width: 8.3333333333%;
826 }
827 }
828 .getwid-columns > * {
829 box-sizing: border-box;
830 }
831
832 @media screen and (min-width: 992px) {
833 .getwid-hide-desktop {
834 display: none;
835 }
836 }
837
838 @media screen and (min-width: 768px) and (max-width: 991px) {
839 .getwid-hide-tablet {
840 display: none;
841 }
842 }
843
844 @media screen and (max-width: 767px) {
845 .getwid-hide-mobile {
846 display: none;
847 }
848 }
849
850 .getwid-padding-top-small {
851 padding-top: 10px;
852 }
853
854 .getwid-padding-top-medium {
855 padding-top: 25px;
856 }
857
858 .getwid-padding-top-normal {
859 padding-top: 40px;
860 }
861
862 .getwid-padding-top-large {
863 padding-top: 60px;
864 }
865
866 .getwid-padding-top-none {
867 padding-top: 0 !important;
868 }
869
870 .getwid-padding-bottom-small {
871 padding-bottom: 10px;
872 }
873
874 .getwid-padding-bottom-medium {
875 padding-bottom: 25px;
876 }
877
878 .getwid-padding-bottom-normal {
879 padding-bottom: 40px;
880 }
881
882 .getwid-padding-bottom-large {
883 padding-bottom: 60px;
884 }
885
886 .getwid-padding-bottom-none {
887 padding-bottom: 0 !important;
888 }
889
890 .getwid-padding-left-small {
891 padding-left: 10px;
892 }
893
894 .getwid-padding-left-medium {
895 padding-left: 25px;
896 }
897
898 .getwid-padding-left-normal {
899 padding-left: 40px;
900 }
901
902 .getwid-padding-left-large {
903 padding-left: 60px;
904 }
905
906 .getwid-padding-left-none {
907 padding-left: 0 !important;
908 }
909
910 .getwid-padding-right-small {
911 padding-right: 10px;
912 }
913
914 .getwid-padding-right-medium {
915 padding-right: 25px;
916 }
917
918 .getwid-padding-right-normal {
919 padding-right: 40px;
920 }
921
922 .getwid-padding-right-large {
923 padding-right: 60px;
924 }
925
926 .getwid-padding-right-none {
927 padding-right: 0 !important;
928 }
929
930 @media screen and (max-width: 991px) {
931 .getwid-padding-tablet-top-small {
932 padding-top: 10px !important;
933 }
934 }
935
936 @media screen and (max-width: 991px) {
937 .getwid-padding-tablet-top-medium {
938 padding-top: 25px !important;
939 }
940 }
941
942 @media screen and (max-width: 991px) {
943 .getwid-padding-tablet-top-normal {
944 padding-top: 40px !important;
945 }
946 }
947
948 @media screen and (max-width: 991px) {
949 .getwid-padding-tablet-top-large {
950 padding-top: 60px !important;
951 }
952 }
953
954 @media screen and (max-width: 991px) {
955 .getwid-padding-tablet-top-none {
956 padding-top: 0 !important;
957 }
958 }
959
960 @media screen and (max-width: 991px) {
961 .getwid-padding-tablet-bottom-small {
962 padding-bottom: 10px !important;
963 }
964 }
965
966 @media screen and (max-width: 991px) {
967 .getwid-padding-tablet-bottom-medium {
968 padding-bottom: 25px !important;
969 }
970 }
971
972 @media screen and (max-width: 991px) {
973 .getwid-padding-tablet-bottom-normal {
974 padding-bottom: 40px !important;
975 }
976 }
977
978 @media screen and (max-width: 991px) {
979 .getwid-padding-tablet-bottom-large {
980 padding-bottom: 60px !important;
981 }
982 }
983
984 @media screen and (max-width: 991px) {
985 .getwid-padding-tablet-bottom-none {
986 padding-bottom: 0 !important;
987 }
988 }
989
990 @media screen and (max-width: 991px) {
991 .getwid-padding-tablet-left-small {
992 padding-left: 10px !important;
993 }
994 }
995
996 @media screen and (max-width: 991px) {
997 .getwid-padding-tablet-left-medium {
998 padding-left: 25px !important;
999 }
1000 }
1001
1002 @media screen and (max-width: 991px) {
1003 .getwid-padding-tablet-left-normal {
1004 padding-left: 40px !important;
1005 }
1006 }
1007
1008 @media screen and (max-width: 991px) {
1009 .getwid-padding-tablet-left-large {
1010 padding-left: 60px !important;
1011 }
1012 }
1013
1014 @media screen and (max-width: 991px) {
1015 .getwid-padding-tablet-left-none {
1016 padding-left: 0 !important;
1017 }
1018 }
1019
1020 @media screen and (max-width: 991px) {
1021 .getwid-padding-tablet-right-small {
1022 padding-right: 10px !important;
1023 }
1024 }
1025
1026 @media screen and (max-width: 991px) {
1027 .getwid-padding-tablet-right-medium {
1028 padding-right: 25px !important;
1029 }
1030 }
1031
1032 @media screen and (max-width: 991px) {
1033 .getwid-padding-tablet-right-normal {
1034 padding-right: 40px !important;
1035 }
1036 }
1037
1038 @media screen and (max-width: 991px) {
1039 .getwid-padding-tablet-right-large {
1040 padding-right: 60px !important;
1041 }
1042 }
1043
1044 @media screen and (max-width: 991px) {
1045 .getwid-padding-tablet-right-none {
1046 padding-right: 0 !important;
1047 }
1048 }
1049
1050 @media screen and (max-width: 767px) {
1051 .getwid-padding-mobile-top-small {
1052 padding-top: 10px !important;
1053 }
1054 }
1055
1056 @media screen and (max-width: 767px) {
1057 .getwid-padding-mobile-top-medium {
1058 padding-top: 25px !important;
1059 }
1060 }
1061
1062 @media screen and (max-width: 767px) {
1063 .getwid-padding-mobile-top-normal {
1064 padding-top: 40px !important;
1065 }
1066 }
1067
1068 @media screen and (max-width: 767px) {
1069 .getwid-padding-mobile-top-large {
1070 padding-top: 60px !important;
1071 }
1072 }
1073
1074 @media screen and (max-width: 767px) {
1075 .getwid-padding-mobile-top-none {
1076 padding-top: 0 !important;
1077 }
1078 }
1079
1080 @media screen and (max-width: 767px) {
1081 .getwid-padding-mobile-bottom-small {
1082 padding-bottom: 10px !important;
1083 }
1084 }
1085
1086 @media screen and (max-width: 767px) {
1087 .getwid-padding-mobile-bottom-medium {
1088 padding-bottom: 25px !important;
1089 }
1090 }
1091
1092 @media screen and (max-width: 767px) {
1093 .getwid-padding-mobile-bottom-normal {
1094 padding-bottom: 40px !important;
1095 }
1096 }
1097
1098 @media screen and (max-width: 767px) {
1099 .getwid-padding-mobile-bottom-large {
1100 padding-bottom: 60px !important;
1101 }
1102 }
1103
1104 @media screen and (max-width: 767px) {
1105 .getwid-padding-mobile-bottom-none {
1106 padding-bottom: 0 !important;
1107 }
1108 }
1109
1110 @media screen and (max-width: 767px) {
1111 .getwid-padding-mobile-left-small {
1112 padding-left: 10px !important;
1113 }
1114 }
1115
1116 @media screen and (max-width: 767px) {
1117 .getwid-padding-mobile-left-medium {
1118 padding-left: 25px !important;
1119 }
1120 }
1121
1122 @media screen and (max-width: 767px) {
1123 .getwid-padding-mobile-left-normal {
1124 padding-left: 40px !important;
1125 }
1126 }
1127
1128 @media screen and (max-width: 767px) {
1129 .getwid-padding-mobile-left-large {
1130 padding-left: 60px !important;
1131 }
1132 }
1133
1134 @media screen and (max-width: 767px) {
1135 .getwid-padding-mobile-left-none {
1136 padding-left: 0 !important;
1137 }
1138 }
1139
1140 @media screen and (max-width: 767px) {
1141 .getwid-padding-mobile-right-small {
1142 padding-right: 10px !important;
1143 }
1144 }
1145
1146 @media screen and (max-width: 767px) {
1147 .getwid-padding-mobile-right-medium {
1148 padding-right: 25px !important;
1149 }
1150 }
1151
1152 @media screen and (max-width: 767px) {
1153 .getwid-padding-mobile-right-normal {
1154 padding-right: 40px !important;
1155 }
1156 }
1157
1158 @media screen and (max-width: 767px) {
1159 .getwid-padding-mobile-right-large {
1160 padding-right: 60px !important;
1161 }
1162 }
1163
1164 @media screen and (max-width: 767px) {
1165 .getwid-padding-mobile-right-none {
1166 padding-right: 0 !important;
1167 }
1168 }
1169
1170 .getwid-margin-top-small {
1171 margin-top: 10px !important;
1172 }
1173
1174 .getwid-margin-top-medium {
1175 margin-top: 25px !important;
1176 }
1177
1178 .getwid-margin-top-normal {
1179 margin-top: 40px !important;
1180 }
1181
1182 .getwid-margin-top-large {
1183 margin-top: 60px !important;
1184 }
1185
1186 .getwid-margin-top-none {
1187 margin-top: 0 !important;
1188 }
1189
1190 .getwid-margin-bottom-small {
1191 margin-bottom: 10px !important;
1192 }
1193
1194 .getwid-margin-bottom-medium {
1195 margin-bottom: 25px !important;
1196 }
1197
1198 .getwid-margin-bottom-normal {
1199 margin-bottom: 40px !important;
1200 }
1201
1202 .getwid-margin-bottom-large {
1203 margin-bottom: 60px !important;
1204 }
1205
1206 .getwid-margin-bottom-none {
1207 margin-bottom: 0 !important;
1208 }
1209
1210 .getwid-margin-left-small {
1211 margin-left: 10px;
1212 }
1213
1214 .getwid-margin-left-medium {
1215 margin-left: 25px;
1216 }
1217
1218 .getwid-margin-left-normal {
1219 margin-left: 40px;
1220 }
1221
1222 .getwid-margin-left-large {
1223 margin-left: 60px;
1224 }
1225
1226 .getwid-margin-left-none {
1227 margin-left: 0 !important;
1228 }
1229
1230 .getwid-margin-right-small {
1231 margin-right: 10px;
1232 }
1233
1234 .getwid-margin-right-medium {
1235 margin-right: 25px;
1236 }
1237
1238 .getwid-margin-right-normal {
1239 margin-right: 40px;
1240 }
1241
1242 .getwid-margin-right-large {
1243 margin-right: 60px;
1244 }
1245
1246 .getwid-margin-right-none {
1247 margin-right: 0 !important;
1248 }
1249
1250 @media screen and (max-width: 991px) {
1251 .getwid-margin-tablet-top-small {
1252 margin-top: 10px !important;
1253 }
1254 }
1255
1256 @media screen and (max-width: 991px) {
1257 .getwid-margin-tablet-top-medium {
1258 margin-top: 25px !important;
1259 }
1260 }
1261
1262 @media screen and (max-width: 991px) {
1263 .getwid-margin-tablet-top-normal {
1264 margin-top: 40px !important;
1265 }
1266 }
1267
1268 @media screen and (max-width: 991px) {
1269 .getwid-margin-tablet-top-large {
1270 margin-top: 60px !important;
1271 }
1272 }
1273
1274 @media screen and (max-width: 991px) {
1275 .getwid-margin-tablet-top-none {
1276 margin-top: 0 !important;
1277 }
1278 }
1279
1280 @media screen and (max-width: 991px) {
1281 .getwid-margin-tablet-bottom-small {
1282 margin-bottom: 10px !important;
1283 }
1284 }
1285
1286 @media screen and (max-width: 991px) {
1287 .getwid-margin-tablet-bottom-medium {
1288 margin-bottom: 25px !important;
1289 }
1290 }
1291
1292 @media screen and (max-width: 991px) {
1293 .getwid-margin-tablet-bottom-normal {
1294 margin-bottom: 40px !important;
1295 }
1296 }
1297
1298 @media screen and (max-width: 991px) {
1299 .getwid-margin-tablet-bottom-large {
1300 margin-bottom: 60px !important;
1301 }
1302 }
1303
1304 @media screen and (max-width: 991px) {
1305 .getwid-margin-tablet-bottom-none {
1306 margin-bottom: 0 !important;
1307 }
1308 }
1309
1310 @media screen and (max-width: 991px) {
1311 .getwid-margin-tablet-left-small {
1312 margin-left: 10px !important;
1313 }
1314 }
1315
1316 @media screen and (max-width: 991px) {
1317 .getwid-margin-tablet-left-medium {
1318 margin-left: 25px !important;
1319 }
1320 }
1321
1322 @media screen and (max-width: 991px) {
1323 .getwid-margin-tablet-left-normal {
1324 margin-left: 40px !important;
1325 }
1326 }
1327
1328 @media screen and (max-width: 991px) {
1329 .getwid-margin-tablet-left-large {
1330 margin-left: 60px !important;
1331 }
1332 }
1333
1334 @media screen and (max-width: 991px) {
1335 .getwid-margin-tablet-left-none {
1336 margin-left: 0 !important;
1337 }
1338 }
1339
1340 @media screen and (max-width: 991px) {
1341 .getwid-margin-tablet-right-small {
1342 margin-right: 10px !important;
1343 }
1344 }
1345
1346 @media screen and (max-width: 991px) {
1347 .getwid-margin-tablet-right-medium {
1348 margin-right: 25px !important;
1349 }
1350 }
1351
1352 @media screen and (max-width: 991px) {
1353 .getwid-margin-tablet-right-normal {
1354 margin-right: 40px !important;
1355 }
1356 }
1357
1358 @media screen and (max-width: 991px) {
1359 .getwid-margin-tablet-right-large {
1360 margin-right: 60px !important;
1361 }
1362 }
1363
1364 @media screen and (max-width: 991px) {
1365 .getwid-margin-tablet-right-none {
1366 margin-right: 0 !important;
1367 }
1368 }
1369
1370 @media screen and (max-width: 767px) {
1371 .getwid-margin-mobile-top-small {
1372 margin-top: 10px !important;
1373 }
1374 }
1375
1376 @media screen and (max-width: 767px) {
1377 .getwid-margin-mobile-top-medium {
1378 margin-top: 25px !important;
1379 }
1380 }
1381
1382 @media screen and (max-width: 767px) {
1383 .getwid-margin-mobile-top-normal {
1384 margin-top: 40px !important;
1385 }
1386 }
1387
1388 @media screen and (max-width: 767px) {
1389 .getwid-margin-mobile-top-large {
1390 margin-top: 60px !important;
1391 }
1392 }
1393
1394 @media screen and (max-width: 767px) {
1395 .getwid-margin-mobile-top-none {
1396 margin-top: 0 !important;
1397 }
1398 }
1399
1400 @media screen and (max-width: 767px) {
1401 .getwid-margin-mobile-bottom-small {
1402 margin-bottom: 10px !important;
1403 }
1404 }
1405
1406 @media screen and (max-width: 767px) {
1407 .getwid-margin-mobile-bottom-medium {
1408 margin-bottom: 25px !important;
1409 }
1410 }
1411
1412 @media screen and (max-width: 767px) {
1413 .getwid-margin-mobile-bottom-normal {
1414 margin-bottom: 40px !important;
1415 }
1416 }
1417
1418 @media screen and (max-width: 767px) {
1419 .getwid-margin-mobile-bottom-large {
1420 margin-bottom: 60px !important;
1421 }
1422 }
1423
1424 @media screen and (max-width: 767px) {
1425 .getwid-margin-mobile-bottom-none {
1426 margin-bottom: 0 !important;
1427 }
1428 }
1429
1430 @media screen and (max-width: 767px) {
1431 .getwid-margin-mobile-left-small {
1432 margin-left: 10px !important;
1433 }
1434 }
1435
1436 @media screen and (max-width: 767px) {
1437 .getwid-margin-mobile-left-medium {
1438 margin-left: 25px !important;
1439 }
1440 }
1441
1442 @media screen and (max-width: 767px) {
1443 .getwid-margin-mobile-left-normal {
1444 margin-left: 40px !important;
1445 }
1446 }
1447
1448 @media screen and (max-width: 767px) {
1449 .getwid-margin-mobile-left-large {
1450 margin-left: 60px !important;
1451 }
1452 }
1453
1454 @media screen and (max-width: 767px) {
1455 .getwid-margin-mobile-left-none {
1456 margin-left: 0 !important;
1457 }
1458 }
1459
1460 @media screen and (max-width: 767px) {
1461 .getwid-margin-mobile-right-small {
1462 margin-right: 10px !important;
1463 }
1464 }
1465
1466 @media screen and (max-width: 767px) {
1467 .getwid-margin-mobile-right-medium {
1468 margin-right: 25px !important;
1469 }
1470 }
1471
1472 @media screen and (max-width: 767px) {
1473 .getwid-margin-mobile-right-normal {
1474 margin-right: 40px !important;
1475 }
1476 }
1477
1478 @media screen and (max-width: 767px) {
1479 .getwid-margin-mobile-right-large {
1480 margin-right: 60px !important;
1481 }
1482 }
1483
1484 @media screen and (max-width: 767px) {
1485 .getwid-margin-mobile-right-none {
1486 margin-right: 0 !important;
1487 }
1488 }
1489
1490 @media screen and (min-width: 768px) and (max-width: 991px) {
1491 .getwid-reset-min-height-tablet {
1492 min-height: auto !important;
1493 }
1494 }
1495
1496 @media screen and (max-width: 767px) {
1497 .getwid-reset-min-height-mobile {
1498 min-height: auto !important;
1499 }
1500 }
1501
1502 @media screen and (min-width: 768px) and (max-width: 991px) {
1503 .getwid-reset-height-tablet {
1504 height: auto !important;
1505 }
1506 }
1507
1508 @media screen and (max-width: 767px) {
1509 .getwid-reset-height-mobile {
1510 height: auto !important;
1511 }
1512 }
1513
1514 .getwid-align-items-flex-start {
1515 align-items: flex-start;
1516 }
1517
1518 .getwid-align-items-center {
1519 align-items: center;
1520 }
1521
1522 .getwid-align-items-flex-end {
1523 align-items: flex-end;
1524 }
1525
1526 @media screen and (max-width: 991px) {
1527 .getwid-align-items-tablet-flex-start {
1528 align-items: flex-start;
1529 }
1530 }
1531
1532 @media screen and (max-width: 991px) {
1533 .getwid-align-items-tablet-center {
1534 align-items: center;
1535 }
1536 }
1537
1538 @media screen and (max-width: 991px) {
1539 .getwid-align-items-tablet-flex-end {
1540 align-items: flex-end;
1541 }
1542 }
1543
1544 @media screen and (max-width: 767px) {
1545 .getwid-align-items-mobile-flex-start {
1546 align-items: flex-start;
1547 }
1548 }
1549
1550 @media screen and (max-width: 767px) {
1551 .getwid-align-items-mobile-center {
1552 align-items: center;
1553 }
1554 }
1555
1556 @media screen and (max-width: 767px) {
1557 .getwid-align-items-mobile-flex-end {
1558 align-items: flex-end;
1559 }
1560 }
1561
1562 .getwid-justify-content-flex-start {
1563 justify-content: flex-start;
1564 }
1565
1566 .getwid-justify-content-center {
1567 justify-content: center;
1568 }
1569
1570 .getwid-justify-content-flex-end {
1571 justify-content: flex-end;
1572 }
1573
1574 @media screen and (max-width: 991px) {
1575 .getwid-justify-content-tablet-flex-start {
1576 justify-content: flex-start;
1577 }
1578 }
1579
1580 @media screen and (max-width: 991px) {
1581 .getwid-justify-content-tablet-center {
1582 justify-content: center;
1583 }
1584 }
1585
1586 @media screen and (max-width: 991px) {
1587 .getwid-justify-content-tablet-flex-end {
1588 justify-content: flex-end;
1589 }
1590 }
1591
1592 @media screen and (max-width: 767px) {
1593 .getwid-justify-content-mobile-flex-start {
1594 justify-content: flex-start;
1595 }
1596 }
1597
1598 @media screen and (max-width: 767px) {
1599 .getwid-justify-content-mobile-center {
1600 justify-content: center;
1601 }
1602 }
1603
1604 @media screen and (max-width: 767px) {
1605 .getwid-justify-content-mobile-flex-end {
1606 justify-content: flex-end;
1607 }
1608 }
1609
1610 .getwid-icon {
1611 font-style: normal;
1612 }
1613 .getwid-icon-like {
1614 font-family: "Font Awesome 5 Free";
1615 font-weight: 900;
1616 }
1617 .getwid-icon-like:before {
1618 content: "\f004";
1619 }
1620 .getwid-icon-comment {
1621 font-family: "Font Awesome 5 Free";
1622 font-weight: 900;
1623 }
1624 .getwid-icon-comment:before {
1625 content: "\f075";
1626 }
1627
1628 .getwid-opacity-0 {
1629 opacity: 0;
1630 }
1631
1632 .getwid-opacity-5 {
1633 opacity: 0.05;
1634 }
1635
1636 .getwid-opacity-10 {
1637 opacity: 0.1;
1638 }
1639
1640 .getwid-opacity-15 {
1641 opacity: 0.15;
1642 }
1643
1644 .getwid-opacity-20 {
1645 opacity: 0.2;
1646 }
1647
1648 .getwid-opacity-25 {
1649 opacity: 0.25;
1650 }
1651
1652 .getwid-opacity-30 {
1653 opacity: 0.3;
1654 }
1655
1656 .getwid-opacity-35 {
1657 opacity: 0.35;
1658 }
1659
1660 .getwid-opacity-40 {
1661 opacity: 0.4;
1662 }
1663
1664 .getwid-opacity-45 {
1665 opacity: 0.45;
1666 }
1667
1668 .getwid-opacity-50 {
1669 opacity: 0.5;
1670 }
1671
1672 .getwid-opacity-55 {
1673 opacity: 0.55;
1674 }
1675
1676 .getwid-opacity-60 {
1677 opacity: 0.6;
1678 }
1679
1680 .getwid-opacity-65 {
1681 opacity: 0.65;
1682 }
1683
1684 .getwid-opacity-70 {
1685 opacity: 0.7;
1686 }
1687
1688 .getwid-opacity-75 {
1689 opacity: 0.75;
1690 }
1691
1692 .getwid-opacity-80 {
1693 opacity: 0.8;
1694 }
1695
1696 .getwid-opacity-85 {
1697 opacity: 0.85;
1698 }
1699
1700 .getwid-opacity-90 {
1701 opacity: 0.9;
1702 }
1703
1704 .getwid-opacity-95 {
1705 opacity: 0.95;
1706 }
1707
1708 .getwid-opacity-100 {
1709 opacity: 1;
1710 }