PluginProbe
Easy Elements for Elementor – Addons & Website Templates / 1.4.6
Easy Elements for Elementor – Addons & Website Templates v1.4.6
1.5.3 1.5.2 1.5.1 1.5.0 1.4.9 1.4.6 1.4.7 1.4.8 1.4.5 1.4.4 1.4.3 1.2.7 1.2.8 1.2.9 1.3.0 1.3.1 1.3.2 1.3.3 1.3.4 1.3.5 1.3.6 1.3.7 1.3.8 1.3.9 1.4.0 All 47 releases
easy-elements / assets / css / plugins.css

plugins.css in Easy Elements for Elementor – Addons & Website Templates 1.4.6, at assets/css/plugins.css

4,008 lines 59.7 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 /*!
2 * animate.css -http://daneden.me/animate
3 * Version - 3.5.1
4 * Licensed under the MIT license - http://opensource.org/licenses/MIT
5 *
6 * Copyright (c) 2016 Daniel Eden
7 */
8 .animated.infinite {
9 animation-iteration-count: infinite;
10 }
11
12 .animated.hinge {
13 animation-duration: 2s;
14 }
15
16 .animated.flipOutX, .animated.flipOutY, .animated.bounceIn, .animated.bounceOut {
17 animation-duration: 0.75s;
18 }
19 @keyframes bounce {
20 from, 20%, 53%, 80%, to {
21 animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
22 transform: translate3d(0, 0, 0);
23 }
24 40%, 43% {
25 animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
26 transform: translate3d(0, -30px, 0);
27 }
28 70% {
29 animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
30 transform: translate3d(0, -15px, 0);
31 }
32 90% {
33 transform: translate3d(0, -4px, 0);
34 }
35 }
36 .bounce {
37 animation-name: bounce;
38 transform-origin: center bottom;
39 }
40 @keyframes flash {
41 from, 50%, to {
42 opacity: 1;
43 }
44 25%, 75% {
45 opacity: 0;
46 }
47 }
48 .flash {
49 animation-name: flash;
50 }
51 @keyframes pulse {
52 from {
53 transform: scale3d(1, 1, 1);
54 }
55 50% {
56 transform: scale3d(1.05, 1.05, 1.05);
57 }
58 to {
59 transform: scale3d(1, 1, 1);
60 }
61 }
62 .pulse {
63 animation-name: pulse;
64 }
65 @keyframes rubberBand {
66 from {
67 transform: scale3d(1, 1, 1);
68 }
69 30% {
70 transform: scale3d(1.25, 0.75, 1);
71 }
72 40% {
73 transform: scale3d(0.75, 1.25, 1);
74 }
75 50% {
76 transform: scale3d(1.15, 0.85, 1);
77 }
78 65% {
79 transform: scale3d(0.95, 1.05, 1);
80 }
81 75% {
82 transform: scale3d(1.05, 0.95, 1);
83 }
84 to {
85 transform: scale3d(1, 1, 1);
86 }
87 }
88 .rubberBand {
89 animation-name: rubberBand;
90 }
91 @keyframes shake {
92 from, to {
93 transform: translate3d(0, 0, 0);
94 }
95 10%, 30%, 50%, 70%, 90% {
96 transform: translate3d(-10px, 0, 0);
97 }
98 20%, 40%, 60%, 80% {
99 transform: translate3d(10px, 0, 0);
100 }
101 }
102 .shake {
103 animation-name: shake;
104 }
105 @keyframes headShake {
106 0% {
107 transform: translateX(0);
108 }
109 6.5% {
110 transform: translateX(-6px) rotateY(-9deg);
111 }
112 18.5% {
113 transform: translateX(5px) rotateY(7deg);
114 }
115 31.5% {
116 transform: translateX(-3px) rotateY(-5deg);
117 }
118 43.5% {
119 transform: translateX(2px) rotateY(3deg);
120 }
121 50% {
122 transform: translateX(0);
123 }
124 }
125 .headShake {
126 animation-timing-function: ease-in-out;
127 animation-name: headShake;
128 }
129 @keyframes swing {
130 20% {
131 transform: rotate3d(0, 0, 1, 15deg);
132 }
133 40% {
134 transform: rotate3d(0, 0, 1, -10deg);
135 }
136 60% {
137 transform: rotate3d(0, 0, 1, 5deg);
138 }
139 80% {
140 transform: rotate3d(0, 0, 1, -5deg);
141 }
142 to {
143 transform: rotate3d(0, 0, 1, 0deg);
144 }
145 }
146 .swing {
147 transform-origin: top center;
148 animation-name: swing;
149 }
150 @keyframes tada {
151 from {
152 transform: scale3d(1, 1, 1);
153 }
154 10%, 20% {
155 transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
156 }
157 30%, 50%, 70%, 90% {
158 transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
159 }
160 40%, 60%, 80% {
161 transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
162 }
163 to {
164 transform: scale3d(1, 1, 1);
165 }
166 }
167 .tada {
168 animation-name: tada;
169 }
170 @keyframes wobble {
171 from {
172 transform: none;
173 }
174 15% {
175 transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
176 }
177 30% {
178 transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
179 }
180 45% {
181 transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
182 }
183 60% {
184 transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
185 }
186 75% {
187 transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
188 }
189 to {
190 transform: none;
191 }
192 }
193 .wobble {
194 animation-name: wobble;
195 }
196 @keyframes jello {
197 from, 11.1%, to {
198 transform: none;
199 }
200 22.2% {
201 transform: skewX(-12.5deg) skewY(-12.5deg);
202 }
203 33.3% {
204 transform: skewX(6.25deg) skewY(6.25deg);
205 }
206 44.4% {
207 transform: skewX(-3.125deg) skewY(-3.125deg);
208 }
209 55.5% {
210 transform: skewX(1.5625deg) skewY(1.5625deg);
211 }
212 66.6% {
213 transform: skewX(-0.78125deg) skewY(-0.78125deg);
214 }
215 77.7% {
216 transform: skewX(0.390625deg) skewY(0.390625deg);
217 }
218 88.8% {
219 transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
220 }
221 }
222 .jello {
223 animation-name: jello;
224 transform-origin: center;
225 }
226 @keyframes bounceIn {
227 from, 20%, 40%, 60%, 80%, to {
228 animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
229 }
230 0% {
231 opacity: 0;
232 transform: scale3d(0.3, 0.3, 0.3);
233 }
234 20% {
235 transform: scale3d(1.1, 1.1, 1.1);
236 }
237 40% {
238 transform: scale3d(0.9, 0.9, 0.9);
239 }
240 60% {
241 opacity: 1;
242 transform: scale3d(1.03, 1.03, 1.03);
243 }
244 80% {
245 transform: scale3d(0.97, 0.97, 0.97);
246 }
247 to {
248 opacity: 1;
249 transform: scale3d(1, 1, 1);
250 }
251 }
252 .bounceIn {
253 animation-name: bounceIn;
254 }
255 @keyframes bounceInDown {
256 from, 60%, 75%, 90%, to {
257 animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
258 }
259 0% {
260 opacity: 0;
261 transform: translate3d(0, -3000px, 0);
262 }
263 60% {
264 opacity: 1;
265 transform: translate3d(0, 25px, 0);
266 }
267 75% {
268 transform: translate3d(0, -10px, 0);
269 }
270 90% {
271 transform: translate3d(0, 5px, 0);
272 }
273 to {
274 transform: none;
275 }
276 }
277 .bounceInDown {
278 animation-name: bounceInDown;
279 }
280 @keyframes bounceInLeft {
281 from, 60%, 75%, 90%, to {
282 animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
283 }
284 0% {
285 opacity: 0;
286 transform: translate3d(-3000px, 0, 0);
287 }
288 60% {
289 opacity: 1;
290 transform: translate3d(25px, 0, 0);
291 }
292 75% {
293 transform: translate3d(-10px, 0, 0);
294 }
295 90% {
296 transform: translate3d(5px, 0, 0);
297 }
298 to {
299 transform: none;
300 }
301 }
302 .bounceInLeft {
303 animation-name: bounceInLeft;
304 }
305 @keyframes bounceInRight {
306 from, 60%, 75%, 90%, to {
307 animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
308 }
309 from {
310 opacity: 0;
311 transform: translate3d(3000px, 0, 0);
312 }
313 60% {
314 opacity: 1;
315 transform: translate3d(-25px, 0, 0);
316 }
317 75% {
318 transform: translate3d(10px, 0, 0);
319 }
320 90% {
321 transform: translate3d(-5px, 0, 0);
322 }
323 to {
324 transform: none;
325 }
326 }
327 .bounceInRight {
328 animation-name: bounceInRight;
329 }
330 @keyframes bounceInUp {
331 from, 60%, 75%, 90%, to {
332 animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
333 }
334 from {
335 opacity: 0;
336 transform: translate3d(0, 3000px, 0);
337 }
338 60% {
339 opacity: 1;
340 transform: translate3d(0, -20px, 0);
341 }
342 75% {
343 transform: translate3d(0, 10px, 0);
344 }
345 90% {
346 transform: translate3d(0, -5px, 0);
347 }
348 to {
349 transform: translate3d(0, 0, 0);
350 }
351 }
352 .bounceInUp {
353 animation-name: bounceInUp;
354 }
355 @keyframes bounceOut {
356 20% {
357 transform: scale3d(0.9, 0.9, 0.9);
358 }
359 50%, 55% {
360 opacity: 1;
361 transform: scale3d(1.1, 1.1, 1.1);
362 }
363 to {
364 opacity: 0;
365 transform: scale3d(0.3, 0.3, 0.3);
366 }
367 }
368 .bounceOut {
369 animation-name: bounceOut;
370 }
371 @keyframes bounceOutDown {
372 20% {
373 transform: translate3d(0, 10px, 0);
374 }
375 40%, 45% {
376 opacity: 1;
377 transform: translate3d(0, -20px, 0);
378 }
379 to {
380 opacity: 0;
381 transform: translate3d(0, 2000px, 0);
382 }
383 }
384 .bounceOutDown {
385 animation-name: bounceOutDown;
386 }
387 @keyframes bounceOutLeft {
388 20% {
389 opacity: 1;
390 transform: translate3d(20px, 0, 0);
391 }
392 to {
393 opacity: 0;
394 transform: translate3d(-2000px, 0, 0);
395 }
396 }
397 .bounceOutLeft {
398 animation-name: bounceOutLeft;
399 }
400 @keyframes bounceOutRight {
401 20% {
402 opacity: 1;
403 transform: translate3d(-20px, 0, 0);
404 }
405 to {
406 opacity: 0;
407 transform: translate3d(2000px, 0, 0);
408 }
409 }
410 .bounceOutRight {
411 animation-name: bounceOutRight;
412 }
413 @keyframes bounceOutUp {
414 20% {
415 transform: translate3d(0, -10px, 0);
416 }
417 40%, 45% {
418 opacity: 1;
419 transform: translate3d(0, 20px, 0);
420 }
421 to {
422 opacity: 0;
423 transform: translate3d(0, -2000px, 0);
424 }
425 }
426 .bounceOutUp {
427 animation-name: bounceOutUp;
428 }
429 @keyframes fadeIn {
430 from {
431 opacity: 0;
432 }
433 to {
434 opacity: 1;
435 }
436 }
437 .fadeIn {
438 animation-name: fadeIn;
439 }
440 @keyframes fadeInDown {
441 from {
442 opacity: 0;
443 transform: translate3d(0, -30%, 0);
444 }
445 to {
446 opacity: 1;
447 transform: none;
448 }
449 }
450 .fadeInDown {
451 animation-name: fadeInDown;
452 }
453 @keyframes fadeInDownBig {
454 from {
455 opacity: 0;
456 transform: translate3d(0, -2000px, 0);
457 }
458 to {
459 opacity: 1;
460 transform: none;
461 }
462 }
463 .fadeInDownBig {
464 animation-name: fadeInDownBig;
465 }
466 @keyframes fadeInLeft {
467 from {
468 opacity: 0;
469 transform: translate3d(-10%, 0, 0);
470 }
471 to {
472 opacity: 1;
473 transform: none;
474 }
475 }
476 .fadeInLeft {
477 animation-name: fadeInLeft;
478 }
479 @keyframes fadeInLeftBig {
480 from {
481 opacity: 0;
482 transform: translate3d(-2000px, 0, 0);
483 }
484 to {
485 opacity: 1;
486 transform: none;
487 }
488 }
489 .fadeInLeftBig {
490 animation-name: fadeInLeftBig;
491 }
492 @keyframes fadeInRight {
493 from {
494 opacity: 0;
495 transform: translate3d(10%, 0, 0);
496 }
497 to {
498 opacity: 1;
499 transform: none;
500 }
501 }
502 .fadeInRight {
503 animation-name: fadeInRight;
504 }
505 @keyframes fadeInRightBig {
506 from {
507 opacity: 0;
508 transform: translate3d(2000px, 0, 0);
509 }
510 to {
511 opacity: 1;
512 transform: none;
513 }
514 }
515 .fadeInRightBig {
516 animation-name: fadeInRightBig;
517 }
518 @keyframes fadeInUp {
519 from {
520 opacity: 0;
521 transform: translate3d(0, 15%, 0);
522 }
523 to {
524 opacity: 1;
525 transform: none;
526 }
527 }
528 .fadeInUp {
529 animation-name: fadeInUp;
530 }
531 @keyframes fadeInUpBig {
532 from {
533 opacity: 0;
534 transform: translate3d(0, 2000px, 0);
535 }
536 to {
537 opacity: 1;
538 transform: none;
539 }
540 }
541 .fadeInUpBig {
542 animation-name: fadeInUpBig;
543 }
544 @keyframes fadeOut {
545 from {
546 opacity: 1;
547 }
548 to {
549 opacity: 0;
550 }
551 }
552 .fadeOut {
553 animation-name: fadeOut;
554 }
555 @keyframes fadeOutDown {
556 from {
557 opacity: 1;
558 }
559 to {
560 opacity: 0;
561 transform: translate3d(0, 30%, 0);
562 }
563 }
564 .fadeOutDown {
565 animation-name: fadeOutDown;
566 }
567 @keyframes fadeOutDownBig {
568 from {
569 opacity: 1;
570 }
571 to {
572 opacity: 0;
573 transform: translate3d(0, 2000px, 0);
574 }
575 }
576 .fadeOutDownBig {
577 animation-name: fadeOutDownBig;
578 }
579 @keyframes fadeOutLeft {
580 from {
581 opacity: 1;
582 }
583 to {
584 opacity: 0;
585 transform: translate3d(-10%, 0, 0);
586 }
587 }
588 .fadeOutLeft {
589 animation-name: fadeOutLeft;
590 }
591 @keyframes fadeOutLeftBig {
592 from {
593 opacity: 1;
594 }
595 to {
596 opacity: 0;
597 transform: translate3d(-2000px, 0, 0);
598 }
599 }
600 .fadeOutLeftBig {
601 animation-name: fadeOutLeftBig;
602 }
603 @keyframes fadeOutRight {
604 from {
605 opacity: 1;
606 }
607 to {
608 opacity: 0;
609 transform: translate3d(10%, 0, 0);
610 }
611 }
612 .fadeOutRight {
613 animation-name: fadeOutRight;
614 }
615 @keyframes fadeOutRightBig {
616 from {
617 opacity: 1;
618 }
619 to {
620 opacity: 0;
621 transform: translate3d(2000px, 0, 0);
622 }
623 }
624 .fadeOutRightBig {
625 animation-name: fadeOutRightBig;
626 }
627 @keyframes fadeOutUp {
628 from {
629 opacity: 1;
630 }
631 to {
632 opacity: 0;
633 transform: translate3d(0, -30%, 0);
634 }
635 }
636 .fadeOutUp {
637 animation-name: fadeOutUp;
638 }
639 @keyframes fadeOutUpBig {
640 from {
641 opacity: 1;
642 }
643 to {
644 opacity: 0;
645 transform: translate3d(0, -2000px, 0);
646 }
647 }
648 .fadeOutUpBig {
649 animation-name: fadeOutUpBig;
650 }
651 @keyframes flip {
652 from {
653 transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
654 animation-timing-function: ease-out;
655 }
656 40% {
657 transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
658 animation-timing-function: ease-out;
659 }
660 50% {
661 transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
662 animation-timing-function: ease-in;
663 }
664 80% {
665 transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
666 animation-timing-function: ease-in;
667 }
668 to {
669 transform: perspective(400px);
670 animation-timing-function: ease-in;
671 }
672 }
673 .animated.flip {
674 backface-visibility: visible;
675 animation-name: flip;
676 }
677 @keyframes flipInX {
678 from {
679 transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
680 animation-timing-function: ease-in;
681 opacity: 0;
682 }
683 40% {
684 transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
685 animation-timing-function: ease-in;
686 }
687 60% {
688 transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
689 opacity: 1;
690 }
691 80% {
692 transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
693 }
694 to {
695 transform: perspective(400px);
696 }
697 }
698 .flipInX {
699 backface-visibility: visible !important;
700 animation-name: flipInX;
701 }
702 @keyframes flipInY {
703 from {
704 transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
705 animation-timing-function: ease-in;
706 opacity: 0;
707 }
708 40% {
709 transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
710 animation-timing-function: ease-in;
711 }
712 60% {
713 transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
714 opacity: 1;
715 }
716 80% {
717 transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
718 }
719 to {
720 transform: perspective(400px);
721 }
722 }
723 .flipInY {
724 backface-visibility: visible !important;
725 animation-name: flipInY;
726 }
727 @keyframes flipOutX {
728 from {
729 transform: perspective(400px);
730 }
731 30% {
732 transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
733 opacity: 1;
734 }
735 to {
736 transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
737 opacity: 0;
738 }
739 }
740 .flipOutX {
741 animation-name: flipOutX;
742 backface-visibility: visible !important;
743 }
744 @keyframes flipOutY {
745 from {
746 transform: perspective(400px);
747 }
748 30% {
749 transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
750 opacity: 1;
751 }
752 to {
753 transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
754 opacity: 0;
755 }
756 }
757 .flipOutY {
758 backface-visibility: visible !important;
759 animation-name: flipOutY;
760 }
761 @keyframes lightSpeedIn {
762 from {
763 transform: translate3d(10%, 0, 0) skewX(-30deg);
764 opacity: 0;
765 }
766 60% {
767 transform: skewX(20deg);
768 opacity: 1;
769 }
770 80% {
771 transform: skewX(-5deg);
772 opacity: 1;
773 }
774 to {
775 transform: none;
776 opacity: 1;
777 }
778 }
779 .lightSpeedIn {
780 animation-name: lightSpeedIn;
781 animation-timing-function: ease-out;
782 }
783 @keyframes lightSpeedOut {
784 from {
785 opacity: 1;
786 }
787 to {
788 transform: translate3d(10%, 0, 0) skewX(30deg);
789 opacity: 0;
790 }
791 }
792 .lightSpeedOut {
793 animation-name: lightSpeedOut;
794 animation-timing-function: ease-in;
795 }
796 @keyframes rotateIn {
797 from {
798 transform-origin: center;
799 transform: rotate3d(0, 0, 1, -200deg);
800 opacity: 0;
801 }
802 to {
803 transform-origin: center;
804 transform: none;
805 opacity: 1;
806 }
807 }
808 .rotateIn {
809 animation-name: rotateIn;
810 }
811 @keyframes rotateInDownLeft {
812 from {
813 transform-origin: left bottom;
814 transform: rotate3d(0, 0, 1, -45deg);
815 opacity: 0;
816 }
817 to {
818 transform-origin: left bottom;
819 transform: none;
820 opacity: 1;
821 }
822 }
823 .rotateInDownLeft {
824 animation-name: rotateInDownLeft;
825 }
826 @keyframes rotateInDownRight {
827 from {
828 transform-origin: right bottom;
829 transform: rotate3d(0, 0, 1, 45deg);
830 opacity: 0;
831 }
832 to {
833 transform-origin: right bottom;
834 transform: none;
835 opacity: 1;
836 }
837 }
838 .rotateInDownRight {
839 animation-name: rotateInDownRight;
840 }
841 @keyframes rotateInUpLeft {
842 from {
843 transform-origin: left bottom;
844 transform: rotate3d(0, 0, 1, 45deg);
845 opacity: 0;
846 }
847 to {
848 transform-origin: left bottom;
849 transform: none;
850 opacity: 1;
851 }
852 }
853 .rotateInUpLeft {
854 animation-name: rotateInUpLeft;
855 }
856 @keyframes rotateInUpRight {
857 from {
858 transform-origin: right bottom;
859 transform: rotate3d(0, 0, 1, -90deg);
860 opacity: 0;
861 }
862 to {
863 transform-origin: right bottom;
864 transform: none;
865 opacity: 1;
866 }
867 }
868 .rotateInUpRight {
869 animation-name: rotateInUpRight;
870 }
871 @keyframes rotateOut {
872 from {
873 transform-origin: center;
874 opacity: 1;
875 }
876 to {
877 transform-origin: center;
878 transform: rotate3d(0, 0, 1, 200deg);
879 opacity: 0;
880 }
881 }
882 .rotateOut {
883 animation-name: rotateOut;
884 }
885 @keyframes rotateOutDownLeft {
886 from {
887 transform-origin: left bottom;
888 opacity: 1;
889 }
890 to {
891 transform-origin: left bottom;
892 transform: rotate3d(0, 0, 1, 45deg);
893 opacity: 0;
894 }
895 }
896 .rotateOutDownLeft {
897 animation-name: rotateOutDownLeft;
898 }
899 @keyframes rotateOutDownRight {
900 from {
901 transform-origin: right bottom;
902 opacity: 1;
903 }
904 to {
905 transform-origin: right bottom;
906 transform: rotate3d(0, 0, 1, -45deg);
907 opacity: 0;
908 }
909 }
910 .rotateOutDownRight {
911 animation-name: rotateOutDownRight;
912 }
913 @keyframes rotateOutUpLeft {
914 from {
915 transform-origin: left bottom;
916 opacity: 1;
917 }
918 to {
919 transform-origin: left bottom;
920 transform: rotate3d(0, 0, 1, -45deg);
921 opacity: 0;
922 }
923 }
924 .rotateOutUpLeft {
925 animation-name: rotateOutUpLeft;
926 }
927 @keyframes rotateOutUpRight {
928 from {
929 transform-origin: right bottom;
930 opacity: 1;
931 }
932 to {
933 transform-origin: right bottom;
934 transform: rotate3d(0, 0, 1, 90deg);
935 opacity: 0;
936 }
937 }
938 .rotateOutUpRight {
939 animation-name: rotateOutUpRight;
940 }
941 @keyframes hinge {
942 0% {
943 transform-origin: top left;
944 animation-timing-function: ease-in-out;
945 }
946 20%, 60% {
947 transform: rotate3d(0, 0, 1, 80deg);
948 transform-origin: top left;
949 animation-timing-function: ease-in-out;
950 }
951 40%, 80% {
952 transform: rotate3d(0, 0, 1, 60deg);
953 transform-origin: top left;
954 animation-timing-function: ease-in-out;
955 opacity: 1;
956 }
957 to {
958 transform: translate3d(0, 700px, 0);
959 opacity: 0;
960 }
961 }
962 .hinge {
963 animation-name: hinge;
964 }
965 @keyframes rollIn {
966 from {
967 opacity: 0;
968 transform: translate3d(-10%, 0, 0) rotate3d(0, 0, 1, -120deg);
969 }
970 to {
971 opacity: 1;
972 transform: none;
973 }
974 }
975 .rollIn {
976 animation-name: rollIn;
977 }
978 @keyframes rollOut {
979 from {
980 opacity: 1;
981 }
982 to {
983 opacity: 0;
984 transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 120deg);
985 }
986 }
987 .rollOut {
988 animation-name: rollOut;
989 }
990 @keyframes zoomIn {
991 from {
992 opacity: 0;
993 transform: scale3d(0.3, 0.3, 0.3);
994 }
995 50% {
996 opacity: 1;
997 }
998 }
999 .zoomIn {
1000 animation-name: zoomIn;
1001 }
1002 @keyframes zoomInDown {
1003 from {
1004 opacity: 0;
1005 transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
1006 animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
1007 }
1008 60% {
1009 opacity: 1;
1010 transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
1011 animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
1012 }
1013 }
1014 .zoomInDown {
1015 animation-name: zoomInDown;
1016 }
1017 @keyframes zoomInLeft {
1018 from {
1019 opacity: 0;
1020 transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
1021 animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
1022 }
1023 60% {
1024 opacity: 1;
1025 transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
1026 animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
1027 }
1028 }
1029 .zoomInLeft {
1030 animation-name: zoomInLeft;
1031 }
1032 @keyframes zoomInRight {
1033 from {
1034 opacity: 0;
1035 transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
1036 animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
1037 }
1038 60% {
1039 opacity: 1;
1040 transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
1041 animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
1042 }
1043 }
1044 .zoomInRight {
1045 animation-name: zoomInRight;
1046 }
1047 @keyframes zoomInUp {
1048 from {
1049 opacity: 0;
1050 transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
1051 animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
1052 }
1053 60% {
1054 opacity: 1;
1055 transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
1056 animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
1057 }
1058 }
1059 .zoomInUp {
1060 animation-name: zoomInUp;
1061 }
1062 @keyframes zoomOut {
1063 from {
1064 opacity: 1;
1065 }
1066 50% {
1067 opacity: 0;
1068 transform: scale3d(0.3, 0.3, 0.3);
1069 }
1070 to {
1071 opacity: 0;
1072 }
1073 }
1074 .zoomOut {
1075 animation-name: zoomOut;
1076 }
1077 @keyframes zoomOutDown {
1078 40% {
1079 opacity: 1;
1080 transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
1081 animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
1082 }
1083 to {
1084 opacity: 0;
1085 transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
1086 transform-origin: center bottom;
1087 animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
1088 }
1089 }
1090 .zoomOutDown {
1091 animation-name: zoomOutDown;
1092 }
1093 @keyframes zoomOutLeft {
1094 40% {
1095 opacity: 1;
1096 transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
1097 }
1098 to {
1099 opacity: 0;
1100 transform: scale(0.1) translate3d(-2000px, 0, 0);
1101 transform-origin: left center;
1102 }
1103 }
1104 .zoomOutLeft {
1105 animation-name: zoomOutLeft;
1106 }
1107 @keyframes zoomOutRight {
1108 40% {
1109 opacity: 1;
1110 transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
1111 }
1112 to {
1113 opacity: 0;
1114 transform: scale(0.1) translate3d(2000px, 0, 0);
1115 transform-origin: right center;
1116 }
1117 }
1118 .zoomOutRight {
1119 animation-name: zoomOutRight;
1120 }
1121 @keyframes zoomOutUp {
1122 40% {
1123 opacity: 1;
1124 transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
1125 animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
1126 }
1127 to {
1128 opacity: 0;
1129 transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
1130 transform-origin: center bottom;
1131 animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
1132 }
1133 }
1134 .zoomOutUp {
1135 animation-name: zoomOutUp;
1136 }
1137 @keyframes slideInDown {
1138 from {
1139 transform: translate3d(0, -30%, 0);
1140 visibility: visible;
1141 }
1142 to {
1143 transform: translate3d(0, 0, 0);
1144 }
1145 }
1146 .slideInDown {
1147 animation-name: slideInDown;
1148 }
1149 @keyframes slideInLeft {
1150 from {
1151 transform: translate3d(-10%, 0, 0);
1152 visibility: visible;
1153 }
1154 to {
1155 transform: translate3d(0, 0, 0);
1156 }
1157 }
1158 .slideInLeft {
1159 animation-name: slideInLeft;
1160 }
1161 @keyframes slideInRight {
1162 from {
1163 transform: translate3d(10%, 0, 0);
1164 visibility: visible;
1165 }
1166 to {
1167 transform: translate3d(0, 0, 0);
1168 }
1169 }
1170 .slideInRight {
1171 animation-name: slideInRight;
1172 }
1173 @keyframes slideInUp {
1174 from {
1175 transform: translate3d(0, 30%, 0);
1176 visibility: visible;
1177 }
1178 to {
1179 transform: translate3d(0, 0, 0);
1180 }
1181 }
1182 .slideInUp {
1183 animation-name: slideInUp;
1184 }
1185 @keyframes slideOutDown {
1186 from {
1187 transform: translate3d(0, 0, 0);
1188 }
1189 to {
1190 visibility: hidden;
1191 transform: translate3d(0, 30%, 0);
1192 }
1193 }
1194 .slideOutDown {
1195 animation-name: slideOutDown;
1196 }
1197 @keyframes slideOutLeft {
1198 from {
1199 transform: translate3d(0, 0, 0);
1200 }
1201 to {
1202 visibility: hidden;
1203 transform: translate3d(-10%, 0, 0);
1204 }
1205 }
1206 .slideOutLeft {
1207 animation-name: slideOutLeft;
1208 }
1209 @keyframes slideOutRight {
1210 from {
1211 transform: translate3d(0, 0, 0);
1212 }
1213 to {
1214 visibility: hidden;
1215 transform: translate3d(10%, 0, 0);
1216 }
1217 }
1218 .slideOutRight {
1219 animation-name: slideOutRight;
1220 }
1221 @keyframes slideOutUp {
1222 from {
1223 transform: translate3d(0, 0, 0);
1224 }
1225 to {
1226 visibility: hidden;
1227 transform: translate3d(0, -30%, 0);
1228 }
1229 }
1230 .slideOutUp {
1231 animation-name: slideOutUp;
1232 }
1233
1234 @font-face {
1235 font-family: Unicons;
1236 src: url("../fonts/unicons/Unicons.eot");
1237 src: url("../fonts/unicons/Unicons.eot#iefix") format("embedded-opentype"), url("../fonts/unicons/Unicons.ttf") format("truetype"), url("../fonts/unicons/Unicons.woff") format("woff"), url("../fonts/unicons/Unicons.svg#Unicons") format("svg");
1238 font-weight: normal;
1239 font-style: normal;
1240 font-display: swap;
1241 }
1242 [class^=unicon-],
1243 [class*=" unicon-"] {
1244 font-family: "Unicons" !important;
1245 speak: never;
1246 font-style: normal;
1247 font-weight: normal;
1248 font-variant: normal;
1249 text-transform: none;
1250 line-height: 1;
1251 -webkit-font-smoothing: antialiased;
1252 -moz-osx-font-smoothing: grayscale;
1253 }
1254
1255 .unicon-grid-filled:before {
1256 content: "\eb4e";
1257 }
1258
1259 .unicon-logo-facebook-alt:before {
1260 content: "\eb59";
1261 }
1262
1263 .unicon-shopping-basket:before {
1264 content: "\eb5a";
1265 }
1266
1267 .unicon-logo-dribbble:before {
1268 content: "\eb15";
1269 }
1270
1271 .unicon-cart:before {
1272 content: "\eb16";
1273 }
1274
1275 .unicon-cloud:before {
1276 content: "\eb17";
1277 }
1278
1279 .unicon-download-cloud:before {
1280 content: "\eb18";
1281 }
1282
1283 .unicon-drizzle-cloud:before {
1284 content: "\eb19";
1285 }
1286
1287 .unicon-lightning-cloud:before {
1288 content: "\eb1a";
1289 }
1290
1291 .unicon-message-circle:before {
1292 content: "\eb1b";
1293 }
1294
1295 .unicon-message-square:before {
1296 content: "\eb1c";
1297 }
1298
1299 .unicon-rain-cloud:before {
1300 content: "\eb1d";
1301 }
1302
1303 .unicon-snow-cloud:before {
1304 content: "\eb1e";
1305 }
1306
1307 .unicon-sun:before {
1308 content: "\eb1f";
1309 }
1310
1311 .unicon-sunrise:before {
1312 content: "\eb20";
1313 }
1314
1315 .unicon-sunset:before {
1316 content: "\eb21";
1317 }
1318
1319 .unicon-thermometer:before {
1320 content: "\eb22";
1321 }
1322
1323 .unicon-umbrella1:before {
1324 content: "\eb23";
1325 }
1326
1327 .unicon-upload-cloud:before {
1328 content: "\eb24";
1329 }
1330
1331 .unicon-wind:before {
1332 content: "\eb25";
1333 }
1334
1335 .unicon-document-alt-filled:before {
1336 content: "\eb26";
1337 }
1338
1339 .unicon-document-alt:before {
1340 content: "\eb27";
1341 }
1342
1343 .unicon-document-blank-filled:before {
1344 content: "\eb28";
1345 }
1346
1347 .unicon-folder-filled:before {
1348 content: "\eb29";
1349 }
1350
1351 .unicon-user-group-filled:before {
1352 content: "\eb2a";
1353 }
1354
1355 .unicon-image-gallery-filled:before {
1356 content: "\eb2b";
1357 }
1358
1359 .unicon-image-slider-filled:before {
1360 content: "\eb2c";
1361 }
1362
1363 .unicon-checkbox-checked-filled:before {
1364 content: "\eb2d";
1365 }
1366
1367 .unicon-checkmark-alt:before {
1368 content: "\eb2e";
1369 }
1370
1371 .unicon-checkmark-outline-filled:before {
1372 content: "\eb2f";
1373 }
1374
1375 .unicon-email-filled:before {
1376 content: "\eb30";
1377 }
1378
1379 .unicon-image-filled:before {
1380 content: "\eb31";
1381 }
1382
1383 .unicon-star-half-alt-filled:before {
1384 content: "\eb32";
1385 }
1386
1387 .unicon-star-half-filled:before {
1388 content: "\eb33";
1389 }
1390
1391 .unicon-trophy-filled:before {
1392 content: "\eb34";
1393 }
1394
1395 .unicon-view-alt-filled:before {
1396 content: "\eb35";
1397 }
1398
1399 .unicon-delete-filled:before {
1400 content: "\eb36";
1401 }
1402
1403 .unicon-add-alt-filled:before {
1404 content: "\eb37";
1405 }
1406
1407 .unicon-asleep-filled:before {
1408 content: "\eb38";
1409 }
1410
1411 .unicon-blog-filled:before {
1412 content: "\eb39";
1413 }
1414
1415 .unicon-bookmark-filled:before {
1416 content: "\eb3a";
1417 }
1418
1419 .unicon-data-1-filled:before {
1420 content: "\eb3b";
1421 }
1422
1423 .unicon-home-filled:before {
1424 content: "\eb3c";
1425 }
1426
1427 .unicon-idea-filled:before {
1428 content: "\eb3d";
1429 }
1430
1431 .unicon-layers-filled:before {
1432 content: "\eb3e";
1433 }
1434
1435 .unicon-location-filled:before {
1436 content: "\eb3f";
1437 }
1438
1439 .unicon-locked-filled:before {
1440 content: "\eb40";
1441 }
1442
1443 .unicon-logo-instagram-filled:before {
1444 content: "\eb41";
1445 }
1446
1447 .unicon-logo-x-filled:before {
1448 content: "\eb42";
1449 }
1450
1451 .unicon-logo-x:before {
1452 content: "\eb43";
1453 }
1454
1455 .unicon-phone-filled:before {
1456 content: "\eb44";
1457 }
1458
1459 .unicon-printer-filled:before {
1460 content: "\eb45";
1461 }
1462
1463 .unicon-reply-filled:before {
1464 content: "\eb46";
1465 }
1466
1467 .unicon-request-quote-filled:before {
1468 content: "\eb47";
1469 }
1470
1471 .unicon-security-filled:before {
1472 content: "\eb48";
1473 }
1474
1475 .unicon-settings-adjust-filled:before {
1476 content: "\eb49";
1477 }
1478
1479 .unicon-settings-filled:before {
1480 content: "\eb4a";
1481 }
1482
1483 .unicon-share-filled:before {
1484 content: "\eb4b";
1485 }
1486
1487 .unicon-shopping-cart-alt-filled:before {
1488 content: "\eb4c";
1489 }
1490
1491 .unicon-shopping-cart-alt:before {
1492 content: "\eb4d";
1493 }
1494
1495 .unicon-shopping-cart-filled:before {
1496 content: "\eb4f";
1497 }
1498
1499 .unicon-skill-level-filled:before {
1500 content: "\eb50";
1501 }
1502
1503 .unicon-sub-volume-filled:before {
1504 content: "\eb51";
1505 }
1506
1507 .unicon-tag-filled:before {
1508 content: "\eb52";
1509 }
1510
1511 .unicon-tag-group-filled:before {
1512 content: "\eb53";
1513 }
1514
1515 .unicon-time-filled:before {
1516 content: "\eb54";
1517 }
1518
1519 .unicon-tools-filled:before {
1520 content: "\eb55";
1521 }
1522
1523 .unicon-unlocked-filled:before {
1524 content: "\eb56";
1525 }
1526
1527 .unicon-user-filled:before {
1528 content: "\eb57";
1529 }
1530
1531 .unicon-account:before {
1532 content: "\e900";
1533 }
1534
1535 .unicon-activity:before {
1536 content: "\e901";
1537 }
1538
1539 .unicon-add-alt:before {
1540 content: "\e902";
1541 }
1542
1543 .unicon-add:before {
1544 content: "\e903";
1545 }
1546
1547 .unicon-airplay-filled:before {
1548 content: "\e904";
1549 }
1550
1551 .unicon-airplay:before {
1552 content: "\e905";
1553 }
1554
1555 .unicon-airport-location:before {
1556 content: "\e906";
1557 }
1558
1559 .unicon-analytics:before {
1560 content: "\e907";
1561 }
1562
1563 .unicon-api:before {
1564 content: "\e908";
1565 }
1566
1567 .unicon-archive:before {
1568 content: "\e909";
1569 }
1570
1571 .unicon-area:before {
1572 content: "\e90a";
1573 }
1574
1575 .unicon-arrow-down:before {
1576 content: "\e90b";
1577 }
1578
1579 .unicon-arrow-left:before {
1580 content: "\e90c";
1581 }
1582
1583 .unicon-arrow-right:before {
1584 content: "\e90d";
1585 }
1586
1587 .unicon-arrow-up-right:before {
1588 content: "\e90e";
1589 }
1590
1591 .unicon-arrow-up:before {
1592 content: "\e90f";
1593 }
1594
1595 .unicon-asleep:before {
1596 content: "\e910";
1597 }
1598
1599 .unicon-attachment:before {
1600 content: "\e911";
1601 }
1602
1603 .unicon-audio-console:before {
1604 content: "\e912";
1605 }
1606
1607 .unicon-augmented-reality:before {
1608 content: "\e913";
1609 }
1610
1611 .unicon-auto-scroll:before {
1612 content: "\e914";
1613 }
1614
1615 .unicon-awake:before {
1616 content: "\e915";
1617 }
1618
1619 .unicon-back-to-top:before {
1620 content: "\e916";
1621 }
1622
1623 .unicon-bar:before {
1624 content: "\e917";
1625 }
1626
1627 .unicon-barrier:before {
1628 content: "\e918";
1629 }
1630
1631 .unicon-bastion-host:before {
1632 content: "\e919";
1633 }
1634
1635 .unicon-blog:before {
1636 content: "\e91a";
1637 }
1638
1639 .unicon-book:before {
1640 content: "\e91b";
1641 }
1642
1643 .unicon-bookmark-add:before {
1644 content: "\e91c";
1645 }
1646
1647 .unicon-bookmark:before {
1648 content: "\e91d";
1649 }
1650
1651 .unicon-box:before {
1652 content: "\e91e";
1653 }
1654
1655 .unicon-brightness-contrast:before {
1656 content: "\e91f";
1657 }
1658
1659 .unicon-brush-freehand:before {
1660 content: "\e920";
1661 }
1662
1663 .unicon-building:before {
1664 content: "\e921";
1665 }
1666
1667 .unicon-calendar:before {
1668 content: "\e922";
1669 }
1670
1671 .unicon-camera:before {
1672 content: "\e923";
1673 }
1674
1675 .unicon-carbon:before {
1676 content: "\e924";
1677 }
1678
1679 .unicon-caret-down:before {
1680 content: "\e925";
1681 }
1682
1683 .unicon-caret-left:before {
1684 content: "\e926";
1685 }
1686
1687 .unicon-caret-right:before {
1688 content: "\e927";
1689 }
1690
1691 .unicon-caret-sort:before {
1692 content: "\e928";
1693 }
1694
1695 .unicon-caret-up:before {
1696 content: "\e929";
1697 }
1698
1699 .unicon-carousel-horizontal:before {
1700 content: "\e92a";
1701 }
1702
1703 .unicon-carousel-vertical:before {
1704 content: "\e92b";
1705 }
1706
1707 .unicon-categories:before {
1708 content: "\e92c";
1709 }
1710
1711 .unicon-cd-archive:before {
1712 content: "\e92d";
1713 }
1714
1715 .unicon-center-circle:before {
1716 content: "\e92e";
1717 }
1718
1719 .unicon-center-to-fit:before {
1720 content: "\e92f";
1721 }
1722
1723 .unicon-certificate:before {
1724 content: "\e930";
1725 }
1726
1727 .unicon-chart-column:before {
1728 content: "\e931";
1729 }
1730
1731 .unicon-chart-line-data:before {
1732 content: "\e932";
1733 }
1734
1735 .unicon-chart-pie:before {
1736 content: "\e933";
1737 }
1738
1739 .unicon-chart-ring:before {
1740 content: "\e934";
1741 }
1742
1743 .unicon-chart-stacked:before {
1744 content: "\e935";
1745 }
1746
1747 .unicon-chart-treemap:before {
1748 content: "\e936";
1749 }
1750
1751 .unicon-chart-venn-diagram:before {
1752 content: "\e937";
1753 }
1754
1755 .unicon-chat-bot:before {
1756 content: "\e938";
1757 }
1758
1759 .unicon-chat-launch:before {
1760 content: "\e939";
1761 }
1762
1763 .unicon-chat:before {
1764 content: "\e93a";
1765 }
1766
1767 .unicon-checkbox-checked:before {
1768 content: "\e93b";
1769 }
1770
1771 .unicon-checkbox:before {
1772 content: "\e93c";
1773 }
1774
1775 .unicon-checkmark-outline:before {
1776 content: "\e93d";
1777 }
1778
1779 .unicon-checkmark:before {
1780 content: "\e93e";
1781 }
1782
1783 .unicon-chevron-down:before {
1784 content: "\e93f";
1785 }
1786
1787 .unicon-chevron-left:before {
1788 content: "\e940";
1789 }
1790
1791 .unicon-chevron-mini:before {
1792 content: "\e941";
1793 }
1794
1795 .unicon-chevron-right:before {
1796 content: "\e942";
1797 }
1798
1799 .unicon-chevron-sort-down:before {
1800 content: "\e943";
1801 }
1802
1803 .unicon-chevron-sort-up:before {
1804 content: "\e944";
1805 }
1806
1807 .unicon-chevron-sort:before {
1808 content: "\e945";
1809 }
1810
1811 .unicon-chevron-up:before {
1812 content: "\e946";
1813 }
1814
1815 .unicon-circle-dash:before {
1816 content: "\e947";
1817 }
1818
1819 .unicon-circle-measurement:before {
1820 content: "\e948";
1821 }
1822
1823 .unicon-clean:before {
1824 content: "\e949";
1825 }
1826
1827 .unicon-close-outline:before {
1828 content: "\e94a";
1829 }
1830
1831 .unicon-close:before {
1832 content: "\e94b";
1833 }
1834
1835 .unicon-cloud-download:before {
1836 content: "\e94c";
1837 }
1838
1839 .unicon-cloud-lightning:before {
1840 content: "\e94d";
1841 }
1842
1843 .unicon-cloud-satellite:before {
1844 content: "\e94e";
1845 }
1846
1847 .unicon-cloud-upload:before {
1848 content: "\e94f";
1849 }
1850
1851 .unicon-cobb-angle:before {
1852 content: "\e950";
1853 }
1854
1855 .unicon-code:before {
1856 content: "\e951";
1857 }
1858
1859 .unicon-collaborate:before {
1860 content: "\e952";
1861 }
1862
1863 .unicon-collapse-all:before {
1864 content: "\e953";
1865 }
1866
1867 .unicon-color-palette:before {
1868 content: "\e954";
1869 }
1870
1871 .unicon-color-switch:before {
1872 content: "\e955";
1873 }
1874
1875 .unicon-column:before {
1876 content: "\e956";
1877 }
1878
1879 .unicon-compare:before {
1880 content: "\e957";
1881 }
1882
1883 .unicon-condition-point:before {
1884 content: "\e958";
1885 }
1886
1887 .unicon-condition-wait-point:before {
1888 content: "\e959";
1889 }
1890
1891 .unicon-container-software:before {
1892 content: "\e95a";
1893 }
1894
1895 .unicon-contour-finding:before {
1896 content: "\e95b";
1897 }
1898
1899 .unicon-contrast:before {
1900 content: "\e95c";
1901 }
1902
1903 .unicon-copy-file:before {
1904 content: "\e95d";
1905 }
1906
1907 .unicon-copy:before {
1908 content: "\e95e";
1909 }
1910
1911 .unicon-course:before {
1912 content: "\e95f";
1913 }
1914
1915 .unicon-credentials:before {
1916 content: "\e960";
1917 }
1918
1919 .unicon-crop:before {
1920 content: "\e961";
1921 }
1922
1923 .unicon-cube-view:before {
1924 content: "\e962";
1925 }
1926
1927 .unicon-cube:before {
1928 content: "\e963";
1929 }
1930
1931 .unicon-currency-dollar:before {
1932 content: "\e964";
1933 }
1934
1935 .unicon-currency:before {
1936 content: "\e965";
1937 }
1938
1939 .unicon-cursor-1:before {
1940 content: "\e966";
1941 }
1942
1943 .unicon-cursor-2:before {
1944 content: "\e967";
1945 }
1946
1947 .unicon-cursor-alt:before {
1948 content: "\e968";
1949 }
1950
1951 .unicon-cursor:before {
1952 content: "\e969";
1953 }
1954
1955 .unicon-curve-auto-colon:before {
1956 content: "\e96a";
1957 }
1958
1959 .unicon-curve-manual:before {
1960 content: "\e96b";
1961 }
1962
1963 .unicon-cut-in-half:before {
1964 content: "\e96c";
1965 }
1966
1967 .unicon-cut:before {
1968 content: "\e96d";
1969 }
1970
1971 .unicon-dashboard-reference:before {
1972 content: "\e96e";
1973 }
1974
1975 .unicon-dashboard:before {
1976 content: "\e96f";
1977 }
1978
1979 .unicon-data-1:before {
1980 content: "\e970";
1981 }
1982
1983 .unicon-data-base-alt:before {
1984 content: "\e971";
1985 }
1986
1987 .unicon-data-base:before {
1988 content: "\e972";
1989 }
1990
1991 .unicon-debug:before {
1992 content: "\e973";
1993 }
1994
1995 .unicon-delete:before {
1996 content: "\e974";
1997 }
1998
1999 .unicon-delivery-parcel:before {
2000 content: "\e975";
2001 }
2002
2003 .unicon-delivery-truck:before {
2004 content: "\e976";
2005 }
2006
2007 .unicon-delivery:before {
2008 content: "\e977";
2009 }
2010
2011 .unicon-departure:before {
2012 content: "\e978";
2013 }
2014
2015 .unicon-devices:before {
2016 content: "\e979";
2017 }
2018
2019 .unicon-diagram:before {
2020 content: "\e97a";
2021 }
2022
2023 .unicon-dicom-overlay:before {
2024 content: "\e97b";
2025 }
2026
2027 .unicon-direct-link:before {
2028 content: "\e97c";
2029 }
2030
2031 .unicon-direction-right-01:before {
2032 content: "\e97d";
2033 }
2034
2035 .unicon-direction-straight-right:before {
2036 content: "\e97e";
2037 }
2038
2039 .unicon-direction-straight:before {
2040 content: "\e97f";
2041 }
2042
2043 .unicon-document-add:before {
2044 content: "\e980";
2045 }
2046
2047 .unicon-document-attachment:before {
2048 content: "\e981";
2049 }
2050
2051 .unicon-document-blank:before {
2052 content: "\e982";
2053 }
2054
2055 .unicon-document-download:before {
2056 content: "\e983";
2057 }
2058
2059 .unicon-document:before {
2060 content: "\e984";
2061 }
2062
2063 .unicon-dot-mark:before {
2064 content: "\e985";
2065 }
2066
2067 .unicon-down-to-bottom:before {
2068 content: "\e986";
2069 }
2070
2071 .unicon-download-study:before {
2072 content: "\e987";
2073 }
2074
2075 .unicon-download:before {
2076 content: "\e988";
2077 }
2078
2079 .unicon-drag-horizontal:before {
2080 content: "\e989";
2081 }
2082
2083 .unicon-drag-vertical:before {
2084 content: "\e98a";
2085 }
2086
2087 .unicon-draggable:before {
2088 content: "\e98b";
2089 }
2090
2091 .unicon-draw:before {
2092 content: "\e98c";
2093 }
2094
2095 .unicon-drop-photo-filled:before {
2096 content: "\e98d";
2097 }
2098
2099 .unicon-drop-photo:before {
2100 content: "\e98e";
2101 }
2102
2103 .unicon-earth-americas:before {
2104 content: "\e98f";
2105 }
2106
2107 .unicon-earth-europe-africa:before {
2108 content: "\e990";
2109 }
2110
2111 .unicon-earth-filled:before {
2112 content: "\e991";
2113 }
2114
2115 .unicon-earth:before {
2116 content: "\e992";
2117 }
2118
2119 .unicon-edge-enhancement:before {
2120 content: "\e993";
2121 }
2122
2123 .unicon-edit-off:before {
2124 content: "\e994";
2125 }
2126
2127 .unicon-edit:before {
2128 content: "\e995";
2129 }
2130
2131 .unicon-edt-loop:before {
2132 content: "\e996";
2133 }
2134
2135 .unicon-email-new:before {
2136 content: "\e997";
2137 }
2138
2139 .unicon-email:before {
2140 content: "\e998";
2141 }
2142
2143 .unicon-enterprise:before {
2144 content: "\e999";
2145 }
2146
2147 .unicon-erase:before {
2148 content: "\e99a";
2149 }
2150
2151 .unicon-error-outline:before {
2152 content: "\e99b";
2153 }
2154
2155 .unicon-error:before {
2156 content: "\e99c";
2157 }
2158
2159 .unicon-event-schedule:before {
2160 content: "\e99d";
2161 }
2162
2163 .unicon-event:before {
2164 content: "\e99e";
2165 }
2166
2167 .unicon-events-alt:before {
2168 content: "\e99f";
2169 }
2170
2171 .unicon-events:before {
2172 content: "\e9a0";
2173 }
2174
2175 .unicon-explore:before {
2176 content: "\e9a1";
2177 }
2178
2179 .unicon-export:before {
2180 content: "\e9a2";
2181 }
2182
2183 .unicon-eyedropper:before {
2184 content: "\e9a3";
2185 }
2186
2187 .unicon-face-dissatisfied:before {
2188 content: "\e9a4";
2189 }
2190
2191 .unicon-face-satisfied:before {
2192 content: "\e9a5";
2193 }
2194
2195 .unicon-fade:before {
2196 content: "\e9a6";
2197 }
2198
2199 .unicon-favorite-filled:before {
2200 content: "\e9a7";
2201 }
2202
2203 .unicon-favorite:before {
2204 content: "\e9a8";
2205 }
2206
2207 .unicon-file-storage:before {
2208 content: "\e9a9";
2209 }
2210
2211 .unicon-filter-edit:before {
2212 content: "\e9aa";
2213 }
2214
2215 .unicon-filter:before {
2216 content: "\e9ab";
2217 }
2218
2219 .unicon-finance:before {
2220 content: "\e9ac";
2221 }
2222
2223 .unicon-fingerprint-recognition:before {
2224 content: "\e9ad";
2225 }
2226
2227 .unicon-fire:before {
2228 content: "\e9ae";
2229 }
2230
2231 .unicon-flag-filled:before {
2232 content: "\e9af";
2233 }
2234
2235 .unicon-flag:before {
2236 content: "\e9b0";
2237 }
2238
2239 .unicon-flash-filled:before {
2240 content: "\e9b1";
2241 }
2242
2243 .unicon-flash:before {
2244 content: "\e9b2";
2245 }
2246
2247 .unicon-flow-connection:before {
2248 content: "\e9b3";
2249 }
2250
2251 .unicon-folder-add:before {
2252 content: "\e9b4";
2253 }
2254
2255 .unicon-folder-shared:before {
2256 content: "\e9b5";
2257 }
2258
2259 .unicon-folder:before {
2260 content: "\e9b6";
2261 }
2262
2263 .unicon-folders:before {
2264 content: "\e9b7";
2265 }
2266
2267 .unicon-forum:before {
2268 content: "\e9b8";
2269 }
2270
2271 .unicon-game-console:before {
2272 content: "\e9b9";
2273 }
2274
2275 .unicon-gamification:before {
2276 content: "\e9ba";
2277 }
2278
2279 .unicon-gift:before {
2280 content: "\e9bb";
2281 }
2282
2283 .unicon-globe:before {
2284 content: "\e9bc";
2285 }
2286
2287 .unicon-glyph-caution-inverted:before {
2288 content: "\e9bd";
2289 }
2290
2291 .unicon-glyph-caution:before {
2292 content: "\e9be";
2293 }
2294
2295 .unicon-glyph-circle-fill:before {
2296 content: "\e9bf";
2297 }
2298
2299 .unicon-glyph-square-fill:before {
2300 content: "\e9c0";
2301 }
2302
2303 .unicon-glyph-undefined:before {
2304 content: "\e9c1";
2305 }
2306
2307 .unicon-gradient:before {
2308 content: "\e9c2";
2309 }
2310
2311 .unicon-grid:before {
2312 content: "\e9c3";
2313 }
2314
2315 .unicon-group-objects-new:before {
2316 content: "\e9c4";
2317 }
2318
2319 .unicon-group-objects-save:before {
2320 content: "\e9c5";
2321 }
2322
2323 .unicon-group:before {
2324 content: "\e9c6";
2325 }
2326
2327 .unicon-growth:before {
2328 content: "\e9c7";
2329 }
2330
2331 .unicon-gui-management:before {
2332 content: "\e9c8";
2333 }
2334
2335 .unicon-gui:before {
2336 content: "\e9c9";
2337 }
2338
2339 .unicon-hashtag:before {
2340 content: "\e9ca";
2341 }
2342
2343 .unicon-headphones:before {
2344 content: "\e9cb";
2345 }
2346
2347 .unicon-headset:before {
2348 content: "\e9cc";
2349 }
2350
2351 .unicon-help-filled:before {
2352 content: "\e9cd";
2353 }
2354
2355 .unicon-help:before {
2356 content: "\e9ce";
2357 }
2358
2359 .unicon-hole-filling:before {
2360 content: "\e9cf";
2361 }
2362
2363 .unicon-home:before {
2364 content: "\e9d0";
2365 }
2366
2367 .unicon-ibm-cloud-pak-security:before {
2368 content: "\e9d1";
2369 }
2370
2371 .unicon-iCA-2D:before {
2372 content: "\e9d2";
2373 }
2374
2375 .unicon-idea:before {
2376 content: "\e9d3";
2377 }
2378
2379 .unicon-identification:before {
2380 content: "\e9d4";
2381 }
2382
2383 .unicon-image-copy:before {
2384 content: "\e9d5";
2385 }
2386
2387 .unicon-image-search-alt:before {
2388 content: "\e9d6";
2389 }
2390
2391 .unicon-image-search:before {
2392 content: "\e9d7";
2393 }
2394
2395 .unicon-image:before {
2396 content: "\e9d8";
2397 }
2398
2399 .unicon-in-progress:before {
2400 content: "\e9d9";
2401 }
2402
2403 .unicon-incomplete:before {
2404 content: "\e9da";
2405 }
2406
2407 .unicon-increase-level:before {
2408 content: "\e9db";
2409 }
2410
2411 .unicon-industry:before {
2412 content: "\e9dc";
2413 }
2414
2415 .unicon-information-filled:before {
2416 content: "\e9dd";
2417 }
2418
2419 .unicon-information:before {
2420 content: "\e9de";
2421 }
2422
2423 .unicon-insert-page:before {
2424 content: "\e9df";
2425 }
2426
2427 .unicon-insert-syntax:before {
2428 content: "\e9e0";
2429 }
2430
2431 .unicon-integration:before {
2432 content: "\e9e1";
2433 }
2434
2435 .unicon-interactive-segmentation-cursor:before {
2436 content: "\e9e2";
2437 }
2438
2439 .unicon-intersect:before {
2440 content: "\e9e3";
2441 }
2442
2443 .unicon-inventory-management:before {
2444 content: "\e9e4";
2445 }
2446
2447 .unicon-keyboard:before {
2448 content: "\e9e5";
2449 }
2450
2451 .unicon-language:before {
2452 content: "\e9e6";
2453 }
2454
2455 .unicon-laptop:before {
2456 content: "\e9e7";
2457 }
2458
2459 .unicon-lasso-polygon:before {
2460 content: "\e9e8";
2461 }
2462
2463 .unicon-lasso:before {
2464 content: "\e9e9";
2465 }
2466
2467 .unicon-launch-study-1:before {
2468 content: "\e9ea";
2469 }
2470
2471 .unicon-launch-study-2:before {
2472 content: "\e9eb";
2473 }
2474
2475 .unicon-launch:before {
2476 content: "\e9ec";
2477 }
2478
2479 .unicon-layers:before {
2480 content: "\e9ed";
2481 }
2482
2483 .unicon-legend:before {
2484 content: "\e9ee";
2485 }
2486
2487 .unicon-license-draft:before {
2488 content: "\e9ef";
2489 }
2490
2491 .unicon-lifesaver:before {
2492 content: "\e9f0";
2493 }
2494
2495 .unicon-light-filled:before {
2496 content: "\e9f1";
2497 }
2498
2499 .unicon-light:before {
2500 content: "\e9f2";
2501 }
2502
2503 .unicon-lightning:before {
2504 content: "\e9f3";
2505 }
2506
2507 .unicon-link:before {
2508 content: "\e9f4";
2509 }
2510
2511 .unicon-list-boxes:before {
2512 content: "\e9f5";
2513 }
2514
2515 .unicon-list-bulleted:before {
2516 content: "\e9f6";
2517 }
2518
2519 .unicon-list-checked:before {
2520 content: "\e9f7";
2521 }
2522
2523 .unicon-list-dropdown:before {
2524 content: "\e9f8";
2525 }
2526
2527 .unicon-list-numbered:before {
2528 content: "\e9f9";
2529 }
2530
2531 .unicon-list:before {
2532 content: "\e9fa";
2533 }
2534
2535 .unicon-location-current:before {
2536 content: "\e9fb";
2537 }
2538
2539 .unicon-location:before {
2540 content: "\e9fc";
2541 }
2542
2543 .unicon-locked:before {
2544 content: "\e9fd";
2545 }
2546
2547 .unicon-login:before {
2548 content: "\e9fe";
2549 }
2550
2551 .unicon-logo-delicious:before {
2552 content: "\e9ff";
2553 }
2554
2555 .unicon-logo-digg:before {
2556 content: "\ea00";
2557 }
2558
2559 .unicon-logo-discord:before {
2560 content: "\ea01";
2561 }
2562
2563 .unicon-logo-facebook:before {
2564 content: "\ea02";
2565 }
2566
2567 .unicon-logo-flickr:before {
2568 content: "\ea03";
2569 }
2570
2571 .unicon-logo-github:before {
2572 content: "\ea04";
2573 }
2574
2575 .unicon-logo-google:before {
2576 content: "\ea05";
2577 }
2578
2579 .unicon-logo-instagram:before {
2580 content: "\ea06";
2581 }
2582
2583 .unicon-logo-linkedin:before {
2584 content: "\ea07";
2585 }
2586
2587 .unicon-logo-livestream:before {
2588 content: "\ea08";
2589 }
2590
2591 .unicon-logo-medium:before {
2592 content: "\ea09";
2593 }
2594
2595 .unicon-logo-pinterest:before {
2596 content: "\ea0a";
2597 }
2598
2599 .unicon-logo-quora:before {
2600 content: "\ea0b";
2601 }
2602
2603 .unicon-logo-skype:before {
2604 content: "\ea0c";
2605 }
2606
2607 .unicon-logo-slack:before {
2608 content: "\ea0d";
2609 }
2610
2611 .unicon-logo-snapchat:before {
2612 content: "\ea0e";
2613 }
2614
2615 .unicon-logo-stumbleupon:before {
2616 content: "\ea0f";
2617 }
2618
2619 .unicon-logo-tumblr:before {
2620 content: "\ea10";
2621 }
2622
2623 .unicon-logo-twitter:before {
2624 content: "\ea11";
2625 }
2626
2627 .unicon-logo-vmware:before {
2628 content: "\ea12";
2629 }
2630
2631 .unicon-logo-xing:before {
2632 content: "\ea13";
2633 }
2634
2635 .unicon-logo-youtube:before {
2636 content: "\ea14";
2637 }
2638
2639 .unicon-logout:before {
2640 content: "\ea15";
2641 }
2642
2643 .unicon-mac-command:before {
2644 content: "\ea16";
2645 }
2646
2647 .unicon-mac-option:before {
2648 content: "\ea17";
2649 }
2650
2651 .unicon-mac-shift:before {
2652 content: "\ea18";
2653 }
2654
2655 .unicon-machine-learning:before {
2656 content: "\ea19";
2657 }
2658
2659 .unicon-magic-wand-filled:before {
2660 content: "\ea1a";
2661 }
2662
2663 .unicon-magic-wand:before {
2664 content: "\ea1b";
2665 }
2666
2667 .unicon-magnify:before {
2668 content: "\ea1c";
2669 }
2670
2671 .unicon-manage-protection:before {
2672 content: "\ea1d";
2673 }
2674
2675 .unicon-map-center:before {
2676 content: "\ea1e";
2677 }
2678
2679 .unicon-map-identify:before {
2680 content: "\ea1f";
2681 }
2682
2683 .unicon-map:before {
2684 content: "\ea20";
2685 }
2686
2687 .unicon-maximize:before {
2688 content: "\ea21";
2689 }
2690
2691 .unicon-media-cast:before {
2692 content: "\ea22";
2693 }
2694
2695 .unicon-media-library:before {
2696 content: "\ea23";
2697 }
2698
2699 .unicon-menu:before {
2700 content: "\ea24";
2701 }
2702
2703 .unicon-meter-alt:before {
2704 content: "\ea25";
2705 }
2706
2707 .unicon-meter:before {
2708 content: "\ea26";
2709 }
2710
2711 .unicon-microphone-filled:before {
2712 content: "\ea27";
2713 }
2714
2715 .unicon-microphone:before {
2716 content: "\ea28";
2717 }
2718
2719 .unicon-microscope:before {
2720 content: "\ea29";
2721 }
2722
2723 .unicon-migrate-alt:before {
2724 content: "\ea2a";
2725 }
2726
2727 .unicon-military-camp:before {
2728 content: "\ea2b";
2729 }
2730
2731 .unicon-minimize:before {
2732 content: "\ea2c";
2733 }
2734
2735 .unicon-misuse-alt:before {
2736 content: "\ea2d";
2737 }
2738
2739 .unicon-misuse-outline:before {
2740 content: "\ea2e";
2741 }
2742
2743 .unicon-misuse:before {
2744 content: "\ea2f";
2745 }
2746
2747 .unicon-mobile-add:before {
2748 content: "\ea30";
2749 }
2750
2751 .unicon-mobile:before {
2752 content: "\ea31";
2753 }
2754
2755 .unicon-model-alt:before {
2756 content: "\ea32";
2757 }
2758
2759 .unicon-model:before {
2760 content: "\ea33";
2761 }
2762
2763 .unicon-money:before {
2764 content: "\ea34";
2765 }
2766
2767 .unicon-move:before {
2768 content: "\ea35";
2769 }
2770
2771 .unicon-mpr-toggle:before {
2772 content: "\ea36";
2773 }
2774
2775 .unicon-music:before {
2776 content: "\ea37";
2777 }
2778
2779 .unicon-name-space:before {
2780 content: "\ea38";
2781 }
2782
2783 .unicon-navaid-military:before {
2784 content: "\ea39";
2785 }
2786
2787 .unicon-new-tab:before {
2788 content: "\ea3a";
2789 }
2790
2791 .unicon-nominal:before {
2792 content: "\ea3b";
2793 }
2794
2795 .unicon-not-available:before {
2796 content: "\ea3c";
2797 }
2798
2799 .unicon-notebook-reference:before {
2800 content: "\ea3d";
2801 }
2802
2803 .unicon-notebook:before {
2804 content: "\ea3e";
2805 }
2806
2807 .unicon-notification-filled:before {
2808 content: "\ea3f";
2809 }
2810
2811 .unicon-notification-new:before {
2812 content: "\ea40";
2813 }
2814
2815 .unicon-notification:before {
2816 content: "\ea41";
2817 }
2818
2819 .unicon-opacity:before {
2820 content: "\ea42";
2821 }
2822
2823 .unicon-open-panel-left:before {
2824 content: "\ea43";
2825 }
2826
2827 .unicon-open-panel-top:before {
2828 content: "\ea44";
2829 }
2830
2831 .unicon-ordinal:before {
2832 content: "\ea45";
2833 }
2834
2835 .unicon-overflow-menu-horizontal:before {
2836 content: "\ea46";
2837 }
2838
2839 .unicon-overflow-menu-vertical:before {
2840 content: "\ea47";
2841 }
2842
2843 .unicon-overlay:before {
2844 content: "\ea48";
2845 }
2846
2847 .unicon-package:before {
2848 content: "\ea49";
2849 }
2850
2851 .unicon-page-break:before {
2852 content: "\ea4a";
2853 }
2854
2855 .unicon-paint-brush-alt:before {
2856 content: "\ea4b";
2857 }
2858
2859 .unicon-paint-brush:before {
2860 content: "\ea4c";
2861 }
2862
2863 .unicon-pan-horizontal:before {
2864 content: "\ea4d";
2865 }
2866
2867 .unicon-pan-vertical:before {
2868 content: "\ea4e";
2869 }
2870
2871 .unicon-panel-expansion:before {
2872 content: "\ea4f";
2873 }
2874
2875 .unicon-partnership:before {
2876 content: "\ea50";
2877 }
2878
2879 .unicon-password:before {
2880 content: "\ea51";
2881 }
2882
2883 .unicon-pause:before {
2884 content: "\ea52";
2885 }
2886
2887 .unicon-pedestrian-child:before {
2888 content: "\ea53";
2889 }
2890
2891 .unicon-pedestrian-family:before {
2892 content: "\ea54";
2893 }
2894
2895 .unicon-pen-fountain:before {
2896 content: "\ea55";
2897 }
2898
2899 .unicon-pen:before {
2900 content: "\ea56";
2901 }
2902
2903 .unicon-pending:before {
2904 content: "\ea57";
2905 }
2906
2907 .unicon-percentage-filled:before {
2908 content: "\ea58";
2909 }
2910
2911 .unicon-percentage:before {
2912 content: "\ea59";
2913 }
2914
2915 .unicon-phone-ip:before {
2916 content: "\ea5a";
2917 }
2918
2919 .unicon-phone:before {
2920 content: "\ea5b";
2921 }
2922
2923 .unicon-piggy-bank-slot:before {
2924 content: "\ea5c";
2925 }
2926
2927 .unicon-piggy-bank:before {
2928 content: "\ea5d";
2929 }
2930
2931 .unicon-pin-filled:before {
2932 content: "\ea5e";
2933 }
2934
2935 .unicon-pin:before {
2936 content: "\ea5f";
2937 }
2938
2939 .unicon-plane:before {
2940 content: "\ea60";
2941 }
2942
2943 .unicon-play-filled-alt:before {
2944 content: "\ea61";
2945 }
2946
2947 .unicon-play-filled:before {
2948 content: "\ea62";
2949 }
2950
2951 .unicon-play-outline:before {
2952 content: "\ea63";
2953 }
2954
2955 .unicon-play:before {
2956 content: "\ea64";
2957 }
2958
2959 .unicon-playlist:before {
2960 content: "\ea65";
2961 }
2962
2963 .unicon-policy:before {
2964 content: "\ea66";
2965 }
2966
2967 .unicon-popup:before {
2968 content: "\ea67";
2969 }
2970
2971 .unicon-portfolio:before {
2972 content: "\ea68";
2973 }
2974
2975 .unicon-power:before {
2976 content: "\ea69";
2977 }
2978
2979 .unicon-presentation-file:before {
2980 content: "\ea6a";
2981 }
2982
2983 .unicon-printer:before {
2984 content: "\ea6b";
2985 }
2986
2987 .unicon-product:before {
2988 content: "\ea6c";
2989 }
2990
2991 .unicon-progress-bar:before {
2992 content: "\ea6d";
2993 }
2994
2995 .unicon-purchase:before {
2996 content: "\ea6e";
2997 }
2998
2999 .unicon-query:before {
3000 content: "\ea6f";
3001 }
3002
3003 .unicon-quotes:before {
3004 content: "\ea70";
3005 }
3006
3007 .unicon-radio-button-checked:before {
3008 content: "\ea71";
3009 }
3010
3011 .unicon-radio-button:before {
3012 content: "\ea72";
3013 }
3014
3015 .unicon-rain-drop:before {
3016 content: "\ea73";
3017 }
3018
3019 .unicon-receipt:before {
3020 content: "\ea74";
3021 }
3022
3023 .unicon-recently-viewed:before {
3024 content: "\ea75";
3025 }
3026
3027 .unicon-recommend:before {
3028 content: "\ea76";
3029 }
3030
3031 .unicon-recording-filled-alt:before {
3032 content: "\ea77";
3033 }
3034
3035 .unicon-recording-filled:before {
3036 content: "\ea78";
3037 }
3038
3039 .unicon-recording:before {
3040 content: "\ea79";
3041 }
3042
3043 .unicon-redo:before {
3044 content: "\ea7a";
3045 }
3046
3047 .unicon-registration:before {
3048 content: "\ea7b";
3049 }
3050
3051 .unicon-reminder:before {
3052 content: "\ea7c";
3053 }
3054
3055 .unicon-renew:before {
3056 content: "\ea7d";
3057 }
3058
3059 .unicon-repeat:before {
3060 content: "\ea7e";
3061 }
3062
3063 .unicon-reply-all:before {
3064 content: "\ea7f";
3065 }
3066
3067 .unicon-reply:before {
3068 content: "\ea80";
3069 }
3070
3071 .unicon-report-data:before {
3072 content: "\ea81";
3073 }
3074
3075 .unicon-report:before {
3076 content: "\ea82";
3077 }
3078
3079 .unicon-request-quote:before {
3080 content: "\ea83";
3081 }
3082
3083 .unicon-reset-alt:before {
3084 content: "\ea84";
3085 }
3086
3087 .unicon-reset:before {
3088 content: "\ea85";
3089 }
3090
3091 .unicon-restart:before {
3092 content: "\ea86";
3093 }
3094
3095 .unicon-result:before {
3096 content: "\ea87";
3097 }
3098
3099 .unicon-roadmap:before {
3100 content: "\ea88";
3101 }
3102
3103 .unicon-rocket:before {
3104 content: "\ea89";
3105 }
3106
3107 .unicon-rotate-180:before {
3108 content: "\ea8a";
3109 }
3110
3111 .unicon-rotate-360:before {
3112 content: "\ea8b";
3113 }
3114
3115 .unicon-row:before {
3116 content: "\ea8c";
3117 }
3118
3119 .unicon-rss:before {
3120 content: "\ea8d";
3121 }
3122
3123 .unicon-rule:before {
3124 content: "\ea8e";
3125 }
3126
3127 .unicon-ruler-alt:before {
3128 content: "\ea8f";
3129 }
3130
3131 .unicon-ruler:before {
3132 content: "\ea90";
3133 }
3134
3135 .unicon-run:before {
3136 content: "\ea91";
3137 }
3138
3139 .unicon-save:before {
3140 content: "\ea92";
3141 }
3142
3143 .unicon-scale:before {
3144 content: "\ea93";
3145 }
3146
3147 .unicon-scales:before {
3148 content: "\ea94";
3149 }
3150
3151 .unicon-scalpel-cursor:before {
3152 content: "\ea95";
3153 }
3154
3155 .unicon-scalpel-lasso:before {
3156 content: "\ea96";
3157 }
3158
3159 .unicon-scalpel:before {
3160 content: "\ea97";
3161 }
3162
3163 .unicon-scan:before {
3164 content: "\ea98";
3165 }
3166
3167 .unicon-screen:before {
3168 content: "\ea99";
3169 }
3170
3171 .unicon-script:before {
3172 content: "\ea9a";
3173 }
3174
3175 .unicon-search-locate:before {
3176 content: "\ea9b";
3177 }
3178
3179 .unicon-search:before {
3180 content: "\ea9c";
3181 }
3182
3183 .unicon-security:before {
3184 content: "\ea9d";
3185 }
3186
3187 .unicon-select-01:before {
3188 content: "\ea9e";
3189 }
3190
3191 .unicon-select-02:before {
3192 content: "\ea9f";
3193 }
3194
3195 .unicon-select-window:before {
3196 content: "\eaa0";
3197 }
3198
3199 .unicon-send-alt-filled:before {
3200 content: "\eaa1";
3201 }
3202
3203 .unicon-send-alt:before {
3204 content: "\eaa2";
3205 }
3206
3207 .unicon-send-filled:before {
3208 content: "\eaa3";
3209 }
3210
3211 .unicon-send-to-back:before {
3212 content: "\eaa4";
3213 }
3214
3215 .unicon-send:before {
3216 content: "\eaa5";
3217 }
3218
3219 .unicon-server-time:before {
3220 content: "\eaa6";
3221 }
3222
3223 .unicon-settings-adjust:before {
3224 content: "\eaa7";
3225 }
3226
3227 .unicon-settings:before {
3228 content: "\eaa8";
3229 }
3230
3231 .unicon-shape-except:before {
3232 content: "\eaa9";
3233 }
3234
3235 .unicon-share:before {
3236 content: "\eaaa";
3237 }
3238
3239 .unicon-shopping-bag:before {
3240 content: "\eaab";
3241 }
3242
3243 .unicon-shopping-cart:before {
3244 content: "\eaac";
3245 }
3246
3247 .unicon-shopping-catalog:before {
3248 content: "\eaad";
3249 }
3250
3251 .unicon-shrink-screen:before {
3252 content: "\eaae";
3253 }
3254
3255 .unicon-shuffle:before {
3256 content: "\eaaf";
3257 }
3258
3259 .unicon-signal-strength:before {
3260 content: "\eab0";
3261 }
3262
3263 .unicon-skill-level:before {
3264 content: "\eab1";
3265 }
3266
3267 .unicon-smoothing-cursor:before {
3268 content: "\eab2";
3269 }
3270
3271 .unicon-smoothing:before {
3272 content: "\eab3";
3273 }
3274
3275 .unicon-soccer:before {
3276 content: "\eab4";
3277 }
3278
3279 .unicon-software:before {
3280 content: "\eab5";
3281 }
3282
3283 .unicon-spell-check:before {
3284 content: "\eab6";
3285 }
3286
3287 .unicon-split-discard:before {
3288 content: "\eab7";
3289 }
3290
3291 .unicon-split-screen:before {
3292 content: "\eab8";
3293 }
3294
3295 .unicon-split:before {
3296 content: "\eab9";
3297 }
3298
3299 .unicon-spray-paint:before {
3300 content: "\eaba";
3301 }
3302
3303 .unicon-stacked-scrolling-1:before {
3304 content: "\eabb";
3305 }
3306
3307 .unicon-stamp:before {
3308 content: "\eabc";
3309 }
3310
3311 .unicon-star-filled:before {
3312 content: "\eabd";
3313 }
3314
3315 .unicon-star:before {
3316 content: "\eabe";
3317 }
3318
3319 .unicon-stay-inside:before {
3320 content: "\eabf";
3321 }
3322
3323 .unicon-stop-filled-alt:before {
3324 content: "\eac0";
3325 }
3326
3327 .unicon-stop:before {
3328 content: "\eac1";
3329 }
3330
3331 .unicon-store:before {
3332 content: "\eac2";
3333 }
3334
3335 .unicon-string-integer:before {
3336 content: "\eac3";
3337 }
3338
3339 .unicon-string-text:before {
3340 content: "\eac4";
3341 }
3342
3343 .unicon-sub-volume:before {
3344 content: "\eac5";
3345 }
3346
3347 .unicon-subtract-alt:before {
3348 content: "\eac6";
3349 }
3350
3351 .unicon-subtract:before {
3352 content: "\eac7";
3353 }
3354
3355 .unicon-table:before {
3356 content: "\eac8";
3357 }
3358
3359 .unicon-tablet:before {
3360 content: "\eac9";
3361 }
3362
3363 .unicon-tag-group:before {
3364 content: "\eaca";
3365 }
3366
3367 .unicon-tag:before {
3368 content: "\eacb";
3369 }
3370
3371 .unicon-task-add:before {
3372 content: "\eacc";
3373 }
3374
3375 .unicon-task-approved:before {
3376 content: "\eacd";
3377 }
3378
3379 .unicon-task-view:before {
3380 content: "\eace";
3381 }
3382
3383 .unicon-task:before {
3384 content: "\eacf";
3385 }
3386
3387 .unicon-template:before {
3388 content: "\ead0";
3389 }
3390
3391 .unicon-term:before {
3392 content: "\ead1";
3393 }
3394
3395 .unicon-terminal:before {
3396 content: "\ead2";
3397 }
3398
3399 .unicon-text-annotation-toggle:before {
3400 content: "\ead3";
3401 }
3402
3403 .unicon-text-bold:before {
3404 content: "\ead4";
3405 }
3406
3407 .unicon-text-color:before {
3408 content: "\ead5";
3409 }
3410
3411 .unicon-text-creation:before {
3412 content: "\ead6";
3413 }
3414
3415 .unicon-text-fill:before {
3416 content: "\ead7";
3417 }
3418
3419 .unicon-text-font:before {
3420 content: "\ead8";
3421 }
3422
3423 .unicon-text-line-spacing:before {
3424 content: "\ead9";
3425 }
3426
3427 .unicon-text-mining-applier:before {
3428 content: "\eada";
3429 }
3430
3431 .unicon-text-mining:before {
3432 content: "\eadb";
3433 }
3434
3435 .unicon-text-underline:before {
3436 content: "\eadc";
3437 }
3438
3439 .unicon-theater:before {
3440 content: "\eadd";
3441 }
3442
3443 .unicon-thumbnail-1:before {
3444 content: "\eade";
3445 }
3446
3447 .unicon-thumbnail-2:before {
3448 content: "\eadf";
3449 }
3450
3451 .unicon-thumbs-down:before {
3452 content: "\eae0";
3453 }
3454
3455 .unicon-thumbs-up:before {
3456 content: "\eae1";
3457 }
3458
3459 .unicon-ticket:before {
3460 content: "\eae2";
3461 }
3462
3463 .unicon-time:before {
3464 content: "\eae3";
3465 }
3466
3467 .unicon-tool-box:before {
3468 content: "\eae4";
3469 }
3470
3471 .unicon-tools-alt:before {
3472 content: "\eae5";
3473 }
3474
3475 .unicon-tools:before {
3476 content: "\eae6";
3477 }
3478
3479 .unicon-touch-1:before {
3480 content: "\eae7";
3481 }
3482
3483 .unicon-touch-interaction:before {
3484 content: "\eae8";
3485 }
3486
3487 .unicon-translate:before {
3488 content: "\eae9";
3489 }
3490
3491 .unicon-trash-can:before {
3492 content: "\eaea";
3493 }
3494
3495 .unicon-trophy:before {
3496 content: "\eaeb";
3497 }
3498
3499 .unicon-types:before {
3500 content: "\eaec";
3501 }
3502
3503 .unicon-umbrella:before {
3504 content: "\eaed";
3505 }
3506
3507 .unicon-unlink:before {
3508 content: "\eaee";
3509 }
3510
3511 .unicon-unlocked:before {
3512 content: "\eaef";
3513 }
3514
3515 .unicon-upload:before {
3516 content: "\eaf0";
3517 }
3518
3519 .unicon-user-avatar-filled-alt:before {
3520 content: "\eaf1";
3521 }
3522
3523 .unicon-user-avatar-filled:before {
3524 content: "\eaf2";
3525 }
3526
3527 .unicon-user-avatar:before {
3528 content: "\eaf3";
3529 }
3530
3531 .unicon-user-multiple:before {
3532 content: "\eaf4";
3533 }
3534
3535 .unicon-user:before {
3536 content: "\eaf5";
3537 }
3538
3539 .unicon-uv-index:before {
3540 content: "\eaf6";
3541 }
3542
3543 .unicon-video-add:before {
3544 content: "\eaf7";
3545 }
3546
3547 .unicon-video-chat:before {
3548 content: "\eaf8";
3549 }
3550
3551 .unicon-video:before {
3552 content: "\eaf9";
3553 }
3554
3555 .unicon-view-filled:before {
3556 content: "\eafa";
3557 }
3558
3559 .unicon-view-mode-1:before {
3560 content: "\eafb";
3561 }
3562
3563 .unicon-view-mode-2:before {
3564 content: "\eafc";
3565 }
3566
3567 .unicon-view-next:before {
3568 content: "\eafd";
3569 }
3570
3571 .unicon-view-off:before {
3572 content: "\eafe";
3573 }
3574
3575 .unicon-view:before {
3576 content: "\eaff";
3577 }
3578
3579 .unicon-virtual-column-key:before {
3580 content: "\eb00";
3581 }
3582
3583 .unicon-virtual-private-cloud-alt:before {
3584 content: "\eb01";
3585 }
3586
3587 .unicon-visual-recognition:before {
3588 content: "\eb02";
3589 }
3590
3591 .unicon-volume-block-storage:before {
3592 content: "\eb03";
3593 }
3594
3595 .unicon-volume-up:before {
3596 content: "\eb04";
3597 }
3598
3599 .unicon-wallet:before {
3600 content: "\eb05";
3601 }
3602
3603 .unicon-warning-alt-filled:before {
3604 content: "\eb06";
3605 }
3606
3607 .unicon-warning-alt:before {
3608 content: "\eb07";
3609 }
3610
3611 .unicon-warning-filled:before {
3612 content: "\eb08";
3613 }
3614
3615 .unicon-warning:before {
3616 content: "\eb09";
3617 }
3618
3619 .unicon-wheat:before {
3620 content: "\eb0a";
3621 }
3622
3623 .unicon-wifi:before {
3624 content: "\eb0b";
3625 }
3626
3627 .unicon-wikis:before {
3628 content: "\eb0c";
3629 }
3630
3631 .unicon-word-cloud:before {
3632 content: "\eb0d";
3633 }
3634
3635 .unicon-workspace:before {
3636 content: "\eb0e";
3637 }
3638
3639 .unicon-zoom-area:before {
3640 content: "\eb0f";
3641 }
3642
3643 .unicon-zoom-in-area:before {
3644 content: "\eb10";
3645 }
3646
3647 .unicon-zoom-in:before {
3648 content: "\eb11";
3649 }
3650
3651 .unicon-zoom-out-area:before {
3652 content: "\eb12";
3653 }
3654
3655 .unicon-zoom-out:before {
3656 content: "\eb13";
3657 }
3658
3659 .unicon-zoom-reset:before {
3660 content: "\eb14";
3661 }
3662
3663 .swiper-progressbar {
3664 position: absolute;
3665 top: 0;
3666 left: 0;
3667 width: 100%;
3668 height: 4px;
3669 background: rgba(0, 0, 0, 0.1);
3670 z-index: 10;
3671 border-radius: 2px;
3672 overflow: hidden;
3673 }
3674
3675 .swiper-progressbar .swiper-progressbar-fill {
3676 height: 100%;
3677 background: linear-gradient(90deg, #007cba, #005a87);
3678 width: 0%;
3679 transition: width 0.3s ease;
3680 border-radius: 2px;
3681 position: relative;
3682 }
3683
3684 .swiper-progressbar .swiper-progressbar-fill::after {
3685 content: "";
3686 position: absolute;
3687 top: 0;
3688 left: 0;
3689 right: 0;
3690 bottom: 0;
3691 background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
3692 animation: progressbar-shine 2s infinite;
3693 }
3694
3695 @keyframes progressbar-shine {
3696 0% {
3697 transform: translateX(-100%);
3698 }
3699 100% {
3700 transform: translateX(100%);
3701 }
3702 }
3703 /* Custom progress bar colors */
3704 .eel-all-slider .swiper-progressbar .swiper-progressbar-fill {
3705 background: linear-gradient(90deg, #ff6b6b, #ee5a24);
3706 }
3707
3708 /* Hover effect */
3709 .swiper-progressbar:hover .swiper-progressbar-fill {
3710 background: linear-gradient(90deg, #005a87, #007cba);
3711 transform: scaleY(1.2);
3712 transition: all 0.3s ease;
3713 }
3714
3715 .eel-flip-img-scroll > .eel-advance-img-main-flip,
3716 .eel-flip-img-scroll > .elementor-widget-container {
3717 perspective: 1200px;
3718 }
3719
3720 .easy-img-cover .jarallax img {
3721 width: 100% !important;
3722 -o-object-fit: cover !important;
3723 object-fit: cover !important;
3724 }
3725
3726 .eel-flip-img-scroll img {
3727 width: auto;
3728 transform: rotateX(0deg);
3729 will-change: transform;
3730 }
3731
3732 .eele-has-jarallax {
3733 position: relative;
3734 }
3735
3736 .easy-enable-jarallax-yes {
3737 z-index: 1;
3738 }
3739
3740 .eele-jarallax-bg {
3741 position: absolute;
3742 inset: 0;
3743 width: 100%;
3744 height: 100%;
3745 z-index: -1;
3746 left: 0;
3747 right: 0;
3748 top: 0;
3749 bottom: 0;
3750 }
3751
3752 footer {
3753 overflow: hidden;
3754 }
3755
3756 /************ All Css Important ************/
3757 .easyel-fixed-header .easy-site-header {
3758 position: absolute;
3759 top: 0;
3760 width: 100%;
3761 z-index: 9999;
3762 }
3763
3764 body.logged-in.easyel-fixed-header .easy-site-header {
3765 top: 30px !important;
3766 }
3767
3768 body:not([class*=elementor-page-]):not(.elementor-archive-template):not(.elementor-single-template) .easyel-content-container {
3769 max-width: 1336px;
3770 margin: 0 auto;
3771 padding: 0 15px;
3772 width: 100%;
3773 }
3774
3775 body.sticky-enabled-overlap {
3776 overflow-x: visible;
3777 }
3778
3779 .easy-site-header ul.sub-menu {
3780 margin: 0;
3781 }
3782
3783 .jarallax-img {
3784 will-change: transform;
3785 transform: translate3d(0, 0, 0);
3786 }
3787
3788 @media screen and (max-width: 1024px) {
3789 body.sticky-enabled-overlap {
3790 overflow-x: hidden;
3791 }
3792 body {
3793 overflow-x: hidden;
3794 }
3795 .easyel-fixed-header .easy-site-header {
3796 z-index: 999999;
3797 }
3798 }
3799 .easyel-toggle-button-table svg {
3800 width: 16px;
3801 height: 16px;
3802 }
3803
3804 /* Overlay */
3805 .entro-all-video-popup-wrap {
3806 position: fixed;
3807 top: 0;
3808 right: 0;
3809 bottom: 0;
3810 left: 0;
3811 display: none;
3812 align-items: center;
3813 justify-content: center;
3814 background: rgba(0, 0, 0, 0.85);
3815 z-index: 999999; /* higher to beat theme overlays */
3816 padding: 20px;
3817 }
3818
3819 .entro-all-video-popup-wrap.active {
3820 display: flex; /* show when active */
3821 }
3822
3823 /* Dialog */
3824 .entro-all-video-popup-inner {
3825 width: 100%;
3826 max-width: 900px; /* fallback for min() */
3827 position: relative;
3828 }
3829
3830 /* Close button */
3831 .entro-all-video-popup-close {
3832 position: absolute;
3833 top: -50px; /* sits above the frame */
3834 right: 0;
3835 font-size: 32px;
3836 background: none;
3837 border: 0;
3838 color: #fff;
3839 cursor: pointer;
3840 line-height: 1;
3841 }
3842
3843 /* 16:9 responsive frame area */
3844 .entro-all-video-popup-iframe-wrapper {
3845 position: relative;
3846 width: 100%;
3847 padding-top: 56.25%; /* 16:9 aspect ratio */
3848 }
3849
3850 /* Media fills the frame */
3851 .entro-all-video-popup-iframe-wrapper iframe,
3852 .entro-all-video-popup-iframe-wrapper video {
3853 position: absolute;
3854 top: 0;
3855 left: 0; /* inset fallback */
3856 width: 100%;
3857 height: 100%;
3858 border: 0;
3859 display: block;
3860 }
3861
3862 .eel-nav-menu-icon svg {
3863 width: 18px;
3864 height: 20px;
3865 }
3866
3867 html,
3868 body {
3869 overflow-x: hidden;
3870 }
3871 @keyframes scaleIn {
3872 from {
3873 opacity: 0;
3874 transform: scale3d(1.5, 1.5, 1.5);
3875 }
3876 100% {
3877 opacity: 1;
3878 transform: scale3d(1, 1, 1);
3879 }
3880 }
3881 .scaleIn {
3882 animation-name: scaleIn;
3883 }
3884
3885 .hover-zoom-in .elementor-widget-image img {
3886 transition: transform 2s cubic-bezier(0.4, 0, 0.2, 1);
3887 }
3888
3889 .hover-zoom-in:hover .elementor-widget-image img {
3890 transform: scale(1.1);
3891 }
3892
3893 .hover-scale .elementor-widget-image img {
3894 transition: transform 2s cubic-bezier(0.4, 0, 0.2, 1);
3895 }
3896
3897 .hover-scale:hover .elementor-widget-image img {
3898 transform: scale(1.1);
3899 }
3900
3901 .eel-cursor-hover {
3902 position: fixed;
3903 top: 0;
3904 left: 0;
3905 line-height: 100%;
3906 width: 120px;
3907 height: 120px;
3908 display: grid;
3909 place-items: center;
3910 color: #121212;
3911 text-align: center;
3912 white-space: nowrap;
3913 pointer-events: none;
3914 border-radius: 100%;
3915 background: #fff;
3916 z-index: 99999;
3917 transform: translate(-50%, -50%);
3918 transition: transform 0.1s, opacity 0.1s;
3919 place-content: center;
3920 }
3921
3922 .swiper-pagination:not(.swiper-pagination-fraction) span {
3923 font-size: 0;
3924 }
3925
3926 body::-webkit-scrollbar,
3927 #de_modal::-webkit-scrollbar {
3928 width: 3px;
3929 }
3930
3931 body::-webkit-scrollbar-track,
3932 #de_modal::-webkit-scrollbar-track {
3933 background: #dddddd;
3934 }
3935
3936 body::-webkit-scrollbar-thumb,
3937 #de_modal::-webkit-scrollbar-thumb {
3938 background-color: var(--e-global-color-primary);
3939 border-radius: 16px;
3940 -moz-border-radius: 16px;
3941 -webkit-border-radius: 16px;
3942 }
3943
3944 /* Swiper Navigation and Pagination */
3945 .elementor-widget .swiper-prev,
3946 .elementor-widget .swiper-next {
3947 background-color: #5933FF;
3948 color: #fff;
3949 width: 40px;
3950 height: 40px;
3951 border-radius: 8px;
3952 }
3953
3954 .elementor-widget .swiper-prev::after,
3955 .elementor-widget .swiper-next::after {
3956 font-size: 18px;
3957 }
3958
3959 .elementor-widget .swiper-prev svg,
3960 .elementor-widget .swiper-next svg {
3961 height: 1em;
3962 fill: currentColor;
3963 }
3964
3965 .elementor-widget .swiper-navigation .swiper-next,
3966 .elementor-widget .swiper-navigation .swiper-prev {
3967 cursor: pointer;
3968 position: absolute;
3969 top: 50%;
3970 left: 10px;
3971 transform: translateY(-50%);
3972 z-index: 1;
3973 line-height: 30px;
3974 display: inline-flex;
3975 align-items: center;
3976 justify-content: center;
3977 }
3978
3979 .elementor-widget .swiper-navigation .swiper-next {
3980 left: auto;
3981 right: 10px;
3982 }
3983
3984 .elementor-widget .swiper-pagination .swiper-pagination-bullet {
3985 background: #5933FF;
3986 width: 10px;
3987 height: 10px;
3988 border-radius: 100px;
3989 }
3990
3991 .elementor-widget .swiper-pagination .swiper-pagination-bullet-active {
3992 width: 30px;
3993 }
3994
3995 .elementor-widget .swiper-button-next i, .elementor-widget .swiper-button-prev i,
3996 .elementor-widget .swiper-button-next:after, .elementor-widget .swiper-button-prev:after {
3997 font-size: 16px;
3998 }
3999
4000 @media (min-width: 1024px) {
4001 body.elementor-editor-active:not(.elementor-editor-preview) .is-layout-flex {
4002 flex-wrap: nowrap;
4003 }
4004 }
4005 .easyel-wrapper-link {
4006 touch-action: pan-y;
4007 -webkit-tap-highlight-color: transparent;
4008 }