PluginProbe
Elementor Website Builder – more than just a page builder / 3.23.0-dev3
Elementor Website Builder – more than just a page builder v3.23.0-dev3
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 4.1.0-beta1 4.1.0-dev1 All 452 releases
← All changes | assets/css/editor-rtl.css +379 -2409 4.2.03.23.0-dev3 View file →
@@ -1,4 +1,5 @@
1 +/*! elementor - v3.23.0 - 01-07-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 + left: 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: "\e89e";
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: "\e89f";
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,70 +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,
792 -#elementor-panel-footer) h1,
793 -.elementor-panel :where(#elementor-panel-state-loading,
794 -#elementor-panel-header-wrapper,
795 -#elementor-panel-content-wrapper,
796 -#elementor-panel-footer) h2,
797 -.elementor-panel :where(#elementor-panel-state-loading,
798 -#elementor-panel-header-wrapper,
799 -#elementor-panel-content-wrapper,
800 -#elementor-panel-footer) h3,
801 -.elementor-panel :where(#elementor-panel-state-loading,
802 -#elementor-panel-header-wrapper,
803 -#elementor-panel-content-wrapper,
804 -#elementor-panel-footer) h4,
805 -.elementor-panel :where(#elementor-panel-state-loading,
806 -#elementor-panel-header-wrapper,
807 -#elementor-panel-content-wrapper,
808 -#elementor-panel-footer) h5,
809 -.elementor-panel :where(#elementor-panel-state-loading,
810 -#elementor-panel-header-wrapper,
811 -#elementor-panel-content-wrapper,
812 -#elementor-panel-footer) 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 + right: 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 {
813 534 font-size: 100%;
814 535 font-weight: normal;
815 536 }
816 -.elementor-panel :where(#elementor-panel-state-loading,
817 -#elementor-panel-header-wrapper,
818 -#elementor-panel-content-wrapper,
819 -#elementor-panel-footer) abbr,
820 -.elementor-panel :where(#elementor-panel-state-loading,
821 -#elementor-panel-header-wrapper,
822 -#elementor-panel-content-wrapper,
823 -#elementor-panel-footer) acronym {
537 +.elementor-panel abbr,
538 +.elementor-panel acronym {
824 539 border: 0;
825 540 font-variant: normal;
826 541 }
827 -.elementor-panel :where(#elementor-panel-state-loading,
828 -#elementor-panel-header-wrapper,
829 -#elementor-panel-content-wrapper,
830 -#elementor-panel-footer) sup {
542 +.elementor-panel sup {
831 543 vertical-align: text-top;
832 544 }
833 -.elementor-panel :where(#elementor-panel-state-loading,
834 -#elementor-panel-header-wrapper,
835 -#elementor-panel-content-wrapper,
836 -#elementor-panel-footer) sub {
545 +.elementor-panel sub {
837 546 vertical-align: text-bottom;
838 547 }
839 -.elementor-panel :where(#elementor-panel-state-loading,
840 -#elementor-panel-header-wrapper,
841 -#elementor-panel-content-wrapper,
842 -#elementor-panel-footer) img {
548 +.elementor-panel img {
843 549 max-width: 100%;
844 550 height: auto;
845 551 border: 0;
846 552 }
847 -.elementor-panel :where(#elementor-panel-state-loading,
848 -#elementor-panel-header-wrapper,
849 -#elementor-panel-content-wrapper,
850 -#elementor-panel-footer) :focus {
553 +.elementor-panel :focus {
851 554 outline: 0;
852 555 }
853 556 .elementor-panel .elementor-panel-box-content {
854 557 padding: 20px 20px 10px;
@@ -900,9 +603,10 @@
900 603 display: none;
901 604 position: absolute;
902 605 box-shadow: var(--e-a-popover-shadow);
903 606 border-radius: var(--e-a-border-radius);
904 - inset-inline: 0;
607 + left: 0;
608 + right: 0;
905 609 margin: -4px auto 5px;
906 610 padding-block-start: 15px;
907 611 width: 90%;
908 612 z-index: 10000;
@@ -910,10 +614,10 @@
910 614 }
911 615 .elementor-panel .elementor-controls-popover:before {
912 616 content: "";
913 617 position: absolute;
914 - inset-block-start: -16px;
915 - inset-inline-end: 22px;
618 + top: -16px;
619 + left: 22px;
916 620 border: 8px solid transparent;
917 621 border-block-end-color: var(--e-a-bg-default);
918 622 }
919 623 .elementor-panel .elementor-controls-popover div.elementor-control {
@@ -924,20 +628,8 @@
924 628 }
925 629 .elementor-panel #elementor-panel-global .elementor-nerd-box .elementor-nerd-box-icon {
926 630 margin-block-start: 20px;
927 631 }
928 -.elementor-panel {
929 - position: relative;
930 - height: 100%;
931 - inset-inline-start: 0;
932 - margin-inline-start: calc(-1 * var(--e-editor-panel-width) * var(--e-is-preview-mode));
933 - width: var(--e-editor-panel-width);
934 - overflow: visible;
935 - background-color: var(--e-a-bg-default);
936 - z-index: 1;
937 - font-family: var(--e-a-font-family);
938 - font-size: 13px;
939 -}
940 632 .elementor-editor-preview .elementor-panel {
941 633 --e-is-preview-mode: 1;
942 634 }
943 635 .elementor-editor-preview .elementor-panel > .ui-resizable-e,
@@ -1017,11 +709,8 @@
1017 709 }
1018 710 .elementor-panel .elementor-panel-category.elementor-active .elementor-panel-heading {
1019 711 border: none;
1020 712 }
1021 -.elementor-panel .elementor-panel-category.elementor-active-title {
1022 - display: flex;
1023 -}
1024 713 .elementor-panel .elementor-panel-category-items {
1025 714 padding-block-end: 20px;
1026 715 }
1027 716 .elementor-panel .elementor-panel-category-items-empty {
@@ -1148,9 +837,8 @@
1148 837 content: "\e940";
1149 838 }
1150 839 .elementor-panel .elementor-tab-control-advanced-tab-floating-buttons span:before,
1151 840 .elementor-panel .elementor-tab-control-advanced-tab-links-in-bio span:before,
1152 -.elementor-panel .elementor-tab-control-advanced-tab-floating-bars span:before,
1153 841 .elementor-panel .elementor-tab-control-advanced span:before,
1154 842 .elementor-panel .elementor-tab-control-general_style span:before {
1155 843 content: "\e916";
1156 844 }
@@ -1193,12 +881,12 @@
1193 881 content: "";
1194 882 position: absolute;
1195 883 height: 13px;
1196 884 width: 13px;
1197 - inset-block-start: 3px;
1198 - inset-block-end: 0;
1199 - inset-inline-start: 8px;
1200 - inset-inline-end: 0;
885 + top: 3px;
886 + bottom: 0;
887 + right: 8px;
888 + left: 0;
1201 889 border-radius: 50%;
1202 890 z-index: -1;
1203 891 }
1204 892 .elementor-panel #elementor-panel-footer {
@@ -1289,10 +977,10 @@
1289 977 border-inline-end: 1px solid #3f444b;
1290 978 }
1291 979 .elementor-panel .elementor-panel-footer-sub-menu-wrapper {
1292 980 position: absolute;
1293 - inset-block-end: 100%;
1294 - inset-inline-start: 0;
981 + bottom: 100%;
982 + left: 0;
1295 983 width: 100%;
1296 984 background-color: #1f2124;
1297 985 padding: 10px;
1298 986 box-shadow: -2px -5px 8px rgba(0, 0, 0, 0.1);
@@ -1344,9 +1032,12 @@
1344 1032 display: none;
1345 1033 }
1346 1034 body.elementor-panel-loading #elementor-panel-state-loading {
1347 1035 position: absolute;
1348 - inset: 0;
1036 + top: 0;
1037 + left: 0;
1038 + height: 100%;
1039 + width: 100%;
1349 1040 display: flex;
1350 1041 align-items: center;
1351 1042 justify-content: center;
1352 1043 background-color: rgba(255, 255, 255, 0.5);
@@ -1359,17 +1050,13 @@
1359 1050
1360 1051 #elementor-panel-elements-search-area {
1361 1052 background-color: var(--e-a-bg-default);
1362 1053 position: sticky;
1363 - inset-block-start: 0;
1054 + top: 0;
1364 1055 padding: 15px;
1365 1056 z-index: 1;
1366 1057 }
1367 1058
1368 -#elementor-panel-elements-search-area:empty {
1369 - display: none;
1370 -}
1371 -
1372 1059 #elementor-panel-elements-search-wrapper {
1373 1060 position: relative;
1374 1061 }
1375 1062
@@ -1386,12 +1073,12 @@
1386 1073 appearance: none;
1387 1074 }
1388 1075 #elementor-panel-elements-search-input + i {
1389 1076 position: absolute;
1390 - inset-block-start: 50%;
1391 - inset-inline-start: 10px;
1077 + right: 10px;
1078 + top: 50%;
1079 + color: var(--e-a-color-txt-disabled);
1392 1080 transform: translateY(-50%);
1393 - color: var(--e-a-color-txt-disabled);
1394 1081 }
1395 1082 #elementor-panel-elements-search-input:focus {
1396 1083 border-color: var(--e-a-border-color-focus);
1397 1084 padding-inline-end: 15px;
@@ -1396,20 +1083,8 @@
1396 1083 border-color: var(--e-a-border-color-focus);
1397 1084 padding-inline-end: 15px;
1398 1085 }
1399 1086
1400 -.e-free-badge-container {
1401 - flex-grow: 1;
1402 - margin-inline-start: 10px;
1403 - margin-inline-end: 10px;
1404 -}
1405 -.e-free-badge-container .e-free-badge {
1406 - border-radius: var(--e-a-border-radius);
1407 - background-color: var(--e-a-btn-bg);
1408 - color: var(--e-a-btn-color-invert);
1409 - padding: 3px 5px;
1410 -}
1411 -
1412 1087 .elementor-panel .elementor-element {
1413 1088 font-family: var(--e-a-font-family);
1414 1089 color: var(--e-a-color-txt);
1415 1090 line-height: 1;
@@ -1427,24 +1102,15 @@
1427 1102 -webkit-user-select: none;
1428 1103 -moz-user-select: none;
1429 1104 user-select: none;
1430 1105 }
1431 -.elementor-panel .elementor-element .eicon-atomic {
1432 - position: absolute;
1433 - inset-block-start: 5px;
1434 - inset-inline-end: 5px;
1435 - color: var(--e-a-color-txt);
1436 -}
1437 1106 .elementor-panel .elementor-element:hover, .elementor-panel .elementor-element:focus {
1438 1107 background-color: var(--e-a-bg-hover);
1439 1108 border-color: var(--e-a-border-color-bold);
1440 1109 }
1441 -.elementor-panel .elementor-element:hover > .eicon-upgrade-crown-full, .elementor-panel .elementor-element:focus > .eicon-upgrade-crown-full {
1442 - color: var(--e-a-color-accent-promotion);
1110 +.elementor-panel .elementor-element:hover > .eicon-lock, .elementor-panel .elementor-element:focus > .eicon-lock {
1111 + color: var(--e-a-color-accent);
1443 1112 }
1444 -.elementor-panel .elementor-element:hover > .eicon-plug, .elementor-panel .elementor-element:focus > .eicon-plug {
1445 - color: var(--e-a-color-info);
1446 -}
1447 1113 .elementor-panel .elementor-element .icon {
1448 1114 font-size: 28px;
1449 1115 padding-block-start: 15px;
1450 1116 }
@@ -1456,17 +1122,12 @@
1456 1122 }
1457 1123 .elementor-panel .elementor-element .title {
1458 1124 font-size: 12px;
1459 1125 }
1460 -.elementor-panel .elementor-element > .eicon-upgrade-crown-full, .elementor-panel .elementor-element .eicon-plug {
1126 +.elementor-panel .elementor-element > .eicon-lock {
1461 1127 position: absolute;
1462 - inset-block-start: 5px;
1463 - inset-inline-end: 5px;
1464 -}
1465 -.elementor-panel .elementor-element > .eicon-upgrade-crown-full {
1466 - color: var(--e-a-color-accent-promotion-disabled);
1467 -}
1468 -.elementor-panel .elementor-element > .eicon-plug {
1128 + top: 5px;
1129 + left: 5px;
1469 1130 color: var(--e-a-color-txt-disabled);
1470 1131 }
1471 1132 .elementor-panel .elementor-element:active {
1472 1133 background-color: var(--e-a-bg-hover);
@@ -1484,10 +1145,10 @@
1484 1145 }
1485 1146 #elementor-element--promotion__dialog:after {
1486 1147 content: "";
1487 1148 position: absolute;
1488 - inset-block-start: 15px;
1489 - inset-inline-end: 100%;
1149 + top: 15px;
1150 + left: 100%;
1490 1151 transform: scaleY(0.7);
1491 1152 border: 10px solid transparent;
1492 1153 border-inline-end-color: var(--e-a-bg-default);
1493 1154 }
@@ -1534,10 +1195,10 @@
1534 1195 }
1535 1196 .dialog-tooltip-widget:after {
1536 1197 content: "";
1537 1198 position: absolute;
1538 - inset-block-start: 15px;
1539 - inset-inline-end: 100%;
1199 + top: 15px;
1200 + left: 100%;
1540 1201 transform: scaleY(0.7);
1541 1202 border: 10px solid transparent;
1542 1203 border-inline-end-color: var(--e-a-bg-default);
1543 1204 }
@@ -1576,80 +1237,8 @@
1576 1237 .dialog-tooltip-widget .dialog-tooltip-button::-moz-focus-inner {
1577 1238 border: 0;
1578 1239 }
1579 1240
1580 -#elementor-panel-elements-widget-creation-area:empty {
1581 - display: none;
1582 -}
1583 -
1584 -.elementor-panel-elements-widget-creation {
1585 - text-align: center;
1586 - padding: 30px 20px;
1587 -}
1588 -.elementor-panel-elements-widget-creation__title {
1589 - font-size: 14px;
1590 - font-weight: bold;
1591 - line-height: 1.4;
1592 - color: var(--e-a-color-txt);
1593 -}
1594 -.elementor-panel-elements-widget-creation__message {
1595 - margin-block-start: 8px;
1596 - font-size: 13px;
1597 - line-height: 1.6;
1598 - color: var(--e-a-color-txt-muted);
1599 -}
1600 -.elementor-panel-elements-widget-creation__cta {
1601 - display: inline-flex;
1602 - align-items: center;
1603 - gap: 6px;
1604 - margin-block-start: 16px;
1605 - padding: 0;
1606 - border: none;
1607 - background: none;
1608 - color: #C00BB9;
1609 - font-size: 14px;
1610 - font-weight: 500;
1611 - cursor: pointer;
1612 - font-family: var(--e-a-font-family);
1613 -}
1614 -.elementor-panel-elements-widget-creation__cta i {
1615 - font-size: 16px;
1616 -}
1617 -.elementor-panel-elements-widget-creation__cta:hover {
1618 - opacity: 0.8;
1619 -}
1620 -.elementor-panel-elements-widget-creation--search-footer {
1621 - border-block-start: var(--e-a-border);
1622 -}
1623 -
1624 -.elementor-panel-category-custom-widgets-empty {
1625 - grid-column: 1/-1;
1626 - width: 100%;
1627 - padding: 0 16px 16px;
1628 -}
1629 -.elementor-panel-category-custom-widgets-empty__message {
1630 - margin: 0;
1631 - font-size: 12px;
1632 - line-height: 1.6;
1633 - color: var(--e-a-color-txt-muted);
1634 -}
1635 -
1636 -.elementor-panel-heading.elementor-panel-category-title .elementor-panel-custom-widgets__cta--heading {
1637 - margin-inline-start: auto;
1638 - padding: 4px 10px;
1639 - border: none;
1640 - background: none;
1641 - color: #C00BB9;
1642 - font-size: 12px;
1643 - font-weight: 500;
1644 - cursor: pointer;
1645 - font-family: var(--e-a-font-family);
1646 - flex-shrink: 0;
1647 -}
1648 -.elementor-panel-heading.elementor-panel-category-title .elementor-panel-custom-widgets__cta--heading:hover {
1649 - opacity: 0.8;
1650 -}
1651 -
1652 1241 #elementor-panel-inner {
1653 1242 position: relative;
1654 1243 height: 100%;
1655 1244 display: flex;
@@ -1675,54 +1264,18 @@
1675 1264 #elementor-panel-get-pro-elements .elementor-nerd-box-icon {
1676 1265 margin-block-start: 20px;
1677 1266 }
1678 1267
1679 -#elementor-panel-content-wrapper:has(> #elementor-panel-page-editor) {
1680 - display: flex;
1681 - flex-direction: column;
1682 -}
1683 -#elementor-panel-content-wrapper:has(> #elementor-panel-page-editor) #elementor-panel-page-editor {
1684 - display: flex;
1685 - flex-direction: column;
1686 - flex: 1;
1687 - min-height: 0;
1688 -}
1689 -#elementor-panel-content-wrapper:has(> #elementor-panel-page-editor) .elementor-panel-editor-sticky-promotion {
1690 - position: sticky;
1691 - inset-block-end: 0;
1692 - margin-block-start: auto;
1693 -}
1694 -#elementor-panel-content-wrapper:has(> #elementor-panel-page-editor) .elementor-panel-editor-sticky-promotion .elementor-get-pro-sticky-message {
1695 - margin-block-start: 0;
1696 -}
1697 -
1698 1268 #elementor-panel-get-pro-elements-sticky {
1699 1269 position: sticky;
1700 - inset-block-end: 0;
1701 - margin-block-end: -10px;
1702 -}
1703 -#elementor-panel-get-pro-elements-sticky .elementor-get-pro-sticky-message {
1704 - margin-block-start: -14px;
1705 -}
1706 -
1707 -#elementor-panel-page-elements:has(> #elementor-panel-get-pro-elements-sticky) {
1708 - display: flex;
1709 - flex-direction: column;
1710 - min-height: 100%;
1711 -}
1712 -#elementor-panel-page-elements:has(> #elementor-panel-get-pro-elements-sticky) > #elementor-panel-get-pro-elements-sticky {
1713 - margin-block-start: auto;
1714 -}
1715 -
1716 -#elementor-panel-get-pro-elements-sticky,
1717 -.elementor-panel-editor-sticky-promotion {
1270 + bottom: 0;
1718 1271 font-size: 14px;
1719 1272 font-weight: 400;
1720 1273 line-height: 1.6;
1721 - background-color: var(--e-a-color-white);
1274 + margin-block-end: -10px;
1722 1275 }
1723 -#elementor-panel-get-pro-elements-sticky .elementor-get-pro-sticky-message,
1724 -.elementor-panel-editor-sticky-promotion .elementor-get-pro-sticky-message {
1276 +#elementor-panel-get-pro-elements-sticky .elementor-get-pro-sticky-message {
1277 + margin-top: -14px;
1725 1278 min-height: 40px;
1726 1279 display: block;
1727 1280 padding: 9px min(35px, 5%);
1728 1281 gap: 10px;
@@ -1730,18 +1283,16 @@
1730 1283 color: var(--e-a-color-black);
1731 1284 text-align: center;
1732 1285 box-shadow: 0px -10px 14px -6px rgba(0, 0, 0, 0.05);
1733 1286 }
1734 -#elementor-panel-get-pro-elements-sticky .elementor-get-pro-sticky-message a,
1735 -.elementor-panel-editor-sticky-promotion .elementor-get-pro-sticky-message a {
1287 +#elementor-panel-get-pro-elements-sticky .elementor-get-pro-sticky-message a {
1736 1288 display: inline-block;
1737 1289 font-size: 13px;
1738 1290 font-weight: 500;
1739 1291 color: var(--e-a-btn-bg-accent);
1740 1292 }
1741 -#elementor-panel-get-pro-elements-sticky img,
1742 -.elementor-panel-editor-sticky-promotion img {
1743 - margin-inline-start: 17px;
1293 +#elementor-panel-get-pro-elements-sticky img {
1294 + margin-left: 17px;
1744 1295 }
1745 1296
1746 1297 #elementor-panel-notice-wrapper .elementor-panel-notice {
1747 1298 width: 90%;
@@ -1768,10 +1319,10 @@
1768 1319 background: var(--e-a-color-primary);
1769 1320 border-radius: 50%;
1770 1321 width: 8px;
1771 1322 height: 8px;
1772 - inset-block-start: 5px;
1773 - inset-inline-end: 5px;
1323 + top: 5px;
1324 + right: 5px;
1774 1325 }
1775 1326
1776 1327 .media-modal.wp-core-ui {
1777 1328 color-scheme: light;
@@ -1819,9 +1370,8 @@
1819 1370 .elementor-control.elementor-control-type-divider {
1820 1371 padding: 0;
1821 1372 }
1822 1373 .elementor-control.elementor-control-type-divider .elementor-control-content {
1823 - margin-inline: 20px;
1824 1374 border-width: 0;
1825 1375 border-block-start: var(--e-a-border);
1826 1376 background-color: var(--e-a-bg-default);
1827 1377 height: 15px;
@@ -1831,20 +1381,21 @@
1831 1381 }
1832 1382 .elementor-control.elementor-control-separator-before:before {
1833 1383 content: "";
1834 1384 position: absolute;
1835 - inset: 0 20px auto;
1836 1385 height: 1px;
1386 + width: calc(100% - 40px);
1387 + top: 0;
1388 + right: 20px;
1837 1389 background-color: var(--e-a-border-color);
1838 1390 }
1839 -.elementor-control.elementor-control-separator-after {
1840 - padding-block-end: 15px;
1841 -}
1842 1391 .elementor-control.elementor-control-separator-after:after {
1843 1392 content: "";
1844 1393 position: absolute;
1845 - inset: auto 20px 0;
1846 1394 height: 1px;
1395 + width: calc(100% - 40px);
1396 + bottom: 0;
1397 + right: 20px;
1847 1398 background-color: var(--e-a-border-color);
1848 1399 }
1849 1400 .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 {
1850 1401 padding-block-start: 15px;
@@ -1885,36 +1436,23 @@
1885 1436 }
1886 1437 body:not(.elementor-device-mobile) .elementor-control.elementor-control-responsive-mobile {
1887 1438 display: none;
1888 1439 }
1889 -.elementor-control-shape_divider_top .elementor-visual-choice-element-image label, .elementor-control-shape_divider_bottom .elementor-visual-choice-element-image label {
1890 - padding: 4px;
1891 -}
1892 -.elementor-control-shape_divider_top img, .elementor-control-shape_divider_bottom img {
1893 - aspect-ratio: 4/1;
1894 - -o-object-fit: cover;
1895 - object-fit: cover;
1896 - -o-object-position: center;
1897 - object-position: center;
1898 -}
1899 -.elementor-control-shape_divider_bottom img {
1900 - rotate: X 180deg;
1901 -}
1902 1440 .elementor-control-custom_css_pro .elementor-nerd-box-message, .elementor-control-custom_attributes_pro .elementor-nerd-box-message {
1903 1441 margin-block-start: 5px;
1904 1442 }
1905 1443
1906 -.elementor-control.e-open .elementor-panel-heading-toggle i, .elementor-control.elementor-active .elementor-panel-heading-toggle i,
1907 -.elementor-panel-category.e-open .elementor-panel-heading-toggle i,
1908 -.elementor-panel-category.elementor-active .elementor-panel-heading-toggle i,
1909 -.elementor-panel-scheme-item.e-open .elementor-panel-heading-toggle i,
1910 -.elementor-panel-scheme-item.elementor-active .elementor-panel-heading-toggle i {
1911 - transform: rotate(90deg);
1444 +.elementor-control.e-open .elementor-panel-heading-toggle .eicon:before, .elementor-control.elementor-active .elementor-panel-heading-toggle .eicon:before,
1445 +.elementor-panel-category.e-open .elementor-panel-heading-toggle .eicon:before,
1446 +.elementor-panel-category.elementor-active .elementor-panel-heading-toggle .eicon:before,
1447 +.elementor-panel-scheme-item.e-open .elementor-panel-heading-toggle .eicon:before,
1448 +.elementor-panel-scheme-item.elementor-active .elementor-panel-heading-toggle .eicon:before {
1449 + content: "\e92a";
1912 1450 }
1913 -.elementor-control:not(.e-open):not(.elementor-active) .elementor-panel-heading-toggle i,
1914 -.elementor-panel-category:not(.e-open):not(.elementor-active) .elementor-panel-heading-toggle i,
1915 -.elementor-panel-scheme-item:not(.e-open):not(.elementor-active) .elementor-panel-heading-toggle i {
1916 - scale: calc(1 * var(--direction-multiplier)) 1;
1451 +.elementor-control:not(.e-open):not(.elementor-active) .elementor-panel-heading-toggle .eicon:before,
1452 +.elementor-panel-category:not(.e-open):not(.elementor-active) .elementor-panel-heading-toggle .eicon:before,
1453 +.elementor-panel-scheme-item:not(.e-open):not(.elementor-active) .elementor-panel-heading-toggle .eicon:before {
1454 + content: "\e909";
1917 1455 }
1918 1456
1919 1457 .elementor-panel-heading {
1920 1458 display: flex;
@@ -1938,17 +1476,8 @@
1938 1476 }
1939 1477 .elementor-panel-heading-title {
1940 1478 font-weight: bold;
1941 1479 }
1942 -.elementor-panel-heading-category-chip {
1943 - margin-inline-start: auto;
1944 - background-color: var(--e-a-bg-chip);
1945 - border-radius: 100px;
1946 - padding: 5px 8px;
1947 -}
1948 -.elementor-panel-heading-category-chip i {
1949 - margin-inline-start: 4px;
1950 -}
1951 1480 .elementor-panel-heading-promotion {
1952 1481 margin-inline-start: auto;
1953 1482 }
1954 1483 .elementor-panel-heading-promotion a {
@@ -1967,11 +1496,9 @@
1967 1496 .elementor-panel-heading:focus-visible {
1968 1497 color: var(--e-a-color-txt-hover);
1969 1498 }
1970 1499
1971 -#elementor-controls .elementor-control-type-section:first-child .elementor-panel-heading,
1972 -#elementor-panel-page-settings-controls .elementor-control-type-section:first-child .elementor-panel-heading,
1973 -#elementor-panel-editorPreferences-settings-controls .elementor-control-type-section:first-child .elementor-panel-heading {
1500 +#elementor-controls .elementor-control-type-section:first-child .elementor-panel-heading {
1974 1501 border-block-start: none;
1975 1502 }
1976 1503
1977 1504 .elementor-control-field {
@@ -2016,13 +1543,11 @@
2016 1543 .elementor-group-control-attachment_alert .elementor-control-field-description {
2017 1544 margin-block-start: 0;
2018 1545 }
2019 1546
2020 -.elementor-control-start-end .eicon-text-align-left,
2021 -.elementor-control-start-end .eicon-text-align-right,
2022 1547 .elementor-control-start-end .eicon-h-align-left,
2023 1548 .elementor-control-start-end .eicon-h-align-right {
2024 - scale: calc(1 * var(--direction-multiplier)) 1;
1549 + transform: rotate(180deg);
2025 1550 }
2026 1551
2027 1552 .elementor-update-preview {
2028 1553 margin: 15px 15px 0;
@@ -2059,9 +1584,9 @@
2059 1584 }
2060 1585 .elementor-control-responsive-switchers__holder {
2061 1586 position: absolute;
2062 1587 width: 100%;
2063 - inset-block-start: 0;
1588 + top: 0;
2064 1589 background-color: var(--e-a-bg-default);
2065 1590 border-radius: var(--e-a-border-radius);
2066 1591 transition: 0.15s;
2067 1592 border: 1px solid transparent;
@@ -2204,10 +1729,10 @@
2204 1729 display: none;
2205 1730 overflow: hidden;
2206 1731 max-height: 0;
2207 1732 position: absolute;
2208 - inset-block-start: -0.8em;
2209 - inset-inline-start: -0.5em;
1733 + top: -0.8em;
1734 + right: -0.5em;
2210 1735 width: 2.5em;
2211 1736 text-align: center;
2212 1737 background-color: var(--e-a-bg-default);
2213 1738 border-radius: var(--e-a-border-radius);
@@ -2382,9 +1907,9 @@
2382 1907 }
2383 1908 .elementor-control-responsive-switchers__holder {
2384 1909 position: absolute;
2385 1910 width: 100%;
2386 - inset-block-start: 0;
1911 + top: 0;
2387 1912 background-color: var(--e-a-bg-default);
2388 1913 border-radius: var(--e-a-border-radius);
2389 1914 transition: 0.15s;
2390 1915 border: 1px solid transparent;
@@ -2527,10 +2052,10 @@
2527 2052 display: none;
2528 2053 overflow: hidden;
2529 2054 max-height: 0;
2530 2055 position: absolute;
2531 - inset-block-start: -0.8em;
2532 - inset-inline-start: -0.5em;
2056 + top: -0.8em;
2057 + right: -0.5em;
2533 2058 width: 2.5em;
2534 2059 text-align: center;
2535 2060 background-color: var(--e-a-bg-default);
2536 2061 border-radius: var(--e-a-border-radius);
@@ -2660,9 +2185,9 @@
2660 2185 }
2661 2186 .elementor-control-responsive-switchers__holder {
2662 2187 position: absolute;
2663 2188 width: 100%;
2664 - inset-block-start: 0;
2189 + top: 0;
2665 2190 background-color: var(--e-a-bg-default);
2666 2191 border-radius: var(--e-a-border-radius);
2667 2192 transition: 0.15s;
2668 2193 border: 1px solid transparent;
@@ -2805,10 +2330,10 @@
2805 2330 display: none;
2806 2331 overflow: hidden;
2807 2332 max-height: 0;
2808 2333 position: absolute;
2809 - inset-block-start: -0.8em;
2810 - inset-inline-start: -0.5em;
2334 + top: -0.8em;
2335 + right: -0.5em;
2811 2336 width: 2.5em;
2812 2337 text-align: center;
2813 2338 background-color: var(--e-a-bg-default);
2814 2339 border-radius: var(--e-a-border-radius);
@@ -2928,11 +2453,11 @@
2928 2453 }
2929 2454
2930 2455 .elementor-control-type-icons .elementor-control-media__preview > * {
2931 2456 position: absolute;
2932 - inset-block-start: 50%;
2933 - inset-inline-start: 50%;
2934 - transform: translate(calc(-50% * var(--direction-multiplier)), -50%);
2457 + top: 50%;
2458 + left: 50%;
2459 + transform: translate(-50%, -50%);
2935 2460 }
2936 2461 .elementor-control-type-icons .elementor-control-media__preview i {
2937 2462 font-size: 70px;
2938 2463 }
@@ -2987,9 +2512,12 @@
2987 2512 opacity: 0.6;
2988 2513 }
2989 2514 .elementor-control-type-gallery .elementor-control-gallery-edit {
2990 2515 position: absolute;
2991 - inset: 0;
2516 + top: 0;
2517 + bottom: 0;
2518 + left: 0;
2519 + right: 0;
2992 2520 background-color: rgba(0, 0, 0, 0.2);
2993 2521 padding: 10px;
2994 2522 font-size: 11px;
2995 2523 transition: all 0.3s ease-in-out;
@@ -2998,10 +2526,10 @@
2998 2526 opacity: 0;
2999 2527 }
3000 2528 .elementor-control-type-gallery .elementor-control-gallery-edit span {
3001 2529 position: absolute;
3002 - inset-block-start: 10px;
3003 - inset-inline-end: 10px;
2530 + top: 10px;
2531 + left: 10px;
3004 2532 width: 21px;
3005 2533 height: 21px;
3006 2534 color: var(--e-a-color-white);
3007 2535 background-color: rgba(0, 0, 0, 0.5);
@@ -3111,10 +2639,10 @@
3111 2639 }
3112 2640 .e-global__popover-info-tooltip:after {
3113 2641 content: "";
3114 2642 position: absolute;
3115 - inset-block-end: -17px;
3116 - inset-inline-start: 16px;
2643 + bottom: -17px;
2644 + right: 16px;
3117 2645 border: 10px solid transparent;
3118 2646 border-block-start-color: rgba(0, 0, 0, 0.9);
3119 2647 }
3120 2648 .e-global__popover-info i {
@@ -3131,19 +2659,8 @@
3131 2659 .e-global__preview-items-container::-webkit-scrollbar-thumb {
3132 2660 background-color: #BABFC5;
3133 2661 border-radius: 10px;
3134 2662 }
3135 -.e-global__group-header {
3136 - padding: 12px 20px 5px;
3137 - font-weight: 500;
3138 - font-size: 11px;
3139 - color: var(--e-a-color-txt-muted);
3140 -}
3141 -.e-global__group-divider {
3142 - height: 1px;
3143 - background-color: var(--e-a-border-color);
3144 - margin: 10px 20px;
3145 -}
3146 2663 .e-global__manage-button {
3147 2664 font-weight: 500;
3148 2665 cursor: pointer;
3149 2666 }
@@ -3159,9 +2676,9 @@
3159 2676 font-size: 13px;
3160 2677 content: "\e90e";
3161 2678 position: absolute;
3162 2679 transform: translateY(-50%);
3163 - inset-block-start: 50%;
2680 + top: 50%;
3164 2681 inset-inline-start: 13px;
3165 2682 }
3166 2683 .e-global__color {
3167 2684 padding: 10px 20px;
@@ -3178,10 +2695,13 @@
3178 2695 position: relative;
3179 2696 }
3180 2697 .e-global__color-preview-color, .e-global__color-preview-transparent-bg {
3181 2698 border-radius: 3px;
2699 + height: 100%;
2700 + width: 100%;
3182 2701 position: absolute;
3183 - inset: 0;
2702 + top: 0;
2703 + left: 0;
3184 2704 }
3185 2705 .e-global__color-preview-transparent-bg {
3186 2706 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));
3187 2707 background-size: 12px 12px;
@@ -3302,11 +2822,11 @@
3302 2822 display: none;
3303 2823 }
3304 2824 .elementor-control-media .eicon-plus-circle {
3305 2825 position: absolute;
3306 - inset-block-start: 50%;
3307 - inset-inline-start: 50%;
3308 - transform: translate(calc(-50% * var(--direction-multiplier)), -50%);
2826 + top: 50%;
2827 + left: 50%;
2828 + transform: translate(-50%, -50%);
3309 2829 color: var(--e-a-color-white);
3310 2830 font-size: 20px;
3311 2831 }
3312 2832 .elementor-control-media__content__upload-button {
@@ -3315,8 +2835,9 @@
3315 2835 .elementor-control-media__preview {
3316 2836 height: 100%;
3317 2837 background-size: cover;
3318 2838 background-position: center;
2839 + padding-block-end: 42.8571%;
3319 2840 }
3320 2841 .elementor-control-media-area {
3321 2842 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));
3322 2843 background-size: 16px 16px;
@@ -3329,11 +2850,11 @@
3329 2850 display: none;
3330 2851 }
3331 2852 .elementor-control-media-area .eicon-video-camera {
3332 2853 position: absolute;
3333 - inset-block-start: 50%;
3334 - inset-inline-start: 50%;
3335 - transform: translate(calc(-50% * var(--direction-multiplier)), -50%);
2854 + top: 50%;
2855 + left: 50%;
2856 + transform: translate(-50%, -50%);
3336 2857 color: rgba(255, 255, 255, 0.7);
3337 2858 font-size: 21px;
3338 2859 }
3339 2860 .elementor-control-media .elementor-control-media__content {
@@ -3344,14 +2865,17 @@
3344 2865 }
3345 2866 .elementor-control-media .elementor-control-media__content:hover:after {
3346 2867 content: "";
3347 2868 position: absolute;
3348 - inset: 0;
2869 + top: 0;
2870 + bottom: 0;
2871 + left: 0;
2872 + right: 0;
3349 2873 background-color: rgba(0, 0, 0, 0.2);
3350 2874 pointer-events: none;
3351 2875 }
3352 2876 .elementor-control-media .elementor-control-media__content:not(:hover) .elementor-control-media__tools {
3353 - inset-block-end: -30px;
2877 + bottom: -30px;
3354 2878 }
3355 2879 .elementor-control-media__content {
3356 2880 transition: all 0.2s ease-in-out;
3357 2881 }
@@ -3356,10 +2880,11 @@
3356 2880 transition: all 0.2s ease-in-out;
3357 2881 }
3358 2882 .elementor-control-media__tools {
3359 2883 position: absolute;
3360 - inset-block-end: 0;
3361 - inset-inline: 0;
2884 + bottom: 0;
2885 + left: 0;
2886 + right: 0;
3362 2887 height: 27px;
3363 2888 transition: all 0.2s ease-in-out;
3364 2889 }
3365 2890 .elementor-control-media__tools > *:not(:first-child) {
@@ -3386,10 +2911,10 @@
3386 2911 }
3387 2912 .elementor-control-media__content__remove {
3388 2913 position: absolute;
3389 2914 z-index: 1;
3390 - inset-block-start: 10px;
3391 - inset-inline-end: 10px;
2915 + top: 10px;
2916 + left: 10px;
3392 2917 width: 20px;
3393 2918 height: 20px;
3394 2919 font-size: 11px;
3395 2920 color: var(--e-a-color-white);
@@ -3681,11 +3206,9 @@
3681 3206 text-align: center;
3682 3207 padding-block-start: 5px;
3683 3208 }
3684 3209
3685 -#elementor-controls,
3686 -#elementor-panel-page-settings-controls,
3687 -#elementor-panel-editorPreferences-settings-controls {
3210 +#elementor-controls {
3688 3211 padding-block-start: 15px;
3689 3212 }
3690 3213
3691 3214 .elementor-control-type-section {
@@ -3730,11 +3253,11 @@
3730 3253 font-family: eicons;
3731 3254 content: "\e8ad";
3732 3255 font-size: 12px;
3733 3256 position: absolute;
3734 - inset-block-start: 50%;
3735 - inset-inline-end: 5px;
3257 + top: 50%;
3736 3258 transform: translateY(-50%);
3259 + left: 5px;
3737 3260 pointer-events: none;
3738 3261 }
3739 3262 .elementor-control-type-select .elementor-control-field.elementor-control-field-select-small .elementor-control-input-wrapper {
3740 3263 max-width: 80px;
@@ -3768,14 +3291,14 @@
3768 3291 }
3769 3292 .elementor-control-type-slider--handles-range .elementor-slider .noUi-handle {
3770 3293 border-radius: 0;
3771 3294 width: 10px;
3772 - transform: translateY(calc(50% - 14px)) translateX(calc(4px * var(--direction-multiplier)));
3295 + transform: translateY(calc(50% - 14px)) translateX(-4px);
3773 3296 }
3774 3297 .elementor-control-type-slider--handles-range .elementor-slider .noUi-handle:after {
3775 3298 content: "";
3776 3299 position: absolute;
3777 - inset-block-start: 2px;
3300 + top: 2px;
3778 3301 height: 12px;
3779 3302 width: 11px;
3780 3303 transform: rotate(45deg);
3781 3304 background-color: var(--e-a-color-white);
@@ -3852,11 +3375,11 @@
3852 3375 .elementor-slider .noUi-handle {
3853 3376 height: 16px;
3854 3377 width: 16px;
3855 3378 background-color: var(--e-a-color-white);
3379 + left: 0;
3380 + transform: translateY(calc(50% - 14px)) translateX(-8px);
3856 3381 position: absolute;
3857 - inset-inline-end: 0;
3858 - transform: translateY(calc(50% - 14px)) translateX(calc(8px * var(--direction-multiplier)));
3859 3382 box-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
3860 3383 border-radius: 50%;
3861 3384 }
3862 3385 .elementor-slider .noUi-connects {
@@ -3866,9 +3389,12 @@
3866 3389 }
3867 3390 .elementor-slider .noUi-connect {
3868 3391 position: absolute;
3869 3392 z-index: 0;
3870 - inset: 0;
3393 + top: 0;
3394 + left: 0;
3395 + height: 100%;
3396 + width: 100%;
3871 3397 will-change: transform;
3872 3398 transform-origin: 0 0;
3873 3399 background-color: var(--e-a-border-color-focus);
3874 3400 }
@@ -3873,9 +3399,9 @@
3873 3399 background-color: var(--e-a-border-color-focus);
3874 3400 }
3875 3401 .elementor-slider .noUi-tooltip {
3876 3402 position: absolute;
3877 - inset-block-start: calc(100% + 5px);
3403 + top: calc(100% + 5px);
3878 3404 left: calc(50% - 4px);
3879 3405 transform: translateX(-50%);
3880 3406 font-size: 10px;
3881 3407 }
@@ -3962,9 +3488,9 @@
3962 3488 transition-property: opacity, background;
3963 3489 }
3964 3490 .elementor-control-type-switcher .elementor-switch-label:before, .elementor-control-type-switcher .elementor-switch-label:after {
3965 3491 position: absolute;
3966 - inset-block-start: 0;
3492 + top: 0;
3967 3493 width: 50%;
3968 3494 text-align: center;
3969 3495 line-height: 20px;
3970 3496 transition: inherit;
@@ -3970,14 +3496,14 @@
3970 3496 transition: inherit;
3971 3497 }
3972 3498 .elementor-control-type-switcher .elementor-switch-label:before {
3973 3499 content: attr(data-off);
3974 - inset-inline-end: 5px;
3500 + right: 5px;
3975 3501 color: var(--e-a-color-txt-muted);
3976 3502 }
3977 3503 .elementor-control-type-switcher .elementor-switch-label:after {
3978 3504 content: attr(data-on);
3979 - inset-inline-start: 5px;
3505 + left: 5px;
3980 3506 color: var(--e-a-btn-color);
3981 3507 opacity: 0;
3982 3508 }
3983 3509 .elementor-control-type-switcher .elementor-switch-input:checked ~ .elementor-switch-label {
@@ -3990,28 +3516,25 @@
3990 3516 opacity: 1;
3991 3517 }
3992 3518 .elementor-control-type-switcher .elementor-switch-handle {
3993 3519 position: absolute;
3994 - inset-block-start: 1px;
3995 - inset-inline-start: 1px;
3520 + top: 1px;
3521 + left: 1px;
3996 3522 width: 18px;
3997 3523 height: 18px;
3998 3524 background: white;
3999 3525 border-radius: 10px;
4000 - transition: inset-inline-start 0.15s ease-out;
3526 + transition: left 0.15s ease-out;
4001 3527 }
4002 3528 .elementor-control-type-switcher .elementor-switch-input:checked ~ .elementor-switch-handle {
4003 - inset-inline-start: initial;
4004 - inset-inline-end: 1px;
3529 + left: initial;
3530 + right: 1px;
4005 3531 }
4006 3532
4007 3533 .elementor-control-type-tabs {
4008 - display: none;
3534 + display: flex;
4009 3535 font-size: var(--control-title-size);
4010 3536 }
4011 -.elementor-control-type-tabs:has(> :not(.elementor-control-type-tab.elementor-hidden-control)) {
4012 - display: flex;
4013 -}
4014 3537
4015 3538 .elementor-control-type-tab {
4016 3539 text-align: center;
4017 3540 width: 100%;
@@ -4054,10 +3577,10 @@
4054 3577 }
4055 3578 .elementor-control-type-textarea:not(.elementor-control-dynamic-value) .elementor-control-dynamic-switcher,
4056 3579 .elementor-control-type-code:not(.elementor-control-dynamic-value) .elementor-control-dynamic-switcher {
4057 3580 position: absolute;
4058 - inset-block-start: 0;
4059 - inset-inline-end: 0;
3581 + top: 0;
3582 + left: 0;
4060 3583 z-index: 1;
4061 3584 }
4062 3585 .elementor-control-type-textarea .elementor-control-input-wrapper,
4063 3586 .elementor-control-type-code .elementor-control-input-wrapper {
@@ -4135,10 +3658,10 @@
4135 3658 }
4136 3659 .elementor-control-type-url .elementor-control-url-autocomplete-spinner {
4137 3660 display: none;
4138 3661 position: absolute;
4139 - inset-block-start: 5px;
4140 - inset-inline-end: 0;
3662 + top: 5px;
3663 + right: 0;
4141 3664 width: 10px;
4142 3665 height: 10px;
4143 3666 font-size: 10px;
4144 3667 color: var(--e-a-color-txt-disabled);
@@ -4189,76 +3712,8 @@
4189 3712 font-size: 10px;
4190 3713 padding-block-start: 2px;
4191 3714 }
4192 3715
4193 -.elementor-control-type-visual_choice {
4194 - width: 100%;
4195 -}
4196 -
4197 -.elementor-visual-choice-choices {
4198 - display: grid;
4199 - gap: 8px;
4200 - grid-template-columns: repeat(var(--elementor-visual-choice-columns), 1fr);
4201 - text-align: center;
4202 - border-radius: var(--e-a-border-radius);
4203 - overflow: hidden;
4204 -}
4205 -
4206 -.elementor-visual-choice-element {
4207 - display: flex;
4208 - flex-direction: column;
4209 - align-items: center;
4210 - justify-content: center;
4211 - gap: 8px;
4212 - width: auto;
4213 -}
4214 -.elementor-visual-choice-element-image label {
4215 - border: var(--e-a-border-bold);
4216 - border-radius: var(--e-a-border-radius);
4217 - font-size: 12px;
4218 - transition: var(--e-a-transition-hover);
4219 - cursor: pointer;
4220 - overflow: hidden;
4221 - width: 100%;
4222 - padding: 8px;
4223 -}
4224 -.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 {
4225 - background-color: var(--e-a-bg-active-bold);
4226 - opacity: 1;
4227 -}
4228 -.elementor-visual-choice-element-image input:checked + label {
4229 - border-color: var(--e-a-color-primary-bold);
4230 -}
4231 -.elementor-visual-choice-element-image input:not(:checked) + label {
4232 - background-color: var(--e-a-color-white);
4233 - opacity: 0.5;
4234 -}
4235 -.elementor-visual-choice-element-image img {
4236 - width: 100%;
4237 - height: auto;
4238 -}
4239 -.elementor-visual-choice-element-button {
4240 - grid-column: span var(--elementor-visual-choice-columns);
4241 -}
4242 -.elementor-visual-choice-element-button label {
4243 - width: -moz-fit-content;
4244 - width: fit-content;
4245 -}
4246 -.elementor-visual-choice-element-button input:checked + .elementor-button, .elementor-visual-choice-element-button input:hover + .elementor-button {
4247 - background-color: var(--e-a-bg-active-bold);
4248 -}
4249 -.elementor-visual-choice-element-button input:checked + .elementor-button {
4250 - border-color: var(--e-a-color-primary-bold);
4251 -}
4252 -
4253 -.elementor-label-inline .elementor-visual-choice-choices {
4254 - justify-content: flex-end;
4255 -}
4256 -
4257 -.tipsy-inner {
4258 - white-space: pre-line;
4259 -}
4260 -
4261 3716 .elementor-control-type-wp_widget .widget-inside {
4262 3717 line-height: 2;
4263 3718 background-color: inherit;
4264 3719 display: block;
@@ -4402,13 +3857,13 @@
4402 3857 --e-a-mode-switcher-width: 15px;
4403 3858 --e-a-mode-switcher-height: 50px;
4404 3859 --e-a-mode-switcher-icon-size: 15px;
4405 3860 position: absolute;
4406 - inset-block-start: 50%;
4407 - inset-inline-start: 100%;
3861 + right: 100%;
3862 + top: 50%;
4408 3863 transform: translateY(-50%);
4409 3864 background-color: var(--e-a-bg-default);
4410 - box-shadow: calc(3px * var(--direction-multiplier, 1)) 1px 3px rgba(0, 0, 0, 0.05);
3865 + box-shadow: -3px 1px 3px rgba(0, 0, 0, 0.05);
4411 3866 transition: 0.3s opacity;
4412 3867 }
4413 3868 #elementor-mode-switcher:hover {
4414 3869 background-color: var(--e-a-bg-hover);
@@ -4478,11 +3933,11 @@
4478 3933 }
4479 3934
4480 3935 #elementor-panel-revisions-loading {
4481 3936 position: absolute;
4482 - inset-block-start: 50%;
4483 - inset-inline-start: 50%;
4484 - transform: translate(calc(-50% * var(--direction-multiplier)), -50%);
3937 + top: 50%;
3938 + left: 50%;
3939 + transform: translate(-50%, -50%);
4485 3940 }
4486 3941 #elementor-panel-revisions-loading .eicon-loading {
4487 3942 font-size: 50px;
4488 3943 }
@@ -4566,10 +4021,10 @@
4566 4021 .e-control-display-conditions-promotion__wrapper {
4567 4022 display: flex;
4568 4023 justify-content: space-between;
4569 4024 }
4570 -.e-control-display-conditions-promotion__wrapper:hover .eicon-upgrade-crown-full.e-control-display-conditions-promotion {
4571 - color: var(--e-a-color-accent-promotion);
4025 +.e-control-display-conditions-promotion__wrapper:hover .eicon-lock.e-control-display-conditions-promotion {
4026 + color: var(--e-a-color-accent);
4572 4027 }
4573 4028 .e-control-display-conditions-promotion__description {
4574 4029 display: flex;
4575 4030 align-self: center;
@@ -4582,11 +4037,8 @@
4582 4037 display: flex;
4583 4038 justify-content: center;
4584 4039 align-items: center;
4585 4040 }
4586 -.e-control-display-conditions-promotion__lock-wrapper .eicon-upgrade-crown-full {
4587 - color: var(--e-a-color-accent-promotion-disabled);
4588 -}
4589 4041 .e-control-display-conditions-promotion.eicon-flow {
4590 4042 align-self: flex-end;
4591 4043 cursor: pointer;
4592 4044 border: var(--e-a-border-bold);
@@ -4597,15 +4049,12 @@
4597 4049 background-color: var(--e-a-bg-active);
4598 4050 color: #E73CF6;
4599 4051 }
4600 4052
4601 -.e-control-motion-effects-promotion__wrapper:hover .eicon-upgrade-crown-full, .e-control-promotion__wrapper:hover .eicon-upgrade-crown-full {
4602 - color: var(--e-a-color-accent-promotion);
4053 +.e-control-motion-effects-promotion__wrapper:hover .eicon-lock {
4054 + color: var(--e-a-color-accent);
4603 4055 }
4604 -.e-control-motion-effects-promotion__wrapper .elementor-control-title, .e-control-promotion__wrapper .elementor-control-title {
4605 - margin-inline-end: 0;
4606 -}
4607 -.e-control-motion-effects-promotion__wrapper .select-promotion, .e-control-promotion__wrapper .select-promotion {
4056 +.e-control-motion-effects-promotion__wrapper .select-promotion {
4608 4057 display: flex;
4609 4058 flex-direction: column;
4610 4059 justify-content: center;
4611 4060 padding-inline-start: 5px;
@@ -4619,17 +4068,14 @@
4619 4068 box-shadow: none;
4620 4069 border: var(--e-a-border-bold);
4621 4070 font-size: var(--control-title-size);
4622 4071 }
4623 -.e-control-motion-effects-promotion__lock-wrapper, .e-control-promotion__lock-wrapper {
4072 +.e-control-motion-effects-promotion__lock-wrapper {
4624 4073 width: 2.5rem;
4625 4074 display: flex;
4626 4075 justify-content: center;
4627 4076 align-items: center;
4628 4077 }
4629 -.e-control-motion-effects-promotion__lock-wrapper .eicon-upgrade-crown-full, .e-control-promotion__lock-wrapper .eicon-upgrade-crown-full {
4630 - color: var(--e-a-color-accent-promotion-disabled);
4631 -}
4632 4078
4633 4079 .e-link-promotion {
4634 4080 font-family: "Roboto", sans-serif;
4635 4081 font-weight: 500;
@@ -4716,13 +4162,13 @@
4716 4162 }
4717 4163 .elementor-control-type-global-style-repeater .elementor-controls-popover {
4718 4164 align-self: end;
4719 4165 margin-block-start: 35px;
4720 - inset-block-start: 0;
4166 + top: 0;
4721 4167 width: 100%;
4722 4168 }
4723 4169 .elementor-control-type-global-style-repeater .elementor-controls-popover:before {
4724 - inset-inline-end: 5px;
4170 + left: 5px;
4725 4171 }
4726 4172 .elementor-control-type-global-style-repeater .elementor-controls-popover .elementor-control {
4727 4173 padding: 0 20px 15px;
4728 4174 }
@@ -4832,33 +4278,21 @@
4832 4278 .elementor-button:not(.elementor-button-state) .elementor-state-icon,
4833 4279 .e-btn:not(.elementor-button-state) .elementor-state-icon {
4834 4280 display: none;
4835 4281 }
4836 -.elementor-button.e-btn-txt, .dialog-type-confirm .dialog-buttons-wrapper .elementor-button.dialog-button.dialog-cancel,
4837 -.dialog-type-alert .dialog-buttons-wrapper .elementor-button.dialog-button.dialog-cancel,
4838 -.e-btn.e-btn-txt,
4839 -.dialog-type-confirm .dialog-buttons-wrapper .e-btn.dialog-button.dialog-cancel,
4840 -.dialog-type-alert .dialog-buttons-wrapper .e-btn.dialog-button.dialog-cancel {
4282 +.elementor-button.e-btn-txt,
4283 +.e-btn.e-btn-txt {
4841 4284 background: transparent;
4842 4285 color: var(--e-a-color-txt);
4843 4286 }
4844 -.elementor-button.e-btn-txt:hover, .dialog-type-confirm .dialog-buttons-wrapper .elementor-button.dialog-button.dialog-cancel:hover,
4845 -.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,
4846 -.dialog-type-alert .dialog-buttons-wrapper .elementor-button.dialog-button.dialog-cancel:focus,
4287 +.elementor-button.e-btn-txt:hover, .elementor-button.e-btn-txt:focus,
4847 4288 .e-btn.e-btn-txt:hover,
4848 -.dialog-type-confirm .dialog-buttons-wrapper .e-btn.dialog-button.dialog-cancel:hover,
4849 -.dialog-type-alert .dialog-buttons-wrapper .e-btn.dialog-button.dialog-cancel:hover,
4850 -.e-btn.e-btn-txt:focus,
4851 -.dialog-type-confirm .dialog-buttons-wrapper .e-btn.dialog-button.dialog-cancel:focus,
4852 -.dialog-type-alert .dialog-buttons-wrapper .e-btn.dialog-button.dialog-cancel:focus {
4289 +.e-btn.e-btn-txt:focus {
4853 4290 background: var(--e-a-bg-hover);
4854 4291 color: var(--e-a-color-txt-hover);
4855 4292 }
4856 -.elementor-button.e-btn-txt:disabled, .dialog-type-confirm .dialog-buttons-wrapper .elementor-button.dialog-button.dialog-cancel:disabled,
4857 -.dialog-type-alert .dialog-buttons-wrapper .elementor-button.dialog-button.dialog-cancel:disabled,
4858 -.e-btn.e-btn-txt:disabled,
4859 -.dialog-type-confirm .dialog-buttons-wrapper .e-btn.dialog-button.dialog-cancel:disabled,
4860 -.dialog-type-alert .dialog-buttons-wrapper .e-btn.dialog-button.dialog-cancel:disabled {
4293 +.elementor-button.e-btn-txt:disabled,
4294 +.e-btn.e-btn-txt:disabled {
4861 4295 background: transparent;
4862 4296 color: var(--e-a-color-txt-disabled);
4863 4297 }
4864 4298 .elementor-button.e-btn-txt-border,
@@ -4876,90 +4310,27 @@
4876 4310 .e-btn.e-success:hover,
4877 4311 .e-btn.e-success:focus {
4878 4312 background-color: var(--e-a-btn-bg-success-hover);
4879 4313 }
4880 -.elementor-button.e-primary, .dialog-type-confirm .dialog-buttons-wrapper .elementor-button.dialog-button.dialog-ok,
4881 -.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,
4882 -.dialog-type-alert .dialog-buttons-wrapper .elementor-button.dialog-button.dialog-take_over,
4883 -.e-btn.e-primary,
4884 -.dialog-type-confirm .dialog-buttons-wrapper .e-btn.dialog-button.dialog-ok,
4885 -.dialog-type-alert .dialog-buttons-wrapper .e-btn.dialog-button.dialog-ok,
4886 -.dialog-type-confirm .dialog-buttons-wrapper .e-btn.dialog-button.dialog-take_over,
4887 -.dialog-type-alert .dialog-buttons-wrapper .e-btn.dialog-button.dialog-take_over {
4314 +.elementor-button.e-primary,
4315 +.e-btn.e-primary {
4888 4316 background-color: var(--e-a-btn-bg-primary);
4889 4317 color: var(--e-a-btn-color);
4890 4318 }
4891 -.elementor-button.e-primary:hover, .dialog-type-confirm .dialog-buttons-wrapper .elementor-button.dialog-button.dialog-ok:hover,
4892 -.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,
4893 -.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,
4894 -.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,
4895 -.dialog-type-alert .dialog-buttons-wrapper .elementor-button.dialog-button.dialog-take_over:focus,
4319 +.elementor-button.e-primary:hover, .elementor-button.e-primary:focus,
4896 4320 .e-btn.e-primary:hover,
4897 -.dialog-type-confirm .dialog-buttons-wrapper .e-btn.dialog-button.dialog-ok:hover,
4898 -.dialog-type-alert .dialog-buttons-wrapper .e-btn.dialog-button.dialog-ok:hover,
4899 -.dialog-type-confirm .dialog-buttons-wrapper .e-btn.dialog-button.dialog-take_over:hover,
4900 -.dialog-type-alert .dialog-buttons-wrapper .e-btn.dialog-button.dialog-take_over:hover,
4901 -.e-btn.e-primary:focus,
4902 -.dialog-type-confirm .dialog-buttons-wrapper .e-btn.dialog-button.dialog-ok:focus,
4903 -.dialog-type-alert .dialog-buttons-wrapper .e-btn.dialog-button.dialog-ok:focus,
4904 -.dialog-type-confirm .dialog-buttons-wrapper .e-btn.dialog-button.dialog-take_over:focus,
4905 -.dialog-type-alert .dialog-buttons-wrapper .e-btn.dialog-button.dialog-take_over:focus {
4321 +.e-btn.e-primary:focus {
4906 4322 background-color: var(--e-a-btn-bg-primary-hover);
4907 4323 color: var(--e-a-btn-color);
4908 4324 }
4909 -.elementor-button.e-primary.e-btn-txt, .dialog-type-confirm .dialog-buttons-wrapper .elementor-button.e-btn-txt.dialog-button.dialog-ok,
4910 -.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,
4911 -.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,
4912 -.dialog-type-alert .dialog-buttons-wrapper .elementor-button.e-primary.dialog-button.dialog-cancel,
4913 -.dialog-type-alert .dialog-buttons-wrapper .elementor-button.dialog-button.dialog-ok.dialog-cancel,
4914 -.dialog-type-alert .dialog-buttons-wrapper .elementor-button.dialog-button.dialog-take_over.dialog-cancel,
4915 -.e-btn.e-primary.e-btn-txt,
4916 -.dialog-type-confirm .dialog-buttons-wrapper .e-btn.e-btn-txt.dialog-button.dialog-ok,
4917 -.dialog-type-alert .dialog-buttons-wrapper .e-btn.e-btn-txt.dialog-button.dialog-ok,
4918 -.dialog-type-confirm .dialog-buttons-wrapper .e-btn.e-btn-txt.dialog-button.dialog-take_over,
4919 -.dialog-type-alert .dialog-buttons-wrapper .e-btn.e-btn-txt.dialog-button.dialog-take_over,
4920 -.dialog-type-confirm .dialog-buttons-wrapper .e-btn.e-primary.dialog-button.dialog-cancel,
4921 -.dialog-type-confirm .dialog-buttons-wrapper .e-btn.dialog-button.dialog-ok.dialog-cancel,
4922 -.dialog-type-confirm .dialog-buttons-wrapper .e-btn.dialog-button.dialog-take_over.dialog-cancel,
4923 -.dialog-type-alert .dialog-buttons-wrapper .e-btn.e-primary.dialog-button.dialog-cancel,
4924 -.dialog-type-alert .dialog-buttons-wrapper .e-btn.dialog-button.dialog-ok.dialog-cancel,
4925 -.dialog-type-alert .dialog-buttons-wrapper .e-btn.dialog-button.dialog-take_over.dialog-cancel {
4325 +.elementor-button.e-primary.e-btn-txt,
4326 +.e-btn.e-primary.e-btn-txt {
4926 4327 background: transparent;
4927 4328 color: var(--e-a-color-primary-bold);
4928 4329 }
4929 -.elementor-button.e-primary.e-btn-txt:hover, .dialog-type-confirm .dialog-buttons-wrapper .elementor-button.e-btn-txt.dialog-button.dialog-ok:hover,
4930 -.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,
4931 -.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,
4932 -.dialog-type-alert .dialog-buttons-wrapper .elementor-button.e-primary.dialog-button.dialog-cancel:hover,
4933 -.dialog-type-alert .dialog-buttons-wrapper .elementor-button.dialog-button.dialog-ok.dialog-cancel:hover,
4934 -.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,
4935 -.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,
4936 -.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,
4937 -.dialog-type-alert .dialog-buttons-wrapper .elementor-button.e-primary.dialog-button.dialog-cancel:focus,
4938 -.dialog-type-alert .dialog-buttons-wrapper .elementor-button.dialog-button.dialog-ok.dialog-cancel:focus,
4939 -.dialog-type-alert .dialog-buttons-wrapper .elementor-button.dialog-button.dialog-take_over.dialog-cancel:focus,
4330 +.elementor-button.e-primary.e-btn-txt:hover, .elementor-button.e-primary.e-btn-txt:focus,
4940 4331 .e-btn.e-primary.e-btn-txt:hover,
4941 -.dialog-type-confirm .dialog-buttons-wrapper .e-btn.e-btn-txt.dialog-button.dialog-ok:hover,
4942 -.dialog-type-alert .dialog-buttons-wrapper .e-btn.e-btn-txt.dialog-button.dialog-ok:hover,
4943 -.dialog-type-confirm .dialog-buttons-wrapper .e-btn.e-btn-txt.dialog-button.dialog-take_over:hover,
4944 -.dialog-type-alert .dialog-buttons-wrapper .e-btn.e-btn-txt.dialog-button.dialog-take_over:hover,
4945 -.dialog-type-confirm .dialog-buttons-wrapper .e-btn.e-primary.dialog-button.dialog-cancel:hover,
4946 -.dialog-type-confirm .dialog-buttons-wrapper .e-btn.dialog-button.dialog-ok.dialog-cancel:hover,
4947 -.dialog-type-confirm .dialog-buttons-wrapper .e-btn.dialog-button.dialog-take_over.dialog-cancel:hover,
4948 -.dialog-type-alert .dialog-buttons-wrapper .e-btn.e-primary.dialog-button.dialog-cancel:hover,
4949 -.dialog-type-alert .dialog-buttons-wrapper .e-btn.dialog-button.dialog-ok.dialog-cancel:hover,
4950 -.dialog-type-alert .dialog-buttons-wrapper .e-btn.dialog-button.dialog-take_over.dialog-cancel:hover,
4951 -.e-btn.e-primary.e-btn-txt:focus,
4952 -.dialog-type-confirm .dialog-buttons-wrapper .e-btn.e-btn-txt.dialog-button.dialog-ok:focus,
4953 -.dialog-type-alert .dialog-buttons-wrapper .e-btn.e-btn-txt.dialog-button.dialog-ok:focus,
4954 -.dialog-type-confirm .dialog-buttons-wrapper .e-btn.e-btn-txt.dialog-button.dialog-take_over:focus,
4955 -.dialog-type-alert .dialog-buttons-wrapper .e-btn.e-btn-txt.dialog-button.dialog-take_over:focus,
4956 -.dialog-type-confirm .dialog-buttons-wrapper .e-btn.e-primary.dialog-button.dialog-cancel:focus,
4957 -.dialog-type-confirm .dialog-buttons-wrapper .e-btn.dialog-button.dialog-ok.dialog-cancel:focus,
4958 -.dialog-type-confirm .dialog-buttons-wrapper .e-btn.dialog-button.dialog-take_over.dialog-cancel:focus,
4959 -.dialog-type-alert .dialog-buttons-wrapper .e-btn.e-primary.dialog-button.dialog-cancel:focus,
4960 -.dialog-type-alert .dialog-buttons-wrapper .e-btn.dialog-button.dialog-ok.dialog-cancel:focus,
4961 -.dialog-type-alert .dialog-buttons-wrapper .e-btn.dialog-button.dialog-take_over.dialog-cancel:focus {
4332 +.e-btn.e-primary.e-btn-txt:focus {
4962 4333 background: var(--e-a-bg-primary);
4963 4334 }
4964 4335 .elementor-button.go-pro, .elementor-button.e-accent,
4965 4336 .e-btn.go-pro,
@@ -5006,13 +4377,8 @@
5006 4377 .e-btn.elementor-button-danger,
5007 4378 .e-btn.e-danger {
5008 4379 background-color: var(--e-a-btn-bg-danger);
5009 4380 }
5010 -.elementor-button.elementor-button-danger.color-white, .elementor-button.e-danger.color-white,
5011 -.e-btn.elementor-button-danger.color-white,
5012 -.e-btn.e-danger.color-white {
5013 - color: var(--e-a-color-white);
5014 -}
5015 4381 .elementor-button.elementor-button-danger:hover, .elementor-button.elementor-button-danger:focus, .elementor-button.e-danger:hover, .elementor-button.e-danger:focus,
5016 4382 .e-btn.elementor-button-danger:hover,
5017 4383 .e-btn.elementor-button-danger:focus,
5018 4384 .e-btn.e-danger:hover,
@@ -5055,23 +4421,22 @@
5055 4421 }
5056 4422
5057 4423 #elementor-preview-responsive-wrapper {
5058 4424 transform-origin: top center;
5059 - margin: 20px;
4425 + padding: 20px;
5060 4426 transform: scale(var(--e-preview-scale, 1));
5061 - overflow: hidden;
5062 4427 }
5063 4428 .elementor-device-desktop #elementor-preview-responsive-wrapper {
5064 4429 min-width: 1025px;
5065 4430 width: 100%;
5066 4431 height: 100%;
5067 - margin: 0;
4432 + padding: 0;
5068 4433 position: relative;
5069 4434 }
5070 4435 body.e-is-device-mode:not(.elementor-device-desktop) #elementor-preview-responsive-wrapper {
5071 4436 width: var(--e-editor-preview-width);
5072 4437 height: var(--e-editor-preview-height);
5073 - margin: 20px max((100vw - var(--e-editor-panel-width) - var(--e-editor-preview-width)) / 2, 20px);
4438 + margin: 0 max((100vw - var(--e-editor-panel-width) - var(--e-editor-preview-width)) / 2, 20px);
5074 4439 box-sizing: content-box;
5075 4440 position: relative;
5076 4441 max-height: calc(100vh - 80px);
5077 4442 }
@@ -5133,10 +4498,9 @@
5133 4498 #elementor-preview-responsive-wrapper .ui-resizable-s {
5134 4499 bottom: 0;
5135 4500 }
5136 4501 #elementor-preview-responsive-wrapper .ui-resizable-e {
5137 - width: 10px;
5138 - right: -5px;
4502 + right: 0;
5139 4503 }
5140 4504 #elementor-preview-responsive-wrapper .ui-resizable-w {
5141 4505 left: 0;
5142 4506 }
@@ -5147,20 +4511,8 @@
5147 4511 background-color: #fff;
5148 4512 box-shadow: 0 0 3px rgba(0, 0, 0, 0.3), 0 0 20px rgba(0, 0, 0, 0.15);
5149 4513 }
5150 4514
5151 -#elementor-template-library-modal button:focus-visible,
5152 -#elementor-template-library-modal a:focus-visible,
5153 -#elementor-template-library-modal input:focus-visible,
5154 -#elementor-template-library-modal select:focus-visible,
5155 -#elementor-template-library-modal [tabindex="0"]:focus-visible,
5156 -#elementor-template-library-modal [role=tab]:focus-visible,
5157 -#elementor-template-library-modal [role=radio]:focus-visible,
5158 -#elementor-template-library-modal [role=menuitem]:focus-visible {
5159 - outline: 2px solid var(--e-a-border-color-focus);
5160 - outline-offset: 2px;
5161 - border-radius: 2px;
5162 -}
5163 4515 #elementor-template-library-modal a.elementor-template-library-blank-footer-link {
5164 4516 font-style: normal;
5165 4517 text-decoration: underline;
5166 4518 }
@@ -5172,17 +4524,8 @@
5172 4524 }
5173 4525 #elementor-template-library-modal .dialog-message {
5174 4526 overflow-y: scroll;
5175 4527 }
5176 -#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 {
5177 - overflow-y: auto;
5178 -}
5179 -#elementor-template-library-modal .e-back-to-editor {
5180 - color: var(--e-a-color-txt);
5181 - text-decoration: underline;
5182 - font-size: 17px;
5183 - cursor: pointer;
5184 -}
5185 4528
5186 4529 #elementor-template-library-header-menu {
5187 4530 text-align: center;
5188 4531 }
@@ -5191,21 +4534,14 @@
5191 4534 display: inline-block;
5192 4535 padding: 17px 20px;
5193 4536 border-block-end: 3px solid transparent;
5194 4537 cursor: pointer;
5195 - background: transparent;
5196 - margin: 0;
5197 - font-size: inherit;
5198 - font-family: inherit;
5199 - color: inherit;
5200 - border: none;
5201 4538 }
5202 4539 .elementor-template-library-menu-item:hover {
5203 4540 background-color: var(--e-a-bg-hover);
5204 4541 border-color: var(--e-a-bg-hover);
5205 4542 }
5206 -.elementor-template-library-menu-item.elementor-active, .elementor-template-library-menu-item[aria-selected=true] {
5207 - border-block-end: 3px solid;
4543 +.elementor-template-library-menu-item.elementor-active {
5208 4544 border-color: var(--e-a-border-color-accent);
5209 4545 color: var(--e-a-color-txt-accent);
5210 4546 }
5211 4547
@@ -5211,31 +4547,12 @@
5211 4547
5212 4548 #elementor-template-library-header-actions {
5213 4549 display: flex;
5214 4550 }
5215 -#elementor-template-library-header-actions > div,
5216 -#elementor-template-library-header-actions > button {
5217 - background: transparent;
5218 - margin: 0;
5219 - font-size: inherit;
5220 - font-family: inherit;
5221 - color: inherit;
5222 - border: none;
4551 +#elementor-template-library-header-actions > div {
5223 4552 padding-inline-end: 16px;
5224 - cursor: pointer;
5225 4553 }
5226 -#elementor-template-library-header-actions > div:focus-visible,
5227 -#elementor-template-library-header-actions > button:focus-visible {
5228 - outline: 2px solid var(--e-a-border-color-focus);
5229 - outline-offset: -2px;
5230 - border-radius: 2px;
5231 -}
5232 4554
5233 -#elementor-template-library-header-tools.e-hidden-disabled {
5234 - opacity: 0;
5235 - visibility: hidden;
5236 -}
5237 -
5238 4555 #elementor-template-library-header-preview-insert-wrapper {
5239 4556 cursor: default;
5240 4557 padding: 0 10px;
5241 4558 }
@@ -5244,9 +4561,8 @@
5244 4561 margin-inline-start: 4px;
5245 4562 }
5246 4563
5247 4564 #elementor-template-library-header-preview-back {
5248 - gap: 10px;
5249 4565 padding-block: 16.5px 15px;
5250 4566 padding-inline: 0 16.5px;
5251 4567 border-inline-end: var(--e-a-border);
5252 4568 cursor: pointer;
@@ -5251,138 +4567,27 @@
5251 4567 border-inline-end: var(--e-a-border);
5252 4568 cursor: pointer;
5253 4569 transition: color 0.5s;
5254 4570 }
5255 -#elementor-template-library-header-preview-back .elementor-template-library-header-back-button {
5256 - background: transparent;
5257 - margin: 0;
5258 - font-size: inherit;
5259 - font-family: inherit;
5260 - color: inherit;
5261 - border: none;
5262 - display: flex;
5263 - align-items: center;
5264 - gap: 10px;
5265 - cursor: pointer;
5266 -}
5267 -#elementor-template-library-header-preview-back .elementor-template-library-header-back-button:focus-visible {
5268 - outline: 2px solid var(--e-a-border-color-focus);
5269 - outline-offset: 2px;
5270 - border-radius: 2px;
5271 -}
5272 4571 #elementor-template-library-header-preview-back:hover {
5273 4572 color: var(--e-a-color-txt-hover);
5274 4573 }
5275 4574 #elementor-template-library-header-preview-back i {
4575 + padding-inline-end: 10px;
5276 4576 font-size: 18px;
5277 - scale: calc(1 * var(--direction-multiplier)) 1;
5278 4577 }
4578 +#elementor-template-library-header-preview-back i:before {
4579 + content: "\e87d";
4580 +}
5279 4581
5280 -#elementor-template-library-templates {
5281 - display: flex;
5282 - flex-direction: column;
5283 - gap: 20px;
5284 -}
5285 -#elementor-template-library-templates .toolbar-container {
5286 - display: flex;
5287 - justify-content: space-between;
5288 - align-items: center;
5289 - gap: 2%;
5290 - height: 45px;
5291 -}
5292 -#elementor-template-library-templates #elementor-template-library-templates-container {
5293 - display: flex;
5294 - flex-wrap: wrap;
5295 - align-items: flex-start;
5296 -}
5297 -#elementor-template-library-templates[data-template-source=local] .toolbar-container .quota-progress-container {
5298 - display: none;
5299 -}
5300 -#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"])) {
5301 - justify-content: flex-end;
5302 -}
5303 -#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 {
5304 - display: flex;
5305 - align-items: baseline;
5306 - border-radius: 3px;
5307 -}
5308 -#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 {
5309 - outline: 2px solid var(--e-a-border-color-focus);
5310 - outline-offset: 2px;
5311 -}
5312 -#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 {
5313 - align-items: center;
5314 -}
5315 -#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 {
5316 - font-size: 14px;
5317 - margin-inline-start: 5px;
5318 -}
5319 -#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 {
5320 - width: 200px;
5321 - margin: 0px 10px;
5322 - align-self: center;
5323 - text-align: start;
5324 -}
5325 -#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 {
5326 - font-size: 10px;
5327 -}
5328 -#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 {
5329 - color: var(--e-a-btn-bg-accent);
5330 -}
5331 -#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 {
5332 - height: 4px;
5333 - background-color: var(--e-a-color-primary-bold);
5334 - position: relative;
5335 - display: flex;
5336 - align-items: center;
5337 - padding: 0;
5338 -}
5339 -#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 {
5340 - height: 100%;
5341 - transition: width 0.3s ease;
5342 -}
5343 -#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 {
5344 - background-color: #D004D4;
5345 -}
5346 -#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 {
5347 - background-color: #F59E0B;
5348 -}
5349 -#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 {
5350 - background-color: #93003f;
5351 -}
5352 -#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 {
5353 - background-color: #F0ABFC;
5354 -}
5355 -#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 {
5356 - background-color: rgb(251.0236220472, 216.4291338583, 157.9763779528);
5357 -}
5358 -#elementor-template-library-templates[data-template-source=cloud] .toolbar-container-value, #elementor-template-library-templates[data-template-source=empty] .toolbar-container-value {
5359 - font-size: 12px;
5360 - color: var(--e-a-color-txt);
5361 -}
5362 -#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 {
4582 +#elementor-template-library-templates[data-template-source=local] #elementor-template-library-templates-container {
4583 + margin-block-start: 10px;
4584 + margin-block-end: 45px;
5363 4585 border-block-start: var(--e-a-border);
5364 4586 }
5365 -#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 {
4587 +#elementor-template-library-templates[data-template-source=local] .elementor-template-library-order-input:checked + .elementor-template-library-order-label {
5366 4588 color: var(--e-a-color-txt-active);
5367 4589 }
5368 -#elementor-template-library-templates[data-template-source=cloud][data-template-view=grid] #elementor-template-library-templates-container {
5369 - border-block-start: none;
5370 -}
5371 -#elementor-template-library-templates[data-template-source=cloud][data-template-view=grid] #elementor-template-library-order-toolbar-local {
5372 - padding: 0;
5373 -}
5374 -#elementor-template-library-templates[data-template-source=cloud][data-template-view=grid] #elementor-template-library-order-toolbar-local div {
5375 - max-width: -moz-fit-content;
5376 - max-width: fit-content;
5377 -}
5378 -#elementor-template-library-templates[data-template-source=cloud][data-template-view=grid] #elementor-template-library-order-toolbar-local .elementor-template-library-local-column-3,
5379 -#elementor-template-library-templates[data-template-source=cloud][data-template-view=grid] #elementor-template-library-order-toolbar-local .elementor-template-library-local-column-5 {
5380 - display: none;
5381 -}
5382 -#elementor-template-library-templates[data-template-source=cloud] .elementor-template-library-local-column-3 {
5383 - pointer-events: none;
5384 -}
5385 4590 #elementor-template-library-templates[data-template-source=remote] #elementor-template-library-templates-container {
5386 4591 margin: 10px -15px 0;
5387 4592 }
5388 4593 #elementor-template-library-templates[data-template-source=remote] .elementor-template-library-order-input:checked + .elementor-template-library-order-label {
@@ -5408,243 +4613,14 @@
5408 4613 }
5409 4614 #elementor-template-library-templates .elementor-template-library-order-input:checked.elementor-template-library-order-reverse + .elementor-template-library-order-label:after {
5410 4615 content: "\e8ad";
5411 4616 }
5412 -#elementor-template-library-templates .elementor-template-library-filter-toolbar-side-actions {
4617 +
4618 +#elementor-template-library-templates-container {
5413 4619 display: flex;
5414 - align-items: center;
5415 - gap: 8px;
4620 + flex-wrap: wrap;
4621 + align-items: flex-start;
5416 4622 }
5417 -#elementor-template-library-templates .elementor-template-library-filter-toolbar-side-actions .elementor-template-library-action-item {
5418 - background: transparent;
5419 - margin: 0;
5420 - font-size: inherit;
5421 - font-family: inherit;
5422 - color: inherit;
5423 - border: none;
5424 - cursor: pointer;
5425 - font-size: 20px;
5426 - padding: 0 5px;
5427 - border-radius: 2px;
5428 - color: var(--e-a-color-txt);
5429 -}
5430 -#elementor-template-library-templates .elementor-template-library-filter-toolbar-side-actions .elementor-template-library-action-item:hover {
5431 - background-color: var(--e-a-bg-hover);
5432 -}
5433 -#elementor-template-library-templates .elementor-template-library-filter-toolbar-side-actions .divider {
5434 - width: 1px;
5435 - height: 20px;
5436 - background-color: var(--e-a-border-color);
5437 -}
5438 -#elementor-template-library-templates[data-template-view=list] .elementor-template-library-filter-toolbar-side-actions #elementor-template-library-view-list {
5439 - background-color: var(--e-a-bg-hover);
5440 -}
5441 -#elementor-template-library-templates[data-template-view=grid] .elementor-template-library-filter-toolbar-side-actions #elementor-template-library-view-grid {
5442 - background-color: var(--e-a-bg-hover);
5443 -}
5444 -#elementor-template-library-templates[data-template-view=grid] #elementor-template-library-templates-container {
5445 - display: grid;
5446 - grid-template-columns: repeat(auto-fill, 208px);
5447 - grid-gap: 20px;
5448 - padding: 20px 0;
5449 -}
5450 -#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 {
5451 - grid-column: 1;
5452 -}
5453 -#elementor-template-library-templates[data-template-view=grid] #elementor-template-library-templates-container #elementor-template-library-templates-empty {
5454 - grid-column: 1/-1;
5455 -}
5456 -#elementor-template-library-templates[data-template-view=grid] #elementor-template-library-templates-container .elementor-template-library-template-view-grid {
5457 - display: flex;
5458 - position: relative;
5459 - flex-direction: column;
5460 - height: 158px;
5461 - padding: 8px;
5462 - border: var(--e-a-border);
5463 - border-radius: 3px;
5464 -}
5465 -#elementor-template-library-templates[data-template-view=grid] #elementor-template-library-templates-container .elementor-template-library-template-view-grid:focus-visible {
5466 - outline: 2px solid var(--e-a-border-color-focus);
5467 - outline-offset: 2px;
5468 -}
5469 -#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 {
5470 - display: flex;
5471 -}
5472 -#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 {
5473 - display: none;
5474 -}
5475 -#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 {
5476 - display: flex !important;
5477 -}
5478 -#elementor-template-library-templates[data-template-view=grid] #elementor-template-library-templates-container .elementor-template-library-template-view-grid .elementor-template-library-template-thumbnail {
5479 - width: 190px;
5480 - height: 100px;
5481 - position: relative;
5482 - border-radius: 3px;
5483 - margin-block-end: 4px;
5484 - overflow: hidden;
5485 -}
5486 -#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 {
5487 - -o-object-fit: contain;
5488 - object-fit: contain;
5489 - width: 100%;
5490 - height: 100%;
5491 -}
5492 -#elementor-template-library-templates[data-template-view=grid] #elementor-template-library-templates-container .elementor-template-library-template-view-grid .elementor-template-library-template-preview {
5493 - display: none;
5494 - justify-content: center;
5495 - align-items: center;
5496 - position: absolute;
5497 - inset: 0;
5498 - background-color: rgba(0, 0, 0, 0.5);
5499 - cursor: default;
5500 -}
5501 -#elementor-template-library-templates[data-template-view=grid] #elementor-template-library-templates-container .elementor-template-library-template-view-grid .elementor-template-library-template-name {
5502 - font-size: 11px;
5503 - white-space: nowrap;
5504 - text-overflow: ellipsis;
5505 - overflow: hidden;
5506 -}
5507 -#elementor-template-library-templates[data-template-view=grid] #elementor-template-library-templates-container .elementor-template-library-template-view-grid .elementor-template-library-card-footer {
5508 - display: flex;
5509 - position: relative;
5510 - justify-content: space-between;
5511 - align-items: center;
5512 - font-size: 11px;
5513 - min-height: 38px;
5514 -}
5515 -#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 {
5516 - display: none;
5517 - width: 90%;
5518 - gap: 8px;
5519 - height: 38px;
5520 - padding: 4px 0;
5521 -}
5522 -#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 {
5523 - display: flex;
5524 -}
5525 -#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 {
5526 - display: flex;
5527 - align-items: center;
5528 -}
5529 -#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 {
5530 - display: flex;
5531 - flex-direction: column;
5532 - justify-content: center;
5533 - width: 65%;
5534 - align-items: start;
5535 - white-space: nowrap;
5536 - text-overflow: ellipsis;
5537 - overflow: hidden;
5538 -}
5539 -#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 {
5540 - flex-direction: row;
5541 - align-items: center;
5542 - justify-content: start;
5543 - height: 56px;
5544 - padding: 13px 10px;
5545 -}
5546 -#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 {
5547 - font-size: 25px;
5548 - margin-inline-end: 8px;
5549 -}
5550 -#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 {
5551 - margin-inline-start: auto;
5552 -}
5553 -#elementor-template-library-templates[data-template-view=grid] #bulk-select-all {
5554 - display: none;
5555 -}
5556 -#elementor-template-library-templates.no-bulk-selections #bulk-select-all, #elementor-template-library-templates.no-bulk-selections .bulk-selection-item-checkbox {
5557 - visibility: hidden;
5558 -}
5559 -#elementor-template-library-templates.no-bulk-selections .elementor-template-library-template-name:hover .bulk-selection-item-checkbox {
5560 - visibility: visible;
5561 -}
5562 -#elementor-template-library-templates .bulk-selection-action-bar {
5563 - display: none;
5564 - background: var(--e-a-bg-active);
5565 - padding: 10px 25px;
5566 - border-radius: 5px;
5567 - color: var(--e-a-bg-invert);
5568 - gap: 20px;
5569 - align-items: center;
5570 - flex: 1;
5571 -}
5572 -#elementor-template-library-templates .bulk-selection-action-bar button {
5573 - background: transparent;
5574 - margin: 0;
5575 - font-size: inherit;
5576 - font-family: inherit;
5577 - color: inherit;
5578 - border: none;
5579 - cursor: pointer;
5580 - display: flex;
5581 - align-items: center;
5582 - justify-content: center;
5583 -}
5584 -#elementor-template-library-templates .bulk-selection-action-bar button.disabled {
5585 - pointer-events: none;
5586 - opacity: 0.3;
5587 - cursor: not-allowed;
5588 -}
5589 -#elementor-template-library-templates .bulk-selection-action-bar i {
5590 - cursor: pointer;
5591 - font-size: 18px;
5592 -}
5593 -#elementor-template-library-templates .bulk-selection-action-bar .eicon-editor-close {
5594 - font-size: 20px;
5595 -}
5596 -#elementor-template-library-templates #elementor-template-library-navigation-container {
5597 - display: flex;
5598 - flex: 1;
5599 - white-space: nowrap;
5600 - text-overflow: ellipsis;
5601 - overflow: hidden;
5602 -}
5603 -#elementor-template-library-templates #elementor-template-library-navigation-container .elementor-template-library-navigation-container {
5604 - display: flex;
5605 - flex-direction: row;
5606 - align-items: center;
5607 - gap: 15px;
5608 - white-space: nowrap;
5609 - text-overflow: ellipsis;
5610 - overflow: hidden;
5611 -}
5612 -#elementor-template-library-templates #elementor-template-library-navigation-container .elementor-template-library-navigation-container > span {
5613 - white-space: nowrap;
5614 - text-overflow: ellipsis;
5615 - overflow: hidden;
5616 -}
5617 -#elementor-template-library-templates #elementor-template-library-navigation-container .elementor-template-library-navigation-container .elementor-template-library-navigation-back-button {
5618 - padding-inline-start: 8px;
5619 - background-color: var(--e-a-bg-hover);
5620 - color: var(--e-a-color-txt);
5621 -}
5622 -#elementor-template-library-templates #elementor-template-library-order-toolbar-local:hover #bulk-select-all {
5623 - visibility: visible;
5624 -}
5625 -#elementor-template-library-templates .bulk-selected-item {
5626 - background: var(--e-a-bg-active);
5627 -}
5628 -#elementor-template-library-templates .elementor-template-library-local-column-1 input[type=checkbox] {
5629 - position: relative;
5630 - inset-block-start: 3px;
5631 -}
5632 -#elementor-template-library-templates .elementor-template-library-local-column-1 input[type=checkbox]:checked {
5633 - inset-block-start: 0px;
5634 -}
5635 -#elementor-template-library-templates .bulk-selection-item-checkbox:checked,
5636 -#elementor-template-library-templates #bulk-select-all:checked {
5637 - background: #69727D;
5638 -}
5639 -#elementor-template-library-templates .checkbox-minus:before {
5640 - display: block;
5641 - content: "";
5642 - width: 10px;
5643 - height: 2px;
5644 - background-color: white;
5645 - transform: none;
5646 -}
5647 4623
5648 4624 #elementor-template-library-toolbar {
5649 4625 display: flex;
5650 4626 justify-content: space-between;
@@ -5655,80 +4631,8 @@
5655 4631 display: flex;
5656 4632 align-items: center;
5657 4633 }
5658 4634
5659 -.elementor-template-library-filter-select-source {
5660 - width: 350px;
5661 - display: flex;
5662 - gap: 10px;
5663 -}
5664 -.elementor-template-library-filter-select-source .source-option {
5665 - flex: 1;
5666 - border: 0.5px solid #BABFC5;
5667 - padding: 5px;
5668 - border-radius: 3px;
5669 - cursor: pointer;
5670 - font-size: 12px;
5671 -}
5672 -.elementor-template-library-filter-select-source .source-option i {
5673 - margin-inline-end: 5px;
5674 -}
5675 -.elementor-template-library-filter-select-source .source-option .new-badge {
5676 - border: 1px solid var(--e-a-color-primary-bold-dark);
5677 - padding: 2px 4px;
5678 - color: var(--e-a-color-primary-bold-dark);
5679 - border-radius: 10px;
5680 - font-size: 10px;
5681 - margin-inline-start: 5px;
5682 -}
5683 -.elementor-template-library-filter-select-source .source-option.selected, .elementor-template-library-filter-select-source .source-option:hover {
5684 - background-color: var(--e-a-bg-hover);
5685 -}
5686 -
5687 -#elementor-template-library-connect-states .elementor-template-library-filter-toolbar {
5688 - display: flex;
5689 - align-items: center;
5690 - justify-content: space-between;
5691 -}
5692 -
5693 -#elementor-template-library-toolbar .source-option-badge,
5694 -.elementor-template-library-connect-states-badge .source-option-badge {
5695 - display: flex;
5696 - align-items: center;
5697 - gap: 6px;
5698 - padding: 6px 12px;
5699 - border: none;
5700 - border-radius: 20px;
5701 - font-size: 14px;
5702 - font-weight: 500;
5703 - white-space: nowrap;
5704 - margin-inline-start: auto;
5705 - margin-inline-end: 15px;
5706 -}
5707 -#elementor-template-library-toolbar .source-option-badge i,
5708 -.elementor-template-library-connect-states-badge .source-option-badge i {
5709 - margin: 0;
5710 - font-size: 14px;
5711 -}
5712 -#elementor-template-library-toolbar .source-option-badge.cloud-badge,
5713 -.elementor-template-library-connect-states-badge .source-option-badge.cloud-badge {
5714 - background-color: var(--e-a-bg-info);
5715 - color: var(--e-a-color-info);
5716 -}
5717 -#elementor-template-library-toolbar .source-option-badge.cloud-badge i,
5718 -.elementor-template-library-connect-states-badge .source-option-badge.cloud-badge i {
5719 - color: var(--e-a-color-info);
5720 -}
5721 -#elementor-template-library-toolbar .source-option-badge.site-badge,
5722 -.elementor-template-library-connect-states-badge .source-option-badge.site-badge {
5723 - background-color: var(--e-a-bg-warning);
5724 - color: var(--e-a-btn-bg-warning-hover);
5725 -}
5726 -#elementor-template-library-toolbar .source-option-badge.site-badge i,
5727 -.elementor-template-library-connect-states-badge .source-option-badge.site-badge i {
5728 - color: var(--e-a-btn-bg-warning-hover);
5729 -}
5730 -
5731 4635 #elementor-template-library-filter-toolbar-remote {
5732 4636 font-size: 11px;
5733 4637 }
5734 4638
@@ -5742,11 +4646,8 @@
5742 4646 padding-inline-end: 22px;
5743 4647 -webkit-user-select: none;
5744 4648 -moz-user-select: none;
5745 4649 user-select: none;
5746 - line-height: 1;
5747 - font-size: 10px;
5748 - font-weight: 500;
5749 4650 }
5750 4651
5751 4652 label.elementor-template-library-order-label {
5752 4653 cursor: pointer;
@@ -5802,12 +4703,8 @@
5802 4703 #elementor-template-library-filter-my-favorites-label i:after {
5803 4704 content: "\e923";
5804 4705 }
5805 4706
5806 -#elementor-template-library-create-new-folder-dialog .elementor-create-folder-template-dialog__p {
5807 - margin-block-end: 10px;
5808 -}
5809 -
5810 4707 #elementor-template-library-filter-text-wrapper {
5811 4708 width: 200px;
5812 4709 position: relative;
5813 4710 }
@@ -5812,15 +4709,12 @@
5812 4709 position: relative;
5813 4710 }
5814 4711 #elementor-template-library-filter-text-wrapper i {
5815 4712 position: absolute;
5816 - inset-block-start: 50%;
5817 - inset-inline-end: 0;
4713 + top: 50%;
4714 + left: 0;
5818 4715 transform: translateY(-50%);
5819 4716 }
5820 -#elementor-template-library-filter-text-wrapper i.eicon-loading.eicon-animation-spin {
5821 - inset-block-start: 25%;
5822 -}
5823 4717
5824 4718 #elementor-template-library-filter-text {
5825 4719 border: none;
5826 4720 border-block-end: var(--e-a-border-bold);
@@ -5846,32 +4740,19 @@
5846 4740 padding: 8px;
5847 4741 border: var(--e-a-border);
5848 4742 border-radius: 3px;
5849 4743 }
5850 -.elementor-template-library-template-remote:focus-visible {
5851 - outline: 2px solid var(--e-a-border-color-focus);
5852 - outline-offset: 2px;
5853 -}
5854 -.elementor-template-library-template-remote:hover, .elementor-template-library-template-remote:focus, .elementor-template-library-template-remote:focus-within {
4744 +.elementor-template-library-template-remote:hover {
5855 4745 background-color: var(--e-a-bg-hover);
5856 4746 }
5857 -.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 {
5858 - opacity: 1;
5859 -}
5860 -.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 {
4747 +.elementor-template-library-template-remote:hover .elementor-template-library-template-name {
5861 4748 display: none;
5862 4749 }
5863 -.elementor-template-library-template-remote:hover .elementor-template-library-favorite,
5864 -.elementor-template-library-template-remote:hover .elementor-template-library-template-action, .elementor-template-library-template-remote:focus .elementor-template-library-favorite,
5865 -.elementor-template-library-template-remote:focus .elementor-template-library-template-action, .elementor-template-library-template-remote:focus-within .elementor-template-library-favorite,
5866 -.elementor-template-library-template-remote:focus-within .elementor-template-library-template-action {
5867 - display: initial;
5868 -}
5869 -.elementor-template-library-template-remote:not(:hover):not(:focus):not(:focus-within) .elementor-template-library-template-preview {
4750 +.elementor-template-library-template-remote:not(:hover) .elementor-template-library-template-preview {
5870 4751 opacity: 0;
5871 4752 }
5872 -.elementor-template-library-template-remote:not(:hover):not(:focus):not(:focus-within) .elementor-template-library-favorite,
5873 -.elementor-template-library-template-remote:not(:hover):not(:focus):not(:focus-within) .elementor-template-library-template-action {
4753 +.elementor-template-library-template-remote:not(:hover) .elementor-template-library-favorite,
4754 +.elementor-template-library-template-remote:not(:hover) .elementor-template-library-template-action {
5874 4755 display: none;
5875 4756 }
5876 4757 .elementor-template-library-template-remote.elementor-template-library-pro-template .elementor-template-library-template-body:before {
5877 4758 content: var(--elementor-template-library-subscription-plan-label);
@@ -5879,10 +4760,10 @@
5879 4760 color: var(--e-a-color-white);
5880 4761 position: absolute;
5881 4762 text-transform: uppercase;
5882 4763 line-height: 1;
5883 - inset-block-start: 5px;
5884 - inset-inline-end: 5px;
4764 + top: 5px;
4765 + left: 5px;
5885 4766 padding: 3px 5px;
5886 4767 font-size: 8px;
5887 4768 border-radius: 2px;
5888 4769 }
@@ -5897,10 +4778,10 @@
5897 4778 }
5898 4779 .elementor-template-library-template-remote:not(.elementor-template-library-template-page):not(.elementor-template-library-template-lp) .elementor-template-library-template-footer {
5899 4780 position: absolute;
5900 4781 width: 100%;
5901 - inset-block-end: 0;
5902 - inset-inline-start: 0;
4782 + bottom: 0;
4783 + right: 0;
5903 4784 padding: 10px;
5904 4785 background-color: var(--e-a-bg-default);
5905 4786 transition: transform 0.5s;
5906 4787 }
@@ -5906,9 +4787,9 @@
5906 4787 }
5907 4788 .elementor-template-library-template-remote:not(.elementor-template-library-template-page):not(.elementor-template-library-template-lp) .elementor-template-library-template-name {
5908 4789 display: none;
5909 4790 }
5910 -.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 {
4791 +.elementor-template-library-template-remote:not(.elementor-template-library-template-page):not(.elementor-template-library-template-lp):not(:hover) .elementor-template-library-template-footer {
5911 4792 transform: translateY(100%);
5912 4793 }
5913 4794 .elementor-template-library-template-remote .elementor-template-library-template-body {
5914 4795 position: relative;
@@ -5925,9 +4806,12 @@
5925 4806 box-shadow: inset 0px -2px 15px -6px rgba(0, 0, 0, 0.07);
5926 4807 }
5927 4808 .elementor-template-library-template-remote .elementor-template-library-template-preview {
5928 4809 position: absolute;
5929 - inset: 0;
4810 + top: 0;
4811 + left: 0;
4812 + width: 100%;
4813 + height: 100%;
5930 4814 background-color: rgba(0, 0, 0, 0.5);
5931 4815 transition: opacity 0.5s;
5932 4816 cursor: pointer;
5933 4817 }
@@ -5933,11 +4817,11 @@
5933 4817 }
5934 4818 .elementor-template-library-template-remote .elementor-template-library-template-preview i {
5935 4819 font-size: 20px;
5936 4820 position: absolute;
5937 - inset-block-start: 50%;
5938 - inset-inline-start: 50%;
5939 - transform: translate(calc(-50% * var(--direction-multiplier)), -50%);
4821 + top: 50%;
4822 + left: 50%;
4823 + transform: translate(-50%, -50%);
5940 4824 }
5941 4825 .elementor-template-library-template-remote .elementor-template-library-template-footer {
5942 4826 display: flex;
5943 4827 justify-content: space-between;
@@ -5957,22 +4841,10 @@
5957 4841 .elementor-template-library-template-remote .elementor-template-library-favorite {
5958 4842 margin-inline-start: auto;
5959 4843 }
5960 4844 .elementor-template-library-template-remote .elementor-template-library-template-favorite-input {
5961 - position: absolute;
5962 - width: 1px;
5963 - height: 1px;
5964 - padding: 0;
5965 - margin: -1px;
5966 - overflow: hidden;
5967 - clip: rect(0, 0, 0, 0);
5968 - white-space: nowrap;
5969 - border: 0;
4845 + display: none;
5970 4846 }
5971 -.elementor-template-library-template-remote .elementor-template-library-template-favorite-input:focus-visible + .elementor-template-library-template-favorite-label {
5972 - outline: 2px solid var(--e-a-border-color-focus);
5973 - outline-offset: 2px;
5974 -}
5975 4847 .elementor-template-library-template-remote .elementor-template-library-template-favorite-input:checked + .elementor-template-library-template-favorite-label i:before {
5976 4848 content: "\e93f";
5977 4849 color: var(--e-a-color-primary-bold);
5978 4850 }
@@ -6007,231 +4879,112 @@
6007 4879 height: 200px;
6008 4880 }
6009 4881
6010 4882 #elementor-template-library-order-toolbar-local,
6011 -.elementor-template-library-template-local,
6012 -.elementor-template-library-template-cloud:not(.elementor-template-library-template-view-grid) {
4883 +.elementor-template-library-template-local {
6013 4884 display: flex;
6014 4885 align-items: center;
6015 4886 padding: 0 25px;
6016 4887 text-align: start;
6017 4888 }
6018 -@media (max-width: 1439px) {
6019 - #elementor-template-library-order-toolbar-local .elementor-template-library-local-column-1,
6020 - .elementor-template-library-template-local .elementor-template-library-local-column-1,
6021 - .elementor-template-library-template-cloud:not(.elementor-template-library-template-view-grid) .elementor-template-library-local-column-1 {
6022 - width: 33%;
6023 - }
6024 - #elementor-template-library-order-toolbar-local .elementor-template-library-local-column-2,
6025 - .elementor-template-library-template-local .elementor-template-library-local-column-2,
6026 - .elementor-template-library-template-cloud:not(.elementor-template-library-template-view-grid) .elementor-template-library-local-column-2 {
6027 - width: 10%;
6028 - }
6029 - #elementor-template-library-order-toolbar-local .elementor-template-library-local-column-3,
6030 - .elementor-template-library-template-local .elementor-template-library-local-column-3,
6031 - .elementor-template-library-template-cloud:not(.elementor-template-library-template-view-grid) .elementor-template-library-local-column-3 {
6032 - width: 15%;
6033 - }
6034 - #elementor-template-library-order-toolbar-local .elementor-template-library-local-column-4,
6035 - .elementor-template-library-template-local .elementor-template-library-local-column-4,
6036 - .elementor-template-library-template-cloud:not(.elementor-template-library-template-view-grid) .elementor-template-library-local-column-4 {
6037 - width: 15%;
6038 - }
6039 - #elementor-template-library-order-toolbar-local .elementor-template-library-local-column-5,
6040 - .elementor-template-library-template-local .elementor-template-library-local-column-5,
6041 - .elementor-template-library-template-cloud:not(.elementor-template-library-template-view-grid) .elementor-template-library-local-column-5 {
6042 - width: 27%;
6043 - }
6044 -}
6045 -@media (min-width: 1440px) {
6046 - #elementor-template-library-order-toolbar-local .elementor-template-library-local-column-1,
6047 - .elementor-template-library-template-local .elementor-template-library-local-column-1,
6048 - .elementor-template-library-template-cloud:not(.elementor-template-library-template-view-grid) .elementor-template-library-local-column-1 {
6049 - width: 25%;
6050 - }
6051 - #elementor-template-library-order-toolbar-local .elementor-template-library-local-column-2,
6052 - .elementor-template-library-template-local .elementor-template-library-local-column-2,
6053 - .elementor-template-library-template-cloud:not(.elementor-template-library-template-view-grid) .elementor-template-library-local-column-2 {
6054 - width: 17%;
6055 - }
6056 - #elementor-template-library-order-toolbar-local .elementor-template-library-local-column-3,
6057 - .elementor-template-library-template-local .elementor-template-library-local-column-3,
6058 - .elementor-template-library-template-cloud:not(.elementor-template-library-template-view-grid) .elementor-template-library-local-column-3 {
6059 - width: 17%;
6060 - }
6061 - #elementor-template-library-order-toolbar-local .elementor-template-library-local-column-4,
6062 - .elementor-template-library-template-local .elementor-template-library-local-column-4,
6063 - .elementor-template-library-template-cloud:not(.elementor-template-library-template-view-grid) .elementor-template-library-local-column-4 {
6064 - width: 17%;
6065 - }
6066 - #elementor-template-library-order-toolbar-local .elementor-template-library-local-column-5,
6067 - .elementor-template-library-template-local .elementor-template-library-local-column-5,
6068 - .elementor-template-library-template-cloud:not(.elementor-template-library-template-view-grid) .elementor-template-library-local-column-5 {
6069 - width: 24%;
6070 - }
6071 -}
6072 -@media (max-width: 1024px) {
6073 - #elementor-template-library-order-toolbar-local .elementor-template-library-local-column-3,
6074 - .elementor-template-library-template-local .elementor-template-library-local-column-3,
6075 - .elementor-template-library-template-cloud:not(.elementor-template-library-template-view-grid) .elementor-template-library-local-column-3 {
6076 - display: none;
6077 - }
6078 - #elementor-template-library-order-toolbar-local .elementor-template-library-local-column-5,
6079 - .elementor-template-library-template-local .elementor-template-library-local-column-5,
6080 - .elementor-template-library-template-cloud:not(.elementor-template-library-template-view-grid) .elementor-template-library-local-column-5 {
6081 - width: 41%;
6082 - }
6083 -}
6084 4889
6085 -.elementor-template-library-template-local .elementor-template-library-template-more,
6086 -.elementor-template-library-template-cloud .elementor-template-library-template-more {
6087 - display: none;
6088 - position: absolute;
6089 - background-color: var(--e-a-bg-default);
6090 - border-radius: var(--e-a-border-radius);
6091 - box-shadow: 1px 3px 11px rgba(0, 0, 0, 0.3);
6092 - inset-block-start: 100%;
6093 - inset-inline-end: 0;
6094 - z-index: 1;
6095 - list-style: none;
6096 - margin: 0;
6097 - padding: 0;
4890 +#elementor-template-library-order-toolbar-local {
4891 + margin-block-start: 30px;
6098 4892 }
6099 -.elementor-template-library-template-local .elementor-template-library-template-more > li button,
6100 -.elementor-template-library-template-local .elementor-template-library-template-more > li a,
6101 -.elementor-template-library-template-cloud .elementor-template-library-template-more > li button,
6102 -.elementor-template-library-template-cloud .elementor-template-library-template-more > li a {
6103 - background: transparent;
6104 - margin: 0;
6105 - font-size: inherit;
6106 - font-family: inherit;
6107 - color: inherit;
6108 - border: none;
6109 - padding: 10px 20px;
6110 - font-size: 11px;
6111 - cursor: pointer;
6112 - display: flex;
6113 - align-items: center;
6114 - gap: 8px;
6115 - width: 100%;
4893 +#elementor-template-library-order-toolbar-local .elementor-template-library-order-label {
4894 + line-height: 1;
4895 + font-size: 10px;
4896 + font-weight: 500;
6116 4897 }
6117 -.elementor-template-library-template-local .elementor-template-library-template-more > li button.disabled,
6118 -.elementor-template-library-template-local .elementor-template-library-template-more > li a.disabled,
6119 -.elementor-template-library-template-cloud .elementor-template-library-template-more > li button.disabled,
6120 -.elementor-template-library-template-cloud .elementor-template-library-template-more > li a.disabled {
6121 - cursor: not-allowed;
6122 - color: var(--e-a-color-txt-disabled);
6123 -}
6124 -.elementor-template-library-template-local .elementor-template-library-template-more > li a,
6125 -.elementor-template-library-template-cloud .elementor-template-library-template-more > li a {
6126 - color: var(--e-a-color-txt);
6127 - text-decoration: none;
6128 -}
6129 -.elementor-template-library-template-local .elementor-template-library-template-more .elementor-template-library-template-delete,
6130 -.elementor-template-library-template-cloud .elementor-template-library-template-more .elementor-template-library-template-delete {
6131 - color: var(--e-a-color-danger);
6132 -}
6133 -.elementor-template-library-template-local .elementor-template-library-template-more i,
6134 -.elementor-template-library-template-cloud .elementor-template-library-template-more i {
6135 - font-size: 16px;
6136 -}
6137 -.elementor-template-library-template-local .elementor-template-library-template-more-toggle,
6138 -.elementor-template-library-template-cloud .elementor-template-library-template-more-toggle {
6139 - margin-inline-start: auto;
6140 - cursor: pointer;
6141 - background: none;
6142 - border: none;
6143 - padding: 0;
6144 - display: flex;
6145 - align-items: center;
6146 - justify-content: center;
6147 -}
6148 -.elementor-template-library-template-local .elementor-template-library-template-more-toggle i,
6149 -.elementor-template-library-template-cloud .elementor-template-library-template-more-toggle i {
6150 - font-size: 20px;
6151 -}
6152 4898
6153 -.elementor-template-library-template-local,
6154 -.elementor-template-library-template-cloud:not(.elementor-template-library-template-view-grid) {
4899 +.elementor-template-library-template-local {
6155 4900 height: 50px;
6156 4901 width: 100%;
6157 4902 margin-block-start: 1px;
6158 4903 transition: background-color 0.3s linear;
6159 4904 }
6160 -.elementor-template-library-template-local:hover,
6161 -.elementor-template-library-template-cloud:not(.elementor-template-library-template-view-grid):hover {
4905 +.elementor-template-library-template-local:hover {
6162 4906 background-color: var(--e-a-bg-hover);
6163 4907 }
6164 -.elementor-template-library-template-local:first-child,
6165 -.elementor-template-library-template-cloud:not(.elementor-template-library-template-view-grid):first-child {
4908 +.elementor-template-library-template-local:first-child {
6166 4909 border-start-start-radius: 3px;
6167 4910 border-start-end-radius: 3px;
6168 4911 border-end-start-radius: 0;
6169 4912 border-end-end-radius: 0;
6170 4913 }
6171 -.elementor-template-library-template-local:last-child,
6172 -.elementor-template-library-template-cloud:not(.elementor-template-library-template-view-grid):last-child {
4914 +.elementor-template-library-template-local:last-child {
6173 4915 border-start-start-radius: 0;
6174 4916 border-start-end-radius: 0;
6175 4917 border-end-start-radius: 3px;
6176 4918 border-end-end-radius: 3px;
6177 4919 }
6178 -.elementor-template-library-template-local .elementor-template-library-template-name,
6179 -.elementor-template-library-template-cloud:not(.elementor-template-library-template-view-grid) .elementor-template-library-template-name {
4920 +.elementor-template-library-template-local .elementor-template-library-template-name {
6180 4921 font-weight: 500;
6181 4922 }
6182 -.elementor-template-library-template-local .elementor-template-library-template-name i,
6183 -.elementor-template-library-template-cloud:not(.elementor-template-library-template-view-grid) .elementor-template-library-template-name i {
6184 - font-size: 16px;
6185 -}
6186 4923 .elementor-template-library-template-local .elementor-template-library-template-name,
6187 -.elementor-template-library-template-local .elementor-template-library-template-meta,
6188 -.elementor-template-library-template-cloud:not(.elementor-template-library-template-view-grid) .elementor-template-library-template-name,
6189 -.elementor-template-library-template-cloud:not(.elementor-template-library-template-view-grid) .elementor-template-library-template-meta {
4924 +.elementor-template-library-template-local .elementor-template-library-template-meta {
6190 4925 padding-inline-end: 20px;
6191 4926 }
6192 -.elementor-template-library-template-local .elementor-template-library-local-column-1 i,
6193 -.elementor-template-library-template-cloud:not(.elementor-template-library-template-view-grid) .elementor-template-library-local-column-1 i {
6194 - padding-inline-end: 10px;
6195 -}
6196 4927 .elementor-template-library-template-local .elementor-template-library-template-name,
6197 4928 .elementor-template-library-template-local .elementor-template-library-template-meta,
6198 4929 .elementor-template-library-template-local .elementor-template-library-template-preview,
6199 -.elementor-template-library-template-local .elementor-template-library-template-action,
6200 -.elementor-template-library-template-cloud:not(.elementor-template-library-template-view-grid) .elementor-template-library-template-name,
6201 -.elementor-template-library-template-cloud:not(.elementor-template-library-template-view-grid) .elementor-template-library-template-meta,
6202 -.elementor-template-library-template-cloud:not(.elementor-template-library-template-view-grid) .elementor-template-library-template-preview,
6203 -.elementor-template-library-template-cloud:not(.elementor-template-library-template-view-grid) .elementor-template-library-template-action {
4930 +.elementor-template-library-template-local .elementor-template-library-template-action {
6204 4931 white-space: nowrap;
6205 4932 text-overflow: ellipsis;
6206 4933 overflow: hidden;
6207 4934 }
6208 -.elementor-template-library-template-local .elementor-template-library-template-controls,
6209 -.elementor-template-library-template-cloud:not(.elementor-template-library-template-view-grid) .elementor-template-library-template-controls {
4935 +.elementor-template-library-template-local .elementor-template-library-template-controls {
6210 4936 position: relative;
6211 4937 display: flex;
6212 4938 align-items: center;
6213 4939 }
6214 -.elementor-template-library-template-local .elementor-template-library-template-controls > div,
6215 -.elementor-template-library-template-local .elementor-template-library-template-controls > button,
6216 -.elementor-template-library-template-cloud:not(.elementor-template-library-template-view-grid) .elementor-template-library-template-controls > div,
6217 -.elementor-template-library-template-cloud:not(.elementor-template-library-template-view-grid) .elementor-template-library-template-controls > button {
4940 +.elementor-template-library-template-local .elementor-template-library-template-controls > div {
6218 4941 cursor: pointer;
6219 4942 transition: color 0.5s;
6220 4943 }
6221 -.elementor-template-library-template-local .elementor-template-library-template-insert.disabled,
6222 -.elementor-template-library-template-cloud:not(.elementor-template-library-template-view-grid) .elementor-template-library-template-insert.disabled {
6223 - color: #F5D0FE;
4944 +.elementor-template-library-template-local .elementor-template-library-template-insert i {
4945 + margin-inline-end: 3px;
6224 4946 }
6225 -.elementor-template-library-template-local .elementor-template-library-template-insert.disabled:hover, .elementor-template-library-template-local .elementor-template-library-template-insert.disabled:focus,
6226 -.elementor-template-library-template-cloud:not(.elementor-template-library-template-view-grid) .elementor-template-library-template-insert.disabled:hover,
6227 -.elementor-template-library-template-cloud:not(.elementor-template-library-template-view-grid) .elementor-template-library-template-insert.disabled:focus {
6228 - cursor: not-allowed;
4947 +.elementor-template-library-template-local .elementor-template-library-template-control-title {
4948 + margin-inline-start: 6px;
6229 4949 }
6230 -.elementor-template-library-template-local .elementor-template-library-template-insert i,
6231 -.elementor-template-library-template-cloud:not(.elementor-template-library-template-view-grid) .elementor-template-library-template-insert i {
6232 - margin-inline-end: 3px;
4950 +.elementor-template-library-template-local .elementor-template-library-template-more .elementor-template-library-template-delete:hover {
4951 + color: var(--e-a-color-danger);
6233 4952 }
4953 +.elementor-template-library-template-local .elementor-template-library-template-more {
4954 + display: none;
4955 + position: absolute;
4956 + background-color: var(--e-a-bg-default);
4957 + padding: 3px 20px;
4958 + border-radius: var(--e-a-border-radius);
4959 + box-shadow: 1px 3px 11px rgba(0, 0, 0, 0.3);
4960 + top: 100%;
4961 + left: 0;
4962 + transform: translateX(-65%) translateY(-7px);
4963 + z-index: 1;
4964 +}
4965 +.elementor-template-library-template-local .elementor-template-library-template-more:before {
4966 + content: "";
4967 + position: absolute;
4968 + border: solid transparent;
4969 + border-width: 8px 4px;
4970 + border-block-end-color: var(--e-a-color-white);
4971 + transform: translateY(-100%);
4972 +}
4973 +.elementor-template-library-template-local .elementor-template-library-template-more > div {
4974 + margin: 10px 0;
4975 + font-size: 11px;
4976 +}
4977 +.elementor-template-library-template-local .elementor-template-library-template-more a {
4978 + color: var(--e-a-color-txt);
4979 +}
4980 +.elementor-template-library-template-local .elementor-template-library-template-more-toggle {
4981 + flex-grow: 1;
4982 + text-align: end;
4983 +}
4984 +.elementor-template-library-template-local .elementor-template-library-template-more-toggle i {
4985 + font-size: 16px;
4986 +}
6234 4987
6235 4988 #elementor-template-library-preview {
6236 4989 height: 100%;
6237 4990 overflow: hidden;
@@ -6237,9 +4990,9 @@
6237 4990 overflow: hidden;
6238 4991 }
6239 4992 #elementor-template-library-preview iframe {
6240 4993 height: 150%;
6241 - transform: scale(0.666) translateX(calc(-25% * var(--direction-multiplier))) translateY(-25%);
4994 + transform: scale(0.666) translateX(25%) translateY(-25%);
6242 4995 }
6243 4996 @media (max-width: 1439px) {
6244 4997 #elementor-template-library-preview iframe {
6245 4998 width: 1440px;
@@ -6255,14 +5008,8 @@
6255 5008 font-size: 64px;
6256 5009 margin-block-start: 45px;
6257 5010 line-height: 1;
6258 5011 }
6259 -.elementor-template-library-blank-icon i {
6260 - font-size: 85px;
6261 -}
6262 -.elementor-template-library-blank-icon i.eicon-library-upload {
6263 - font-size: 65px;
6264 -}
6265 5012 .elementor-template-library-blank-icon img {
6266 5013 width: 70px;
6267 5014 }
6268 5015 .elementor-template-library-blank-icon .elementor-template-library-no-results {
@@ -6300,499 +5047,8 @@
6300 5047 #elementor-template-library-save-template-form > * {
6301 5048 height: 55px;
6302 5049 font-size: 16px;
6303 5050 }
6304 -#elementor-template-library-save-template-form .cloud-library-form-inputs > * {
6305 - height: 55px;
6306 - font-size: 16px;
6307 - margin-block-end: 15px;
6308 -}
6309 -#elementor-template-library-save-template-form .cloud-library-form-inputs {
6310 - display: block;
6311 - width: 500px;
6312 - margin: 0 auto;
6313 -}
6314 -#elementor-template-library-save-template-form .cloud-library-form-inputs .upgrade-tooltip,
6315 -#elementor-template-library-save-template-form .cloud-library-form-inputs .connect-badge {
6316 - display: none;
6317 -}
6318 -#elementor-template-library-save-template-form .cloud-library-form-inputs .divider {
6319 - margin-inline: 5px;
6320 -}
6321 -#elementor-template-library-save-template-form .cloud-library-form-inputs .upgrade-badge {
6322 - display: none;
6323 - border: 1px solid rgba(147, 0, 63, 0.5019607843);
6324 - padding: 3px 5px;
6325 - border-radius: 100px;
6326 - margin-inline: 5px;
6327 -}
6328 -#elementor-template-library-save-template-form .cloud-library-form-inputs .upgrade-badge a {
6329 - color: var(--e-a-btn-bg-accent);
6330 -}
6331 -#elementor-template-library-save-template-form .cloud-library-form-inputs .upgrade-badge a i {
6332 - margin-inline-end: 5px;
6333 -}
6334 -#elementor-template-library-save-template-form .cloud-library-form-inputs.max-capacity .quota-cta {
6335 - display: inline;
6336 -}
6337 -#elementor-template-library-save-template-form .cloud-library-form-inputs .ellipsis-container {
6338 - display: inline;
6339 - background: var(--e-a-bg-hover);
6340 - padding: 0 2px 1px;
6341 - border: none;
6342 - border-radius: 2px;
6343 - vertical-align: bottom;
6344 - cursor: pointer;
6345 - font-family: inherit;
6346 - font-size: inherit;
6347 - color: inherit;
6348 - line-height: inherit;
6349 -}
6350 -#elementor-template-library-save-template-form .cloud-library-form-inputs .ellipsis-container:hover {
6351 - background: var(--e-a-bg-active);
6352 -}
6353 -#elementor-template-library-save-template-form .cloud-library-form-inputs .ellipsis-container:focus-visible {
6354 - outline: 2px solid var(--e-a-border-color-focus);
6355 - outline-offset: 2px;
6356 -}
6357 -#elementor-template-library-save-template-form .cloud-library-form-inputs.promotion .upgrade-tooltip,
6358 -#elementor-template-library-save-template-form .cloud-library-form-inputs.promotion .connect-badge,
6359 -#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,
6360 -#elementor-template-library-save-template-form .cloud-library-form-inputs.max-capacity .connect-badge,
6361 -#elementor-template-library-save-template-form .cloud-library-form-inputs.max-capacity .upgrade-badge {
6362 - display: inline;
6363 -}
6364 -#elementor-template-library-save-template-form .cloud-library-form-inputs.promotion .ellipsis-container,
6365 -#elementor-template-library-save-template-form .cloud-library-form-inputs.promotion #cloud,
6366 -#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,
6367 -#elementor-template-library-save-template-form .cloud-library-form-inputs.max-capacity #cloud,
6368 -#elementor-template-library-save-template-form .cloud-library-form-inputs.max-capacity .cloud label {
6369 - pointer-events: none;
6370 -}
6371 -#elementor-template-library-save-template-form .cloud-library-form-inputs.promotion .ellipsis-container,
6372 -#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,
6373 -#elementor-template-library-save-template-form .cloud-library-form-inputs.max-capacity .divider {
6374 - display: none;
6375 -}
6376 -#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 {
6377 - color: var(--e-a-color-txt-muted);
6378 - margin-inline: 5px;
6379 -}
6380 -#elementor-template-library-save-template-form .cloud-library-form-inputs .quota-cta {
6381 - display: none;
6382 - float: inline-start;
6383 -}
6384 -#elementor-template-library-save-template-form .cloud-library-form-inputs .quota-cta p {
6385 - font-size: 13px;
6386 - color: var(--e-a-btn-bg-accent);
6387 - text-align: start;
6388 -}
6389 -#elementor-template-library-save-template-form .cloud-library-form-inputs .quota-cta a {
6390 - color: var(--e-a-btn-bg-accent);
6391 - text-decoration: underline;
6392 -}
6393 -#elementor-template-library-save-template-form .cloud-library-form-inputs #elementor-template-library-save-template-submit {
6394 - float: inline-end;
6395 -}
6396 -#elementor-template-library-save-template-form .cloud-library-form-inputs #elementor-template-library-save-template-submit[disabled] {
6397 - cursor: not-allowed;
6398 -}
6399 -#elementor-template-library-save-template-form .cloud-library-form-inputs .source-selections {
6400 - display: flex;
6401 - flex-direction: column;
6402 - text-align: start;
6403 - border: var(--e-a-border-bold);
6404 - padding: 15px;
6405 - height: auto;
6406 - gap: 10px;
6407 - position: relative;
6408 -}
6409 -#elementor-template-library-save-template-form .cloud-library-form-inputs .source-selections input[type=checkbox]:checked {
6410 - background: #69727D;
6411 - inset-block-start: -3px;
6412 - position: relative;
6413 -}
6414 -#elementor-template-library-save-template-form .cloud-library-form-inputs .source-selections-input {
6415 - position: relative;
6416 - display: inline-block;
6417 -}
6418 -#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 {
6419 - white-space: nowrap;
6420 - text-overflow: ellipsis;
6421 - overflow: hidden;
6422 - overflow: visible;
6423 - display: inline-flex;
6424 - align-items: baseline;
6425 - line-height: 27px;
6426 -}
6427 -#elementor-template-library-save-template-form .cloud-library-form-inputs .source-selections-input #cloud,
6428 -#elementor-template-library-save-template-form .cloud-library-form-inputs .source-selections-input #local {
6429 - flex-shrink: 0;
6430 - position: relative;
6431 - inset-block-start: 2px;
6432 -}
6433 -#elementor-template-library-save-template-form .cloud-library-form-inputs .source-selections-input #cloud:checked,
6434 -#elementor-template-library-save-template-form .cloud-library-form-inputs .source-selections-input #local:checked {
6435 - inset-block-start: -2px;
6436 -}
6437 -#elementor-template-library-save-template-form .cloud-library-form-inputs .source-selections-input .eicon-ellipsis-h {
6438 - vertical-align: bottom;
6439 -}
6440 -#elementor-template-library-save-template-form .cloud-library-form-inputs .source-selections-input .eicon-info {
6441 - margin-inline: 5px;
6442 - color: var(--e-a-color-txt-muted);
6443 - cursor: pointer;
6444 -}
6445 -#elementor-template-library-save-template-form .cloud-library-form-inputs .source-selections-input .selected-folder {
6446 - display: none;
6447 - margin-inline-end: 5px;
6448 - align-items: baseline;
6449 - white-space: nowrap;
6450 - text-overflow: ellipsis;
6451 - overflow: hidden;
6452 -}
6453 -#elementor-template-library-save-template-form .cloud-library-form-inputs .source-selections-input .selected-folder[style*="display: inline"] {
6454 - display: inline-flex !important;
6455 -}
6456 -#elementor-template-library-save-template-form .cloud-library-form-inputs .source-selections-input .selected-folder-text {
6457 - text-decoration: underline;
6458 - cursor: pointer;
6459 - white-space: nowrap;
6460 - text-overflow: ellipsis;
6461 - overflow: hidden;
6462 -}
6463 -#elementor-template-library-save-template-form .cloud-library-form-inputs .source-selections-input .eicon-editor-close {
6464 - cursor: pointer;
6465 - flex-shrink: 0;
6466 -}
6467 -#elementor-template-library-save-template-form .cloud-library-form-inputs .source-selections-input #elementor-template-library-connect__badge {
6468 - color: var(--e-a-color-primary-bold);
6469 - font-size: 14px;
6470 -}
6471 -#elementor-template-library-save-template-form .cloud-library-form-inputs .source-selections-input #elementor-template-library-connect__badge:hover {
6472 - text-decoration: underline;
6473 -}
6474 -#elementor-template-library-save-template-form .cloud-library-form-inputs .cloud-folder-selection-dropdown {
6475 - display: none;
6476 - position: absolute;
6477 - inset-block-start: 40px;
6478 - background-color: var(--e-a-bg-default);
6479 - min-width: 187px;
6480 - overflow: auto;
6481 - box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
6482 - z-index: 1;
6483 - border-radius: 2px;
6484 - max-width: 450px;
6485 -}
6486 -#elementor-template-library-save-template-form .cloud-library-form-inputs .cloud-folder-selection-dropdown li {
6487 - white-space: nowrap;
6488 - text-overflow: ellipsis;
6489 - overflow: hidden;
6490 -}
6491 -#elementor-template-library-save-template-form .cloud-library-form-inputs .cloud-folder-selection-dropdown .eicon-loading {
6492 - margin: 15px;
6493 -}
6494 -#elementor-template-library-save-template-form .cloud-library-form-inputs .cloud-folder-selection-dropdown .eicon-folder-o {
6495 - margin-inline-end: 10px;
6496 -}
6497 -#elementor-template-library-save-template-form .cloud-library-form-inputs .cloud-folder-selection-dropdown .folder-list {
6498 - max-height: 170px;
6499 -}
6500 -#elementor-template-library-save-template-form .cloud-library-form-inputs .cloud-folder-selection-dropdown .folder-item {
6501 - padding: 5px 15px;
6502 - cursor: pointer;
6503 - list-style: none;
6504 -}
6505 -#elementor-template-library-save-template-form .cloud-library-form-inputs .cloud-folder-selection-dropdown .folder-item[data-id="0"] .eicon-folder-o {
6506 - display: none;
6507 -}
6508 -#elementor-template-library-save-template-form .cloud-library-form-inputs .cloud-folder-selection-dropdown .folder-item .eicon-loading {
6509 - margin: 0px;
6510 -}
6511 -#elementor-template-library-save-template-form .cloud-library-form-inputs .cloud-folder-selection-dropdown .folder-item[data-id="0"] {
6512 - text-decoration: underline;
6513 -}
6514 -#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 {
6515 - background: var(--e-a-border-color);
6516 -}
6517 -#elementor-template-library-save-template-form .cloud-library-form-inputs .cloud-folder-selection-dropdown .folder-item:focus-visible {
6518 - outline: 2px solid var(--e-a-border-color-focus);
6519 - outline-offset: -2px;
6520 -}
6521 -#elementor-template-library-save-template-form .cloud-library-form-inputs .cloud-folder-selection-dropdown .folder-item.disabled {
6522 - pointer-events: none;
6523 - opacity: 0.3;
6524 -}
6525 -#elementor-template-library-save-template-form .cloud-library-form-inputs .cloud-folder-selection-dropdown .no-results {
6526 - text-align: center;
6527 - font-size: 13px;
6528 - margin: 0 20px;
6529 - padding-block: 15px;
6530 - pointer-events: none;
6531 -}
6532 -#elementor-template-library-save-template-form .cloud-library-form-inputs .cloud-folder-selection-dropdown .no-results i {
6533 - font-size: 24px;
6534 - padding-block-end: 10px;
6535 -}
6536 -#elementor-template-library-save-template-form .cloud-library-form-inputs #elementor-template-library-save-template-name {
6537 - border-block-start: none;
6538 - border-inline: none;
6539 -}
6540 -#elementor-template-library-save-template-form .cloud-library-form-inputs .source-selections-input.disabled {
6541 - pointer-events: none;
6542 - opacity: 0.3;
6543 -}
6544 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b {
6545 - display: flex;
6546 - flex-direction: column;
6547 - width: 600px;
6548 - text-align: start;
6549 -}
6550 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .template-name-label,
6551 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .save-location-label {
6552 - font-size: 12px;
6553 - font-weight: 400;
6554 - color: var(--e-a-color-txt);
6555 -}
6556 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b #elementor-template-library-save-template-name {
6557 - width: 100%;
6558 - padding: 12px 15px;
6559 - border: var(--e-a-border-bold);
6560 - border-radius: 3px;
6561 - margin-block-end: 0;
6562 -}
6563 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections {
6564 - border: none;
6565 - padding: 0;
6566 - gap: 12px;
6567 - margin-block-start: 20px;
6568 -}
6569 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input {
6570 - display: flex;
6571 - align-items: center;
6572 - padding: 12px 15px;
6573 - border: var(--e-a-border-bold);
6574 - border-radius: 3px;
6575 - width: 100%;
6576 - line-height: normal;
6577 - gap: 8px;
6578 -}
6579 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input:has(input[type=checkbox]:checked) {
6580 - border-color: var(--e-a-color-txt);
6581 -}
6582 -#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 {
6583 - display: flex;
6584 -}
6585 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input input[type=checkbox] {
6586 - margin-inline-end: 0;
6587 - flex-shrink: 0;
6588 - position: relative;
6589 -}
6590 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input input[type=checkbox]:checked {
6591 - inset-block-start: 0;
6592 -}
6593 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input input[type=checkbox]::after {
6594 - content: "";
6595 - position: absolute;
6596 - inset-inline-end: -8px;
6597 - width: 1px;
6598 - height: 18px;
6599 - background-color: var(--e-a-border-color);
6600 -}
6601 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input > i:first-of-type {
6602 - margin-inline-start: 12px;
6603 - margin-inline-end: 4px;
6604 - font-size: 24px;
6605 - color: var(--e-a-color-txt);
6606 -}
6607 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input > svg:first-of-type {
6608 - margin-inline-start: 8px;
6609 - margin-inline-end: 0;
6610 - font-size: 24px;
6611 - color: var(--e-a-color-txt);
6612 -}
6613 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input label {
6614 - flex: 0 0 auto;
6615 - margin: 0;
6616 - cursor: pointer;
6617 -}
6618 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input .divider {
6619 - margin-inline: 0;
6620 -}
6621 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input .ellipsis-container {
6622 - display: inline;
6623 - background: transparent;
6624 - padding: 0;
6625 - border-radius: 0;
6626 - vertical-align: baseline;
6627 - text-decoration: underline;
6628 - cursor: pointer;
6629 - margin-inline-start: 0;
6630 -}
6631 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input .ellipsis-container:hover {
6632 - background: transparent;
6633 -}
6634 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input .select-folder-link {
6635 - color: var(--e-a-color-primary-bold);
6636 - text-decoration: underline;
6637 - cursor: pointer;
6638 - margin-inline-start: 4px;
6639 -}
6640 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input .select-folder-link:hover {
6641 - text-decoration: none;
6642 -}
6643 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input .upgrade-badge {
6644 - display: none;
6645 - border: none;
6646 - padding: 0;
6647 - border-radius: 0;
6648 - margin-inline-start: 0;
6649 - background: transparent;
6650 - transition: background-color 0.2s;
6651 - padding: 3px 8px;
6652 -}
6653 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input .upgrade-badge:hover {
6654 - background-color: var(--e-a-btn-bg-primary-hover);
6655 - border-radius: 3px;
6656 -}
6657 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input .upgrade-badge a {
6658 - color: var(--e-a-btn-bg-accent);
6659 - text-decoration: none;
6660 - display: flex;
6661 - align-items: center;
6662 - gap: 4px;
6663 - font-size: 14px;
6664 - font-weight: 500;
6665 -}
6666 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input .upgrade-badge a i {
6667 - margin: 0;
6668 - font-size: 14px;
6669 -}
6670 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input .connect-badge {
6671 - display: none;
6672 -}
6673 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input .connect-badge .connect-divider {
6674 - color: var(--e-a-color-txt-muted);
6675 - margin-inline: 5px;
6676 -}
6677 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input .connect-badge a {
6678 - color: var(--e-a-color-info);
6679 - text-decoration: underline;
6680 -}
6681 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input .connect-badge a:hover {
6682 - text-decoration: none;
6683 -}
6684 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input .account-badge {
6685 - display: flex;
6686 - align-items: center;
6687 - gap: 6px;
6688 - padding: 6px 12px;
6689 - border: none;
6690 - border-radius: 20px;
6691 - font-size: 14px;
6692 - font-weight: 500;
6693 - cursor: pointer;
6694 - transition: opacity 0.2s;
6695 - margin-inline-start: auto;
6696 -}
6697 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input .account-badge:hover {
6698 - opacity: 0.8;
6699 -}
6700 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input .account-badge i {
6701 - margin: 0;
6702 - font-size: 14px;
6703 -}
6704 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input .account-badge.cloud-account-badge {
6705 - background-color: var(--e-a-bg-info);
6706 - color: var(--e-a-color-info);
6707 -}
6708 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input .account-badge.cloud-account-badge i {
6709 - color: var(--e-a-color-info);
6710 -}
6711 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input .account-badge.site-account-badge {
6712 - background-color: var(--e-a-bg-warning);
6713 - color: var(--e-a-btn-bg-warning-hover);
6714 -}
6715 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input .account-badge.site-account-badge i {
6716 - color: var(--e-a-btn-bg-warning-hover);
6717 -}
6718 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input .selected-folder {
6719 - display: none;
6720 - margin-inline-start: 8px;
6721 - align-items: center;
6722 - gap: 6px;
6723 -}
6724 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input .selected-folder[style*="display: inline"] {
6725 - display: inline-flex !important;
6726 -}
6727 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input .selected-folder-text {
6728 - text-decoration: underline;
6729 - cursor: pointer;
6730 -}
6731 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input .eicon-editor-close {
6732 - cursor: pointer;
6733 - font-size: 14px;
6734 -}
6735 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .cloud-folder-selection-dropdown {
6736 - inset-block-start: 75px;
6737 - inset-inline-start: 230px;
6738 -}
6739 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections-input.cloud:not(:has(.connect-badge)) .connect-badge {
6740 - display: none;
6741 -}
6742 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections-input.cloud:has(.connect-badge) .connect-badge {
6743 - display: inline;
6744 -}
6745 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections-input.cloud:has(.connect-badge) .upgrade-badge {
6746 - display: none;
6747 -}
6748 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections-input.cloud:has(.connect-badge) {
6749 - border-color: var(--e-a-border-color);
6750 -}
6751 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections-input.cloud:has(.connect-badge) > i:first-of-type,
6752 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections-input.cloud:has(.connect-badge) label,
6753 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections-input.cloud:has(.connect-badge) .divider {
6754 - color: var(--e-a-color-txt-disabled);
6755 -}
6756 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections-input.cloud:has(.connect-badge) input[type=checkbox]::after {
6757 - background-color: var(--e-a-color-txt-disabled);
6758 -}
6759 -#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 {
6760 - border-color: var(--e-a-border-color);
6761 -}
6762 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b.promotion .source-selections-input.cloud > i:first-of-type,
6763 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b.promotion .source-selections-input.cloud label,
6764 -#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,
6765 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b.max-capacity .source-selections-input.cloud label,
6766 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b.max-capacity .source-selections-input.cloud .divider {
6767 - color: var(--e-a-color-txt-disabled);
6768 -}
6769 -#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 {
6770 - background-color: var(--e-a-color-txt-disabled);
6771 -}
6772 -#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 {
6773 - display: inline-flex;
6774 -}
6775 -#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 {
6776 - display: none;
6777 -}
6778 -#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 {
6779 - display: block;
6780 -}
6781 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b.promotion .source-selections-input.cloud input[type=checkbox],
6782 -#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],
6783 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b.max-capacity .source-selections-input.cloud label {
6784 - pointer-events: none;
6785 -}
6786 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b.max-capacity .quota-cta {
6787 - display: block;
6788 - margin-block-start: 15px;
6789 -}
6790 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b #elementor-template-library-save-template-submit {
6791 - align-self: center;
6792 - margin-block-start: 20px;
6793 - float: none;
6794 -}
6795 5051
6796 5052 #elementor-template-library-save-template-name {
6797 5053 width: 500px;
6798 5054 padding-inline-start: 25px;
@@ -6844,12 +5100,8 @@
6844 5100 padding: 100px 0 0;
6845 5101 min-height: 550px;
6846 5102 }
6847 5103
6848 -.elementor-template-library-cloud-empty__button {
6849 - margin-block-start: 45px;
6850 -}
6851 -
6852 5104 #elementor-template-library-connect-logo {
6853 5105 font-size: 20px;
6854 5106 }
6855 5107 #elementor-template-library-connect__button {
@@ -6886,11 +5138,11 @@
6886 5138 }
6887 5139
6888 5140 .elementor-template-library-blank-footer {
6889 5141 position: absolute;
6890 - inset-block-end: 70px;
6891 - inset-inline-start: 50%;
6892 - transform: translateX(calc(-50% * var(--direction-multiplier)));
5142 + bottom: 70px;
5143 + left: 50%;
5144 + transform: translateX(-50%);
6893 5145 font-style: italic;
6894 5146 color: var(--e-a-color-txt-muted);
6895 5147 }
6896 5148 @media (max-height: 700px) {
@@ -6922,287 +5174,50 @@
6922 5174 #elementor-template-library-error-info {
6923 5175 margin-block-start: 10px;
6924 5176 }
6925 5177
6926 -#elementor-library--infotip__dialog,
6927 -#elementor-library--connect_infotip__dialog,
6928 -#elementor-library--cloud-upgrade__dialog,
6929 -#elementor-library--site-info__dialog {
6930 - position: absolute;
6931 - z-index: 10000;
6932 - background-color: var(--e-a-bg-default);
6933 - box-shadow: var(--e-a-popover-shadow);
6934 - border-radius: var(--e-a-border-radius);
5178 +@media (max-width: 1439px) {
5179 + .elementor-template-library-local-column-1 {
5180 + width: 33%;
5181 + }
5182 + .elementor-template-library-local-column-2 {
5183 + width: 10%;
5184 + }
5185 + .elementor-template-library-local-column-3 {
5186 + width: 15%;
5187 + }
5188 + .elementor-template-library-local-column-4 {
5189 + width: 15%;
5190 + }
5191 + .elementor-template-library-local-column-5 {
5192 + width: 27%;
5193 + }
6935 5194 }
6936 -#elementor-library--infotip__dialog.variant-b,
6937 -#elementor-library--connect_infotip__dialog.variant-b,
6938 -#elementor-library--cloud-upgrade__dialog.variant-b,
6939 -#elementor-library--site-info__dialog.variant-b {
6940 - width: 200px;
6941 - color: var(--e-a-color-txt-invert);
6942 - background-color: var(--e-a-bg-secondary);
5195 +@media (min-width: 1440px) {
5196 + .elementor-template-library-local-column-1 {
5197 + width: 25%;
5198 + }
5199 + .elementor-template-library-local-column-2 {
5200 + width: 17%;
5201 + }
5202 + .elementor-template-library-local-column-3 {
5203 + width: 17%;
5204 + }
5205 + .elementor-template-library-local-column-4 {
5206 + width: 17%;
5207 + }
5208 + .elementor-template-library-local-column-5 {
5209 + width: 24%;
5210 + }
6943 5211 }
6944 -#elementor-library--infotip__dialog.variant-b .dialog-message,
6945 -#elementor-library--connect_infotip__dialog.variant-b .dialog-message,
6946 -#elementor-library--cloud-upgrade__dialog.variant-b .dialog-message,
6947 -#elementor-library--site-info__dialog.variant-b .dialog-message {
6948 - padding: 4px 8px 4px 8px;
5212 +@media (max-width: 1024px) {
5213 + .elementor-template-library-local-column-3 {
5214 + display: none;
5215 + }
5216 + .elementor-template-library-local-column-5 {
5217 + width: 41%;
5218 + }
6949 5219 }
6950 -#elementor-library--infotip__dialog__title,
6951 -#elementor-library--connect_infotip__dialog__title,
6952 -#elementor-library--cloud-upgrade__dialog__title,
6953 -#elementor-library--site-info__dialog__title {
6954 - font-size: 14px;
6955 -}
6956 -#elementor-library--infotip__dialog .dialog-buttons-wrapper,
6957 -#elementor-library--connect_infotip__dialog .dialog-buttons-wrapper,
6958 -#elementor-library--cloud-upgrade__dialog .dialog-buttons-wrapper,
6959 -#elementor-library--site-info__dialog .dialog-buttons-wrapper {
6960 - padding: 10px 0 10px 10px;
6961 - float: inline-end;
6962 -}
6963 -#elementor-library--infotip__dialog .dialog-button,
6964 -#elementor-library--connect_infotip__dialog .dialog-button,
6965 -#elementor-library--cloud-upgrade__dialog .dialog-button,
6966 -#elementor-library--site-info__dialog .dialog-button {
6967 - padding: 7px 25px;
6968 - font-size: 13px;
6969 - background: none;
6970 - color: var(--e-a-btn-bg-accent);
6971 - border: none;
6972 - font-weight: 500;
6973 - cursor: pointer;
6974 -}
6975 -#elementor-library--infotip__dialog:after,
6976 -#elementor-library--connect_infotip__dialog:after,
6977 -#elementor-library--cloud-upgrade__dialog:after,
6978 -#elementor-library--site-info__dialog:after {
6979 - content: "";
6980 - position: absolute;
6981 - inset-inline-end: 46%;
6982 - transform: scaleX(0.7);
6983 - border: 10px solid transparent;
6984 -}
6985 -
6986 -#elementor-library--infotip__dialog {
6987 - width: 265px;
6988 -}
6989 -#elementor-library--infotip__dialog .dialog-message {
6990 - padding: 20px 20px 0px 20px;
6991 -}
6992 -#elementor-library--infotip__dialog:after {
6993 - inset-block-start: 100%;
6994 - border-block-start-color: var(--e-a-bg-default);
6995 -}
6996 -#elementor-library--infotip__dialog.variant-b:after {
6997 - border-block-start-color: var(--e-a-bg-secondary);
6998 -}
6999 -
7000 -#elementor-library--connect_infotip__dialog {
7001 - width: 265px;
7002 -}
7003 -#elementor-library--connect_infotip__dialog .dialog-message {
7004 - padding: 20px;
7005 -}
7006 -#elementor-library--connect_infotip__dialog:not(.variant-b):after {
7007 - inset-block-end: 100%;
7008 - border-block-end-color: var(--e-a-bg-default);
7009 -}
7010 -#elementor-library--connect_infotip__dialog.variant-b:after {
7011 - border-block-start-color: var(--e-a-bg-secondary);
7012 - inset-block-start: 100%;
7013 -}
7014 -#elementor-library--connect_infotip__dialog.variant-b {
7015 - width: 265px;
7016 -}
7017 -
7018 -#elementor-library--cloud-upgrade__dialog {
7019 - width: 265px;
7020 -}
7021 -#elementor-library--cloud-upgrade__dialog:after {
7022 - inset-block-start: 100%;
7023 - border-block-start-color: var(--e-a-bg-default);
7024 -}
7025 -#elementor-library--cloud-upgrade__dialog.variant-b:after {
7026 - border-block-start-color: var(--e-a-bg-secondary);
7027 -}
7028 -
7029 -#elementor-library--site-info__dialog {
7030 - width: 265px;
7031 -}
7032 -#elementor-library--site-info__dialog:after {
7033 - inset-block-start: 100%;
7034 - border-block-start-color: var(--e-a-bg-default);
7035 -}
7036 -#elementor-library--site-info__dialog.variant-b:after {
7037 - border-block-start-color: var(--e-a-bg-secondary);
7038 -}
7039 -
7040 -.elementor-global-styles-dialog {
7041 - --gsd-color-text-primary: #0c0d0e;
7042 - --gsd-color-text-secondary: #3f444b;
7043 - --gsd-color-text-tertiary: #69727D;
7044 - --gsd-color-divider: rgba(0, 0, 0, 0.12);
7045 - --gsd-color-primary-main: #f0abfc;
7046 - --gsd-color-primary-hover: #e879f9;
7047 - --gsd-color-secondary-main: #515962;
7048 - --gsd-border-radius: 4px;
7049 - --gsd-spacing-horizontal: 24px;
7050 - --gsd-font-family: 'Roboto', sans-serif;
7051 - padding: 16px 0 0;
7052 - min-width: 444px;
7053 -}
7054 -.elementor-global-styles-dialog__header {
7055 - padding: 10px var(--gsd-spacing-horizontal) 0;
7056 - margin-block-end: 16px;
7057 -}
7058 -.elementor-global-styles-dialog__header h2 {
7059 - margin: 0 0 4px;
7060 - font-family: var(--gsd-font-family);
7061 - font-size: 16px;
7062 - font-weight: 500;
7063 - line-height: 1.3;
7064 - color: var(--gsd-color-text-primary);
7065 - letter-spacing: 0.15px;
7066 -}
7067 -.elementor-global-styles-dialog__header p {
7068 - margin: 0;
7069 - font-family: var(--gsd-font-family);
7070 - font-size: 14px;
7071 - font-weight: 400;
7072 - line-height: 20px;
7073 - color: var(--gsd-color-text-secondary);
7074 - letter-spacing: 0.15px;
7075 -}
7076 -.elementor-global-styles-dialog__options {
7077 - display: flex;
7078 - flex-direction: column;
7079 - gap: 12px;
7080 - padding: 0 var(--gsd-spacing-horizontal);
7081 -}
7082 -.elementor-global-styles-dialog__radio-card {
7083 - display: flex;
7084 - gap: 0;
7085 - padding: 12px 8px;
7086 - border: 1px solid var(--gsd-color-divider);
7087 - border-radius: var(--gsd-border-radius);
7088 - cursor: pointer;
7089 - transition: border-color 0.2s ease;
7090 -}
7091 -.elementor-global-styles-dialog__radio-card:has(input[type=radio]:checked) {
7092 - border: 2px solid var(--gsd-color-text-primary);
7093 - padding: 11px 7px;
7094 -}
7095 -.elementor-global-styles-dialog__radio-card input[type=radio] {
7096 - flex-shrink: 0;
7097 - width: 20px;
7098 - height: 20px;
7099 - margin: 9px;
7100 - cursor: pointer;
7101 - color: var(--gsd-color-text-tertiary);
7102 - accent-color: var(--gsd-color-text-primary);
7103 -}
7104 -.elementor-global-styles-dialog__radio-card-content {
7105 - display: flex;
7106 - align-items: flex-start;
7107 - flex-direction: column;
7108 - flex: 1;
7109 -}
7110 -.elementor-global-styles-dialog__radio-label {
7111 - font-family: var(--gsd-font-family);
7112 - font-size: 14px;
7113 - font-weight: 500;
7114 - line-height: 18px;
7115 - color: var(--gsd-color-text-primary);
7116 - letter-spacing: 0.15px;
7117 -}
7118 -.elementor-global-styles-dialog__radio-description {
7119 - font-family: var(--gsd-font-family);
7120 - font-size: 12px;
7121 - font-weight: 400;
7122 - line-height: 20px;
7123 - color: var(--gsd-color-text-secondary);
7124 - letter-spacing: 0.4px;
7125 -}
7126 -.elementor-global-styles-dialog__checkbox-container {
7127 - display: flex;
7128 - align-items: flex-start;
7129 - gap: 4px;
7130 - padding: 0;
7131 - margin-block-start: 0;
7132 -}
7133 -.elementor-global-styles-dialog__checkbox-option {
7134 - display: flex;
7135 - align-items: flex-start;
7136 - gap: 4px;
7137 - cursor: pointer;
7138 -}
7139 -.elementor-global-styles-dialog__checkbox-option input[type=checkbox] {
7140 - width: 18px;
7141 - height: 18px;
7142 - margin: 4px;
7143 - cursor: pointer;
7144 -}
7145 -.elementor-global-styles-dialog__checkbox-option input[type=checkbox]:checked {
7146 - background-color: var(--gsd-color-text-tertiary);
7147 -}
7148 -.elementor-global-styles-dialog__checkbox-label {
7149 - font-family: var(--gsd-font-family);
7150 - font-size: 12px;
7151 - font-weight: 400;
7152 - line-height: 1.43;
7153 - color: var(--gsd-color-text-primary);
7154 - letter-spacing: 0.15px;
7155 - padding-block-start: 4px;
7156 - margin-inline-start: 4px;
7157 -}
7158 -.elementor-global-styles-dialog__checkbox-label a {
7159 - color: #2563eb;
7160 - text-decoration: underline;
7161 -}
7162 -.elementor-global-styles-dialog__checkbox-label a:hover {
7163 - color: #2563eb;
7164 -}
7165 -.elementor-global-styles-dialog__footer {
7166 - display: flex;
7167 - justify-content: flex-end;
7168 - align-items: center;
7169 - gap: 8px;
7170 - padding: 16px var(--gsd-spacing-horizontal);
7171 -}
7172 -.elementor-global-styles-dialog__button-cancel {
7173 - padding: 6px 8px;
7174 - font-family: var(--gsd-font-family);
7175 - font-size: 15px;
7176 - font-weight: 500;
7177 - line-height: 24px;
7178 - letter-spacing: 0.4px;
7179 - color: var(--gsd-color-secondary-main);
7180 - background: transparent;
7181 - border: none;
7182 - border-radius: var(--gsd-border-radius);
7183 - cursor: pointer;
7184 -}
7185 -.elementor-global-styles-dialog__button-cancel:hover {
7186 - background: rgba(0, 0, 0, 0.04);
7187 -}
7188 -.elementor-global-styles-dialog__button-insert {
7189 - padding: 6px 16px;
7190 - font-family: var(--gsd-font-family);
7191 - font-size: 15px;
7192 - font-weight: 500;
7193 - line-height: 24px;
7194 - letter-spacing: 0.4px;
7195 - color: var(--gsd-color-text-primary);
7196 - background: var(--gsd-color-primary-main);
7197 - border: none;
7198 - border-radius: var(--gsd-border-radius);
7199 - cursor: pointer;
7200 -}
7201 -.elementor-global-styles-dialog__button-insert:hover {
7202 - background: var(--gsd-color-primary-hover);
7203 -}
7204 -
7205 5220 .elementor-tags-list {
7206 5221 display: none;
7207 5222 position: absolute;
7208 5223 width: 260px;
@@ -7292,10 +5307,10 @@
7292 5307 }
7293 5308 .elementor-tag-settings-popup:before {
7294 5309 content: "";
7295 5310 position: absolute;
7296 - inset-block-start: -20px;
7297 - inset-inline-start: 5px;
5311 + top: -20px;
5312 + right: 5px;
7298 5313 border: 10px solid transparent;
7299 5314 border-block-end-color: var(--e-a-border-color);
7300 5315 }
7301 5316 .elementor-tag-settings-popup .elementor-control-type-section:first-child {
@@ -7386,14 +5401,8 @@
7386 5401 cursor: default;
7387 5402 opacity: 0.5;
7388 5403 color: var(--e-a-color-disabled);
7389 5404 }
7390 -.elementor-context-menu-list__item--disabled.elementor-context-menu-list__item--has-shortcut-action {
7391 - opacity: 1;
7392 -}
7393 -.elementor-context-menu-list__item--disabled.elementor-context-menu-list__item--has-shortcut-action > :not(.elementor-context-menu-list__item__shortcut) {
7394 - opacity: 0.5;
7395 -}
7396 5405 .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 {
7397 5406 background-color: var(--e-a-bg-hover);
7398 5407 color: var(--e-a-color-hover);
7399 5408 }
@@ -7411,31 +5420,15 @@
7411 5420 color: var(--e-a-color-txt-muted);
7412 5421 }
7413 5422 .elementor-context-menu-list__item__shortcut--link-fullwidth {
7414 5423 position: absolute;
7415 - inset: 0;
5424 + left: 0;
5425 + top: 0;
5426 + width: 100%;
5427 + height: 100%;
7416 5428 z-index: 2;
7417 5429 cursor: pointer;
7418 5430 }
7419 -.elementor-context-menu-list__item__shortcut__new-badge {
7420 - border: 1px solid var(--e-a-color-primary-bold);
7421 - padding: 2px 8px;
7422 - color: var(--e-a-color-primary-bold);
7423 - border-radius: 10px;
7424 - font-size: 10px;
7425 -}
7426 -.elementor-context-menu-list__item__shortcut__promotion-badge {
7427 - display: flex;
7428 - align-items: center;
7429 - justify-content: center;
7430 - width: 24px;
7431 - height: 24px;
7432 - border-radius: 50%;
7433 - background-color: rgba(214, 16, 124, 0.12);
7434 - color: var(--e-a-color-accent-promotion, #D6107C);
7435 - font-size: 16px;
7436 - cursor: pointer;
7437 -}
7438 5431 .elementor-context-menu-list__item__title, .elementor-context-menu-list__item__shortcut {
7439 5432 font-size: 14px;
7440 5433 font-style: normal;
7441 5434 font-weight: 400;
@@ -7444,11 +5437,8 @@
7444 5437 }
7445 5438 .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 > * {
7446 5439 color: var(--e-global-color-danger);
7447 5440 }
7448 -.elementor-context-menu-list__item.elementor-hidden {
7449 - display: none;
7450 -}
7451 5441 .elementor-context-menu .eicon-pro-icon {
7452 5442 color: var(--e-global-color-accent);
7453 5443 }
7454 5444
@@ -7520,9 +5510,9 @@
7520 5510 }
7521 5511 .elementor-hotkeys__item--shortcut kbd:not(:last-of-type)::after {
7522 5512 content: "+";
7523 5513 position: absolute;
7524 - inset-inline-end: 0;
5514 + left: 0;
7525 5515 width: 9px;
7526 5516 text-align: center;
7527 5517 margin-inline-end: -18px;
7528 5518 }
@@ -7595,18 +5585,17 @@
7595 5585 }
7596 5586
7597 5587 body {
7598 5588 --e-editor-navigator-width: 240px;
7599 - --e-editor-navigator-indicator-width: 3px;
7600 5589 --e-editor-navigator-promotion-height: 30px;
7601 5590 }
7602 5591
7603 5592 #elementor-navigator {
7604 5593 position: fixed;
7605 - inset-block-start: 100px;
7606 - inset-inline-end: 30px;
5594 + top: 100px;
7607 5595 width: var(--e-editor-navigator-width);
7608 5596 height: 50vh;
5597 + left: 30px;
7609 5598 background-color: var(--e-a-bg-default);
7610 5599 border: var(--e-a-border);
7611 5600 box-shadow: 0 2px 20px 0 rgba(0, 0, 0, 0.1);
7612 5601 -webkit-user-select: none;
@@ -7616,10 +5605,10 @@
7616 5605 z-index: 100;
7617 5606 display: none;
7618 5607 }
7619 5608 body.elementor-navigator-docked #elementor-navigator {
7620 - inset: 0;
7621 - inset-inline-start: auto;
5609 + top: 0;
5610 + left: 0;
7622 5611 height: 100%;
7623 5612 }
7624 5613 body:not(.elementor-navigator-docked) #elementor-navigator {
7625 5614 border-radius: 5px;
@@ -7642,22 +5631,8 @@
7642 5631 font-weight: 400;
7643 5632 padding: 10px 0;
7644 5633 cursor: move;
7645 5634 }
7646 -iframe + #elementor-navigator__header__title, #elementor-navigator__ai-titles + #elementor-navigator__header__title {
7647 - padding-inline-end: 17.5px;
7648 -}
7649 -#elementor-navigator__ai-titles {
7650 - width: 35px;
7651 - text-align: center;
7652 - cursor: pointer;
7653 - background-color: transparent;
7654 - border: none;
7655 - outline: none;
7656 -}
7657 -#elementor-navigator__ai-titles:hover {
7658 - color: #E73CF6;
7659 -}
7660 5635 #elementor-navigator__close, #elementor-navigator__toggle-all {
7661 5636 color: var(--e-a-color-txt);
7662 5637 background-color: transparent;
7663 5638 border: none;
@@ -7735,9 +5710,9 @@
7735 5710 .elementor-navigator__item[data-locked=true] {
7736 5711 cursor: not-allowed;
7737 5712 }
7738 5713 .elementor-navigator__item:not(.elementor-active) .elementor-navigator__element__list-toggle i {
7739 - transform: rotate(calc(-90deg * var(--direction-multiplier)));
5714 + transform: rotate(90deg);
7740 5715 }
7741 5716 .elementor-navigator__item > * {
7742 5717 display: flex;
7743 5718 align-items: center;
@@ -7752,9 +5727,9 @@
7752 5727 .elementor-navigator__elements .elementor-empty-view {
7753 5728 padding: 10px;
7754 5729 }
7755 5730 .elementor-navigator__elements .elementor-empty-view__title {
7756 - margin-inline-start: 34px;
5731 + margin-inline-start: 23px;
7757 5732 font-size: 10px;
7758 5733 font-style: italic;
7759 5734 }
7760 5735 .elementor-navigator__elements .ui-sortable-helper {
@@ -7822,9 +5797,9 @@
7822 5797 overflow: hidden;
7823 5798 }
7824 5799 .elementor-navigator__element__toggle {
7825 5800 position: absolute;
7826 - inset-inline-end: 15px;
5801 + left: 15px;
7827 5802 height: 100%;
7828 5803 z-index: 0;
7829 5804 font-size: 13px;
7830 5805 }
@@ -7830,12 +5805,13 @@
7830 5805 }
7831 5806 .elementor-navigator__element__indicators {
7832 5807 position: relative;
7833 5808 transition: transform 0.5s;
5809 + padding-inline-start: 5px;
7834 5810 z-index: 91;
7835 5811 }
7836 5812 .elementor-navigator__element__indicators:not(:hover) {
7837 - transform: translateX(calc(100% * var(--direction-multiplier) - var(--e-editor-navigator-indicator-width) * var(--direction-multiplier)));
5813 + transform: translateX(calc(-100% + 8px));
7838 5814 }
7839 5815 .elementor-navigator__element__indicator {
7840 5816 height: 100%;
7841 5817 width: 31px;
@@ -7843,13 +5819,16 @@
7843 5819 align-items: center;
7844 5820 justify-content: center;
7845 5821 color: var(--e-a-color-txt);
7846 5822 background-color: var(--e-a-bg-default);
7847 - border-inline-end: var(--e-a-border);
5823 + border-inline-start: var(--e-a-border);
7848 5824 }
7849 5825 .elementor-navigator__element__indicator:first-child {
7850 - border-inline-start: var(--e-editor-navigator-indicator-width) solid var(--e-a-border-color-accent);
5826 + border-inline-start: 3px solid var(--e-a-border-color-accent);
7851 5827 }
5828 +.elementor-editing .elementor-navigator__element__indicator:first-child {
5829 + border-color: #242729;
5830 +}
7852 5831 .elementor-navigator__element__indicator:hover {
7853 5832 color: var(--e-a-color-txt-hover);
7854 5833 }
7855 5834 .elementor-navigator__element--hidden .elementor-navigator__element__title,
@@ -7862,9 +5841,9 @@
7862 5841
7863 5842 .e-notice-bar {
7864 5843 position: absolute;
7865 5844 width: 100%;
7866 - inset-block-end: 0;
5845 + bottom: 0;
7867 5846 display: flex;
7868 5847 align-items: center;
7869 5848 height: 40px;
7870 5849 color: #fff;
@@ -7888,9 +5867,9 @@
7888 5867 padding: 4px 10px;
7889 5868 font-size: 11px;
7890 5869 }
7891 5870 .e-notice-bar__primary_action a:hover {
7892 - color: rgb(70.5, 0, 30.2142857143);
5871 + color: #47001e;
7893 5872 background: #F1F2F3;
7894 5873 }
7895 5874 .e-notice-bar__secondary_message, .e-notice-bar__secondary_action {
7896 5875 font-size: 11px;
@@ -7990,11 +5969,11 @@
7990 5969 background-color: transparent;
7991 5970 }
7992 5971 #elementor-icons-manager__search i {
7993 5972 position: absolute;
7994 - inset-block-start: 50%;
7995 - inset-inline-end: 15px;
5973 + top: 50%;
7996 5974 transform: translateY(-50%);
5975 + left: 15px;
7997 5976 }
7998 5977 #elementor-icons-manager__tab__wrapper {
7999 5978 overflow: auto;
8000 5979 margin: 25px -15px 0;
@@ -8083,10 +6062,10 @@
8083 6062 content: "";
8084 6063 position: absolute;
8085 6064 height: 100%;
8086 6065 width: 3px;
8087 - inset-block-start: 0;
8088 - inset-inline-start: 0;
6066 + top: 0;
6067 + right: 0;
8089 6068 background-color: var(--e-a-border-color-accent);
8090 6069 }
8091 6070 .elementor-icons-manager__tab__item {
8092 6071 position: relative;
@@ -8111,11 +6090,11 @@
8111 6090 flex-direction: column;
8112 6091 align-items: center;
8113 6092 width: 100%;
8114 6093 position: absolute;
8115 - inset-block-start: 50%;
8116 - inset-inline-start: 50%;
8117 - transform: translate(calc(-50% * var(--direction-multiplier)), -50%);
6094 + top: 50%;
6095 + left: 50%;
6096 + transform: translate(-50%, -50%);
8118 6097 padding: 1px;
8119 6098 }
8120 6099 .elementor-icons-manager__tab__item__icon {
8121 6100 font-size: 25px;
@@ -8159,12 +6138,11 @@
8159 6138 }
8160 6139 .pickr .pcr-button:before, .pickr .pcr-button:after {
8161 6140 height: 12px;
8162 6141 width: 12px;
8163 - position: absolute;
8164 - inset-block-start: 50%;
8165 - inset-inline-start: 50%;
8166 - transform: translate(calc(-50% * var(--direction-multiplier)), -50%);
6142 + top: 50%;
6143 + left: 50%;
6144 + transform: translate(-50%, -50%);
8167 6145 }
8168 6146
8169 6147 .pcr-app {
8170 6148 background-color: var(--e-a-bg-default);
@@ -8271,9 +6249,12 @@
8271 6249 font-family: "eicons";
8272 6250 color: var(--e-a-btn-color-invert);
8273 6251 text-indent: 0;
8274 6252 position: absolute;
8275 - inset: 0;
6253 + left: 0;
6254 + top: 0;
6255 + width: 100%;
6256 + height: 100%;
8276 6257 display: flex;
8277 6258 justify-content: center;
8278 6259 align-items: center;
8279 6260 }
@@ -8304,9 +6285,9 @@
8304 6285 }
8305 6286
8306 6287 .select2-selection__arrow {
8307 6288 height: 27px;
8308 - inset-block-start: 0;
6289 + top: 0;
8309 6290 }
8310 6291
8311 6292 .select2-results__option[aria-selected=true] {
8312 6293 background-color: var(--e-a-bg-active);
@@ -8329,12 +6310,12 @@
8329 6310 .e-ui-state--document-scrubbing-mode__on, .e-ui-state--document-scrubbing-mode__on * {
8330 6311 cursor: ew-resize;
8331 6312 }
8332 6313 .e-ui-state--document-scrubbing-mode__on input.e-scrubbing--active, .e-ui-state--document-scrubbing-mode__on input.e-scrubbing--active:focus {
8333 - box-shadow: 0 0 0 1px rgb(14.2857142857, 58.5714285714, 155.7142857143) inset;
6314 + box-shadow: 0 0 0 1px #0e3b9c inset;
8334 6315 }
8335 6316 .e-ui-state--document-scrubbing-mode__on label.e-scrubbing--active {
8336 - color: rgb(14.2857142857, 58.5714285714, 155.7142857143);
6317 + color: #0e3b9c;
8337 6318 -webkit-user-select: none;
8338 6319 -moz-user-select: none;
8339 6320 user-select: none;
8340 6321 }
@@ -8365,10 +6346,11 @@
8365 6346 padding: 0;
8366 6347 margin: 0;
8367 6348 height: 100px;
8368 6349 position: absolute;
8369 - inset-block-start: -60px;
8370 - inset-inline: 0;
6350 + top: -60px;
6351 + left: 0;
6352 + right: 0;
8371 6353 }
8372 6354 #elementor-paste-area-dialog #elementor-paste-area-dialog__input:focus {
8373 6355 border-color: transparent;
8374 6356 outline: none;
@@ -8395,23 +6377,21 @@
8395 6377 }
8396 6378
8397 6379 [class^=eicon-flex], [class*=" eicon-flex"] {
8398 6380 transition: 0.3s all;
6381 + --is-ltr: 1;
6382 + --is-rtl: 0;
6383 + --rotation-direction: calc(var(--is-ltr) - var(--is-rtl));
6384 + --is-ltr: 0;
6385 + --is-rtl: 1;
8399 6386 }
8400 6387 [class^=eicon-flex].eicon-inline, [class*=" eicon-flex"].eicon-inline {
8401 6388 max-height: 1em;
8402 6389 max-width: 1em;
8403 6390 }
8404 -[class^=eicon-flex], [class*=" eicon-flex"] {
8405 - --is-ltr: 0;
8406 - --is-rtl: 1;
8407 -}
8408 6391 [class^=eicon-flex]:is(.eicon-justify-start-h, .eicon-justify-end-h), [class*=" eicon-flex"]:is(.eicon-justify-start-h, .eicon-justify-end-h) {
8409 6392 --rotation-direction: calc(var(--is-ltr) + var(--is-rtl));
8410 6393 }
8411 -[class^=eicon-flex], [class*=" eicon-flex"] {
8412 - --rotation-direction: calc(var(--is-ltr) - var(--is-rtl));
8413 -}
8414 6394 :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) {
8415 6395 transform: rotate(calc(var(--rotation-direction) * 90deg));
8416 6396 }
8417 6397 :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) {
@@ -8424,16 +6404,6 @@
8424 6404 transform: rotate(calc(var(--is-rtl) * 180deg));
8425 6405 }
8426 6406 .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) {
8427 6407 transform: rotate(calc(var(--is-ltr) * 180deg));
8428 -}
8429 -
8430 -.elementor-editor-active .embed-media-settings .setting.caption {
8431 - display: none;
8432 -}
8433 -.elementor-editor-active .embed-media-settings .setting.align {
8434 - display: none;
8435 -}
8436 -.elementor-editor-active .embed-media-settings fieldset.setting-group {
8437 - display: none;
8438 6408 }
8439 6409 /*# sourceMappingURL=editor-rtl.css.map */