PluginProbe
Elementor Website Builder – more than just a page builder / 3.19.2
Elementor Website Builder – more than just a page builder v3.19.2
4.3.1 4.3.0 4.3.0-beta3 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 All 454 releases
← All changes | assets/css/editor.css +548 -2578 4.3.03.19.2 View file →
@@ -1,4 +1,5 @@
1 +/*! elementor - v3.19.0 - 07-02-2024 */
1 2 .elementor-control-unit-1 {
2 3 width: 27px;
3 4 }
4 5
@@ -60,10 +61,10 @@
60 61 }
61 62 body:after {
62 63 content: "";
63 64 position: absolute;
64 - inset-block-start: 0;
65 - inset-inline-end: 0;
65 + top: 0;
66 + right: 0;
66 67 height: 100%;
67 68 width: 0;
68 69 background-color: var(--e-a-bg-default);
69 70 transition: width 0.5s;
@@ -73,16 +74,16 @@
73 74 }
74 75 body a:hover {
75 76 color: var(--e-a-color-primary-bold);
76 77 }
77 -body.elementor-editor-active #elementor-mode-switcher-preview i {
78 - scale: calc(1 * var(--direction-multiplier)) 1;
78 +body.elementor-editor-active #elementor-mode-switcher-preview .eicon:before {
79 + content: "\e89f";
79 80 }
80 81 body.elementor-editor-preview {
81 82 --e-preview-width: 100%;
82 83 }
83 -body.elementor-editor-preview #elementor-mode-switcher-preview i {
84 - scale: calc(-1 * var(--direction-multiplier)) 1;
84 +body.elementor-editor-preview #elementor-mode-switcher-preview .eicon:before {
85 + content: "\e89e";
85 86 }
86 87 body.elementor-navigator--dock-hint:after {
87 88 width: 30px;
88 89 }
@@ -99,9 +100,12 @@
99 100 }
100 101
101 102 #elementor-loading {
102 103 position: fixed;
103 - inset: 0;
104 + top: 0;
105 + left: 0;
106 + bottom: 0;
107 + right: 0;
104 108 background: var(--e-a-bg-default);
105 109 z-index: 9999;
106 110 }
107 111
@@ -109,9 +113,12 @@
109 113 display: flex;
110 114 align-items: center;
111 115 justify-content: center;
112 116 position: absolute;
113 - inset: 0;
117 + top: 0;
118 + left: 0;
119 + width: 100%;
120 + height: 100%;
114 121 background-color: var(--e-a-bg-default);
115 122 }
116 123 #elementor-preview-loading i {
117 124 color: var(--e-a-color-txt-disabled);
@@ -194,12 +201,11 @@
194 201 color: var(--e-a-color-txt-disabled);
195 202 }
196 203 .e-control-tool i {
197 204 position: absolute;
198 - position: absolute;
199 - inset-block-start: 50%;
200 - inset-inline-start: 50%;
201 - transform: translate(calc(-50% * var(--direction-multiplier)), -50%);
205 + top: 50%;
206 + left: 50%;
207 + transform: translateX(-50%) translateY(-50%);
202 208 color: var(--e-a-color-txt-default);
203 209 font-size: 13px;
204 210 }
205 211
@@ -208,11 +214,11 @@
208 214 }
209 215
210 216 .elementor-loader-wrapper {
211 217 position: absolute;
212 - inset-block-start: 50%;
213 - inset-inline-start: 50%;
214 - transform: translate(calc(-50% * var(--direction-multiplier)), -50%);
218 + top: 50%;
219 + left: 50%;
220 + transform: translate(-50%, -50%);
215 221 width: 300px;
216 222 display: flex;
217 223 flex-direction: column;
218 224 align-items: center;
@@ -363,287 +369,8 @@
363 369 outline: none;
364 370 height: 27px;
365 371 }
366 372
367 -.dialog-widget-content {
368 - background-color: var(--e-a-bg-default);
369 - position: absolute;
370 - border-radius: 3px;
371 - box-shadow: 2px 8px 23px 3px rgba(0, 0, 0, 0.2);
372 - overflow: hidden;
373 -}
374 -
375 -.dialog-message {
376 - line-height: 1.5;
377 - box-sizing: border-box;
378 -}
379 -
380 -.dialog-close-button {
381 - cursor: pointer;
382 - position: absolute;
383 - margin-block-start: 15px;
384 - inset-inline-end: 15px;
385 - color: var(--e-a-color-txt);
386 - font-size: 15px;
387 - line-height: 1;
388 - transition: var(--e-a-transition-hover);
389 -}
390 -.dialog-close-button:hover {
391 - color: var(--e-a-color-txt-hover);
392 -}
393 -
394 -.dialog-prevent-scroll {
395 - overflow: hidden;
396 - max-height: 100vh;
397 -}
398 -
399 -.dialog-type-lightbox {
400 - position: fixed;
401 - height: 100%;
402 - width: 100%;
403 - bottom: 0;
404 - left: 0;
405 - background-color: rgba(0, 0, 0, 0.8);
406 - z-index: 9999;
407 - -webkit-user-select: none;
408 - -moz-user-select: none;
409 - user-select: none;
410 -}
411 -
412 -.elementor-editor-active .elementor-popup-modal {
413 - background-color: initial;
414 -}
415 -
416 -.dialog-type-confirm .dialog-widget-content,
417 -.dialog-type-alert .dialog-widget-content {
418 - margin: auto;
419 - width: 400px;
420 - padding: 20px;
421 -}
422 -.dialog-type-confirm .dialog-header,
423 -.dialog-type-alert .dialog-header {
424 - font-size: 15px;
425 - font-weight: 500;
426 -}
427 -.dialog-type-confirm .dialog-header:after,
428 -.dialog-type-alert .dialog-header:after {
429 - content: "";
430 - display: block;
431 - border-block-end: var(--e-a-border);
432 - padding-block-end: 10px;
433 - margin-block-end: 10px;
434 - margin-inline-start: -20px;
435 - margin-inline-end: -20px;
436 -}
437 -.dialog-type-confirm .dialog-message,
438 -.dialog-type-alert .dialog-message {
439 - min-height: 50px;
440 -}
441 -.dialog-type-confirm .dialog-buttons-wrapper,
442 -.dialog-type-alert .dialog-buttons-wrapper {
443 - padding-block-start: 10px;
444 - display: flex;
445 - justify-content: flex-end;
446 - gap: 15px;
447 -}
448 -.dialog-type-confirm .dialog-buttons-wrapper .dialog-button,
449 -.dialog-type-alert .dialog-buttons-wrapper .dialog-button {
450 - font-size: 12px;
451 - font-weight: 500;
452 - line-height: 1.2;
453 - padding: 8px 16px;
454 - outline: none;
455 - border: none;
456 - border-radius: var(--e-a-border-radius);
457 - background-color: var(--e-a-btn-bg);
458 - color: var(--e-a-btn-color-invert);
459 - transition: var(--e-a-transition-hover);
460 -}
461 -.dialog-type-confirm .dialog-buttons-wrapper .dialog-button:hover,
462 -.dialog-type-alert .dialog-buttons-wrapper .dialog-button:hover {
463 - border: none;
464 -}
465 -.dialog-type-confirm .dialog-buttons-wrapper .dialog-button:hover, .dialog-type-confirm .dialog-buttons-wrapper .dialog-button:focus,
466 -.dialog-type-alert .dialog-buttons-wrapper .dialog-button:hover,
467 -.dialog-type-alert .dialog-buttons-wrapper .dialog-button:focus {
468 - background-color: var(--e-a-btn-bg-hover);
469 - color: var(--e-a-btn-color-invert);
470 -}
471 -.dialog-type-confirm .dialog-buttons-wrapper .dialog-button:active,
472 -.dialog-type-alert .dialog-buttons-wrapper .dialog-button:active {
473 - background-color: var(--e-a-btn-bg-active);
474 -}
475 -.dialog-type-confirm .dialog-buttons-wrapper .dialog-button:not([disabled]),
476 -.dialog-type-alert .dialog-buttons-wrapper .dialog-button:not([disabled]) {
477 - cursor: pointer;
478 -}
479 -.dialog-type-confirm .dialog-buttons-wrapper .dialog-button:disabled,
480 -.dialog-type-alert .dialog-buttons-wrapper .dialog-button:disabled {
481 - background-color: var(--e-a-btn-bg-disabled);
482 - color: var(--e-a-btn-color-disabled);
483 -}
484 -.dialog-type-confirm .dialog-buttons-wrapper .dialog-button:not(.elementor-button-state) .elementor-state-icon,
485 -.dialog-type-alert .dialog-buttons-wrapper .dialog-button:not(.elementor-button-state) .elementor-state-icon {
486 - display: none;
487 -}
488 -.dialog-type-confirm .dialog-buttons-wrapper .dialog-button.e-btn-txt, .dialog-type-confirm .dialog-buttons-wrapper .dialog-button.dialog-cancel,
489 -.dialog-type-alert .dialog-buttons-wrapper .dialog-button.e-btn-txt,
490 -.dialog-type-alert .dialog-buttons-wrapper .dialog-button.dialog-cancel {
491 - background: transparent;
492 - color: var(--e-a-color-txt);
493 -}
494 -.dialog-type-confirm .dialog-buttons-wrapper .dialog-button.e-btn-txt:hover, .dialog-type-confirm .dialog-buttons-wrapper .dialog-button.dialog-cancel:hover, .dialog-type-confirm .dialog-buttons-wrapper .dialog-button.e-btn-txt:focus, .dialog-type-confirm .dialog-buttons-wrapper .dialog-button.dialog-cancel:focus,
495 -.dialog-type-alert .dialog-buttons-wrapper .dialog-button.e-btn-txt:hover,
496 -.dialog-type-alert .dialog-buttons-wrapper .dialog-button.dialog-cancel:hover,
497 -.dialog-type-alert .dialog-buttons-wrapper .dialog-button.e-btn-txt:focus,
498 -.dialog-type-alert .dialog-buttons-wrapper .dialog-button.dialog-cancel:focus {
499 - background: var(--e-a-bg-hover);
500 - color: var(--e-a-color-txt-hover);
501 -}
502 -.dialog-type-confirm .dialog-buttons-wrapper .dialog-button.e-btn-txt:disabled, .dialog-type-confirm .dialog-buttons-wrapper .dialog-button.dialog-cancel:disabled,
503 -.dialog-type-alert .dialog-buttons-wrapper .dialog-button.e-btn-txt:disabled,
504 -.dialog-type-alert .dialog-buttons-wrapper .dialog-button.dialog-cancel:disabled {
505 - background: transparent;
506 - color: var(--e-a-color-txt-disabled);
507 -}
508 -.dialog-type-confirm .dialog-buttons-wrapper .dialog-button.e-btn-txt-border,
509 -.dialog-type-alert .dialog-buttons-wrapper .dialog-button.e-btn-txt-border {
510 - border: 1px solid var(--e-a-color-txt-muted);
511 -}
512 -.dialog-type-confirm .dialog-buttons-wrapper .dialog-button.elementor-button-success, .dialog-type-confirm .dialog-buttons-wrapper .dialog-button.e-success,
513 -.dialog-type-alert .dialog-buttons-wrapper .dialog-button.elementor-button-success,
514 -.dialog-type-alert .dialog-buttons-wrapper .dialog-button.e-success {
515 - background-color: var(--e-a-btn-bg-success);
516 -}
517 -.dialog-type-confirm .dialog-buttons-wrapper .dialog-button.elementor-button-success:hover, .dialog-type-confirm .dialog-buttons-wrapper .dialog-button.elementor-button-success:focus, .dialog-type-confirm .dialog-buttons-wrapper .dialog-button.e-success:hover, .dialog-type-confirm .dialog-buttons-wrapper .dialog-button.e-success:focus,
518 -.dialog-type-alert .dialog-buttons-wrapper .dialog-button.elementor-button-success:hover,
519 -.dialog-type-alert .dialog-buttons-wrapper .dialog-button.elementor-button-success:focus,
520 -.dialog-type-alert .dialog-buttons-wrapper .dialog-button.e-success:hover,
521 -.dialog-type-alert .dialog-buttons-wrapper .dialog-button.e-success:focus {
522 - background-color: var(--e-a-btn-bg-success-hover);
523 -}
524 -.dialog-type-confirm .dialog-buttons-wrapper .dialog-button.e-primary, .dialog-type-confirm .dialog-buttons-wrapper .dialog-button.dialog-take_over, .dialog-type-confirm .dialog-buttons-wrapper .dialog-button.dialog-ok,
525 -.dialog-type-alert .dialog-buttons-wrapper .dialog-button.e-primary,
526 -.dialog-type-alert .dialog-buttons-wrapper .dialog-button.dialog-take_over,
527 -.dialog-type-alert .dialog-buttons-wrapper .dialog-button.dialog-ok {
528 - background-color: var(--e-a-btn-bg-primary);
529 - color: var(--e-a-btn-color);
530 -}
531 -.dialog-type-confirm .dialog-buttons-wrapper .dialog-button.e-primary:hover, .dialog-type-confirm .dialog-buttons-wrapper .dialog-button.dialog-take_over:hover, .dialog-type-confirm .dialog-buttons-wrapper .dialog-button.dialog-ok:hover, .dialog-type-confirm .dialog-buttons-wrapper .dialog-button.e-primary:focus, .dialog-type-confirm .dialog-buttons-wrapper .dialog-button.dialog-take_over:focus, .dialog-type-confirm .dialog-buttons-wrapper .dialog-button.dialog-ok:focus,
532 -.dialog-type-alert .dialog-buttons-wrapper .dialog-button.e-primary:hover,
533 -.dialog-type-alert .dialog-buttons-wrapper .dialog-button.dialog-take_over:hover,
534 -.dialog-type-alert .dialog-buttons-wrapper .dialog-button.dialog-ok:hover,
535 -.dialog-type-alert .dialog-buttons-wrapper .dialog-button.e-primary:focus,
536 -.dialog-type-alert .dialog-buttons-wrapper .dialog-button.dialog-take_over:focus,
537 -.dialog-type-alert .dialog-buttons-wrapper .dialog-button.dialog-ok:focus {
538 - background-color: var(--e-a-btn-bg-primary-hover);
539 - color: var(--e-a-btn-color);
540 -}
541 -.dialog-type-confirm .dialog-buttons-wrapper .dialog-button.e-primary.e-btn-txt, .dialog-type-confirm .dialog-buttons-wrapper .dialog-button.e-btn-txt.dialog-take_over, .dialog-type-confirm .dialog-buttons-wrapper .dialog-button.e-primary.dialog-cancel, .dialog-type-confirm .dialog-buttons-wrapper .dialog-button.dialog-cancel.dialog-take_over, .dialog-type-confirm .dialog-buttons-wrapper .dialog-button.e-btn-txt.dialog-ok, .dialog-type-confirm .dialog-buttons-wrapper .dialog-button.dialog-ok.dialog-cancel,
542 -.dialog-type-alert .dialog-buttons-wrapper .dialog-button.e-primary.e-btn-txt,
543 -.dialog-type-alert .dialog-buttons-wrapper .dialog-button.e-btn-txt.dialog-take_over,
544 -.dialog-type-alert .dialog-buttons-wrapper .dialog-button.e-primary.dialog-cancel,
545 -.dialog-type-alert .dialog-buttons-wrapper .dialog-button.dialog-cancel.dialog-take_over,
546 -.dialog-type-alert .dialog-buttons-wrapper .dialog-button.e-btn-txt.dialog-ok,
547 -.dialog-type-alert .dialog-buttons-wrapper .dialog-button.dialog-ok.dialog-cancel {
548 - background: transparent;
549 - color: var(--e-a-color-primary-bold);
550 -}
551 -.dialog-type-confirm .dialog-buttons-wrapper .dialog-button.e-primary.e-btn-txt:hover, .dialog-type-confirm .dialog-buttons-wrapper .dialog-button.e-btn-txt.dialog-take_over:hover, .dialog-type-confirm .dialog-buttons-wrapper .dialog-button.e-primary.dialog-cancel:hover, .dialog-type-confirm .dialog-buttons-wrapper .dialog-button.dialog-cancel.dialog-take_over:hover, .dialog-type-confirm .dialog-buttons-wrapper .dialog-button.e-btn-txt.dialog-ok:hover, .dialog-type-confirm .dialog-buttons-wrapper .dialog-button.dialog-ok.dialog-cancel:hover, .dialog-type-confirm .dialog-buttons-wrapper .dialog-button.e-primary.e-btn-txt:focus, .dialog-type-confirm .dialog-buttons-wrapper .dialog-button.e-btn-txt.dialog-take_over:focus, .dialog-type-confirm .dialog-buttons-wrapper .dialog-button.e-primary.dialog-cancel:focus, .dialog-type-confirm .dialog-buttons-wrapper .dialog-button.dialog-cancel.dialog-take_over:focus, .dialog-type-confirm .dialog-buttons-wrapper .dialog-button.e-btn-txt.dialog-ok:focus, .dialog-type-confirm .dialog-buttons-wrapper .dialog-button.dialog-ok.dialog-cancel:focus,
552 -.dialog-type-alert .dialog-buttons-wrapper .dialog-button.e-primary.e-btn-txt:hover,
553 -.dialog-type-alert .dialog-buttons-wrapper .dialog-button.e-btn-txt.dialog-take_over:hover,
554 -.dialog-type-alert .dialog-buttons-wrapper .dialog-button.e-primary.dialog-cancel:hover,
555 -.dialog-type-alert .dialog-buttons-wrapper .dialog-button.dialog-cancel.dialog-take_over:hover,
556 -.dialog-type-alert .dialog-buttons-wrapper .dialog-button.e-btn-txt.dialog-ok:hover,
557 -.dialog-type-alert .dialog-buttons-wrapper .dialog-button.dialog-ok.dialog-cancel:hover,
558 -.dialog-type-alert .dialog-buttons-wrapper .dialog-button.e-primary.e-btn-txt:focus,
559 -.dialog-type-alert .dialog-buttons-wrapper .dialog-button.e-btn-txt.dialog-take_over:focus,
560 -.dialog-type-alert .dialog-buttons-wrapper .dialog-button.e-primary.dialog-cancel:focus,
561 -.dialog-type-alert .dialog-buttons-wrapper .dialog-button.dialog-cancel.dialog-take_over:focus,
562 -.dialog-type-alert .dialog-buttons-wrapper .dialog-button.e-btn-txt.dialog-ok:focus,
563 -.dialog-type-alert .dialog-buttons-wrapper .dialog-button.dialog-ok.dialog-cancel:focus {
564 - background: var(--e-a-bg-primary);
565 -}
566 -.dialog-type-confirm .dialog-buttons-wrapper .dialog-button.go-pro, .dialog-type-confirm .dialog-buttons-wrapper .dialog-button.e-accent,
567 -.dialog-type-alert .dialog-buttons-wrapper .dialog-button.go-pro,
568 -.dialog-type-alert .dialog-buttons-wrapper .dialog-button.e-accent {
569 - background-color: var(--e-a-btn-bg-accent);
570 -}
571 -.dialog-type-confirm .dialog-buttons-wrapper .dialog-button.go-pro:hover, .dialog-type-confirm .dialog-buttons-wrapper .dialog-button.go-pro:focus, .dialog-type-confirm .dialog-buttons-wrapper .dialog-button.e-accent:hover, .dialog-type-confirm .dialog-buttons-wrapper .dialog-button.e-accent:focus,
572 -.dialog-type-alert .dialog-buttons-wrapper .dialog-button.go-pro:hover,
573 -.dialog-type-alert .dialog-buttons-wrapper .dialog-button.go-pro:focus,
574 -.dialog-type-alert .dialog-buttons-wrapper .dialog-button.e-accent:hover,
575 -.dialog-type-alert .dialog-buttons-wrapper .dialog-button.e-accent:focus {
576 - background-color: var(--e-a-btn-bg-accent-hover);
577 -}
578 -.dialog-type-confirm .dialog-buttons-wrapper .dialog-button.go-pro:active, .dialog-type-confirm .dialog-buttons-wrapper .dialog-button.e-accent:active,
579 -.dialog-type-alert .dialog-buttons-wrapper .dialog-button.go-pro:active,
580 -.dialog-type-alert .dialog-buttons-wrapper .dialog-button.e-accent:active {
581 - background-color: var(--e-a-btn-bg-accent-active);
582 -}
583 -.dialog-type-confirm .dialog-buttons-wrapper .dialog-button.elementor-button-info, .dialog-type-confirm .dialog-buttons-wrapper .dialog-button.e-info,
584 -.dialog-type-alert .dialog-buttons-wrapper .dialog-button.elementor-button-info,
585 -.dialog-type-alert .dialog-buttons-wrapper .dialog-button.e-info {
586 - background-color: var(--e-a-btn-bg-info);
587 -}
588 -.dialog-type-confirm .dialog-buttons-wrapper .dialog-button.elementor-button-info:hover, .dialog-type-confirm .dialog-buttons-wrapper .dialog-button.elementor-button-info:focus, .dialog-type-confirm .dialog-buttons-wrapper .dialog-button.e-info:hover, .dialog-type-confirm .dialog-buttons-wrapper .dialog-button.e-info:focus,
589 -.dialog-type-alert .dialog-buttons-wrapper .dialog-button.elementor-button-info:hover,
590 -.dialog-type-alert .dialog-buttons-wrapper .dialog-button.elementor-button-info:focus,
591 -.dialog-type-alert .dialog-buttons-wrapper .dialog-button.e-info:hover,
592 -.dialog-type-alert .dialog-buttons-wrapper .dialog-button.e-info:focus {
593 - background-color: var(--e-a-btn-bg-info-hover);
594 -}
595 -.dialog-type-confirm .dialog-buttons-wrapper .dialog-button.elementor-button-warning, .dialog-type-confirm .dialog-buttons-wrapper .dialog-button.e-warning,
596 -.dialog-type-alert .dialog-buttons-wrapper .dialog-button.elementor-button-warning,
597 -.dialog-type-alert .dialog-buttons-wrapper .dialog-button.e-warning {
598 - background-color: var(--e-a-btn-bg-warning);
599 -}
600 -.dialog-type-confirm .dialog-buttons-wrapper .dialog-button.elementor-button-warning:hover, .dialog-type-confirm .dialog-buttons-wrapper .dialog-button.elementor-button-warning:focus, .dialog-type-confirm .dialog-buttons-wrapper .dialog-button.e-warning:hover, .dialog-type-confirm .dialog-buttons-wrapper .dialog-button.e-warning:focus,
601 -.dialog-type-alert .dialog-buttons-wrapper .dialog-button.elementor-button-warning:hover,
602 -.dialog-type-alert .dialog-buttons-wrapper .dialog-button.elementor-button-warning:focus,
603 -.dialog-type-alert .dialog-buttons-wrapper .dialog-button.e-warning:hover,
604 -.dialog-type-alert .dialog-buttons-wrapper .dialog-button.e-warning:focus {
605 - background-color: var(--e-a-btn-bg-warning-hover);
606 -}
607 -.dialog-type-confirm .dialog-buttons-wrapper .dialog-button.elementor-button-danger, .dialog-type-confirm .dialog-buttons-wrapper .dialog-button.e-danger,
608 -.dialog-type-alert .dialog-buttons-wrapper .dialog-button.elementor-button-danger,
609 -.dialog-type-alert .dialog-buttons-wrapper .dialog-button.e-danger {
610 - background-color: var(--e-a-btn-bg-danger);
611 -}
612 -.dialog-type-confirm .dialog-buttons-wrapper .dialog-button.elementor-button-danger.color-white, .dialog-type-confirm .dialog-buttons-wrapper .dialog-button.e-danger.color-white,
613 -.dialog-type-alert .dialog-buttons-wrapper .dialog-button.elementor-button-danger.color-white,
614 -.dialog-type-alert .dialog-buttons-wrapper .dialog-button.e-danger.color-white {
615 - color: var(--e-a-color-white);
616 -}
617 -.dialog-type-confirm .dialog-buttons-wrapper .dialog-button.elementor-button-danger:hover, .dialog-type-confirm .dialog-buttons-wrapper .dialog-button.elementor-button-danger:focus, .dialog-type-confirm .dialog-buttons-wrapper .dialog-button.e-danger:hover, .dialog-type-confirm .dialog-buttons-wrapper .dialog-button.e-danger:focus,
618 -.dialog-type-alert .dialog-buttons-wrapper .dialog-button.elementor-button-danger:hover,
619 -.dialog-type-alert .dialog-buttons-wrapper .dialog-button.elementor-button-danger:focus,
620 -.dialog-type-alert .dialog-buttons-wrapper .dialog-button.e-danger:hover,
621 -.dialog-type-alert .dialog-buttons-wrapper .dialog-button.e-danger:focus {
622 - background-color: var(--e-a-btn-bg-danger-hover);
623 -}
624 -.dialog-type-confirm .dialog-buttons-wrapper .dialog-button i,
625 -.dialog-type-alert .dialog-buttons-wrapper .dialog-button i {
626 - margin-inline-end: 5px;
627 -}
628 -.dialog-type-confirm .dialog-buttons-wrapper .dialog-button:hover, .dialog-type-confirm .dialog-buttons-wrapper .dialog-button:focus, .dialog-type-confirm .dialog-buttons-wrapper .dialog-button:visited,
629 -.dialog-type-alert .dialog-buttons-wrapper .dialog-button:hover,
630 -.dialog-type-alert .dialog-buttons-wrapper .dialog-button:focus,
631 -.dialog-type-alert .dialog-buttons-wrapper .dialog-button:visited {
632 - color: initial;
633 -}
634 -.dialog-type-confirm .dialog-buttons-wrapper .dialog-button[disabled]:hover, .dialog-type-confirm .dialog-buttons-wrapper .dialog-button[disabled]:focus, .dialog-type-confirm .dialog-buttons-wrapper .dialog-button[disabled]:visited,
635 -.dialog-type-alert .dialog-buttons-wrapper .dialog-button[disabled]:hover,
636 -.dialog-type-alert .dialog-buttons-wrapper .dialog-button[disabled]:focus,
637 -.dialog-type-alert .dialog-buttons-wrapper .dialog-button[disabled]:visited {
638 - background-color: var(--e-a-btn-bg-disabled);
639 -}
640 -.dialog-type-confirm .dialog-buttons-wrapper .dialog-button[disabled],
641 -.dialog-type-alert .dialog-buttons-wrapper .dialog-button[disabled] {
642 - background-color: var(--e-a-btn-bg-disabled);
643 - cursor: not-allowed;
644 -}
645 -
646 373 /*
647 374 * Container style
648 375 */
649 376 .ps {
@@ -785,58 +512,46 @@
785 512 --e-editor-panel-width: 300px;
786 513 }
787 514 }
788 515
789 -.elementor-panel :where(#elementor-panel-state-loading,
790 -#elementor-panel-header-wrapper,
791 -#elementor-panel-content-wrapper) h1,
792 -.elementor-panel :where(#elementor-panel-state-loading,
793 -#elementor-panel-header-wrapper,
794 -#elementor-panel-content-wrapper) h2,
795 -.elementor-panel :where(#elementor-panel-state-loading,
796 -#elementor-panel-header-wrapper,
797 -#elementor-panel-content-wrapper) h3,
798 -.elementor-panel :where(#elementor-panel-state-loading,
799 -#elementor-panel-header-wrapper,
800 -#elementor-panel-content-wrapper) h4,
801 -.elementor-panel :where(#elementor-panel-state-loading,
802 -#elementor-panel-header-wrapper,
803 -#elementor-panel-content-wrapper) h5,
804 -.elementor-panel :where(#elementor-panel-state-loading,
805 -#elementor-panel-header-wrapper,
806 -#elementor-panel-content-wrapper) h6 {
516 +.elementor-panel {
517 + position: relative;
518 + height: 100%;
519 + margin-inline-start: calc(-1 * var(--e-editor-panel-width) * var(--e-is-preview-mode));
520 + width: var(--e-editor-panel-width);
521 + overflow: visible;
522 + background-color: var(--e-a-bg-default);
523 + z-index: 1;
524 + font-family: var(--e-a-font-family);
525 + font-size: 13px;
526 + left: 0;
527 +}
528 +.elementor-panel h1,
529 +.elementor-panel h2,
530 +.elementor-panel h3,
531 +.elementor-panel h4,
532 +.elementor-panel h5,
533 +.elementor-panel h6 {
807 534 font-size: 100%;
808 535 font-weight: normal;
809 536 }
810 -.elementor-panel :where(#elementor-panel-state-loading,
811 -#elementor-panel-header-wrapper,
812 -#elementor-panel-content-wrapper) abbr,
813 -.elementor-panel :where(#elementor-panel-state-loading,
814 -#elementor-panel-header-wrapper,
815 -#elementor-panel-content-wrapper) acronym {
537 +.elementor-panel abbr,
538 +.elementor-panel acronym {
816 539 border: 0;
817 540 font-variant: normal;
818 541 }
819 -.elementor-panel :where(#elementor-panel-state-loading,
820 -#elementor-panel-header-wrapper,
821 -#elementor-panel-content-wrapper) sup {
542 +.elementor-panel sup {
822 543 vertical-align: text-top;
823 544 }
824 -.elementor-panel :where(#elementor-panel-state-loading,
825 -#elementor-panel-header-wrapper,
826 -#elementor-panel-content-wrapper) sub {
545 +.elementor-panel sub {
827 546 vertical-align: text-bottom;
828 547 }
829 -.elementor-panel :where(#elementor-panel-state-loading,
830 -#elementor-panel-header-wrapper,
831 -#elementor-panel-content-wrapper) img {
548 +.elementor-panel img {
832 549 max-width: 100%;
833 550 height: auto;
834 551 border: 0;
835 552 }
836 -.elementor-panel :where(#elementor-panel-state-loading,
837 -#elementor-panel-header-wrapper,
838 -#elementor-panel-content-wrapper) :focus {
553 +.elementor-panel :focus {
839 554 outline: 0;
840 555 }
841 556 .elementor-panel .elementor-panel-box-content {
842 557 padding: 20px 20px 10px;
@@ -888,9 +603,10 @@
888 603 display: none;
889 604 position: absolute;
890 605 box-shadow: var(--e-a-popover-shadow);
891 606 border-radius: var(--e-a-border-radius);
892 - inset-inline: 0;
607 + left: 0;
608 + right: 0;
893 609 margin: -4px auto 5px;
894 610 padding-block-start: 15px;
895 611 width: 90%;
896 612 z-index: 10000;
@@ -898,10 +614,10 @@
898 614 }
899 615 .elementor-panel .elementor-controls-popover:before {
900 616 content: "";
901 617 position: absolute;
902 - inset-block-start: -16px;
903 - inset-inline-end: 22px;
618 + top: -16px;
619 + right: 22px;
904 620 border: 8px solid transparent;
905 621 border-block-end-color: var(--e-a-bg-default);
906 622 }
907 623 .elementor-panel .elementor-controls-popover div.elementor-control {
@@ -912,20 +628,8 @@
912 628 }
913 629 .elementor-panel #elementor-panel-global .elementor-nerd-box .elementor-nerd-box-icon {
914 630 margin-block-start: 20px;
915 631 }
916 -.elementor-panel {
917 - position: relative;
918 - height: 100%;
919 - inset-inline-start: 0;
920 - margin-inline-start: calc(-1 * var(--e-editor-panel-width) * var(--e-is-preview-mode));
921 - width: var(--e-editor-panel-width);
922 - overflow: visible;
923 - background-color: var(--e-a-bg-default);
924 - z-index: 1;
925 - font-family: var(--e-a-font-family);
926 - font-size: 13px;
927 -}
928 632 .elementor-editor-preview .elementor-panel {
929 633 --e-is-preview-mode: 1;
930 634 }
931 635 .elementor-editor-preview .elementor-panel > .ui-resizable-e,
@@ -931,12 +635,8 @@
931 635 .elementor-editor-preview .elementor-panel > .ui-resizable-e,
932 636 .elementor-editor-preview .elementor-panel > .ui-resizable-w {
933 637 display: none;
934 638 }
935 -.elementor-editor-preview .elementor-panel #elementor-panel-elements-wrapper {
936 - display: flex;
937 - flex-direction: column;
938 -}
939 639 .elementor-panel .ps__rail-y {
940 640 z-index: 2;
941 641 }
942 642 .elementor-panel .elementor-responsive-panel {
@@ -978,9 +678,9 @@
978 678 }
979 679 .elementor-panel .elementor-header-button .elementor-icon.eicon-menu-bar {
980 680 font-size: 18px;
981 681 }
982 -.elementor-panel .elementor-header-button:hover, .elementor-panel .elementor-header-button:focus {
682 +.elementor-panel .elementor-header-button .elementor-icon:hover, .elementor-panel .elementor-header-button .elementor-icon:focus {
983 683 color: var(--e-a-dark-color-txt-hover);
984 684 }
985 685 .elementor-panel #elementor-panel-header-title {
986 686 flex: 1;
@@ -991,9 +691,8 @@
991 691 width: 90px;
992 692 }
993 693 .elementor-panel #elementor-panel-elements-categories {
994 694 padding-block-end: 10px;
995 - position: relative;
996 695 }
997 696 .elementor-panel .elementor-panel-category {
998 697 position: relative;
999 698 border-block-end: var(--e-a-border);
@@ -1005,11 +704,8 @@
1005 704 }
1006 705 .elementor-panel .elementor-panel-category.elementor-active .elementor-panel-heading {
1007 706 border: none;
1008 707 }
1009 -.elementor-panel .elementor-panel-category.elementor-active-title {
1010 - display: flex;
1011 -}
1012 708 .elementor-panel .elementor-panel-category-items {
1013 709 padding-block-end: 20px;
1014 710 }
1015 711 .elementor-panel .elementor-panel-category-items-empty {
@@ -1034,16 +730,14 @@
1034 730 align-items: center;
1035 731 width: 100%;
1036 732 height: 40px;
1037 733 transition: var(--e-a-transition-hover);
1038 - border: 0;
1039 - background-color: transparent;
1040 734 cursor: pointer;
1041 735 }
1042 736 .elementor-panel .elementor-panel-menu-item:not(:last-child) {
1043 737 border-block-end: var(--e-a-border);
1044 738 }
1045 -.elementor-panel .elementor-panel-menu-item:hover, .elementor-panel .elementor-panel-menu-item:focus {
739 +.elementor-panel .elementor-panel-menu-item:hover {
1046 740 background-color: var(--e-a-bg-hover);
1047 741 }
1048 742 .elementor-panel .elementor-panel-menu-item:active {
1049 743 background-color: var(--e-a-bg-active);
@@ -1109,11 +803,13 @@
1109 803 .elementor-panel .elementor-panel-navigation .elementor-panel-navigation-tab.elementor-active {
1110 804 border-color: var(--e-a-border-color-accent);
1111 805 color: var(--e-a-color-txt-accent);
1112 806 }
807 +.elementor-panel .elementor-panel-navigation .elementor-panel-navigation-tab.elementor-active a,
1113 808 .elementor-panel .elementor-panel-navigation .elementor-panel-navigation-tab.elementor-active span {
1114 809 color: var(--e-a-color-txt-accent);
1115 810 }
811 +.elementor-panel .elementor-panel-navigation .elementor-panel-navigation-tab a,
1116 812 .elementor-panel .elementor-panel-navigation .elementor-panel-navigation-tab span {
1117 813 color: inherit;
1118 814 display: block;
1119 815 text-align: center;
@@ -1119,8 +815,9 @@
1119 815 text-align: center;
1120 816 padding: 12px 0 8px;
1121 817 font-size: 10px;
1122 818 }
819 +.elementor-panel .elementor-panel-navigation .elementor-panel-navigation-tab a:before,
1123 820 .elementor-panel .elementor-panel-navigation .elementor-panel-navigation-tab span:before {
1124 821 font-family: eicons;
1125 822 font-size: 16px;
1126 823 display: block;
@@ -1125,31 +822,35 @@
1125 822 font-size: 16px;
1126 823 display: block;
1127 824 margin-block-end: 8px;
1128 825 }
826 +.elementor-panel .elementor-tab-control-content a:before,
1129 827 .elementor-panel .elementor-tab-control-content span:before {
1130 828 content: "\e92c";
1131 829 }
830 +.elementor-panel .elementor-tab-control-style a:before,
1132 831 .elementor-panel .elementor-tab-control-style span:before {
1133 832 content: "\e921";
1134 833 }
1135 -.elementor-panel .elementor-tab-control-settings span:before {
1136 - content: "\e940";
1137 -}
1138 -.elementor-panel .elementor-tab-control-advanced-tab-floating-buttons span:before,
1139 -.elementor-panel .elementor-tab-control-advanced-tab-links-in-bio span:before,
1140 -.elementor-panel .elementor-tab-control-advanced-tab-floating-bars span:before,
834 +.elementor-panel .elementor-tab-control-advanced a:before,
1141 835 .elementor-panel .elementor-tab-control-advanced span:before,
836 +.elementor-panel .elementor-tab-control-settings a:before,
837 +.elementor-panel .elementor-tab-control-settings span:before,
838 +.elementor-panel .elementor-tab-control-general_style a:before,
1142 839 .elementor-panel .elementor-tab-control-general_style span:before {
1143 840 content: "\e916";
1144 841 }
842 +.elementor-panel .elementor-tab-control-responsive a:before,
1145 843 .elementor-panel .elementor-tab-control-responsive span:before {
1146 844 content: "\e885";
1147 845 }
846 +.elementor-panel .elementor-tab-control-lightbox a:before,
1148 847 .elementor-panel .elementor-tab-control-lightbox span:before {
1149 848 content: "\e922";
1150 849 }
850 +.elementor-panel .elementor-tab-control-layout a:before,
1151 851 .elementor-panel .elementor-tab-control-layout span:before,
852 +.elementor-panel .elementor-tab-control-column a:before,
1152 853 .elementor-panel .elementor-tab-control-column span:before {
1153 854 content: "\e899";
1154 855 }
1155 856 .elementor-panel #elementor-panel__editor__help {
@@ -1181,15 +882,142 @@
1181 882 content: "";
1182 883 position: absolute;
1183 884 height: 13px;
1184 885 width: 13px;
1185 - inset-block-start: 3px;
1186 - inset-block-end: 0;
1187 - inset-inline-start: 8px;
1188 - inset-inline-end: 0;
886 + top: 3px;
887 + bottom: 0;
888 + left: 8px;
889 + right: 0;
1189 890 border-radius: 50%;
1190 891 z-index: -1;
1191 892 }
893 +.elementor-panel #elementor-panel-footer {
894 + position: relative;
895 + height: 40px;
896 + background-color: var(--e-a-dark-bg);
897 + color: var(--e-a-dark-color-txt);
898 +}
899 +.elementor-panel #elementor-panel-footer-tools {
900 + display: flex;
901 + justify-content: space-between;
902 + height: 100%;
903 +}
904 +.elementor-panel .elementor-panel-footer-tool {
905 + display: flex;
906 + align-items: center;
907 + justify-content: center;
908 + width: 15%;
909 + cursor: pointer;
910 + transition: var(--e-a-transition-hover);
911 + border: 0;
912 + color: currentColor;
913 + background-color: transparent;
914 +}
915 +.elementor-panel .elementor-panel-footer-tool i {
916 + font-size: 15px;
917 +}
918 +.elementor-panel .elementor-panel-footer-tool #elementor-panel-saver-button-save-options i.eicon-chevron-right {
919 + margin: auto;
920 + transform: rotate(270deg);
921 +}
922 +.elementor-panel .elementor-panel-footer-tool #elementor-panel-saver-button-save-options.elementor-disabled {
923 + cursor: inherit;
924 +}
925 +.elementor-panel .elementor-panel-footer-tool:not(.e-open):hover, .elementor-panel .elementor-panel-footer-tool:not(.e-open):focus {
926 + color: var(--e-a-dark-color-txt-hover);
927 +}
928 +.elementor-panel .elementor-panel-footer-tool:not(.e-open) .elementor-panel-footer-sub-menu-wrapper {
929 + display: none;
930 +}
931 +.elementor-panel #elementor-panel-footer-saver-publish {
932 + width: 30%;
933 + margin-inline-start: auto;
934 +}
935 +.elementor-panel #elementor-panel-footer-saver-publish .elementor-button-state i {
936 + margin-inline-end: 0;
937 +}
938 +.elementor-panel #elementor-panel-footer-saver-publish .elementor-button-state #elementor-panel-saver-button-publish-label {
939 + display: none;
940 +}
941 +.elementor-panel #elementor-panel-footer-saver-options {
942 + width: 10%;
943 +}
944 +.elementor-panel #elementor-panel-footer-saver-options .elementor-last-edited-wrapper {
945 + font-size: 11px;
946 + font-style: italic;
947 + padding: 5px 0 15px;
948 +}
949 +.elementor-panel #elementor-panel-footer-saver-options .elementor-last-edited-wrapper:not(.elementor-state-active) .elementor-state-icon {
950 + display: none;
951 +}
952 +.elementor-panel #elementor-panel-footer-saver-options .elementor-last-edited-wrapper time {
953 + border-block-end: 1px dotted transparent;
954 + transition: all ease-in-out 0.3s;
955 + cursor: pointer;
956 +}
957 +.elementor-panel #elementor-panel-footer-saver-options .elementor-last-edited-wrapper time:hover {
958 + border-block-end-color: inherit;
959 +}
960 +.elementor-panel #elementor-panel-footer-saver-options.e-open i.eicon-chevron-right {
961 + transform: rotate(90deg);
962 +}
963 +.elementor-panel #elementor-panel-saver-button-publish, .elementor-panel #elementor-panel-saver-button-save-options {
964 + padding: 0;
965 + font-size: 11px;
966 + height: 100%;
967 + width: 100%;
968 + border-radius: 0;
969 +}
970 +.elementor-panel #elementor-panel-saver-button-publish.elementor-disabled, .elementor-panel #elementor-panel-saver-button-save-options.elementor-disabled {
971 + background-color: #1f2124;
972 + color: #9DA5AE;
973 +}
974 +.elementor-panel #elementor-panel-saver-button-publish:not(.elementor-disabled) {
975 + border-inline-end: 1px solid #F0ABFC;
976 +}
977 +.elementor-panel #elementor-panel-saver-button-publish.elementor-disabled {
978 + border-inline-end: 1px solid #3f444b;
979 +}
980 +.elementor-panel .elementor-panel-footer-sub-menu-wrapper {
981 + position: absolute;
982 + bottom: 100%;
983 + left: 0;
984 + width: 100%;
985 + background-color: #1f2124;
986 + padding: 10px;
987 + box-shadow: -2px -5px 8px rgba(0, 0, 0, 0.1);
988 + cursor: default;
989 + z-index: 10000;
990 +}
991 +.elementor-panel .elementor-panel-footer-sub-menu {
992 + border-radius: var(--e-border-radius);
993 + overflow: hidden;
994 + border: 1px solid #3f444b;
995 +}
996 +.elementor-panel .elementor-panel-footer-sub-menu-item {
997 + display: flex;
998 + height: 40px;
999 + color: #D5D8DC;
1000 + align-items: center;
1001 + -moz-column-gap: 10px;
1002 + column-gap: 10px;
1003 + padding: 0 20px;
1004 + transition: var(--e-a-transition-hover);
1005 + cursor: pointer;
1006 +}
1007 +.elementor-panel .elementor-panel-footer-sub-menu-item.elementor-disabled {
1008 + cursor: default;
1009 + color: #69727D;
1010 +}
1011 +.elementor-panel .elementor-panel-footer-sub-menu-item:not(:last-child) {
1012 + border-block-end: 1px solid #3f444b;
1013 +}
1014 +.elementor-panel .elementor-panel-footer-sub-menu-item:hover {
1015 + background-color: rgba(255, 255, 255, 0.1);
1016 +}
1017 +.elementor-panel .elementor-panel-footer-sub-menu-item.active {
1018 + background-color: rgba(255, 255, 255, 0.2);
1019 +}
1192 1020
1193 1021 #elementor-panel-elements-navigation .elementor-panel-navigation-tab {
1194 1022 text-align: center;
1195 1023 padding: 10px 0;
@@ -1205,9 +1033,12 @@
1205 1033 display: none;
1206 1034 }
1207 1035 body.elementor-panel-loading #elementor-panel-state-loading {
1208 1036 position: absolute;
1209 - inset: 0;
1037 + top: 0;
1038 + left: 0;
1039 + height: 100%;
1040 + width: 100%;
1210 1041 display: flex;
1211 1042 align-items: center;
1212 1043 justify-content: center;
1213 1044 background-color: rgba(255, 255, 255, 0.5);
@@ -1220,17 +1051,13 @@
1220 1051
1221 1052 #elementor-panel-elements-search-area {
1222 1053 background-color: var(--e-a-bg-default);
1223 1054 position: sticky;
1224 - inset-block-start: 0;
1055 + top: 0;
1225 1056 padding: 15px;
1226 1057 z-index: 1;
1227 1058 }
1228 1059
1229 -#elementor-panel-elements-search-area:empty {
1230 - display: none;
1231 -}
1232 -
1233 1060 #elementor-panel-elements-search-wrapper {
1234 1061 position: relative;
1235 1062 }
1236 1063
@@ -1247,12 +1074,12 @@
1247 1074 appearance: none;
1248 1075 }
1249 1076 #elementor-panel-elements-search-input + i {
1250 1077 position: absolute;
1251 - inset-block-start: 50%;
1252 - inset-inline-start: 10px;
1078 + left: 10px;
1079 + top: 50%;
1080 + color: var(--e-a-color-txt-disabled);
1253 1081 transform: translateY(-50%);
1254 - color: var(--e-a-color-txt-disabled);
1255 1082 }
1256 1083 #elementor-panel-elements-search-input:focus {
1257 1084 border-color: var(--e-a-border-color-focus);
1258 1085 padding-inline-end: 15px;
@@ -1257,24 +1084,9 @@
1257 1084 border-color: var(--e-a-border-color-focus);
1258 1085 padding-inline-end: 15px;
1259 1086 }
1260 1087
1261 -.e-free-badge-container {
1262 - flex-grow: 1;
1263 - margin-inline-start: 10px;
1264 - margin-inline-end: 10px;
1265 -}
1266 -.e-free-badge-container .e-free-badge {
1267 - border-radius: var(--e-a-border-radius);
1268 - background-color: var(--e-a-btn-bg);
1269 - color: var(--e-a-btn-color-invert);
1270 - padding: 3px 5px;
1271 -}
1272 -
1273 1088 .elementor-panel .elementor-element {
1274 - font-family: var(--e-a-font-family);
1275 - color: var(--e-a-color-txt);
1276 - line-height: 1;
1277 1089 text-align: center;
1278 1090 border: var(--e-a-border-bold);
1279 1091 border-radius: 3px;
1280 1092 cursor: move;
@@ -1279,10 +1091,8 @@
1279 1091 border-radius: 3px;
1280 1092 cursor: move;
1281 1093 position: relative;
1282 1094 transition: var(--e-a-transition-hover);
1283 - width: 100%;
1284 - background-color: transparent;
1285 1095 }
1286 1096 .elementor-panel .elementor-element--promotion .elementor-element {
1287 1097 cursor: pointer;
1288 1098 -webkit-user-select: none;
@@ -1288,37 +1098,15 @@
1288 1098 -webkit-user-select: none;
1289 1099 -moz-user-select: none;
1290 1100 user-select: none;
1291 1101 }
1292 -.elementor-panel .elementor-element .eicon-atomic,
1293 -.elementor-panel .elementor-element .e-widget-new-badge {
1294 - position: absolute;
1295 - inset-block-start: 4px;
1296 - inset-inline-end: 6px;
1297 -}
1298 -.elementor-panel .elementor-element .eicon-atomic {
1299 - color: var(--e-a-color-txt);
1300 -}
1301 -.elementor-panel .elementor-element .e-widget-new-badge {
1302 - border-radius: 4px;
1303 - background-color: #EBF2FE;
1304 - color: var(--e-a-color-info);
1305 - padding: 2px 4px;
1306 - font-size: 10px;
1307 - font-weight: 500;
1308 - line-height: 1.4;
1309 - pointer-events: none;
1310 -}
1311 -.elementor-panel .elementor-element:hover, .elementor-panel .elementor-element:focus {
1102 +.elementor-panel .elementor-element:hover {
1312 1103 background-color: var(--e-a-bg-hover);
1313 1104 border-color: var(--e-a-border-color-bold);
1314 1105 }
1315 -.elementor-panel .elementor-element:hover > .eicon-lock, .elementor-panel .elementor-element:focus > .eicon-lock {
1106 +.elementor-panel .elementor-element:hover > .eicon-lock {
1316 1107 color: var(--e-a-color-accent);
1317 1108 }
1318 -.elementor-panel .elementor-element:hover > .eicon-plug, .elementor-panel .elementor-element:focus > .eicon-plug {
1319 - color: var(--e-a-color-info);
1320 -}
1321 1109 .elementor-panel .elementor-element .icon {
1322 1110 font-size: 28px;
1323 1111 padding-block-start: 15px;
1324 1112 }
@@ -1330,12 +1118,12 @@
1330 1118 }
1331 1119 .elementor-panel .elementor-element .title {
1332 1120 font-size: 12px;
1333 1121 }
1334 -.elementor-panel .elementor-element > .eicon-lock, .elementor-panel .elementor-element .eicon-plug {
1122 +.elementor-panel .elementor-element > .eicon-lock {
1335 1123 position: absolute;
1336 - inset-block-start: 5px;
1337 - inset-inline-end: 5px;
1124 + top: 5px;
1125 + right: 5px;
1338 1126 color: var(--e-a-color-txt-disabled);
1339 1127 }
1340 1128 .elementor-panel .elementor-element:active {
1341 1129 background-color: var(--e-a-bg-hover);
@@ -1353,10 +1141,10 @@
1353 1141 }
1354 1142 #elementor-element--promotion__dialog:after {
1355 1143 content: "";
1356 1144 position: absolute;
1357 - inset-block-start: 15px;
1358 - inset-inline-end: 100%;
1145 + top: 15px;
1146 + right: 100%;
1359 1147 transform: scaleY(0.7);
1360 1148 border: 10px solid transparent;
1361 1149 border-inline-end-color: var(--e-a-bg-default);
1362 1150 }
@@ -1396,9 +1184,9 @@
1396 1184 .dialog-tooltip-widget {
1397 1185 position: absolute;
1398 1186 width: 300px;
1399 1187 z-index: 1;
1400 - background-color: var(--e-a-bg-default);
1188 + background-color: #ffffff;
1401 1189 box-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
1402 1190 border-radius: 3px;
1403 1191 }
1404 1192 .dialog-tooltip-widget:after {
@@ -1403,13 +1191,13 @@
1403 1191 }
1404 1192 .dialog-tooltip-widget:after {
1405 1193 content: "";
1406 1194 position: absolute;
1407 - inset-block-start: 15px;
1408 - inset-inline-end: 100%;
1195 + top: 15px;
1196 + right: 100%;
1409 1197 transform: scaleY(0.7);
1410 1198 border: 10px solid transparent;
1411 - border-inline-end-color: var(--e-a-bg-default);
1199 + border-inline-end-color: #ffffff;
1412 1200 }
1413 1201 .dialog-tooltip-widget__title {
1414 1202 font-size: 14px;
1415 1203 }
@@ -1415,10 +1203,10 @@
1415 1203 }
1416 1204 .dialog-tooltip-widget .dialog-tooltip-header {
1417 1205 display: flex;
1418 1206 padding: 20px 20px 0;
1419 - color: var(--e-a-color-txt);
1420 - border-block-end: 1px solid var(--e-a-bg-default);
1207 + color: #0C0D0E;
1208 + border-block-end: 1px solid #ffffff;
1421 1209 font-weight: 500;
1422 1210 }
1423 1211 .dialog-tooltip-widget .dialog-tooltip-header .eicon-pro-icon {
1424 1212 flex-grow: 1;
@@ -1428,9 +1216,9 @@
1428 1216 }
1429 1217 .dialog-tooltip-widget .dialog-tooltip-header .eicon-close {
1430 1218 cursor: pointer;
1431 1219 margin-inline-start: auto;
1432 - color: var(--e-a-color-txt);
1220 + color: #9DA5AE;
1433 1221 }
1434 1222 .dialog-tooltip-widget .dialog-tooltip-message {
1435 1223 padding: 20px;
1436 1224 }
@@ -1445,80 +1233,8 @@
1445 1233 .dialog-tooltip-widget .dialog-tooltip-button::-moz-focus-inner {
1446 1234 border: 0;
1447 1235 }
1448 1236
1449 -#elementor-panel-elements-widget-creation-area:empty {
1450 - display: none;
1451 -}
1452 -
1453 -.elementor-panel-elements-widget-creation {
1454 - text-align: center;
1455 - padding: 30px 20px;
1456 -}
1457 -.elementor-panel-elements-widget-creation__title {
1458 - font-size: 14px;
1459 - font-weight: bold;
1460 - line-height: 1.4;
1461 - color: var(--e-a-color-txt);
1462 -}
1463 -.elementor-panel-elements-widget-creation__message {
1464 - margin-block-start: 8px;
1465 - font-size: 13px;
1466 - line-height: 1.6;
1467 - color: var(--e-a-color-txt-muted);
1468 -}
1469 -.elementor-panel-elements-widget-creation__cta {
1470 - display: inline-flex;
1471 - align-items: center;
1472 - gap: 6px;
1473 - margin-block-start: 16px;
1474 - padding: 0;
1475 - border: none;
1476 - background: none;
1477 - color: #C00BB9;
1478 - font-size: 14px;
1479 - font-weight: 500;
1480 - cursor: pointer;
1481 - font-family: var(--e-a-font-family);
1482 -}
1483 -.elementor-panel-elements-widget-creation__cta i {
1484 - font-size: 16px;
1485 -}
1486 -.elementor-panel-elements-widget-creation__cta:hover {
1487 - opacity: 0.8;
1488 -}
1489 -.elementor-panel-elements-widget-creation--search-footer {
1490 - border-block-start: var(--e-a-border);
1491 -}
1492 -
1493 -.elementor-panel-category-custom-widgets-empty {
1494 - grid-column: 1/-1;
1495 - width: 100%;
1496 - padding: 0 16px 16px;
1497 -}
1498 -.elementor-panel-category-custom-widgets-empty__message {
1499 - margin: 0;
1500 - font-size: 12px;
1501 - line-height: 1.6;
1502 - color: var(--e-a-color-txt-muted);
1503 -}
1504 -
1505 -.elementor-panel-heading.elementor-panel-category-title .elementor-panel-custom-widgets__cta--heading {
1506 - margin-inline-start: auto;
1507 - padding: 4px 10px;
1508 - border: none;
1509 - background: none;
1510 - color: #C00BB9;
1511 - font-size: 12px;
1512 - font-weight: 500;
1513 - cursor: pointer;
1514 - font-family: var(--e-a-font-family);
1515 - flex-shrink: 0;
1516 -}
1517 -.elementor-panel-heading.elementor-panel-category-title .elementor-panel-custom-widgets__cta--heading:hover {
1518 - opacity: 0.8;
1519 -}
1520 -
1521 1237 #elementor-panel-inner {
1522 1238 position: relative;
1523 1239 height: 100%;
1524 1240 display: flex;
@@ -1544,75 +1260,8 @@
1544 1260 #elementor-panel-get-pro-elements .elementor-nerd-box-icon {
1545 1261 margin-block-start: 20px;
1546 1262 }
1547 1263
1548 -#elementor-panel-content-wrapper:has(> #elementor-panel-page-editor) {
1549 - display: flex;
1550 - flex-direction: column;
1551 -}
1552 -#elementor-panel-content-wrapper:has(> #elementor-panel-page-editor) #elementor-panel-page-editor {
1553 - display: flex;
1554 - flex-direction: column;
1555 - flex: 1;
1556 - min-height: 0;
1557 -}
1558 -#elementor-panel-content-wrapper:has(> #elementor-panel-page-editor) .elementor-panel-editor-sticky-promotion {
1559 - position: sticky;
1560 - inset-block-end: 0;
1561 - margin-block-start: auto;
1562 -}
1563 -#elementor-panel-content-wrapper:has(> #elementor-panel-page-editor) .elementor-panel-editor-sticky-promotion .elementor-get-pro-sticky-message {
1564 - margin-block-start: 0;
1565 -}
1566 -
1567 -#elementor-panel-get-pro-elements-sticky {
1568 - position: sticky;
1569 - inset-block-end: 0;
1570 - margin-block-end: -10px;
1571 -}
1572 -#elementor-panel-get-pro-elements-sticky .elementor-get-pro-sticky-message {
1573 - margin-block-start: -14px;
1574 -}
1575 -
1576 -#elementor-panel-page-elements:has(> #elementor-panel-get-pro-elements-sticky) {
1577 - display: flex;
1578 - flex-direction: column;
1579 - min-height: 100%;
1580 -}
1581 -#elementor-panel-page-elements:has(> #elementor-panel-get-pro-elements-sticky) > #elementor-panel-get-pro-elements-sticky {
1582 - margin-block-start: auto;
1583 -}
1584 -
1585 -#elementor-panel-get-pro-elements-sticky,
1586 -.elementor-panel-editor-sticky-promotion {
1587 - font-size: 14px;
1588 - font-weight: 400;
1589 - line-height: 1.6;
1590 - background-color: var(--e-a-color-white);
1591 -}
1592 -#elementor-panel-get-pro-elements-sticky .elementor-get-pro-sticky-message,
1593 -.elementor-panel-editor-sticky-promotion .elementor-get-pro-sticky-message {
1594 - min-height: 40px;
1595 - display: block;
1596 - padding: 9px min(35px, 5%);
1597 - gap: 10px;
1598 - background-color: var(--e-a-color-white);
1599 - color: var(--e-a-color-black);
1600 - text-align: center;
1601 - box-shadow: 0px -10px 14px -6px rgba(0, 0, 0, 0.05);
1602 -}
1603 -#elementor-panel-get-pro-elements-sticky .elementor-get-pro-sticky-message a,
1604 -.elementor-panel-editor-sticky-promotion .elementor-get-pro-sticky-message a {
1605 - display: inline-block;
1606 - font-size: 13px;
1607 - font-weight: 500;
1608 - color: var(--e-a-btn-bg-accent);
1609 -}
1610 -#elementor-panel-get-pro-elements-sticky img,
1611 -.elementor-panel-editor-sticky-promotion img {
1612 - margin-inline-start: 17px;
1613 -}
1614 -
1615 1264 #elementor-panel-notice-wrapper .elementor-panel-notice {
1616 1265 width: 90%;
1617 1266 margin: 0 auto;
1618 1267 font-style: unset;
@@ -1637,16 +1286,12 @@
1637 1286 background: var(--e-a-color-primary);
1638 1287 border-radius: 50%;
1639 1288 width: 8px;
1640 1289 height: 8px;
1641 - inset-block-start: 5px;
1642 - inset-inline-end: 5px;
1290 + top: 5px;
1291 + right: 5px;
1643 1292 }
1644 1293
1645 -#elementor-panel-footer.elementor-panel-footer-back-compat-wrapper {
1646 - display: none !important;
1647 -}
1648 -
1649 1294 .media-modal.wp-core-ui {
1650 1295 color-scheme: light;
1651 1296 color: #515962;
1652 1297 }
@@ -1681,11 +1326,8 @@
1681 1326 font-size: var(--control-title-size);
1682 1327 line-height: 1;
1683 1328 margin-inline-end: 5px;
1684 1329 }
1685 -.elementor-control .elementor-control-title:empty {
1686 - display: none;
1687 -}
1688 1330 .elementor-control .elementor-control-spinner {
1689 1331 display: flex;
1690 1332 align-items: center;
1691 1333 }
@@ -1692,9 +1334,8 @@
1692 1334 .elementor-control.elementor-control-type-divider {
1693 1335 padding: 0;
1694 1336 }
1695 1337 .elementor-control.elementor-control-type-divider .elementor-control-content {
1696 - margin-inline: 20px;
1697 1338 border-width: 0;
1698 1339 border-block-start: var(--e-a-border);
1699 1340 background-color: var(--e-a-bg-default);
1700 1341 height: 15px;
@@ -1704,23 +1345,24 @@
1704 1345 }
1705 1346 .elementor-control.elementor-control-separator-before:before {
1706 1347 content: "";
1707 1348 position: absolute;
1708 - inset: 0 20px auto;
1709 1349 height: 1px;
1350 + width: calc(100% - 40px);
1351 + top: 0;
1352 + left: 20px;
1710 1353 background-color: var(--e-a-border-color);
1711 1354 }
1712 -.elementor-control.elementor-control-separator-after {
1713 - padding-block-end: 15px;
1714 -}
1715 1355 .elementor-control.elementor-control-separator-after:after {
1716 1356 content: "";
1717 1357 position: absolute;
1718 - inset: auto 20px 0;
1719 1358 height: 1px;
1359 + width: calc(100% - 40px);
1360 + bottom: 0;
1361 + left: 20px;
1720 1362 background-color: var(--e-a-border-color);
1721 1363 }
1722 -.elementor-control.elementor-control-separator-after + .elementor-control-type-tabs + .elementor-control-separator-default, .elementor-control.elementor-control-separator-after:not(.elementor-hidden-control) + .elementor-control-separator-default {
1364 +.elementor-control.elementor-control-separator-after + .elementor-control-type-tabs ~ .elementor-control-separator-default, .elementor-control.elementor-control-separator-after:not(.elementor-hidden-control) ~ .elementor-control-separator-default {
1723 1365 padding-block-start: 15px;
1724 1366 }
1725 1367 .elementor-control.elementor-control-deprecated {
1726 1368 color: var(--e-a-color-warning);
@@ -1758,36 +1400,23 @@
1758 1400 }
1759 1401 body:not(.elementor-device-mobile) .elementor-control.elementor-control-responsive-mobile {
1760 1402 display: none;
1761 1403 }
1762 -.elementor-control-shape_divider_top .elementor-visual-choice-element-image label, .elementor-control-shape_divider_bottom .elementor-visual-choice-element-image label {
1763 - padding: 4px;
1764 -}
1765 -.elementor-control-shape_divider_top img, .elementor-control-shape_divider_bottom img {
1766 - aspect-ratio: 4/1;
1767 - -o-object-fit: cover;
1768 - object-fit: cover;
1769 - -o-object-position: center;
1770 - object-position: center;
1771 -}
1772 -.elementor-control-shape_divider_bottom img {
1773 - rotate: X 180deg;
1774 -}
1775 1404 .elementor-control-custom_css_pro .elementor-nerd-box-message, .elementor-control-custom_attributes_pro .elementor-nerd-box-message {
1776 1405 margin-block-start: 5px;
1777 1406 }
1778 1407
1779 -.elementor-control.e-open .elementor-panel-heading-toggle i, .elementor-control.elementor-active .elementor-panel-heading-toggle i,
1780 -.elementor-panel-category.e-open .elementor-panel-heading-toggle i,
1781 -.elementor-panel-category.elementor-active .elementor-panel-heading-toggle i,
1782 -.elementor-panel-scheme-item.e-open .elementor-panel-heading-toggle i,
1783 -.elementor-panel-scheme-item.elementor-active .elementor-panel-heading-toggle i {
1784 - transform: rotate(90deg);
1408 +.elementor-control.e-open .elementor-panel-heading-toggle .eicon:before, .elementor-control.elementor-active .elementor-panel-heading-toggle .eicon:before,
1409 +.elementor-panel-category.e-open .elementor-panel-heading-toggle .eicon:before,
1410 +.elementor-panel-category.elementor-active .elementor-panel-heading-toggle .eicon:before,
1411 +.elementor-panel-scheme-item.e-open .elementor-panel-heading-toggle .eicon:before,
1412 +.elementor-panel-scheme-item.elementor-active .elementor-panel-heading-toggle .eicon:before {
1413 + content: "\e92a";
1785 1414 }
1786 -.elementor-control:not(.e-open):not(.elementor-active) .elementor-panel-heading-toggle i,
1787 -.elementor-panel-category:not(.e-open):not(.elementor-active) .elementor-panel-heading-toggle i,
1788 -.elementor-panel-scheme-item:not(.e-open):not(.elementor-active) .elementor-panel-heading-toggle i {
1789 - scale: calc(1 * var(--direction-multiplier)) 1;
1415 +.elementor-control:not(.e-open):not(.elementor-active) .elementor-panel-heading-toggle .eicon:before,
1416 +.elementor-panel-category:not(.e-open):not(.elementor-active) .elementor-panel-heading-toggle .eicon:before,
1417 +.elementor-panel-scheme-item:not(.e-open):not(.elementor-active) .elementor-panel-heading-toggle .eicon:before {
1418 + content: "\e90a";
1790 1419 }
1791 1420
1792 1421 .elementor-panel-heading {
1793 1422 display: flex;
@@ -1795,12 +1424,10 @@
1795 1424 gap: 5px;
1796 1425 height: 48px;
1797 1426 padding-inline: 20px;
1798 1427 width: 100%;
1799 - border: 0;
1800 1428 border-block-start: var(--e-a-border);
1801 1429 border-block-start-width: 2px;
1802 - background-color: transparent;
1803 1430 color: var(--e-a-color-txt-accent);
1804 1431 cursor: pointer;
1805 1432 }
1806 1433 .elementor-panel-heading-toggle {
@@ -1811,37 +1438,10 @@
1811 1438 }
1812 1439 .elementor-panel-heading-title {
1813 1440 font-weight: bold;
1814 1441 }
1815 -.elementor-panel-heading-category-chip {
1816 - margin-inline-start: auto;
1817 - background-color: var(--e-a-bg-chip);
1818 - border-radius: 100px;
1819 - padding: 5px 8px;
1820 -}
1821 -.elementor-panel-heading-promotion {
1822 - margin-inline-start: auto;
1823 -}
1824 -.elementor-panel-heading-promotion a {
1825 - color: var(--e-a-color-accent-promotion);
1826 - font-family: "Roboto", sans-serif;
1827 - font-weight: 500;
1828 - font-size: 13px;
1829 -}
1830 -.elementor-panel-heading-promotion a i {
1831 - margin-inline-end: 4px;
1832 - font-size: 14px;
1833 -}
1834 -.elementor-panel-heading-promotion a:hover {
1835 - color: var(--e-a-color-accent-promotion);
1836 -}
1837 -.elementor-panel-heading:focus-visible {
1838 - color: var(--e-a-color-txt-hover);
1839 -}
1840 1442
1841 -#elementor-controls .elementor-control-type-section:first-child .elementor-panel-heading,
1842 -#elementor-panel-page-settings-controls .elementor-control-type-section:first-child .elementor-panel-heading,
1843 -#elementor-panel-editorPreferences-settings-controls .elementor-control-type-section:first-child .elementor-panel-heading {
1443 +#elementor-controls .elementor-control-type-section:first-child .elementor-panel-heading {
1844 1444 border-block-start: none;
1845 1445 }
1846 1446
1847 1447 .elementor-control-field {
@@ -1886,15 +1486,8 @@
1886 1486 .elementor-group-control-attachment_alert .elementor-control-field-description {
1887 1487 margin-block-start: 0;
1888 1488 }
1889 1489
1890 -.elementor-control-start-end .eicon-text-align-left,
1891 -.elementor-control-start-end .eicon-text-align-right,
1892 -.elementor-control-start-end .eicon-h-align-left,
1893 -.elementor-control-start-end .eicon-h-align-right {
1894 - scale: calc(1 * var(--direction-multiplier)) 1;
1895 -}
1896 -
1897 1490 .elementor-update-preview {
1898 1491 margin: 15px 15px 0;
1899 1492 display: flex;
1900 1493 align-items: center;
@@ -1929,9 +1522,9 @@
1929 1522 }
1930 1523 .elementor-control-responsive-switchers__holder {
1931 1524 position: absolute;
1932 1525 width: 100%;
1933 - inset-block-start: 0;
1526 + top: 0;
1934 1527 background-color: var(--e-a-bg-default);
1935 1528 border-radius: var(--e-a-border-radius);
1936 1529 transition: 0.15s;
1937 1530 border: 1px solid transparent;
@@ -2074,10 +1667,10 @@
2074 1667 display: none;
2075 1668 overflow: hidden;
2076 1669 max-height: 0;
2077 1670 position: absolute;
2078 - inset-block-start: -0.8em;
2079 - inset-inline-start: -0.5em;
1671 + top: -0.8em;
1672 + left: -0.5em;
2080 1673 width: 2.5em;
2081 1674 text-align: center;
2082 1675 background-color: var(--e-a-bg-default);
2083 1676 border-radius: var(--e-a-border-radius);
@@ -2097,8 +1690,14 @@
2097 1690 }
2098 1691 .e-units-choices .elementor-units-choices-label:hover {
2099 1692 color: var(--e-a-color-primary-bold);
2100 1693 }
1694 +.e-units-choices .elementor-units-choices-label:not([data-choose=custom]) i {
1695 + display: none;
1696 +}
1697 +.e-units-choices .elementor-units-choices-label[data-choose=custom] span {
1698 + display: none;
1699 +}
2101 1700 .e-units-choices.e-units-choices-open {
2102 1701 display: block;
2103 1702 animation-duration: 1s;
2104 1703 animation-name: e-units-choices-open;
@@ -2119,10 +1718,10 @@
2119 1718 }
2120 1719 .elementor-control-alert {
2121 1720 display: flex;
2122 1721 flex-direction: column;
2123 - justify-content: flex-start;
2124 - align-items: flex-start;
1722 + justify-content: start;
1723 + align-items: start;
2125 1724 gap: 8px;
2126 1725 }
2127 1726 .elementor-control-alert-heading {
2128 1727 font-weight: bold;
@@ -2252,9 +1851,9 @@
2252 1851 }
2253 1852 .elementor-control-responsive-switchers__holder {
2254 1853 position: absolute;
2255 1854 width: 100%;
2256 - inset-block-start: 0;
1855 + top: 0;
2257 1856 background-color: var(--e-a-bg-default);
2258 1857 border-radius: var(--e-a-border-radius);
2259 1858 transition: 0.15s;
2260 1859 border: 1px solid transparent;
@@ -2397,10 +1996,10 @@
2397 1996 display: none;
2398 1997 overflow: hidden;
2399 1998 max-height: 0;
2400 1999 position: absolute;
2401 - inset-block-start: -0.8em;
2402 - inset-inline-start: -0.5em;
2000 + top: -0.8em;
2001 + left: -0.5em;
2403 2002 width: 2.5em;
2404 2003 text-align: center;
2405 2004 background-color: var(--e-a-bg-default);
2406 2005 border-radius: var(--e-a-border-radius);
@@ -2420,8 +2019,14 @@
2420 2019 }
2421 2020 .e-units-choices .elementor-units-choices-label:hover {
2422 2021 color: var(--e-a-color-primary-bold);
2423 2022 }
2023 +.e-units-choices .elementor-units-choices-label:not([data-choose=custom]) i {
2024 + display: none;
2025 +}
2026 +.e-units-choices .elementor-units-choices-label[data-choose=custom] span {
2027 + display: none;
2028 +}
2424 2029 .e-units-choices.e-units-choices-open {
2425 2030 display: block;
2426 2031 animation-duration: 1s;
2427 2032 animation-name: e-units-choices-open;
@@ -2530,9 +2135,9 @@
2530 2135 }
2531 2136 .elementor-control-responsive-switchers__holder {
2532 2137 position: absolute;
2533 2138 width: 100%;
2534 - inset-block-start: 0;
2139 + top: 0;
2535 2140 background-color: var(--e-a-bg-default);
2536 2141 border-radius: var(--e-a-border-radius);
2537 2142 transition: 0.15s;
2538 2143 border: 1px solid transparent;
@@ -2675,10 +2280,10 @@
2675 2280 display: none;
2676 2281 overflow: hidden;
2677 2282 max-height: 0;
2678 2283 position: absolute;
2679 - inset-block-start: -0.8em;
2680 - inset-inline-start: -0.5em;
2284 + top: -0.8em;
2285 + left: -0.5em;
2681 2286 width: 2.5em;
2682 2287 text-align: center;
2683 2288 background-color: var(--e-a-bg-default);
2684 2289 border-radius: var(--e-a-border-radius);
@@ -2698,8 +2303,14 @@
2698 2303 }
2699 2304 .e-units-choices .elementor-units-choices-label:hover {
2700 2305 color: var(--e-a-color-primary-bold);
2701 2306 }
2307 +.e-units-choices .elementor-units-choices-label:not([data-choose=custom]) i {
2308 + display: none;
2309 +}
2310 +.e-units-choices .elementor-units-choices-label[data-choose=custom] span {
2311 + display: none;
2312 +}
2702 2313 .e-units-choices.e-units-choices-open {
2703 2314 display: block;
2704 2315 animation-duration: 1s;
2705 2316 animation-name: e-units-choices-open;
@@ -2798,11 +2409,11 @@
2798 2409 }
2799 2410
2800 2411 .elementor-control-type-icons .elementor-control-media__preview > * {
2801 2412 position: absolute;
2802 - inset-block-start: 50%;
2803 - inset-inline-start: 50%;
2804 - transform: translate(calc(-50% * var(--direction-multiplier)), -50%);
2413 + top: 50%;
2414 + left: 50%;
2415 + transform: translate(-50%, -50%);
2805 2416 }
2806 2417 .elementor-control-type-icons .elementor-control-media__preview i {
2807 2418 font-size: 70px;
2808 2419 }
@@ -2857,9 +2468,12 @@
2857 2468 opacity: 0.6;
2858 2469 }
2859 2470 .elementor-control-type-gallery .elementor-control-gallery-edit {
2860 2471 position: absolute;
2861 - inset: 0;
2472 + top: 0;
2473 + bottom: 0;
2474 + left: 0;
2475 + right: 0;
2862 2476 background-color: rgba(0, 0, 0, 0.2);
2863 2477 padding: 10px;
2864 2478 font-size: 11px;
2865 2479 transition: all 0.3s ease-in-out;
@@ -2868,10 +2482,10 @@
2868 2482 opacity: 0;
2869 2483 }
2870 2484 .elementor-control-type-gallery .elementor-control-gallery-edit span {
2871 2485 position: absolute;
2872 - inset-block-start: 10px;
2873 - inset-inline-end: 10px;
2486 + top: 10px;
2487 + right: 10px;
2874 2488 width: 21px;
2875 2489 height: 21px;
2876 2490 color: var(--e-a-color-white);
2877 2491 background-color: rgba(0, 0, 0, 0.5);
@@ -2981,10 +2595,10 @@
2981 2595 }
2982 2596 .e-global__popover-info-tooltip:after {
2983 2597 content: "";
2984 2598 position: absolute;
2985 - inset-block-end: -17px;
2986 - inset-inline-start: 16px;
2599 + bottom: -17px;
2600 + left: 16px;
2987 2601 border: 10px solid transparent;
2988 2602 border-block-start-color: rgba(0, 0, 0, 0.9);
2989 2603 }
2990 2604 .e-global__popover-info i {
@@ -2990,9 +2604,9 @@
2990 2604 .e-global__popover-info i {
2991 2605 font-size: 13px;
2992 2606 }
2993 2607 .e-global__preview-items-container {
2994 - max-height: 400px;
2608 + max-height: 260px;
2995 2609 overflow-y: auto;
2996 2610 padding: 5px 0;
2997 2611 }
2998 2612 .e-global__preview-items-container::-webkit-scrollbar {
@@ -3001,19 +2615,8 @@
3001 2615 .e-global__preview-items-container::-webkit-scrollbar-thumb {
3002 2616 background-color: #BABFC5;
3003 2617 border-radius: 10px;
3004 2618 }
3005 -.e-global__group-header {
3006 - padding: 12px 20px 5px;
3007 - font-weight: 500;
3008 - font-size: 11px;
3009 - color: var(--e-a-color-txt-muted);
3010 -}
3011 -.e-global__group-divider {
3012 - height: 1px;
3013 - background-color: var(--e-a-border-color);
3014 - margin: 10px 20px;
3015 -}
3016 2619 .e-global__manage-button {
3017 2620 font-weight: 500;
3018 2621 cursor: pointer;
3019 2622 }
@@ -3029,9 +2632,9 @@
3029 2632 font-size: 13px;
3030 2633 content: "\e90e";
3031 2634 position: absolute;
3032 2635 transform: translateY(-50%);
3033 - inset-block-start: 50%;
2636 + top: 50%;
3034 2637 inset-inline-start: 13px;
3035 2638 }
3036 2639 .e-global__color {
3037 2640 padding: 10px 20px;
@@ -3048,10 +2651,13 @@
3048 2651 position: relative;
3049 2652 }
3050 2653 .e-global__color-preview-color, .e-global__color-preview-transparent-bg {
3051 2654 border-radius: 3px;
2655 + height: 100%;
2656 + width: 100%;
3052 2657 position: absolute;
3053 - inset: 0;
2658 + top: 0;
2659 + left: 0;
3054 2660 }
3055 2661 .e-global__color-preview-transparent-bg {
3056 2662 background-image: linear-gradient(45deg, var(--e-a-border-color-bold) 25%, transparent 0, transparent 75%, var(--e-a-border-color-bold) 0, var(--e-a-border-color-bold)), linear-gradient(45deg, var(--e-a-border-color-bold) 25%, transparent 0, transparent 75%, var(--e-a-border-color-bold) 0, var(--e-a-border-color-bold));
3057 2663 background-size: 12px 12px;
@@ -3172,11 +2778,11 @@
3172 2778 display: none;
3173 2779 }
3174 2780 .elementor-control-media .eicon-plus-circle {
3175 2781 position: absolute;
3176 - inset-block-start: 50%;
3177 - inset-inline-start: 50%;
3178 - transform: translate(calc(-50% * var(--direction-multiplier)), -50%);
2782 + top: 50%;
2783 + left: 50%;
2784 + transform: translate(-50%, -50%);
3179 2785 color: var(--e-a-color-white);
3180 2786 font-size: 20px;
3181 2787 }
3182 2788 .elementor-control-media__content__upload-button {
@@ -3185,8 +2791,9 @@
3185 2791 .elementor-control-media__preview {
3186 2792 height: 100%;
3187 2793 background-size: cover;
3188 2794 background-position: center;
2795 + padding-block-end: 42.8571%;
3189 2796 }
3190 2797 .elementor-control-media-area {
3191 2798 background-image: linear-gradient(45deg, var(--e-a-border-color-bold) 25%, transparent 0, transparent 75%, var(--e-a-border-color-bold) 0, var(--e-a-border-color-bold)), linear-gradient(45deg, var(--e-a-border-color-bold) 25%, transparent 0, transparent 75%, var(--e-a-border-color-bold) 0, var(--e-a-border-color-bold));
3192 2799 background-size: 16px 16px;
@@ -3199,11 +2806,11 @@
3199 2806 display: none;
3200 2807 }
3201 2808 .elementor-control-media-area .eicon-video-camera {
3202 2809 position: absolute;
3203 - inset-block-start: 50%;
3204 - inset-inline-start: 50%;
3205 - transform: translate(calc(-50% * var(--direction-multiplier)), -50%);
2810 + top: 50%;
2811 + left: 50%;
2812 + transform: translate(-50%, -50%);
3206 2813 color: rgba(255, 255, 255, 0.7);
3207 2814 font-size: 21px;
3208 2815 }
3209 2816 .elementor-control-media .elementor-control-media__content {
@@ -3214,14 +2821,17 @@
3214 2821 }
3215 2822 .elementor-control-media .elementor-control-media__content:hover:after {
3216 2823 content: "";
3217 2824 position: absolute;
3218 - inset: 0;
2825 + top: 0;
2826 + bottom: 0;
2827 + left: 0;
2828 + right: 0;
3219 2829 background-color: rgba(0, 0, 0, 0.2);
3220 2830 pointer-events: none;
3221 2831 }
3222 2832 .elementor-control-media .elementor-control-media__content:not(:hover) .elementor-control-media__tools {
3223 - inset-block-end: -30px;
2833 + bottom: -30px;
3224 2834 }
3225 2835 .elementor-control-media__content {
3226 2836 transition: all 0.2s ease-in-out;
3227 2837 }
@@ -3226,10 +2836,11 @@
3226 2836 transition: all 0.2s ease-in-out;
3227 2837 }
3228 2838 .elementor-control-media__tools {
3229 2839 position: absolute;
3230 - inset-block-end: 0;
3231 - inset-inline: 0;
2840 + bottom: 0;
2841 + left: 0;
2842 + right: 0;
3232 2843 height: 27px;
3233 2844 transition: all 0.2s ease-in-out;
3234 2845 }
3235 2846 .elementor-control-media__tools > *:not(:first-child) {
@@ -3256,10 +2867,10 @@
3256 2867 }
3257 2868 .elementor-control-media__content__remove {
3258 2869 position: absolute;
3259 2870 z-index: 1;
3260 - inset-block-start: 10px;
3261 - inset-inline-end: 10px;
2871 + top: 10px;
2872 + right: 10px;
3262 2873 width: 20px;
3263 2874 height: 20px;
3264 2875 font-size: 11px;
3265 2876 color: var(--e-a-color-white);
@@ -3358,10 +2969,10 @@
3358 2969 }
3359 2970
3360 2971 .elementor-control-notice {
3361 2972 display: flex;
3362 - justify-content: flex-start;
3363 - align-items: flex-start;
2973 + justify-content: start;
2974 + align-items: start;
3364 2975 gap: 8px;
3365 2976 padding: 16px;
3366 2977 border-radius: 3px;
3367 2978 border: 1px solid var(--notice-control-color, var(--e-a-color-txt));
@@ -3390,10 +3001,10 @@
3390 3001 }
3391 3002 .elementor-control-notice-main {
3392 3003 display: flex;
3393 3004 flex-direction: column;
3394 - justify-content: flex-start;
3395 - align-items: flex-start;
3005 + justify-content: start;
3006 + align-items: start;
3396 3007 gap: 6px;
3397 3008 flex: 1;
3398 3009 }
3399 3010 .elementor-control-notice-main-heading {
@@ -3485,12 +3096,8 @@
3485 3096 }
3486 3097 .elementor-control-type-repeater.elementor-repeater-has-minimum-rows .elementor-repeater-tool-remove {
3487 3098 display: none;
3488 3099 }
3489 -.elementor-control-type-repeater.elementor-repeater-has-maximum-rows .elementor-repeater-tool-duplicate,
3490 -.elementor-control-type-repeater.elementor-repeater-has-maximum-rows .elementor-repeater-add {
3491 - display: none;
3492 -}
3493 3100 .elementor-control-type-repeater .elementor-repeater-fields {
3494 3101 margin: 10px 0;
3495 3102 }
3496 3103 .elementor-control-type-repeater .elementor-repeater-row-controls {
@@ -3551,11 +3158,9 @@
3551 3158 text-align: center;
3552 3159 padding-block-start: 5px;
3553 3160 }
3554 3161
3555 -#elementor-controls,
3556 -#elementor-panel-page-settings-controls,
3557 -#elementor-panel-editorPreferences-settings-controls {
3162 +#elementor-controls {
3558 3163 padding-block-start: 15px;
3559 3164 }
3560 3165
3561 3166 .elementor-control-type-section {
@@ -3600,11 +3205,11 @@
3600 3205 font-family: eicons;
3601 3206 content: "\e8ad";
3602 3207 font-size: 12px;
3603 3208 position: absolute;
3604 - inset-block-start: 50%;
3605 - inset-inline-end: 5px;
3209 + top: 50%;
3606 3210 transform: translateY(-50%);
3211 + right: 5px;
3607 3212 pointer-events: none;
3608 3213 }
3609 3214 .elementor-control-type-select .elementor-control-field.elementor-control-field-select-small .elementor-control-input-wrapper {
3610 3215 max-width: 80px;
@@ -3638,14 +3243,14 @@
3638 3243 }
3639 3244 .elementor-control-type-slider--handles-range .elementor-slider .noUi-handle {
3640 3245 border-radius: 0;
3641 3246 width: 10px;
3642 - transform: translateY(calc(50% - 14px)) translateX(calc(4px * var(--direction-multiplier)));
3247 + transform: translateY(calc(50% - 14px)) translateX(4px);
3643 3248 }
3644 3249 .elementor-control-type-slider--handles-range .elementor-slider .noUi-handle:after {
3645 3250 content: "";
3646 3251 position: absolute;
3647 - inset-block-start: 2px;
3252 + top: 2px;
3648 3253 height: 12px;
3649 3254 width: 11px;
3650 3255 transform: rotate(45deg);
3651 3256 background-color: var(--e-a-color-white);
@@ -3722,11 +3327,11 @@
3722 3327 .elementor-slider .noUi-handle {
3723 3328 height: 16px;
3724 3329 width: 16px;
3725 3330 background-color: var(--e-a-color-white);
3331 + right: 0;
3332 + transform: translateY(calc(50% - 14px)) translateX(8px);
3726 3333 position: absolute;
3727 - inset-inline-end: 0;
3728 - transform: translateY(calc(50% - 14px)) translateX(calc(8px * var(--direction-multiplier)));
3729 3334 box-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
3730 3335 border-radius: 50%;
3731 3336 }
3732 3337 .elementor-slider .noUi-connects {
@@ -3736,9 +3341,12 @@
3736 3341 }
3737 3342 .elementor-slider .noUi-connect {
3738 3343 position: absolute;
3739 3344 z-index: 0;
3740 - inset: 0;
3345 + top: 0;
3346 + left: 0;
3347 + height: 100%;
3348 + width: 100%;
3741 3349 will-change: transform;
3742 3350 transform-origin: 0 0;
3743 3351 background-color: var(--e-a-border-color-focus);
3744 3352 }
@@ -3743,9 +3351,9 @@
3743 3351 background-color: var(--e-a-border-color-focus);
3744 3352 }
3745 3353 .elementor-slider .noUi-tooltip {
3746 3354 position: absolute;
3747 - inset-block-start: calc(100% + 5px);
3355 + top: calc(100% + 5px);
3748 3356 left: calc(50% - 4px);
3749 3357 transform: translateX(-50%);
3750 3358 font-size: 10px;
3751 3359 }
@@ -3832,9 +3440,9 @@
3832 3440 transition-property: opacity, background;
3833 3441 }
3834 3442 .elementor-control-type-switcher .elementor-switch-label:before, .elementor-control-type-switcher .elementor-switch-label:after {
3835 3443 position: absolute;
3836 - inset-block-start: 0;
3444 + top: 0;
3837 3445 width: 50%;
3838 3446 text-align: center;
3839 3447 line-height: 20px;
3840 3448 transition: inherit;
@@ -3840,14 +3448,14 @@
3840 3448 transition: inherit;
3841 3449 }
3842 3450 .elementor-control-type-switcher .elementor-switch-label:before {
3843 3451 content: attr(data-off);
3844 - inset-inline-end: 5px;
3452 + right: 5px;
3845 3453 color: var(--e-a-color-txt-muted);
3846 3454 }
3847 3455 .elementor-control-type-switcher .elementor-switch-label:after {
3848 3456 content: attr(data-on);
3849 - inset-inline-start: 5px;
3457 + left: 5px;
3850 3458 color: var(--e-a-btn-color);
3851 3459 opacity: 0;
3852 3460 }
3853 3461 .elementor-control-type-switcher .elementor-switch-input:checked ~ .elementor-switch-label {
@@ -3860,28 +3468,25 @@
3860 3468 opacity: 1;
3861 3469 }
3862 3470 .elementor-control-type-switcher .elementor-switch-handle {
3863 3471 position: absolute;
3864 - inset-block-start: 1px;
3865 - inset-inline-start: 1px;
3472 + top: 1px;
3473 + left: 1px;
3866 3474 width: 18px;
3867 3475 height: 18px;
3868 3476 background: white;
3869 3477 border-radius: 10px;
3870 - transition: inset-inline-start 0.15s ease-out;
3478 + transition: left 0.15s ease-out;
3871 3479 }
3872 3480 .elementor-control-type-switcher .elementor-switch-input:checked ~ .elementor-switch-handle {
3873 - inset-inline-start: initial;
3874 - inset-inline-end: 1px;
3481 + left: initial;
3482 + right: 1px;
3875 3483 }
3876 3484
3877 3485 .elementor-control-type-tabs {
3878 - display: none;
3486 + display: flex;
3879 3487 font-size: var(--control-title-size);
3880 3488 }
3881 -.elementor-control-type-tabs:has(> :not(.elementor-control-type-tab.elementor-hidden-control)) {
3882 - display: flex;
3883 -}
3884 3489
3885 3490 .elementor-control-type-tab {
3886 3491 text-align: center;
3887 3492 width: 100%;
@@ -3924,10 +3529,10 @@
3924 3529 }
3925 3530 .elementor-control-type-textarea:not(.elementor-control-dynamic-value) .elementor-control-dynamic-switcher,
3926 3531 .elementor-control-type-code:not(.elementor-control-dynamic-value) .elementor-control-dynamic-switcher {
3927 3532 position: absolute;
3928 - inset-block-start: 0;
3929 - inset-inline-end: 0;
3533 + top: 0;
3534 + right: 0;
3930 3535 z-index: 1;
3931 3536 }
3932 3537 .elementor-control-type-textarea .elementor-control-input-wrapper,
3933 3538 .elementor-control-type-code .elementor-control-input-wrapper {
@@ -4005,10 +3610,10 @@
4005 3610 }
4006 3611 .elementor-control-type-url .elementor-control-url-autocomplete-spinner {
4007 3612 display: none;
4008 3613 position: absolute;
4009 - inset-block-start: 5px;
4010 - inset-inline-end: 0;
3614 + top: 5px;
3615 + right: 0;
4011 3616 width: 10px;
4012 3617 height: 10px;
4013 3618 font-size: 10px;
4014 3619 color: var(--e-a-color-txt-disabled);
@@ -4059,76 +3664,8 @@
4059 3664 font-size: 10px;
4060 3665 padding-block-start: 2px;
4061 3666 }
4062 3667
4063 -.elementor-control-type-visual_choice {
4064 - width: 100%;
4065 -}
4066 -
4067 -.elementor-visual-choice-choices {
4068 - display: grid;
4069 - gap: 8px;
4070 - grid-template-columns: repeat(var(--elementor-visual-choice-columns), 1fr);
4071 - text-align: center;
4072 - border-radius: var(--e-a-border-radius);
4073 - overflow: hidden;
4074 -}
4075 -
4076 -.elementor-visual-choice-element {
4077 - display: flex;
4078 - flex-direction: column;
4079 - align-items: center;
4080 - justify-content: center;
4081 - gap: 8px;
4082 - width: auto;
4083 -}
4084 -.elementor-visual-choice-element-image label {
4085 - border: var(--e-a-border-bold);
4086 - border-radius: var(--e-a-border-radius);
4087 - font-size: 12px;
4088 - transition: var(--e-a-transition-hover);
4089 - cursor: pointer;
4090 - overflow: hidden;
4091 - width: 100%;
4092 - padding: 8px;
4093 -}
4094 -.elementor-visual-choice-element-image input.e-visual-choice-placeholder + label, .elementor-visual-choice-element-image input:checked + label, .elementor-visual-choice-element-image input:hover + label {
4095 - background-color: var(--e-a-bg-active-bold);
4096 - opacity: 1;
4097 -}
4098 -.elementor-visual-choice-element-image input:checked + label {
4099 - border-color: var(--e-a-color-primary-bold);
4100 -}
4101 -.elementor-visual-choice-element-image input:not(:checked) + label {
4102 - background-color: var(--e-a-color-white);
4103 - opacity: 0.5;
4104 -}
4105 -.elementor-visual-choice-element-image img {
4106 - width: 100%;
4107 - height: auto;
4108 -}
4109 -.elementor-visual-choice-element-button {
4110 - grid-column: span var(--elementor-visual-choice-columns);
4111 -}
4112 -.elementor-visual-choice-element-button label {
4113 - width: -moz-fit-content;
4114 - width: fit-content;
4115 -}
4116 -.elementor-visual-choice-element-button input:checked + .elementor-button, .elementor-visual-choice-element-button input:hover + .elementor-button {
4117 - background-color: var(--e-a-bg-active-bold);
4118 -}
4119 -.elementor-visual-choice-element-button input:checked + .elementor-button {
4120 - border-color: var(--e-a-color-primary-bold);
4121 -}
4122 -
4123 -.elementor-label-inline .elementor-visual-choice-choices {
4124 - justify-content: flex-end;
4125 -}
4126 -
4127 -.tipsy-inner {
4128 - white-space: pre-line;
4129 -}
4130 -
4131 3668 .elementor-control-type-wp_widget .widget-inside {
4132 3669 line-height: 2;
4133 3670 background-color: inherit;
4134 3671 display: block;
@@ -4272,13 +3809,13 @@
4272 3809 --e-a-mode-switcher-width: 15px;
4273 3810 --e-a-mode-switcher-height: 50px;
4274 3811 --e-a-mode-switcher-icon-size: 15px;
4275 3812 position: absolute;
4276 - inset-block-start: 50%;
4277 - inset-inline-start: 100%;
3813 + left: 100%;
3814 + top: 50%;
4278 3815 transform: translateY(-50%);
4279 3816 background-color: var(--e-a-bg-default);
4280 - box-shadow: calc(3px * var(--direction-multiplier, 1)) 1px 3px rgba(0, 0, 0, 0.05);
3817 + box-shadow: 3px 1px 3px rgba(0, 0, 0, 0.05);
4281 3818 transition: 0.3s opacity;
4282 3819 }
4283 3820 #elementor-mode-switcher:hover {
4284 3821 background-color: var(--e-a-bg-hover);
@@ -4305,10 +3842,8 @@
4305 3842
4306 3843 .elementor-revision-item__wrapper {
4307 3844 display: flex;
4308 3845 align-items: center;
4309 - text-align: start;
4310 - width: 100%;
4311 3846 border: var(--e-a-border);
4312 3847 border-radius: var(--e-a-border-radius);
4313 3848 padding: 10px 15px;
4314 3849 margin-block-end: 10px;
@@ -4313,11 +3848,10 @@
4313 3848 padding: 10px 15px;
4314 3849 margin-block-end: 10px;
4315 3850 font-size: 11px;
4316 3851 transition: var(--e-a-transition-hover);
4317 - background-color: transparent;
4318 3852 }
4319 -.elementor-revision-item__wrapper:hover, .elementor-revision-item__wrapper:focus {
3853 +.elementor-revision-item__wrapper:hover {
4320 3854 background-color: var(--e-a-bg-hover);
4321 3855 }
4322 3856 .elementor-revision-item-loading .elementor-revision-item__tools-current {
4323 3857 display: none;
@@ -4348,11 +3882,11 @@
4348 3882 }
4349 3883
4350 3884 #elementor-panel-revisions-loading {
4351 3885 position: absolute;
4352 - inset-block-start: 50%;
4353 - inset-inline-start: 50%;
4354 - transform: translate(calc(-50% * var(--direction-multiplier)), -50%);
3886 + top: 50%;
3887 + left: 50%;
3888 + transform: translate(-50%, -50%);
4355 3889 }
4356 3890 #elementor-panel-revisions-loading .eicon-loading {
4357 3891 font-size: 50px;
4358 3892 }
@@ -4366,25 +3900,22 @@
4366 3900
4367 3901 .elementor-history-item {
4368 3902 display: flex;
4369 3903 align-items: center;
4370 - text-align: start;
4371 3904 border: var(--e-a-border);
4372 3905 border-radius: var(--e-a-border-radius);
4373 3906 padding: 10px 15px;
4374 3907 margin-block-end: 10px;
4375 - width: 100%;
4376 3908 font-size: 11px;
4377 3909 line-height: 1.4;
4378 - background-color: transparent;
4379 3910 cursor: pointer;
4380 3911 transition: var(--e-a-transition-hover);
4381 3912 }
4382 -.elementor-history-item:hover:not(.elementor-history-item-current), .elementor-history-item:focus:not(.elementor-history-item-current) {
3913 +.elementor-history-item:hover:not(.elementor-history-item-current) {
4383 3914 background-color: var(--e-a-bg-hover);
4384 3915 color: var(--e-a-txt-color-hover);
4385 3916 }
4386 -.elementor-history-item:hover:not(.elementor-history-item-current) .elementor-history-item__icon .eicon:before, .elementor-history-item:focus:not(.elementor-history-item-current) .elementor-history-item__icon .eicon:before {
3917 +.elementor-history-item:hover:not(.elementor-history-item-current) .elementor-history-item__icon .eicon:before {
4387 3918 content: "\e924";
4388 3919 }
4389 3920 .elementor-history-item-current {
4390 3921 border-color: var(--e-a-border-color-accent);
@@ -4390,9 +3921,9 @@
4390 3921 border-color: var(--e-a-border-color-accent);
4391 3922 background-color: var(--e-a-bg-active);
4392 3923 color: var(--e-a-txt-color-active);
4393 3924 }
4394 -.elementor-history-item-current .elementor-history-item__icon .eicon:before, .elementor-history-item-current:hover .elementor-history-item__icon .eicon:before, .elementor-history-item-current:focus .elementor-history-item__icon .eicon:before {
3925 +.elementor-history-item-current .elementor-history-item__icon .eicon:before, .elementor-history-item-current:hover .elementor-history-item__icon .eicon:before {
4395 3926 content: "\e90e";
4396 3927 }
4397 3928 .elementor-history-item__details {
4398 3929 width: 95%;
@@ -4436,10 +3967,10 @@
4436 3967 .e-control-display-conditions-promotion__wrapper {
4437 3968 display: flex;
4438 3969 justify-content: space-between;
4439 3970 }
4440 -.e-control-display-conditions-promotion__wrapper:hover .eicon-upgrade-crown-full.e-control-display-conditions-promotion {
4441 - color: var(--e-a-color-accent-promotion);
3971 +.e-control-display-conditions-promotion__wrapper:hover .eicon-lock.e-control-display-conditions-promotion {
3972 + color: var(--e-a-color-accent);
4442 3973 }
4443 3974 .e-control-display-conditions-promotion__description {
4444 3975 display: flex;
4445 3976 align-self: center;
@@ -4452,11 +3983,8 @@
4452 3983 display: flex;
4453 3984 justify-content: center;
4454 3985 align-items: center;
4455 3986 }
4456 -.e-control-display-conditions-promotion__lock-wrapper .eicon-upgrade-crown-full {
4457 - color: var(--e-a-color-accent-promotion-disabled);
4458 -}
4459 3987 .e-control-display-conditions-promotion.eicon-flow {
4460 3988 align-self: flex-end;
4461 3989 cursor: pointer;
4462 3990 border: var(--e-a-border-bold);
@@ -4467,15 +3995,12 @@
4467 3995 background-color: var(--e-a-bg-active);
4468 3996 color: #E73CF6;
4469 3997 }
4470 3998
4471 -.e-control-motion-effects-promotion__wrapper:hover .eicon-upgrade-crown-full, .e-control-promotion__wrapper:hover .eicon-upgrade-crown-full {
4472 - color: var(--e-a-color-accent-promotion);
3999 +.e-control-motion-effects-promotion__wrapper:hover .eicon-lock {
4000 + color: var(--e-a-color-accent);
4473 4001 }
4474 -.e-control-motion-effects-promotion__wrapper .elementor-control-title, .e-control-promotion__wrapper .elementor-control-title {
4475 - margin-inline-end: 0;
4476 -}
4477 -.e-control-motion-effects-promotion__wrapper .select-promotion, .e-control-promotion__wrapper .select-promotion {
4002 +.e-control-motion-effects-promotion__wrapper .select-promotion {
4478 4003 display: flex;
4479 4004 flex-direction: column;
4480 4005 justify-content: center;
4481 4006 padding-inline-start: 5px;
@@ -4489,27 +4014,15 @@
4489 4014 box-shadow: none;
4490 4015 border: var(--e-a-border-bold);
4491 4016 font-size: var(--control-title-size);
4492 4017 }
4493 -.e-control-motion-effects-promotion__lock-wrapper, .e-control-promotion__lock-wrapper {
4018 +.e-control-motion-effects-promotion__lock-wrapper {
4494 4019 width: 2.5rem;
4495 4020 display: flex;
4496 4021 justify-content: center;
4497 4022 align-items: center;
4498 4023 }
4499 -.e-control-motion-effects-promotion__lock-wrapper .eicon-upgrade-crown-full, .e-control-promotion__lock-wrapper .eicon-upgrade-crown-full {
4500 - color: var(--e-a-color-accent-promotion-disabled);
4501 -}
4502 4024
4503 -.e-link-promotion {
4504 - font-family: "Roboto", sans-serif;
4505 - font-weight: 500;
4506 - color: #93003f;
4507 -}
4508 -.e-link-promotion:hover {
4509 - color: #93003f;
4510 -}
4511 -
4512 4025 .elementor-panel #elementor-panel-header #elementor-panel-header-kit-close,
4513 4026 .elementor-panel #elementor-panel-header #elementor-panel-header-kit-back {
4514 4027 display: none;
4515 4028 }
@@ -4529,9 +4042,11 @@
4529 4042 .elementor-editor-kit .elementor-panel #elementor-panel-page-menu {
4530 4043 padding: 25px 15px 0;
4531 4044 }
4532 4045 .elementor-editor-kit #elementor-panel-header-add-button,
4533 -.elementor-editor-kit #elementor-panel-header-menu-button {
4046 +.elementor-editor-kit #elementor-panel-header-menu-button,
4047 +.elementor-editor-kit #elementor-panel-footer-sub-menu-item-save-template,
4048 +.elementor-editor-kit #elementor-panel-footer-navigator {
4534 4049 display: none;
4535 4050 }
4536 4051
4537 4052 .elementor-control-type-global-style-repeater .elementor-repeater-fields {
@@ -4584,13 +4099,13 @@
4584 4099 }
4585 4100 .elementor-control-type-global-style-repeater .elementor-controls-popover {
4586 4101 align-self: end;
4587 4102 margin-block-start: 35px;
4588 - inset-block-start: 0;
4103 + top: 0;
4589 4104 width: 100%;
4590 4105 }
4591 4106 .elementor-control-type-global-style-repeater .elementor-controls-popover:before {
4592 - inset-inline-end: 5px;
4107 + right: 5px;
4593 4108 }
4594 4109 .elementor-control-type-global-style-repeater .elementor-controls-popover .elementor-control {
4595 4110 padding: 0 20px 15px;
4596 4111 }
@@ -4700,33 +4215,21 @@
4700 4215 .elementor-button:not(.elementor-button-state) .elementor-state-icon,
4701 4216 .e-btn:not(.elementor-button-state) .elementor-state-icon {
4702 4217 display: none;
4703 4218 }
4704 -.elementor-button.e-btn-txt, .dialog-type-confirm .dialog-buttons-wrapper .elementor-button.dialog-button.dialog-cancel,
4705 -.dialog-type-alert .dialog-buttons-wrapper .elementor-button.dialog-button.dialog-cancel,
4706 -.e-btn.e-btn-txt,
4707 -.dialog-type-confirm .dialog-buttons-wrapper .e-btn.dialog-button.dialog-cancel,
4708 -.dialog-type-alert .dialog-buttons-wrapper .e-btn.dialog-button.dialog-cancel {
4219 +.elementor-button.e-btn-txt,
4220 +.e-btn.e-btn-txt {
4709 4221 background: transparent;
4710 4222 color: var(--e-a-color-txt);
4711 4223 }
4712 -.elementor-button.e-btn-txt:hover, .dialog-type-confirm .dialog-buttons-wrapper .elementor-button.dialog-button.dialog-cancel:hover,
4713 -.dialog-type-alert .dialog-buttons-wrapper .elementor-button.dialog-button.dialog-cancel:hover, .elementor-button.e-btn-txt:focus, .dialog-type-confirm .dialog-buttons-wrapper .elementor-button.dialog-button.dialog-cancel:focus,
4714 -.dialog-type-alert .dialog-buttons-wrapper .elementor-button.dialog-button.dialog-cancel:focus,
4224 +.elementor-button.e-btn-txt:hover, .elementor-button.e-btn-txt:focus,
4715 4225 .e-btn.e-btn-txt:hover,
4716 -.dialog-type-confirm .dialog-buttons-wrapper .e-btn.dialog-button.dialog-cancel:hover,
4717 -.dialog-type-alert .dialog-buttons-wrapper .e-btn.dialog-button.dialog-cancel:hover,
4718 -.e-btn.e-btn-txt:focus,
4719 -.dialog-type-confirm .dialog-buttons-wrapper .e-btn.dialog-button.dialog-cancel:focus,
4720 -.dialog-type-alert .dialog-buttons-wrapper .e-btn.dialog-button.dialog-cancel:focus {
4226 +.e-btn.e-btn-txt:focus {
4721 4227 background: var(--e-a-bg-hover);
4722 4228 color: var(--e-a-color-txt-hover);
4723 4229 }
4724 -.elementor-button.e-btn-txt:disabled, .dialog-type-confirm .dialog-buttons-wrapper .elementor-button.dialog-button.dialog-cancel:disabled,
4725 -.dialog-type-alert .dialog-buttons-wrapper .elementor-button.dialog-button.dialog-cancel:disabled,
4726 -.e-btn.e-btn-txt:disabled,
4727 -.dialog-type-confirm .dialog-buttons-wrapper .e-btn.dialog-button.dialog-cancel:disabled,
4728 -.dialog-type-alert .dialog-buttons-wrapper .e-btn.dialog-button.dialog-cancel:disabled {
4230 +.elementor-button.e-btn-txt:disabled,
4231 +.e-btn.e-btn-txt:disabled {
4729 4232 background: transparent;
4730 4233 color: var(--e-a-color-txt-disabled);
4731 4234 }
4732 4235 .elementor-button.e-btn-txt-border,
@@ -4744,90 +4247,27 @@
4744 4247 .e-btn.e-success:hover,
4745 4248 .e-btn.e-success:focus {
4746 4249 background-color: var(--e-a-btn-bg-success-hover);
4747 4250 }
4748 -.elementor-button.e-primary, .dialog-type-confirm .dialog-buttons-wrapper .elementor-button.dialog-button.dialog-ok,
4749 -.dialog-type-alert .dialog-buttons-wrapper .elementor-button.dialog-button.dialog-ok, .dialog-type-confirm .dialog-buttons-wrapper .elementor-button.dialog-button.dialog-take_over,
4750 -.dialog-type-alert .dialog-buttons-wrapper .elementor-button.dialog-button.dialog-take_over,
4751 -.e-btn.e-primary,
4752 -.dialog-type-confirm .dialog-buttons-wrapper .e-btn.dialog-button.dialog-ok,
4753 -.dialog-type-alert .dialog-buttons-wrapper .e-btn.dialog-button.dialog-ok,
4754 -.dialog-type-confirm .dialog-buttons-wrapper .e-btn.dialog-button.dialog-take_over,
4755 -.dialog-type-alert .dialog-buttons-wrapper .e-btn.dialog-button.dialog-take_over {
4251 +.elementor-button.e-primary,
4252 +.e-btn.e-primary {
4756 4253 background-color: var(--e-a-btn-bg-primary);
4757 4254 color: var(--e-a-btn-color);
4758 4255 }
4759 -.elementor-button.e-primary:hover, .dialog-type-confirm .dialog-buttons-wrapper .elementor-button.dialog-button.dialog-ok:hover,
4760 -.dialog-type-alert .dialog-buttons-wrapper .elementor-button.dialog-button.dialog-ok:hover, .dialog-type-confirm .dialog-buttons-wrapper .elementor-button.dialog-button.dialog-take_over:hover,
4761 -.dialog-type-alert .dialog-buttons-wrapper .elementor-button.dialog-button.dialog-take_over:hover, .elementor-button.e-primary:focus, .dialog-type-confirm .dialog-buttons-wrapper .elementor-button.dialog-button.dialog-ok:focus,
4762 -.dialog-type-alert .dialog-buttons-wrapper .elementor-button.dialog-button.dialog-ok:focus, .dialog-type-confirm .dialog-buttons-wrapper .elementor-button.dialog-button.dialog-take_over:focus,
4763 -.dialog-type-alert .dialog-buttons-wrapper .elementor-button.dialog-button.dialog-take_over:focus,
4256 +.elementor-button.e-primary:hover, .elementor-button.e-primary:focus,
4764 4257 .e-btn.e-primary:hover,
4765 -.dialog-type-confirm .dialog-buttons-wrapper .e-btn.dialog-button.dialog-ok:hover,
4766 -.dialog-type-alert .dialog-buttons-wrapper .e-btn.dialog-button.dialog-ok:hover,
4767 -.dialog-type-confirm .dialog-buttons-wrapper .e-btn.dialog-button.dialog-take_over:hover,
4768 -.dialog-type-alert .dialog-buttons-wrapper .e-btn.dialog-button.dialog-take_over:hover,
4769 -.e-btn.e-primary:focus,
4770 -.dialog-type-confirm .dialog-buttons-wrapper .e-btn.dialog-button.dialog-ok:focus,
4771 -.dialog-type-alert .dialog-buttons-wrapper .e-btn.dialog-button.dialog-ok:focus,
4772 -.dialog-type-confirm .dialog-buttons-wrapper .e-btn.dialog-button.dialog-take_over:focus,
4773 -.dialog-type-alert .dialog-buttons-wrapper .e-btn.dialog-button.dialog-take_over:focus {
4258 +.e-btn.e-primary:focus {
4774 4259 background-color: var(--e-a-btn-bg-primary-hover);
4775 4260 color: var(--e-a-btn-color);
4776 4261 }
4777 -.elementor-button.e-primary.e-btn-txt, .dialog-type-confirm .dialog-buttons-wrapper .elementor-button.e-btn-txt.dialog-button.dialog-ok,
4778 -.dialog-type-alert .dialog-buttons-wrapper .elementor-button.e-btn-txt.dialog-button.dialog-ok, .dialog-type-confirm .dialog-buttons-wrapper .elementor-button.e-btn-txt.dialog-button.dialog-take_over,
4779 -.dialog-type-alert .dialog-buttons-wrapper .elementor-button.e-btn-txt.dialog-button.dialog-take_over, .dialog-type-confirm .dialog-buttons-wrapper .elementor-button.e-primary.dialog-button.dialog-cancel, .dialog-type-confirm .dialog-buttons-wrapper .elementor-button.dialog-button.dialog-ok.dialog-cancel, .dialog-type-confirm .dialog-buttons-wrapper .elementor-button.dialog-button.dialog-take_over.dialog-cancel,
4780 -.dialog-type-alert .dialog-buttons-wrapper .elementor-button.e-primary.dialog-button.dialog-cancel,
4781 -.dialog-type-alert .dialog-buttons-wrapper .elementor-button.dialog-button.dialog-ok.dialog-cancel,
4782 -.dialog-type-alert .dialog-buttons-wrapper .elementor-button.dialog-button.dialog-take_over.dialog-cancel,
4783 -.e-btn.e-primary.e-btn-txt,
4784 -.dialog-type-confirm .dialog-buttons-wrapper .e-btn.e-btn-txt.dialog-button.dialog-ok,
4785 -.dialog-type-alert .dialog-buttons-wrapper .e-btn.e-btn-txt.dialog-button.dialog-ok,
4786 -.dialog-type-confirm .dialog-buttons-wrapper .e-btn.e-btn-txt.dialog-button.dialog-take_over,
4787 -.dialog-type-alert .dialog-buttons-wrapper .e-btn.e-btn-txt.dialog-button.dialog-take_over,
4788 -.dialog-type-confirm .dialog-buttons-wrapper .e-btn.e-primary.dialog-button.dialog-cancel,
4789 -.dialog-type-confirm .dialog-buttons-wrapper .e-btn.dialog-button.dialog-ok.dialog-cancel,
4790 -.dialog-type-confirm .dialog-buttons-wrapper .e-btn.dialog-button.dialog-take_over.dialog-cancel,
4791 -.dialog-type-alert .dialog-buttons-wrapper .e-btn.e-primary.dialog-button.dialog-cancel,
4792 -.dialog-type-alert .dialog-buttons-wrapper .e-btn.dialog-button.dialog-ok.dialog-cancel,
4793 -.dialog-type-alert .dialog-buttons-wrapper .e-btn.dialog-button.dialog-take_over.dialog-cancel {
4262 +.elementor-button.e-primary.e-btn-txt,
4263 +.e-btn.e-primary.e-btn-txt {
4794 4264 background: transparent;
4795 4265 color: var(--e-a-color-primary-bold);
4796 4266 }
4797 -.elementor-button.e-primary.e-btn-txt:hover, .dialog-type-confirm .dialog-buttons-wrapper .elementor-button.e-btn-txt.dialog-button.dialog-ok:hover,
4798 -.dialog-type-alert .dialog-buttons-wrapper .elementor-button.e-btn-txt.dialog-button.dialog-ok:hover, .dialog-type-confirm .dialog-buttons-wrapper .elementor-button.e-btn-txt.dialog-button.dialog-take_over:hover,
4799 -.dialog-type-alert .dialog-buttons-wrapper .elementor-button.e-btn-txt.dialog-button.dialog-take_over:hover, .dialog-type-confirm .dialog-buttons-wrapper .elementor-button.e-primary.dialog-button.dialog-cancel:hover, .dialog-type-confirm .dialog-buttons-wrapper .elementor-button.dialog-button.dialog-ok.dialog-cancel:hover, .dialog-type-confirm .dialog-buttons-wrapper .elementor-button.dialog-button.dialog-take_over.dialog-cancel:hover,
4800 -.dialog-type-alert .dialog-buttons-wrapper .elementor-button.e-primary.dialog-button.dialog-cancel:hover,
4801 -.dialog-type-alert .dialog-buttons-wrapper .elementor-button.dialog-button.dialog-ok.dialog-cancel:hover,
4802 -.dialog-type-alert .dialog-buttons-wrapper .elementor-button.dialog-button.dialog-take_over.dialog-cancel:hover, .elementor-button.e-primary.e-btn-txt:focus, .dialog-type-confirm .dialog-buttons-wrapper .elementor-button.e-btn-txt.dialog-button.dialog-ok:focus,
4803 -.dialog-type-alert .dialog-buttons-wrapper .elementor-button.e-btn-txt.dialog-button.dialog-ok:focus, .dialog-type-confirm .dialog-buttons-wrapper .elementor-button.e-btn-txt.dialog-button.dialog-take_over:focus,
4804 -.dialog-type-alert .dialog-buttons-wrapper .elementor-button.e-btn-txt.dialog-button.dialog-take_over:focus, .dialog-type-confirm .dialog-buttons-wrapper .elementor-button.e-primary.dialog-button.dialog-cancel:focus, .dialog-type-confirm .dialog-buttons-wrapper .elementor-button.dialog-button.dialog-ok.dialog-cancel:focus, .dialog-type-confirm .dialog-buttons-wrapper .elementor-button.dialog-button.dialog-take_over.dialog-cancel:focus,
4805 -.dialog-type-alert .dialog-buttons-wrapper .elementor-button.e-primary.dialog-button.dialog-cancel:focus,
4806 -.dialog-type-alert .dialog-buttons-wrapper .elementor-button.dialog-button.dialog-ok.dialog-cancel:focus,
4807 -.dialog-type-alert .dialog-buttons-wrapper .elementor-button.dialog-button.dialog-take_over.dialog-cancel:focus,
4267 +.elementor-button.e-primary.e-btn-txt:hover, .elementor-button.e-primary.e-btn-txt:focus,
4808 4268 .e-btn.e-primary.e-btn-txt:hover,
4809 -.dialog-type-confirm .dialog-buttons-wrapper .e-btn.e-btn-txt.dialog-button.dialog-ok:hover,
4810 -.dialog-type-alert .dialog-buttons-wrapper .e-btn.e-btn-txt.dialog-button.dialog-ok:hover,
4811 -.dialog-type-confirm .dialog-buttons-wrapper .e-btn.e-btn-txt.dialog-button.dialog-take_over:hover,
4812 -.dialog-type-alert .dialog-buttons-wrapper .e-btn.e-btn-txt.dialog-button.dialog-take_over:hover,
4813 -.dialog-type-confirm .dialog-buttons-wrapper .e-btn.e-primary.dialog-button.dialog-cancel:hover,
4814 -.dialog-type-confirm .dialog-buttons-wrapper .e-btn.dialog-button.dialog-ok.dialog-cancel:hover,
4815 -.dialog-type-confirm .dialog-buttons-wrapper .e-btn.dialog-button.dialog-take_over.dialog-cancel:hover,
4816 -.dialog-type-alert .dialog-buttons-wrapper .e-btn.e-primary.dialog-button.dialog-cancel:hover,
4817 -.dialog-type-alert .dialog-buttons-wrapper .e-btn.dialog-button.dialog-ok.dialog-cancel:hover,
4818 -.dialog-type-alert .dialog-buttons-wrapper .e-btn.dialog-button.dialog-take_over.dialog-cancel:hover,
4819 -.e-btn.e-primary.e-btn-txt:focus,
4820 -.dialog-type-confirm .dialog-buttons-wrapper .e-btn.e-btn-txt.dialog-button.dialog-ok:focus,
4821 -.dialog-type-alert .dialog-buttons-wrapper .e-btn.e-btn-txt.dialog-button.dialog-ok:focus,
4822 -.dialog-type-confirm .dialog-buttons-wrapper .e-btn.e-btn-txt.dialog-button.dialog-take_over:focus,
4823 -.dialog-type-alert .dialog-buttons-wrapper .e-btn.e-btn-txt.dialog-button.dialog-take_over:focus,
4824 -.dialog-type-confirm .dialog-buttons-wrapper .e-btn.e-primary.dialog-button.dialog-cancel:focus,
4825 -.dialog-type-confirm .dialog-buttons-wrapper .e-btn.dialog-button.dialog-ok.dialog-cancel:focus,
4826 -.dialog-type-confirm .dialog-buttons-wrapper .e-btn.dialog-button.dialog-take_over.dialog-cancel:focus,
4827 -.dialog-type-alert .dialog-buttons-wrapper .e-btn.e-primary.dialog-button.dialog-cancel:focus,
4828 -.dialog-type-alert .dialog-buttons-wrapper .e-btn.dialog-button.dialog-ok.dialog-cancel:focus,
4829 -.dialog-type-alert .dialog-buttons-wrapper .e-btn.dialog-button.dialog-take_over.dialog-cancel:focus {
4269 +.e-btn.e-primary.e-btn-txt:focus {
4830 4270 background: var(--e-a-bg-primary);
4831 4271 }
4832 4272 .elementor-button.go-pro, .elementor-button.e-accent,
4833 4273 .e-btn.go-pro,
@@ -4874,13 +4314,8 @@
4874 4314 .e-btn.elementor-button-danger,
4875 4315 .e-btn.e-danger {
4876 4316 background-color: var(--e-a-btn-bg-danger);
4877 4317 }
4878 -.elementor-button.elementor-button-danger.color-white, .elementor-button.e-danger.color-white,
4879 -.e-btn.elementor-button-danger.color-white,
4880 -.e-btn.e-danger.color-white {
4881 - color: var(--e-a-color-white);
4882 -}
4883 4318 .elementor-button.elementor-button-danger:hover, .elementor-button.elementor-button-danger:focus, .elementor-button.e-danger:hover, .elementor-button.e-danger:focus,
4884 4319 .e-btn.elementor-button-danger:hover,
4885 4320 .e-btn.elementor-button-danger:focus,
4886 4321 .e-btn.e-danger:hover,
@@ -4919,23 +4354,22 @@
4919 4354 }
4920 4355
4921 4356 #elementor-preview-responsive-wrapper {
4922 4357 transform-origin: top center;
4923 - margin: 20px;
4358 + padding: 20px;
4924 4359 transform: scale(var(--e-preview-scale, 1));
4925 - overflow: hidden;
4926 4360 }
4927 4361 .elementor-device-desktop #elementor-preview-responsive-wrapper {
4928 4362 min-width: 1025px;
4929 4363 width: 100%;
4930 4364 height: 100%;
4931 - margin: 0;
4365 + padding: 0;
4932 4366 position: relative;
4933 4367 }
4934 4368 body.e-is-device-mode:not(.elementor-device-desktop) #elementor-preview-responsive-wrapper {
4935 4369 width: var(--e-editor-preview-width);
4936 4370 height: var(--e-editor-preview-height);
4937 - margin: 20px max((100vw - var(--e-editor-panel-width) - var(--e-editor-preview-width)) / 2, 20px);
4371 + margin: 0 max((100vw - var(--e-editor-panel-width) - var(--e-editor-preview-width)) / 2, 20px);
4938 4372 box-sizing: content-box;
4939 4373 position: relative;
4940 4374 max-height: calc(100vh - 80px);
4941 4375 }
@@ -4997,10 +4431,9 @@
4997 4431 #elementor-preview-responsive-wrapper .ui-resizable-s {
4998 4432 bottom: 0;
4999 4433 }
5000 4434 #elementor-preview-responsive-wrapper .ui-resizable-e {
5001 - width: 10px;
5002 - right: -5px;
4435 + right: 0;
5003 4436 }
5004 4437 #elementor-preview-responsive-wrapper .ui-resizable-w {
5005 4438 left: 0;
5006 4439 }
@@ -5011,20 +4444,8 @@
5011 4444 background-color: #fff;
5012 4445 box-shadow: 0 0 3px rgba(0, 0, 0, 0.3), 0 0 20px rgba(0, 0, 0, 0.15);
5013 4446 }
5014 4447
5015 -#elementor-template-library-modal button:focus-visible,
5016 -#elementor-template-library-modal a:focus-visible,
5017 -#elementor-template-library-modal input:focus-visible,
5018 -#elementor-template-library-modal select:focus-visible,
5019 -#elementor-template-library-modal [tabindex="0"]:focus-visible,
5020 -#elementor-template-library-modal [role=tab]:focus-visible,
5021 -#elementor-template-library-modal [role=radio]:focus-visible,
5022 -#elementor-template-library-modal [role=menuitem]:focus-visible {
5023 - outline: 2px solid var(--e-a-border-color-focus);
5024 - outline-offset: 2px;
5025 - border-radius: 2px;
5026 -}
5027 4448 #elementor-template-library-modal a.elementor-template-library-blank-footer-link {
5028 4449 font-style: normal;
5029 4450 text-decoration: underline;
5030 4451 }
@@ -5036,17 +4457,8 @@
5036 4457 }
5037 4458 #elementor-template-library-modal .dialog-message {
5038 4459 overflow-y: scroll;
5039 4460 }
5040 -#elementor-template-library-modal:has(#elementor-template-library-save-template) .dialog-message, #elementor-template-library-modal:has(#elementor-template-library-save-template-variant-b) .dialog-message {
5041 - overflow-y: auto;
5042 -}
5043 -#elementor-template-library-modal .e-back-to-editor {
5044 - color: var(--e-a-color-txt);
5045 - text-decoration: underline;
5046 - font-size: 17px;
5047 - cursor: pointer;
5048 -}
5049 4461
5050 4462 #elementor-template-library-header-menu {
5051 4463 text-align: center;
5052 4464 }
@@ -5055,21 +4467,14 @@
5055 4467 display: inline-block;
5056 4468 padding: 17px 20px;
5057 4469 border-block-end: 3px solid transparent;
5058 4470 cursor: pointer;
5059 - background: transparent;
5060 - margin: 0;
5061 - font-size: inherit;
5062 - font-family: inherit;
5063 - color: inherit;
5064 - border: none;
5065 4471 }
5066 4472 .elementor-template-library-menu-item:hover {
5067 4473 background-color: var(--e-a-bg-hover);
5068 4474 border-color: var(--e-a-bg-hover);
5069 4475 }
5070 -.elementor-template-library-menu-item.elementor-active, .elementor-template-library-menu-item[aria-selected=true] {
5071 - border-block-end: 3px solid;
4476 +.elementor-template-library-menu-item.elementor-active {
5072 4477 border-color: var(--e-a-border-color-accent);
5073 4478 color: var(--e-a-color-txt-accent);
5074 4479 }
5075 4480
@@ -5075,31 +4480,12 @@
5075 4480
5076 4481 #elementor-template-library-header-actions {
5077 4482 display: flex;
5078 4483 }
5079 -#elementor-template-library-header-actions > div,
5080 -#elementor-template-library-header-actions > button {
5081 - background: transparent;
5082 - margin: 0;
5083 - font-size: inherit;
5084 - font-family: inherit;
5085 - color: inherit;
5086 - border: none;
4484 +#elementor-template-library-header-actions > div {
5087 4485 padding-inline-end: 16px;
5088 - cursor: pointer;
5089 4486 }
5090 -#elementor-template-library-header-actions > div:focus-visible,
5091 -#elementor-template-library-header-actions > button:focus-visible {
5092 - outline: 2px solid var(--e-a-border-color-focus);
5093 - outline-offset: -2px;
5094 - border-radius: 2px;
5095 -}
5096 4487
5097 -#elementor-template-library-header-tools.e-hidden-disabled {
5098 - opacity: 0;
5099 - visibility: hidden;
5100 -}
5101 -
5102 4488 #elementor-template-library-header-preview-insert-wrapper {
5103 4489 cursor: default;
5104 4490 padding: 0 10px;
5105 4491 }
@@ -5108,9 +4494,8 @@
5108 4494 margin-inline-start: 4px;
5109 4495 }
5110 4496
5111 4497 #elementor-template-library-header-preview-back {
5112 - gap: 10px;
5113 4498 padding-block: 16.5px 15px;
5114 4499 padding-inline: 0 16.5px;
5115 4500 border-inline-end: var(--e-a-border);
5116 4501 cursor: pointer;
@@ -5115,138 +4500,27 @@
5115 4500 border-inline-end: var(--e-a-border);
5116 4501 cursor: pointer;
5117 4502 transition: color 0.5s;
5118 4503 }
5119 -#elementor-template-library-header-preview-back .elementor-template-library-header-back-button {
5120 - background: transparent;
5121 - margin: 0;
5122 - font-size: inherit;
5123 - font-family: inherit;
5124 - color: inherit;
5125 - border: none;
5126 - display: flex;
5127 - align-items: center;
5128 - gap: 10px;
5129 - cursor: pointer;
5130 -}
5131 -#elementor-template-library-header-preview-back .elementor-template-library-header-back-button:focus-visible {
5132 - outline: 2px solid var(--e-a-border-color-focus);
5133 - outline-offset: 2px;
5134 - border-radius: 2px;
5135 -}
5136 4504 #elementor-template-library-header-preview-back:hover {
5137 4505 color: var(--e-a-color-txt-hover);
5138 4506 }
5139 4507 #elementor-template-library-header-preview-back i {
4508 + padding-inline-end: 10px;
5140 4509 font-size: 18px;
5141 - scale: calc(1 * var(--direction-multiplier)) 1;
5142 4510 }
4511 +#elementor-template-library-header-preview-back i:before {
4512 + content: "\e87e";
4513 +}
5143 4514
5144 -#elementor-template-library-templates {
5145 - display: flex;
5146 - flex-direction: column;
5147 - gap: 20px;
5148 -}
5149 -#elementor-template-library-templates .toolbar-container {
5150 - display: flex;
5151 - justify-content: space-between;
5152 - align-items: center;
5153 - gap: 2%;
5154 - height: 45px;
5155 -}
5156 -#elementor-template-library-templates #elementor-template-library-templates-container {
5157 - display: flex;
5158 - flex-wrap: wrap;
5159 - align-items: flex-start;
5160 -}
5161 -#elementor-template-library-templates[data-template-source=local] .toolbar-container .quota-progress-container {
5162 - display: none;
5163 -}
5164 -#elementor-template-library-templates[data-template-source=cloud] .toolbar-container:has(.bulk-selection-action-bar:not([style*="display: block"])), #elementor-template-library-templates[data-template-source=empty] .toolbar-container:has(.bulk-selection-action-bar:not([style*="display: block"])) {
5165 - justify-content: flex-end;
5166 -}
5167 -#elementor-template-library-templates[data-template-source=cloud] .toolbar-container .quota-progress-container, #elementor-template-library-templates[data-template-source=empty] .toolbar-container .quota-progress-container {
5168 - display: flex;
5169 - align-items: baseline;
5170 - border-radius: 3px;
5171 -}
5172 -#elementor-template-library-templates[data-template-source=cloud] .toolbar-container .quota-progress-container:focus-visible, #elementor-template-library-templates[data-template-source=empty] .toolbar-container .quota-progress-container:focus-visible {
5173 - outline: 2px solid var(--e-a-border-color-focus);
5174 - outline-offset: 2px;
5175 -}
5176 -#elementor-template-library-templates[data-template-source=cloud] .toolbar-container .quota-progress-info, #elementor-template-library-templates[data-template-source=empty] .toolbar-container .quota-progress-info {
5177 - align-items: center;
5178 -}
5179 -#elementor-template-library-templates[data-template-source=cloud] .toolbar-container .quota-progress-info i, #elementor-template-library-templates[data-template-source=empty] .toolbar-container .quota-progress-info i {
5180 - font-size: 14px;
5181 - margin-inline-start: 5px;
5182 -}
5183 -#elementor-template-library-templates[data-template-source=cloud] .toolbar-container .progress-bar-container, #elementor-template-library-templates[data-template-source=empty] .toolbar-container .progress-bar-container {
5184 - width: 200px;
5185 - margin: 0px 10px;
5186 - align-self: center;
5187 - text-align: start;
5188 -}
5189 -#elementor-template-library-templates[data-template-source=cloud] .toolbar-container .progress-bar-container .quota-warning, #elementor-template-library-templates[data-template-source=empty] .toolbar-container .progress-bar-container .quota-warning {
5190 - font-size: 10px;
5191 -}
5192 -#elementor-template-library-templates[data-template-source=cloud] .toolbar-container .progress-bar-container a, #elementor-template-library-templates[data-template-source=empty] .toolbar-container .progress-bar-container a {
5193 - color: var(--e-a-btn-bg-accent);
5194 -}
5195 -#elementor-template-library-templates[data-template-source=cloud] .toolbar-container .quota-progress-bar, #elementor-template-library-templates[data-template-source=empty] .toolbar-container .quota-progress-bar {
5196 - height: 4px;
5197 - background-color: var(--e-a-color-primary-bold);
5198 - position: relative;
5199 - display: flex;
5200 - align-items: center;
5201 - padding: 0;
5202 -}
5203 -#elementor-template-library-templates[data-template-source=cloud] .toolbar-container .quota-progress-bar-fill, #elementor-template-library-templates[data-template-source=empty] .toolbar-container .quota-progress-bar-fill {
5204 - height: 100%;
5205 - transition: width 0.3s ease;
5206 -}
5207 -#elementor-template-library-templates[data-template-source=cloud] .toolbar-container .quota-progress-bar-fill-normal, #elementor-template-library-templates[data-template-source=empty] .toolbar-container .quota-progress-bar-fill-normal {
5208 - background-color: #D004D4;
5209 -}
5210 -#elementor-template-library-templates[data-template-source=cloud] .toolbar-container .quota-progress-bar-fill-warning, #elementor-template-library-templates[data-template-source=empty] .toolbar-container .quota-progress-bar-fill-warning {
5211 - background-color: #F59E0B;
5212 -}
5213 -#elementor-template-library-templates[data-template-source=cloud] .toolbar-container .quota-progress-bar-fill-alert, #elementor-template-library-templates[data-template-source=empty] .toolbar-container .quota-progress-bar-fill-alert {
5214 - background-color: #93003f;
5215 -}
5216 -#elementor-template-library-templates[data-template-source=cloud] .toolbar-container .quota-progress-bar-normal, #elementor-template-library-templates[data-template-source=empty] .toolbar-container .quota-progress-bar-normal {
5217 - background-color: #F0ABFC;
5218 -}
5219 -#elementor-template-library-templates[data-template-source=cloud] .toolbar-container .quota-progress-bar-warning, #elementor-template-library-templates[data-template-source=empty] .toolbar-container .quota-progress-bar-warning {
5220 - background-color: rgb(251.0236220472, 216.4291338583, 157.9763779528);
5221 -}
5222 -#elementor-template-library-templates[data-template-source=cloud] .toolbar-container-value, #elementor-template-library-templates[data-template-source=empty] .toolbar-container-value {
5223 - font-size: 12px;
5224 - color: var(--e-a-color-txt);
5225 -}
5226 -#elementor-template-library-templates[data-template-source=local] #elementor-template-library-templates-container, #elementor-template-library-templates[data-template-source=cloud] #elementor-template-library-templates-container {
4515 +#elementor-template-library-templates[data-template-source=local] #elementor-template-library-templates-container {
4516 + margin-block-start: 10px;
4517 + margin-block-end: 45px;
5227 4518 border-block-start: var(--e-a-border);
5228 4519 }
5229 -#elementor-template-library-templates[data-template-source=local] .elementor-template-library-order-input:checked + .elementor-template-library-order-label, #elementor-template-library-templates[data-template-source=cloud] .elementor-template-library-order-input:checked + .elementor-template-library-order-label {
4520 +#elementor-template-library-templates[data-template-source=local] .elementor-template-library-order-input:checked + .elementor-template-library-order-label {
5230 4521 color: var(--e-a-color-txt-active);
5231 4522 }
5232 -#elementor-template-library-templates[data-template-source=cloud][data-template-view=grid] #elementor-template-library-templates-container {
5233 - border-block-start: none;
5234 -}
5235 -#elementor-template-library-templates[data-template-source=cloud][data-template-view=grid] #elementor-template-library-order-toolbar-local {
5236 - padding: 0;
5237 -}
5238 -#elementor-template-library-templates[data-template-source=cloud][data-template-view=grid] #elementor-template-library-order-toolbar-local div {
5239 - max-width: -moz-fit-content;
5240 - max-width: fit-content;
5241 -}
5242 -#elementor-template-library-templates[data-template-source=cloud][data-template-view=grid] #elementor-template-library-order-toolbar-local .elementor-template-library-local-column-3,
5243 -#elementor-template-library-templates[data-template-source=cloud][data-template-view=grid] #elementor-template-library-order-toolbar-local .elementor-template-library-local-column-5 {
5244 - display: none;
5245 -}
5246 -#elementor-template-library-templates[data-template-source=cloud] .elementor-template-library-local-column-3 {
5247 - pointer-events: none;
5248 -}
5249 4523 #elementor-template-library-templates[data-template-source=remote] #elementor-template-library-templates-container {
5250 4524 margin: 10px -15px 0;
5251 4525 }
5252 4526 #elementor-template-library-templates[data-template-source=remote] .elementor-template-library-order-input:checked + .elementor-template-library-order-label {
@@ -5272,243 +4546,14 @@
5272 4546 }
5273 4547 #elementor-template-library-templates .elementor-template-library-order-input:checked.elementor-template-library-order-reverse + .elementor-template-library-order-label:after {
5274 4548 content: "\e8ad";
5275 4549 }
5276 -#elementor-template-library-templates .elementor-template-library-filter-toolbar-side-actions {
4550 +
4551 +#elementor-template-library-templates-container {
5277 4552 display: flex;
5278 - align-items: center;
5279 - gap: 8px;
4553 + flex-wrap: wrap;
4554 + align-items: flex-start;
5280 4555 }
5281 -#elementor-template-library-templates .elementor-template-library-filter-toolbar-side-actions .elementor-template-library-action-item {
5282 - background: transparent;
5283 - margin: 0;
5284 - font-size: inherit;
5285 - font-family: inherit;
5286 - color: inherit;
5287 - border: none;
5288 - cursor: pointer;
5289 - font-size: 20px;
5290 - padding: 0 5px;
5291 - border-radius: 2px;
5292 - color: var(--e-a-color-txt);
5293 -}
5294 -#elementor-template-library-templates .elementor-template-library-filter-toolbar-side-actions .elementor-template-library-action-item:hover {
5295 - background-color: var(--e-a-bg-hover);
5296 -}
5297 -#elementor-template-library-templates .elementor-template-library-filter-toolbar-side-actions .divider {
5298 - width: 1px;
5299 - height: 20px;
5300 - background-color: var(--e-a-border-color);
5301 -}
5302 -#elementor-template-library-templates[data-template-view=list] .elementor-template-library-filter-toolbar-side-actions #elementor-template-library-view-list {
5303 - background-color: var(--e-a-bg-hover);
5304 -}
5305 -#elementor-template-library-templates[data-template-view=grid] .elementor-template-library-filter-toolbar-side-actions #elementor-template-library-view-grid {
5306 - background-color: var(--e-a-bg-hover);
5307 -}
5308 -#elementor-template-library-templates[data-template-view=grid] #elementor-template-library-templates-container {
5309 - display: grid;
5310 - grid-template-columns: repeat(auto-fill, 208px);
5311 - grid-gap: 20px;
5312 - padding: 20px 0;
5313 -}
5314 -#elementor-template-library-templates[data-template-view=grid] #elementor-template-library-templates-container > .elementor-template-library-template-type-folder + .elementor-template-library-template-type-template {
5315 - grid-column: 1;
5316 -}
5317 -#elementor-template-library-templates[data-template-view=grid] #elementor-template-library-templates-container #elementor-template-library-templates-empty {
5318 - grid-column: 1/-1;
5319 -}
5320 -#elementor-template-library-templates[data-template-view=grid] #elementor-template-library-templates-container .elementor-template-library-template-view-grid {
5321 - display: flex;
5322 - position: relative;
5323 - flex-direction: column;
5324 - height: 158px;
5325 - padding: 8px;
5326 - border: var(--e-a-border);
5327 - border-radius: 3px;
5328 -}
5329 -#elementor-template-library-templates[data-template-view=grid] #elementor-template-library-templates-container .elementor-template-library-template-view-grid:focus-visible {
5330 - outline: 2px solid var(--e-a-border-color-focus);
5331 - outline-offset: 2px;
5332 -}
5333 -#elementor-template-library-templates[data-template-view=grid] #elementor-template-library-templates-container .elementor-template-library-template-view-grid:not([data-status=locked]):hover .elementor-template-library-template-preview, #elementor-template-library-templates[data-template-view=grid] #elementor-template-library-templates-container .elementor-template-library-template-view-grid:not([data-status=locked]):focus .elementor-template-library-template-preview, #elementor-template-library-templates[data-template-view=grid] #elementor-template-library-templates-container .elementor-template-library-template-view-grid:not([data-status=locked]):focus-within .elementor-template-library-template-preview {
5334 - display: flex;
5335 -}
5336 -#elementor-template-library-templates[data-template-view=grid] #elementor-template-library-templates-container .elementor-template-library-template-view-grid:not([data-status=locked]):hover .elementor-template-library-card-footer .elementor-template-library-template-name, #elementor-template-library-templates[data-template-view=grid] #elementor-template-library-templates-container .elementor-template-library-template-view-grid:not([data-status=locked]):focus .elementor-template-library-card-footer .elementor-template-library-template-name, #elementor-template-library-templates[data-template-view=grid] #elementor-template-library-templates-container .elementor-template-library-template-view-grid:not([data-status=locked]):focus-within .elementor-template-library-card-footer .elementor-template-library-template-name {
5337 - display: none;
5338 -}
5339 -#elementor-template-library-templates[data-template-view=grid] #elementor-template-library-templates-container .elementor-template-library-template-view-grid:not([data-status=locked]):hover .elementor-template-library-card-footer .elementor-template-library-template-card-footer-overlay, #elementor-template-library-templates[data-template-view=grid] #elementor-template-library-templates-container .elementor-template-library-template-view-grid:not([data-status=locked]):focus .elementor-template-library-card-footer .elementor-template-library-template-card-footer-overlay, #elementor-template-library-templates[data-template-view=grid] #elementor-template-library-templates-container .elementor-template-library-template-view-grid:not([data-status=locked]):focus-within .elementor-template-library-card-footer .elementor-template-library-template-card-footer-overlay {
5340 - display: flex !important;
5341 -}
5342 -#elementor-template-library-templates[data-template-view=grid] #elementor-template-library-templates-container .elementor-template-library-template-view-grid .elementor-template-library-template-thumbnail {
5343 - width: 190px;
5344 - height: 100px;
5345 - position: relative;
5346 - border-radius: 3px;
5347 - margin-block-end: 4px;
5348 - overflow: hidden;
5349 -}
5350 -#elementor-template-library-templates[data-template-view=grid] #elementor-template-library-templates-container .elementor-template-library-template-view-grid .elementor-template-library-template-thumbnail img {
5351 - -o-object-fit: contain;
5352 - object-fit: contain;
5353 - width: 100%;
5354 - height: 100%;
5355 -}
5356 -#elementor-template-library-templates[data-template-view=grid] #elementor-template-library-templates-container .elementor-template-library-template-view-grid .elementor-template-library-template-preview {
5357 - display: none;
5358 - justify-content: center;
5359 - align-items: center;
5360 - position: absolute;
5361 - inset: 0;
5362 - background-color: rgba(0, 0, 0, 0.5);
5363 - cursor: default;
5364 -}
5365 -#elementor-template-library-templates[data-template-view=grid] #elementor-template-library-templates-container .elementor-template-library-template-view-grid .elementor-template-library-template-name {
5366 - font-size: 11px;
5367 - white-space: nowrap;
5368 - text-overflow: ellipsis;
5369 - overflow: hidden;
5370 -}
5371 -#elementor-template-library-templates[data-template-view=grid] #elementor-template-library-templates-container .elementor-template-library-template-view-grid .elementor-template-library-card-footer {
5372 - display: flex;
5373 - position: relative;
5374 - justify-content: space-between;
5375 - align-items: center;
5376 - font-size: 11px;
5377 - min-height: 38px;
5378 -}
5379 -#elementor-template-library-templates[data-template-view=grid] #elementor-template-library-templates-container .elementor-template-library-template-view-grid .elementor-template-library-card-footer .elementor-template-library-template-card-footer-overlay {
5380 - display: none;
5381 - width: 90%;
5382 - gap: 8px;
5383 - height: 38px;
5384 - padding: 4px 0;
5385 -}
5386 -#elementor-template-library-templates[data-template-view=grid] #elementor-template-library-templates-container .elementor-template-library-template-view-grid .elementor-template-library-card-footer .elementor-template-library-template-card-footer-overlay .elementor-template-library-template-insert {
5387 - display: flex;
5388 -}
5389 -#elementor-template-library-templates[data-template-view=grid] #elementor-template-library-templates-container .elementor-template-library-template-view-grid .elementor-template-library-card-footer .elementor-template-library-template-card-footer-overlay .elementor-template-library-template-insert i {
5390 - display: flex;
5391 - align-items: center;
5392 -}
5393 -#elementor-template-library-templates[data-template-view=grid] #elementor-template-library-templates-container .elementor-template-library-template-view-grid .elementor-template-library-card-footer .elementor-template-library-template-card-footer-overlay .elementor-template-library-template-card-footer-overlay-info {
5394 - display: flex;
5395 - flex-direction: column;
5396 - justify-content: center;
5397 - width: 65%;
5398 - align-items: start;
5399 - white-space: nowrap;
5400 - text-overflow: ellipsis;
5401 - overflow: hidden;
5402 -}
5403 -#elementor-template-library-templates[data-template-view=grid] #elementor-template-library-templates-container .elementor-template-library-template-view-grid.elementor-template-library-template-type-folder {
5404 - flex-direction: row;
5405 - align-items: center;
5406 - justify-content: start;
5407 - height: 56px;
5408 - padding: 13px 10px;
5409 -}
5410 -#elementor-template-library-templates[data-template-view=grid] #elementor-template-library-templates-container .elementor-template-library-template-view-grid.elementor-template-library-template-type-folder .elementor-template-library-template-type-icon {
5411 - font-size: 25px;
5412 - margin-inline-end: 8px;
5413 -}
5414 -#elementor-template-library-templates[data-template-view=grid] #elementor-template-library-templates-container .elementor-template-library-template-view-grid.elementor-template-library-template-type-folder .elementor-template-library-template-more-toggle {
5415 - margin-inline-start: auto;
5416 -}
5417 -#elementor-template-library-templates[data-template-view=grid] #bulk-select-all {
5418 - display: none;
5419 -}
5420 -#elementor-template-library-templates.no-bulk-selections #bulk-select-all, #elementor-template-library-templates.no-bulk-selections .bulk-selection-item-checkbox {
5421 - visibility: hidden;
5422 -}
5423 -#elementor-template-library-templates.no-bulk-selections .elementor-template-library-template-name:hover .bulk-selection-item-checkbox {
5424 - visibility: visible;
5425 -}
5426 -#elementor-template-library-templates .bulk-selection-action-bar {
5427 - display: none;
5428 - background: var(--e-a-bg-active);
5429 - padding: 10px 25px;
5430 - border-radius: 5px;
5431 - color: var(--e-a-bg-invert);
5432 - gap: 20px;
5433 - align-items: center;
5434 - flex: 1;
5435 -}
5436 -#elementor-template-library-templates .bulk-selection-action-bar button {
5437 - background: transparent;
5438 - margin: 0;
5439 - font-size: inherit;
5440 - font-family: inherit;
5441 - color: inherit;
5442 - border: none;
5443 - cursor: pointer;
5444 - display: flex;
5445 - align-items: center;
5446 - justify-content: center;
5447 -}
5448 -#elementor-template-library-templates .bulk-selection-action-bar button.disabled {
5449 - pointer-events: none;
5450 - opacity: 0.3;
5451 - cursor: not-allowed;
5452 -}
5453 -#elementor-template-library-templates .bulk-selection-action-bar i {
5454 - cursor: pointer;
5455 - font-size: 18px;
5456 -}
5457 -#elementor-template-library-templates .bulk-selection-action-bar .eicon-editor-close {
5458 - font-size: 20px;
5459 -}
5460 -#elementor-template-library-templates #elementor-template-library-navigation-container {
5461 - display: flex;
5462 - flex: 1;
5463 - white-space: nowrap;
5464 - text-overflow: ellipsis;
5465 - overflow: hidden;
5466 -}
5467 -#elementor-template-library-templates #elementor-template-library-navigation-container .elementor-template-library-navigation-container {
5468 - display: flex;
5469 - flex-direction: row;
5470 - align-items: center;
5471 - gap: 15px;
5472 - white-space: nowrap;
5473 - text-overflow: ellipsis;
5474 - overflow: hidden;
5475 -}
5476 -#elementor-template-library-templates #elementor-template-library-navigation-container .elementor-template-library-navigation-container > span {
5477 - white-space: nowrap;
5478 - text-overflow: ellipsis;
5479 - overflow: hidden;
5480 -}
5481 -#elementor-template-library-templates #elementor-template-library-navigation-container .elementor-template-library-navigation-container .elementor-template-library-navigation-back-button {
5482 - padding-inline-start: 8px;
5483 - background-color: var(--e-a-bg-hover);
5484 - color: var(--e-a-color-txt);
5485 -}
5486 -#elementor-template-library-templates #elementor-template-library-order-toolbar-local:hover #bulk-select-all {
5487 - visibility: visible;
5488 -}
5489 -#elementor-template-library-templates .bulk-selected-item {
5490 - background: var(--e-a-bg-active);
5491 -}
5492 -#elementor-template-library-templates .elementor-template-library-local-column-1 input[type=checkbox] {
5493 - position: relative;
5494 - inset-block-start: 3px;
5495 -}
5496 -#elementor-template-library-templates .elementor-template-library-local-column-1 input[type=checkbox]:checked {
5497 - inset-block-start: 0px;
5498 -}
5499 -#elementor-template-library-templates .bulk-selection-item-checkbox:checked,
5500 -#elementor-template-library-templates #bulk-select-all:checked {
5501 - background: #69727D;
5502 -}
5503 -#elementor-template-library-templates .checkbox-minus:before {
5504 - display: block;
5505 - content: "";
5506 - width: 10px;
5507 - height: 2px;
5508 - background-color: white;
5509 - transform: none;
5510 -}
5511 4556
5512 4557 #elementor-template-library-toolbar {
5513 4558 display: flex;
5514 4559 justify-content: space-between;
@@ -5519,80 +4564,8 @@
5519 4564 display: flex;
5520 4565 align-items: center;
5521 4566 }
5522 4567
5523 -.elementor-template-library-filter-select-source {
5524 - width: 350px;
5525 - display: flex;
5526 - gap: 10px;
5527 -}
5528 -.elementor-template-library-filter-select-source .source-option {
5529 - flex: 1;
5530 - border: 0.5px solid #BABFC5;
5531 - padding: 5px;
5532 - border-radius: 3px;
5533 - cursor: pointer;
5534 - font-size: 12px;
5535 -}
5536 -.elementor-template-library-filter-select-source .source-option i {
5537 - margin-inline-end: 5px;
5538 -}
5539 -.elementor-template-library-filter-select-source .source-option .new-badge {
5540 - border: 1px solid var(--e-a-color-primary-bold-dark);
5541 - padding: 2px 4px;
5542 - color: var(--e-a-color-primary-bold-dark);
5543 - border-radius: 10px;
5544 - font-size: 10px;
5545 - margin-inline-start: 5px;
5546 -}
5547 -.elementor-template-library-filter-select-source .source-option.selected, .elementor-template-library-filter-select-source .source-option:hover {
5548 - background-color: var(--e-a-bg-hover);
5549 -}
5550 -
5551 -#elementor-template-library-connect-states .elementor-template-library-filter-toolbar {
5552 - display: flex;
5553 - align-items: center;
5554 - justify-content: space-between;
5555 -}
5556 -
5557 -#elementor-template-library-toolbar .source-option-badge,
5558 -.elementor-template-library-connect-states-badge .source-option-badge {
5559 - display: flex;
5560 - align-items: center;
5561 - gap: 6px;
5562 - padding: 6px 12px;
5563 - border: none;
5564 - border-radius: 20px;
5565 - font-size: 14px;
5566 - font-weight: 500;
5567 - white-space: nowrap;
5568 - margin-inline-start: auto;
5569 - margin-inline-end: 15px;
5570 -}
5571 -#elementor-template-library-toolbar .source-option-badge i,
5572 -.elementor-template-library-connect-states-badge .source-option-badge i {
5573 - margin: 0;
5574 - font-size: 14px;
5575 -}
5576 -#elementor-template-library-toolbar .source-option-badge.cloud-badge,
5577 -.elementor-template-library-connect-states-badge .source-option-badge.cloud-badge {
5578 - background-color: var(--e-a-bg-info);
5579 - color: var(--e-a-color-info);
5580 -}
5581 -#elementor-template-library-toolbar .source-option-badge.cloud-badge i,
5582 -.elementor-template-library-connect-states-badge .source-option-badge.cloud-badge i {
5583 - color: var(--e-a-color-info);
5584 -}
5585 -#elementor-template-library-toolbar .source-option-badge.site-badge,
5586 -.elementor-template-library-connect-states-badge .source-option-badge.site-badge {
5587 - background-color: var(--e-a-bg-warning);
5588 - color: var(--e-a-btn-bg-warning-hover);
5589 -}
5590 -#elementor-template-library-toolbar .source-option-badge.site-badge i,
5591 -.elementor-template-library-connect-states-badge .source-option-badge.site-badge i {
5592 - color: var(--e-a-btn-bg-warning-hover);
5593 -}
5594 -
5595 4568 #elementor-template-library-filter-toolbar-remote {
5596 4569 font-size: 11px;
5597 4570 }
5598 4571
@@ -5606,11 +4579,8 @@
5606 4579 padding-inline-end: 22px;
5607 4580 -webkit-user-select: none;
5608 4581 -moz-user-select: none;
5609 4582 user-select: none;
5610 - line-height: 1;
5611 - font-size: 10px;
5612 - font-weight: 500;
5613 4583 }
5614 4584
5615 4585 label.elementor-template-library-order-label {
5616 4586 cursor: pointer;
@@ -5666,12 +4636,8 @@
5666 4636 #elementor-template-library-filter-my-favorites-label i:after {
5667 4637 content: "\e923";
5668 4638 }
5669 4639
5670 -#elementor-template-library-create-new-folder-dialog .elementor-create-folder-template-dialog__p {
5671 - margin-block-end: 10px;
5672 -}
5673 -
5674 4640 #elementor-template-library-filter-text-wrapper {
5675 4641 width: 200px;
5676 4642 position: relative;
5677 4643 }
@@ -5676,15 +4642,12 @@
5676 4642 position: relative;
5677 4643 }
5678 4644 #elementor-template-library-filter-text-wrapper i {
5679 4645 position: absolute;
5680 - inset-block-start: 50%;
5681 - inset-inline-end: 0;
4646 + top: 50%;
4647 + right: 0;
5682 4648 transform: translateY(-50%);
5683 4649 }
5684 -#elementor-template-library-filter-text-wrapper i.eicon-loading.eicon-animation-spin {
5685 - inset-block-start: 25%;
5686 -}
5687 4650
5688 4651 #elementor-template-library-filter-text {
5689 4652 border: none;
5690 4653 border-block-end: var(--e-a-border-bold);
@@ -5710,32 +4673,19 @@
5710 4673 padding: 8px;
5711 4674 border: var(--e-a-border);
5712 4675 border-radius: 3px;
5713 4676 }
5714 -.elementor-template-library-template-remote:focus-visible {
5715 - outline: 2px solid var(--e-a-border-color-focus);
5716 - outline-offset: 2px;
5717 -}
5718 -.elementor-template-library-template-remote:hover, .elementor-template-library-template-remote:focus, .elementor-template-library-template-remote:focus-within {
4677 +.elementor-template-library-template-remote:hover {
5719 4678 background-color: var(--e-a-bg-hover);
5720 4679 }
5721 -.elementor-template-library-template-remote:hover .elementor-template-library-template-preview, .elementor-template-library-template-remote:focus .elementor-template-library-template-preview, .elementor-template-library-template-remote:focus-within .elementor-template-library-template-preview {
5722 - opacity: 1;
5723 -}
5724 -.elementor-template-library-template-remote:hover .elementor-template-library-template-name, .elementor-template-library-template-remote:focus .elementor-template-library-template-name, .elementor-template-library-template-remote:focus-within .elementor-template-library-template-name {
4680 +.elementor-template-library-template-remote:hover .elementor-template-library-template-name {
5725 4681 display: none;
5726 4682 }
5727 -.elementor-template-library-template-remote:hover .elementor-template-library-favorite,
5728 -.elementor-template-library-template-remote:hover .elementor-template-library-template-action, .elementor-template-library-template-remote:focus .elementor-template-library-favorite,
5729 -.elementor-template-library-template-remote:focus .elementor-template-library-template-action, .elementor-template-library-template-remote:focus-within .elementor-template-library-favorite,
5730 -.elementor-template-library-template-remote:focus-within .elementor-template-library-template-action {
5731 - display: initial;
5732 -}
5733 -.elementor-template-library-template-remote:not(:hover):not(:focus):not(:focus-within) .elementor-template-library-template-preview {
4683 +.elementor-template-library-template-remote:not(:hover) .elementor-template-library-template-preview {
5734 4684 opacity: 0;
5735 4685 }
5736 -.elementor-template-library-template-remote:not(:hover):not(:focus):not(:focus-within) .elementor-template-library-favorite,
5737 -.elementor-template-library-template-remote:not(:hover):not(:focus):not(:focus-within) .elementor-template-library-template-action {
4686 +.elementor-template-library-template-remote:not(:hover) .elementor-template-library-favorite,
4687 +.elementor-template-library-template-remote:not(:hover) .elementor-template-library-template-action {
5738 4688 display: none;
5739 4689 }
5740 4690 .elementor-template-library-template-remote.elementor-template-library-pro-template .elementor-template-library-template-body:before {
5741 4691 content: var(--elementor-template-library-subscription-plan-label);
@@ -5743,10 +4693,10 @@
5743 4693 color: var(--e-a-color-white);
5744 4694 position: absolute;
5745 4695 text-transform: uppercase;
5746 4696 line-height: 1;
5747 - inset-block-start: 5px;
5748 - inset-inline-end: 5px;
4697 + top: 5px;
4698 + right: 5px;
5749 4699 padding: 3px 5px;
5750 4700 font-size: 8px;
5751 4701 border-radius: 2px;
5752 4702 }
@@ -5761,10 +4711,10 @@
5761 4711 }
5762 4712 .elementor-template-library-template-remote:not(.elementor-template-library-template-page):not(.elementor-template-library-template-lp) .elementor-template-library-template-footer {
5763 4713 position: absolute;
5764 4714 width: 100%;
5765 - inset-block-end: 0;
5766 - inset-inline-start: 0;
4715 + bottom: 0;
4716 + left: 0;
5767 4717 padding: 10px;
5768 4718 background-color: var(--e-a-bg-default);
5769 4719 transition: transform 0.5s;
5770 4720 }
@@ -5770,9 +4720,9 @@
5770 4720 }
5771 4721 .elementor-template-library-template-remote:not(.elementor-template-library-template-page):not(.elementor-template-library-template-lp) .elementor-template-library-template-name {
5772 4722 display: none;
5773 4723 }
5774 -.elementor-template-library-template-remote:not(.elementor-template-library-template-page):not(.elementor-template-library-template-lp):not(:hover):not(:focus):not(:focus-within) .elementor-template-library-template-footer {
4724 +.elementor-template-library-template-remote:not(.elementor-template-library-template-page):not(.elementor-template-library-template-lp):not(:hover) .elementor-template-library-template-footer {
5775 4725 transform: translateY(100%);
5776 4726 }
5777 4727 .elementor-template-library-template-remote .elementor-template-library-template-body {
5778 4728 position: relative;
@@ -5789,9 +4739,12 @@
5789 4739 box-shadow: inset 0px -2px 15px -6px rgba(0, 0, 0, 0.07);
5790 4740 }
5791 4741 .elementor-template-library-template-remote .elementor-template-library-template-preview {
5792 4742 position: absolute;
5793 - inset: 0;
4743 + top: 0;
4744 + left: 0;
4745 + width: 100%;
4746 + height: 100%;
5794 4747 background-color: rgba(0, 0, 0, 0.5);
5795 4748 transition: opacity 0.5s;
5796 4749 cursor: pointer;
5797 4750 }
@@ -5797,11 +4750,11 @@
5797 4750 }
5798 4751 .elementor-template-library-template-remote .elementor-template-library-template-preview i {
5799 4752 font-size: 20px;
5800 4753 position: absolute;
5801 - inset-block-start: 50%;
5802 - inset-inline-start: 50%;
5803 - transform: translate(calc(-50% * var(--direction-multiplier)), -50%);
4754 + top: 50%;
4755 + left: 50%;
4756 + transform: translate(-50%, -50%);
5804 4757 }
5805 4758 .elementor-template-library-template-remote .elementor-template-library-template-footer {
5806 4759 display: flex;
5807 4760 justify-content: space-between;
@@ -5821,22 +4774,10 @@
5821 4774 .elementor-template-library-template-remote .elementor-template-library-favorite {
5822 4775 margin-inline-start: auto;
5823 4776 }
5824 4777 .elementor-template-library-template-remote .elementor-template-library-template-favorite-input {
5825 - position: absolute;
5826 - width: 1px;
5827 - height: 1px;
5828 - padding: 0;
5829 - margin: -1px;
5830 - overflow: hidden;
5831 - clip: rect(0, 0, 0, 0);
5832 - white-space: nowrap;
5833 - border: 0;
4778 + display: none;
5834 4779 }
5835 -.elementor-template-library-template-remote .elementor-template-library-template-favorite-input:focus-visible + .elementor-template-library-template-favorite-label {
5836 - outline: 2px solid var(--e-a-border-color-focus);
5837 - outline-offset: 2px;
5838 -}
5839 4780 .elementor-template-library-template-remote .elementor-template-library-template-favorite-input:checked + .elementor-template-library-template-favorite-label i:before {
5840 4781 content: "\e93f";
5841 4782 color: var(--e-a-color-primary-bold);
5842 4783 }
@@ -5871,231 +4812,112 @@
5871 4812 height: 200px;
5872 4813 }
5873 4814
5874 4815 #elementor-template-library-order-toolbar-local,
5875 -.elementor-template-library-template-local,
5876 -.elementor-template-library-template-cloud:not(.elementor-template-library-template-view-grid) {
4816 +.elementor-template-library-template-local {
5877 4817 display: flex;
5878 4818 align-items: center;
5879 4819 padding: 0 25px;
5880 4820 text-align: start;
5881 4821 }
5882 -@media (max-width: 1439px) {
5883 - #elementor-template-library-order-toolbar-local .elementor-template-library-local-column-1,
5884 - .elementor-template-library-template-local .elementor-template-library-local-column-1,
5885 - .elementor-template-library-template-cloud:not(.elementor-template-library-template-view-grid) .elementor-template-library-local-column-1 {
5886 - width: 33%;
5887 - }
5888 - #elementor-template-library-order-toolbar-local .elementor-template-library-local-column-2,
5889 - .elementor-template-library-template-local .elementor-template-library-local-column-2,
5890 - .elementor-template-library-template-cloud:not(.elementor-template-library-template-view-grid) .elementor-template-library-local-column-2 {
5891 - width: 10%;
5892 - }
5893 - #elementor-template-library-order-toolbar-local .elementor-template-library-local-column-3,
5894 - .elementor-template-library-template-local .elementor-template-library-local-column-3,
5895 - .elementor-template-library-template-cloud:not(.elementor-template-library-template-view-grid) .elementor-template-library-local-column-3 {
5896 - width: 15%;
5897 - }
5898 - #elementor-template-library-order-toolbar-local .elementor-template-library-local-column-4,
5899 - .elementor-template-library-template-local .elementor-template-library-local-column-4,
5900 - .elementor-template-library-template-cloud:not(.elementor-template-library-template-view-grid) .elementor-template-library-local-column-4 {
5901 - width: 15%;
5902 - }
5903 - #elementor-template-library-order-toolbar-local .elementor-template-library-local-column-5,
5904 - .elementor-template-library-template-local .elementor-template-library-local-column-5,
5905 - .elementor-template-library-template-cloud:not(.elementor-template-library-template-view-grid) .elementor-template-library-local-column-5 {
5906 - width: 27%;
5907 - }
5908 -}
5909 -@media (min-width: 1440px) {
5910 - #elementor-template-library-order-toolbar-local .elementor-template-library-local-column-1,
5911 - .elementor-template-library-template-local .elementor-template-library-local-column-1,
5912 - .elementor-template-library-template-cloud:not(.elementor-template-library-template-view-grid) .elementor-template-library-local-column-1 {
5913 - width: 25%;
5914 - }
5915 - #elementor-template-library-order-toolbar-local .elementor-template-library-local-column-2,
5916 - .elementor-template-library-template-local .elementor-template-library-local-column-2,
5917 - .elementor-template-library-template-cloud:not(.elementor-template-library-template-view-grid) .elementor-template-library-local-column-2 {
5918 - width: 17%;
5919 - }
5920 - #elementor-template-library-order-toolbar-local .elementor-template-library-local-column-3,
5921 - .elementor-template-library-template-local .elementor-template-library-local-column-3,
5922 - .elementor-template-library-template-cloud:not(.elementor-template-library-template-view-grid) .elementor-template-library-local-column-3 {
5923 - width: 17%;
5924 - }
5925 - #elementor-template-library-order-toolbar-local .elementor-template-library-local-column-4,
5926 - .elementor-template-library-template-local .elementor-template-library-local-column-4,
5927 - .elementor-template-library-template-cloud:not(.elementor-template-library-template-view-grid) .elementor-template-library-local-column-4 {
5928 - width: 17%;
5929 - }
5930 - #elementor-template-library-order-toolbar-local .elementor-template-library-local-column-5,
5931 - .elementor-template-library-template-local .elementor-template-library-local-column-5,
5932 - .elementor-template-library-template-cloud:not(.elementor-template-library-template-view-grid) .elementor-template-library-local-column-5 {
5933 - width: 24%;
5934 - }
5935 -}
5936 -@media (max-width: 1024px) {
5937 - #elementor-template-library-order-toolbar-local .elementor-template-library-local-column-3,
5938 - .elementor-template-library-template-local .elementor-template-library-local-column-3,
5939 - .elementor-template-library-template-cloud:not(.elementor-template-library-template-view-grid) .elementor-template-library-local-column-3 {
5940 - display: none;
5941 - }
5942 - #elementor-template-library-order-toolbar-local .elementor-template-library-local-column-5,
5943 - .elementor-template-library-template-local .elementor-template-library-local-column-5,
5944 - .elementor-template-library-template-cloud:not(.elementor-template-library-template-view-grid) .elementor-template-library-local-column-5 {
5945 - width: 41%;
5946 - }
5947 -}
5948 4822
5949 -.elementor-template-library-template-local .elementor-template-library-template-more,
5950 -.elementor-template-library-template-cloud .elementor-template-library-template-more {
5951 - display: none;
5952 - position: absolute;
5953 - background-color: var(--e-a-bg-default);
5954 - border-radius: var(--e-a-border-radius);
5955 - box-shadow: 1px 3px 11px rgba(0, 0, 0, 0.3);
5956 - inset-block-start: 100%;
5957 - inset-inline-end: 0;
5958 - z-index: 1;
5959 - list-style: none;
5960 - margin: 0;
5961 - padding: 0;
4823 +#elementor-template-library-order-toolbar-local {
4824 + margin-block-start: 30px;
5962 4825 }
5963 -.elementor-template-library-template-local .elementor-template-library-template-more > li button,
5964 -.elementor-template-library-template-local .elementor-template-library-template-more > li a,
5965 -.elementor-template-library-template-cloud .elementor-template-library-template-more > li button,
5966 -.elementor-template-library-template-cloud .elementor-template-library-template-more > li a {
5967 - background: transparent;
5968 - margin: 0;
5969 - font-size: inherit;
5970 - font-family: inherit;
5971 - color: inherit;
5972 - border: none;
5973 - padding: 10px 20px;
5974 - font-size: 11px;
5975 - cursor: pointer;
5976 - display: flex;
5977 - align-items: center;
5978 - gap: 8px;
5979 - width: 100%;
4826 +#elementor-template-library-order-toolbar-local .elementor-template-library-order-label {
4827 + line-height: 1;
4828 + font-size: 10px;
4829 + font-weight: 500;
5980 4830 }
5981 -.elementor-template-library-template-local .elementor-template-library-template-more > li button.disabled,
5982 -.elementor-template-library-template-local .elementor-template-library-template-more > li a.disabled,
5983 -.elementor-template-library-template-cloud .elementor-template-library-template-more > li button.disabled,
5984 -.elementor-template-library-template-cloud .elementor-template-library-template-more > li a.disabled {
5985 - cursor: not-allowed;
5986 - color: var(--e-a-color-txt-disabled);
5987 -}
5988 -.elementor-template-library-template-local .elementor-template-library-template-more > li a,
5989 -.elementor-template-library-template-cloud .elementor-template-library-template-more > li a {
5990 - color: var(--e-a-color-txt);
5991 - text-decoration: none;
5992 -}
5993 -.elementor-template-library-template-local .elementor-template-library-template-more .elementor-template-library-template-delete,
5994 -.elementor-template-library-template-cloud .elementor-template-library-template-more .elementor-template-library-template-delete {
5995 - color: var(--e-a-color-danger);
5996 -}
5997 -.elementor-template-library-template-local .elementor-template-library-template-more i,
5998 -.elementor-template-library-template-cloud .elementor-template-library-template-more i {
5999 - font-size: 16px;
6000 -}
6001 -.elementor-template-library-template-local .elementor-template-library-template-more-toggle,
6002 -.elementor-template-library-template-cloud .elementor-template-library-template-more-toggle {
6003 - margin-inline-start: auto;
6004 - cursor: pointer;
6005 - background: none;
6006 - border: none;
6007 - padding: 0;
6008 - display: flex;
6009 - align-items: center;
6010 - justify-content: center;
6011 -}
6012 -.elementor-template-library-template-local .elementor-template-library-template-more-toggle i,
6013 -.elementor-template-library-template-cloud .elementor-template-library-template-more-toggle i {
6014 - font-size: 20px;
6015 -}
6016 4831
6017 -.elementor-template-library-template-local,
6018 -.elementor-template-library-template-cloud:not(.elementor-template-library-template-view-grid) {
4832 +.elementor-template-library-template-local {
6019 4833 height: 50px;
6020 4834 width: 100%;
6021 4835 margin-block-start: 1px;
6022 4836 transition: background-color 0.3s linear;
6023 4837 }
6024 -.elementor-template-library-template-local:hover,
6025 -.elementor-template-library-template-cloud:not(.elementor-template-library-template-view-grid):hover {
4838 +.elementor-template-library-template-local:hover {
6026 4839 background-color: var(--e-a-bg-hover);
6027 4840 }
6028 -.elementor-template-library-template-local:first-child,
6029 -.elementor-template-library-template-cloud:not(.elementor-template-library-template-view-grid):first-child {
4841 +.elementor-template-library-template-local:first-child {
6030 4842 border-start-start-radius: 3px;
6031 4843 border-start-end-radius: 3px;
6032 4844 border-end-start-radius: 0;
6033 4845 border-end-end-radius: 0;
6034 4846 }
6035 -.elementor-template-library-template-local:last-child,
6036 -.elementor-template-library-template-cloud:not(.elementor-template-library-template-view-grid):last-child {
4847 +.elementor-template-library-template-local:last-child {
6037 4848 border-start-start-radius: 0;
6038 4849 border-start-end-radius: 0;
6039 4850 border-end-start-radius: 3px;
6040 4851 border-end-end-radius: 3px;
6041 4852 }
6042 -.elementor-template-library-template-local .elementor-template-library-template-name,
6043 -.elementor-template-library-template-cloud:not(.elementor-template-library-template-view-grid) .elementor-template-library-template-name {
4853 +.elementor-template-library-template-local .elementor-template-library-template-name {
6044 4854 font-weight: 500;
6045 4855 }
6046 -.elementor-template-library-template-local .elementor-template-library-template-name i,
6047 -.elementor-template-library-template-cloud:not(.elementor-template-library-template-view-grid) .elementor-template-library-template-name i {
6048 - font-size: 16px;
6049 -}
6050 4856 .elementor-template-library-template-local .elementor-template-library-template-name,
6051 -.elementor-template-library-template-local .elementor-template-library-template-meta,
6052 -.elementor-template-library-template-cloud:not(.elementor-template-library-template-view-grid) .elementor-template-library-template-name,
6053 -.elementor-template-library-template-cloud:not(.elementor-template-library-template-view-grid) .elementor-template-library-template-meta {
4857 +.elementor-template-library-template-local .elementor-template-library-template-meta {
6054 4858 padding-inline-end: 20px;
6055 4859 }
6056 -.elementor-template-library-template-local .elementor-template-library-local-column-1 i,
6057 -.elementor-template-library-template-cloud:not(.elementor-template-library-template-view-grid) .elementor-template-library-local-column-1 i {
6058 - padding-inline-end: 10px;
6059 -}
6060 4860 .elementor-template-library-template-local .elementor-template-library-template-name,
6061 4861 .elementor-template-library-template-local .elementor-template-library-template-meta,
6062 4862 .elementor-template-library-template-local .elementor-template-library-template-preview,
6063 -.elementor-template-library-template-local .elementor-template-library-template-action,
6064 -.elementor-template-library-template-cloud:not(.elementor-template-library-template-view-grid) .elementor-template-library-template-name,
6065 -.elementor-template-library-template-cloud:not(.elementor-template-library-template-view-grid) .elementor-template-library-template-meta,
6066 -.elementor-template-library-template-cloud:not(.elementor-template-library-template-view-grid) .elementor-template-library-template-preview,
6067 -.elementor-template-library-template-cloud:not(.elementor-template-library-template-view-grid) .elementor-template-library-template-action {
4863 +.elementor-template-library-template-local .elementor-template-library-template-action {
6068 4864 white-space: nowrap;
6069 4865 text-overflow: ellipsis;
6070 4866 overflow: hidden;
6071 4867 }
6072 -.elementor-template-library-template-local .elementor-template-library-template-controls,
6073 -.elementor-template-library-template-cloud:not(.elementor-template-library-template-view-grid) .elementor-template-library-template-controls {
4868 +.elementor-template-library-template-local .elementor-template-library-template-controls {
6074 4869 position: relative;
6075 4870 display: flex;
6076 4871 align-items: center;
6077 4872 }
6078 -.elementor-template-library-template-local .elementor-template-library-template-controls > div,
6079 -.elementor-template-library-template-local .elementor-template-library-template-controls > button,
6080 -.elementor-template-library-template-cloud:not(.elementor-template-library-template-view-grid) .elementor-template-library-template-controls > div,
6081 -.elementor-template-library-template-cloud:not(.elementor-template-library-template-view-grid) .elementor-template-library-template-controls > button {
4873 +.elementor-template-library-template-local .elementor-template-library-template-controls > div {
6082 4874 cursor: pointer;
6083 4875 transition: color 0.5s;
6084 4876 }
6085 -.elementor-template-library-template-local .elementor-template-library-template-insert.disabled,
6086 -.elementor-template-library-template-cloud:not(.elementor-template-library-template-view-grid) .elementor-template-library-template-insert.disabled {
6087 - color: #F5D0FE;
4877 +.elementor-template-library-template-local .elementor-template-library-template-insert i {
4878 + margin-inline-end: 3px;
6088 4879 }
6089 -.elementor-template-library-template-local .elementor-template-library-template-insert.disabled:hover, .elementor-template-library-template-local .elementor-template-library-template-insert.disabled:focus,
6090 -.elementor-template-library-template-cloud:not(.elementor-template-library-template-view-grid) .elementor-template-library-template-insert.disabled:hover,
6091 -.elementor-template-library-template-cloud:not(.elementor-template-library-template-view-grid) .elementor-template-library-template-insert.disabled:focus {
6092 - cursor: not-allowed;
4880 +.elementor-template-library-template-local .elementor-template-library-template-control-title {
4881 + margin-inline-start: 6px;
6093 4882 }
6094 -.elementor-template-library-template-local .elementor-template-library-template-insert i,
6095 -.elementor-template-library-template-cloud:not(.elementor-template-library-template-view-grid) .elementor-template-library-template-insert i {
6096 - margin-inline-end: 3px;
4883 +.elementor-template-library-template-local .elementor-template-library-template-more .elementor-template-library-template-delete:hover {
4884 + color: var(--e-a-color-danger);
6097 4885 }
4886 +.elementor-template-library-template-local .elementor-template-library-template-more {
4887 + display: none;
4888 + position: absolute;
4889 + background-color: var(--e-a-bg-default);
4890 + padding: 3px 20px;
4891 + border-radius: var(--e-a-border-radius);
4892 + box-shadow: 1px 3px 11px rgba(0, 0, 0, 0.3);
4893 + top: 100%;
4894 + right: 0;
4895 + transform: translateX(65%) translateY(-7px);
4896 + z-index: 1;
4897 +}
4898 +.elementor-template-library-template-local .elementor-template-library-template-more:before {
4899 + content: "";
4900 + position: absolute;
4901 + border: solid transparent;
4902 + border-width: 8px 4px;
4903 + border-block-end-color: var(--e-a-color-white);
4904 + transform: translateY(-100%);
4905 +}
4906 +.elementor-template-library-template-local .elementor-template-library-template-more > div {
4907 + margin: 10px 0;
4908 + font-size: 11px;
4909 +}
4910 +.elementor-template-library-template-local .elementor-template-library-template-more a {
4911 + color: var(--e-a-color-txt);
4912 +}
4913 +.elementor-template-library-template-local .elementor-template-library-template-more-toggle {
4914 + flex-grow: 1;
4915 + text-align: end;
4916 +}
4917 +.elementor-template-library-template-local .elementor-template-library-template-more-toggle i {
4918 + font-size: 16px;
4919 +}
6098 4920
6099 4921 #elementor-template-library-preview {
6100 4922 height: 100%;
6101 4923 overflow: hidden;
@@ -6101,9 +4923,9 @@
6101 4923 overflow: hidden;
6102 4924 }
6103 4925 #elementor-template-library-preview iframe {
6104 4926 height: 150%;
6105 - transform: scale(0.666) translateX(calc(-25% * var(--direction-multiplier))) translateY(-25%);
4927 + transform: scale(0.666) translateX(-25%) translateY(-25%);
6106 4928 }
6107 4929 @media (max-width: 1439px) {
6108 4930 #elementor-template-library-preview iframe {
6109 4931 width: 1440px;
@@ -6119,14 +4941,8 @@
6119 4941 font-size: 64px;
6120 4942 margin-block-start: 45px;
6121 4943 line-height: 1;
6122 4944 }
6123 -.elementor-template-library-blank-icon i {
6124 - font-size: 85px;
6125 -}
6126 -.elementor-template-library-blank-icon i.eicon-library-upload {
6127 - font-size: 65px;
6128 -}
6129 4945 .elementor-template-library-blank-icon img {
6130 4946 width: 70px;
6131 4947 }
6132 4948 .elementor-template-library-blank-icon .elementor-template-library-no-results {
@@ -6164,499 +4980,8 @@
6164 4980 #elementor-template-library-save-template-form > * {
6165 4981 height: 55px;
6166 4982 font-size: 16px;
6167 4983 }
6168 -#elementor-template-library-save-template-form .cloud-library-form-inputs > * {
6169 - height: 55px;
6170 - font-size: 16px;
6171 - margin-block-end: 15px;
6172 -}
6173 -#elementor-template-library-save-template-form .cloud-library-form-inputs {
6174 - display: block;
6175 - width: 500px;
6176 - margin: 0 auto;
6177 -}
6178 -#elementor-template-library-save-template-form .cloud-library-form-inputs .upgrade-tooltip,
6179 -#elementor-template-library-save-template-form .cloud-library-form-inputs .connect-badge {
6180 - display: none;
6181 -}
6182 -#elementor-template-library-save-template-form .cloud-library-form-inputs .divider {
6183 - margin-inline: 5px;
6184 -}
6185 -#elementor-template-library-save-template-form .cloud-library-form-inputs .upgrade-badge {
6186 - display: none;
6187 - border: 1px solid rgba(147, 0, 63, 0.5019607843);
6188 - padding: 3px 5px;
6189 - border-radius: 100px;
6190 - margin-inline: 5px;
6191 -}
6192 -#elementor-template-library-save-template-form .cloud-library-form-inputs .upgrade-badge a {
6193 - color: var(--e-a-btn-bg-accent);
6194 -}
6195 -#elementor-template-library-save-template-form .cloud-library-form-inputs .upgrade-badge a i {
6196 - margin-inline-end: 5px;
6197 -}
6198 -#elementor-template-library-save-template-form .cloud-library-form-inputs.max-capacity .quota-cta {
6199 - display: inline;
6200 -}
6201 -#elementor-template-library-save-template-form .cloud-library-form-inputs .ellipsis-container {
6202 - display: inline;
6203 - background: var(--e-a-bg-hover);
6204 - padding: 0 2px 1px;
6205 - border: none;
6206 - border-radius: 2px;
6207 - vertical-align: bottom;
6208 - cursor: pointer;
6209 - font-family: inherit;
6210 - font-size: inherit;
6211 - color: inherit;
6212 - line-height: inherit;
6213 -}
6214 -#elementor-template-library-save-template-form .cloud-library-form-inputs .ellipsis-container:hover {
6215 - background: var(--e-a-bg-active);
6216 -}
6217 -#elementor-template-library-save-template-form .cloud-library-form-inputs .ellipsis-container:focus-visible {
6218 - outline: 2px solid var(--e-a-border-color-focus);
6219 - outline-offset: 2px;
6220 -}
6221 -#elementor-template-library-save-template-form .cloud-library-form-inputs.promotion .upgrade-tooltip,
6222 -#elementor-template-library-save-template-form .cloud-library-form-inputs.promotion .connect-badge,
6223 -#elementor-template-library-save-template-form .cloud-library-form-inputs.promotion .upgrade-badge, #elementor-template-library-save-template-form .cloud-library-form-inputs.max-capacity .upgrade-tooltip,
6224 -#elementor-template-library-save-template-form .cloud-library-form-inputs.max-capacity .connect-badge,
6225 -#elementor-template-library-save-template-form .cloud-library-form-inputs.max-capacity .upgrade-badge {
6226 - display: inline;
6227 -}
6228 -#elementor-template-library-save-template-form .cloud-library-form-inputs.promotion .ellipsis-container,
6229 -#elementor-template-library-save-template-form .cloud-library-form-inputs.promotion #cloud,
6230 -#elementor-template-library-save-template-form .cloud-library-form-inputs.promotion .cloud label, #elementor-template-library-save-template-form .cloud-library-form-inputs.max-capacity .ellipsis-container,
6231 -#elementor-template-library-save-template-form .cloud-library-form-inputs.max-capacity #cloud,
6232 -#elementor-template-library-save-template-form .cloud-library-form-inputs.max-capacity .cloud label {
6233 - pointer-events: none;
6234 -}
6235 -#elementor-template-library-save-template-form .cloud-library-form-inputs.promotion .ellipsis-container,
6236 -#elementor-template-library-save-template-form .cloud-library-form-inputs.promotion .divider, #elementor-template-library-save-template-form .cloud-library-form-inputs.max-capacity .ellipsis-container,
6237 -#elementor-template-library-save-template-form .cloud-library-form-inputs.max-capacity .divider {
6238 - display: none;
6239 -}
6240 -#elementor-template-library-save-template-form .cloud-library-form-inputs.promotion .connect-divider, #elementor-template-library-save-template-form .cloud-library-form-inputs.max-capacity .connect-divider {
6241 - color: var(--e-a-color-txt-muted);
6242 - margin-inline: 5px;
6243 -}
6244 -#elementor-template-library-save-template-form .cloud-library-form-inputs .quota-cta {
6245 - display: none;
6246 - float: inline-start;
6247 -}
6248 -#elementor-template-library-save-template-form .cloud-library-form-inputs .quota-cta p {
6249 - font-size: 13px;
6250 - color: var(--e-a-btn-bg-accent);
6251 - text-align: start;
6252 -}
6253 -#elementor-template-library-save-template-form .cloud-library-form-inputs .quota-cta a {
6254 - color: var(--e-a-btn-bg-accent);
6255 - text-decoration: underline;
6256 -}
6257 -#elementor-template-library-save-template-form .cloud-library-form-inputs #elementor-template-library-save-template-submit {
6258 - float: inline-end;
6259 -}
6260 -#elementor-template-library-save-template-form .cloud-library-form-inputs #elementor-template-library-save-template-submit[disabled] {
6261 - cursor: not-allowed;
6262 -}
6263 -#elementor-template-library-save-template-form .cloud-library-form-inputs .source-selections {
6264 - display: flex;
6265 - flex-direction: column;
6266 - text-align: start;
6267 - border: var(--e-a-border-bold);
6268 - padding: 15px;
6269 - height: auto;
6270 - gap: 10px;
6271 - position: relative;
6272 -}
6273 -#elementor-template-library-save-template-form .cloud-library-form-inputs .source-selections input[type=checkbox]:checked {
6274 - background: #69727D;
6275 - inset-block-start: -3px;
6276 - position: relative;
6277 -}
6278 -#elementor-template-library-save-template-form .cloud-library-form-inputs .source-selections-input {
6279 - position: relative;
6280 - display: inline-block;
6281 -}
6282 -#elementor-template-library-save-template-form .cloud-library-form-inputs .source-selections-input.cloud, #elementor-template-library-save-template-form .cloud-library-form-inputs .source-selections-input.local {
6283 - white-space: nowrap;
6284 - text-overflow: ellipsis;
6285 - overflow: hidden;
6286 - overflow: visible;
6287 - display: inline-flex;
6288 - align-items: baseline;
6289 - line-height: 27px;
6290 -}
6291 -#elementor-template-library-save-template-form .cloud-library-form-inputs .source-selections-input #cloud,
6292 -#elementor-template-library-save-template-form .cloud-library-form-inputs .source-selections-input #local {
6293 - flex-shrink: 0;
6294 - position: relative;
6295 - inset-block-start: 2px;
6296 -}
6297 -#elementor-template-library-save-template-form .cloud-library-form-inputs .source-selections-input #cloud:checked,
6298 -#elementor-template-library-save-template-form .cloud-library-form-inputs .source-selections-input #local:checked {
6299 - inset-block-start: -2px;
6300 -}
6301 -#elementor-template-library-save-template-form .cloud-library-form-inputs .source-selections-input .eicon-ellipsis-h {
6302 - vertical-align: bottom;
6303 -}
6304 -#elementor-template-library-save-template-form .cloud-library-form-inputs .source-selections-input .eicon-info {
6305 - margin-inline: 5px;
6306 - color: var(--e-a-color-txt-muted);
6307 - cursor: pointer;
6308 -}
6309 -#elementor-template-library-save-template-form .cloud-library-form-inputs .source-selections-input .selected-folder {
6310 - display: none;
6311 - margin-inline-end: 5px;
6312 - align-items: baseline;
6313 - white-space: nowrap;
6314 - text-overflow: ellipsis;
6315 - overflow: hidden;
6316 -}
6317 -#elementor-template-library-save-template-form .cloud-library-form-inputs .source-selections-input .selected-folder[style*="display: inline"] {
6318 - display: inline-flex !important;
6319 -}
6320 -#elementor-template-library-save-template-form .cloud-library-form-inputs .source-selections-input .selected-folder-text {
6321 - text-decoration: underline;
6322 - cursor: pointer;
6323 - white-space: nowrap;
6324 - text-overflow: ellipsis;
6325 - overflow: hidden;
6326 -}
6327 -#elementor-template-library-save-template-form .cloud-library-form-inputs .source-selections-input .eicon-editor-close {
6328 - cursor: pointer;
6329 - flex-shrink: 0;
6330 -}
6331 -#elementor-template-library-save-template-form .cloud-library-form-inputs .source-selections-input #elementor-template-library-connect__badge {
6332 - color: var(--e-a-color-primary-bold);
6333 - font-size: 14px;
6334 -}
6335 -#elementor-template-library-save-template-form .cloud-library-form-inputs .source-selections-input #elementor-template-library-connect__badge:hover {
6336 - text-decoration: underline;
6337 -}
6338 -#elementor-template-library-save-template-form .cloud-library-form-inputs .cloud-folder-selection-dropdown {
6339 - display: none;
6340 - position: absolute;
6341 - inset-block-start: 40px;
6342 - background-color: var(--e-a-bg-default);
6343 - min-width: 187px;
6344 - overflow: auto;
6345 - box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
6346 - z-index: 1;
6347 - border-radius: 2px;
6348 - max-width: 450px;
6349 -}
6350 -#elementor-template-library-save-template-form .cloud-library-form-inputs .cloud-folder-selection-dropdown li {
6351 - white-space: nowrap;
6352 - text-overflow: ellipsis;
6353 - overflow: hidden;
6354 -}
6355 -#elementor-template-library-save-template-form .cloud-library-form-inputs .cloud-folder-selection-dropdown .eicon-loading {
6356 - margin: 15px;
6357 -}
6358 -#elementor-template-library-save-template-form .cloud-library-form-inputs .cloud-folder-selection-dropdown .eicon-folder-o {
6359 - margin-inline-end: 10px;
6360 -}
6361 -#elementor-template-library-save-template-form .cloud-library-form-inputs .cloud-folder-selection-dropdown .folder-list {
6362 - max-height: 170px;
6363 -}
6364 -#elementor-template-library-save-template-form .cloud-library-form-inputs .cloud-folder-selection-dropdown .folder-item {
6365 - padding: 5px 15px;
6366 - cursor: pointer;
6367 - list-style: none;
6368 -}
6369 -#elementor-template-library-save-template-form .cloud-library-form-inputs .cloud-folder-selection-dropdown .folder-item[data-id="0"] .eicon-folder-o {
6370 - display: none;
6371 -}
6372 -#elementor-template-library-save-template-form .cloud-library-form-inputs .cloud-folder-selection-dropdown .folder-item .eicon-loading {
6373 - margin: 0px;
6374 -}
6375 -#elementor-template-library-save-template-form .cloud-library-form-inputs .cloud-folder-selection-dropdown .folder-item[data-id="0"] {
6376 - text-decoration: underline;
6377 -}
6378 -#elementor-template-library-save-template-form .cloud-library-form-inputs .cloud-folder-selection-dropdown .folder-item:hover, #elementor-template-library-save-template-form .cloud-library-form-inputs .cloud-folder-selection-dropdown .folder-item.selected, #elementor-template-library-save-template-form .cloud-library-form-inputs .cloud-folder-selection-dropdown .folder-item:focus {
6379 - background: var(--e-a-border-color);
6380 -}
6381 -#elementor-template-library-save-template-form .cloud-library-form-inputs .cloud-folder-selection-dropdown .folder-item:focus-visible {
6382 - outline: 2px solid var(--e-a-border-color-focus);
6383 - outline-offset: -2px;
6384 -}
6385 -#elementor-template-library-save-template-form .cloud-library-form-inputs .cloud-folder-selection-dropdown .folder-item.disabled {
6386 - pointer-events: none;
6387 - opacity: 0.3;
6388 -}
6389 -#elementor-template-library-save-template-form .cloud-library-form-inputs .cloud-folder-selection-dropdown .no-results {
6390 - text-align: center;
6391 - font-size: 13px;
6392 - margin: 0 20px;
6393 - padding-block: 15px;
6394 - pointer-events: none;
6395 -}
6396 -#elementor-template-library-save-template-form .cloud-library-form-inputs .cloud-folder-selection-dropdown .no-results i {
6397 - font-size: 24px;
6398 - padding-block-end: 10px;
6399 -}
6400 -#elementor-template-library-save-template-form .cloud-library-form-inputs #elementor-template-library-save-template-name {
6401 - border-block-start: none;
6402 - border-inline: none;
6403 -}
6404 -#elementor-template-library-save-template-form .cloud-library-form-inputs .source-selections-input.disabled {
6405 - pointer-events: none;
6406 - opacity: 0.3;
6407 -}
6408 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b {
6409 - display: flex;
6410 - flex-direction: column;
6411 - width: 600px;
6412 - text-align: start;
6413 -}
6414 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .template-name-label,
6415 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .save-location-label {
6416 - font-size: 12px;
6417 - font-weight: 400;
6418 - color: var(--e-a-color-txt);
6419 -}
6420 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b #elementor-template-library-save-template-name {
6421 - width: 100%;
6422 - padding: 12px 15px;
6423 - border: var(--e-a-border-bold);
6424 - border-radius: 3px;
6425 - margin-block-end: 0;
6426 -}
6427 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections {
6428 - border: none;
6429 - padding: 0;
6430 - gap: 12px;
6431 - margin-block-start: 20px;
6432 -}
6433 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input {
6434 - display: flex;
6435 - align-items: center;
6436 - padding: 12px 15px;
6437 - border: var(--e-a-border-bold);
6438 - border-radius: 3px;
6439 - width: 100%;
6440 - line-height: normal;
6441 - gap: 8px;
6442 -}
6443 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input:has(input[type=checkbox]:checked) {
6444 - border-color: var(--e-a-color-txt);
6445 -}
6446 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input.cloud, #elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input.local {
6447 - display: flex;
6448 -}
6449 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input input[type=checkbox] {
6450 - margin-inline-end: 0;
6451 - flex-shrink: 0;
6452 - position: relative;
6453 -}
6454 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input input[type=checkbox]:checked {
6455 - inset-block-start: 0;
6456 -}
6457 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input input[type=checkbox]::after {
6458 - content: "";
6459 - position: absolute;
6460 - inset-inline-end: -8px;
6461 - width: 1px;
6462 - height: 18px;
6463 - background-color: var(--e-a-border-color);
6464 -}
6465 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input > i:first-of-type {
6466 - margin-inline-start: 12px;
6467 - margin-inline-end: 4px;
6468 - font-size: 24px;
6469 - color: var(--e-a-color-txt);
6470 -}
6471 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input > svg:first-of-type {
6472 - margin-inline-start: 8px;
6473 - margin-inline-end: 0;
6474 - font-size: 24px;
6475 - color: var(--e-a-color-txt);
6476 -}
6477 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input label {
6478 - flex: 0 0 auto;
6479 - margin: 0;
6480 - cursor: pointer;
6481 -}
6482 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input .divider {
6483 - margin-inline: 0;
6484 -}
6485 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input .ellipsis-container {
6486 - display: inline;
6487 - background: transparent;
6488 - padding: 0;
6489 - border-radius: 0;
6490 - vertical-align: baseline;
6491 - text-decoration: underline;
6492 - cursor: pointer;
6493 - margin-inline-start: 0;
6494 -}
6495 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input .ellipsis-container:hover {
6496 - background: transparent;
6497 -}
6498 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input .select-folder-link {
6499 - color: var(--e-a-color-primary-bold);
6500 - text-decoration: underline;
6501 - cursor: pointer;
6502 - margin-inline-start: 4px;
6503 -}
6504 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input .select-folder-link:hover {
6505 - text-decoration: none;
6506 -}
6507 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input .upgrade-badge {
6508 - display: none;
6509 - border: none;
6510 - padding: 0;
6511 - border-radius: 0;
6512 - margin-inline-start: 0;
6513 - background: transparent;
6514 - transition: background-color 0.2s;
6515 - padding: 3px 8px;
6516 -}
6517 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input .upgrade-badge:hover {
6518 - background-color: var(--e-a-btn-bg-primary-hover);
6519 - border-radius: 3px;
6520 -}
6521 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input .upgrade-badge a {
6522 - color: var(--e-a-btn-bg-accent);
6523 - text-decoration: none;
6524 - display: flex;
6525 - align-items: center;
6526 - gap: 4px;
6527 - font-size: 14px;
6528 - font-weight: 500;
6529 -}
6530 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input .upgrade-badge a i {
6531 - margin: 0;
6532 - font-size: 14px;
6533 -}
6534 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input .connect-badge {
6535 - display: none;
6536 -}
6537 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input .connect-badge .connect-divider {
6538 - color: var(--e-a-color-txt-muted);
6539 - margin-inline: 5px;
6540 -}
6541 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input .connect-badge a {
6542 - color: var(--e-a-color-info);
6543 - text-decoration: underline;
6544 -}
6545 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input .connect-badge a:hover {
6546 - text-decoration: none;
6547 -}
6548 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input .account-badge {
6549 - display: flex;
6550 - align-items: center;
6551 - gap: 6px;
6552 - padding: 6px 12px;
6553 - border: none;
6554 - border-radius: 20px;
6555 - font-size: 14px;
6556 - font-weight: 500;
6557 - cursor: pointer;
6558 - transition: opacity 0.2s;
6559 - margin-inline-start: auto;
6560 -}
6561 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input .account-badge:hover {
6562 - opacity: 0.8;
6563 -}
6564 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input .account-badge i {
6565 - margin: 0;
6566 - font-size: 14px;
6567 -}
6568 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input .account-badge.cloud-account-badge {
6569 - background-color: var(--e-a-bg-info);
6570 - color: var(--e-a-color-info);
6571 -}
6572 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input .account-badge.cloud-account-badge i {
6573 - color: var(--e-a-color-info);
6574 -}
6575 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input .account-badge.site-account-badge {
6576 - background-color: var(--e-a-bg-warning);
6577 - color: var(--e-a-btn-bg-warning-hover);
6578 -}
6579 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input .account-badge.site-account-badge i {
6580 - color: var(--e-a-btn-bg-warning-hover);
6581 -}
6582 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input .selected-folder {
6583 - display: none;
6584 - margin-inline-start: 8px;
6585 - align-items: center;
6586 - gap: 6px;
6587 -}
6588 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input .selected-folder[style*="display: inline"] {
6589 - display: inline-flex !important;
6590 -}
6591 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input .selected-folder-text {
6592 - text-decoration: underline;
6593 - cursor: pointer;
6594 -}
6595 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input .eicon-editor-close {
6596 - cursor: pointer;
6597 - font-size: 14px;
6598 -}
6599 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .cloud-folder-selection-dropdown {
6600 - inset-block-start: 75px;
6601 - inset-inline-start: 230px;
6602 -}
6603 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections-input.cloud:not(:has(.connect-badge)) .connect-badge {
6604 - display: none;
6605 -}
6606 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections-input.cloud:has(.connect-badge) .connect-badge {
6607 - display: inline;
6608 -}
6609 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections-input.cloud:has(.connect-badge) .upgrade-badge {
6610 - display: none;
6611 -}
6612 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections-input.cloud:has(.connect-badge) {
6613 - border-color: var(--e-a-border-color);
6614 -}
6615 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections-input.cloud:has(.connect-badge) > i:first-of-type,
6616 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections-input.cloud:has(.connect-badge) label,
6617 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections-input.cloud:has(.connect-badge) .divider {
6618 - color: var(--e-a-color-txt-disabled);
6619 -}
6620 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections-input.cloud:has(.connect-badge) input[type=checkbox]::after {
6621 - background-color: var(--e-a-color-txt-disabled);
6622 -}
6623 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b.promotion .source-selections-input.cloud, #elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b.max-capacity .source-selections-input.cloud {
6624 - border-color: var(--e-a-border-color);
6625 -}
6626 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b.promotion .source-selections-input.cloud > i:first-of-type,
6627 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b.promotion .source-selections-input.cloud label,
6628 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b.promotion .source-selections-input.cloud .divider, #elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b.max-capacity .source-selections-input.cloud > i:first-of-type,
6629 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b.max-capacity .source-selections-input.cloud label,
6630 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b.max-capacity .source-selections-input.cloud .divider {
6631 - color: var(--e-a-color-txt-disabled);
6632 -}
6633 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b.promotion .source-selections-input.cloud input[type=checkbox]::after, #elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b.max-capacity .source-selections-input.cloud input[type=checkbox]::after {
6634 - background-color: var(--e-a-color-txt-disabled);
6635 -}
6636 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b.promotion .source-selections-input.cloud .upgrade-badge, #elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b.max-capacity .source-selections-input.cloud .upgrade-badge {
6637 - display: inline-flex;
6638 -}
6639 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b.promotion .source-selections-input.cloud .ellipsis-container, #elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b.max-capacity .source-selections-input.cloud .ellipsis-container {
6640 - display: none;
6641 -}
6642 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b.promotion .source-selections-input.cloud .divider, #elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b.max-capacity .source-selections-input.cloud .divider {
6643 - display: block;
6644 -}
6645 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b.promotion .source-selections-input.cloud input[type=checkbox],
6646 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b.promotion .source-selections-input.cloud label, #elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b.max-capacity .source-selections-input.cloud input[type=checkbox],
6647 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b.max-capacity .source-selections-input.cloud label {
6648 - pointer-events: none;
6649 -}
6650 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b.max-capacity .quota-cta {
6651 - display: block;
6652 - margin-block-start: 15px;
6653 -}
6654 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b #elementor-template-library-save-template-submit {
6655 - align-self: center;
6656 - margin-block-start: 20px;
6657 - float: none;
6658 -}
6659 4984
6660 4985 #elementor-template-library-save-template-name {
6661 4986 width: 500px;
6662 4987 padding-inline-start: 25px;
@@ -6708,12 +5033,8 @@
6708 5033 padding: 100px 0 0;
6709 5034 min-height: 550px;
6710 5035 }
6711 5036
6712 -.elementor-template-library-cloud-empty__button {
6713 - margin-block-start: 45px;
6714 -}
6715 -
6716 5037 #elementor-template-library-connect-logo {
6717 5038 font-size: 20px;
6718 5039 }
6719 5040 #elementor-template-library-connect__button {
@@ -6750,11 +5071,11 @@
6750 5071 }
6751 5072
6752 5073 .elementor-template-library-blank-footer {
6753 5074 position: absolute;
6754 - inset-block-end: 70px;
6755 - inset-inline-start: 50%;
6756 - transform: translateX(calc(-50% * var(--direction-multiplier)));
5075 + bottom: 70px;
5076 + left: 50%;
5077 + transform: translateX(-50%);
6757 5078 font-style: italic;
6758 5079 color: var(--e-a-color-txt-muted);
6759 5080 }
6760 5081 @media (max-height: 700px) {
@@ -6786,287 +5107,50 @@
6786 5107 #elementor-template-library-error-info {
6787 5108 margin-block-start: 10px;
6788 5109 }
6789 5110
6790 -#elementor-library--infotip__dialog,
6791 -#elementor-library--connect_infotip__dialog,
6792 -#elementor-library--cloud-upgrade__dialog,
6793 -#elementor-library--site-info__dialog {
6794 - position: absolute;
6795 - z-index: 10000;
6796 - background-color: var(--e-a-bg-default);
6797 - box-shadow: var(--e-a-popover-shadow);
6798 - border-radius: var(--e-a-border-radius);
5111 +@media (max-width: 1439px) {
5112 + .elementor-template-library-local-column-1 {
5113 + width: 33%;
5114 + }
5115 + .elementor-template-library-local-column-2 {
5116 + width: 10%;
5117 + }
5118 + .elementor-template-library-local-column-3 {
5119 + width: 15%;
5120 + }
5121 + .elementor-template-library-local-column-4 {
5122 + width: 15%;
5123 + }
5124 + .elementor-template-library-local-column-5 {
5125 + width: 27%;
5126 + }
6799 5127 }
6800 -#elementor-library--infotip__dialog.variant-b,
6801 -#elementor-library--connect_infotip__dialog.variant-b,
6802 -#elementor-library--cloud-upgrade__dialog.variant-b,
6803 -#elementor-library--site-info__dialog.variant-b {
6804 - width: 200px;
6805 - color: var(--e-a-color-txt-invert);
6806 - background-color: var(--e-a-bg-secondary);
5128 +@media (min-width: 1440px) {
5129 + .elementor-template-library-local-column-1 {
5130 + width: 25%;
5131 + }
5132 + .elementor-template-library-local-column-2 {
5133 + width: 17%;
5134 + }
5135 + .elementor-template-library-local-column-3 {
5136 + width: 17%;
5137 + }
5138 + .elementor-template-library-local-column-4 {
5139 + width: 17%;
5140 + }
5141 + .elementor-template-library-local-column-5 {
5142 + width: 24%;
5143 + }
6807 5144 }
6808 -#elementor-library--infotip__dialog.variant-b .dialog-message,
6809 -#elementor-library--connect_infotip__dialog.variant-b .dialog-message,
6810 -#elementor-library--cloud-upgrade__dialog.variant-b .dialog-message,
6811 -#elementor-library--site-info__dialog.variant-b .dialog-message {
6812 - padding: 4px 8px 4px 8px;
5145 +@media (max-width: 1024px) {
5146 + .elementor-template-library-local-column-3 {
5147 + display: none;
5148 + }
5149 + .elementor-template-library-local-column-5 {
5150 + width: 41%;
5151 + }
6813 5152 }
6814 -#elementor-library--infotip__dialog__title,
6815 -#elementor-library--connect_infotip__dialog__title,
6816 -#elementor-library--cloud-upgrade__dialog__title,
6817 -#elementor-library--site-info__dialog__title {
6818 - font-size: 14px;
6819 -}
6820 -#elementor-library--infotip__dialog .dialog-buttons-wrapper,
6821 -#elementor-library--connect_infotip__dialog .dialog-buttons-wrapper,
6822 -#elementor-library--cloud-upgrade__dialog .dialog-buttons-wrapper,
6823 -#elementor-library--site-info__dialog .dialog-buttons-wrapper {
6824 - padding: 10px 0 10px 10px;
6825 - float: inline-end;
6826 -}
6827 -#elementor-library--infotip__dialog .dialog-button,
6828 -#elementor-library--connect_infotip__dialog .dialog-button,
6829 -#elementor-library--cloud-upgrade__dialog .dialog-button,
6830 -#elementor-library--site-info__dialog .dialog-button {
6831 - padding: 7px 25px;
6832 - font-size: 13px;
6833 - background: none;
6834 - color: var(--e-a-btn-bg-accent);
6835 - border: none;
6836 - font-weight: 500;
6837 - cursor: pointer;
6838 -}
6839 -#elementor-library--infotip__dialog:after,
6840 -#elementor-library--connect_infotip__dialog:after,
6841 -#elementor-library--cloud-upgrade__dialog:after,
6842 -#elementor-library--site-info__dialog:after {
6843 - content: "";
6844 - position: absolute;
6845 - inset-inline-end: 46%;
6846 - transform: scaleX(0.7);
6847 - border: 10px solid transparent;
6848 -}
6849 -
6850 -#elementor-library--infotip__dialog {
6851 - width: 265px;
6852 -}
6853 -#elementor-library--infotip__dialog .dialog-message {
6854 - padding: 20px 20px 0px 20px;
6855 -}
6856 -#elementor-library--infotip__dialog:after {
6857 - inset-block-start: 100%;
6858 - border-block-start-color: var(--e-a-bg-default);
6859 -}
6860 -#elementor-library--infotip__dialog.variant-b:after {
6861 - border-block-start-color: var(--e-a-bg-secondary);
6862 -}
6863 -
6864 -#elementor-library--connect_infotip__dialog {
6865 - width: 265px;
6866 -}
6867 -#elementor-library--connect_infotip__dialog .dialog-message {
6868 - padding: 20px;
6869 -}
6870 -#elementor-library--connect_infotip__dialog:not(.variant-b):after {
6871 - inset-block-end: 100%;
6872 - border-block-end-color: var(--e-a-bg-default);
6873 -}
6874 -#elementor-library--connect_infotip__dialog.variant-b:after {
6875 - border-block-start-color: var(--e-a-bg-secondary);
6876 - inset-block-start: 100%;
6877 -}
6878 -#elementor-library--connect_infotip__dialog.variant-b {
6879 - width: 265px;
6880 -}
6881 -
6882 -#elementor-library--cloud-upgrade__dialog {
6883 - width: 265px;
6884 -}
6885 -#elementor-library--cloud-upgrade__dialog:after {
6886 - inset-block-start: 100%;
6887 - border-block-start-color: var(--e-a-bg-default);
6888 -}
6889 -#elementor-library--cloud-upgrade__dialog.variant-b:after {
6890 - border-block-start-color: var(--e-a-bg-secondary);
6891 -}
6892 -
6893 -#elementor-library--site-info__dialog {
6894 - width: 265px;
6895 -}
6896 -#elementor-library--site-info__dialog:after {
6897 - inset-block-start: 100%;
6898 - border-block-start-color: var(--e-a-bg-default);
6899 -}
6900 -#elementor-library--site-info__dialog.variant-b:after {
6901 - border-block-start-color: var(--e-a-bg-secondary);
6902 -}
6903 -
6904 -.elementor-global-styles-dialog {
6905 - --gsd-color-text-primary: #0c0d0e;
6906 - --gsd-color-text-secondary: #3f444b;
6907 - --gsd-color-text-tertiary: #69727D;
6908 - --gsd-color-divider: rgba(0, 0, 0, 0.12);
6909 - --gsd-color-primary-main: #f0abfc;
6910 - --gsd-color-primary-hover: #e879f9;
6911 - --gsd-color-secondary-main: #515962;
6912 - --gsd-border-radius: 4px;
6913 - --gsd-spacing-horizontal: 24px;
6914 - --gsd-font-family: 'Roboto', sans-serif;
6915 - padding: 16px 0 0;
6916 - min-width: 444px;
6917 -}
6918 -.elementor-global-styles-dialog__header {
6919 - padding: 10px var(--gsd-spacing-horizontal) 0;
6920 - margin-block-end: 16px;
6921 -}
6922 -.elementor-global-styles-dialog__header h2 {
6923 - margin: 0 0 4px;
6924 - font-family: var(--gsd-font-family);
6925 - font-size: 16px;
6926 - font-weight: 500;
6927 - line-height: 1.3;
6928 - color: var(--gsd-color-text-primary);
6929 - letter-spacing: 0.15px;
6930 -}
6931 -.elementor-global-styles-dialog__header p {
6932 - margin: 0;
6933 - font-family: var(--gsd-font-family);
6934 - font-size: 14px;
6935 - font-weight: 400;
6936 - line-height: 20px;
6937 - color: var(--gsd-color-text-secondary);
6938 - letter-spacing: 0.15px;
6939 -}
6940 -.elementor-global-styles-dialog__options {
6941 - display: flex;
6942 - flex-direction: column;
6943 - gap: 12px;
6944 - padding: 0 var(--gsd-spacing-horizontal);
6945 -}
6946 -.elementor-global-styles-dialog__radio-card {
6947 - display: flex;
6948 - gap: 0;
6949 - padding: 12px 8px;
6950 - border: 1px solid var(--gsd-color-divider);
6951 - border-radius: var(--gsd-border-radius);
6952 - cursor: pointer;
6953 - transition: border-color 0.2s ease;
6954 -}
6955 -.elementor-global-styles-dialog__radio-card:has(input[type=radio]:checked) {
6956 - border: 2px solid var(--gsd-color-text-primary);
6957 - padding: 11px 7px;
6958 -}
6959 -.elementor-global-styles-dialog__radio-card input[type=radio] {
6960 - flex-shrink: 0;
6961 - width: 20px;
6962 - height: 20px;
6963 - margin: 9px;
6964 - cursor: pointer;
6965 - color: var(--gsd-color-text-tertiary);
6966 - accent-color: var(--gsd-color-text-primary);
6967 -}
6968 -.elementor-global-styles-dialog__radio-card-content {
6969 - display: flex;
6970 - align-items: flex-start;
6971 - flex-direction: column;
6972 - flex: 1;
6973 -}
6974 -.elementor-global-styles-dialog__radio-label {
6975 - font-family: var(--gsd-font-family);
6976 - font-size: 14px;
6977 - font-weight: 500;
6978 - line-height: 18px;
6979 - color: var(--gsd-color-text-primary);
6980 - letter-spacing: 0.15px;
6981 -}
6982 -.elementor-global-styles-dialog__radio-description {
6983 - font-family: var(--gsd-font-family);
6984 - font-size: 12px;
6985 - font-weight: 400;
6986 - line-height: 20px;
6987 - color: var(--gsd-color-text-secondary);
6988 - letter-spacing: 0.4px;
6989 -}
6990 -.elementor-global-styles-dialog__checkbox-container {
6991 - display: flex;
6992 - align-items: flex-start;
6993 - gap: 4px;
6994 - padding: 0;
6995 - margin-block-start: 0;
6996 -}
6997 -.elementor-global-styles-dialog__checkbox-option {
6998 - display: flex;
6999 - align-items: flex-start;
7000 - gap: 4px;
7001 - cursor: pointer;
7002 -}
7003 -.elementor-global-styles-dialog__checkbox-option input[type=checkbox] {
7004 - width: 18px;
7005 - height: 18px;
7006 - margin: 4px;
7007 - cursor: pointer;
7008 -}
7009 -.elementor-global-styles-dialog__checkbox-option input[type=checkbox]:checked {
7010 - background-color: var(--gsd-color-text-tertiary);
7011 -}
7012 -.elementor-global-styles-dialog__checkbox-label {
7013 - font-family: var(--gsd-font-family);
7014 - font-size: 12px;
7015 - font-weight: 400;
7016 - line-height: 1.43;
7017 - color: var(--gsd-color-text-primary);
7018 - letter-spacing: 0.15px;
7019 - padding-block-start: 4px;
7020 - margin-inline-start: 4px;
7021 -}
7022 -.elementor-global-styles-dialog__checkbox-label a {
7023 - color: #2563eb;
7024 - text-decoration: underline;
7025 -}
7026 -.elementor-global-styles-dialog__checkbox-label a:hover {
7027 - color: #2563eb;
7028 -}
7029 -.elementor-global-styles-dialog__footer {
7030 - display: flex;
7031 - justify-content: flex-end;
7032 - align-items: center;
7033 - gap: 8px;
7034 - padding: 16px var(--gsd-spacing-horizontal);
7035 -}
7036 -.elementor-global-styles-dialog__button-cancel {
7037 - padding: 6px 8px;
7038 - font-family: var(--gsd-font-family);
7039 - font-size: 15px;
7040 - font-weight: 500;
7041 - line-height: 24px;
7042 - letter-spacing: 0.4px;
7043 - color: var(--gsd-color-secondary-main);
7044 - background: transparent;
7045 - border: none;
7046 - border-radius: var(--gsd-border-radius);
7047 - cursor: pointer;
7048 -}
7049 -.elementor-global-styles-dialog__button-cancel:hover {
7050 - background: rgba(0, 0, 0, 0.04);
7051 -}
7052 -.elementor-global-styles-dialog__button-insert {
7053 - padding: 6px 16px;
7054 - font-family: var(--gsd-font-family);
7055 - font-size: 15px;
7056 - font-weight: 500;
7057 - line-height: 24px;
7058 - letter-spacing: 0.4px;
7059 - color: var(--gsd-color-text-primary);
7060 - background: var(--gsd-color-primary-main);
7061 - border: none;
7062 - border-radius: var(--gsd-border-radius);
7063 - cursor: pointer;
7064 -}
7065 -.elementor-global-styles-dialog__button-insert:hover {
7066 - background: var(--gsd-color-primary-hover);
7067 -}
7068 -
7069 5153 .elementor-tags-list {
7070 5154 display: none;
7071 5155 position: absolute;
7072 5156 width: 260px;
@@ -7156,10 +5240,10 @@
7156 5240 }
7157 5241 .elementor-tag-settings-popup:before {
7158 5242 content: "";
7159 5243 position: absolute;
7160 - inset-block-start: -20px;
7161 - inset-inline-start: 5px;
5244 + top: -20px;
5245 + left: 5px;
7162 5246 border: 10px solid transparent;
7163 5247 border-block-end-color: var(--e-a-border-color);
7164 5248 }
7165 5249 .elementor-tag-settings-popup .elementor-control-type-section:first-child {
@@ -7247,17 +5331,10 @@
7247 5331 align-items: center;
7248 5332 }
7249 5333 .elementor-context-menu-list__item--disabled {
7250 5334 cursor: default;
7251 - opacity: 0.5;
7252 5335 color: var(--e-a-color-disabled);
7253 5336 }
7254 -.elementor-context-menu-list__item--disabled.elementor-context-menu-list__item--has-shortcut-action {
7255 - opacity: 1;
7256 -}
7257 -.elementor-context-menu-list__item--disabled.elementor-context-menu-list__item--has-shortcut-action > :not(.elementor-context-menu-list__item__shortcut) {
7258 - opacity: 0.5;
7259 -}
7260 5337 .elementor-context-menu-list__item:not(.elementor-context-menu-list__item--disabled):hover, .elementor-context-menu-list__item:not(.elementor-context-menu-list__item--disabled):focus {
7261 5338 background-color: var(--e-a-bg-hover);
7262 5339 color: var(--e-a-color-hover);
7263 5340 }
@@ -7273,46 +5350,17 @@
7273 5350 }
7274 5351 .elementor-context-menu-list__item__shortcut {
7275 5352 color: var(--e-a-color-txt-muted);
7276 5353 }
7277 -.elementor-context-menu-list__item__shortcut--link-fullwidth {
7278 - position: absolute;
7279 - inset: 0;
7280 - z-index: 2;
7281 - cursor: pointer;
7282 -}
7283 -.elementor-context-menu-list__item__shortcut__new-badge {
7284 - border: 1px solid var(--e-a-color-primary-bold);
7285 - padding: 2px 8px;
7286 - color: var(--e-a-color-primary-bold);
7287 - border-radius: 10px;
7288 - font-size: 10px;
7289 -}
7290 -.elementor-context-menu-list__item__shortcut__promotion-badge {
7291 - display: flex;
7292 - align-items: center;
7293 - justify-content: center;
7294 - width: 24px;
7295 - height: 24px;
7296 - border-radius: 50%;
7297 - background-color: rgba(214, 16, 124, 0.12);
7298 - color: var(--e-a-color-accent-promotion, #D6107C);
7299 - font-size: 16px;
7300 - cursor: pointer;
7301 -}
7302 5354 .elementor-context-menu-list__item__title, .elementor-context-menu-list__item__shortcut {
7303 5355 font-size: 14px;
7304 5356 font-style: normal;
7305 5357 font-weight: 400;
7306 5358 line-height: 1;
7307 - position: relative;
7308 5359 }
7309 5360 .elementor-context-menu-list__item.elementor-context-menu-list__item-delete:not(.elementor-context-menu-list__item--disabled):hover > *, .elementor-context-menu-list__item.elementor-context-menu-list__item-delete:not(.elementor-context-menu-list__item--disabled):focus > * {
7310 5361 color: var(--e-global-color-danger);
7311 5362 }
7312 -.elementor-context-menu-list__item.elementor-hidden {
7313 - display: none;
7314 -}
7315 5363 .elementor-context-menu .eicon-pro-icon {
7316 5364 color: var(--e-global-color-accent);
7317 5365 }
7318 5366
@@ -7384,9 +5432,9 @@
7384 5432 }
7385 5433 .elementor-hotkeys__item--shortcut kbd:not(:last-of-type)::after {
7386 5434 content: "+";
7387 5435 position: absolute;
7388 - inset-inline-end: 0;
5436 + right: 0;
7389 5437 width: 9px;
7390 5438 text-align: center;
7391 5439 margin-inline-end: -18px;
7392 5440 }
@@ -7395,13 +5443,8 @@
7395 5443 margin-inline-end: -16px;
7396 5444 }
7397 5445 }
7398 5446
7399 -.elementor-template-library-template-remote:not(.elementor-template-library-template-page):not(.elementor-template-library-template-lp).elementor-template-library-template-floating_button {
7400 - margin-top: 0 !important;
7401 - width: calc(25% - 30px);
7402 -}
7403 -
7404 5447 .ui-resizable-n {
7405 5448 top: -5px;
7406 5449 }
7407 5450 .ui-resizable-e {
@@ -7459,18 +5502,16 @@
7459 5502 }
7460 5503
7461 5504 body {
7462 5505 --e-editor-navigator-width: 240px;
7463 - --e-editor-navigator-indicator-width: 3px;
7464 - --e-editor-navigator-promotion-height: 30px;
7465 5506 }
7466 5507
7467 5508 #elementor-navigator {
7468 5509 position: fixed;
7469 - inset-block-start: 100px;
7470 - inset-inline-end: 30px;
5510 + top: 100px;
7471 5511 width: var(--e-editor-navigator-width);
7472 5512 height: 50vh;
5513 + right: 30px;
7473 5514 background-color: var(--e-a-bg-default);
7474 5515 border: var(--e-a-border);
7475 5516 box-shadow: 0 2px 20px 0 rgba(0, 0, 0, 0.1);
7476 5517 -webkit-user-select: none;
@@ -7480,10 +5521,10 @@
7480 5521 z-index: 100;
7481 5522 display: none;
7482 5523 }
7483 5524 body.elementor-navigator-docked #elementor-navigator {
7484 - inset: 0;
7485 - inset-inline-start: auto;
5525 + top: 0;
5526 + right: 0;
7486 5527 height: 100%;
7487 5528 }
7488 5529 body:not(.elementor-navigator-docked) #elementor-navigator {
7489 5530 border-radius: 5px;
@@ -7489,10 +5530,8 @@
7489 5530 border-radius: 5px;
7490 5531 }
7491 5532 #elementor-navigator__inner {
7492 5533 height: 100%;
7493 - display: flex;
7494 - flex-direction: column;
7495 5534 }
7496 5535 #elementor-navigator__header {
7497 5536 display: flex;
7498 5537 align-items: stretch;
@@ -7506,22 +5545,8 @@
7506 5545 font-weight: 400;
7507 5546 padding: 10px 0;
7508 5547 cursor: move;
7509 5548 }
7510 -iframe + #elementor-navigator__header__title, #elementor-navigator__ai-titles + #elementor-navigator__header__title {
7511 - padding-inline-end: 17.5px;
7512 -}
7513 -#elementor-navigator__ai-titles {
7514 - width: 35px;
7515 - text-align: center;
7516 - cursor: pointer;
7517 - background-color: transparent;
7518 - border: none;
7519 - outline: none;
7520 -}
7521 -#elementor-navigator__ai-titles:hover {
7522 - color: #E73CF6;
7523 -}
7524 5549 #elementor-navigator__close, #elementor-navigator__toggle-all {
7525 5550 color: var(--e-a-color-txt);
7526 5551 background-color: transparent;
7527 5552 border: none;
@@ -7542,9 +5567,9 @@
7542 5567 #elementor-navigator__close {
7543 5568 font-size: 11px;
7544 5569 }
7545 5570 #elementor-navigator__elements {
7546 - flex-grow: 1;
5571 + height: calc(100% - 49px);
7547 5572 overflow: auto;
7548 5573 position: relative;
7549 5574 }
7550 5575 .elementor-navigator-docked #elementor-navigator__elements {
@@ -7556,31 +5581,18 @@
7556 5581 #elementor-navigator__elements > .elementor-navigator__element-section {
7557 5582 border-block-end: var(--e-a-border);
7558 5583 }
7559 5584 #elementor-navigator__footer {
5585 + position: absolute;
7560 5586 width: 100%;
5587 + left: 0;
5588 + bottom: 0;
7561 5589 text-align: center;
7562 -}
7563 -#elementor-navigator__footer__resize-bar {
7564 5590 border-block-start: var(--e-a-border);
7565 5591 }
7566 -.elementor-navigator-docked #elementor-navigator__footer__resize-bar {
5592 +.elementor-navigator-docked #elementor-navigator__footer {
7567 5593 display: none;
7568 5594 }
7569 -#elementor-navigator__footer__promotion {
7570 - font-size: 12px;
7571 - padding: 4px 17px;
7572 - font-family: "Roboto", sans-serif;
7573 - color: var(--e-a-bg-logo);
7574 - min-height: var(--e-editor-navigator-promotion-height);
7575 - display: flex;
7576 - justify-content: center;
7577 - align-items: center;
7578 -}
7579 -#elementor-navigator__footer__promotion a {
7580 - color: var(--e-a-color-accent-promotion);
7581 - margin-inline-start: 1px;
7582 -}
7583 5595
7584 5596 .elementor-navigator__item {
7585 5597 position: relative;
7586 5598 display: flex;
@@ -7599,9 +5611,9 @@
7599 5611 .elementor-navigator__item[data-locked=true] {
7600 5612 cursor: not-allowed;
7601 5613 }
7602 5614 .elementor-navigator__item:not(.elementor-active) .elementor-navigator__element__list-toggle i {
7603 - transform: rotate(calc(-90deg * var(--direction-multiplier)));
5615 + transform: rotate(-90deg);
7604 5616 }
7605 5617 .elementor-navigator__item > * {
7606 5618 display: flex;
7607 5619 align-items: center;
@@ -7616,9 +5628,9 @@
7616 5628 .elementor-navigator__elements .elementor-empty-view {
7617 5629 padding: 10px;
7618 5630 }
7619 5631 .elementor-navigator__elements .elementor-empty-view__title {
7620 - margin-inline-start: 34px;
5632 + margin-inline-start: 23px;
7621 5633 font-size: 10px;
7622 5634 font-style: italic;
7623 5635 }
7624 5636 .elementor-navigator__elements .ui-sortable-helper {
@@ -7686,9 +5698,9 @@
7686 5698 overflow: hidden;
7687 5699 }
7688 5700 .elementor-navigator__element__toggle {
7689 5701 position: absolute;
7690 - inset-inline-end: 15px;
5702 + right: 15px;
7691 5703 height: 100%;
7692 5704 z-index: 0;
7693 5705 font-size: 13px;
7694 5706 }
@@ -7694,12 +5706,13 @@
7694 5706 }
7695 5707 .elementor-navigator__element__indicators {
7696 5708 position: relative;
7697 5709 transition: transform 0.5s;
5710 + padding-inline-start: 5px;
7698 5711 z-index: 91;
7699 5712 }
7700 5713 .elementor-navigator__element__indicators:not(:hover) {
7701 - transform: translateX(calc(100% * var(--direction-multiplier) - var(--e-editor-navigator-indicator-width) * var(--direction-multiplier)));
5714 + transform: translateX(calc(100% - 8px));
7702 5715 }
7703 5716 .elementor-navigator__element__indicator {
7704 5717 height: 100%;
7705 5718 width: 31px;
@@ -7707,13 +5720,16 @@
7707 5720 align-items: center;
7708 5721 justify-content: center;
7709 5722 color: var(--e-a-color-txt);
7710 5723 background-color: var(--e-a-bg-default);
7711 - border-inline-end: var(--e-a-border);
5724 + border-inline-start: var(--e-a-border);
7712 5725 }
7713 5726 .elementor-navigator__element__indicator:first-child {
7714 - border-inline-start: var(--e-editor-navigator-indicator-width) solid var(--e-a-border-color-accent);
5727 + border-inline-start: 3px solid var(--e-a-border-color-accent);
7715 5728 }
5729 +.elementor-editing .elementor-navigator__element__indicator:first-child {
5730 + border-color: #242729;
5731 +}
7716 5732 .elementor-navigator__element__indicator:hover {
7717 5733 color: var(--e-a-color-txt-hover);
7718 5734 }
7719 5735 .elementor-navigator__element--hidden .elementor-navigator__element__title,
@@ -7719,16 +5735,13 @@
7719 5735 .elementor-navigator__element--hidden .elementor-navigator__element__title,
7720 5736 .elementor-navigator__element--hidden .elementor-navigator__element__toggle {
7721 5737 opacity: 0.5;
7722 5738 }
7723 -.elementor-navigator__promotion-text {
7724 - line-height: 18px;
7725 -}
7726 5739
7727 5740 .e-notice-bar {
7728 5741 position: absolute;
7729 5742 width: 100%;
7730 - inset-block-end: 0;
5743 + bottom: 0;
7731 5744 display: flex;
7732 5745 align-items: center;
7733 5746 height: 40px;
7734 5747 color: #fff;
@@ -7752,9 +5765,9 @@
7752 5765 padding: 4px 10px;
7753 5766 font-size: 11px;
7754 5767 }
7755 5768 .e-notice-bar__primary_action a:hover {
7756 - color: rgb(70.5, 0, 30.2142857143);
5769 + color: #47001e;
7757 5770 background: #F1F2F3;
7758 5771 }
7759 5772 .e-notice-bar__secondary_message, .e-notice-bar__secondary_action {
7760 5773 font-size: 11px;
@@ -7854,11 +5867,11 @@
7854 5867 background-color: transparent;
7855 5868 }
7856 5869 #elementor-icons-manager__search i {
7857 5870 position: absolute;
7858 - inset-block-start: 50%;
7859 - inset-inline-end: 15px;
5871 + top: 50%;
7860 5872 transform: translateY(-50%);
5873 + right: 15px;
7861 5874 }
7862 5875 #elementor-icons-manager__tab__wrapper {
7863 5876 overflow: auto;
7864 5877 margin: 25px -15px 0;
@@ -7947,10 +5960,10 @@
7947 5960 content: "";
7948 5961 position: absolute;
7949 5962 height: 100%;
7950 5963 width: 3px;
7951 - inset-block-start: 0;
7952 - inset-inline-start: 0;
5964 + top: 0;
5965 + left: 0;
7953 5966 background-color: var(--e-a-border-color-accent);
7954 5967 }
7955 5968 .elementor-icons-manager__tab__item {
7956 5969 position: relative;
@@ -7975,11 +5988,11 @@
7975 5988 flex-direction: column;
7976 5989 align-items: center;
7977 5990 width: 100%;
7978 5991 position: absolute;
7979 - inset-block-start: 50%;
7980 - inset-inline-start: 50%;
7981 - transform: translate(calc(-50% * var(--direction-multiplier)), -50%);
5992 + top: 50%;
5993 + left: 50%;
5994 + transform: translate(-50%, -50%);
7982 5995 padding: 1px;
7983 5996 }
7984 5997 .elementor-icons-manager__tab__item__icon {
7985 5998 font-size: 25px;
@@ -8023,12 +6036,11 @@
8023 6036 }
8024 6037 .pickr .pcr-button:before, .pickr .pcr-button:after {
8025 6038 height: 12px;
8026 6039 width: 12px;
8027 - position: absolute;
8028 - inset-block-start: 50%;
8029 - inset-inline-start: 50%;
8030 - transform: translate(calc(-50% * var(--direction-multiplier)), -50%);
6040 + top: 50%;
6041 + left: 50%;
6042 + transform: translate(-50%, -50%);
8031 6043 }
8032 6044
8033 6045 .pcr-app {
8034 6046 background-color: var(--e-a-bg-default);
@@ -8046,11 +6058,8 @@
8046 6058 }
8047 6059 .pcr-app[data-theme=monolith] .pcr-selection .pcr-color-palette {
8048 6060 height: 150px;
8049 6061 }
8050 -.pcr-app .pcr-selection .pcr-picker {
8051 - box-shadow: 0 0 5px 1px rgba(0, 0, 0, 0.2);
8052 -}
8053 6062 .pcr-app .pcr-interaction {
8054 6063 padding-block-end: 20px;
8055 6064 }
8056 6065 .pcr-app .pcr-interaction input.pcr-result {
@@ -8135,9 +6144,12 @@
8135 6144 font-family: "eicons";
8136 6145 color: var(--e-a-btn-color-invert);
8137 6146 text-indent: 0;
8138 6147 position: absolute;
8139 - inset: 0;
6148 + left: 0;
6149 + top: 0;
6150 + width: 100%;
6151 + height: 100%;
8140 6152 display: flex;
8141 6153 justify-content: center;
8142 6154 align-items: center;
8143 6155 }
@@ -8168,9 +6180,9 @@
8168 6180 }
8169 6181
8170 6182 .select2-selection__arrow {
8171 6183 height: 27px;
8172 - inset-block-start: 0;
6184 + top: 0;
8173 6185 }
8174 6186
8175 6187 .select2-results__option[aria-selected=true] {
8176 6188 background-color: var(--e-a-bg-active);
@@ -8193,12 +6205,12 @@
8193 6205 .e-ui-state--document-scrubbing-mode__on, .e-ui-state--document-scrubbing-mode__on * {
8194 6206 cursor: ew-resize;
8195 6207 }
8196 6208 .e-ui-state--document-scrubbing-mode__on input.e-scrubbing--active, .e-ui-state--document-scrubbing-mode__on input.e-scrubbing--active:focus {
8197 - box-shadow: 0 0 0 1px rgb(14.2857142857, 58.5714285714, 155.7142857143) inset;
6209 + box-shadow: 0 0 0 1px #0e3b9c inset;
8198 6210 }
8199 6211 .e-ui-state--document-scrubbing-mode__on label.e-scrubbing--active {
8200 - color: rgb(14.2857142857, 58.5714285714, 155.7142857143);
6212 + color: #0e3b9c;
8201 6213 -webkit-user-select: none;
8202 6214 -moz-user-select: none;
8203 6215 user-select: none;
8204 6216 }
@@ -8229,10 +6241,11 @@
8229 6241 padding: 0;
8230 6242 margin: 0;
8231 6243 height: 100px;
8232 6244 position: absolute;
8233 - inset-block-start: -60px;
8234 - inset-inline: 0;
6245 + top: -60px;
6246 + left: 0;
6247 + right: 0;
8235 6248 }
8236 6249 #elementor-paste-area-dialog #elementor-paste-area-dialog__input:focus {
8237 6250 border-color: transparent;
8238 6251 outline: none;
@@ -8257,54 +6270,21 @@
8257 6270 display: block;
8258 6271 margin: 10px -15px;
8259 6272 }
8260 6273
8261 -.elementor-app-backdrop {
8262 - position: fixed;
8263 - z-index: 99998;
8264 - inset: 0;
8265 - background: rgba(0, 0, 0, 0.5);
8266 - opacity: 0;
8267 - transition: opacity 0.25s ease;
8268 -}
8269 -.elementor-app-backdrop--visible {
8270 - opacity: 1;
8271 -}
8272 -
8273 -.elementor-app-iframe {
8274 - position: fixed;
8275 - top: 30px;
8276 - left: 40px;
8277 - width: calc(100% - 80px);
8278 - height: calc(100% - 60px);
8279 - z-index: 100000;
8280 - border-radius: 12px;
8281 - box-shadow: 0 16px 64px rgba(0, 0, 0, 0.3);
8282 - background-color: transparent;
8283 - opacity: 0;
8284 - transition: opacity 0.25s ease;
8285 -}
8286 -.elementor-app-iframe--visible {
8287 - opacity: 1;
8288 -}
8289 -
8290 6274 [class^=eicon-flex], [class*=" eicon-flex"] {
8291 6275 transition: 0.3s all;
6276 + --is-ltr: 1;
6277 + --is-rtl: 0;
6278 + --rotation-direction: calc(var(--is-ltr) - var(--is-rtl));
8292 6279 }
8293 6280 [class^=eicon-flex].eicon-inline, [class*=" eicon-flex"].eicon-inline {
8294 6281 max-height: 1em;
8295 6282 max-width: 1em;
8296 6283 }
8297 -[class^=eicon-flex], [class*=" eicon-flex"] {
8298 - --is-ltr: 1;
8299 - --is-rtl: 0;
8300 -}
8301 6284 [class^=eicon-flex]:is(.eicon-justify-start-h, .eicon-justify-end-h), [class*=" eicon-flex"]:is(.eicon-justify-start-h, .eicon-justify-end-h) {
8302 6285 --rotation-direction: calc(var(--is-ltr) + var(--is-rtl));
8303 6286 }
8304 -[class^=eicon-flex], [class*=" eicon-flex"] {
8305 - --rotation-direction: calc(var(--is-ltr) - var(--is-rtl));
8306 -}
8307 6287 :is(.e-ui-state--document-direction-mode__column, .e-ui-state--document-direction-mode__column-reverse) [class^=eicon-flex]:not(.eicon-wrap):not(.eicon-nowrap):not(.eicon-grow), :is(.e-ui-state--document-direction-mode__column, .e-ui-state--document-direction-mode__column-reverse) [class*=" eicon-flex"]:not(.eicon-wrap):not(.eicon-nowrap):not(.eicon-grow) {
8308 6288 transform: rotate(calc(var(--rotation-direction) * 90deg));
8309 6289 }
8310 6290 :is(.e-ui-state--document-direction-mode__column, .e-ui-state--document-direction-mode__column-reverse) [class^=eicon-flex]:not(.eicon-wrap):not(.eicon-nowrap):not(.eicon-grow):is(.eicon-align-start-v, .eicon-align-end-v), :is(.e-ui-state--document-direction-mode__column, .e-ui-state--document-direction-mode__column-reverse) [class*=" eicon-flex"]:not(.eicon-wrap):not(.eicon-nowrap):not(.eicon-grow):is(.eicon-align-start-v, .eicon-align-end-v) {
@@ -8317,16 +6297,6 @@
8317 6297 transform: rotate(calc(var(--is-rtl) * 180deg));
8318 6298 }
8319 6299 .e-ui-state--document-direction-mode__row-reverse [class^=eicon-flex]:not(.eicon-wrap):not(.eicon-nowrap):not(.eicon-grow):is(.eicon-justify-start-h, .eicon-justify-end-h, .eicon-order-start, .eicon-order-end), .e-ui-state--document-direction-mode__row-reverse [class*=" eicon-flex"]:not(.eicon-wrap):not(.eicon-nowrap):not(.eicon-grow):is(.eicon-justify-start-h, .eicon-justify-end-h, .eicon-order-start, .eicon-order-end) {
8320 6300 transform: rotate(calc(var(--is-ltr) * 180deg));
8321 -}
8322 -
8323 -.elementor-editor-active .embed-media-settings .setting.caption {
8324 - display: none;
8325 -}
8326 -.elementor-editor-active .embed-media-settings .setting.align {
8327 - display: none;
8328 -}
8329 -.elementor-editor-active .embed-media-settings fieldset.setting-group {
8330 - display: none;
8331 6301 }
8332 6302 /*# sourceMappingURL=editor.css.map */