PluginProbe
Easy Elements for Elementor – Addons & Website Templates / 1.3.4
Easy Elements for Elementor – Addons & Website Templates v1.3.4
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.3.4, at assets/css/plugins.css

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