PluginProbe
Elementor Website Builder – more than just a page builder / 3.20.2
Elementor Website Builder – more than just a page builder v3.20.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 +530 -2472 4.3.0-beta33.20.2 View file →
@@ -1,4 +1,5 @@
1 +/*! elementor - v3.20.0 - 20-03-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,
@@ -1005,11 +709,8 @@
1005 709 }
1006 710 .elementor-panel .elementor-panel-category.elementor-active .elementor-panel-heading {
1007 711 border: none;
1008 712 }
1009 -.elementor-panel .elementor-panel-category.elementor-active-title {
1010 - display: flex;
1011 -}
1012 713 .elementor-panel .elementor-panel-category-items {
1013 714 padding-block-end: 20px;
1014 715 }
1015 716 .elementor-panel .elementor-panel-category-items-empty {
@@ -1109,11 +810,13 @@
1109 810 .elementor-panel .elementor-panel-navigation .elementor-panel-navigation-tab.elementor-active {
1110 811 border-color: var(--e-a-border-color-accent);
1111 812 color: var(--e-a-color-txt-accent);
1112 813 }
814 +.elementor-panel .elementor-panel-navigation .elementor-panel-navigation-tab.elementor-active a,
1113 815 .elementor-panel .elementor-panel-navigation .elementor-panel-navigation-tab.elementor-active span {
1114 816 color: var(--e-a-color-txt-accent);
1115 817 }
818 +.elementor-panel .elementor-panel-navigation .elementor-panel-navigation-tab a,
1116 819 .elementor-panel .elementor-panel-navigation .elementor-panel-navigation-tab span {
1117 820 color: inherit;
1118 821 display: block;
1119 822 text-align: center;
@@ -1119,8 +822,9 @@
1119 822 text-align: center;
1120 823 padding: 12px 0 8px;
1121 824 font-size: 10px;
1122 825 }
826 +.elementor-panel .elementor-panel-navigation .elementor-panel-navigation-tab a:before,
1123 827 .elementor-panel .elementor-panel-navigation .elementor-panel-navigation-tab span:before {
1124 828 font-family: eicons;
1125 829 font-size: 16px;
1126 830 display: block;
@@ -1125,31 +829,35 @@
1125 829 font-size: 16px;
1126 830 display: block;
1127 831 margin-block-end: 8px;
1128 832 }
833 +.elementor-panel .elementor-tab-control-content a:before,
1129 834 .elementor-panel .elementor-tab-control-content span:before {
1130 835 content: "\e92c";
1131 836 }
837 +.elementor-panel .elementor-tab-control-style a:before,
1132 838 .elementor-panel .elementor-tab-control-style span:before {
1133 839 content: "\e921";
1134 840 }
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,
841 +.elementor-panel .elementor-tab-control-advanced a:before,
1141 842 .elementor-panel .elementor-tab-control-advanced span:before,
843 +.elementor-panel .elementor-tab-control-settings a:before,
844 +.elementor-panel .elementor-tab-control-settings span:before,
845 +.elementor-panel .elementor-tab-control-general_style a:before,
1142 846 .elementor-panel .elementor-tab-control-general_style span:before {
1143 847 content: "\e916";
1144 848 }
849 +.elementor-panel .elementor-tab-control-responsive a:before,
1145 850 .elementor-panel .elementor-tab-control-responsive span:before {
1146 851 content: "\e885";
1147 852 }
853 +.elementor-panel .elementor-tab-control-lightbox a:before,
1148 854 .elementor-panel .elementor-tab-control-lightbox span:before {
1149 855 content: "\e922";
1150 856 }
857 +.elementor-panel .elementor-tab-control-layout a:before,
1151 858 .elementor-panel .elementor-tab-control-layout span:before,
859 +.elementor-panel .elementor-tab-control-column a:before,
1152 860 .elementor-panel .elementor-tab-control-column span:before {
1153 861 content: "\e899";
1154 862 }
1155 863 .elementor-panel #elementor-panel__editor__help {
@@ -1181,15 +889,142 @@
1181 889 content: "";
1182 890 position: absolute;
1183 891 height: 13px;
1184 892 width: 13px;
1185 - inset-block-start: 3px;
1186 - inset-block-end: 0;
1187 - inset-inline-start: 8px;
1188 - inset-inline-end: 0;
893 + top: 3px;
894 + bottom: 0;
895 + left: 8px;
896 + right: 0;
1189 897 border-radius: 50%;
1190 898 z-index: -1;
1191 899 }
900 +.elementor-panel #elementor-panel-footer {
901 + position: relative;
902 + height: 40px;
903 + background-color: var(--e-a-dark-bg);
904 + color: var(--e-a-dark-color-txt);
905 +}
906 +.elementor-panel #elementor-panel-footer-tools {
907 + display: flex;
908 + justify-content: space-between;
909 + height: 100%;
910 +}
911 +.elementor-panel .elementor-panel-footer-tool {
912 + display: flex;
913 + align-items: center;
914 + justify-content: center;
915 + width: 15%;
916 + cursor: pointer;
917 + transition: var(--e-a-transition-hover);
918 + border: 0;
919 + color: currentColor;
920 + background-color: transparent;
921 +}
922 +.elementor-panel .elementor-panel-footer-tool i {
923 + font-size: 15px;
924 +}
925 +.elementor-panel .elementor-panel-footer-tool #elementor-panel-saver-button-save-options i.eicon-chevron-right {
926 + margin: auto;
927 + transform: rotate(270deg);
928 +}
929 +.elementor-panel .elementor-panel-footer-tool #elementor-panel-saver-button-save-options.elementor-disabled {
930 + cursor: inherit;
931 +}
932 +.elementor-panel .elementor-panel-footer-tool:not(.e-open):hover, .elementor-panel .elementor-panel-footer-tool:not(.e-open):focus {
933 + color: var(--e-a-dark-color-txt-hover);
934 +}
935 +.elementor-panel .elementor-panel-footer-tool:not(.e-open) .elementor-panel-footer-sub-menu-wrapper {
936 + display: none;
937 +}
938 +.elementor-panel #elementor-panel-footer-saver-publish {
939 + width: 30%;
940 + margin-inline-start: auto;
941 +}
942 +.elementor-panel #elementor-panel-footer-saver-publish .elementor-button-state i {
943 + margin-inline-end: 0;
944 +}
945 +.elementor-panel #elementor-panel-footer-saver-publish .elementor-button-state #elementor-panel-saver-button-publish-label {
946 + display: none;
947 +}
948 +.elementor-panel #elementor-panel-footer-saver-options {
949 + width: 10%;
950 +}
951 +.elementor-panel #elementor-panel-footer-saver-options .elementor-last-edited-wrapper {
952 + font-size: 11px;
953 + font-style: italic;
954 + padding: 5px 0 15px;
955 +}
956 +.elementor-panel #elementor-panel-footer-saver-options .elementor-last-edited-wrapper:not(.elementor-state-active) .elementor-state-icon {
957 + display: none;
958 +}
959 +.elementor-panel #elementor-panel-footer-saver-options .elementor-last-edited-wrapper time {
960 + border-block-end: 1px dotted transparent;
961 + transition: all ease-in-out 0.3s;
962 + cursor: pointer;
963 +}
964 +.elementor-panel #elementor-panel-footer-saver-options .elementor-last-edited-wrapper time:hover {
965 + border-block-end-color: inherit;
966 +}
967 +.elementor-panel #elementor-panel-footer-saver-options.e-open i.eicon-chevron-right {
968 + transform: rotate(90deg);
969 +}
970 +.elementor-panel #elementor-panel-saver-button-publish, .elementor-panel #elementor-panel-saver-button-save-options {
971 + padding: 0;
972 + font-size: 11px;
973 + height: 100%;
974 + width: 100%;
975 + border-radius: 0;
976 +}
977 +.elementor-panel #elementor-panel-saver-button-publish.elementor-disabled, .elementor-panel #elementor-panel-saver-button-save-options.elementor-disabled {
978 + background-color: #1f2124;
979 + color: #9DA5AE;
980 +}
981 +.elementor-panel #elementor-panel-saver-button-publish:not(.elementor-disabled) {
982 + border-inline-end: 1px solid #F0ABFC;
983 +}
984 +.elementor-panel #elementor-panel-saver-button-publish.elementor-disabled {
985 + border-inline-end: 1px solid #3f444b;
986 +}
987 +.elementor-panel .elementor-panel-footer-sub-menu-wrapper {
988 + position: absolute;
989 + bottom: 100%;
990 + left: 0;
991 + width: 100%;
992 + background-color: #1f2124;
993 + padding: 10px;
994 + box-shadow: -2px -5px 8px rgba(0, 0, 0, 0.1);
995 + cursor: default;
996 + z-index: 10000;
997 +}
998 +.elementor-panel .elementor-panel-footer-sub-menu {
999 + border-radius: var(--e-border-radius);
1000 + overflow: hidden;
1001 + border: 1px solid #3f444b;
1002 +}
1003 +.elementor-panel .elementor-panel-footer-sub-menu-item {
1004 + display: flex;
1005 + height: 40px;
1006 + color: #D5D8DC;
1007 + align-items: center;
1008 + -moz-column-gap: 10px;
1009 + column-gap: 10px;
1010 + padding: 0 20px;
1011 + transition: var(--e-a-transition-hover);
1012 + cursor: pointer;
1013 +}
1014 +.elementor-panel .elementor-panel-footer-sub-menu-item.elementor-disabled {
1015 + cursor: default;
1016 + color: #69727D;
1017 +}
1018 +.elementor-panel .elementor-panel-footer-sub-menu-item:not(:last-child) {
1019 + border-block-end: 1px solid #3f444b;
1020 +}
1021 +.elementor-panel .elementor-panel-footer-sub-menu-item:hover {
1022 + background-color: rgba(255, 255, 255, 0.1);
1023 +}
1024 +.elementor-panel .elementor-panel-footer-sub-menu-item.active {
1025 + background-color: rgba(255, 255, 255, 0.2);
1026 +}
1192 1027
1193 1028 #elementor-panel-elements-navigation .elementor-panel-navigation-tab {
1194 1029 text-align: center;
1195 1030 padding: 10px 0;
@@ -1205,9 +1040,12 @@
1205 1040 display: none;
1206 1041 }
1207 1042 body.elementor-panel-loading #elementor-panel-state-loading {
1208 1043 position: absolute;
1209 - inset: 0;
1044 + top: 0;
1045 + left: 0;
1046 + height: 100%;
1047 + width: 100%;
1210 1048 display: flex;
1211 1049 align-items: center;
1212 1050 justify-content: center;
1213 1051 background-color: rgba(255, 255, 255, 0.5);
@@ -1220,17 +1058,13 @@
1220 1058
1221 1059 #elementor-panel-elements-search-area {
1222 1060 background-color: var(--e-a-bg-default);
1223 1061 position: sticky;
1224 - inset-block-start: 0;
1062 + top: 0;
1225 1063 padding: 15px;
1226 1064 z-index: 1;
1227 1065 }
1228 1066
1229 -#elementor-panel-elements-search-area:empty {
1230 - display: none;
1231 -}
1232 -
1233 1067 #elementor-panel-elements-search-wrapper {
1234 1068 position: relative;
1235 1069 }
1236 1070
@@ -1247,12 +1081,12 @@
1247 1081 appearance: none;
1248 1082 }
1249 1083 #elementor-panel-elements-search-input + i {
1250 1084 position: absolute;
1251 - inset-block-start: 50%;
1252 - inset-inline-start: 10px;
1085 + left: 10px;
1086 + top: 50%;
1087 + color: var(--e-a-color-txt-disabled);
1253 1088 transform: translateY(-50%);
1254 - color: var(--e-a-color-txt-disabled);
1255 1089 }
1256 1090 #elementor-panel-elements-search-input:focus {
1257 1091 border-color: var(--e-a-border-color-focus);
1258 1092 padding-inline-end: 15px;
@@ -1257,20 +1091,8 @@
1257 1091 border-color: var(--e-a-border-color-focus);
1258 1092 padding-inline-end: 15px;
1259 1093 }
1260 1094
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 1095 .elementor-panel .elementor-element {
1274 1096 font-family: var(--e-a-font-family);
1275 1097 color: var(--e-a-color-txt);
1276 1098 line-height: 1;
@@ -1288,27 +1110,8 @@
1288 1110 -webkit-user-select: none;
1289 1111 -moz-user-select: none;
1290 1112 user-select: none;
1291 1113 }
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 1114 .elementor-panel .elementor-element:hover, .elementor-panel .elementor-element:focus {
1312 1115 background-color: var(--e-a-bg-hover);
1313 1116 border-color: var(--e-a-border-color-bold);
1314 1117 }
@@ -1314,11 +1117,8 @@
1314 1117 }
1315 1118 .elementor-panel .elementor-element:hover > .eicon-lock, .elementor-panel .elementor-element:focus > .eicon-lock {
1316 1119 color: var(--e-a-color-accent);
1317 1120 }
1318 -.elementor-panel .elementor-element:hover > .eicon-plug, .elementor-panel .elementor-element:focus > .eicon-plug {
1319 - color: var(--e-a-color-info);
1320 -}
1321 1121 .elementor-panel .elementor-element .icon {
1322 1122 font-size: 28px;
1323 1123 padding-block-start: 15px;
1324 1124 }
@@ -1330,12 +1130,12 @@
1330 1130 }
1331 1131 .elementor-panel .elementor-element .title {
1332 1132 font-size: 12px;
1333 1133 }
1334 -.elementor-panel .elementor-element > .eicon-lock, .elementor-panel .elementor-element .eicon-plug {
1134 +.elementor-panel .elementor-element > .eicon-lock {
1335 1135 position: absolute;
1336 - inset-block-start: 5px;
1337 - inset-inline-end: 5px;
1136 + top: 5px;
1137 + right: 5px;
1338 1138 color: var(--e-a-color-txt-disabled);
1339 1139 }
1340 1140 .elementor-panel .elementor-element:active {
1341 1141 background-color: var(--e-a-bg-hover);
@@ -1353,10 +1153,10 @@
1353 1153 }
1354 1154 #elementor-element--promotion__dialog:after {
1355 1155 content: "";
1356 1156 position: absolute;
1357 - inset-block-start: 15px;
1358 - inset-inline-end: 100%;
1157 + top: 15px;
1158 + right: 100%;
1359 1159 transform: scaleY(0.7);
1360 1160 border: 10px solid transparent;
1361 1161 border-inline-end-color: var(--e-a-bg-default);
1362 1162 }
@@ -1396,9 +1196,9 @@
1396 1196 .dialog-tooltip-widget {
1397 1197 position: absolute;
1398 1198 width: 300px;
1399 1199 z-index: 1;
1400 - background-color: var(--e-a-bg-default);
1200 + background-color: #ffffff;
1401 1201 box-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
1402 1202 border-radius: 3px;
1403 1203 }
1404 1204 .dialog-tooltip-widget:after {
@@ -1403,13 +1203,13 @@
1403 1203 }
1404 1204 .dialog-tooltip-widget:after {
1405 1205 content: "";
1406 1206 position: absolute;
1407 - inset-block-start: 15px;
1408 - inset-inline-end: 100%;
1207 + top: 15px;
1208 + right: 100%;
1409 1209 transform: scaleY(0.7);
1410 1210 border: 10px solid transparent;
1411 - border-inline-end-color: var(--e-a-bg-default);
1211 + border-inline-end-color: #ffffff;
1412 1212 }
1413 1213 .dialog-tooltip-widget__title {
1414 1214 font-size: 14px;
1415 1215 }
@@ -1415,10 +1215,10 @@
1415 1215 }
1416 1216 .dialog-tooltip-widget .dialog-tooltip-header {
1417 1217 display: flex;
1418 1218 padding: 20px 20px 0;
1419 - color: var(--e-a-color-txt);
1420 - border-block-end: 1px solid var(--e-a-bg-default);
1219 + color: #0C0D0E;
1220 + border-block-end: 1px solid #ffffff;
1421 1221 font-weight: 500;
1422 1222 }
1423 1223 .dialog-tooltip-widget .dialog-tooltip-header .eicon-pro-icon {
1424 1224 flex-grow: 1;
@@ -1428,9 +1228,9 @@
1428 1228 }
1429 1229 .dialog-tooltip-widget .dialog-tooltip-header .eicon-close {
1430 1230 cursor: pointer;
1431 1231 margin-inline-start: auto;
1432 - color: var(--e-a-color-txt);
1232 + color: #9DA5AE;
1433 1233 }
1434 1234 .dialog-tooltip-widget .dialog-tooltip-message {
1435 1235 padding: 20px;
1436 1236 }
@@ -1445,80 +1245,8 @@
1445 1245 .dialog-tooltip-widget .dialog-tooltip-button::-moz-focus-inner {
1446 1246 border: 0;
1447 1247 }
1448 1248
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 1249 #elementor-panel-inner {
1522 1250 position: relative;
1523 1251 height: 100%;
1524 1252 display: flex;
@@ -1544,54 +1272,18 @@
1544 1272 #elementor-panel-get-pro-elements .elementor-nerd-box-icon {
1545 1273 margin-block-start: 20px;
1546 1274 }
1547 1275
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 1276 #elementor-panel-get-pro-elements-sticky {
1568 1277 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 {
1278 + bottom: 0;
1587 1279 font-size: 14px;
1588 1280 font-weight: 400;
1589 1281 line-height: 1.6;
1590 - background-color: var(--e-a-color-white);
1282 + margin-block-end: -10px;
1591 1283 }
1592 -#elementor-panel-get-pro-elements-sticky .elementor-get-pro-sticky-message,
1593 -.elementor-panel-editor-sticky-promotion .elementor-get-pro-sticky-message {
1284 +#elementor-panel-get-pro-elements-sticky .elementor-get-pro-sticky-message {
1285 + margin-top: -14px;
1594 1286 min-height: 40px;
1595 1287 display: block;
1596 1288 padding: 9px min(35px, 5%);
1597 1289 gap: 10px;
@@ -1599,18 +1291,16 @@
1599 1291 color: var(--e-a-color-black);
1600 1292 text-align: center;
1601 1293 box-shadow: 0px -10px 14px -6px rgba(0, 0, 0, 0.05);
1602 1294 }
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 {
1295 +#elementor-panel-get-pro-elements-sticky .elementor-get-pro-sticky-message a {
1605 1296 display: inline-block;
1606 1297 font-size: 13px;
1607 1298 font-weight: 500;
1608 1299 color: var(--e-a-btn-bg-accent);
1609 1300 }
1610 -#elementor-panel-get-pro-elements-sticky img,
1611 -.elementor-panel-editor-sticky-promotion img {
1612 - margin-inline-start: 17px;
1301 +#elementor-panel-get-pro-elements-sticky img {
1302 + margin-left: 17px;
1613 1303 }
1614 1304
1615 1305 #elementor-panel-notice-wrapper .elementor-panel-notice {
1616 1306 width: 90%;
@@ -1637,16 +1327,12 @@
1637 1327 background: var(--e-a-color-primary);
1638 1328 border-radius: 50%;
1639 1329 width: 8px;
1640 1330 height: 8px;
1641 - inset-block-start: 5px;
1642 - inset-inline-end: 5px;
1331 + top: 5px;
1332 + right: 5px;
1643 1333 }
1644 1334
1645 -#elementor-panel-footer.elementor-panel-footer-back-compat-wrapper {
1646 - display: none !important;
1647 -}
1648 -
1649 1335 .media-modal.wp-core-ui {
1650 1336 color-scheme: light;
1651 1337 color: #515962;
1652 1338 }
@@ -1692,9 +1378,8 @@
1692 1378 .elementor-control.elementor-control-type-divider {
1693 1379 padding: 0;
1694 1380 }
1695 1381 .elementor-control.elementor-control-type-divider .elementor-control-content {
1696 - margin-inline: 20px;
1697 1382 border-width: 0;
1698 1383 border-block-start: var(--e-a-border);
1699 1384 background-color: var(--e-a-bg-default);
1700 1385 height: 15px;
@@ -1704,23 +1389,24 @@
1704 1389 }
1705 1390 .elementor-control.elementor-control-separator-before:before {
1706 1391 content: "";
1707 1392 position: absolute;
1708 - inset: 0 20px auto;
1709 1393 height: 1px;
1394 + width: calc(100% - 40px);
1395 + top: 0;
1396 + left: 20px;
1710 1397 background-color: var(--e-a-border-color);
1711 1398 }
1712 -.elementor-control.elementor-control-separator-after {
1713 - padding-block-end: 15px;
1714 -}
1715 1399 .elementor-control.elementor-control-separator-after:after {
1716 1400 content: "";
1717 1401 position: absolute;
1718 - inset: auto 20px 0;
1719 1402 height: 1px;
1403 + width: calc(100% - 40px);
1404 + bottom: 0;
1405 + left: 20px;
1720 1406 background-color: var(--e-a-border-color);
1721 1407 }
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 {
1408 +.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 1409 padding-block-start: 15px;
1724 1410 }
1725 1411 .elementor-control.elementor-control-deprecated {
1726 1412 color: var(--e-a-color-warning);
@@ -1758,36 +1444,23 @@
1758 1444 }
1759 1445 body:not(.elementor-device-mobile) .elementor-control.elementor-control-responsive-mobile {
1760 1446 display: none;
1761 1447 }
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 1448 .elementor-control-custom_css_pro .elementor-nerd-box-message, .elementor-control-custom_attributes_pro .elementor-nerd-box-message {
1776 1449 margin-block-start: 5px;
1777 1450 }
1778 1451
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);
1452 +.elementor-control.e-open .elementor-panel-heading-toggle .eicon:before, .elementor-control.elementor-active .elementor-panel-heading-toggle .eicon:before,
1453 +.elementor-panel-category.e-open .elementor-panel-heading-toggle .eicon:before,
1454 +.elementor-panel-category.elementor-active .elementor-panel-heading-toggle .eicon:before,
1455 +.elementor-panel-scheme-item.e-open .elementor-panel-heading-toggle .eicon:before,
1456 +.elementor-panel-scheme-item.elementor-active .elementor-panel-heading-toggle .eicon:before {
1457 + content: "\e92a";
1785 1458 }
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;
1459 +.elementor-control:not(.e-open):not(.elementor-active) .elementor-panel-heading-toggle .eicon:before,
1460 +.elementor-panel-category:not(.e-open):not(.elementor-active) .elementor-panel-heading-toggle .eicon:before,
1461 +.elementor-panel-scheme-item:not(.e-open):not(.elementor-active) .elementor-panel-heading-toggle .eicon:before {
1462 + content: "\e90a";
1790 1463 }
1791 1464
1792 1465 .elementor-panel-heading {
1793 1466 display: flex;
@@ -1811,14 +1484,8 @@
1811 1484 }
1812 1485 .elementor-panel-heading-title {
1813 1486 font-weight: bold;
1814 1487 }
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 1488 .elementor-panel-heading-promotion {
1822 1489 margin-inline-start: auto;
1823 1490 }
1824 1491 .elementor-panel-heading-promotion a {
@@ -1837,11 +1504,9 @@
1837 1504 .elementor-panel-heading:focus-visible {
1838 1505 color: var(--e-a-color-txt-hover);
1839 1506 }
1840 1507
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 {
1508 +#elementor-controls .elementor-control-type-section:first-child .elementor-panel-heading {
1844 1509 border-block-start: none;
1845 1510 }
1846 1511
1847 1512 .elementor-control-field {
@@ -1886,15 +1551,8 @@
1886 1551 .elementor-group-control-attachment_alert .elementor-control-field-description {
1887 1552 margin-block-start: 0;
1888 1553 }
1889 1554
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 1555 .elementor-update-preview {
1898 1556 margin: 15px 15px 0;
1899 1557 display: flex;
1900 1558 align-items: center;
@@ -1929,9 +1587,9 @@
1929 1587 }
1930 1588 .elementor-control-responsive-switchers__holder {
1931 1589 position: absolute;
1932 1590 width: 100%;
1933 - inset-block-start: 0;
1591 + top: 0;
1934 1592 background-color: var(--e-a-bg-default);
1935 1593 border-radius: var(--e-a-border-radius);
1936 1594 transition: 0.15s;
1937 1595 border: 1px solid transparent;
@@ -2074,10 +1732,10 @@
2074 1732 display: none;
2075 1733 overflow: hidden;
2076 1734 max-height: 0;
2077 1735 position: absolute;
2078 - inset-block-start: -0.8em;
2079 - inset-inline-start: -0.5em;
1736 + top: -0.8em;
1737 + left: -0.5em;
2080 1738 width: 2.5em;
2081 1739 text-align: center;
2082 1740 background-color: var(--e-a-bg-default);
2083 1741 border-radius: var(--e-a-border-radius);
@@ -2252,9 +1910,9 @@
2252 1910 }
2253 1911 .elementor-control-responsive-switchers__holder {
2254 1912 position: absolute;
2255 1913 width: 100%;
2256 - inset-block-start: 0;
1914 + top: 0;
2257 1915 background-color: var(--e-a-bg-default);
2258 1916 border-radius: var(--e-a-border-radius);
2259 1917 transition: 0.15s;
2260 1918 border: 1px solid transparent;
@@ -2397,10 +2055,10 @@
2397 2055 display: none;
2398 2056 overflow: hidden;
2399 2057 max-height: 0;
2400 2058 position: absolute;
2401 - inset-block-start: -0.8em;
2402 - inset-inline-start: -0.5em;
2059 + top: -0.8em;
2060 + left: -0.5em;
2403 2061 width: 2.5em;
2404 2062 text-align: center;
2405 2063 background-color: var(--e-a-bg-default);
2406 2064 border-radius: var(--e-a-border-radius);
@@ -2530,9 +2188,9 @@
2530 2188 }
2531 2189 .elementor-control-responsive-switchers__holder {
2532 2190 position: absolute;
2533 2191 width: 100%;
2534 - inset-block-start: 0;
2192 + top: 0;
2535 2193 background-color: var(--e-a-bg-default);
2536 2194 border-radius: var(--e-a-border-radius);
2537 2195 transition: 0.15s;
2538 2196 border: 1px solid transparent;
@@ -2675,10 +2333,10 @@
2675 2333 display: none;
2676 2334 overflow: hidden;
2677 2335 max-height: 0;
2678 2336 position: absolute;
2679 - inset-block-start: -0.8em;
2680 - inset-inline-start: -0.5em;
2337 + top: -0.8em;
2338 + left: -0.5em;
2681 2339 width: 2.5em;
2682 2340 text-align: center;
2683 2341 background-color: var(--e-a-bg-default);
2684 2342 border-radius: var(--e-a-border-radius);
@@ -2798,11 +2456,11 @@
2798 2456 }
2799 2457
2800 2458 .elementor-control-type-icons .elementor-control-media__preview > * {
2801 2459 position: absolute;
2802 - inset-block-start: 50%;
2803 - inset-inline-start: 50%;
2804 - transform: translate(calc(-50% * var(--direction-multiplier)), -50%);
2460 + top: 50%;
2461 + left: 50%;
2462 + transform: translate(-50%, -50%);
2805 2463 }
2806 2464 .elementor-control-type-icons .elementor-control-media__preview i {
2807 2465 font-size: 70px;
2808 2466 }
@@ -2857,9 +2515,12 @@
2857 2515 opacity: 0.6;
2858 2516 }
2859 2517 .elementor-control-type-gallery .elementor-control-gallery-edit {
2860 2518 position: absolute;
2861 - inset: 0;
2519 + top: 0;
2520 + bottom: 0;
2521 + left: 0;
2522 + right: 0;
2862 2523 background-color: rgba(0, 0, 0, 0.2);
2863 2524 padding: 10px;
2864 2525 font-size: 11px;
2865 2526 transition: all 0.3s ease-in-out;
@@ -2868,10 +2529,10 @@
2868 2529 opacity: 0;
2869 2530 }
2870 2531 .elementor-control-type-gallery .elementor-control-gallery-edit span {
2871 2532 position: absolute;
2872 - inset-block-start: 10px;
2873 - inset-inline-end: 10px;
2533 + top: 10px;
2534 + right: 10px;
2874 2535 width: 21px;
2875 2536 height: 21px;
2876 2537 color: var(--e-a-color-white);
2877 2538 background-color: rgba(0, 0, 0, 0.5);
@@ -2981,10 +2642,10 @@
2981 2642 }
2982 2643 .e-global__popover-info-tooltip:after {
2983 2644 content: "";
2984 2645 position: absolute;
2985 - inset-block-end: -17px;
2986 - inset-inline-start: 16px;
2646 + bottom: -17px;
2647 + left: 16px;
2987 2648 border: 10px solid transparent;
2988 2649 border-block-start-color: rgba(0, 0, 0, 0.9);
2989 2650 }
2990 2651 .e-global__popover-info i {
@@ -2990,9 +2651,9 @@
2990 2651 .e-global__popover-info i {
2991 2652 font-size: 13px;
2992 2653 }
2993 2654 .e-global__preview-items-container {
2994 - max-height: 400px;
2655 + max-height: 260px;
2995 2656 overflow-y: auto;
2996 2657 padding: 5px 0;
2997 2658 }
2998 2659 .e-global__preview-items-container::-webkit-scrollbar {
@@ -3001,19 +2662,8 @@
3001 2662 .e-global__preview-items-container::-webkit-scrollbar-thumb {
3002 2663 background-color: #BABFC5;
3003 2664 border-radius: 10px;
3004 2665 }
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 2666 .e-global__manage-button {
3017 2667 font-weight: 500;
3018 2668 cursor: pointer;
3019 2669 }
@@ -3029,9 +2679,9 @@
3029 2679 font-size: 13px;
3030 2680 content: "\e90e";
3031 2681 position: absolute;
3032 2682 transform: translateY(-50%);
3033 - inset-block-start: 50%;
2683 + top: 50%;
3034 2684 inset-inline-start: 13px;
3035 2685 }
3036 2686 .e-global__color {
3037 2687 padding: 10px 20px;
@@ -3048,10 +2698,13 @@
3048 2698 position: relative;
3049 2699 }
3050 2700 .e-global__color-preview-color, .e-global__color-preview-transparent-bg {
3051 2701 border-radius: 3px;
2702 + height: 100%;
2703 + width: 100%;
3052 2704 position: absolute;
3053 - inset: 0;
2705 + top: 0;
2706 + left: 0;
3054 2707 }
3055 2708 .e-global__color-preview-transparent-bg {
3056 2709 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 2710 background-size: 12px 12px;
@@ -3172,11 +2825,11 @@
3172 2825 display: none;
3173 2826 }
3174 2827 .elementor-control-media .eicon-plus-circle {
3175 2828 position: absolute;
3176 - inset-block-start: 50%;
3177 - inset-inline-start: 50%;
3178 - transform: translate(calc(-50% * var(--direction-multiplier)), -50%);
2829 + top: 50%;
2830 + left: 50%;
2831 + transform: translate(-50%, -50%);
3179 2832 color: var(--e-a-color-white);
3180 2833 font-size: 20px;
3181 2834 }
3182 2835 .elementor-control-media__content__upload-button {
@@ -3185,8 +2838,9 @@
3185 2838 .elementor-control-media__preview {
3186 2839 height: 100%;
3187 2840 background-size: cover;
3188 2841 background-position: center;
2842 + padding-block-end: 42.8571%;
3189 2843 }
3190 2844 .elementor-control-media-area {
3191 2845 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 2846 background-size: 16px 16px;
@@ -3199,11 +2853,11 @@
3199 2853 display: none;
3200 2854 }
3201 2855 .elementor-control-media-area .eicon-video-camera {
3202 2856 position: absolute;
3203 - inset-block-start: 50%;
3204 - inset-inline-start: 50%;
3205 - transform: translate(calc(-50% * var(--direction-multiplier)), -50%);
2857 + top: 50%;
2858 + left: 50%;
2859 + transform: translate(-50%, -50%);
3206 2860 color: rgba(255, 255, 255, 0.7);
3207 2861 font-size: 21px;
3208 2862 }
3209 2863 .elementor-control-media .elementor-control-media__content {
@@ -3214,14 +2868,17 @@
3214 2868 }
3215 2869 .elementor-control-media .elementor-control-media__content:hover:after {
3216 2870 content: "";
3217 2871 position: absolute;
3218 - inset: 0;
2872 + top: 0;
2873 + bottom: 0;
2874 + left: 0;
2875 + right: 0;
3219 2876 background-color: rgba(0, 0, 0, 0.2);
3220 2877 pointer-events: none;
3221 2878 }
3222 2879 .elementor-control-media .elementor-control-media__content:not(:hover) .elementor-control-media__tools {
3223 - inset-block-end: -30px;
2880 + bottom: -30px;
3224 2881 }
3225 2882 .elementor-control-media__content {
3226 2883 transition: all 0.2s ease-in-out;
3227 2884 }
@@ -3226,10 +2883,11 @@
3226 2883 transition: all 0.2s ease-in-out;
3227 2884 }
3228 2885 .elementor-control-media__tools {
3229 2886 position: absolute;
3230 - inset-block-end: 0;
3231 - inset-inline: 0;
2887 + bottom: 0;
2888 + left: 0;
2889 + right: 0;
3232 2890 height: 27px;
3233 2891 transition: all 0.2s ease-in-out;
3234 2892 }
3235 2893 .elementor-control-media__tools > *:not(:first-child) {
@@ -3256,10 +2914,10 @@
3256 2914 }
3257 2915 .elementor-control-media__content__remove {
3258 2916 position: absolute;
3259 2917 z-index: 1;
3260 - inset-block-start: 10px;
3261 - inset-inline-end: 10px;
2918 + top: 10px;
2919 + right: 10px;
3262 2920 width: 20px;
3263 2921 height: 20px;
3264 2922 font-size: 11px;
3265 2923 color: var(--e-a-color-white);
@@ -3485,12 +3143,8 @@
3485 3143 }
3486 3144 .elementor-control-type-repeater.elementor-repeater-has-minimum-rows .elementor-repeater-tool-remove {
3487 3145 display: none;
3488 3146 }
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 3147 .elementor-control-type-repeater .elementor-repeater-fields {
3494 3148 margin: 10px 0;
3495 3149 }
3496 3150 .elementor-control-type-repeater .elementor-repeater-row-controls {
@@ -3551,11 +3205,9 @@
3551 3205 text-align: center;
3552 3206 padding-block-start: 5px;
3553 3207 }
3554 3208
3555 -#elementor-controls,
3556 -#elementor-panel-page-settings-controls,
3557 -#elementor-panel-editorPreferences-settings-controls {
3209 +#elementor-controls {
3558 3210 padding-block-start: 15px;
3559 3211 }
3560 3212
3561 3213 .elementor-control-type-section {
@@ -3600,11 +3252,11 @@
3600 3252 font-family: eicons;
3601 3253 content: "\e8ad";
3602 3254 font-size: 12px;
3603 3255 position: absolute;
3604 - inset-block-start: 50%;
3605 - inset-inline-end: 5px;
3256 + top: 50%;
3606 3257 transform: translateY(-50%);
3258 + right: 5px;
3607 3259 pointer-events: none;
3608 3260 }
3609 3261 .elementor-control-type-select .elementor-control-field.elementor-control-field-select-small .elementor-control-input-wrapper {
3610 3262 max-width: 80px;
@@ -3638,14 +3290,14 @@
3638 3290 }
3639 3291 .elementor-control-type-slider--handles-range .elementor-slider .noUi-handle {
3640 3292 border-radius: 0;
3641 3293 width: 10px;
3642 - transform: translateY(calc(50% - 14px)) translateX(calc(4px * var(--direction-multiplier)));
3294 + transform: translateY(calc(50% - 14px)) translateX(4px);
3643 3295 }
3644 3296 .elementor-control-type-slider--handles-range .elementor-slider .noUi-handle:after {
3645 3297 content: "";
3646 3298 position: absolute;
3647 - inset-block-start: 2px;
3299 + top: 2px;
3648 3300 height: 12px;
3649 3301 width: 11px;
3650 3302 transform: rotate(45deg);
3651 3303 background-color: var(--e-a-color-white);
@@ -3722,11 +3374,11 @@
3722 3374 .elementor-slider .noUi-handle {
3723 3375 height: 16px;
3724 3376 width: 16px;
3725 3377 background-color: var(--e-a-color-white);
3378 + right: 0;
3379 + transform: translateY(calc(50% - 14px)) translateX(8px);
3726 3380 position: absolute;
3727 - inset-inline-end: 0;
3728 - transform: translateY(calc(50% - 14px)) translateX(calc(8px * var(--direction-multiplier)));
3729 3381 box-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
3730 3382 border-radius: 50%;
3731 3383 }
3732 3384 .elementor-slider .noUi-connects {
@@ -3736,9 +3388,12 @@
3736 3388 }
3737 3389 .elementor-slider .noUi-connect {
3738 3390 position: absolute;
3739 3391 z-index: 0;
3740 - inset: 0;
3392 + top: 0;
3393 + left: 0;
3394 + height: 100%;
3395 + width: 100%;
3741 3396 will-change: transform;
3742 3397 transform-origin: 0 0;
3743 3398 background-color: var(--e-a-border-color-focus);
3744 3399 }
@@ -3743,9 +3398,9 @@
3743 3398 background-color: var(--e-a-border-color-focus);
3744 3399 }
3745 3400 .elementor-slider .noUi-tooltip {
3746 3401 position: absolute;
3747 - inset-block-start: calc(100% + 5px);
3402 + top: calc(100% + 5px);
3748 3403 left: calc(50% - 4px);
3749 3404 transform: translateX(-50%);
3750 3405 font-size: 10px;
3751 3406 }
@@ -3832,9 +3487,9 @@
3832 3487 transition-property: opacity, background;
3833 3488 }
3834 3489 .elementor-control-type-switcher .elementor-switch-label:before, .elementor-control-type-switcher .elementor-switch-label:after {
3835 3490 position: absolute;
3836 - inset-block-start: 0;
3491 + top: 0;
3837 3492 width: 50%;
3838 3493 text-align: center;
3839 3494 line-height: 20px;
3840 3495 transition: inherit;
@@ -3840,14 +3495,14 @@
3840 3495 transition: inherit;
3841 3496 }
3842 3497 .elementor-control-type-switcher .elementor-switch-label:before {
3843 3498 content: attr(data-off);
3844 - inset-inline-end: 5px;
3499 + right: 5px;
3845 3500 color: var(--e-a-color-txt-muted);
3846 3501 }
3847 3502 .elementor-control-type-switcher .elementor-switch-label:after {
3848 3503 content: attr(data-on);
3849 - inset-inline-start: 5px;
3504 + left: 5px;
3850 3505 color: var(--e-a-btn-color);
3851 3506 opacity: 0;
3852 3507 }
3853 3508 .elementor-control-type-switcher .elementor-switch-input:checked ~ .elementor-switch-label {
@@ -3860,28 +3515,25 @@
3860 3515 opacity: 1;
3861 3516 }
3862 3517 .elementor-control-type-switcher .elementor-switch-handle {
3863 3518 position: absolute;
3864 - inset-block-start: 1px;
3865 - inset-inline-start: 1px;
3519 + top: 1px;
3520 + left: 1px;
3866 3521 width: 18px;
3867 3522 height: 18px;
3868 3523 background: white;
3869 3524 border-radius: 10px;
3870 - transition: inset-inline-start 0.15s ease-out;
3525 + transition: left 0.15s ease-out;
3871 3526 }
3872 3527 .elementor-control-type-switcher .elementor-switch-input:checked ~ .elementor-switch-handle {
3873 - inset-inline-start: initial;
3874 - inset-inline-end: 1px;
3528 + left: initial;
3529 + right: 1px;
3875 3530 }
3876 3531
3877 3532 .elementor-control-type-tabs {
3878 - display: none;
3533 + display: flex;
3879 3534 font-size: var(--control-title-size);
3880 3535 }
3881 -.elementor-control-type-tabs:has(> :not(.elementor-control-type-tab.elementor-hidden-control)) {
3882 - display: flex;
3883 -}
3884 3536
3885 3537 .elementor-control-type-tab {
3886 3538 text-align: center;
3887 3539 width: 100%;
@@ -3924,10 +3576,10 @@
3924 3576 }
3925 3577 .elementor-control-type-textarea:not(.elementor-control-dynamic-value) .elementor-control-dynamic-switcher,
3926 3578 .elementor-control-type-code:not(.elementor-control-dynamic-value) .elementor-control-dynamic-switcher {
3927 3579 position: absolute;
3928 - inset-block-start: 0;
3929 - inset-inline-end: 0;
3580 + top: 0;
3581 + right: 0;
3930 3582 z-index: 1;
3931 3583 }
3932 3584 .elementor-control-type-textarea .elementor-control-input-wrapper,
3933 3585 .elementor-control-type-code .elementor-control-input-wrapper {
@@ -4005,10 +3657,10 @@
4005 3657 }
4006 3658 .elementor-control-type-url .elementor-control-url-autocomplete-spinner {
4007 3659 display: none;
4008 3660 position: absolute;
4009 - inset-block-start: 5px;
4010 - inset-inline-end: 0;
3661 + top: 5px;
3662 + right: 0;
4011 3663 width: 10px;
4012 3664 height: 10px;
4013 3665 font-size: 10px;
4014 3666 color: var(--e-a-color-txt-disabled);
@@ -4059,76 +3711,8 @@
4059 3711 font-size: 10px;
4060 3712 padding-block-start: 2px;
4061 3713 }
4062 3714
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 3715 .elementor-control-type-wp_widget .widget-inside {
4132 3716 line-height: 2;
4133 3717 background-color: inherit;
4134 3718 display: block;
@@ -4272,13 +3856,13 @@
4272 3856 --e-a-mode-switcher-width: 15px;
4273 3857 --e-a-mode-switcher-height: 50px;
4274 3858 --e-a-mode-switcher-icon-size: 15px;
4275 3859 position: absolute;
4276 - inset-block-start: 50%;
4277 - inset-inline-start: 100%;
3860 + left: 100%;
3861 + top: 50%;
4278 3862 transform: translateY(-50%);
4279 3863 background-color: var(--e-a-bg-default);
4280 - box-shadow: calc(3px * var(--direction-multiplier, 1)) 1px 3px rgba(0, 0, 0, 0.05);
3864 + box-shadow: 3px 1px 3px rgba(0, 0, 0, 0.05);
4281 3865 transition: 0.3s opacity;
4282 3866 }
4283 3867 #elementor-mode-switcher:hover {
4284 3868 background-color: var(--e-a-bg-hover);
@@ -4348,11 +3932,11 @@
4348 3932 }
4349 3933
4350 3934 #elementor-panel-revisions-loading {
4351 3935 position: absolute;
4352 - inset-block-start: 50%;
4353 - inset-inline-start: 50%;
4354 - transform: translate(calc(-50% * var(--direction-multiplier)), -50%);
3936 + top: 50%;
3937 + left: 50%;
3938 + transform: translate(-50%, -50%);
4355 3939 }
4356 3940 #elementor-panel-revisions-loading .eicon-loading {
4357 3941 font-size: 50px;
4358 3942 }
@@ -4436,10 +4020,10 @@
4436 4020 .e-control-display-conditions-promotion__wrapper {
4437 4021 display: flex;
4438 4022 justify-content: space-between;
4439 4023 }
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);
4024 +.e-control-display-conditions-promotion__wrapper:hover .eicon-lock.e-control-display-conditions-promotion {
4025 + color: var(--e-a-color-accent);
4442 4026 }
4443 4027 .e-control-display-conditions-promotion__description {
4444 4028 display: flex;
4445 4029 align-self: center;
@@ -4452,11 +4036,8 @@
4452 4036 display: flex;
4453 4037 justify-content: center;
4454 4038 align-items: center;
4455 4039 }
4456 -.e-control-display-conditions-promotion__lock-wrapper .eicon-upgrade-crown-full {
4457 - color: var(--e-a-color-accent-promotion-disabled);
4458 -}
4459 4040 .e-control-display-conditions-promotion.eicon-flow {
4460 4041 align-self: flex-end;
4461 4042 cursor: pointer;
4462 4043 border: var(--e-a-border-bold);
@@ -4467,15 +4048,12 @@
4467 4048 background-color: var(--e-a-bg-active);
4468 4049 color: #E73CF6;
4469 4050 }
4470 4051
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);
4052 +.e-control-motion-effects-promotion__wrapper:hover .eicon-lock {
4053 + color: var(--e-a-color-accent);
4473 4054 }
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 {
4055 +.e-control-motion-effects-promotion__wrapper .select-promotion {
4478 4056 display: flex;
4479 4057 flex-direction: column;
4480 4058 justify-content: center;
4481 4059 padding-inline-start: 5px;
@@ -4489,17 +4067,14 @@
4489 4067 box-shadow: none;
4490 4068 border: var(--e-a-border-bold);
4491 4069 font-size: var(--control-title-size);
4492 4070 }
4493 -.e-control-motion-effects-promotion__lock-wrapper, .e-control-promotion__lock-wrapper {
4071 +.e-control-motion-effects-promotion__lock-wrapper {
4494 4072 width: 2.5rem;
4495 4073 display: flex;
4496 4074 justify-content: center;
4497 4075 align-items: center;
4498 4076 }
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 4077
4503 4078 .e-link-promotion {
4504 4079 font-family: "Roboto", sans-serif;
4505 4080 font-weight: 500;
@@ -4529,9 +4104,11 @@
4529 4104 .elementor-editor-kit .elementor-panel #elementor-panel-page-menu {
4530 4105 padding: 25px 15px 0;
4531 4106 }
4532 4107 .elementor-editor-kit #elementor-panel-header-add-button,
4533 -.elementor-editor-kit #elementor-panel-header-menu-button {
4108 +.elementor-editor-kit #elementor-panel-header-menu-button,
4109 +.elementor-editor-kit #elementor-panel-footer-sub-menu-item-save-template,
4110 +.elementor-editor-kit #elementor-panel-footer-navigator {
4534 4111 display: none;
4535 4112 }
4536 4113
4537 4114 .elementor-control-type-global-style-repeater .elementor-repeater-fields {
@@ -4584,13 +4161,13 @@
4584 4161 }
4585 4162 .elementor-control-type-global-style-repeater .elementor-controls-popover {
4586 4163 align-self: end;
4587 4164 margin-block-start: 35px;
4588 - inset-block-start: 0;
4165 + top: 0;
4589 4166 width: 100%;
4590 4167 }
4591 4168 .elementor-control-type-global-style-repeater .elementor-controls-popover:before {
4592 - inset-inline-end: 5px;
4169 + right: 5px;
4593 4170 }
4594 4171 .elementor-control-type-global-style-repeater .elementor-controls-popover .elementor-control {
4595 4172 padding: 0 20px 15px;
4596 4173 }
@@ -4700,33 +4277,21 @@
4700 4277 .elementor-button:not(.elementor-button-state) .elementor-state-icon,
4701 4278 .e-btn:not(.elementor-button-state) .elementor-state-icon {
4702 4279 display: none;
4703 4280 }
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 {
4281 +.elementor-button.e-btn-txt,
4282 +.e-btn.e-btn-txt {
4709 4283 background: transparent;
4710 4284 color: var(--e-a-color-txt);
4711 4285 }
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,
4286 +.elementor-button.e-btn-txt:hover, .elementor-button.e-btn-txt:focus,
4715 4287 .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 {
4288 +.e-btn.e-btn-txt:focus {
4721 4289 background: var(--e-a-bg-hover);
4722 4290 color: var(--e-a-color-txt-hover);
4723 4291 }
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 {
4292 +.elementor-button.e-btn-txt:disabled,
4293 +.e-btn.e-btn-txt:disabled {
4729 4294 background: transparent;
4730 4295 color: var(--e-a-color-txt-disabled);
4731 4296 }
4732 4297 .elementor-button.e-btn-txt-border,
@@ -4744,90 +4309,27 @@
4744 4309 .e-btn.e-success:hover,
4745 4310 .e-btn.e-success:focus {
4746 4311 background-color: var(--e-a-btn-bg-success-hover);
4747 4312 }
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 {
4313 +.elementor-button.e-primary,
4314 +.e-btn.e-primary {
4756 4315 background-color: var(--e-a-btn-bg-primary);
4757 4316 color: var(--e-a-btn-color);
4758 4317 }
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,
4318 +.elementor-button.e-primary:hover, .elementor-button.e-primary:focus,
4764 4319 .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 {
4320 +.e-btn.e-primary:focus {
4774 4321 background-color: var(--e-a-btn-bg-primary-hover);
4775 4322 color: var(--e-a-btn-color);
4776 4323 }
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 {
4324 +.elementor-button.e-primary.e-btn-txt,
4325 +.e-btn.e-primary.e-btn-txt {
4794 4326 background: transparent;
4795 4327 color: var(--e-a-color-primary-bold);
4796 4328 }
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,
4329 +.elementor-button.e-primary.e-btn-txt:hover, .elementor-button.e-primary.e-btn-txt:focus,
4808 4330 .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 {
4331 +.e-btn.e-primary.e-btn-txt:focus {
4830 4332 background: var(--e-a-bg-primary);
4831 4333 }
4832 4334 .elementor-button.go-pro, .elementor-button.e-accent,
4833 4335 .e-btn.go-pro,
@@ -4874,13 +4376,8 @@
4874 4376 .e-btn.elementor-button-danger,
4875 4377 .e-btn.e-danger {
4876 4378 background-color: var(--e-a-btn-bg-danger);
4877 4379 }
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 4380 .elementor-button.elementor-button-danger:hover, .elementor-button.elementor-button-danger:focus, .elementor-button.e-danger:hover, .elementor-button.e-danger:focus,
4884 4381 .e-btn.elementor-button-danger:hover,
4885 4382 .e-btn.elementor-button-danger:focus,
4886 4383 .e-btn.e-danger:hover,
@@ -4919,23 +4416,22 @@
4919 4416 }
4920 4417
4921 4418 #elementor-preview-responsive-wrapper {
4922 4419 transform-origin: top center;
4923 - margin: 20px;
4420 + padding: 20px;
4924 4421 transform: scale(var(--e-preview-scale, 1));
4925 - overflow: hidden;
4926 4422 }
4927 4423 .elementor-device-desktop #elementor-preview-responsive-wrapper {
4928 4424 min-width: 1025px;
4929 4425 width: 100%;
4930 4426 height: 100%;
4931 - margin: 0;
4427 + padding: 0;
4932 4428 position: relative;
4933 4429 }
4934 4430 body.e-is-device-mode:not(.elementor-device-desktop) #elementor-preview-responsive-wrapper {
4935 4431 width: var(--e-editor-preview-width);
4936 4432 height: var(--e-editor-preview-height);
4937 - margin: 20px max((100vw - var(--e-editor-panel-width) - var(--e-editor-preview-width)) / 2, 20px);
4433 + margin: 0 max((100vw - var(--e-editor-panel-width) - var(--e-editor-preview-width)) / 2, 20px);
4938 4434 box-sizing: content-box;
4939 4435 position: relative;
4940 4436 max-height: calc(100vh - 80px);
4941 4437 }
@@ -4997,10 +4493,9 @@
4997 4493 #elementor-preview-responsive-wrapper .ui-resizable-s {
4998 4494 bottom: 0;
4999 4495 }
5000 4496 #elementor-preview-responsive-wrapper .ui-resizable-e {
5001 - width: 10px;
5002 - right: -5px;
4497 + right: 0;
5003 4498 }
5004 4499 #elementor-preview-responsive-wrapper .ui-resizable-w {
5005 4500 left: 0;
5006 4501 }
@@ -5011,20 +4506,8 @@
5011 4506 background-color: #fff;
5012 4507 box-shadow: 0 0 3px rgba(0, 0, 0, 0.3), 0 0 20px rgba(0, 0, 0, 0.15);
5013 4508 }
5014 4509
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 4510 #elementor-template-library-modal a.elementor-template-library-blank-footer-link {
5028 4511 font-style: normal;
5029 4512 text-decoration: underline;
5030 4513 }
@@ -5036,17 +4519,8 @@
5036 4519 }
5037 4520 #elementor-template-library-modal .dialog-message {
5038 4521 overflow-y: scroll;
5039 4522 }
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 4523
5050 4524 #elementor-template-library-header-menu {
5051 4525 text-align: center;
5052 4526 }
@@ -5055,21 +4529,14 @@
5055 4529 display: inline-block;
5056 4530 padding: 17px 20px;
5057 4531 border-block-end: 3px solid transparent;
5058 4532 cursor: pointer;
5059 - background: transparent;
5060 - margin: 0;
5061 - font-size: inherit;
5062 - font-family: inherit;
5063 - color: inherit;
5064 - border: none;
5065 4533 }
5066 4534 .elementor-template-library-menu-item:hover {
5067 4535 background-color: var(--e-a-bg-hover);
5068 4536 border-color: var(--e-a-bg-hover);
5069 4537 }
5070 -.elementor-template-library-menu-item.elementor-active, .elementor-template-library-menu-item[aria-selected=true] {
5071 - border-block-end: 3px solid;
4538 +.elementor-template-library-menu-item.elementor-active {
5072 4539 border-color: var(--e-a-border-color-accent);
5073 4540 color: var(--e-a-color-txt-accent);
5074 4541 }
5075 4542
@@ -5075,31 +4542,12 @@
5075 4542
5076 4543 #elementor-template-library-header-actions {
5077 4544 display: flex;
5078 4545 }
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;
4546 +#elementor-template-library-header-actions > div {
5087 4547 padding-inline-end: 16px;
5088 - cursor: pointer;
5089 4548 }
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 4549
5097 -#elementor-template-library-header-tools.e-hidden-disabled {
5098 - opacity: 0;
5099 - visibility: hidden;
5100 -}
5101 -
5102 4550 #elementor-template-library-header-preview-insert-wrapper {
5103 4551 cursor: default;
5104 4552 padding: 0 10px;
5105 4553 }
@@ -5108,9 +4556,8 @@
5108 4556 margin-inline-start: 4px;
5109 4557 }
5110 4558
5111 4559 #elementor-template-library-header-preview-back {
5112 - gap: 10px;
5113 4560 padding-block: 16.5px 15px;
5114 4561 padding-inline: 0 16.5px;
5115 4562 border-inline-end: var(--e-a-border);
5116 4563 cursor: pointer;
@@ -5115,138 +4562,27 @@
5115 4562 border-inline-end: var(--e-a-border);
5116 4563 cursor: pointer;
5117 4564 transition: color 0.5s;
5118 4565 }
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 4566 #elementor-template-library-header-preview-back:hover {
5137 4567 color: var(--e-a-color-txt-hover);
5138 4568 }
5139 4569 #elementor-template-library-header-preview-back i {
4570 + padding-inline-end: 10px;
5140 4571 font-size: 18px;
5141 - scale: calc(1 * var(--direction-multiplier)) 1;
5142 4572 }
4573 +#elementor-template-library-header-preview-back i:before {
4574 + content: "\e87e";
4575 +}
5143 4576
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 {
4577 +#elementor-template-library-templates[data-template-source=local] #elementor-template-library-templates-container {
4578 + margin-block-start: 10px;
4579 + margin-block-end: 45px;
5227 4580 border-block-start: var(--e-a-border);
5228 4581 }
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 {
4582 +#elementor-template-library-templates[data-template-source=local] .elementor-template-library-order-input:checked + .elementor-template-library-order-label {
5230 4583 color: var(--e-a-color-txt-active);
5231 4584 }
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 4585 #elementor-template-library-templates[data-template-source=remote] #elementor-template-library-templates-container {
5250 4586 margin: 10px -15px 0;
5251 4587 }
5252 4588 #elementor-template-library-templates[data-template-source=remote] .elementor-template-library-order-input:checked + .elementor-template-library-order-label {
@@ -5272,243 +4608,14 @@
5272 4608 }
5273 4609 #elementor-template-library-templates .elementor-template-library-order-input:checked.elementor-template-library-order-reverse + .elementor-template-library-order-label:after {
5274 4610 content: "\e8ad";
5275 4611 }
5276 -#elementor-template-library-templates .elementor-template-library-filter-toolbar-side-actions {
4612 +
4613 +#elementor-template-library-templates-container {
5277 4614 display: flex;
5278 - align-items: center;
5279 - gap: 8px;
4615 + flex-wrap: wrap;
4616 + align-items: flex-start;
5280 4617 }
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 4618
5512 4619 #elementor-template-library-toolbar {
5513 4620 display: flex;
5514 4621 justify-content: space-between;
@@ -5519,80 +4626,8 @@
5519 4626 display: flex;
5520 4627 align-items: center;
5521 4628 }
5522 4629
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 4630 #elementor-template-library-filter-toolbar-remote {
5596 4631 font-size: 11px;
5597 4632 }
5598 4633
@@ -5606,11 +4641,8 @@
5606 4641 padding-inline-end: 22px;
5607 4642 -webkit-user-select: none;
5608 4643 -moz-user-select: none;
5609 4644 user-select: none;
5610 - line-height: 1;
5611 - font-size: 10px;
5612 - font-weight: 500;
5613 4645 }
5614 4646
5615 4647 label.elementor-template-library-order-label {
5616 4648 cursor: pointer;
@@ -5666,12 +4698,8 @@
5666 4698 #elementor-template-library-filter-my-favorites-label i:after {
5667 4699 content: "\e923";
5668 4700 }
5669 4701
5670 -#elementor-template-library-create-new-folder-dialog .elementor-create-folder-template-dialog__p {
5671 - margin-block-end: 10px;
5672 -}
5673 -
5674 4702 #elementor-template-library-filter-text-wrapper {
5675 4703 width: 200px;
5676 4704 position: relative;
5677 4705 }
@@ -5676,15 +4704,12 @@
5676 4704 position: relative;
5677 4705 }
5678 4706 #elementor-template-library-filter-text-wrapper i {
5679 4707 position: absolute;
5680 - inset-block-start: 50%;
5681 - inset-inline-end: 0;
4708 + top: 50%;
4709 + right: 0;
5682 4710 transform: translateY(-50%);
5683 4711 }
5684 -#elementor-template-library-filter-text-wrapper i.eicon-loading.eicon-animation-spin {
5685 - inset-block-start: 25%;
5686 -}
5687 4712
5688 4713 #elementor-template-library-filter-text {
5689 4714 border: none;
5690 4715 border-block-end: var(--e-a-border-bold);
@@ -5710,32 +4735,19 @@
5710 4735 padding: 8px;
5711 4736 border: var(--e-a-border);
5712 4737 border-radius: 3px;
5713 4738 }
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 {
4739 +.elementor-template-library-template-remote:hover {
5719 4740 background-color: var(--e-a-bg-hover);
5720 4741 }
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 {
4742 +.elementor-template-library-template-remote:hover .elementor-template-library-template-name {
5725 4743 display: none;
5726 4744 }
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 {
4745 +.elementor-template-library-template-remote:not(:hover) .elementor-template-library-template-preview {
5734 4746 opacity: 0;
5735 4747 }
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 {
4748 +.elementor-template-library-template-remote:not(:hover) .elementor-template-library-favorite,
4749 +.elementor-template-library-template-remote:not(:hover) .elementor-template-library-template-action {
5738 4750 display: none;
5739 4751 }
5740 4752 .elementor-template-library-template-remote.elementor-template-library-pro-template .elementor-template-library-template-body:before {
5741 4753 content: var(--elementor-template-library-subscription-plan-label);
@@ -5743,10 +4755,10 @@
5743 4755 color: var(--e-a-color-white);
5744 4756 position: absolute;
5745 4757 text-transform: uppercase;
5746 4758 line-height: 1;
5747 - inset-block-start: 5px;
5748 - inset-inline-end: 5px;
4759 + top: 5px;
4760 + right: 5px;
5749 4761 padding: 3px 5px;
5750 4762 font-size: 8px;
5751 4763 border-radius: 2px;
5752 4764 }
@@ -5761,10 +4773,10 @@
5761 4773 }
5762 4774 .elementor-template-library-template-remote:not(.elementor-template-library-template-page):not(.elementor-template-library-template-lp) .elementor-template-library-template-footer {
5763 4775 position: absolute;
5764 4776 width: 100%;
5765 - inset-block-end: 0;
5766 - inset-inline-start: 0;
4777 + bottom: 0;
4778 + left: 0;
5767 4779 padding: 10px;
5768 4780 background-color: var(--e-a-bg-default);
5769 4781 transition: transform 0.5s;
5770 4782 }
@@ -5770,9 +4782,9 @@
5770 4782 }
5771 4783 .elementor-template-library-template-remote:not(.elementor-template-library-template-page):not(.elementor-template-library-template-lp) .elementor-template-library-template-name {
5772 4784 display: none;
5773 4785 }
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 {
4786 +.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 4787 transform: translateY(100%);
5776 4788 }
5777 4789 .elementor-template-library-template-remote .elementor-template-library-template-body {
5778 4790 position: relative;
@@ -5789,9 +4801,12 @@
5789 4801 box-shadow: inset 0px -2px 15px -6px rgba(0, 0, 0, 0.07);
5790 4802 }
5791 4803 .elementor-template-library-template-remote .elementor-template-library-template-preview {
5792 4804 position: absolute;
5793 - inset: 0;
4805 + top: 0;
4806 + left: 0;
4807 + width: 100%;
4808 + height: 100%;
5794 4809 background-color: rgba(0, 0, 0, 0.5);
5795 4810 transition: opacity 0.5s;
5796 4811 cursor: pointer;
5797 4812 }
@@ -5797,11 +4812,11 @@
5797 4812 }
5798 4813 .elementor-template-library-template-remote .elementor-template-library-template-preview i {
5799 4814 font-size: 20px;
5800 4815 position: absolute;
5801 - inset-block-start: 50%;
5802 - inset-inline-start: 50%;
5803 - transform: translate(calc(-50% * var(--direction-multiplier)), -50%);
4816 + top: 50%;
4817 + left: 50%;
4818 + transform: translate(-50%, -50%);
5804 4819 }
5805 4820 .elementor-template-library-template-remote .elementor-template-library-template-footer {
5806 4821 display: flex;
5807 4822 justify-content: space-between;
@@ -5821,22 +4836,10 @@
5821 4836 .elementor-template-library-template-remote .elementor-template-library-favorite {
5822 4837 margin-inline-start: auto;
5823 4838 }
5824 4839 .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;
4840 + display: none;
5834 4841 }
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 4842 .elementor-template-library-template-remote .elementor-template-library-template-favorite-input:checked + .elementor-template-library-template-favorite-label i:before {
5840 4843 content: "\e93f";
5841 4844 color: var(--e-a-color-primary-bold);
5842 4845 }
@@ -5871,231 +4874,112 @@
5871 4874 height: 200px;
5872 4875 }
5873 4876
5874 4877 #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) {
4878 +.elementor-template-library-template-local {
5877 4879 display: flex;
5878 4880 align-items: center;
5879 4881 padding: 0 25px;
5880 4882 text-align: start;
5881 4883 }
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 4884
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;
4885 +#elementor-template-library-order-toolbar-local {
4886 + margin-block-start: 30px;
5962 4887 }
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%;
4888 +#elementor-template-library-order-toolbar-local .elementor-template-library-order-label {
4889 + line-height: 1;
4890 + font-size: 10px;
4891 + font-weight: 500;
5980 4892 }
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 4893
6017 -.elementor-template-library-template-local,
6018 -.elementor-template-library-template-cloud:not(.elementor-template-library-template-view-grid) {
4894 +.elementor-template-library-template-local {
6019 4895 height: 50px;
6020 4896 width: 100%;
6021 4897 margin-block-start: 1px;
6022 4898 transition: background-color 0.3s linear;
6023 4899 }
6024 -.elementor-template-library-template-local:hover,
6025 -.elementor-template-library-template-cloud:not(.elementor-template-library-template-view-grid):hover {
4900 +.elementor-template-library-template-local:hover {
6026 4901 background-color: var(--e-a-bg-hover);
6027 4902 }
6028 -.elementor-template-library-template-local:first-child,
6029 -.elementor-template-library-template-cloud:not(.elementor-template-library-template-view-grid):first-child {
4903 +.elementor-template-library-template-local:first-child {
6030 4904 border-start-start-radius: 3px;
6031 4905 border-start-end-radius: 3px;
6032 4906 border-end-start-radius: 0;
6033 4907 border-end-end-radius: 0;
6034 4908 }
6035 -.elementor-template-library-template-local:last-child,
6036 -.elementor-template-library-template-cloud:not(.elementor-template-library-template-view-grid):last-child {
4909 +.elementor-template-library-template-local:last-child {
6037 4910 border-start-start-radius: 0;
6038 4911 border-start-end-radius: 0;
6039 4912 border-end-start-radius: 3px;
6040 4913 border-end-end-radius: 3px;
6041 4914 }
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 {
4915 +.elementor-template-library-template-local .elementor-template-library-template-name {
6044 4916 font-weight: 500;
6045 4917 }
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 4918 .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 {
4919 +.elementor-template-library-template-local .elementor-template-library-template-meta {
6054 4920 padding-inline-end: 20px;
6055 4921 }
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 4922 .elementor-template-library-template-local .elementor-template-library-template-name,
6061 4923 .elementor-template-library-template-local .elementor-template-library-template-meta,
6062 4924 .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 {
4925 +.elementor-template-library-template-local .elementor-template-library-template-action {
6068 4926 white-space: nowrap;
6069 4927 text-overflow: ellipsis;
6070 4928 overflow: hidden;
6071 4929 }
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 {
4930 +.elementor-template-library-template-local .elementor-template-library-template-controls {
6074 4931 position: relative;
6075 4932 display: flex;
6076 4933 align-items: center;
6077 4934 }
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 {
4935 +.elementor-template-library-template-local .elementor-template-library-template-controls > div {
6082 4936 cursor: pointer;
6083 4937 transition: color 0.5s;
6084 4938 }
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;
4939 +.elementor-template-library-template-local .elementor-template-library-template-insert i {
4940 + margin-inline-end: 3px;
6088 4941 }
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;
4942 +.elementor-template-library-template-local .elementor-template-library-template-control-title {
4943 + margin-inline-start: 6px;
6093 4944 }
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;
4945 +.elementor-template-library-template-local .elementor-template-library-template-more .elementor-template-library-template-delete:hover {
4946 + color: var(--e-a-color-danger);
6097 4947 }
4948 +.elementor-template-library-template-local .elementor-template-library-template-more {
4949 + display: none;
4950 + position: absolute;
4951 + background-color: var(--e-a-bg-default);
4952 + padding: 3px 20px;
4953 + border-radius: var(--e-a-border-radius);
4954 + box-shadow: 1px 3px 11px rgba(0, 0, 0, 0.3);
4955 + top: 100%;
4956 + right: 0;
4957 + transform: translateX(65%) translateY(-7px);
4958 + z-index: 1;
4959 +}
4960 +.elementor-template-library-template-local .elementor-template-library-template-more:before {
4961 + content: "";
4962 + position: absolute;
4963 + border: solid transparent;
4964 + border-width: 8px 4px;
4965 + border-block-end-color: var(--e-a-color-white);
4966 + transform: translateY(-100%);
4967 +}
4968 +.elementor-template-library-template-local .elementor-template-library-template-more > div {
4969 + margin: 10px 0;
4970 + font-size: 11px;
4971 +}
4972 +.elementor-template-library-template-local .elementor-template-library-template-more a {
4973 + color: var(--e-a-color-txt);
4974 +}
4975 +.elementor-template-library-template-local .elementor-template-library-template-more-toggle {
4976 + flex-grow: 1;
4977 + text-align: end;
4978 +}
4979 +.elementor-template-library-template-local .elementor-template-library-template-more-toggle i {
4980 + font-size: 16px;
4981 +}
6098 4982
6099 4983 #elementor-template-library-preview {
6100 4984 height: 100%;
6101 4985 overflow: hidden;
@@ -6101,9 +4985,9 @@
6101 4985 overflow: hidden;
6102 4986 }
6103 4987 #elementor-template-library-preview iframe {
6104 4988 height: 150%;
6105 - transform: scale(0.666) translateX(calc(-25% * var(--direction-multiplier))) translateY(-25%);
4989 + transform: scale(0.666) translateX(-25%) translateY(-25%);
6106 4990 }
6107 4991 @media (max-width: 1439px) {
6108 4992 #elementor-template-library-preview iframe {
6109 4993 width: 1440px;
@@ -6119,14 +5003,8 @@
6119 5003 font-size: 64px;
6120 5004 margin-block-start: 45px;
6121 5005 line-height: 1;
6122 5006 }
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 5007 .elementor-template-library-blank-icon img {
6130 5008 width: 70px;
6131 5009 }
6132 5010 .elementor-template-library-blank-icon .elementor-template-library-no-results {
@@ -6164,499 +5042,8 @@
6164 5042 #elementor-template-library-save-template-form > * {
6165 5043 height: 55px;
6166 5044 font-size: 16px;
6167 5045 }
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 5046
6660 5047 #elementor-template-library-save-template-name {
6661 5048 width: 500px;
6662 5049 padding-inline-start: 25px;
@@ -6708,12 +5095,8 @@
6708 5095 padding: 100px 0 0;
6709 5096 min-height: 550px;
6710 5097 }
6711 5098
6712 -.elementor-template-library-cloud-empty__button {
6713 - margin-block-start: 45px;
6714 -}
6715 -
6716 5099 #elementor-template-library-connect-logo {
6717 5100 font-size: 20px;
6718 5101 }
6719 5102 #elementor-template-library-connect__button {
@@ -6750,11 +5133,11 @@
6750 5133 }
6751 5134
6752 5135 .elementor-template-library-blank-footer {
6753 5136 position: absolute;
6754 - inset-block-end: 70px;
6755 - inset-inline-start: 50%;
6756 - transform: translateX(calc(-50% * var(--direction-multiplier)));
5137 + bottom: 70px;
5138 + left: 50%;
5139 + transform: translateX(-50%);
6757 5140 font-style: italic;
6758 5141 color: var(--e-a-color-txt-muted);
6759 5142 }
6760 5143 @media (max-height: 700px) {
@@ -6786,287 +5169,50 @@
6786 5169 #elementor-template-library-error-info {
6787 5170 margin-block-start: 10px;
6788 5171 }
6789 5172
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);
5173 +@media (max-width: 1439px) {
5174 + .elementor-template-library-local-column-1 {
5175 + width: 33%;
5176 + }
5177 + .elementor-template-library-local-column-2 {
5178 + width: 10%;
5179 + }
5180 + .elementor-template-library-local-column-3 {
5181 + width: 15%;
5182 + }
5183 + .elementor-template-library-local-column-4 {
5184 + width: 15%;
5185 + }
5186 + .elementor-template-library-local-column-5 {
5187 + width: 27%;
5188 + }
6799 5189 }
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);
5190 +@media (min-width: 1440px) {
5191 + .elementor-template-library-local-column-1 {
5192 + width: 25%;
5193 + }
5194 + .elementor-template-library-local-column-2 {
5195 + width: 17%;
5196 + }
5197 + .elementor-template-library-local-column-3 {
5198 + width: 17%;
5199 + }
5200 + .elementor-template-library-local-column-4 {
5201 + width: 17%;
5202 + }
5203 + .elementor-template-library-local-column-5 {
5204 + width: 24%;
5205 + }
6807 5206 }
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;
5207 +@media (max-width: 1024px) {
5208 + .elementor-template-library-local-column-3 {
5209 + display: none;
5210 + }
5211 + .elementor-template-library-local-column-5 {
5212 + width: 41%;
5213 + }
6813 5214 }
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 5215 .elementor-tags-list {
7070 5216 display: none;
7071 5217 position: absolute;
7072 5218 width: 260px;
@@ -7156,10 +5302,10 @@
7156 5302 }
7157 5303 .elementor-tag-settings-popup:before {
7158 5304 content: "";
7159 5305 position: absolute;
7160 - inset-block-start: -20px;
7161 - inset-inline-start: 5px;
5306 + top: -20px;
5307 + left: 5px;
7162 5308 border: 10px solid transparent;
7163 5309 border-block-end-color: var(--e-a-border-color);
7164 5310 }
7165 5311 .elementor-tag-settings-popup .elementor-control-type-section:first-child {
@@ -7250,14 +5396,8 @@
7250 5396 cursor: default;
7251 5397 opacity: 0.5;
7252 5398 color: var(--e-a-color-disabled);
7253 5399 }
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 5400 .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 5401 background-color: var(--e-a-bg-hover);
7262 5402 color: var(--e-a-color-hover);
7263 5403 }
@@ -7275,31 +5415,15 @@
7275 5415 color: var(--e-a-color-txt-muted);
7276 5416 }
7277 5417 .elementor-context-menu-list__item__shortcut--link-fullwidth {
7278 5418 position: absolute;
7279 - inset: 0;
5419 + left: 0;
5420 + top: 0;
5421 + width: 100%;
5422 + height: 100%;
7280 5423 z-index: 2;
7281 5424 cursor: pointer;
7282 5425 }
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 5426 .elementor-context-menu-list__item__title, .elementor-context-menu-list__item__shortcut {
7303 5427 font-size: 14px;
7304 5428 font-style: normal;
7305 5429 font-weight: 400;
@@ -7308,11 +5432,8 @@
7308 5432 }
7309 5433 .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 5434 color: var(--e-global-color-danger);
7311 5435 }
7312 -.elementor-context-menu-list__item.elementor-hidden {
7313 - display: none;
7314 -}
7315 5436 .elementor-context-menu .eicon-pro-icon {
7316 5437 color: var(--e-global-color-accent);
7317 5438 }
7318 5439
@@ -7384,9 +5505,9 @@
7384 5505 }
7385 5506 .elementor-hotkeys__item--shortcut kbd:not(:last-of-type)::after {
7386 5507 content: "+";
7387 5508 position: absolute;
7388 - inset-inline-end: 0;
5509 + right: 0;
7389 5510 width: 9px;
7390 5511 text-align: center;
7391 5512 margin-inline-end: -18px;
7392 5513 }
@@ -7395,13 +5516,8 @@
7395 5516 margin-inline-end: -16px;
7396 5517 }
7397 5518 }
7398 5519
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 5520 .ui-resizable-n {
7405 5521 top: -5px;
7406 5522 }
7407 5523 .ui-resizable-e {
@@ -7459,18 +5575,16 @@
7459 5575 }
7460 5576
7461 5577 body {
7462 5578 --e-editor-navigator-width: 240px;
7463 - --e-editor-navigator-indicator-width: 3px;
7464 - --e-editor-navigator-promotion-height: 30px;
7465 5579 }
7466 5580
7467 5581 #elementor-navigator {
7468 5582 position: fixed;
7469 - inset-block-start: 100px;
7470 - inset-inline-end: 30px;
5583 + top: 100px;
7471 5584 width: var(--e-editor-navigator-width);
7472 5585 height: 50vh;
5586 + right: 30px;
7473 5587 background-color: var(--e-a-bg-default);
7474 5588 border: var(--e-a-border);
7475 5589 box-shadow: 0 2px 20px 0 rgba(0, 0, 0, 0.1);
7476 5590 -webkit-user-select: none;
@@ -7480,10 +5594,10 @@
7480 5594 z-index: 100;
7481 5595 display: none;
7482 5596 }
7483 5597 body.elementor-navigator-docked #elementor-navigator {
7484 - inset: 0;
7485 - inset-inline-start: auto;
5598 + top: 0;
5599 + right: 0;
7486 5600 height: 100%;
7487 5601 }
7488 5602 body:not(.elementor-navigator-docked) #elementor-navigator {
7489 5603 border-radius: 5px;
@@ -7489,10 +5603,8 @@
7489 5603 border-radius: 5px;
7490 5604 }
7491 5605 #elementor-navigator__inner {
7492 5606 height: 100%;
7493 - display: flex;
7494 - flex-direction: column;
7495 5607 }
7496 5608 #elementor-navigator__header {
7497 5609 display: flex;
7498 5610 align-items: stretch;
@@ -7506,22 +5618,8 @@
7506 5618 font-weight: 400;
7507 5619 padding: 10px 0;
7508 5620 cursor: move;
7509 5621 }
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 5622 #elementor-navigator__close, #elementor-navigator__toggle-all {
7525 5623 color: var(--e-a-color-txt);
7526 5624 background-color: transparent;
7527 5625 border: none;
@@ -7542,9 +5640,9 @@
7542 5640 #elementor-navigator__close {
7543 5641 font-size: 11px;
7544 5642 }
7545 5643 #elementor-navigator__elements {
7546 - flex-grow: 1;
5644 + height: calc(100% - 49px);
7547 5645 overflow: auto;
7548 5646 position: relative;
7549 5647 }
7550 5648 .elementor-navigator-docked #elementor-navigator__elements {
@@ -7555,10 +5653,16 @@
7555 5653 }
7556 5654 #elementor-navigator__elements > .elementor-navigator__element-section {
7557 5655 border-block-end: var(--e-a-border);
7558 5656 }
5657 +#elementor-navigator__elements.elementor-navigator-list__promotion {
5658 + height: calc(100% - 80px);
5659 +}
7559 5660 #elementor-navigator__footer {
5661 + position: absolute;
7560 5662 width: 100%;
5663 + left: 0;
5664 + bottom: 0;
7561 5665 text-align: center;
7562 5666 }
7563 5667 #elementor-navigator__footer__resize-bar {
7564 5668 border-block-start: var(--e-a-border);
@@ -7568,18 +5672,14 @@
7568 5672 }
7569 5673 #elementor-navigator__footer__promotion {
7570 5674 font-size: 12px;
7571 5675 padding: 4px 17px;
5676 + line-height: 22px;
7572 5677 font-family: "Roboto", sans-serif;
7573 5678 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 5679 }
7579 5680 #elementor-navigator__footer__promotion a {
7580 5681 color: var(--e-a-color-accent-promotion);
7581 - margin-inline-start: 1px;
7582 5682 }
7583 5683
7584 5684 .elementor-navigator__item {
7585 5685 position: relative;
@@ -7599,9 +5699,9 @@
7599 5699 .elementor-navigator__item[data-locked=true] {
7600 5700 cursor: not-allowed;
7601 5701 }
7602 5702 .elementor-navigator__item:not(.elementor-active) .elementor-navigator__element__list-toggle i {
7603 - transform: rotate(calc(-90deg * var(--direction-multiplier)));
5703 + transform: rotate(-90deg);
7604 5704 }
7605 5705 .elementor-navigator__item > * {
7606 5706 display: flex;
7607 5707 align-items: center;
@@ -7616,9 +5716,9 @@
7616 5716 .elementor-navigator__elements .elementor-empty-view {
7617 5717 padding: 10px;
7618 5718 }
7619 5719 .elementor-navigator__elements .elementor-empty-view__title {
7620 - margin-inline-start: 34px;
5720 + margin-inline-start: 23px;
7621 5721 font-size: 10px;
7622 5722 font-style: italic;
7623 5723 }
7624 5724 .elementor-navigator__elements .ui-sortable-helper {
@@ -7686,9 +5786,9 @@
7686 5786 overflow: hidden;
7687 5787 }
7688 5788 .elementor-navigator__element__toggle {
7689 5789 position: absolute;
7690 - inset-inline-end: 15px;
5790 + right: 15px;
7691 5791 height: 100%;
7692 5792 z-index: 0;
7693 5793 font-size: 13px;
7694 5794 }
@@ -7694,12 +5794,13 @@
7694 5794 }
7695 5795 .elementor-navigator__element__indicators {
7696 5796 position: relative;
7697 5797 transition: transform 0.5s;
5798 + padding-inline-start: 5px;
7698 5799 z-index: 91;
7699 5800 }
7700 5801 .elementor-navigator__element__indicators:not(:hover) {
7701 - transform: translateX(calc(100% * var(--direction-multiplier) - var(--e-editor-navigator-indicator-width) * var(--direction-multiplier)));
5802 + transform: translateX(calc(100% - 8px));
7702 5803 }
7703 5804 .elementor-navigator__element__indicator {
7704 5805 height: 100%;
7705 5806 width: 31px;
@@ -7707,13 +5808,16 @@
7707 5808 align-items: center;
7708 5809 justify-content: center;
7709 5810 color: var(--e-a-color-txt);
7710 5811 background-color: var(--e-a-bg-default);
7711 - border-inline-end: var(--e-a-border);
5812 + border-inline-start: var(--e-a-border);
7712 5813 }
7713 5814 .elementor-navigator__element__indicator:first-child {
7714 - border-inline-start: var(--e-editor-navigator-indicator-width) solid var(--e-a-border-color-accent);
5815 + border-inline-start: 3px solid var(--e-a-border-color-accent);
7715 5816 }
5817 +.elementor-editing .elementor-navigator__element__indicator:first-child {
5818 + border-color: #242729;
5819 +}
7716 5820 .elementor-navigator__element__indicator:hover {
7717 5821 color: var(--e-a-color-txt-hover);
7718 5822 }
7719 5823 .elementor-navigator__element--hidden .elementor-navigator__element__title,
@@ -7719,16 +5823,13 @@
7719 5823 .elementor-navigator__element--hidden .elementor-navigator__element__title,
7720 5824 .elementor-navigator__element--hidden .elementor-navigator__element__toggle {
7721 5825 opacity: 0.5;
7722 5826 }
7723 -.elementor-navigator__promotion-text {
7724 - line-height: 18px;
7725 -}
7726 5827
7727 5828 .e-notice-bar {
7728 5829 position: absolute;
7729 5830 width: 100%;
7730 - inset-block-end: 0;
5831 + bottom: 0;
7731 5832 display: flex;
7732 5833 align-items: center;
7733 5834 height: 40px;
7734 5835 color: #fff;
@@ -7752,9 +5853,9 @@
7752 5853 padding: 4px 10px;
7753 5854 font-size: 11px;
7754 5855 }
7755 5856 .e-notice-bar__primary_action a:hover {
7756 - color: rgb(70.5, 0, 30.2142857143);
5857 + color: #47001e;
7757 5858 background: #F1F2F3;
7758 5859 }
7759 5860 .e-notice-bar__secondary_message, .e-notice-bar__secondary_action {
7760 5861 font-size: 11px;
@@ -7854,11 +5955,11 @@
7854 5955 background-color: transparent;
7855 5956 }
7856 5957 #elementor-icons-manager__search i {
7857 5958 position: absolute;
7858 - inset-block-start: 50%;
7859 - inset-inline-end: 15px;
5959 + top: 50%;
7860 5960 transform: translateY(-50%);
5961 + right: 15px;
7861 5962 }
7862 5963 #elementor-icons-manager__tab__wrapper {
7863 5964 overflow: auto;
7864 5965 margin: 25px -15px 0;
@@ -7947,10 +6048,10 @@
7947 6048 content: "";
7948 6049 position: absolute;
7949 6050 height: 100%;
7950 6051 width: 3px;
7951 - inset-block-start: 0;
7952 - inset-inline-start: 0;
6052 + top: 0;
6053 + left: 0;
7953 6054 background-color: var(--e-a-border-color-accent);
7954 6055 }
7955 6056 .elementor-icons-manager__tab__item {
7956 6057 position: relative;
@@ -7975,11 +6076,11 @@
7975 6076 flex-direction: column;
7976 6077 align-items: center;
7977 6078 width: 100%;
7978 6079 position: absolute;
7979 - inset-block-start: 50%;
7980 - inset-inline-start: 50%;
7981 - transform: translate(calc(-50% * var(--direction-multiplier)), -50%);
6080 + top: 50%;
6081 + left: 50%;
6082 + transform: translate(-50%, -50%);
7982 6083 padding: 1px;
7983 6084 }
7984 6085 .elementor-icons-manager__tab__item__icon {
7985 6086 font-size: 25px;
@@ -8023,12 +6124,11 @@
8023 6124 }
8024 6125 .pickr .pcr-button:before, .pickr .pcr-button:after {
8025 6126 height: 12px;
8026 6127 width: 12px;
8027 - position: absolute;
8028 - inset-block-start: 50%;
8029 - inset-inline-start: 50%;
8030 - transform: translate(calc(-50% * var(--direction-multiplier)), -50%);
6128 + top: 50%;
6129 + left: 50%;
6130 + transform: translate(-50%, -50%);
8031 6131 }
8032 6132
8033 6133 .pcr-app {
8034 6134 background-color: var(--e-a-bg-default);
@@ -8046,11 +6146,8 @@
8046 6146 }
8047 6147 .pcr-app[data-theme=monolith] .pcr-selection .pcr-color-palette {
8048 6148 height: 150px;
8049 6149 }
8050 -.pcr-app .pcr-selection .pcr-picker {
8051 - box-shadow: 0 0 5px 1px rgba(0, 0, 0, 0.2);
8052 -}
8053 6150 .pcr-app .pcr-interaction {
8054 6151 padding-block-end: 20px;
8055 6152 }
8056 6153 .pcr-app .pcr-interaction input.pcr-result {
@@ -8135,9 +6232,12 @@
8135 6232 font-family: "eicons";
8136 6233 color: var(--e-a-btn-color-invert);
8137 6234 text-indent: 0;
8138 6235 position: absolute;
8139 - inset: 0;
6236 + left: 0;
6237 + top: 0;
6238 + width: 100%;
6239 + height: 100%;
8140 6240 display: flex;
8141 6241 justify-content: center;
8142 6242 align-items: center;
8143 6243 }
@@ -8168,9 +6268,9 @@
8168 6268 }
8169 6269
8170 6270 .select2-selection__arrow {
8171 6271 height: 27px;
8172 - inset-block-start: 0;
6272 + top: 0;
8173 6273 }
8174 6274
8175 6275 .select2-results__option[aria-selected=true] {
8176 6276 background-color: var(--e-a-bg-active);
@@ -8193,12 +6293,12 @@
8193 6293 .e-ui-state--document-scrubbing-mode__on, .e-ui-state--document-scrubbing-mode__on * {
8194 6294 cursor: ew-resize;
8195 6295 }
8196 6296 .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;
6297 + box-shadow: 0 0 0 1px #0e3b9c inset;
8198 6298 }
8199 6299 .e-ui-state--document-scrubbing-mode__on label.e-scrubbing--active {
8200 - color: rgb(14.2857142857, 58.5714285714, 155.7142857143);
6300 + color: #0e3b9c;
8201 6301 -webkit-user-select: none;
8202 6302 -moz-user-select: none;
8203 6303 user-select: none;
8204 6304 }
@@ -8229,10 +6329,11 @@
8229 6329 padding: 0;
8230 6330 margin: 0;
8231 6331 height: 100px;
8232 6332 position: absolute;
8233 - inset-block-start: -60px;
8234 - inset-inline: 0;
6333 + top: -60px;
6334 + left: 0;
6335 + right: 0;
8235 6336 }
8236 6337 #elementor-paste-area-dialog #elementor-paste-area-dialog__input:focus {
8237 6338 border-color: transparent;
8238 6339 outline: none;
@@ -8257,54 +6358,21 @@
8257 6358 display: block;
8258 6359 margin: 10px -15px;
8259 6360 }
8260 6361
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 6362 [class^=eicon-flex], [class*=" eicon-flex"] {
8291 6363 transition: 0.3s all;
6364 + --is-ltr: 1;
6365 + --is-rtl: 0;
6366 + --rotation-direction: calc(var(--is-ltr) - var(--is-rtl));
8292 6367 }
8293 6368 [class^=eicon-flex].eicon-inline, [class*=" eicon-flex"].eicon-inline {
8294 6369 max-height: 1em;
8295 6370 max-width: 1em;
8296 6371 }
8297 -[class^=eicon-flex], [class*=" eicon-flex"] {
8298 - --is-ltr: 1;
8299 - --is-rtl: 0;
8300 -}
8301 6372 [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 6373 --rotation-direction: calc(var(--is-ltr) + var(--is-rtl));
8303 6374 }
8304 -[class^=eicon-flex], [class*=" eicon-flex"] {
8305 - --rotation-direction: calc(var(--is-ltr) - var(--is-rtl));
8306 -}
8307 6375 :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 6376 transform: rotate(calc(var(--rotation-direction) * 90deg));
8309 6377 }
8310 6378 :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 +6385,6 @@
8317 6385 transform: rotate(calc(var(--is-rtl) * 180deg));
8318 6386 }
8319 6387 .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 6388 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 6389 }
8332 6390 /*# sourceMappingURL=editor.css.map */