PluginProbe
Elementor Website Builder – more than just a page builder / 3.9.2
Elementor Website Builder – more than just a page builder v3.9.2
4.3.0-beta2 4.3.0-beta1 4.2.4 4.2.3 4.2.2 4.2.1 4.2.0 4.1.5 4.2.0-beta2 4.2.0-dev2 4.2.0-beta1 4.1.4 4.1.3 4.1.2 4.1.1 4.1.0 4.1.0-beta3 4.1.0-dev3 4.0.9 4.1.0-beta2 4.1.0-dev2 4.0.8 4.1.0-beta1 4.1.0-dev1 4.0.7 All 451 releases
elementor / assets / css / app.css

app.css in Elementor Website Builder – more than just a page builder 3.9.2, at assets/css/app.css

3,837 lines 91.9 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 /*! elementor - v3.9.2 - 21-12-2022 */
2 @import "//fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap";
3 @import "//fonts.googleapis.com/css2?family=DM%20Sans&display=swap";
4 @import "//fonts.googleapis.com/css2?family=Source%20Serif%20Pro&display=swap";
5 :root {
6 --color-box-shadow-color: rgba(0, 0, 0, 0.05);
7 }
8
9 .eps-theme-dark {
10 --color-box-shadow-color: rgba(0, 0, 0, 0.1);
11 }
12
13 .sr-only {
14 position: absolute;
15 width: 1px;
16 height: 1px;
17 padding: 0;
18 margin: -1px;
19 overflow: hidden;
20 clip: rect(0, 0, 0, 0);
21 white-space: nowrap;
22 border: 0;
23 }
24
25 @media screen and (min-width: 480px) {
26 .text-start-sm {
27 text-align: start;
28 }
29 }
30 @media screen and (min-width: 480px) {
31 .text-center-sm {
32 text-align: center;
33 }
34 }
35 @media screen and (min-width: 480px) {
36 .text-end-sm {
37 text-align: end;
38 }
39 }
40 @media screen and (min-width: 768px) {
41 .text-start-md {
42 text-align: start;
43 }
44 }
45 @media screen and (min-width: 768px) {
46 .text-center-md {
47 text-align: center;
48 }
49 }
50 @media screen and (min-width: 768px) {
51 .text-end-md {
52 text-align: end;
53 }
54 }
55 @media screen and (min-width: 1025px) {
56 .text-start-lg {
57 text-align: start;
58 }
59 }
60 @media screen and (min-width: 1025px) {
61 .text-center-lg {
62 text-align: center;
63 }
64 }
65 @media screen and (min-width: 1025px) {
66 .text-end-lg {
67 text-align: end;
68 }
69 }
70 @media screen and (min-width: 1440px) {
71 .text-start-xl {
72 text-align: start;
73 }
74 }
75 @media screen and (min-width: 1440px) {
76 .text-center-xl {
77 text-align: center;
78 }
79 }
80 @media screen and (min-width: 1440px) {
81 .text-end-xl {
82 text-align: end;
83 }
84 }
85 @media screen and (min-width: 1600px) {
86 .text-start-xxl {
87 text-align: start;
88 }
89 }
90 @media screen and (min-width: 1600px) {
91 .text-center-xxl {
92 text-align: center;
93 }
94 }
95 @media screen and (min-width: 1600px) {
96 .text-end-xxl {
97 text-align: end;
98 }
99 }
100 @keyframes eps-animation-pop {
101 from {
102 transform: scale(0.75);
103 opacity: 0;
104 }
105 to {
106 transform: scale(1);
107 opacity: 1;
108 }
109 }
110 /**
111 TODO: The molecules, atoms and such generics should be at top level, so the styles will be not depended on the order.
112 EG: '../../../app/assets/styles/generic'.
113 Auto-import is designed for CSS that not dependent on the loading order.
114 */
115 .eps-button {
116 display: inline-flex;
117 --button-line-height: 16px;
118 --button-padding-y: 0.5em;
119 --button-padding-x: 1.5em;
120 --button-primary-background-color: #39b54a;
121 --button-primary-hover-background-color: #33a242;
122 --button-primary-active-background-color: #35a945;
123 --button-primary-color: #fff;
124 --button-secondary-background-color: #a4afb7;
125 --button-secondary-hover-background-color: #96a2ac;
126 --button-secondary-active-background-color: #9ba7b0;
127 --button-secondary-color: #fff;
128 --button-danger-background-color: #b01b1b;
129 --button-danger-hover-background-color: #9a1818;
130 --button-danger-active-background-color: #a31919;
131 --button-danger-color: #fff;
132 --button-cta-background-color: #93003F;
133 --button-cta-hover-background-color: #7a0034;
134 --button-cta-active-background-color: #840038;
135 --button-cta-color: #fff;
136 --button-link-background-color: #58d0f5;
137 --button-link-hover-background-color: #40c9f4;
138 --button-link-active-background-color: #4accf4;
139 --button-link-color: #fff;
140 --button-disabled-background-color: #c2cbd2;
141 --button-disabled-hover-background-color: #b3bec7;
142 --button-disabled-active-background-color: #b9c3cc;
143 --button-disabled-color: #fff;
144 color: var(--button-background-color, currentColor);
145 font-size: var(--button-font-size, inherit);
146 font-weight: 500;
147 line-height: var(--button-line-height);
148 cursor: pointer;
149 }
150 .eps-button:active {
151 --button-background-color: var(--button-active-background-color, transparent);
152 }
153 .eps-button:hover {
154 --button-background-color: var(--button-hover-background-color);
155 }
156 .eps-theme-dark .eps-button {
157 --button-primary-background-color: #39b54a;
158 --button-primary-color: #fff;
159 --button-primary-hover-background-color: #33a242;
160 --button-primary-active-background-color: #35a945;
161 --button-secondary-background-color: #b4b5b7;
162 --button-secondary-color: #fff;
163 --button-secondary-hover-background-color: #a7a8ab;
164 --button-secondary-active-background-color: #acadb0;
165 --button-cta-background-color: #93003F;
166 --button-cta-hover-background-color: #7a0034;
167 --button-cta-active-background-color: #840038;
168 --button-cta-color: #fff;
169 --button-link-background-color: #58d0f5;
170 --button-link-hover-background-color: #40c9f4;
171 --button-link-active-background-color: #4accf4;
172 --button-link-color: #fff;
173 --button-disabled-background-color: #64666a;
174 --button-disabled-hover-background-color: #58595d;
175 --button-disabled-active-background-color: #5d5e62;
176 --button-disabled-color: #fff;
177 }
178 .eps-button--contained {
179 color: var(--button-color);
180 padding: var(--button-padding-y) var(--button-padding-x);
181 background-color: var(--button-background-color, transparent);
182 border: 1px solid var(--button-background-color);
183 }
184 .eps-button--contained:hover {
185 color: var(--button-color);
186 }
187 .eps-button--outlined {
188 display: block;
189 padding: var(--button-padding-y) var(--button-padding-x);
190 border: 1px solid var(--button-background-color);
191 }
192 .eps-button--contained, .eps-button--outlined {
193 border-radius: 0.1875rem;
194 }
195 .eps-button--underlined {
196 text-decoration: underline;
197 }
198 .eps-button--sm {
199 --button-font-size: 0.75rem;
200 --button-line-height: 14px;
201 }
202 .eps-button--lg {
203 --button-font-size: 0.9375rem;
204 --button-line-height: 18px;
205 }
206 .eps-button--primary {
207 --button-color: var(--button-primary-color);
208 --button-background-color: var(--button-primary-background-color);
209 --button-hover-background-color: var(--button-primary-hover-background-color);
210 --button-active-background-color: var(--button-primary-active-background-color);
211 }
212 .eps-button--secondary {
213 --button-color: var(--button-secondary-color);
214 --button-background-color: var(--button-secondary-background-color);
215 --button-hover-background-color: var(--button-secondary-hover-background-color);
216 --button-active-background-color: var(--button-secondary-active-background-color);
217 }
218 .eps-button--danger {
219 --button-color: var(--button-danger-color);
220 --button-background-color: var(--button-danger-background-color);
221 --button-hover-background-color: var(--button-danger-hover-background-color);
222 --button-active-background-color: var(--button-danger-active-background-color);
223 }
224 .eps-button--cta {
225 --button-color: var(--button-cta-color);
226 --button-background-color: var(--button-cta-background-color);
227 --button-hover-background-color: var(--button-cta-hover-background-color);
228 --button-active-background-color: var(--button-cta-active-background-color);
229 }
230 .eps-button--link {
231 --button-color: var(--button-link-color);
232 --button-background-color: var(--button-link-background-color);
233 --button-hover-background-color: var(--button-link-hover-background-color);
234 --button-active-background-color: var(--button-link-active-background-color);
235 }
236 .eps-button--disabled, .eps-button[disabled] {
237 --button-color: var(--button-disabled-color);
238 --button-background-color: var(--button-disabled-background-color);
239 --button-hover-background-color: var(--button-disabled-hover-background-color);
240 --button-active-background-color: var(--button-disabled-active-background-color);
241 cursor: default;
242 }
243
244 :root {
245 --app-background-color: #f1f3f5;
246 --app-box-shadow-color: rgba(var(--box-shadow-color, rgba(0, 0, 0, 0.15)), 0.2);
247 --app-header-background-color: #fff;
248 --app-header-color: #495157;
249 --app-sidebar-background-color: rgba(255, 255, 255, 0.5);
250 --app-header-buttons-separator-color: #d5dadf;
251 --app-header-buttons-color: #a4afb7;
252 --app-lightbox-background-color: rgba(0, 0, 0, 0.8);
253 }
254
255 .eps-theme-dark {
256 --app-background-color: #34383c;
257 --app-box-shadow-color: rgba(var(--box-shadow-color, rgba(0, 0, 0, 0.15)), 0.2);
258 --app-header-background-color: #26292C;
259 --app-header-color: #e0e1e3;
260 --app-sidebar-background-color: #34383c;
261 --app-header-buttons-separator-color: #64666a;
262 --app-header-buttons-color: #b4b5b7;
263 --app-lightbox-background-color: rgba(0, 0, 0, 0.8);
264 }
265
266 :root {
267 --text-muted: #d5dadf;
268 --disabled: #c2cbd2;
269 --light: #fff;
270 --dark: #000;
271 --info: #58d0f5;
272 --cta: #93003F;
273 --danger: #b01b1b;
274 --success: #39b54a;
275 --warning: #fcb92c;
276 --body-color: #6d7882;
277 --link-color: #58d0f5;
278 --link-hover-color: #10bcf1;
279 --hr-color: #d5dadf;
280 --box-shadow-color: theme-colors(dark);
281 --display-1-color: #495157;
282 --display-2-color: #495157;
283 --display-3-color: #6d7882;
284 --display-4-color: #495157;
285 --h1-color: #6d7882;
286 --h2-color: #6d7882;
287 --h3-color: #495157;
288 --h4-color: #495157;
289 --h5-color: #495157;
290 --h6-color: #495157;
291 --text-base-color: #495157;
292 --text-xl-color: #495157;
293 --text-lg-color: #495157;
294 --text-sm-color: #495157;
295 --text-xs-color: #495157;
296 --text-xxs-color: #495157;
297 --gray-800: #495157;
298 --gray-700: #556068;
299 --gray-600: #6d7882;
300 --gray-500: #a4afb7;
301 --gray-400: #c2cbd2;
302 --gray-300: #d5dadf;
303 --gray-200: #f1f3f5;
304 --gray-100: #fcfcfc;
305 }
306
307 .eps-theme-dark {
308 --text-muted: #7d7e82;
309 --disabled: #64666a;
310 --light: #fff;
311 --dark: #000;
312 --info: #58d0f5;
313 --accent: #58d0f5;
314 --danger: #F84343;
315 --cta: #93003F;
316 --success: #39b54a;
317 --warning: #fcb92c;
318 --body-color: #e0e1e3;
319 --body-bg: #fff;
320 --link-color: #58d0f5;
321 --link-hover-color: #10bcf1;
322 --hr-color: #4c4f56;
323 --box-shadow-color: rgba(0, 0, 0, 0.15);
324 --display-1-color: #e0e1e3;
325 --display-2-color: #e0e1e3;
326 --display-3-color: #e0e1e3;
327 --display-4-color: #e0e1e3;
328 --h1-color: #e0e1e3;
329 --h2-color: #e0e1e3;
330 --h3-color: #e0e1e3;
331 --h4-color: #e0e1e3;
332 --h5-color: #e0e1e3;
333 --h6-color: #e0e1e3;
334 --text-base-color: #b4b5b7;
335 --text-xl-color: #b4b5b7;
336 --text-lg-color: #b4b5b7;
337 --text-sm-color: #b4b5b7;
338 --text-xs-color: #b4b5b7;
339 --text-xxs-color: #b4b5b7;
340 --gray-800: #26292C;
341 --gray-700: #34383c;
342 --gray-600: #404349;
343 --gray-500: #4c4f56;
344 --gray-400: #64666a;
345 --gray-300: #7d7e82;
346 --gray-200: #b4b5b7;
347 --gray-100: #e0e1e3;
348 }
349
350 *,
351 *::before,
352 *::after {
353 box-sizing: border-box;
354 }
355
356 html {
357 font-family: sans-serif;
358 line-height: 1.15;
359 -webkit-text-size-adjust: 100%;
360 -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
361 }
362
363 article, aside, figcaption, figure, footer, header, hgroup, main, nav, section {
364 display: block;
365 }
366
367 body {
368 margin: 0;
369 font-family: Roboto, Arial, Helvetica, Verdana, sans-serif;
370 font-size: 0.875rem;
371 font-weight: 400;
372 line-height: 1.5;
373 color: var(--body-color);
374 -webkit-font-smoothing: antialiased;
375 -moz-osx-font-smoothing: grayscale;
376 background-color: var(--body-bg);
377 }
378
379 ::-moz-selection {
380 background-color: #58d0f5;
381 color: #fff;
382 }
383
384 ::selection {
385 background-color: #58d0f5;
386 color: #fff;
387 }
388
389 [tabindex="-1"]:focus:not(:focus-visible) {
390 outline: 0 !important;
391 }
392
393 h1, h2, h3, h4, h5, h6 {
394 font-size: 100%;
395 margin: 0;
396 padding: 0;
397 line-height: inherit;
398 font-weight: normal;
399 }
400
401 p {
402 margin-top: 0;
403 }
404
405 b,
406 strong {
407 font-weight: 700;
408 }
409
410 small {
411 font-size: 80%;
412 }
413
414 a {
415 --eps-link-color: $eps-link-color;
416 color: var(--eps-link-color);
417 background-color: transparent;
418 }
419 a, a:active, a:hover, a:focus {
420 text-decoration: none;
421 }
422 a:focus, a:hover {
423 --eps-link-color: $eps-link-hover-color;
424 text-decoration: none;
425 }
426
427 a:not([href]) {
428 color: inherit;
429 text-decoration: none;
430 }
431 a:not([href]):hover {
432 color: inherit;
433 text-decoration: none;
434 }
435
436 pre,
437 code,
438 kbd,
439 samp {
440 font-family: monospace;
441 font-size: 1em;
442 }
443
444 figure {
445 margin: 0 0 0;
446 }
447
448 img {
449 vertical-align: middle;
450 border-style: none;
451 }
452
453 svg {
454 overflow: hidden;
455 vertical-align: middle;
456 }
457
458 button {
459 border-radius: 0;
460 }
461
462 button:focus {
463 outline: 1px dotted;
464 outline: 5px auto -webkit-focus-ring-color;
465 }
466
467 input,
468 button,
469 select,
470 optgroup,
471 textarea {
472 margin: 0;
473 font-family: inherit;
474 font-size: inherit;
475 line-height: inherit;
476 }
477
478 button,
479 input {
480 overflow: visible;
481 }
482
483 button,
484 select {
485 text-transform: none;
486 }
487
488 [role=button] {
489 cursor: pointer;
490 }
491
492 select {
493 word-wrap: normal;
494 }
495
496 button,
497 [type=button],
498 [type=reset],
499 [type=submit] {
500 -webkit-appearance: button;
501 -moz-appearance: button;
502 appearance: button;
503 }
504
505 button:not(:disabled),
506 [type=button]:not(:disabled),
507 [type=reset]:not(:disabled),
508 [type=submit]:not(:disabled) {
509 cursor: pointer;
510 }
511
512 button::-moz-focus-inner,
513 [type=button]::-moz-focus-inner,
514 [type=reset]::-moz-focus-inner,
515 [type=submit]::-moz-focus-inner {
516 padding: 0;
517 border-style: none;
518 }
519
520 input[type=radio],
521 input[type=checkbox] {
522 box-sizing: border-box;
523 padding: 0;
524 }
525
526 textarea {
527 overflow: auto;
528 resize: vertical;
529 }
530
531 [hidden] {
532 display: none !important;
533 }
534
535 hr {
536 border: 0 none;
537 border-bottom: 1px solid var(--hr-color);
538 }
539
540 .eps-display-1 {
541 font-size: 1.85rem;
542 color: var(--display-1-color);
543 margin-top: 0.5rem;
544 margin-bottom: 0.5rem;
545 }
546
547 .eps-display-2 {
548 font-size: 1.85rem;
549 color: var(--display-2-color);
550 margin-top: 0.5rem;
551 margin-bottom: 0.5rem;
552 }
553
554 .eps-display-3 {
555 font-size: 1.85rem;
556 color: var(--display-3-color);
557 margin-top: 0;
558 margin-bottom: 1.25rem;
559 }
560
561 .eps-display-4 {
562 font-size: 1.85rem;
563 color: var(--display-4-color);
564 margin-top: 0.5rem;
565 margin-bottom: 0.5rem;
566 }
567
568 h1,
569 .eps-h1 {
570 font-size: 1.625rem;
571 line-height: 1;
572 color: var(--h1-color);
573 margin-bottom: 1.25rem;
574 font-weight: 500;
575 }
576
577 h2,
578 .eps-h2 {
579 font-size: 1.25rem;
580 line-height: 1.2;
581 color: var(--h2-color);
582 margin-top: 0;
583 margin-bottom: 1.25rem;
584 font-weight: 500;
585 }
586
587 h3,
588 .eps-h3 {
589 font-size: 1rem;
590 line-height: 1.2;
591 color: var(--h3-color);
592 margin-top: 0;
593 margin-bottom: 0.5rem;
594 font-weight: 500;
595 }
596
597 h4,
598 .eps-h4 {
599 font-size: 0.9375rem;
600 color: var(--h4-color);
601 margin-top: 0;
602 margin-bottom: 0.5rem;
603 }
604
605 h5,
606 .eps-h5 {
607 font-size: 0.875rem;
608 color: var(--h5-color);
609 margin-top: 0;
610 margin-bottom: 0.5rem;
611 }
612
613 h6,
614 .eps-h6 {
615 font-size: 0.875rem;
616 color: var(--h-6-color);
617 margin-top: 0;
618 margin-bottom: 0.5rem;
619 font-weight: 700;
620 }
621
622 .eps-text-xxs {
623 font-size: 0.75rem;
624 line-height: 1.2;
625 color: var(--text-xxs-color);
626 font-weight: 400;
627 }
628
629 .eps-text-xs {
630 font-size: 0.75rem;
631 line-height: 1.5;
632 color: var(--text-xs-color);
633 font-weight: 400;
634 }
635
636 .eps-text {
637 font-size: 0.875rem;
638 line-height: 1.5;
639 color: var(--text-base-color);
640 font-weight: 400;
641 }
642
643 .eps-text-sm {
644 font-size: 0.8125rem;
645 line-height: 1.5;
646 color: var(--text-sm-color);
647 font-weight: 400;
648 }
649
650 .eps-text-lg {
651 font-size: 0.9375rem;
652 line-height: 1.5;
653 color: var(--text-lg-color);
654 font-weight: 400;
655 }
656
657 .eps-text-xl {
658 font-size: 1rem;
659 line-height: 1.5;
660 color: var(--text-xl-color);
661 font-weight: 400;
662 }
663
664 .video-wrapper {
665 position: relative;
666 padding-bottom: 56.25%;
667 height: 0;
668 }
669 .video-wrapper iframe {
670 position: absolute;
671 top: 0;
672 left: 0;
673 width: 100%;
674 height: 100%;
675 }
676
677 .eps-separator {
678 margin-bottom: 2.75rem;
679 }
680
681 .eps-theme-dark {
682 --e-app-back-button-color: #b4b5b7;
683 }
684
685 .back-button, .e-app-back-button {
686 --button-background-color: var(--e-app-back-button-color, #a4afb7);
687 margin-bottom: 1.5rem;
688 }
689 .back-button .eps-icon, .e-app-back-button .eps-icon {
690 -webkit-margin-end: 0.3125rem;
691 margin-inline-end: 0.3125rem;
692 }
693
694 .eps-theme-dark {
695 --input-border-color: --hr-color;
696 }
697
698 .eps-input {
699 border: 1px solid var(--hr-color);
700 border-radius: 0.1875rem;
701 background: transparent;
702 color: inherit;
703 height: 1.875rem;
704 padding: 0 0.3125rem;
705 }
706 .eps-input--block {
707 width: 100%;
708 }
709
710 .eps-app {
711 display: flex;
712 height: 100vh;
713 flex-direction: column;
714 color: var(--body-color);
715 background-color: var(--app-background-color);
716 position: absolute;
717 border-radius: 0;
718 box-shadow: 2px 8px 23px 3px var(--color-box-shadow-color);
719 overflow: hidden;
720 font-family: Roboto, Arial, Helvetica, Verdana, sans-serif;
721 width: 100%;
722 max-width: 100%;
723 }
724 .eps-app__lightbox {
725 display: flex;
726 align-items: center;
727 justify-content: center;
728 position: fixed;
729 height: 100%;
730 width: 100%;
731 background-color: var(--app-lightbox-background-color);
732 z-index: 1040;
733 bottom: 0;
734 left: 0;
735 }
736 .eps-app__header {
737 flex-shrink: 0;
738 font-size: 0.9375rem;
739 color: var(--app-header-color);
740 background-color: var(--app-header-background-color);
741 box-shadow: 0 4px 10px var(--color-box-shadow-color);
742 position: relative;
743 z-index: 3;
744 height: 3.125rem;
745 padding: 0 1rem;
746 }
747 .eps-app__header-buttons {
748 display: flex;
749 align-items: center;
750 flex-direction: row-reverse;
751 font-size: 1.125rem;
752 }
753 .eps-app__header-btn {
754 --button-background-color: var(--app-header-buttons-color);
755 -webkit-padding-start: 1rem;
756 padding-inline-start: 1rem;
757 font-size: 1.125rem;
758 line-height: 1.25rem;
759 }
760 .eps-app__header-btn:first-child {
761 -webkit-border-start: 1px solid var(--app-header-buttons-separator-color);
762 border-inline-start: 1px solid var(--app-header-buttons-separator-color);
763 }
764 .eps-app__header-btn:not(:first-child) {
765 -webkit-padding-end: 1rem;
766 padding-inline-end: 1rem;
767 }
768 .eps-app__logo-title-wrapper {
769 display: flex;
770 align-items: center;
771 }
772 .eps-app__logo {
773 display: block;
774 width: 1.75rem;
775 height: 1.75rem;
776 line-height: 1.75rem;
777 text-align: center;
778 font-size: calc(0.4 * 1.75rem);
779 border-radius: 50%;
780 color: #fff;
781 background-color: #93003F;
782 }
783 .eps-app__logo:not(:last-child) {
784 -webkit-margin-end: 0.625rem;
785 margin-inline-end: 0.625rem;
786 }
787 .eps-app__title {
788 font-size: 0.9375rem;
789 font-weight: 700;
790 text-transform: uppercase;
791 margin-bottom: 0;
792 }
793 .eps-app__main {
794 display: flex;
795 overflow: hidden;
796 flex-grow: 1;
797 }
798 .eps-app__sidebar {
799 background-color: var(--app-sidebar-background-color);
800 padding-top: 1.25rem;
801 width: 30%;
802 max-width: 17.1875rem;
803 flex-grow: 0;
804 overflow-y: auto;
805 box-shadow: 2px 8px 23px 3px var(--color-box-shadow-color);
806 z-index: 4;
807 }
808 .eps-app__content {
809 flex-grow: 1;
810 position: relative;
811 padding: 2.75rem;
812 height: 100%;
813 overflow-y: auto;
814 }
815
816 .e-app-upload-file__input {
817 display: none;
818 }
819
820 .e-app-drop-zone {
821 --e-app-drop-zone-icon-color: #c2cbd2;
822 --e-app-drop-zone-text-color: #a4afb7;
823 --e-app-drop-zone-secondary-text-color: #6d7882;
824 }
825 .e-app-drop-zone__icon {
826 margin-bottom: 2.75rem;
827 color: var(--e-app-drop-zone-icon-color);
828 font-size: 60px;
829 }
830 .e-app-drop-zone__text {
831 color: var(--e-app-drop-zone-text-color);
832 }
833 .e-app-drop-zone__secondary-text {
834 color: var(--e-app-drop-zone-secondary-text-color);
835 }
836
837 .eps-theme-dark .e-app-drop-zone {
838 --e-app-drop-zone-icon-color: #c2cbd2;
839 --e-app-drop-zone-text-color: #b4b5b7;
840 --e-app-drop-zone-secondary-text-color: #e0e1e3;
841 }
842
843 :root {
844 --info-toggle-color: #d5dadf;
845 --info-toggle-hover-color: #a4afb7;
846 }
847
848 .eps-theme-dark {
849 --placeholder-filter: invert(0.8) sepia(1) saturate(0.2) hue-rotate(180deg) contrast(1.25) brightness(1.2);
850 --info-toggle-color: #64666a;
851 --info-toggle-hover-color: #b4b5b7;
852 }
853
854 .e-site-part .eps-card__image {
855 filter: var(--placeholder-filter, none);
856 }
857 .e-site-part__info-toggle {
858 color: var(--info-toggle-color);
859 }
860 .e-site-part__info-toggle:hover {
861 --info-toggle-color: var(--info-toggle-hover-color);
862 }
863
864 .e-site-editor__header {
865 margin-bottom: 2.75rem;
866 border-bottom: 1px solid var(--hr-color);
867 }
868
869 :root {
870 --e-elementor-loader-container-background-color: #f1f3f5;
871 --e-elementor-loader-background-color: rgba(255, 255, 255, 0.9);
872 }
873
874 .eps-theme-dark {
875 --e-elementor-loader-container-background-color: #34383c;
876 --e-elementor-loader-background-color: #4c4f56;
877 }
878
879 .elementor-loading {
880 background-color: var(--e-elementor-loader-container-background-color);
881 height: 100vh;
882 }
883
884 .elementor-loader-wrapper {
885 position: absolute;
886 top: 50%;
887 left: 50%;
888 transform: translate(-50%, -50%);
889 width: 300px;
890 display: flex;
891 flex-wrap: wrap;
892 justify-content: center;
893 }
894
895 .elementor-loader {
896 border-radius: 50%;
897 padding: 40px;
898 height: 150px;
899 width: 150px;
900 background-color: var(--e-elementor-loader-background-color);
901 box-sizing: border-box;
902 box-shadow: 2px 2px 20px 4px rgba(0, 0, 0, 0.02);
903 }
904
905 .elementor-loader-boxes {
906 height: 100%;
907 width: 100%;
908 position: relative;
909 }
910
911 .elementor-loader-box {
912 position: absolute;
913 background-color: #d5dadf;
914 animation: load 1.8s linear infinite;
915 }
916 .elementor-loader-box:nth-of-type(1) {
917 width: 20%;
918 height: 100%;
919 left: 0;
920 top: 0;
921 }
922 .elementor-loader-box:not(:nth-of-type(1)) {
923 right: 0;
924 height: 20%;
925 width: 60%;
926 }
927 .elementor-loader-box:nth-of-type(2) {
928 top: 0;
929 animation-delay: calc( 1.8s / 4 * -1 );
930 }
931 .elementor-loader-box:nth-of-type(3) {
932 top: 40%;
933 animation-delay: calc( 1.8s / 4 * -2 );
934 }
935 .elementor-loader-box:nth-of-type(4) {
936 bottom: 0;
937 animation-delay: calc( 1.8s / 4 * -3 );
938 }
939
940 .elementor-loading-title {
941 color: #a4afb7;
942 text-align: center;
943 text-transform: uppercase;
944 margin-top: 30px;
945 letter-spacing: 7px;
946 text-indent: 7px;
947 font-size: 10px;
948 width: 100%;
949 }
950
951 @keyframes load {
952 0% {
953 opacity: 0.3;
954 }
955 50% {
956 opacity: 1;
957 }
958 100% {
959 opacity: 0.3;
960 }
961 }
962 .eps-menu__title {
963 margin-top: 2.75rem;
964 margin-bottom: 1rem;
965 }
966
967 .e-app-import {
968 --e-app-import-back-to-library-color: #a4afb7;
969 padding-bottom: 1.25rem;
970 }
971 .e-app-import__drop-zone {
972 margin-top: 1.25rem;
973 }
974 .e-app-import__back-to-library {
975 color: var(--e-app-import-back-to-library-color);
976 margin-bottom: 1.5rem;
977 }
978 .e-app-import__back-to-library > i {
979 -webkit-margin-end: 0.5rem;
980 margin-inline-end: 0.5rem;
981 }
982
983 .eps-theme-dark .e-app-import {
984 --e-app-import-back-to-library-color: #b4b5b7;
985 }
986
987 .e-site-editor__promotion-overlay__link {
988 display: flex;
989 width: 100%;
990 height: 100%;
991 align-items: center;
992 justify-content: center;
993 flex-direction: column;
994 text-decoration: none;
995 }
996 .e-site-editor__promotion-overlay__icon {
997 font-size: 1.25rem;
998 color: #fff;
999 margin-bottom: 1rem;
1000 }
1001
1002 .e-app-import-export-wizard-step {
1003 --e-app-import-export-wizard-step-icon-color: #c2cbd2;
1004 --e-app-import-export-wizard-step-text-color: #a4afb7;
1005 --e-app-import-export-wizard-step-bottom-text-color: #a4afb7;
1006 height: 100%;
1007 position: relative;
1008 text-align: center;
1009 }
1010 .e-app-import-export-wizard-step__media-container {
1011 height: 140px;
1012 margin: 5.5rem 0 2.75rem;
1013 }
1014 .e-app-import-export-wizard-step__icon {
1015 color: var(--e-app-import-export-wizard-step-icon-color);
1016 font-size: 50px;
1017 }
1018 .e-app-import-export-wizard-step__icon.eicon-loading {
1019 font-size: 1.85rem;
1020 }
1021 .e-app-import-export-wizard-step__heading {
1022 margin-bottom: 1.5rem;
1023 }
1024 .e-app-import-export-wizard-step__description, .e-app-import-export-wizard-step__info {
1025 color: var(--e-app-import-export-wizard-step-text-color);
1026 }
1027 .e-app-import-export-wizard-step__info {
1028 margin-top: 1.5rem;
1029 }
1030 .e-app-import-export-wizard-step__content {
1031 text-align: initial;
1032 margin-bottom: 1.25rem;
1033 }
1034 .e-app-import-export-wizard-step__notice {
1035 display: block;
1036 position: sticky;
1037 top: 100%; /* Will prevent text overlapping when window height is too short. */
1038 color: var(--e-app-import-export-wizard-step-bottom-text-color);
1039 font-style: italic;
1040 margin-bottom: 0;
1041 }
1042
1043 .eps-theme-dark .e-app-import-export-wizard-step {
1044 --e-app-import-export-wizard-step-icon-color: #64666a;
1045 --e-app-import-export-wizard-step-text-color: #b4b5b7;
1046 --e-app-import-export-wizard-step-bottom-text-color: #b4b5b7;
1047 }
1048
1049 .e-app-import-export-page-header {
1050 --e-app-import-export-page-header-border-bottom-color: #d5dadf;
1051 --e-app-import-export-page-header-heading-color: #6d7882;
1052 --e-app-import-export-page-header-description-color: #a4afb7;
1053 border-bottom: 1px solid var(--e-app-import-export-page-header-border-bottom-color);
1054 margin-bottom: 2.75rem;
1055 }
1056 .e-app-import-export-page-header__content-wrapper {
1057 max-width: 645px;
1058 }
1059 .e-app-import-export-page-header__heading {
1060 color: var(--e-app-import-export-page-header-heading-color);
1061 }
1062 .e-app-import-export-page-header__description {
1063 color: var(--e-app-import-export-page-header-description-color);
1064 margin-top: 1.25rem;
1065 }
1066
1067 .eps-theme-dark .e-app-import-export-page-header {
1068 --e-app-import-export-page-header-border-bottom-color: #4c4f56;
1069 --e-app-import-export-page-header-heading-color: #e0e1e3;
1070 --e-app-import-export-page-header-description-color: #e0e1e3;
1071 }
1072
1073 .e-app-export-kit-content {
1074 --e-app-export-kit-content-title-color: #556068;
1075 --e-app-export-kit-content-description-color: #6d7882;
1076 }
1077 .e-app-export-kit-content__checkbox {
1078 flex-shrink: 0;
1079 -webkit-margin-end: 0.75rem;
1080 margin-inline-end: 0.75rem;
1081 }
1082 .e-app-export-kit-content__title {
1083 color: var(--e-app-export-kit-content-title-color);
1084 }
1085 .e-app-export-kit-content__description {
1086 color: var(--e-app-export-kit-content-description-color);
1087 -webkit-margin-end: 1.25rem;
1088 margin-inline-end: 1.25rem;
1089 }
1090 .e-app-export-kit-content__notice {
1091 margin-top: 1rem;
1092 }
1093 .e-app-export-kit-content__small-notice {
1094 font-style: italic;
1095 color: var(--e-app-export-kit-content-description-color);
1096 }
1097
1098 .eps-theme-dark .e-app-export-kit-content {
1099 --e-app-export-kit-content-title-color: #e0e1e3;
1100 --e-app-export-kit-content-description-color: #b4b5b7;
1101 }
1102
1103 .e-app-wizard-footer {
1104 --e-app-wizard-footer-border-color: #d5dadf;
1105 padding: 0.5rem;
1106 }
1107 .e-app-wizard-footer__separator {
1108 border-top: 1px solid var(--e-app-wizard-footer-border-color);
1109 }
1110
1111 .eps-theme-dark .e-app-wizard-footer {
1112 --e-app-wizard-footer-border-color: #4c4f56;
1113 }
1114
1115 .e-app-export-templates-features__locked {
1116 --e-app-export-templates-features-locked-color: #a4afb7;
1117 color: var(--e-app-export-templates-features-locked-color);
1118 }
1119
1120 .eps-theme-dark .e-app-export-templates-features__locked {
1121 --e-app-export-templates-features-locked-color: #7d7e82;
1122 }
1123
1124 :root {
1125 --color-box-shadow-color: rgba(0, 0, 0, 0.05);
1126 }
1127
1128 .eps-theme-dark {
1129 --color-box-shadow-color: rgba(0, 0, 0, 0.1);
1130 }
1131
1132 :root {
1133 --card-background-color: rgba(255, 255, 255, 0.5);
1134 --card-background-color-hover: #fff;
1135 --card-box-shadow: 0 4px 10px var(--color-box-shadow-color);
1136 --card-header-footer-border: 1px solid #f1f3f5;
1137 --card-header-footer-active-border: 2px solid #e2e6ea;
1138 --card-headline-color: #6d7882;
1139 --card-figure-background-color: #f1f3f5;
1140 --card-image-overlay-background-color: rgba(0, 0, 0, 0.2);
1141 }
1142
1143 .eps-theme-dark {
1144 --card-background-color: #404349;
1145 --card-background-color-hover: rgba(76, 79, 86, 0.8);
1146 --card-box-shadow: 0 3px 6px var(--color-box-shadow-color);
1147 --card-header-footer-border: 1px solid #34383c;
1148 --card-header-footer-active-border: 1px solid #26292C;
1149 --card-headline-color: #e0e1e3;
1150 --card-figure-background-color: #34383c;
1151 --card-image-overlay-background-color: rgba(52, 56, 60, 0.5);
1152 }
1153
1154 .eps-card {
1155 background-color: var(--card-background-color);
1156 box-shadow: 0 4px 10px var(--color-box-shadow-color);
1157 border-radius: 0.1875rem;
1158 transition: 0.3s;
1159 font-size: 0.75rem;
1160 /*
1161 todo: TBD: Optionally remove headline styling in favor of a global atom depending on variation needs
1162 */
1163 }
1164 .eps-card__header {
1165 padding: 0.625rem;
1166 border-bottom: var(--card-header-footer-border);
1167 min-height: 2.5rem;
1168 display: flex;
1169 align-items: center;
1170 }
1171 .eps-card__header--padding {
1172 padding: var(--eps-card-header-padding);
1173 }
1174 .eps-card__headline {
1175 color: var(--card-headline-color);
1176 margin-bottom: 0;
1177 font-weight: 500;
1178 flex-grow: 1;
1179 overflow: hidden;
1180 text-overflow: ellipsis;
1181 white-space: nowrap;
1182 }
1183 .eps-card__body {
1184 padding: 0.625rem 0.625rem;
1185 }
1186 .eps-card__body--padding {
1187 padding: var(--eps-card-body-padding);
1188 }
1189 .eps-card__figure {
1190 background-color: var(--card-figure-background-color);
1191 position: relative;
1192 padding-bottom: var(--card-image-aspect-ratio, 95.6%);
1193 overflow: hidden;
1194 height: 0;
1195 }
1196 .eps-card__image {
1197 width: 100%;
1198 -o-object-fit: contain;
1199 object-fit: contain;
1200 -o-object-position: top;
1201 object-position: top;
1202 position: absolute;
1203 top: 0;
1204 left: 0;
1205 }
1206 .eps-card__image-overlay {
1207 position: absolute;
1208 top: 0;
1209 background-color: var(--card-image-overlay-background-color);
1210 z-index: 1;
1211 width: 100%;
1212 height: 100%;
1213 opacity: 0;
1214 transition: 0.3s;
1215 }
1216 .eps-card__image-overlay:hover {
1217 opacity: 1;
1218 }
1219 .eps-card__footer {
1220 padding: 0.625rem;
1221 border-top: var(--card-header-footer-border);
1222 font-size: 0.6875rem;
1223 }
1224 .eps-card__footer--padding {
1225 padding: var(--eps-card-footer-padding);
1226 }
1227 .eps-card:hover {
1228 background-color: var(--card-background-color-hover);
1229 }
1230
1231 :root {
1232 --menu-item-color: #6d7882;
1233 --menu-item-color-hover: #556068;
1234 --menu-item-background-color-active: #fff;
1235 --menu-item-icon-color: #a4afb7;
1236 --menu-item-action-button-color: #d5dadf;
1237 }
1238
1239 .eps-theme-dark {
1240 --menu-item-color: #e0e1e3;
1241 --menu-item-color-hover: #e0e1e3;
1242 --menu-item-background-color-active: #404349;
1243 --menu-item-icon-color: #b4b5b7;
1244 --menu-item-action-button-color: #64666a;
1245 }
1246
1247 .eps-menu-item {
1248 display: flex;
1249 align-items: center;
1250 position: relative;
1251 transition: 0.3s;
1252 --action-button-opacity: 0;
1253 }
1254 .eps-menu-item::before {
1255 content: "";
1256 display: block;
1257 position: absolute;
1258 top: 0;
1259 inset-inline-start: 0;
1260 height: 100%;
1261 width: var(--menu-item-pointer-width);
1262 background-color: #58d0f5;
1263 }
1264 .eps-menu-item:hover {
1265 --action-button-opacity: 1;
1266 }
1267 .eps-menu-item:hover, .eps-menu-item--active {
1268 --menu-item-color: var(--menu-item-color-hover);
1269 --eps-link-color: var(--menu-item-color-hover);
1270 --menu-item-icon-color: #58d0f5;
1271 }
1272 .eps-menu-item--active {
1273 background-color: var(--menu-item-background-color-active);
1274 }
1275 .eps-menu-item__link {
1276 padding: 0.5rem 1.875rem;
1277 min-height: 2.75rem;
1278 font-size: 0.75rem;
1279 line-height: 1.2;
1280 flex-grow: 1;
1281 display: flex;
1282 align-items: center;
1283 color: var(--menu-item-color);
1284 --eps-link-color: var(--menu-item-color);
1285 }
1286 .eps-menu-item__link:not(:last-child) {
1287 -webkit-padding-end: 0;
1288 padding-inline-end: 0;
1289 }
1290 .eps-menu-item__link .eps-icon {
1291 font-size: 1.125rem;
1292 color: var(--menu-item-icon-color);
1293 -webkit-margin-end: 0.75rem;
1294 margin-inline-end: 0.75rem;
1295 }
1296 .eps-menu-item__action-button {
1297 color: var(--menu-item-action-button-color);
1298 opacity: var(--action-button-opacity);
1299 padding: 0.625rem;
1300 transition: 0.3s;
1301 -webkit-margin-end: 1.25rem;
1302 margin-inline-end: 1.25rem;
1303 }
1304 .eps-menu-item--active {
1305 --menu-item-pointer-width: 0.3125rem;
1306 box-shadow: 0 3px 6px var(--color-box-shadow-color);
1307 }
1308 .eps-menu-item--active .eps-menu-item__link .eps-icon {
1309 color: #58d0f5;
1310 }
1311
1312 .eps-grid-container {
1313 display: flex;
1314 flex-wrap: wrap;
1315 width: 100%;
1316 }
1317 .eps-grid-container--no-wrap {
1318 flex-wrap: nowrap;
1319 }
1320 .eps-grid-container--wrap-reverse {
1321 flex-wrap: wrap-reverse;
1322 }
1323 .eps-grid-container--spacing {
1324 --grid-row-gutter: calc(-1 * calc(var(--grid-spacing-gutter) * (0.625rem / 10)));
1325 width: var(--grid-spacing-width);
1326 margin: var(--grid-row-gutter);
1327 }
1328 .eps-grid-container--spacing > .eps-grid-item {
1329 padding: var(--grid-spacing-gutter);
1330 }
1331 .eps-grid--direction-row {
1332 flex-direction: row;
1333 }
1334 .eps-grid--direction-row-reverse {
1335 flex-direction: row-reverse;
1336 }
1337 .eps-grid--direction-column {
1338 flex-direction: column;
1339 }
1340 .eps-grid--direction-column-reverse {
1341 flex-direction: column-reverse;
1342 }
1343 .eps-grid--justify-stretch {
1344 justify-content: stretch;
1345 }
1346 .eps-grid--justify-start {
1347 justify-content: flex-start;
1348 }
1349 .eps-grid--justify-center {
1350 justify-content: center;
1351 }
1352 .eps-grid--justify-end {
1353 justify-content: flex-end;
1354 }
1355 .eps-grid--justify-space-between {
1356 justify-content: space-between;
1357 }
1358 .eps-grid--justify-space-around {
1359 justify-content: space-around;
1360 }
1361 .eps-grid--justify-space-evenly {
1362 justify-content: space-evenly;
1363 }
1364 .eps-grid--align-content-stretch {
1365 align-content: stretch;
1366 }
1367 .eps-grid--align-content-start {
1368 align-content: flex-start;
1369 }
1370 .eps-grid--align-content-center {
1371 align-content: center;
1372 }
1373 .eps-grid--align-content-end {
1374 align-content: flex-end;
1375 }
1376 .eps-grid--align-content-space-between {
1377 align-content: space-between;
1378 }
1379 .eps-grid--align-items-start {
1380 align-items: flex-start;
1381 }
1382 .eps-grid--align-items-center {
1383 align-items: center;
1384 }
1385 .eps-grid--align-items-end {
1386 align-items: flex-end;
1387 }
1388 .eps-grid--align-items-baseline {
1389 align-items: baseline;
1390 }
1391 .eps-grid--align-items-stretch {
1392 align-items: stretch;
1393 }
1394
1395 .eps-grid-item--zero-min-width {
1396 min-width: 0;
1397 }
1398
1399 @media screen and (min-width: 480px) {
1400 .eps-grid-item-sm {
1401 flex-grow: 1;
1402 max-width: 100%;
1403 flex-basis: 0;
1404 }
1405 }
1406 @media screen and (min-width: 768px) {
1407 .eps-grid-item-md {
1408 flex-grow: 1;
1409 max-width: 100%;
1410 flex-basis: 0;
1411 }
1412 }
1413 @media screen and (min-width: 1025px) {
1414 .eps-grid-item-lg {
1415 flex-grow: 1;
1416 max-width: 100%;
1417 flex-basis: 0;
1418 }
1419 }
1420 @media screen and (min-width: 1440px) {
1421 .eps-grid-item-xl {
1422 flex-grow: 1;
1423 max-width: 100%;
1424 flex-basis: 0;
1425 }
1426 }
1427 @media screen and (min-width: 1600px) {
1428 .eps-grid-item-xxl {
1429 flex-grow: 1;
1430 max-width: 100%;
1431 flex-basis: 0;
1432 }
1433 }
1434 .eps-grid-item-xs-1 {
1435 flex-grow: 0;
1436 max-width: calc( 1 / 12 * 100% );
1437 flex-basis: calc( 1 / 12 * 100% );
1438 }
1439
1440 .eps-grid-item-xs-2 {
1441 flex-grow: 0;
1442 max-width: calc( 2 / 12 * 100% );
1443 flex-basis: calc( 2 / 12 * 100% );
1444 }
1445
1446 .eps-grid-item-xs-3 {
1447 flex-grow: 0;
1448 max-width: calc( 3 / 12 * 100% );
1449 flex-basis: calc( 3 / 12 * 100% );
1450 }
1451
1452 .eps-grid-item-xs-4 {
1453 flex-grow: 0;
1454 max-width: calc( 4 / 12 * 100% );
1455 flex-basis: calc( 4 / 12 * 100% );
1456 }
1457
1458 .eps-grid-item-xs-5 {
1459 flex-grow: 0;
1460 max-width: calc( 5 / 12 * 100% );
1461 flex-basis: calc( 5 / 12 * 100% );
1462 }
1463
1464 .eps-grid-item-xs-6 {
1465 flex-grow: 0;
1466 max-width: calc( 6 / 12 * 100% );
1467 flex-basis: calc( 6 / 12 * 100% );
1468 }
1469
1470 .eps-grid-item-xs-7 {
1471 flex-grow: 0;
1472 max-width: calc( 7 / 12 * 100% );
1473 flex-basis: calc( 7 / 12 * 100% );
1474 }
1475
1476 .eps-grid-item-xs-8 {
1477 flex-grow: 0;
1478 max-width: calc( 8 / 12 * 100% );
1479 flex-basis: calc( 8 / 12 * 100% );
1480 }
1481
1482 .eps-grid-item-xs-9 {
1483 flex-grow: 0;
1484 max-width: calc( 9 / 12 * 100% );
1485 flex-basis: calc( 9 / 12 * 100% );
1486 }
1487
1488 .eps-grid-item-xs-10 {
1489 flex-grow: 0;
1490 max-width: calc( 10 / 12 * 100% );
1491 flex-basis: calc( 10 / 12 * 100% );
1492 }
1493
1494 .eps-grid-item-xs-11 {
1495 flex-grow: 0;
1496 max-width: calc( 11 / 12 * 100% );
1497 flex-basis: calc( 11 / 12 * 100% );
1498 }
1499
1500 .eps-grid-item-xs-12 {
1501 flex-grow: 0;
1502 max-width: calc( 12 / 12 * 100% );
1503 flex-basis: calc( 12 / 12 * 100% );
1504 }
1505
1506 @media screen and (min-width: 480px) {
1507 .eps-grid-item-sm-1 {
1508 flex-grow: 0;
1509 max-width: calc( 1 / 12 * 100% );
1510 flex-basis: calc( 1 / 12 * 100% );
1511 }
1512 .eps-grid-item-sm-2 {
1513 flex-grow: 0;
1514 max-width: calc( 2 / 12 * 100% );
1515 flex-basis: calc( 2 / 12 * 100% );
1516 }
1517 .eps-grid-item-sm-3 {
1518 flex-grow: 0;
1519 max-width: calc( 3 / 12 * 100% );
1520 flex-basis: calc( 3 / 12 * 100% );
1521 }
1522 .eps-grid-item-sm-4 {
1523 flex-grow: 0;
1524 max-width: calc( 4 / 12 * 100% );
1525 flex-basis: calc( 4 / 12 * 100% );
1526 }
1527 .eps-grid-item-sm-5 {
1528 flex-grow: 0;
1529 max-width: calc( 5 / 12 * 100% );
1530 flex-basis: calc( 5 / 12 * 100% );
1531 }
1532 .eps-grid-item-sm-6 {
1533 flex-grow: 0;
1534 max-width: calc( 6 / 12 * 100% );
1535 flex-basis: calc( 6 / 12 * 100% );
1536 }
1537 .eps-grid-item-sm-7 {
1538 flex-grow: 0;
1539 max-width: calc( 7 / 12 * 100% );
1540 flex-basis: calc( 7 / 12 * 100% );
1541 }
1542 .eps-grid-item-sm-8 {
1543 flex-grow: 0;
1544 max-width: calc( 8 / 12 * 100% );
1545 flex-basis: calc( 8 / 12 * 100% );
1546 }
1547 .eps-grid-item-sm-9 {
1548 flex-grow: 0;
1549 max-width: calc( 9 / 12 * 100% );
1550 flex-basis: calc( 9 / 12 * 100% );
1551 }
1552 .eps-grid-item-sm-10 {
1553 flex-grow: 0;
1554 max-width: calc( 10 / 12 * 100% );
1555 flex-basis: calc( 10 / 12 * 100% );
1556 }
1557 .eps-grid-item-sm-11 {
1558 flex-grow: 0;
1559 max-width: calc( 11 / 12 * 100% );
1560 flex-basis: calc( 11 / 12 * 100% );
1561 }
1562 .eps-grid-item-sm-12 {
1563 flex-grow: 0;
1564 max-width: calc( 12 / 12 * 100% );
1565 flex-basis: calc( 12 / 12 * 100% );
1566 }
1567 }
1568 @media screen and (min-width: 768px) {
1569 .eps-grid-item-md-1 {
1570 flex-grow: 0;
1571 max-width: calc( 1 / 12 * 100% );
1572 flex-basis: calc( 1 / 12 * 100% );
1573 }
1574 .eps-grid-item-md-2 {
1575 flex-grow: 0;
1576 max-width: calc( 2 / 12 * 100% );
1577 flex-basis: calc( 2 / 12 * 100% );
1578 }
1579 .eps-grid-item-md-3 {
1580 flex-grow: 0;
1581 max-width: calc( 3 / 12 * 100% );
1582 flex-basis: calc( 3 / 12 * 100% );
1583 }
1584 .eps-grid-item-md-4 {
1585 flex-grow: 0;
1586 max-width: calc( 4 / 12 * 100% );
1587 flex-basis: calc( 4 / 12 * 100% );
1588 }
1589 .eps-grid-item-md-5 {
1590 flex-grow: 0;
1591 max-width: calc( 5 / 12 * 100% );
1592 flex-basis: calc( 5 / 12 * 100% );
1593 }
1594 .eps-grid-item-md-6 {
1595 flex-grow: 0;
1596 max-width: calc( 6 / 12 * 100% );
1597 flex-basis: calc( 6 / 12 * 100% );
1598 }
1599 .eps-grid-item-md-7 {
1600 flex-grow: 0;
1601 max-width: calc( 7 / 12 * 100% );
1602 flex-basis: calc( 7 / 12 * 100% );
1603 }
1604 .eps-grid-item-md-8 {
1605 flex-grow: 0;
1606 max-width: calc( 8 / 12 * 100% );
1607 flex-basis: calc( 8 / 12 * 100% );
1608 }
1609 .eps-grid-item-md-9 {
1610 flex-grow: 0;
1611 max-width: calc( 9 / 12 * 100% );
1612 flex-basis: calc( 9 / 12 * 100% );
1613 }
1614 .eps-grid-item-md-10 {
1615 flex-grow: 0;
1616 max-width: calc( 10 / 12 * 100% );
1617 flex-basis: calc( 10 / 12 * 100% );
1618 }
1619 .eps-grid-item-md-11 {
1620 flex-grow: 0;
1621 max-width: calc( 11 / 12 * 100% );
1622 flex-basis: calc( 11 / 12 * 100% );
1623 }
1624 .eps-grid-item-md-12 {
1625 flex-grow: 0;
1626 max-width: calc( 12 / 12 * 100% );
1627 flex-basis: calc( 12 / 12 * 100% );
1628 }
1629 }
1630 @media screen and (min-width: 1025px) {
1631 .eps-grid-item-lg-1 {
1632 flex-grow: 0;
1633 max-width: calc( 1 / 12 * 100% );
1634 flex-basis: calc( 1 / 12 * 100% );
1635 }
1636 .eps-grid-item-lg-2 {
1637 flex-grow: 0;
1638 max-width: calc( 2 / 12 * 100% );
1639 flex-basis: calc( 2 / 12 * 100% );
1640 }
1641 .eps-grid-item-lg-3 {
1642 flex-grow: 0;
1643 max-width: calc( 3 / 12 * 100% );
1644 flex-basis: calc( 3 / 12 * 100% );
1645 }
1646 .eps-grid-item-lg-4 {
1647 flex-grow: 0;
1648 max-width: calc( 4 / 12 * 100% );
1649 flex-basis: calc( 4 / 12 * 100% );
1650 }
1651 .eps-grid-item-lg-5 {
1652 flex-grow: 0;
1653 max-width: calc( 5 / 12 * 100% );
1654 flex-basis: calc( 5 / 12 * 100% );
1655 }
1656 .eps-grid-item-lg-6 {
1657 flex-grow: 0;
1658 max-width: calc( 6 / 12 * 100% );
1659 flex-basis: calc( 6 / 12 * 100% );
1660 }
1661 .eps-grid-item-lg-7 {
1662 flex-grow: 0;
1663 max-width: calc( 7 / 12 * 100% );
1664 flex-basis: calc( 7 / 12 * 100% );
1665 }
1666 .eps-grid-item-lg-8 {
1667 flex-grow: 0;
1668 max-width: calc( 8 / 12 * 100% );
1669 flex-basis: calc( 8 / 12 * 100% );
1670 }
1671 .eps-grid-item-lg-9 {
1672 flex-grow: 0;
1673 max-width: calc( 9 / 12 * 100% );
1674 flex-basis: calc( 9 / 12 * 100% );
1675 }
1676 .eps-grid-item-lg-10 {
1677 flex-grow: 0;
1678 max-width: calc( 10 / 12 * 100% );
1679 flex-basis: calc( 10 / 12 * 100% );
1680 }
1681 .eps-grid-item-lg-11 {
1682 flex-grow: 0;
1683 max-width: calc( 11 / 12 * 100% );
1684 flex-basis: calc( 11 / 12 * 100% );
1685 }
1686 .eps-grid-item-lg-12 {
1687 flex-grow: 0;
1688 max-width: calc( 12 / 12 * 100% );
1689 flex-basis: calc( 12 / 12 * 100% );
1690 }
1691 }
1692 @media screen and (min-width: 1440px) {
1693 .eps-grid-item-xl-1 {
1694 flex-grow: 0;
1695 max-width: calc( 1 / 12 * 100% );
1696 flex-basis: calc( 1 / 12 * 100% );
1697 }
1698 .eps-grid-item-xl-2 {
1699 flex-grow: 0;
1700 max-width: calc( 2 / 12 * 100% );
1701 flex-basis: calc( 2 / 12 * 100% );
1702 }
1703 .eps-grid-item-xl-3 {
1704 flex-grow: 0;
1705 max-width: calc( 3 / 12 * 100% );
1706 flex-basis: calc( 3 / 12 * 100% );
1707 }
1708 .eps-grid-item-xl-4 {
1709 flex-grow: 0;
1710 max-width: calc( 4 / 12 * 100% );
1711 flex-basis: calc( 4 / 12 * 100% );
1712 }
1713 .eps-grid-item-xl-5 {
1714 flex-grow: 0;
1715 max-width: calc( 5 / 12 * 100% );
1716 flex-basis: calc( 5 / 12 * 100% );
1717 }
1718 .eps-grid-item-xl-6 {
1719 flex-grow: 0;
1720 max-width: calc( 6 / 12 * 100% );
1721 flex-basis: calc( 6 / 12 * 100% );
1722 }
1723 .eps-grid-item-xl-7 {
1724 flex-grow: 0;
1725 max-width: calc( 7 / 12 * 100% );
1726 flex-basis: calc( 7 / 12 * 100% );
1727 }
1728 .eps-grid-item-xl-8 {
1729 flex-grow: 0;
1730 max-width: calc( 8 / 12 * 100% );
1731 flex-basis: calc( 8 / 12 * 100% );
1732 }
1733 .eps-grid-item-xl-9 {
1734 flex-grow: 0;
1735 max-width: calc( 9 / 12 * 100% );
1736 flex-basis: calc( 9 / 12 * 100% );
1737 }
1738 .eps-grid-item-xl-10 {
1739 flex-grow: 0;
1740 max-width: calc( 10 / 12 * 100% );
1741 flex-basis: calc( 10 / 12 * 100% );
1742 }
1743 .eps-grid-item-xl-11 {
1744 flex-grow: 0;
1745 max-width: calc( 11 / 12 * 100% );
1746 flex-basis: calc( 11 / 12 * 100% );
1747 }
1748 .eps-grid-item-xl-12 {
1749 flex-grow: 0;
1750 max-width: calc( 12 / 12 * 100% );
1751 flex-basis: calc( 12 / 12 * 100% );
1752 }
1753 }
1754 @media screen and (min-width: 1600px) {
1755 .eps-grid-item-xxl-1 {
1756 flex-grow: 0;
1757 max-width: calc( 1 / 12 * 100% );
1758 flex-basis: calc( 1 / 12 * 100% );
1759 }
1760 .eps-grid-item-xxl-2 {
1761 flex-grow: 0;
1762 max-width: calc( 2 / 12 * 100% );
1763 flex-basis: calc( 2 / 12 * 100% );
1764 }
1765 .eps-grid-item-xxl-3 {
1766 flex-grow: 0;
1767 max-width: calc( 3 / 12 * 100% );
1768 flex-basis: calc( 3 / 12 * 100% );
1769 }
1770 .eps-grid-item-xxl-4 {
1771 flex-grow: 0;
1772 max-width: calc( 4 / 12 * 100% );
1773 flex-basis: calc( 4 / 12 * 100% );
1774 }
1775 .eps-grid-item-xxl-5 {
1776 flex-grow: 0;
1777 max-width: calc( 5 / 12 * 100% );
1778 flex-basis: calc( 5 / 12 * 100% );
1779 }
1780 .eps-grid-item-xxl-6 {
1781 flex-grow: 0;
1782 max-width: calc( 6 / 12 * 100% );
1783 flex-basis: calc( 6 / 12 * 100% );
1784 }
1785 .eps-grid-item-xxl-7 {
1786 flex-grow: 0;
1787 max-width: calc( 7 / 12 * 100% );
1788 flex-basis: calc( 7 / 12 * 100% );
1789 }
1790 .eps-grid-item-xxl-8 {
1791 flex-grow: 0;
1792 max-width: calc( 8 / 12 * 100% );
1793 flex-basis: calc( 8 / 12 * 100% );
1794 }
1795 .eps-grid-item-xxl-9 {
1796 flex-grow: 0;
1797 max-width: calc( 9 / 12 * 100% );
1798 flex-basis: calc( 9 / 12 * 100% );
1799 }
1800 .eps-grid-item-xxl-10 {
1801 flex-grow: 0;
1802 max-width: calc( 10 / 12 * 100% );
1803 flex-basis: calc( 10 / 12 * 100% );
1804 }
1805 .eps-grid-item-xxl-11 {
1806 flex-grow: 0;
1807 max-width: calc( 11 / 12 * 100% );
1808 flex-basis: calc( 11 / 12 * 100% );
1809 }
1810 .eps-grid-item-xxl-12 {
1811 flex-grow: 0;
1812 max-width: calc( 12 / 12 * 100% );
1813 flex-basis: calc( 12 / 12 * 100% );
1814 }
1815 }
1816 :root {
1817 --menu-title-color: #6d7882;
1818 }
1819
1820 .eps-theme-dark {
1821 --menu-title-color: #6d7882;
1822 }
1823
1824 .eps-menu ul {
1825 list-style: none;
1826 padding: 0;
1827 margin: 0;
1828 }
1829 .eps-menu ul li {
1830 display: flex;
1831 }
1832 .eps-menu__title {
1833 padding: 0.5rem 1.875rem;
1834 font-size: 0.6875rem;
1835 line-height: 1.2;
1836 text-transform: uppercase;
1837 font-weight: normal;
1838 color: var(--menu-title-color);
1839 }
1840
1841 :root {
1842 --eps-modal-background-color: #fff;
1843 --eps-modal-header-background-color: #58d0f5;
1844 }
1845
1846 .eps-theme-dark {
1847 --eps-modal-background-color: #34383c;
1848 --eps-modal-header-background-color: #58d0f5;
1849 }
1850
1851 /** ----------------------------------------------------------------
1852 EPS Modal
1853 ---------------------------------------------------------------- */
1854 .eps-modal {
1855 max-width: 43.75rem;
1856 background: var(--eps-modal-background-color);
1857 border-radius: 0.1875rem;
1858 animation: eps-animation-pop 0.15s cubic-bezier(0.57, 0.53, 0.71, 1.47) forwards;
1859 }
1860 .eps-modal__overlay {
1861 background: rgba(0, 0, 0, 0.5);
1862 position: fixed;
1863 display: flex;
1864 top: 0;
1865 left: 0;
1866 width: 100%;
1867 height: 100%;
1868 align-items: center;
1869 justify-content: center;
1870 z-index: 1030;
1871 }
1872 .eps-modal__header {
1873 font-size: 0.875rem;
1874 background: var(--eps-modal-header-background-color);
1875 height: 2.75rem;
1876 padding: 0.625rem 1rem;
1877 border-radius: 0.1875rem;
1878 }
1879 .eps-modal__header, .eps-modal__header .title {
1880 color: #fff;
1881 }
1882 .eps-modal__icon {
1883 -webkit-margin-end: 0.625rem;
1884 margin-inline-end: 0.625rem;
1885 }
1886 .eps-modal__body {
1887 padding: 1.875rem;
1888 }
1889 .eps-modal__tip, .eps-modal .eps-tip {
1890 -webkit-padding-start: 0.75rem;
1891 padding-inline-start: 0.75rem;
1892 -webkit-border-start: 3px solid #58d0f5;
1893 border-inline-start: 3px solid #58d0f5;
1894 }
1895 .eps-modal__tip:not(:last-child), .eps-modal .eps-tip:not(:last-child) {
1896 margin-bottom: 1.875rem;
1897 }
1898 .eps-modal__tip:not(:first-child), .eps-modal .eps-tip:not(:first-child) {
1899 margin-top: 1.875rem;
1900 }
1901 .eps-modal__section:not(:first-child) {
1902 margin-top: 1.875rem;
1903 }
1904 .eps-modal__close-wrapper {
1905 -webkit-padding-start: 1rem;
1906 padding-inline-start: 1rem;
1907 -webkit-border-start: solid 1px #fff;
1908 border-inline-start: solid 1px #fff;
1909 }
1910
1911 .eps-add-new-button {
1912 display: inline-flex;
1913 --eps-add-new-button-size: 1.5rem;
1914 line-height: var(--eps-add-new-button-size);
1915 cursor: pointer;
1916 }
1917 .eps-add-new-button .eps-icon {
1918 background-color: #58d0f5;
1919 color: #fff;
1920 width: var(--eps-add-new-button-size);
1921 height: var(--eps-add-new-button-size);
1922 border-radius: 100%;
1923 font-size: calc(var(--eps-add-new-button-size) * 0.75);
1924 text-align: center;
1925 line-height: var(--eps-add-new-button-size);
1926 }
1927 .eps-add-new-button span:not(.sr-only) {
1928 -webkit-margin-start: 0.625rem;
1929 margin-inline-start: 0.625rem;
1930 font-weight: 500;
1931 }
1932 .eps-add-new-button--sm {
1933 --eps-add-new-button-size: 1rem;
1934 }
1935
1936 :root {
1937 --select2-selection-background-color: #fff;
1938 --select2-selection-color: #6d7882;
1939 --select2-selection-border-color: #d5dadf;
1940 --select2-selection-opened-focused-border-color: #f1f3f5;
1941 --select2-single-selection-rendered-color: #6d7882;
1942 --select2-default-single-selection-background-color: #fff;
1943 --select2-default-single-selection-border-color: #d5dadf;
1944 --select2-default-multiple-selection-background-color: #fff;
1945 --select2-default-multiple-selection-choice-background-color: #f1f3f5;
1946 --select2-default-multiple-selection-choice-color: #6d7882;
1947 --select2-default-multiple-selection-choice-border-color: #f1f3f5;
1948 --select2-default-multiple-selection-choice-remove-color: #a4afb7;
1949 --select2-default-multiple-selection-choice-remove-hover-color: #6d7882;
1950 --select2-default-results-selected-option-background-color: #fff;
1951 --select2-default-results-selected-option-color: #6d7882;
1952 --select2-default-results-highlighted-option-background-color: #5897fb;
1953 --select2-default-results-highlighted-option-color: #fff;
1954 --select2-results-selected-option-background-color: #5897fb;
1955 --select2-results-selected-option-color: #fff;
1956 --select2-dropdown-background-color: #fff;
1957 --select2-dropdown-border-color: #d5dadf;
1958 }
1959
1960 .eps-theme-dark {
1961 --select2-selection-background-color: #34383c;
1962 --select2-selection-color: #e0e1e3;
1963 --select2-selection-border-color: #64666a;
1964 --select2-selection-opened-focused-border-color: #7d7e82;
1965 --select2-single-selection-rendered-color: #e0e1e3;
1966 --select2-default-single-selection-background-color: #34383c;
1967 --select2-default-single-selection-border-color: #4c4f56;
1968 --select2-default-multiple-selection-background-color: #34383c;
1969 --select2-default-multiple-selection-choice-background-color: #4c4f56;
1970 --select2-default-multiple-selection-choice-color: #e0e1e3;
1971 --select2-default-multiple-selection-choice-border-color: #4c4f56;
1972 --select2-default-multiple-selection-choice-remove-color: #b4b5b7;
1973 --select2-default-multiple-selection-choice-remove-hover-color: #e0e1e3;
1974 --select2-default-results-selected-option-background-color: #34383c;
1975 --select2-default-results-selected-option-color: #e0e1e3;
1976 --select2-default-results-highlighted-option-background-color: #4c4f56;
1977 --select2-default-results-highlighted-option-color: #e0e1e3;
1978 --select2-results-selected-option-background-color: #4c4f56;
1979 --select2-results-selected-option-color: #e0e1e3;
1980 --select2-dropdown-background-color: #34383c;
1981 --select2-dropdown-border-color: #64666a;
1982 }
1983
1984 .select2-container:not(.select2-container--open):not(.select2-container--focus) .select2-selection--single,
1985 .select2-container:not(.select2-container--open):not(.select2-container--focus) .select2-selection--multiple {
1986 background-color: var(--select2-selection-background-color);
1987 color: var(--select2-selection-color);
1988 border-color: var(--select2-selection-border-color);
1989 }
1990 .select2-container.select2-container--open .select2-selection--single,
1991 .select2-container.select2-container--open .select2-selection--multiple, .select2-container.select2-container--focus .select2-selection--single,
1992 .select2-container.select2-container--focus .select2-selection--multiple {
1993 border-color: var(--select2-selection-opened-focused-border-color);
1994 }
1995 .select2-container.select2-container--default .select2-selection--single .select2-selection__rendered {
1996 color: var(--select2-single-selection-rendered-color);
1997 }
1998 .select2-container--default .select2-selection--single {
1999 background-color: var(--select2-default-single-selection-background-color);
2000 border-color: var(--select2-default-single-selection-border-color);
2001 }
2002 .select2-container--default .select2-selection--multiple {
2003 background-color: var(--select2-default-multiple-selection-background-color);
2004 }
2005 .select2-container--default .select2-selection--multiple .select2-selection__choice {
2006 background-color: var(--select2-default-multiple-selection-choice-background-color);
2007 color: var(--select2-default-multiple-selection-choice-color);
2008 border-color: var(--select2-default-multiple-selection-choice-border-color);
2009 }
2010 .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
2011 color: var(--select2-default-multiple-selection-choice-remove-color);
2012 }
2013 .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
2014 color: var(--select2-default-multiple-selection-choice-remove-hover-color);
2015 }
2016 .select2-container--default .select2-results__option[aria-selected] {
2017 background-color: var(--select2-default-results-selected-option-background-color);
2018 color: var(--select2-default-results-selected-option-color);
2019 }
2020 .select2-container--default .select2-results__option--highlighted[aria-selected] {
2021 background-color: var(--select2-default-results-highlighted-option-background-color);
2022 color: var(--select2-default-results-highlighted-option-color);
2023 }
2024 .select2-container .select2-results__option[aria-selected=true] {
2025 background-color: var(--select2-results-selected-option-background-color);
2026 color: var(--select2-results-selected-option-color);
2027 }
2028 .select2-container .select2-dropdown {
2029 background-color: var(--select2-dropdown-background-color);
2030 border-color: var(--select2-dropdown-border-color);
2031 }
2032
2033 .eps-notice {
2034 --eps-box-notice-color: #a4afb7;
2035 --eps-box-notice-background-color: #fcfcfc;
2036 padding: 0.625rem 1rem;
2037 box-shadow: 0 2px 3px 1px var(--color-box-shadow-color);
2038 background-color: var(--eps-box-notice-background-color);
2039 }
2040 .eps-notice-semantic {
2041 -webkit-border-start: 3px solid var(--eps-notice-semantic-color);
2042 border-inline-start: 3px solid var(--eps-notice-semantic-color);
2043 }
2044 .eps-notice-semantic .eps-notice__icon {
2045 color: var(--eps-notice-semantic-color);
2046 font-size: 1rem;
2047 -webkit-margin-end: 0.75rem;
2048 margin-inline-end: 0.75rem;
2049 }
2050 .eps-notice--warning {
2051 --eps-notice-semantic-color: #fcb92c;
2052 }
2053 .eps-notice--danger {
2054 --eps-notice-semantic-color: #b01b1b;
2055 }
2056 .eps-notice--info {
2057 --eps-notice-semantic-color: #58d0f5;
2058 }
2059 .eps-notice__text {
2060 margin: 0;
2061 padding: 0;
2062 color: var(--eps-box-notice-color);
2063 font-style: italic;
2064 }
2065 .eps-notice__button-container {
2066 flex-shrink: 0;
2067 margin-left: 1.25rem;
2068 width: auto;
2069 }
2070
2071 .eps-theme-dark .eps-notice {
2072 --eps-box-notice-color: #b4b5b7;
2073 --eps-box-notice-background-color: #404349;
2074 }
2075
2076 .eps-list {
2077 --eps-list-item-separated-border-color: #f1f3f5;
2078 padding: 0;
2079 margin: 0;
2080 list-style-type: none;
2081 }
2082 .eps-list--padding {
2083 padding: var(--eps-list-padding);
2084 }
2085 .eps-list__item {
2086 padding: 0;
2087 }
2088 .eps-list__item--padding {
2089 padding: var(--eps-list-item-padding);
2090 }
2091 .eps-list--separated .eps-list__item:not(:last-child) {
2092 border-bottom: 1px solid var(--eps-list-item-separated-border-color);
2093 }
2094
2095 .eps-theme-dark .eps-list {
2096 --eps-list-item-separated-border-color: #34383c;
2097 }
2098
2099 :root {
2100 --popover-background-color: #fff;
2101 --popover-item-color: #6d7882;
2102 --popover-item-hover-color: #556068;
2103 --popover-item-danger-hover-color: #b01b1b;
2104 --popover-item-background-color: #fff;
2105 --popover-box-shadow-color: rgba(0, 0, 0, 0.15);
2106 --popover-box-shadow-size: 0px 1px 20px;
2107 --popover-arrow-color: #fff;
2108 }
2109
2110 .eps-theme-dark {
2111 --popover-background-color: #4c4f56;
2112 --popover-item-color: #fff;
2113 --popover-item-hover-color: #e0e1e3;
2114 --popover-item-danger-hover-color: #F84343;
2115 --popover-item-background-color: #4c4f56;
2116 --popover-box-shadow-color: rgba(0, 0, 0, 0.15);
2117 --popover-box-shadow-size: 0px 1px 20px;
2118 --popover-arrow-color: #4c4f56;
2119 }
2120
2121 .eps-popover {
2122 padding: 10px 0;
2123 background-color: var(--popover-background-color);
2124 box-shadow: var(--popover-box-shadow-size) var(--popover-box-shadow-color);
2125 list-style: none;
2126 display: flex;
2127 flex-direction: column;
2128 min-width: 120px;
2129 border-radius: 0.1875rem;
2130 position: absolute;
2131 z-index: 1050;
2132 margin-top: 9px;
2133 transform: translateX(-50%);
2134 left: 0.25rem;
2135 }
2136 .eps-popover__background {
2137 position: fixed;
2138 top: 0;
2139 bottom: 0;
2140 left: 0;
2141 right: 0;
2142 z-index: 1030;
2143 }
2144 .eps-popover__container {
2145 position: relative;
2146 }
2147 .eps-popover::before {
2148 content: "";
2149 display: block;
2150 position: absolute;
2151 width: 16px;
2152 height: 9px;
2153 margin: 0 0.1875rem 9px;
2154 top: -9px;
2155 left: 50%;
2156 transform: translateX(-50%);
2157 border-color: transparent;
2158 border-style: solid;
2159 border-width: 0 calc(16px / 2) 9px calc(16px / 2);
2160 border-bottom-color: var(--popover-arrow-color);
2161 }
2162 .eps-popover__item {
2163 padding: 0.3125rem 1rem;
2164 background-color: var(--popover-item-background-color);
2165 color: var(--popover-item-color);
2166 font-size: 0.6875rem;
2167 font-weight: 500;
2168 line-height: 0.8125rem;
2169 width: 100%;
2170 align-items: center;
2171 cursor: pointer;
2172 }
2173 .eps-popover__item:hover {
2174 color: var(--popover-item-hover-color);
2175 }
2176 .eps-popover__item--danger:hover {
2177 color: var(--popover-item-danger-hover-color);
2178 }
2179 .eps-popover__item .eps-icon {
2180 font-size: inherit;
2181 -webkit-margin-end: 0.3125rem;
2182 margin-inline-end: 0.3125rem;
2183 }
2184
2185 .eps-css-grid {
2186 display: grid;
2187 grid-template-columns: repeat(var(--eps-grid-columns, auto-fill), minmax(var(--eps-grid-col-min-width, 1fr), var(--eps-grid-col-max-width, 1fr)));
2188 grid-gap: var(--eps-grid-spacing);
2189 }
2190
2191 .eps-box {
2192 --eps-box-background-color: #fff;
2193 --eps-box-color: #495157;
2194 --eps-box-input-color: #495157;
2195 padding: 0;
2196 border-radius: 0.1875rem;
2197 background-color: var(--eps-box-background-color);
2198 color: var(--eps-box-color);
2199 }
2200 .eps-box--padding {
2201 padding: var(--eps-box-padding);
2202 }
2203 .eps-box > input {
2204 width: 100%;
2205 outline: 0;
2206 border: 0;
2207 background-color: var(--eps-box-background-color);
2208 color: var(--eps-box-input-color);
2209 }
2210
2211 .eps-theme-dark .eps-box {
2212 --eps-box-background-color: #404349;
2213 --eps-box-color: #e0e1e3;
2214 --eps-box-input-color: #e0e1e3;
2215 }
2216
2217 :root {
2218 --checkbox-border-color: #d5dadf;
2219 --checkbox-hover-border-color: #c7cdd4;
2220 --checkbox-active-border-color: #e3e7ea;
2221 --checkbox-background-color: #fff;
2222 --checkbox-checked-background-color: #39b54a;
2223 --checkbox-checked-hover-background-color: #33a242;
2224 --checkbox-checked-active-background-color: #44c455;
2225 --checkbox-checked-disabled-background-color: #c2cbd2;
2226 --checkbox-indicator-color: #fff;
2227 --checkbox-error-background-color: #b01b1b;
2228 }
2229
2230 .eps-theme-dark {
2231 --checkbox-background-color: transparent;
2232 }
2233
2234 .eps-checkbox {
2235 -webkit-appearance: none;
2236 -moz-appearance: none;
2237 appearance: none;
2238 border-radius: 0.1875rem;
2239 width: 15px;
2240 height: 15px;
2241 outline: 0;
2242 background-color: var(--checkbox-background-color);
2243 display: inline-flex;
2244 justify-content: center;
2245 align-items: center;
2246 border: 1px solid var(--checkbox-border-color);
2247 }
2248 .eps-checkbox::after {
2249 display: inline-block;
2250 margin-bottom: calc(0.25 / 2 * 100%);
2251 content: " ";
2252 width: 3px;
2253 height: 6px;
2254 transform: rotate(45deg);
2255 }
2256 .eps-checkbox:hover {
2257 --checkbox-border-color: var(--checkbox-hover-border-color);
2258 }
2259 .eps-checkbox:active {
2260 --checkbox-border-color: var(--checkbox-active-border-color);
2261 }
2262 .eps-checkbox:checked {
2263 --checkbox-background-color: var(--checkbox-checked-background-color);
2264 --checkbox-border-color: var(--checkbox-checked-background-color);
2265 }
2266 .eps-checkbox:checked::after {
2267 border: solid #fff;
2268 border-width: 0 1px 1px 0;
2269 }
2270 .eps-checkbox:checked:hover {
2271 --checkbox-background-color: var(--checkbox-checked-hover-background-color);
2272 --checkbox-border-color: var(--checkbox-checked-hover-background-color);
2273 }
2274 .eps-checkbox:checked:active {
2275 --checkbox-background-color: var(--checkbox-checked-active-background-color);
2276 --checkbox-border-color: var(--checkbox-checked-active-background-color);
2277 }
2278 .eps-checkbox:checked:disabled {
2279 --checkbox-background-color: var(--checkbox-checked-disabled-background-color);
2280 --checkbox-border-color: var(--checkbox-checked-disabled-background-color);
2281 }
2282 .eps-checkbox--rounded {
2283 border-radius: 50%;
2284 }
2285 .eps-checkbox--indeterminate {
2286 --checkbox-background-color: var(--checkbox-checked-background-color);
2287 --checkbox-border-color: var(--checkbox-checked-background-color);
2288 }
2289 .eps-checkbox--indeterminate::after {
2290 display: inline-block;
2291 margin-bottom: 0;
2292 content: " ";
2293 width: 7px;
2294 height: 0;
2295 transform: rotate(0deg);
2296 border-top: 1px solid #fff;
2297 }
2298 .eps-checkbox--error::before, .eps-checkbox--error::after, .eps-checkbox--error:checked::before, .eps-checkbox--error:checked::after {
2299 display: inline-block;
2300 margin-bottom: 0;
2301 content: " ";
2302 width: 7px;
2303 height: 0;
2304 border: solid #fff;
2305 border-width: 1px 0 0 0;
2306 position: absolute;
2307 }
2308 .eps-checkbox--error::before, .eps-checkbox--error:checked::before {
2309 transform: rotate(45deg);
2310 }
2311 .eps-checkbox--error::after, .eps-checkbox--error:checked::after {
2312 transform: rotate(-45deg);
2313 }
2314 .eps-checkbox--error, .eps-checkbox--error:hover, .eps-checkbox--error:checked, .eps-checkbox--error:checked:hover {
2315 --checkbox-background-color: var(--checkbox-error-background-color);
2316 --checkbox-border-color: var(--checkbox-error-background-color);
2317 }
2318
2319 :root {
2320 --e-app-drag-drop-background-color: #fff;
2321 --e-app-drag-drop-outline-color: #d5dadf;
2322 }
2323
2324 .eps-theme-dark {
2325 --e-app-drag-drop-background-color: #404349;
2326 --e-app-drag-drop-outline-color: #7d7e82;
2327 }
2328
2329 .e-app-drag-drop {
2330 background-color: var(--e-app-drag-drop-background-color);
2331 outline: 2px dashed var(--e-app-drag-drop-outline-color);
2332 outline-offset: -0.75rem;
2333 margin-bottom: 1.5rem;
2334 padding: 4.125rem;
2335 text-align: center;
2336 }
2337 .e-app-drag-drop--drag-over {
2338 outline-color: #58d0f5;
2339 }
2340
2341 .eps-dialog {
2342 border-radius: 3px;
2343 width: 375px;
2344 }
2345 .eps-dialog__close-button {
2346 position: absolute;
2347 top: -2.75rem;
2348 right: -2.75rem;
2349 margin-top: 0.625rem;
2350 margin-right: 0.625rem;
2351 z-index: 1040;
2352 font-size: 1.25rem;
2353 color: #fff;
2354 }
2355 .eps-dialog__content {
2356 padding: 1.5rem 1.875rem 1rem;
2357 font-size: 0.75rem;
2358 }
2359 .eps-dialog__title, .eps-dialog__text {
2360 text-align: center;
2361 }
2362 .eps-dialog__buttons {
2363 display: flex;
2364 }
2365 .eps-dialog__button {
2366 flex: 1;
2367 border-top: 1px solid var(--hr-color);
2368 line-height: 2.75rem;
2369 text-align: center;
2370 justify-content: center;
2371 }
2372 .eps-dialog__button:last-child:not(:first-child) {
2373 -webkit-border-start: 1px solid var(--hr-color);
2374 border-inline-start: 1px solid var(--hr-color);
2375 }
2376
2377 .e-app__popover {
2378 display: none;
2379 position: absolute;
2380 box-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
2381 border-radius: 6px;
2382 padding: 20px;
2383 width: -moz-fit-content;
2384 width: fit-content;
2385 z-index: 999;
2386 background-color: #ffffff;
2387 }
2388 .e-app__popover:before {
2389 content: "";
2390 position: absolute;
2391 top: -16px;
2392 right: var(--popover-arrow-offset-end, 22px);
2393 border: 8px solid transparent;
2394 border-bottom-color: #fff;
2395 }
2396
2397 .eps-inline-link {
2398 color: var(--eps-inline-link-color);
2399 background-color: initial;
2400 border: 0;
2401 padding: 0;
2402 }
2403 .eps-inline-link--color-primary {
2404 --eps-inline-link-color: #39b54a;
2405 }
2406 .eps-inline-link--color-secondary {
2407 --eps-inline-link-color: #c2cbd2;
2408 }
2409 .eps-inline-link--color-danger {
2410 --eps-inline-link-color: #b01b1b;
2411 }
2412 .eps-inline-link--color-cta {
2413 --eps-inline-link-color: #93003F;
2414 }
2415 .eps-inline-link--color-link {
2416 --eps-inline-link-color: #58d0f5;
2417 }
2418 .eps-inline-link--color-disabled {
2419 --eps-inline-link-color: #c2cbd2;
2420 }
2421 .eps-inline-link--underline-hover:hover, .eps-inline-link--underline-always, .eps-inline-link--underline-always:hover {
2422 text-decoration: underline;
2423 }
2424 .eps-inline-link--italic {
2425 font-style: italic;
2426 }
2427 .eps-inline-link, .eps-inline-link:focus {
2428 outline: none;
2429 }
2430
2431 .eps-text-field {
2432 --eps-text-field-color: #6d7882;
2433 --eps-text-field-background-color: #fff;
2434 --eps-text-field-placeholder-color: #a4afb7;
2435 --eps-text-field-outlined-border-color: #d5dadf;
2436 --eps-text-field-outlined-focus-border-color: #c2cbd2;
2437 width: 100%;
2438 color: var(--eps-text-field-color);
2439 background-color: var(--eps-text-field-background-color);
2440 border: 0;
2441 outline: none;
2442 font-family: Roboto, Arial, Helvetica, Verdana, sans-serif;
2443 font-size: 0.875rem;
2444 font-weight: 400;
2445 line-height: 1.5;
2446 -webkit-font-smoothing: antialiased;
2447 -moz-osx-font-smoothing: grayscale;
2448 }
2449 .eps-text-field--outlined {
2450 border-radius: 0.1875rem;
2451 border: 1px solid var(--eps-text-field-outlined-border-color);
2452 padding: 0.625rem;
2453 }
2454 .eps-text-field--outlined:focus {
2455 border-color: var(--eps-text-field-outlined-focus-border-color);
2456 }
2457 .eps-text-field::-moz-placeholder {
2458 color: var(--eps-text-field-placeholder-color);
2459 font-family: Roboto, Arial, Helvetica, Verdana, sans-serif;
2460 font-size: 0.875rem;
2461 font-weight: 400;
2462 line-height: 1.5;
2463 -webkit-font-smoothing: antialiased;
2464 -moz-osx-font-smoothing: grayscale;
2465 }
2466 .eps-text-field::placeholder {
2467 color: var(--eps-text-field-placeholder-color);
2468 font-family: Roboto, Arial, Helvetica, Verdana, sans-serif;
2469 font-size: 0.875rem;
2470 font-weight: 400;
2471 line-height: 1.5;
2472 -webkit-font-smoothing: antialiased;
2473 -moz-osx-font-smoothing: grayscale;
2474 }
2475
2476 .eps-theme-dark .eps-text-field {
2477 --eps-text-field-color: #b4b5b7;
2478 --eps-text-field-background-color: #34383c;
2479 --eps-text-field-placeholder-color: #7d7e82;
2480 --eps-text-field-outlined-border-color: #64666a;
2481 --eps-text-field-outlined-focus-border-color: #7d7e82;
2482 }
2483
2484 .e-app-import-export-content-layout {
2485 display: flex;
2486 justify-content: center;
2487 height: 100%;
2488 }
2489 .e-app-import-export-content-layout__container {
2490 flex-basis: 1075px;
2491 }
2492
2493 .e-app-export-complete__kit-content-title {
2494 margin: 2.75rem 0 0.625rem;
2495 }
2496
2497 .e-app-export-kit-content {
2498 --e-app-export-kit-content-title-color: #556068;
2499 --e-app-export-kit-content-description-color: #6d7882;
2500 }
2501 .e-app-export-kit-content__checkbox {
2502 flex-shrink: 0;
2503 -webkit-margin-end: 0.75rem;
2504 margin-inline-end: 0.75rem;
2505 }
2506 .e-app-export-kit-content__title {
2507 color: var(--e-app-export-kit-content-title-color);
2508 }
2509 .e-app-export-kit-content__description {
2510 color: var(--e-app-export-kit-content-description-color);
2511 -webkit-margin-end: 1.25rem;
2512 margin-inline-end: 1.25rem;
2513 }
2514 .e-app-export-kit-content__notice {
2515 margin-top: 1rem;
2516 }
2517 .e-app-export-kit-content__small-notice {
2518 font-style: italic;
2519 color: var(--e-app-export-kit-content-description-color);
2520 }
2521
2522 .eps-theme-dark .e-app-export-kit-content {
2523 --e-app-export-kit-content-title-color: #e0e1e3;
2524 --e-app-export-kit-content-description-color: #b4b5b7;
2525 }
2526
2527 .e-app-import-export-kit-data {
2528 --e-app-import-export-kit-data-site-area-color: #556068;
2529 --e-app-import-export-kit-data-included-color: #a4afb7;
2530 }
2531 .e-app-import-export-kit-data__site-area, .e-app-import-export-kit-data__included {
2532 margin-bottom: 0;
2533 }
2534 .e-app-import-export-kit-data__site-area {
2535 color: var(--e-app-import-export-kit-data-site-area-color);
2536 font-weight: bold;
2537 }
2538 .e-app-import-export-kit-data__included {
2539 color: var(--e-app-import-export-kit-data-included-color);
2540 }
2541
2542 .eps-theme-dark .e-app-import-export-kit-data {
2543 --e-app-import-export-kit-data-site-area-color: #b4b5b7;
2544 --e-app-import-export-kit-data-included-color: #7d7e82;
2545 }
2546
2547 .e-app-import-resolver {
2548 --e-app-import-resolver-panel-header-background-color: #fff;
2549 --e-app-import-resolver-panel-body-background-color: rgba(255, 255, 255, 0.5);
2550 --e-app-import-resolver-conflicts-asset-border-color: #c2cbd2;
2551 --e-app-import-resolver-conflicts-asset-inactive-color: #a4afb7;
2552 padding-bottom: 1.25rem;
2553 }
2554 .e-app-import-resolver__notice {
2555 margin-bottom: 1.25rem;
2556 }
2557 .e-app-import-resolver__panel, .e-app-import-resolver__panel:hover {
2558 background-color: initial;
2559 }
2560 .e-app-import-resolver__panel-header {
2561 background-color: var(--e-app-import-resolver-panel-header-background-color);
2562 }
2563 .e-app-import-resolver__panel-body {
2564 background-color: var(--e-app-import-resolver-panel-body-background-color);
2565 }
2566 .e-app-import-resolver-conflicts__container {
2567 box-shadow: 0 2px 3px 1px var(--color-box-shadow-color);
2568 }
2569 .e-app-import-resolver-conflicts__checkbox {
2570 flex-shrink: 0;
2571 -webkit-margin-end: 0.75rem;
2572 margin-inline-end: 0.75rem;
2573 }
2574 .e-app-import-resolver-conflicts__title {
2575 line-height: 1;
2576 }
2577 .e-app-import-resolver-conflicts__asset:not(:first-child) {
2578 -webkit-border-start: 2px solid var(--e-app-import-resolver-conflicts-asset-border-color);
2579 border-inline-start: 2px solid var(--e-app-import-resolver-conflicts-asset-border-color);
2580 -webkit-padding-start: 1rem;
2581 padding-inline-start: 1rem;
2582 -webkit-margin-start: 1rem;
2583 margin-inline-start: 1rem;
2584 }
2585 .e-app-import-resolver-conflicts__asset:not(.active) {
2586 color: var(--e-app-import-resolver-conflicts-asset-inactive-color);
2587 }
2588 .e-app-import-resolver-conflicts__edit-template {
2589 -webkit-margin-start: 0.3125rem;
2590 margin-inline-start: 0.3125rem;
2591 }
2592
2593 .eps-theme-dark .e-app-import-resolver {
2594 --e-app-import-resolver-panel-header-background-color: #4c4f56;
2595 --e-app-import-resolver-panel-body-background-color: rgba(0, 0, 0, 0.05);
2596 --e-app-import-resolver-conflicts-asset-border-color: #64666a;
2597 --e-app-import-resolver-conflicts-asset-inactive-color: #7d7e82;
2598 }
2599
2600 .eps-panel {
2601 --eps-panel-header-background-color: #fff;
2602 --eps-panel-body-background-color: rgba(255, 255, 255, 0.5);
2603 }
2604 .eps-panel, .eps-panel:hover {
2605 background-color: initial;
2606 }
2607 .eps-panel__header {
2608 background-color: var(--eps-panel-header-background-color);
2609 border-radius: 0.1875rem;
2610 }
2611 .eps-panel__body {
2612 background-color: var(--eps-panel-body-background-color);
2613 border-radius: 0 0 0.1875rem 0.1875rem;
2614 }
2615
2616 .eps-theme-dark .eps-panel {
2617 --eps-panel-header-background-color: #404349;
2618 --eps-panel-body-background-color: rgba(64, 67, 73, 0.5);
2619 }
2620
2621 .e-app-export-kit {
2622 padding-bottom: 1.25rem;
2623 }
2624 .e-app-export-kit-information {
2625 margin-top: 1.25rem;
2626 }
2627 .e-app-export-kit-information__field-header {
2628 margin-bottom: 0.625rem;
2629 }
2630 .e-app-export-kit-information__label {
2631 margin: 0;
2632 }
2633 .e-app-export-kit-information__info-icon {
2634 -webkit-margin-start: 0.625rem;
2635 margin-inline-start: 0.625rem;
2636 }
2637 .e-app-export-kit-info-modal__icon {
2638 -webkit-padding-start: 0.625rem;
2639 padding-inline-start: 0.625rem;
2640 }
2641 .e-app-export-kit-info-modal__heading {
2642 margin-bottom: 1.25rem;
2643 }
2644
2645 .e-app-import-export-info-modal__section:not(:first-child) {
2646 margin-top: 1.875rem;
2647 }
2648 .e-app-import-export-info-modal__heading {
2649 margin-bottom: 1.25rem;
2650 }
2651
2652 :root {
2653 --eps-badge-background-color: #fff;
2654 }
2655
2656 .eps-theme-dark {
2657 --eps-badge-background-color: #404349;
2658 }
2659
2660 .eps-badge {
2661 display: inline-block;
2662 background: var(--eps-badge-background-color);
2663 padding: 0 0.5rem;
2664 line-height: 1.8;
2665 box-shadow: 0 3px 6px var(--color-box-shadow-color);
2666 border-radius: 4px;
2667 font-size: 0.75rem;
2668 }
2669 .eps-badge--sm {
2670 font-size: 0.625rem;
2671 border-radius: 3px;
2672 padding: 0 0.3125rem;
2673 line-height: 1.5;
2674 }
2675
2676 .eps-collapse__title {
2677 cursor: pointer;
2678 padding: 0.3125rem 0;
2679 display: flex;
2680 align-items: center;
2681 justify-content: space-between;
2682 width: 100%;
2683 background: transparent;
2684 border: none;
2685 color: inherit;
2686 }
2687 .eps-collapse__title:focus {
2688 outline: none;
2689 }
2690 .eps-collapse__icon {
2691 transition: all 150ms;
2692 transform: rotate(0deg);
2693 }
2694 .eps-collapse__content {
2695 margin-top: 0.625rem;
2696 display: none;
2697 }
2698 .eps-collapse[data-open] .eps-collapse__content {
2699 display: block;
2700 }
2701 .eps-collapse[data-open] .eps-collapse__icon {
2702 transform: rotate(90deg);
2703 }
2704
2705 .e-kit-library-bottom-promotion {
2706 --e-kit-library-bottom-promotion-color: tints(600);
2707 }
2708
2709 .eps-theme-dark .e-kit-library-bottom-promotion {
2710 --e-kit-library-bottom-promotion-color: dark-tints(400);
2711 }
2712
2713 .e-kit-library-bottom-promotion {
2714 width: 100%;
2715 text-align: center;
2716 margin-top: 1.875rem;
2717 color: var(--e-kit-library-bottom-promotion-color);
2718 }
2719
2720 .e-kit-library__error-screen {
2721 margin-top: 2.75rem;
2722 }
2723 .e-kit-library__error-screen-title {
2724 margin-top: 2.75rem;
2725 margin-bottom: 0;
2726 }
2727 .e-kit-library__error-screen-description {
2728 margin-top: 1.5rem;
2729 color: #a4afb7;
2730 text-align: center;
2731 max-width: 520px;
2732 }
2733
2734 .e-kit-library__kit-favorite-actions {
2735 padding: 0.3125rem;
2736 transition: 0.3s all;
2737 border-radius: 4px;
2738 }
2739 .e-kit-library__kit-favorite-actions--active {
2740 color: #b01b1b;
2741 }
2742 .e-kit-library__kit-favorite-actions--loading {
2743 opacity: 50%;
2744 cursor: default;
2745 }
2746 .e-kit-library__kit-favorite-actions:hover {
2747 background-color: rgba(176, 27, 27, 0.1);
2748 }
2749
2750 .e-kit-library__filter-indication {
2751 margin-top: 1.5rem;
2752 display: flex;
2753 align-items: center;
2754 }
2755 .e-kit-library__filter-indication-text {
2756 margin-bottom: 0;
2757 display: flex;
2758 align-items: center;
2759 }
2760 .e-kit-library__filter-indication-badge {
2761 margin-left: 0.3125rem;
2762 display: flex;
2763 align-items: center;
2764 }
2765 .e-kit-library__filter-indication-badge-remove {
2766 margin-left: 0.3125rem;
2767 font-size: 0.875rem;
2768 }
2769 .e-kit-library__filter-indication-button {
2770 margin-left: 1.5rem;
2771 }
2772
2773 #eps-app-header-btn-apply,
2774 #eps-app-header-btn-promotion,
2775 #eps-app-header-btn-connect {
2776 margin-left: 0.625rem;
2777 margin-right: 0.625rem;
2778 }
2779
2780 .e-kit-library__apply-button {
2781 display: flex;
2782 align-items: center;
2783 justify-content: center;
2784 gap: 0.3125rem;
2785 }
2786
2787 .e-kit-library__kit-item {
2788 --e-kit-library-kit-item-overlay-promotion-button-background-color: #fcfcfc;
2789 }
2790
2791 .eps-theme-dark .e-kit-library__kit-item {
2792 --e-kit-library-kit-item-overlay-promotion-button-background-color: #404349;
2793 }
2794
2795 .e-kit-library__kit-item-overlay {
2796 height: 100%;
2797 }
2798 .e-kit-library__kit-item-overlay > *:first-child {
2799 flex: 1;
2800 }
2801 .e-kit-library__kit-item-overlay-overview-button {
2802 display: flex;
2803 flex-direction: column;
2804 align-items: center;
2805 justify-content: center;
2806 color: white;
2807 height: 100%;
2808 width: 100%;
2809 }
2810 .e-kit-library__kit-item-overlay-overview-button > i {
2811 font-size: 2rem;
2812 margin-bottom: 5px;
2813 }
2814 .e-kit-library__kit-item-overlay-overview-button > span {
2815 font-size: 0.9rem;
2816 }
2817 .e-kit-library__kit-item-overlay-promotion-button {
2818 display: flex;
2819 width: 100%;
2820 background: white;
2821 align-items: center;
2822 justify-content: center;
2823 padding: 10px;
2824 font-size: 13px;
2825 color: #93003F;
2826 background: var(--e-kit-library-kit-item-overlay-promotion-button-background-color);
2827 }
2828 .e-kit-library__kit-item-overlay-promotion-button > * {
2829 margin: 0 3px;
2830 }
2831 .e-kit-library__kit-item-subscription-plan-badge {
2832 position: absolute;
2833 top: 0;
2834 right: 0;
2835 margin: 0.3125rem;
2836 color: #fff;
2837 text-transform: uppercase;
2838 }
2839
2840 :root {
2841 --e-kit-library-header-back-border: 1px solid #f1f3f5;
2842 --e-kit-library-header-back-color: #a4afb7;
2843 }
2844
2845 .eps-theme-dark {
2846 --e-kit-library-header-back-border: 1px solid #64666a;
2847 --e-kit-library-header-back-color: #b4b5b7;
2848 }
2849
2850 .e-kit-library__header-back {
2851 color: var(--e-kit-library-header-back-color);
2852 padding-right: 1.25rem;
2853 padding-left: 0.3125rem;
2854 display: inline-flex;
2855 justify-content: center;
2856 align-items: center;
2857 height: 100%;
2858 border-right: var(--e-kit-library-header-back-border);
2859 }
2860 .e-kit-library__header-back-container {
2861 flex: 1;
2862 height: 100%;
2863 }
2864 .e-kit-library__header-back .eps-icon {
2865 transform: rotate(0deg);
2866 }
2867
2868 .e-kit-library__page-loader {
2869 width: 100%;
2870 height: 100%;
2871 display: grid;
2872 place-items: center;
2873 font-size: 1.85rem;
2874 color: #a4afb7;
2875 }
2876
2877 .eps-search-input {
2878 --eps-search-input-background-color: #fcfcfc;
2879 --eps-search-input-background-color-focus: #fff;
2880 --eps-search-input-color: #556068;
2881 --eps-search-input-placeholder-color: #a4afb7;
2882 }
2883
2884 .eps-theme-dark .eps-search-input {
2885 --eps-search-input-background-color: #404349;
2886 --eps-search-input-background-color-focus: #4c4f56;
2887 --eps-search-input-color: #b4b5b7;
2888 --eps-search-input-placeholder-color: #b4b5b7;
2889 }
2890
2891 .eps-search-input {
2892 width: 100%;
2893 font-size: 0.9375rem;
2894 padding: 0.625rem 2.75rem;
2895 border: none;
2896 background: var(--eps-search-input-background-color);
2897 outline: none;
2898 color: var(--eps-search-input-color);
2899 line-height: 1;
2900 height: 2.75rem;
2901 }
2902 .eps-search-input--sm {
2903 font-size: 0.8125rem;
2904 padding: 0.5rem 1.875rem;
2905 }
2906 .eps-search-input:focus {
2907 background: var(--eps-search-input-background-color-focus);
2908 }
2909 .eps-search-input::-moz-placeholder {
2910 color: var(--eps-search-input-placeholder-color);
2911 font-style: italic;
2912 }
2913 .eps-search-input::placeholder {
2914 color: var(--eps-search-input-placeholder-color);
2915 font-style: italic;
2916 }
2917 .eps-search-input__container {
2918 position: relative;
2919 }
2920 .eps-search-input__icon {
2921 font-size: 1.25rem;
2922 padding: 0.625rem;
2923 color: #a4afb7;
2924 position: absolute;
2925 top: 0;
2926 inset-inline-start: 0;
2927 height: 100%;
2928 display: flex;
2929 align-items: center;
2930 justify-content: center;
2931 }
2932 .eps-search-input__icon--sm {
2933 font-size: 0.75rem;
2934 }
2935 .eps-search-input__clear-icon {
2936 font-size: 0.875rem;
2937 padding: 0.625rem;
2938 color: #a4afb7;
2939 position: absolute;
2940 top: 0;
2941 right: 0;
2942 height: 100%;
2943 display: flex;
2944 align-items: center;
2945 justify-content: center;
2946 }
2947 .eps-search-input__clear-icon--sm {
2948 font-size: 0.6875rem;
2949 }
2950
2951 :root {
2952 --eps-sort-select-select-background-color: #fcfcfc;
2953 --eps-sort-select-select-color: #556068;
2954 --eps-sort-select-button-background-color: #fcfcfc;
2955 --eps-sort-select-button-border: 1px solid #f1f3f5;
2956 }
2957
2958 .eps-theme-dark {
2959 --eps-sort-select-select-background-color: #404349;
2960 --eps-sort-select-select-color: #b4b5b7;
2961 --eps-sort-select-button-background-color: #404349;
2962 --eps-sort-select-button-border: 1px solid #26292C;
2963 }
2964
2965 .eps-sort-select {
2966 width: 100%;
2967 font-size: 0.9375rem;
2968 display: flex;
2969 }
2970 .eps-sort-select__select-wrapper {
2971 flex: 1;
2972 position: relative;
2973 }
2974 .eps-sort-select__select-wrapper::after {
2975 content: "\e8ad";
2976 font-family: eicons;
2977 position: absolute;
2978 right: 0.625rem;
2979 top: 0;
2980 bottom: 0;
2981 color: #a4afb7;
2982 display: flex;
2983 align-items: center;
2984 justify-content: center;
2985 pointer-events: none;
2986 }
2987 .eps-sort-select__select {
2988 width: 100%;
2989 padding: 0.625rem 0.625rem;
2990 border: none;
2991 background: var(--eps-sort-select-select-background-color);
2992 outline: none;
2993 color: var(--eps-sort-select-select-color);
2994 line-height: 1;
2995 cursor: pointer;
2996 height: 2.75rem;
2997 -moz-appearance: none;
2998 appearance: none;
2999 -webkit-appearance: none;
3000 border-radius: 0;
3001 }
3002 .eps-sort-select__button {
3003 padding: 0.75rem 0.75rem;
3004 background: var(--eps-sort-select-button-background-color);
3005 border-left: var(--eps-sort-select-button-border);
3006 line-height: 1;
3007 color: #a4afb7;
3008 }
3009
3010 .e-kit-library__tags-filter {
3011 --e-kit-library-tags-filter-list-search-background-color: #fff;
3012 }
3013
3014 .eps-theme-dark .e-kit-library__tags-filter {
3015 --e-kit-library-tags-filter-list-search-background-color: #404349;
3016 }
3017
3018 .e-kit-library__tags-filter {
3019 margin-top: 2.75rem;
3020 }
3021 .e-kit-library__tags-filter-list {
3022 margin-bottom: 2.75rem;
3023 }
3024 .e-kit-library__tags-filter-list .eps-collapse__title {
3025 padding-right: 1.875rem;
3026 padding-left: 1.875rem;
3027 text-transform: uppercase;
3028 }
3029 .e-kit-library__tags-filter-list .eps-collapse__content {
3030 margin: 0.3125rem 1.875rem;
3031 }
3032 .e-kit-library__tags-filter-list-container {
3033 max-height: 250px;
3034 overflow: auto;
3035 }
3036 .e-kit-library__tags-filter-list-search {
3037 margin-bottom: 0.625rem;
3038 }
3039 .e-kit-library__tags-filter-list-search .eps-search-input {
3040 background: var(--e-kit-library-tags-filter-list-search-background-color);
3041 }
3042 .e-kit-library__tags-filter-list-item {
3043 padding: 0.625rem 0;
3044 display: flex;
3045 align-items: center;
3046 font-weight: 500;
3047 }
3048 .e-kit-library__tags-filter-list-item input {
3049 margin-right: 0.3125rem;
3050 }
3051
3052 .e-kit-library #eps-app-header-btn-refetch {
3053 padding: 0;
3054 }
3055
3056 .e-kit-library-header-info-modal-container {
3057 margin-bottom: 2.75rem;
3058 }
3059
3060 .e-kit-library__tooltip {
3061 padding: 5px 12px;
3062 color: #ffffff;
3063 background-color: #26292C;
3064 font-size: 10px;
3065 }
3066 .e-kit-library__tooltip:before {
3067 border-bottom-color: #26292C;
3068 }
3069
3070 .e-kit-library__index-layout-container {
3071 flex-grow: 1;
3072 overflow-y: auto;
3073 display: flex;
3074 flex-direction: column;
3075 }
3076 .e-kit-library__index-layout-top-area {
3077 padding: 1.875rem 2.75rem;
3078 position: sticky;
3079 top: -1px;
3080 width: 100%;
3081 z-index: 2;
3082 background-color: var(--app-background-color);
3083 gap: 1.5rem;
3084 }
3085 .e-kit-library__index-layout-top-area-search, .e-kit-library__index-layout-top-area-sort {
3086 min-width: 265px;
3087 }
3088 .e-kit-library__index-layout-top-area-search {
3089 flex: 1;
3090 }
3091 .e-kit-library__index-layout-main {
3092 padding-top: 0;
3093 padding-bottom: 1.5rem;
3094 overflow-y: hidden;
3095 height: auto;
3096 flex: 1 0 auto;
3097 display: flex;
3098 flex-direction: column;
3099 justify-content: space-between;
3100 }
3101
3102 .e-kit-library__tags-filter {
3103 --e-kit-library-item-sidebar-header-title-color: #6d7882;
3104 --e-kit-library-item-sidebar-description-color: #6d7882;
3105 --e-kit-library-item-information-text-color: #6d7882;
3106 }
3107
3108 .eps-theme-dark .e-kit-library__tags-filter {
3109 --e-kit-library-item-sidebar-header-title-color: #b4b5b7;
3110 --e-kit-library-item-sidebar-description-color: #b4b5b7;
3111 --e-kit-library-item-information-text-color: #b4b5b7;
3112 }
3113
3114 .e-kit-library__item-sidebar {
3115 padding: 1.5rem 1.875rem;
3116 }
3117 .e-kit-library__item-sidebar-header {
3118 display: flex;
3119 align-items: center;
3120 justify-content: space-between;
3121 }
3122 .e-kit-library__item-sidebar-header-title {
3123 color: var(--e-kit-library-item-sidebar-header-title-color);
3124 margin-bottom: 0;
3125 }
3126 .e-kit-library__item-sidebar-thumbnail {
3127 margin-top: 1.5rem;
3128 box-shadow: 0 4px 10px var(--color-box-shadow-color);
3129 }
3130 .e-kit-library__item-sidebar-description {
3131 margin-top: 1.5rem;
3132 color: var(--e-kit-library-item-sidebar-description-color);
3133 }
3134 .e-kit-library__item-sidebar-collapse-tags {
3135 margin-top: 2.75rem;
3136 }
3137 .e-kit-library__item-sidebar-collapse-info {
3138 margin-top: 1.875rem;
3139 }
3140 .e-kit-library__item-sidebar-tags-container {
3141 gap: 0.625rem;
3142 }
3143 .e-kit-library__item-information-text {
3144 font-size: 0.8125rem;
3145 color: var(--e-kit-library-item-information-text-color);
3146 margin-bottom: 0.3125rem;
3147 }
3148
3149 .e-kit-library {
3150 --e-kit-library-content-overview-group-title-color: #6d7882;
3151 }
3152
3153 .eps-theme-dark .e-kit-library {
3154 --e-kit-library-content-overview-group-title-color: #b4b5b7;
3155 }
3156
3157 .e-kit-library__content-overview-group-item {
3158 margin-bottom: 2.75rem;
3159 }
3160 .e-kit-library__content-overview-group-title {
3161 margin-bottom: 1.875rem;
3162 color: var(--e-kit-library-content-overview-group-title-color);
3163 }
3164
3165 .e-kit-library__preview-responsive-controls {
3166 width: auto;
3167 }
3168 .e-kit-library__preview-responsive-controls-item {
3169 margin: 0 0.3125rem;
3170 color: #a4afb7;
3171 padding: 0.3125rem;
3172 }
3173 .e-kit-library__preview-responsive-controls-item:hover {
3174 background: rgba(88, 208, 245, 0.1);
3175 border-radius: 3px;
3176 transition: all 0.3s;
3177 }
3178 .e-kit-library__preview-responsive-controls-item--active {
3179 color: #58d0f5;
3180 }
3181
3182 .e-kit-library__preview-loader {
3183 position: absolute;
3184 top: 0;
3185 left: 0;
3186 z-index: 0;
3187 }
3188 .e-kit-library__preview-iframe {
3189 border: none;
3190 transition: all 0.3s;
3191 box-shadow: 0 4px 10px var(--color-box-shadow-color);
3192 }
3193 .e-kit-library__preview-iframe-container {
3194 overflow-y: auto;
3195 position: relative;
3196 z-index: 1;
3197 }
3198
3199 .e-app-collapse {
3200 --e-app-collapse-icon-color: #6d7882;
3201 }
3202 .e-app-collapse-toggle {
3203 position: relative;
3204 }
3205 .e-app-collapse-toggle--active {
3206 cursor: pointer;
3207 }
3208 .e-app-collapse-toggle__icon {
3209 color: var(--e-app-collapse-icon-color);
3210 display: flex;
3211 align-items: center;
3212 justify-content: center;
3213 font-size: 0.875rem;
3214 position: absolute;
3215 top: 50%;
3216 right: var(--e-app-collapse-toggle-icon-spacing);
3217 transform: translateY(-50%);
3218 }
3219 .e-app-collapse-toggle__icon:before {
3220 transition: all 0.2s linear;
3221 }
3222 .e-app-collapse-content {
3223 display: none;
3224 }
3225 .e-app-collapse--opened .e-app-collapse-toggle__icon:before {
3226 transform: rotate(-180deg);
3227 }
3228 .e-app-collapse--opened .e-app-collapse-content {
3229 display: block;
3230 }
3231
3232 [dir=rtl] .e-app-collapse-toggle__icon {
3233 right: initial;
3234 left: var(--e-app-collapse-toggle-icon-spacing);
3235 }
3236
3237 .eps-theme-dark .e-app-collapse {
3238 --e-app-collapse-icon-color: #b4b5b7;
3239 }
3240
3241 .e-app-import-plugins {
3242 --e-app-import-plugins-selection-section-heading-color: #6d7882;
3243 padding-bottom: 1.5rem;
3244 }
3245 .e-app-import-plugins__section {
3246 margin-top: 1.875rem;
3247 }
3248 .e-app-import-plugins__section-heading {
3249 color: var(--e-app-import-plugins-selection-section-heading-color);
3250 margin-bottom: 1rem;
3251 }
3252 .e-app-import-plugins__versions-notice {
3253 margin-bottom: 0.75rem;
3254 }
3255
3256 .eps-theme-dark .e-app-import-plugins {
3257 --e-app-import-plugins-selection-section-heading-color: #b4b5b7;
3258 }
3259
3260 .eps-table {
3261 --eps-table-body-color: #556068;
3262 --eps-table-body-background-color: #fff;
3263 border-spacing: 0 2px;
3264 table-layout: fixed;
3265 width: 100%;
3266 }
3267 .eps-table__checkboxes-column {
3268 width: 1.875rem;
3269 }
3270 .eps-table__checkbox {
3271 display: flex;
3272 flex-shrink: 0;
3273 }
3274 .eps-table__cell {
3275 padding: 1rem;
3276 }
3277 .eps-table__head .eps-table__cell {
3278 text-align: start;
3279 }
3280 .eps-table__body .eps-table__row {
3281 background-color: var(--eps-table-body-background-color);
3282 }
3283 .eps-table__body .eps-table__cell:first-child {
3284 border-radius: 0.1875rem 0 0 0.1875rem;
3285 }
3286 .eps-table__body .eps-table__cell:last-child {
3287 border-radius: 0 0.1875rem 0.1875rem 0;
3288 }
3289 .eps-table--selection .eps-table__cell:first-child {
3290 -webkit-padding-end: 0;
3291 padding-inline-end: 0;
3292 }
3293
3294 .eps-theme-dark .eps-table {
3295 --eps-table-body-color: #b4b5b7;
3296 --eps-table-body-background-color: #404349;
3297 }
3298
3299 [dir=rtl] .eps-table__body [dir=rtl] .eps-table__cell:first-child {
3300 border-radius: 0 0.1875rem 0.1875rem 0;
3301 }
3302 [dir=rtl] .eps-table__body [dir=rtl] .eps-table__cell:last-child {
3303 border-radius: 0.1875rem 0 0 0.1875rem;
3304 }
3305
3306 .e-app-import-plugins-pro-banner {
3307 --e-app-import-plugins-pro-banner-heading-color: #556068;
3308 --e-app-import-plugins-pro-banner-description-color: #6d7882;
3309 margin-bottom: 1.875rem;
3310 }
3311 .e-app-import-plugins-pro-banner__heading {
3312 color: var(--e-app-import-plugins-pro-banner-heading-color);
3313 margin-bottom: 0.625rem;
3314 }
3315 .e-app-import-plugins-pro-banner__description {
3316 color: var(--e-app-import-plugins-pro-banner-description-color);
3317 margin-bottom: 0;
3318 }
3319
3320 .eps-theme-dark .e-app-import-plugins-pro-banner {
3321 --e-app-import-plugins-pro-banner-heading-color: #7d7e82;
3322 --e-app-import-plugins-pro-banner-description-color: #b4b5b7;
3323 }
3324
3325 .e-app-export-plugins {
3326 padding-bottom: 1.25rem;
3327 }
3328
3329 .e-app-import-content {
3330 padding-bottom: 1.25rem;
3331 }
3332 .e-app-import-content__plugins-notice {
3333 margin-bottom: 1.25rem;
3334 }
3335
3336 .e-app-import-plugins-activation__installing-plugins {
3337 padding: 0.625rem 0;
3338 }
3339 .e-app-import-plugins-activation__plugin-name {
3340 -webkit-margin-start: 0.5rem;
3341 margin-inline-start: 0.5rem;
3342 }
3343 .e-app-import-plugins-activation__plugin-status-item {
3344 margin-bottom: 0.75rem;
3345 }
3346
3347 .e-app-import-export-plugins-table__cell-content {
3348 margin-bottom: 0;
3349 text-transform: capitalize;
3350 }
3351
3352 .e-app-import-export-loader {
3353 --e-app-import-export-loader-color: #c2cbd2;
3354 color: var(--e-app-import-export-loader-color);
3355 font-size: 50px;
3356 }
3357 .e-app-import-export-loader.eicon-loading {
3358 font-size: 1.85rem;
3359 }
3360 .e-app-import-export-loader--absolute-center {
3361 position: absolute;
3362 top: 50%;
3363 left: 50%;
3364 transform: translateX(-50%) translateY(-50%);
3365 }
3366
3367 .eps-theme-dark .e-app-import-export-loader {
3368 --e-app-import-export-loader-color: #64666a;
3369 }
3370
3371 .e-app-import-export-message-banner {
3372 --e-app-import-export-message-banner-heading-color: #556068;
3373 --e-app-import-export-message-banner-description-color: #6d7882;
3374 margin-bottom: 1.875rem;
3375 }
3376 .e-app-import-export-message-banner__heading {
3377 color: var(--e-app-import-export-message-banner-heading-color);
3378 margin-bottom: 0.625rem;
3379 }
3380 .e-app-import-export-message-banner__description {
3381 color: var(--e-app-import-export-message-banner-description-color);
3382 margin-bottom: 0;
3383 }
3384
3385 .eps-theme-dark .e-app-import-export-message-banner {
3386 --e-app-import-export-message-banner-heading-color: #7d7e82;
3387 --e-app-import-export-message-banner-description-color: #b4b5b7;
3388 }
3389
3390 .e-app-import-connect-pro-notice {
3391 margin-bottom: 1.25rem;
3392 }
3393
3394 .e-app-import-failed-plugins-notice {
3395 margin-bottom: 1.25rem;
3396 }
3397
3398 .e-onboarding {
3399 font-family: "DM Sans", "Roboto", sans-serif;
3400 }
3401 .e-onboarding .eps-app__main {
3402 justify-content: center;
3403 overflow-y: auto;
3404 }
3405 .e-onboarding__content {
3406 max-width: 1135px;
3407 padding: initial;
3408 margin: 2.75rem;
3409 overflow-y: initial;
3410 }
3411 .e-onboarding__checkbox-label {
3412 display: flex;
3413 line-height: 18px;
3414 margin-bottom: 27px;
3415 }
3416 .e-onboarding__checkbox-input {
3417 -webkit-margin-end: 14px;
3418 margin-inline-end: 14px;
3419 width: 16px;
3420 height: 16px;
3421 border-color: #69727D;
3422 border-radius: 2px;
3423 }
3424 .e-onboarding__checkbox-input:checked {
3425 background-color: #525861;
3426 }
3427 .e-onboarding__checkbox-input:checked::after {
3428 margin-bottom: 15%;
3429 width: 6px;
3430 height: 9px;
3431 border-width: 0 2px 2px 0;
3432 }
3433 .e-onboarding__feature-list {
3434 margin-bottom: 40px;
3435 }
3436 .e-onboarding__text-input {
3437 font-size: 14px;
3438 width: 325px;
3439 padding: 12px 16px;
3440 color: #69727D;
3441 border: 1px solid #9EA5AD;
3442 }
3443 .e-onboarding__text-input:focus-visible {
3444 outline: initial;
3445 border: 1px solid #3A3F45;
3446 }
3447 .e-onboarding__text-input::-moz-placeholder {
3448 color: #C2C7CC;
3449 }
3450 .e-onboarding__text-input::placeholder {
3451 color: #C2C7CC;
3452 }
3453 .e-onboarding__footnote {
3454 margin-top: 24px;
3455 width: 325px;
3456 text-align: center;
3457 }
3458 .e-onboarding__footnote a {
3459 text-decoration: underline;
3460 color: #3A3F45;
3461 }
3462
3463 #e-app ~ #__wp-uploader-id-2 .media-modal {
3464 max-width: 1024px;
3465 max-height: 768px;
3466 margin: auto;
3467 }
3468
3469 .e-onboarding__page-content {
3470 margin-bottom: 70px;
3471 }
3472 .e-onboarding__page-content-start {
3473 max-width: 675px;
3474 text-align: start;
3475 flex-basis: 555px;
3476 align-self: start;
3477 }
3478 .e-onboarding__page-content-end {
3479 min-width: 440px;
3480 max-width: 540px;
3481 }
3482 .e-onboarding__page-content-end img {
3483 width: 100%;
3484 }
3485 .e-onboarding__page-content-section-title {
3486 font-family: "DM Serif Display", serif;
3487 font-size: 36px;
3488 font-weight: 700;
3489 color: #0C0D0E;
3490 }
3491 .e-onboarding__page-content-section-text {
3492 font-size: 18px;
3493 color: #3A3F45;
3494 }
3495
3496 .e-onboarding__header-logo .eps-app__logo {
3497 background-color: #0C0D0E;
3498 color: #ffffff;
3499 width: 1.3rem;
3500 height: 1.3rem;
3501 line-height: 1.3rem;
3502 font-size: 0.48rem;
3503 }
3504 .e-onboarding__header-logo .eps-app__logo:not(:last-child) {
3505 -webkit-margin-end: 7px;
3506 margin-inline-end: 7px;
3507 }
3508 .e-onboarding__header-logo img {
3509 width: 104px;
3510 }
3511 .e-onboarding__header .eps-app__header-btn {
3512 display: flex;
3513 align-items: center;
3514 font-size: 13px;
3515 }
3516 .e-onboarding__header .eps-app__header-btn .eps-icon:not(:last-child) {
3517 -webkit-margin-end: 7px;
3518 margin-inline-end: 7px;
3519 }
3520 .e-onboarding__header .eps-button {
3521 color: #0C0D0E;
3522 }
3523 .e-onboarding__header .eps-button__go-pro-btn {
3524 background-color: #871A40;
3525 color: #ffffff;
3526 padding: 4px 8px;
3527 border-radius: 4px;
3528 font-weight: 700;
3529 font-size: 12px;
3530 transition: 0.5s;
3531 }
3532 .e-onboarding__header .eps-button__go-pro-btn:hover {
3533 background: #b22254;
3534 }
3535
3536 .e-onboarding__go-pro {
3537 width: 288px;
3538 font-size: 12px;
3539 }
3540 .e-onboarding__go-pro-title {
3541 font-size: 18px;
3542 font-weight: 700;
3543 color: #871A40;
3544 }
3545 .e-onboarding__go-pro-cta {
3546 display: inline-block;
3547 color: #871A40;
3548 padding: 9px;
3549 border: 1px solid #871A40;
3550 }
3551 .e-onboarding__go-pro-cta.e-onboarding__button {
3552 font-size: 14px;
3553 }
3554 .e-onboarding__go-pro-paragraph:not(:last-child) {
3555 margin-bottom: 20px;
3556 }
3557 .e-onboarding__go-pro-already-have {
3558 text-decoration: underline;
3559 }
3560
3561 .e-onboarding__progress-bar {
3562 display: flex;
3563 justify-content: center;
3564 margin-bottom: 125px;
3565 }
3566 .e-onboarding__progress-bar-item {
3567 display: flex;
3568 align-items: center;
3569 color: #69727D;
3570 font-size: 0.75rem;
3571 }
3572 .e-onboarding__progress-bar-item-icon {
3573 display: inline-block;
3574 font-family: "DM Serif Display", serif;
3575 text-align: center;
3576 width: 1.1rem;
3577 height: 1.1rem;
3578 line-height: 1rem;
3579 font-size: 0.75rem;
3580 font-weight: bold;
3581 border-radius: 50%;
3582 border: 1px solid #69727D;
3583 -webkit-margin-end: 8px;
3584 margin-inline-end: 8px;
3585 flex-shrink: 0;
3586 }
3587 .e-onboarding__progress-bar-item:not(:last-child) {
3588 -webkit-margin-end: 22px;
3589 margin-inline-end: 22px;
3590 }
3591 .e-onboarding__progress-bar-item:not(:last-child):after {
3592 font-family: "eicons";
3593 -webkit-margin-start: 22px;
3594 margin-inline-start: 22px;
3595 content: "\e89e";
3596 }
3597 .e-onboarding__progress-bar-item--active {
3598 color: #040080;
3599 }
3600 .e-onboarding__progress-bar-item--active .e-onboarding__progress-bar-item-icon, .e-onboarding__progress-bar-item--completed .e-onboarding__progress-bar-item-icon {
3601 color: #ffffff;
3602 border-color: #040080;
3603 background-color: #040080;
3604 }
3605 .e-onboarding__progress-bar-item--skipped, .e-onboarding__progress-bar-item--completed {
3606 cursor: pointer;
3607 }
3608 .e-onboarding__progress-bar-item--skipped .e-onboarding__progress-bar-item-icon {
3609 color: #ffffff;
3610 background-color: #69727D;
3611 }
3612
3613 .e-onboarding__button {
3614 font-size: 18px;
3615 cursor: pointer;
3616 }
3617 .e-onboarding__button-action {
3618 color: #46F2B6;
3619 background-color: #040080;
3620 width: 325px;
3621 padding: 15px 15px;
3622 text-align: center;
3623 }
3624 .e-onboarding__button-skip {
3625 color: #6A727C;
3626 padding: 15px 29px;
3627 }
3628 .e-onboarding__button--disabled {
3629 pointer-events: none;
3630 background-color: #D5D8DC;
3631 color: #9EA5AD;
3632 }
3633 .e-onboarding__button--disabled:hover {
3634 cursor: progress;
3635 }
3636 .e-onboarding__button--processing {
3637 pointer-events: none;
3638 filter: brightness(90%);
3639 }
3640
3641 .e-onboarding__card {
3642 border: 1px solid #3A3F45;
3643 border-radius: 8px;
3644 padding: 40px 40px;
3645 background-color: #ffffff;
3646 cursor: pointer;
3647 flex-grow: 1;
3648 display: flex;
3649 flex-direction: column;
3650 align-items: center;
3651 }
3652 .e-onboarding__card-image, .e-onboarding__card-text {
3653 width: 345px;
3654 }
3655 .e-onboarding__card-image {
3656 margin-bottom: 44px;
3657 }
3658 .e-onboarding__card-text {
3659 font-size: 20px;
3660 font-weight: 700;
3661 text-align: center;
3662 color: #0C0D0E;
3663 }
3664 .e-onboarding__card:hover {
3665 box-shadow: 4px 4px 0 0 #000000;
3666 }
3667 .e-onboarding__card:active {
3668 box-shadow: initial;
3669 }
3670
3671 .e-onboarding__checklist {
3672 -webkit-padding-start: 0;
3673 padding-inline-start: 0;
3674 }
3675 .e-onboarding__checklist-item {
3676 display: flex;
3677 align-items: center;
3678 font-size: 12px;
3679 margin-bottom: 12px;
3680 }
3681 .e-onboarding__checklist-item .eicon-check-circle {
3682 -webkit-margin-end: 9px;
3683 margin-inline-end: 9px;
3684 font-size: 16px;
3685 font-weight: 600;
3686 }
3687
3688 .e-onboarding__notice {
3689 display: inline-block;
3690 padding: 12px 14px;
3691 margin-bottom: 16px;
3692 color: #3A3F45;
3693 }
3694 .e-onboarding__notice--error {
3695 background-color: #FDE8EC;
3696 }
3697 .e-onboarding__notice--error i {
3698 font-size: 16px;
3699 color: #B92136;
3700 }
3701 .e-onboarding__notice--success {
3702 background-color: #ECF9F2;
3703 }
3704 .e-onboarding__notice--success i {
3705 color: #117740;
3706 }
3707 .e-onboarding__notice i {
3708 -webkit-margin-end: 14px;
3709 margin-inline-end: 14px;
3710 }
3711 .e-onboarding__notice-empty-spacer {
3712 height: 61px;
3713 }
3714
3715 .e-onboarding__page-account .e-onboarding__checkbox-label {
3716 margin-top: 50px;
3717 }
3718
3719 .e-onboarding__action-button-text {
3720 -webkit-margin-start: 10px;
3721 margin-inline-start: 10px;
3722 }
3723
3724 .e-onboarding__site-name-input {
3725 margin-top: 80px;
3726 }
3727
3728 .e-onboarding__page-siteLogo .e-app-upload-file__button {
3729 color: #040080;
3730 border-color: #040080;
3731 }
3732 .e-onboarding__drop-zone {
3733 margin-top: 3rem;
3734 }
3735 .e-onboarding .eps-display-3 {
3736 font-size: 16px;
3737 margin-bottom: 0.5rem;
3738 }
3739 .e-onboarding .e-app-upload-file__button {
3740 max-width: 198px;
3741 margin: 0 auto;
3742 }
3743 .e-onboarding .e-app-drop-zone__secondary-text {
3744 font-size: 14px;
3745 }
3746 .e-onboarding__logo-container {
3747 position: relative;
3748 margin-top: 3rem;
3749 height: 220px;
3750 width: -moz-fit-content;
3751 width: fit-content;
3752 display: flex;
3753 align-items: center;
3754 min-width: 220px;
3755 }
3756 .e-onboarding__logo-container img {
3757 height: auto;
3758 max-height: 100%;
3759 width: auto;
3760 }
3761 .e-onboarding__logo-remove {
3762 position: absolute;
3763 right: 8px;
3764 top: 5px;
3765 }
3766 .e-onboarding__logo-remove i {
3767 font-size: 16px;
3768 width: 15px;
3769 }
3770 .e-onboarding__logo-remove:hover {
3771 cursor: pointer;
3772 }
3773 .e-onboarding__is-uploading {
3774 visibility: hidden;
3775 }
3776
3777 .e-onboarding__page-goodToGo .e-onboarding__page-content-section-title,
3778 .e-onboarding__page-goodToGo .e-onboarding__page-content-section-text {
3779 text-align: center;
3780 }
3781 .e-onboarding__cards-grid.e-onboarding__page-content {
3782 margin-top: 48px;
3783 margin-bottom: 48px;
3784 }
3785 .e-onboarding__cards-grid .e-onboarding__card {
3786 max-width: 555px;
3787 }
3788 .e-onboarding__cards-grid .e-onboarding__card:not(:last-child) {
3789 -webkit-margin-end: 20px;
3790 margin-inline-end: 20px;
3791 }
3792 .e-onboarding__good-to-go-footer {
3793 justify-content: end;
3794 }
3795
3796 .e-onboarding__upload-pro {
3797 flex-direction: row;
3798 justify-content: center;
3799 font-family: "DM Sans", "Roboto", sans-serif;
3800 text-align: center;
3801 }
3802 .e-onboarding__upload-pro .eps-app__content {
3803 overflow-y: hidden;
3804 max-width: 1113px;
3805 padding: 30px;
3806 }
3807 .e-onboarding__upload-pro-drop-zone {
3808 margin-bottom: 24px;
3809 }
3810 .e-onboarding__upload-pro-drop-zone h1 {
3811 font-family: "Source Serif Pro", "Roboto", sans-serif;
3812 }
3813 .e-onboarding__upload-pro-drop-zone .e-app-drag-drop {
3814 padding: 48px;
3815 }
3816 .e-onboarding__upload-pro-drop-zone .eps-display-3,
3817 .e-onboarding__upload-pro-drop-zone .e-app-drop-zone__text,
3818 .e-onboarding__upload-pro-drop-zone .e-app-drop-zone__secondary-text {
3819 margin-bottom: 12px;
3820 }
3821 .e-onboarding__upload-pro-drop-zone .e-app-upload-file__button {
3822 background-color: #040080;
3823 color: #46F2B6;
3824 padding: 14px 40px;
3825 border-color: #040080;
3826 }
3827 .e-onboarding__upload-pro-get-file {
3828 font-size: 12px;
3829 margin-top: 24px;
3830 }
3831 .e-onboarding__upload-pro-get-file a {
3832 text-decoration: underline;
3833 }
3834 .e-onboarding__upload-pro .e-onboarding__notice {
3835 margin-bottom: 0;
3836 }
3837 /*# sourceMappingURL=app.css.map */