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.css +502 -2436 4.3.0-beta23.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 + right: 0;
66 67 height: 100%;
67 68 width: 0;
68 69 background-color: var(--e-a-bg-default);
69 70 transition: width 0.5s;
@@ -73,16 +74,16 @@
73 74 }
74 75 body a:hover {
75 76 color: var(--e-a-color-primary-bold);
76 77 }
77 -body.elementor-editor-active #elementor-mode-switcher-preview i {
78 - scale: calc(1 * var(--direction-multiplier)) 1;
78 +body.elementor-editor-active #elementor-mode-switcher-preview .eicon:before {
79 + content: "\e89f";
79 80 }
80 81 body.elementor-editor-preview {
81 82 --e-preview-width: 100%;
82 83 }
83 -body.elementor-editor-preview #elementor-mode-switcher-preview i {
84 - scale: calc(-1 * var(--direction-multiplier)) 1;
84 +body.elementor-editor-preview #elementor-mode-switcher-preview .eicon:before {
85 + content: "\e89e";
85 86 }
86 87 body.elementor-navigator--dock-hint:after {
87 88 width: 30px;
88 89 }
@@ -99,9 +100,12 @@
99 100 }
100 101
101 102 #elementor-loading {
102 103 position: fixed;
103 - inset: 0;
104 + top: 0;
105 + left: 0;
106 + bottom: 0;
107 + right: 0;
104 108 background: var(--e-a-bg-default);
105 109 z-index: 9999;
106 110 }
107 111
@@ -109,9 +113,12 @@
109 113 display: flex;
110 114 align-items: center;
111 115 justify-content: center;
112 116 position: absolute;
113 - inset: 0;
117 + top: 0;
118 + left: 0;
119 + width: 100%;
120 + height: 100%;
114 121 background-color: var(--e-a-bg-default);
115 122 }
116 123 #elementor-preview-loading i {
117 124 color: var(--e-a-color-txt-disabled);
@@ -194,12 +201,11 @@
194 201 color: var(--e-a-color-txt-disabled);
195 202 }
196 203 .e-control-tool i {
197 204 position: absolute;
198 - position: absolute;
199 - inset-block-start: 50%;
200 - inset-inline-start: 50%;
201 - transform: translate(calc(-50% * var(--direction-multiplier)), -50%);
205 + top: 50%;
206 + left: 50%;
207 + transform: translateX(-50%) translateY(-50%);
202 208 color: var(--e-a-color-txt-default);
203 209 font-size: 13px;
204 210 }
205 211
@@ -208,11 +214,11 @@
208 214 }
209 215
210 216 .elementor-loader-wrapper {
211 217 position: absolute;
212 - inset-block-start: 50%;
213 - inset-inline-start: 50%;
214 - transform: translate(calc(-50% * var(--direction-multiplier)), -50%);
218 + top: 50%;
219 + left: 50%;
220 + transform: translate(-50%, -50%);
215 221 width: 300px;
216 222 display: flex;
217 223 flex-direction: column;
218 224 align-items: center;
@@ -363,287 +369,8 @@
363 369 outline: none;
364 370 height: 27px;
365 371 }
366 372
367 -.dialog-widget-content {
368 - background-color: var(--e-a-bg-default);
369 - position: absolute;
370 - border-radius: 3px;
371 - box-shadow: 2px 8px 23px 3px rgba(0, 0, 0, 0.2);
372 - overflow: hidden;
373 -}
374 -
375 -.dialog-message {
376 - line-height: 1.5;
377 - box-sizing: border-box;
378 -}
379 -
380 -.dialog-close-button {
381 - cursor: pointer;
382 - position: absolute;
383 - margin-block-start: 15px;
384 - inset-inline-end: 15px;
385 - color: var(--e-a-color-txt);
386 - font-size: 15px;
387 - line-height: 1;
388 - transition: var(--e-a-transition-hover);
389 -}
390 -.dialog-close-button:hover {
391 - color: var(--e-a-color-txt-hover);
392 -}
393 -
394 -.dialog-prevent-scroll {
395 - overflow: hidden;
396 - max-height: 100vh;
397 -}
398 -
399 -.dialog-type-lightbox {
400 - position: fixed;
401 - height: 100%;
402 - width: 100%;
403 - bottom: 0;
404 - left: 0;
405 - background-color: rgba(0, 0, 0, 0.8);
406 - z-index: 9999;
407 - -webkit-user-select: none;
408 - -moz-user-select: none;
409 - user-select: none;
410 -}
411 -
412 -.elementor-editor-active .elementor-popup-modal {
413 - background-color: initial;
414 -}
415 -
416 -.dialog-type-confirm .dialog-widget-content,
417 -.dialog-type-alert .dialog-widget-content {
418 - margin: auto;
419 - width: 400px;
420 - padding: 20px;
421 -}
422 -.dialog-type-confirm .dialog-header,
423 -.dialog-type-alert .dialog-header {
424 - font-size: 15px;
425 - font-weight: 500;
426 -}
427 -.dialog-type-confirm .dialog-header:after,
428 -.dialog-type-alert .dialog-header:after {
429 - content: "";
430 - display: block;
431 - border-block-end: var(--e-a-border);
432 - padding-block-end: 10px;
433 - margin-block-end: 10px;
434 - margin-inline-start: -20px;
435 - margin-inline-end: -20px;
436 -}
437 -.dialog-type-confirm .dialog-message,
438 -.dialog-type-alert .dialog-message {
439 - min-height: 50px;
440 -}
441 -.dialog-type-confirm .dialog-buttons-wrapper,
442 -.dialog-type-alert .dialog-buttons-wrapper {
443 - padding-block-start: 10px;
444 - display: flex;
445 - justify-content: flex-end;
446 - gap: 15px;
447 -}
448 -.dialog-type-confirm .dialog-buttons-wrapper .dialog-button,
449 -.dialog-type-alert .dialog-buttons-wrapper .dialog-button {
450 - font-size: 12px;
451 - font-weight: 500;
452 - line-height: 1.2;
453 - padding: 8px 16px;
454 - outline: none;
455 - border: none;
456 - border-radius: var(--e-a-border-radius);
457 - background-color: var(--e-a-btn-bg);
458 - color: var(--e-a-btn-color-invert);
459 - transition: var(--e-a-transition-hover);
460 -}
461 -.dialog-type-confirm .dialog-buttons-wrapper .dialog-button:hover,
462 -.dialog-type-alert .dialog-buttons-wrapper .dialog-button:hover {
463 - border: none;
464 -}
465 -.dialog-type-confirm .dialog-buttons-wrapper .dialog-button:hover, .dialog-type-confirm .dialog-buttons-wrapper .dialog-button:focus,
466 -.dialog-type-alert .dialog-buttons-wrapper .dialog-button:hover,
467 -.dialog-type-alert .dialog-buttons-wrapper .dialog-button:focus {
468 - background-color: var(--e-a-btn-bg-hover);
469 - color: var(--e-a-btn-color-invert);
470 -}
471 -.dialog-type-confirm .dialog-buttons-wrapper .dialog-button:active,
472 -.dialog-type-alert .dialog-buttons-wrapper .dialog-button:active {
473 - background-color: var(--e-a-btn-bg-active);
474 -}
475 -.dialog-type-confirm .dialog-buttons-wrapper .dialog-button:not([disabled]),
476 -.dialog-type-alert .dialog-buttons-wrapper .dialog-button:not([disabled]) {
477 - cursor: pointer;
478 -}
479 -.dialog-type-confirm .dialog-buttons-wrapper .dialog-button:disabled,
480 -.dialog-type-alert .dialog-buttons-wrapper .dialog-button:disabled {
481 - background-color: var(--e-a-btn-bg-disabled);
482 - color: var(--e-a-btn-color-disabled);
483 -}
484 -.dialog-type-confirm .dialog-buttons-wrapper .dialog-button:not(.elementor-button-state) .elementor-state-icon,
485 -.dialog-type-alert .dialog-buttons-wrapper .dialog-button:not(.elementor-button-state) .elementor-state-icon {
486 - display: none;
487 -}
488 -.dialog-type-confirm .dialog-buttons-wrapper .dialog-button.e-btn-txt, .dialog-type-confirm .dialog-buttons-wrapper .dialog-button.dialog-cancel,
489 -.dialog-type-alert .dialog-buttons-wrapper .dialog-button.e-btn-txt,
490 -.dialog-type-alert .dialog-buttons-wrapper .dialog-button.dialog-cancel {
491 - background: transparent;
492 - color: var(--e-a-color-txt);
493 -}
494 -.dialog-type-confirm .dialog-buttons-wrapper .dialog-button.e-btn-txt:hover, .dialog-type-confirm .dialog-buttons-wrapper .dialog-button.dialog-cancel:hover, .dialog-type-confirm .dialog-buttons-wrapper .dialog-button.e-btn-txt:focus, .dialog-type-confirm .dialog-buttons-wrapper .dialog-button.dialog-cancel:focus,
495 -.dialog-type-alert .dialog-buttons-wrapper .dialog-button.e-btn-txt:hover,
496 -.dialog-type-alert .dialog-buttons-wrapper .dialog-button.dialog-cancel:hover,
497 -.dialog-type-alert .dialog-buttons-wrapper .dialog-button.e-btn-txt:focus,
498 -.dialog-type-alert .dialog-buttons-wrapper .dialog-button.dialog-cancel:focus {
499 - background: var(--e-a-bg-hover);
500 - color: var(--e-a-color-txt-hover);
501 -}
502 -.dialog-type-confirm .dialog-buttons-wrapper .dialog-button.e-btn-txt:disabled, .dialog-type-confirm .dialog-buttons-wrapper .dialog-button.dialog-cancel:disabled,
503 -.dialog-type-alert .dialog-buttons-wrapper .dialog-button.e-btn-txt:disabled,
504 -.dialog-type-alert .dialog-buttons-wrapper .dialog-button.dialog-cancel:disabled {
505 - background: transparent;
506 - color: var(--e-a-color-txt-disabled);
507 -}
508 -.dialog-type-confirm .dialog-buttons-wrapper .dialog-button.e-btn-txt-border,
509 -.dialog-type-alert .dialog-buttons-wrapper .dialog-button.e-btn-txt-border {
510 - border: 1px solid var(--e-a-color-txt-muted);
511 -}
512 -.dialog-type-confirm .dialog-buttons-wrapper .dialog-button.elementor-button-success, .dialog-type-confirm .dialog-buttons-wrapper .dialog-button.e-success,
513 -.dialog-type-alert .dialog-buttons-wrapper .dialog-button.elementor-button-success,
514 -.dialog-type-alert .dialog-buttons-wrapper .dialog-button.e-success {
515 - background-color: var(--e-a-btn-bg-success);
516 -}
517 -.dialog-type-confirm .dialog-buttons-wrapper .dialog-button.elementor-button-success:hover, .dialog-type-confirm .dialog-buttons-wrapper .dialog-button.elementor-button-success:focus, .dialog-type-confirm .dialog-buttons-wrapper .dialog-button.e-success:hover, .dialog-type-confirm .dialog-buttons-wrapper .dialog-button.e-success:focus,
518 -.dialog-type-alert .dialog-buttons-wrapper .dialog-button.elementor-button-success:hover,
519 -.dialog-type-alert .dialog-buttons-wrapper .dialog-button.elementor-button-success:focus,
520 -.dialog-type-alert .dialog-buttons-wrapper .dialog-button.e-success:hover,
521 -.dialog-type-alert .dialog-buttons-wrapper .dialog-button.e-success:focus {
522 - background-color: var(--e-a-btn-bg-success-hover);
523 -}
524 -.dialog-type-confirm .dialog-buttons-wrapper .dialog-button.e-primary, .dialog-type-confirm .dialog-buttons-wrapper .dialog-button.dialog-take_over, .dialog-type-confirm .dialog-buttons-wrapper .dialog-button.dialog-ok,
525 -.dialog-type-alert .dialog-buttons-wrapper .dialog-button.e-primary,
526 -.dialog-type-alert .dialog-buttons-wrapper .dialog-button.dialog-take_over,
527 -.dialog-type-alert .dialog-buttons-wrapper .dialog-button.dialog-ok {
528 - background-color: var(--e-a-btn-bg-primary);
529 - color: var(--e-a-btn-color);
530 -}
531 -.dialog-type-confirm .dialog-buttons-wrapper .dialog-button.e-primary:hover, .dialog-type-confirm .dialog-buttons-wrapper .dialog-button.dialog-take_over:hover, .dialog-type-confirm .dialog-buttons-wrapper .dialog-button.dialog-ok:hover, .dialog-type-confirm .dialog-buttons-wrapper .dialog-button.e-primary:focus, .dialog-type-confirm .dialog-buttons-wrapper .dialog-button.dialog-take_over:focus, .dialog-type-confirm .dialog-buttons-wrapper .dialog-button.dialog-ok:focus,
532 -.dialog-type-alert .dialog-buttons-wrapper .dialog-button.e-primary:hover,
533 -.dialog-type-alert .dialog-buttons-wrapper .dialog-button.dialog-take_over:hover,
534 -.dialog-type-alert .dialog-buttons-wrapper .dialog-button.dialog-ok:hover,
535 -.dialog-type-alert .dialog-buttons-wrapper .dialog-button.e-primary:focus,
536 -.dialog-type-alert .dialog-buttons-wrapper .dialog-button.dialog-take_over:focus,
537 -.dialog-type-alert .dialog-buttons-wrapper .dialog-button.dialog-ok:focus {
538 - background-color: var(--e-a-btn-bg-primary-hover);
539 - color: var(--e-a-btn-color);
540 -}
541 -.dialog-type-confirm .dialog-buttons-wrapper .dialog-button.e-primary.e-btn-txt, .dialog-type-confirm .dialog-buttons-wrapper .dialog-button.e-btn-txt.dialog-take_over, .dialog-type-confirm .dialog-buttons-wrapper .dialog-button.e-primary.dialog-cancel, .dialog-type-confirm .dialog-buttons-wrapper .dialog-button.dialog-cancel.dialog-take_over, .dialog-type-confirm .dialog-buttons-wrapper .dialog-button.e-btn-txt.dialog-ok, .dialog-type-confirm .dialog-buttons-wrapper .dialog-button.dialog-ok.dialog-cancel,
542 -.dialog-type-alert .dialog-buttons-wrapper .dialog-button.e-primary.e-btn-txt,
543 -.dialog-type-alert .dialog-buttons-wrapper .dialog-button.e-btn-txt.dialog-take_over,
544 -.dialog-type-alert .dialog-buttons-wrapper .dialog-button.e-primary.dialog-cancel,
545 -.dialog-type-alert .dialog-buttons-wrapper .dialog-button.dialog-cancel.dialog-take_over,
546 -.dialog-type-alert .dialog-buttons-wrapper .dialog-button.e-btn-txt.dialog-ok,
547 -.dialog-type-alert .dialog-buttons-wrapper .dialog-button.dialog-ok.dialog-cancel {
548 - background: transparent;
549 - color: var(--e-a-color-primary-bold);
550 -}
551 -.dialog-type-confirm .dialog-buttons-wrapper .dialog-button.e-primary.e-btn-txt:hover, .dialog-type-confirm .dialog-buttons-wrapper .dialog-button.e-btn-txt.dialog-take_over:hover, .dialog-type-confirm .dialog-buttons-wrapper .dialog-button.e-primary.dialog-cancel:hover, .dialog-type-confirm .dialog-buttons-wrapper .dialog-button.dialog-cancel.dialog-take_over:hover, .dialog-type-confirm .dialog-buttons-wrapper .dialog-button.e-btn-txt.dialog-ok:hover, .dialog-type-confirm .dialog-buttons-wrapper .dialog-button.dialog-ok.dialog-cancel:hover, .dialog-type-confirm .dialog-buttons-wrapper .dialog-button.e-primary.e-btn-txt:focus, .dialog-type-confirm .dialog-buttons-wrapper .dialog-button.e-btn-txt.dialog-take_over:focus, .dialog-type-confirm .dialog-buttons-wrapper .dialog-button.e-primary.dialog-cancel:focus, .dialog-type-confirm .dialog-buttons-wrapper .dialog-button.dialog-cancel.dialog-take_over:focus, .dialog-type-confirm .dialog-buttons-wrapper .dialog-button.e-btn-txt.dialog-ok:focus, .dialog-type-confirm .dialog-buttons-wrapper .dialog-button.dialog-ok.dialog-cancel:focus,
552 -.dialog-type-alert .dialog-buttons-wrapper .dialog-button.e-primary.e-btn-txt:hover,
553 -.dialog-type-alert .dialog-buttons-wrapper .dialog-button.e-btn-txt.dialog-take_over:hover,
554 -.dialog-type-alert .dialog-buttons-wrapper .dialog-button.e-primary.dialog-cancel:hover,
555 -.dialog-type-alert .dialog-buttons-wrapper .dialog-button.dialog-cancel.dialog-take_over:hover,
556 -.dialog-type-alert .dialog-buttons-wrapper .dialog-button.e-btn-txt.dialog-ok:hover,
557 -.dialog-type-alert .dialog-buttons-wrapper .dialog-button.dialog-ok.dialog-cancel:hover,
558 -.dialog-type-alert .dialog-buttons-wrapper .dialog-button.e-primary.e-btn-txt:focus,
559 -.dialog-type-alert .dialog-buttons-wrapper .dialog-button.e-btn-txt.dialog-take_over:focus,
560 -.dialog-type-alert .dialog-buttons-wrapper .dialog-button.e-primary.dialog-cancel:focus,
561 -.dialog-type-alert .dialog-buttons-wrapper .dialog-button.dialog-cancel.dialog-take_over:focus,
562 -.dialog-type-alert .dialog-buttons-wrapper .dialog-button.e-btn-txt.dialog-ok:focus,
563 -.dialog-type-alert .dialog-buttons-wrapper .dialog-button.dialog-ok.dialog-cancel:focus {
564 - background: var(--e-a-bg-primary);
565 -}
566 -.dialog-type-confirm .dialog-buttons-wrapper .dialog-button.go-pro, .dialog-type-confirm .dialog-buttons-wrapper .dialog-button.e-accent,
567 -.dialog-type-alert .dialog-buttons-wrapper .dialog-button.go-pro,
568 -.dialog-type-alert .dialog-buttons-wrapper .dialog-button.e-accent {
569 - background-color: var(--e-a-btn-bg-accent);
570 -}
571 -.dialog-type-confirm .dialog-buttons-wrapper .dialog-button.go-pro:hover, .dialog-type-confirm .dialog-buttons-wrapper .dialog-button.go-pro:focus, .dialog-type-confirm .dialog-buttons-wrapper .dialog-button.e-accent:hover, .dialog-type-confirm .dialog-buttons-wrapper .dialog-button.e-accent:focus,
572 -.dialog-type-alert .dialog-buttons-wrapper .dialog-button.go-pro:hover,
573 -.dialog-type-alert .dialog-buttons-wrapper .dialog-button.go-pro:focus,
574 -.dialog-type-alert .dialog-buttons-wrapper .dialog-button.e-accent:hover,
575 -.dialog-type-alert .dialog-buttons-wrapper .dialog-button.e-accent:focus {
576 - background-color: var(--e-a-btn-bg-accent-hover);
577 -}
578 -.dialog-type-confirm .dialog-buttons-wrapper .dialog-button.go-pro:active, .dialog-type-confirm .dialog-buttons-wrapper .dialog-button.e-accent:active,
579 -.dialog-type-alert .dialog-buttons-wrapper .dialog-button.go-pro:active,
580 -.dialog-type-alert .dialog-buttons-wrapper .dialog-button.e-accent:active {
581 - background-color: var(--e-a-btn-bg-accent-active);
582 -}
583 -.dialog-type-confirm .dialog-buttons-wrapper .dialog-button.elementor-button-info, .dialog-type-confirm .dialog-buttons-wrapper .dialog-button.e-info,
584 -.dialog-type-alert .dialog-buttons-wrapper .dialog-button.elementor-button-info,
585 -.dialog-type-alert .dialog-buttons-wrapper .dialog-button.e-info {
586 - background-color: var(--e-a-btn-bg-info);
587 -}
588 -.dialog-type-confirm .dialog-buttons-wrapper .dialog-button.elementor-button-info:hover, .dialog-type-confirm .dialog-buttons-wrapper .dialog-button.elementor-button-info:focus, .dialog-type-confirm .dialog-buttons-wrapper .dialog-button.e-info:hover, .dialog-type-confirm .dialog-buttons-wrapper .dialog-button.e-info:focus,
589 -.dialog-type-alert .dialog-buttons-wrapper .dialog-button.elementor-button-info:hover,
590 -.dialog-type-alert .dialog-buttons-wrapper .dialog-button.elementor-button-info:focus,
591 -.dialog-type-alert .dialog-buttons-wrapper .dialog-button.e-info:hover,
592 -.dialog-type-alert .dialog-buttons-wrapper .dialog-button.e-info:focus {
593 - background-color: var(--e-a-btn-bg-info-hover);
594 -}
595 -.dialog-type-confirm .dialog-buttons-wrapper .dialog-button.elementor-button-warning, .dialog-type-confirm .dialog-buttons-wrapper .dialog-button.e-warning,
596 -.dialog-type-alert .dialog-buttons-wrapper .dialog-button.elementor-button-warning,
597 -.dialog-type-alert .dialog-buttons-wrapper .dialog-button.e-warning {
598 - background-color: var(--e-a-btn-bg-warning);
599 -}
600 -.dialog-type-confirm .dialog-buttons-wrapper .dialog-button.elementor-button-warning:hover, .dialog-type-confirm .dialog-buttons-wrapper .dialog-button.elementor-button-warning:focus, .dialog-type-confirm .dialog-buttons-wrapper .dialog-button.e-warning:hover, .dialog-type-confirm .dialog-buttons-wrapper .dialog-button.e-warning:focus,
601 -.dialog-type-alert .dialog-buttons-wrapper .dialog-button.elementor-button-warning:hover,
602 -.dialog-type-alert .dialog-buttons-wrapper .dialog-button.elementor-button-warning:focus,
603 -.dialog-type-alert .dialog-buttons-wrapper .dialog-button.e-warning:hover,
604 -.dialog-type-alert .dialog-buttons-wrapper .dialog-button.e-warning:focus {
605 - background-color: var(--e-a-btn-bg-warning-hover);
606 -}
607 -.dialog-type-confirm .dialog-buttons-wrapper .dialog-button.elementor-button-danger, .dialog-type-confirm .dialog-buttons-wrapper .dialog-button.e-danger,
608 -.dialog-type-alert .dialog-buttons-wrapper .dialog-button.elementor-button-danger,
609 -.dialog-type-alert .dialog-buttons-wrapper .dialog-button.e-danger {
610 - background-color: var(--e-a-btn-bg-danger);
611 -}
612 -.dialog-type-confirm .dialog-buttons-wrapper .dialog-button.elementor-button-danger.color-white, .dialog-type-confirm .dialog-buttons-wrapper .dialog-button.e-danger.color-white,
613 -.dialog-type-alert .dialog-buttons-wrapper .dialog-button.elementor-button-danger.color-white,
614 -.dialog-type-alert .dialog-buttons-wrapper .dialog-button.e-danger.color-white {
615 - color: var(--e-a-color-white);
616 -}
617 -.dialog-type-confirm .dialog-buttons-wrapper .dialog-button.elementor-button-danger:hover, .dialog-type-confirm .dialog-buttons-wrapper .dialog-button.elementor-button-danger:focus, .dialog-type-confirm .dialog-buttons-wrapper .dialog-button.e-danger:hover, .dialog-type-confirm .dialog-buttons-wrapper .dialog-button.e-danger:focus,
618 -.dialog-type-alert .dialog-buttons-wrapper .dialog-button.elementor-button-danger:hover,
619 -.dialog-type-alert .dialog-buttons-wrapper .dialog-button.elementor-button-danger:focus,
620 -.dialog-type-alert .dialog-buttons-wrapper .dialog-button.e-danger:hover,
621 -.dialog-type-alert .dialog-buttons-wrapper .dialog-button.e-danger:focus {
622 - background-color: var(--e-a-btn-bg-danger-hover);
623 -}
624 -.dialog-type-confirm .dialog-buttons-wrapper .dialog-button i,
625 -.dialog-type-alert .dialog-buttons-wrapper .dialog-button i {
626 - margin-inline-end: 5px;
627 -}
628 -.dialog-type-confirm .dialog-buttons-wrapper .dialog-button:hover, .dialog-type-confirm .dialog-buttons-wrapper .dialog-button:focus, .dialog-type-confirm .dialog-buttons-wrapper .dialog-button:visited,
629 -.dialog-type-alert .dialog-buttons-wrapper .dialog-button:hover,
630 -.dialog-type-alert .dialog-buttons-wrapper .dialog-button:focus,
631 -.dialog-type-alert .dialog-buttons-wrapper .dialog-button:visited {
632 - color: initial;
633 -}
634 -.dialog-type-confirm .dialog-buttons-wrapper .dialog-button[disabled]:hover, .dialog-type-confirm .dialog-buttons-wrapper .dialog-button[disabled]:focus, .dialog-type-confirm .dialog-buttons-wrapper .dialog-button[disabled]:visited,
635 -.dialog-type-alert .dialog-buttons-wrapper .dialog-button[disabled]:hover,
636 -.dialog-type-alert .dialog-buttons-wrapper .dialog-button[disabled]:focus,
637 -.dialog-type-alert .dialog-buttons-wrapper .dialog-button[disabled]:visited {
638 - background-color: var(--e-a-btn-bg-disabled);
639 -}
640 -.dialog-type-confirm .dialog-buttons-wrapper .dialog-button[disabled],
641 -.dialog-type-alert .dialog-buttons-wrapper .dialog-button[disabled] {
642 - background-color: var(--e-a-btn-bg-disabled);
643 - cursor: not-allowed;
644 -}
645 -
646 373 /*
647 374 * Container style
648 375 */
649 376 .ps {
@@ -785,58 +512,46 @@
785 512 --e-editor-panel-width: 300px;
786 513 }
787 514 }
788 515
789 -.elementor-panel :where(#elementor-panel-state-loading,
790 -#elementor-panel-header-wrapper,
791 -#elementor-panel-content-wrapper) h1,
792 -.elementor-panel :where(#elementor-panel-state-loading,
793 -#elementor-panel-header-wrapper,
794 -#elementor-panel-content-wrapper) h2,
795 -.elementor-panel :where(#elementor-panel-state-loading,
796 -#elementor-panel-header-wrapper,
797 -#elementor-panel-content-wrapper) h3,
798 -.elementor-panel :where(#elementor-panel-state-loading,
799 -#elementor-panel-header-wrapper,
800 -#elementor-panel-content-wrapper) h4,
801 -.elementor-panel :where(#elementor-panel-state-loading,
802 -#elementor-panel-header-wrapper,
803 -#elementor-panel-content-wrapper) h5,
804 -.elementor-panel :where(#elementor-panel-state-loading,
805 -#elementor-panel-header-wrapper,
806 -#elementor-panel-content-wrapper) h6 {
516 +.elementor-panel {
517 + position: relative;
518 + height: 100%;
519 + margin-inline-start: calc(-1 * var(--e-editor-panel-width) * var(--e-is-preview-mode));
520 + width: var(--e-editor-panel-width);
521 + overflow: visible;
522 + background-color: var(--e-a-bg-default);
523 + z-index: 1;
524 + font-family: var(--e-a-font-family);
525 + font-size: 13px;
526 + left: 0;
527 +}
528 +.elementor-panel h1,
529 +.elementor-panel h2,
530 +.elementor-panel h3,
531 +.elementor-panel h4,
532 +.elementor-panel h5,
533 +.elementor-panel h6 {
807 534 font-size: 100%;
808 535 font-weight: normal;
809 536 }
810 -.elementor-panel :where(#elementor-panel-state-loading,
811 -#elementor-panel-header-wrapper,
812 -#elementor-panel-content-wrapper) abbr,
813 -.elementor-panel :where(#elementor-panel-state-loading,
814 -#elementor-panel-header-wrapper,
815 -#elementor-panel-content-wrapper) acronym {
537 +.elementor-panel abbr,
538 +.elementor-panel acronym {
816 539 border: 0;
817 540 font-variant: normal;
818 541 }
819 -.elementor-panel :where(#elementor-panel-state-loading,
820 -#elementor-panel-header-wrapper,
821 -#elementor-panel-content-wrapper) sup {
542 +.elementor-panel sup {
822 543 vertical-align: text-top;
823 544 }
824 -.elementor-panel :where(#elementor-panel-state-loading,
825 -#elementor-panel-header-wrapper,
826 -#elementor-panel-content-wrapper) sub {
545 +.elementor-panel sub {
827 546 vertical-align: text-bottom;
828 547 }
829 -.elementor-panel :where(#elementor-panel-state-loading,
830 -#elementor-panel-header-wrapper,
831 -#elementor-panel-content-wrapper) img {
548 +.elementor-panel img {
832 549 max-width: 100%;
833 550 height: auto;
834 551 border: 0;
835 552 }
836 -.elementor-panel :where(#elementor-panel-state-loading,
837 -#elementor-panel-header-wrapper,
838 -#elementor-panel-content-wrapper) :focus {
553 +.elementor-panel :focus {
839 554 outline: 0;
840 555 }
841 556 .elementor-panel .elementor-panel-box-content {
842 557 padding: 20px 20px 10px;
@@ -888,9 +603,10 @@
888 603 display: none;
889 604 position: absolute;
890 605 box-shadow: var(--e-a-popover-shadow);
891 606 border-radius: var(--e-a-border-radius);
892 - inset-inline: 0;
607 + left: 0;
608 + right: 0;
893 609 margin: -4px auto 5px;
894 610 padding-block-start: 15px;
895 611 width: 90%;
896 612 z-index: 10000;
@@ -898,10 +614,10 @@
898 614 }
899 615 .elementor-panel .elementor-controls-popover:before {
900 616 content: "";
901 617 position: absolute;
902 - inset-block-start: -16px;
903 - inset-inline-end: 22px;
618 + top: -16px;
619 + right: 22px;
904 620 border: 8px solid transparent;
905 621 border-block-end-color: var(--e-a-bg-default);
906 622 }
907 623 .elementor-panel .elementor-controls-popover div.elementor-control {
@@ -912,20 +628,8 @@
912 628 }
913 629 .elementor-panel #elementor-panel-global .elementor-nerd-box .elementor-nerd-box-icon {
914 630 margin-block-start: 20px;
915 631 }
916 -.elementor-panel {
917 - position: relative;
918 - height: 100%;
919 - inset-inline-start: 0;
920 - margin-inline-start: calc(-1 * var(--e-editor-panel-width) * var(--e-is-preview-mode));
921 - width: var(--e-editor-panel-width);
922 - overflow: visible;
923 - background-color: var(--e-a-bg-default);
924 - z-index: 1;
925 - font-family: var(--e-a-font-family);
926 - font-size: 13px;
927 -}
928 632 .elementor-editor-preview .elementor-panel {
929 633 --e-is-preview-mode: 1;
930 634 }
931 635 .elementor-editor-preview .elementor-panel > .ui-resizable-e,
@@ -1005,11 +709,8 @@
1005 709 }
1006 710 .elementor-panel .elementor-panel-category.elementor-active .elementor-panel-heading {
1007 711 border: none;
1008 712 }
1009 -.elementor-panel .elementor-panel-category.elementor-active-title {
1010 - display: flex;
1011 -}
1012 713 .elementor-panel .elementor-panel-category-items {
1013 714 padding-block-end: 20px;
1014 715 }
1015 716 .elementor-panel .elementor-panel-category-items-empty {
@@ -1136,9 +837,8 @@
1136 837 content: "\e940";
1137 838 }
1138 839 .elementor-panel .elementor-tab-control-advanced-tab-floating-buttons span:before,
1139 840 .elementor-panel .elementor-tab-control-advanced-tab-links-in-bio span:before,
1140 -.elementor-panel .elementor-tab-control-advanced-tab-floating-bars span:before,
1141 841 .elementor-panel .elementor-tab-control-advanced span:before,
1142 842 .elementor-panel .elementor-tab-control-general_style span:before {
1143 843 content: "\e916";
1144 844 }
@@ -1181,15 +881,142 @@
1181 881 content: "";
1182 882 position: absolute;
1183 883 height: 13px;
1184 884 width: 13px;
1185 - inset-block-start: 3px;
1186 - inset-block-end: 0;
1187 - inset-inline-start: 8px;
1188 - inset-inline-end: 0;
885 + top: 3px;
886 + bottom: 0;
887 + left: 8px;
888 + right: 0;
1189 889 border-radius: 50%;
1190 890 z-index: -1;
1191 891 }
892 +.elementor-panel #elementor-panel-footer {
893 + position: relative;
894 + height: 40px;
895 + background-color: var(--e-a-dark-bg);
896 + color: var(--e-a-dark-color-txt);
897 +}
898 +.elementor-panel #elementor-panel-footer-tools {
899 + display: flex;
900 + justify-content: space-between;
901 + height: 100%;
902 +}
903 +.elementor-panel .elementor-panel-footer-tool {
904 + display: flex;
905 + align-items: center;
906 + justify-content: center;
907 + width: 15%;
908 + cursor: pointer;
909 + transition: var(--e-a-transition-hover);
910 + border: 0;
911 + color: currentColor;
912 + background-color: transparent;
913 +}
914 +.elementor-panel .elementor-panel-footer-tool i {
915 + font-size: 15px;
916 +}
917 +.elementor-panel .elementor-panel-footer-tool #elementor-panel-saver-button-save-options i.eicon-chevron-right {
918 + margin: auto;
919 + transform: rotate(270deg);
920 +}
921 +.elementor-panel .elementor-panel-footer-tool #elementor-panel-saver-button-save-options.elementor-disabled {
922 + cursor: inherit;
923 +}
924 +.elementor-panel .elementor-panel-footer-tool:not(.e-open):hover, .elementor-panel .elementor-panel-footer-tool:not(.e-open):focus {
925 + color: var(--e-a-dark-color-txt-hover);
926 +}
927 +.elementor-panel .elementor-panel-footer-tool:not(.e-open) .elementor-panel-footer-sub-menu-wrapper {
928 + display: none;
929 +}
930 +.elementor-panel #elementor-panel-footer-saver-publish {
931 + width: 30%;
932 + margin-inline-start: auto;
933 +}
934 +.elementor-panel #elementor-panel-footer-saver-publish .elementor-button-state i {
935 + margin-inline-end: 0;
936 +}
937 +.elementor-panel #elementor-panel-footer-saver-publish .elementor-button-state #elementor-panel-saver-button-publish-label {
938 + display: none;
939 +}
940 +.elementor-panel #elementor-panel-footer-saver-options {
941 + width: 10%;
942 +}
943 +.elementor-panel #elementor-panel-footer-saver-options .elementor-last-edited-wrapper {
944 + font-size: 11px;
945 + font-style: italic;
946 + padding: 5px 0 15px;
947 +}
948 +.elementor-panel #elementor-panel-footer-saver-options .elementor-last-edited-wrapper:not(.elementor-state-active) .elementor-state-icon {
949 + display: none;
950 +}
951 +.elementor-panel #elementor-panel-footer-saver-options .elementor-last-edited-wrapper time {
952 + border-block-end: 1px dotted transparent;
953 + transition: all ease-in-out 0.3s;
954 + cursor: pointer;
955 +}
956 +.elementor-panel #elementor-panel-footer-saver-options .elementor-last-edited-wrapper time:hover {
957 + border-block-end-color: inherit;
958 +}
959 +.elementor-panel #elementor-panel-footer-saver-options.e-open i.eicon-chevron-right {
960 + transform: rotate(90deg);
961 +}
962 +.elementor-panel #elementor-panel-saver-button-publish, .elementor-panel #elementor-panel-saver-button-save-options {
963 + padding: 0;
964 + font-size: 11px;
965 + height: 100%;
966 + width: 100%;
967 + border-radius: 0;
968 +}
969 +.elementor-panel #elementor-panel-saver-button-publish.elementor-disabled, .elementor-panel #elementor-panel-saver-button-save-options.elementor-disabled {
970 + background-color: #1f2124;
971 + color: #9DA5AE;
972 +}
973 +.elementor-panel #elementor-panel-saver-button-publish:not(.elementor-disabled) {
974 + border-inline-end: 1px solid #F0ABFC;
975 +}
976 +.elementor-panel #elementor-panel-saver-button-publish.elementor-disabled {
977 + border-inline-end: 1px solid #3f444b;
978 +}
979 +.elementor-panel .elementor-panel-footer-sub-menu-wrapper {
980 + position: absolute;
981 + bottom: 100%;
982 + left: 0;
983 + width: 100%;
984 + background-color: #1f2124;
985 + padding: 10px;
986 + box-shadow: -2px -5px 8px rgba(0, 0, 0, 0.1);
987 + cursor: default;
988 + z-index: 10000;
989 +}
990 +.elementor-panel .elementor-panel-footer-sub-menu {
991 + border-radius: var(--e-border-radius);
992 + overflow: hidden;
993 + border: 1px solid #3f444b;
994 +}
995 +.elementor-panel .elementor-panel-footer-sub-menu-item {
996 + display: flex;
997 + height: 40px;
998 + color: #D5D8DC;
999 + align-items: center;
1000 + -moz-column-gap: 10px;
1001 + column-gap: 10px;
1002 + padding: 0 20px;
1003 + transition: var(--e-a-transition-hover);
1004 + cursor: pointer;
1005 +}
1006 +.elementor-panel .elementor-panel-footer-sub-menu-item.elementor-disabled {
1007 + cursor: default;
1008 + color: #69727D;
1009 +}
1010 +.elementor-panel .elementor-panel-footer-sub-menu-item:not(:last-child) {
1011 + border-block-end: 1px solid #3f444b;
1012 +}
1013 +.elementor-panel .elementor-panel-footer-sub-menu-item:hover {
1014 + background-color: rgba(255, 255, 255, 0.1);
1015 +}
1016 +.elementor-panel .elementor-panel-footer-sub-menu-item.active {
1017 + background-color: rgba(255, 255, 255, 0.2);
1018 +}
1192 1019
1193 1020 #elementor-panel-elements-navigation .elementor-panel-navigation-tab {
1194 1021 text-align: center;
1195 1022 padding: 10px 0;
@@ -1205,9 +1032,12 @@
1205 1032 display: none;
1206 1033 }
1207 1034 body.elementor-panel-loading #elementor-panel-state-loading {
1208 1035 position: absolute;
1209 - inset: 0;
1036 + top: 0;
1037 + left: 0;
1038 + height: 100%;
1039 + width: 100%;
1210 1040 display: flex;
1211 1041 align-items: center;
1212 1042 justify-content: center;
1213 1043 background-color: rgba(255, 255, 255, 0.5);
@@ -1220,17 +1050,13 @@
1220 1050
1221 1051 #elementor-panel-elements-search-area {
1222 1052 background-color: var(--e-a-bg-default);
1223 1053 position: sticky;
1224 - inset-block-start: 0;
1054 + top: 0;
1225 1055 padding: 15px;
1226 1056 z-index: 1;
1227 1057 }
1228 1058
1229 -#elementor-panel-elements-search-area:empty {
1230 - display: none;
1231 -}
1232 -
1233 1059 #elementor-panel-elements-search-wrapper {
1234 1060 position: relative;
1235 1061 }
1236 1062
@@ -1247,12 +1073,12 @@
1247 1073 appearance: none;
1248 1074 }
1249 1075 #elementor-panel-elements-search-input + i {
1250 1076 position: absolute;
1251 - inset-block-start: 50%;
1252 - inset-inline-start: 10px;
1077 + left: 10px;
1078 + top: 50%;
1079 + color: var(--e-a-color-txt-disabled);
1253 1080 transform: translateY(-50%);
1254 - color: var(--e-a-color-txt-disabled);
1255 1081 }
1256 1082 #elementor-panel-elements-search-input:focus {
1257 1083 border-color: var(--e-a-border-color-focus);
1258 1084 padding-inline-end: 15px;
@@ -1257,20 +1083,8 @@
1257 1083 border-color: var(--e-a-border-color-focus);
1258 1084 padding-inline-end: 15px;
1259 1085 }
1260 1086
1261 -.e-free-badge-container {
1262 - flex-grow: 1;
1263 - margin-inline-start: 10px;
1264 - margin-inline-end: 10px;
1265 -}
1266 -.e-free-badge-container .e-free-badge {
1267 - border-radius: var(--e-a-border-radius);
1268 - background-color: var(--e-a-btn-bg);
1269 - color: var(--e-a-btn-color-invert);
1270 - padding: 3px 5px;
1271 -}
1272 -
1273 1087 .elementor-panel .elementor-element {
1274 1088 font-family: var(--e-a-font-family);
1275 1089 color: var(--e-a-color-txt);
1276 1090 line-height: 1;
@@ -1288,27 +1102,8 @@
1288 1102 -webkit-user-select: none;
1289 1103 -moz-user-select: none;
1290 1104 user-select: none;
1291 1105 }
1292 -.elementor-panel .elementor-element .eicon-atomic,
1293 -.elementor-panel .elementor-element .e-widget-new-badge {
1294 - position: absolute;
1295 - inset-block-start: 4px;
1296 - inset-inline-end: 6px;
1297 -}
1298 -.elementor-panel .elementor-element .eicon-atomic {
1299 - color: var(--e-a-color-txt);
1300 -}
1301 -.elementor-panel .elementor-element .e-widget-new-badge {
1302 - border-radius: 4px;
1303 - background-color: #EBF2FE;
1304 - color: var(--e-a-color-info);
1305 - padding: 2px 4px;
1306 - font-size: 10px;
1307 - font-weight: 500;
1308 - line-height: 1.4;
1309 - pointer-events: none;
1310 -}
1311 1106 .elementor-panel .elementor-element:hover, .elementor-panel .elementor-element:focus {
1312 1107 background-color: var(--e-a-bg-hover);
1313 1108 border-color: var(--e-a-border-color-bold);
1314 1109 }
@@ -1314,11 +1109,8 @@
1314 1109 }
1315 1110 .elementor-panel .elementor-element:hover > .eicon-lock, .elementor-panel .elementor-element:focus > .eicon-lock {
1316 1111 color: var(--e-a-color-accent);
1317 1112 }
1318 -.elementor-panel .elementor-element:hover > .eicon-plug, .elementor-panel .elementor-element:focus > .eicon-plug {
1319 - color: var(--e-a-color-info);
1320 -}
1321 1113 .elementor-panel .elementor-element .icon {
1322 1114 font-size: 28px;
1323 1115 padding-block-start: 15px;
1324 1116 }
@@ -1330,12 +1122,12 @@
1330 1122 }
1331 1123 .elementor-panel .elementor-element .title {
1332 1124 font-size: 12px;
1333 1125 }
1334 -.elementor-panel .elementor-element > .eicon-lock, .elementor-panel .elementor-element .eicon-plug {
1126 +.elementor-panel .elementor-element > .eicon-lock {
1335 1127 position: absolute;
1336 - inset-block-start: 5px;
1337 - inset-inline-end: 5px;
1128 + top: 5px;
1129 + right: 5px;
1338 1130 color: var(--e-a-color-txt-disabled);
1339 1131 }
1340 1132 .elementor-panel .elementor-element:active {
1341 1133 background-color: var(--e-a-bg-hover);
@@ -1353,10 +1145,10 @@
1353 1145 }
1354 1146 #elementor-element--promotion__dialog:after {
1355 1147 content: "";
1356 1148 position: absolute;
1357 - inset-block-start: 15px;
1358 - inset-inline-end: 100%;
1149 + top: 15px;
1150 + right: 100%;
1359 1151 transform: scaleY(0.7);
1360 1152 border: 10px solid transparent;
1361 1153 border-inline-end-color: var(--e-a-bg-default);
1362 1154 }
@@ -1403,10 +1195,10 @@
1403 1195 }
1404 1196 .dialog-tooltip-widget:after {
1405 1197 content: "";
1406 1198 position: absolute;
1407 - inset-block-start: 15px;
1408 - inset-inline-end: 100%;
1199 + top: 15px;
1200 + right: 100%;
1409 1201 transform: scaleY(0.7);
1410 1202 border: 10px solid transparent;
1411 1203 border-inline-end-color: var(--e-a-bg-default);
1412 1204 }
@@ -1445,80 +1237,8 @@
1445 1237 .dialog-tooltip-widget .dialog-tooltip-button::-moz-focus-inner {
1446 1238 border: 0;
1447 1239 }
1448 1240
1449 -#elementor-panel-elements-widget-creation-area:empty {
1450 - display: none;
1451 -}
1452 -
1453 -.elementor-panel-elements-widget-creation {
1454 - text-align: center;
1455 - padding: 30px 20px;
1456 -}
1457 -.elementor-panel-elements-widget-creation__title {
1458 - font-size: 14px;
1459 - font-weight: bold;
1460 - line-height: 1.4;
1461 - color: var(--e-a-color-txt);
1462 -}
1463 -.elementor-panel-elements-widget-creation__message {
1464 - margin-block-start: 8px;
1465 - font-size: 13px;
1466 - line-height: 1.6;
1467 - color: var(--e-a-color-txt-muted);
1468 -}
1469 -.elementor-panel-elements-widget-creation__cta {
1470 - display: inline-flex;
1471 - align-items: center;
1472 - gap: 6px;
1473 - margin-block-start: 16px;
1474 - padding: 0;
1475 - border: none;
1476 - background: none;
1477 - color: #C00BB9;
1478 - font-size: 14px;
1479 - font-weight: 500;
1480 - cursor: pointer;
1481 - font-family: var(--e-a-font-family);
1482 -}
1483 -.elementor-panel-elements-widget-creation__cta i {
1484 - font-size: 16px;
1485 -}
1486 -.elementor-panel-elements-widget-creation__cta:hover {
1487 - opacity: 0.8;
1488 -}
1489 -.elementor-panel-elements-widget-creation--search-footer {
1490 - border-block-start: var(--e-a-border);
1491 -}
1492 -
1493 -.elementor-panel-category-custom-widgets-empty {
1494 - grid-column: 1/-1;
1495 - width: 100%;
1496 - padding: 0 16px 16px;
1497 -}
1498 -.elementor-panel-category-custom-widgets-empty__message {
1499 - margin: 0;
1500 - font-size: 12px;
1501 - line-height: 1.6;
1502 - color: var(--e-a-color-txt-muted);
1503 -}
1504 -
1505 -.elementor-panel-heading.elementor-panel-category-title .elementor-panel-custom-widgets__cta--heading {
1506 - margin-inline-start: auto;
1507 - padding: 4px 10px;
1508 - border: none;
1509 - background: none;
1510 - color: #C00BB9;
1511 - font-size: 12px;
1512 - font-weight: 500;
1513 - cursor: pointer;
1514 - font-family: var(--e-a-font-family);
1515 - flex-shrink: 0;
1516 -}
1517 -.elementor-panel-heading.elementor-panel-category-title .elementor-panel-custom-widgets__cta--heading:hover {
1518 - opacity: 0.8;
1519 -}
1520 -
1521 1241 #elementor-panel-inner {
1522 1242 position: relative;
1523 1243 height: 100%;
1524 1244 display: flex;
@@ -1544,54 +1264,18 @@
1544 1264 #elementor-panel-get-pro-elements .elementor-nerd-box-icon {
1545 1265 margin-block-start: 20px;
1546 1266 }
1547 1267
1548 -#elementor-panel-content-wrapper:has(> #elementor-panel-page-editor) {
1549 - display: flex;
1550 - flex-direction: column;
1551 -}
1552 -#elementor-panel-content-wrapper:has(> #elementor-panel-page-editor) #elementor-panel-page-editor {
1553 - display: flex;
1554 - flex-direction: column;
1555 - flex: 1;
1556 - min-height: 0;
1557 -}
1558 -#elementor-panel-content-wrapper:has(> #elementor-panel-page-editor) .elementor-panel-editor-sticky-promotion {
1559 - position: sticky;
1560 - inset-block-end: 0;
1561 - margin-block-start: auto;
1562 -}
1563 -#elementor-panel-content-wrapper:has(> #elementor-panel-page-editor) .elementor-panel-editor-sticky-promotion .elementor-get-pro-sticky-message {
1564 - margin-block-start: 0;
1565 -}
1566 -
1567 1268 #elementor-panel-get-pro-elements-sticky {
1568 1269 position: sticky;
1569 - inset-block-end: 0;
1570 - margin-block-end: -10px;
1571 -}
1572 -#elementor-panel-get-pro-elements-sticky .elementor-get-pro-sticky-message {
1573 - margin-block-start: -14px;
1574 -}
1575 -
1576 -#elementor-panel-page-elements:has(> #elementor-panel-get-pro-elements-sticky) {
1577 - display: flex;
1578 - flex-direction: column;
1579 - min-height: 100%;
1580 -}
1581 -#elementor-panel-page-elements:has(> #elementor-panel-get-pro-elements-sticky) > #elementor-panel-get-pro-elements-sticky {
1582 - margin-block-start: auto;
1583 -}
1584 -
1585 -#elementor-panel-get-pro-elements-sticky,
1586 -.elementor-panel-editor-sticky-promotion {
1270 + bottom: 0;
1587 1271 font-size: 14px;
1588 1272 font-weight: 400;
1589 1273 line-height: 1.6;
1590 - background-color: var(--e-a-color-white);
1274 + margin-block-end: -10px;
1591 1275 }
1592 -#elementor-panel-get-pro-elements-sticky .elementor-get-pro-sticky-message,
1593 -.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;
1594 1278 min-height: 40px;
1595 1279 display: block;
1596 1280 padding: 9px min(35px, 5%);
1597 1281 gap: 10px;
@@ -1599,18 +1283,16 @@
1599 1283 color: var(--e-a-color-black);
1600 1284 text-align: center;
1601 1285 box-shadow: 0px -10px 14px -6px rgba(0, 0, 0, 0.05);
1602 1286 }
1603 -#elementor-panel-get-pro-elements-sticky .elementor-get-pro-sticky-message a,
1604 -.elementor-panel-editor-sticky-promotion .elementor-get-pro-sticky-message a {
1287 +#elementor-panel-get-pro-elements-sticky .elementor-get-pro-sticky-message a {
1605 1288 display: inline-block;
1606 1289 font-size: 13px;
1607 1290 font-weight: 500;
1608 1291 color: var(--e-a-btn-bg-accent);
1609 1292 }
1610 -#elementor-panel-get-pro-elements-sticky img,
1611 -.elementor-panel-editor-sticky-promotion img {
1612 - margin-inline-start: 17px;
1293 +#elementor-panel-get-pro-elements-sticky img {
1294 + margin-left: 17px;
1613 1295 }
1614 1296
1615 1297 #elementor-panel-notice-wrapper .elementor-panel-notice {
1616 1298 width: 90%;
@@ -1637,16 +1319,12 @@
1637 1319 background: var(--e-a-color-primary);
1638 1320 border-radius: 50%;
1639 1321 width: 8px;
1640 1322 height: 8px;
1641 - inset-block-start: 5px;
1642 - inset-inline-end: 5px;
1323 + top: 5px;
1324 + right: 5px;
1643 1325 }
1644 1326
1645 -#elementor-panel-footer.elementor-panel-footer-back-compat-wrapper {
1646 - display: none !important;
1647 -}
1648 -
1649 1327 .media-modal.wp-core-ui {
1650 1328 color-scheme: light;
1651 1329 color: #515962;
1652 1330 }
@@ -1692,9 +1370,8 @@
1692 1370 .elementor-control.elementor-control-type-divider {
1693 1371 padding: 0;
1694 1372 }
1695 1373 .elementor-control.elementor-control-type-divider .elementor-control-content {
1696 - margin-inline: 20px;
1697 1374 border-width: 0;
1698 1375 border-block-start: var(--e-a-border);
1699 1376 background-color: var(--e-a-bg-default);
1700 1377 height: 15px;
@@ -1704,20 +1381,21 @@
1704 1381 }
1705 1382 .elementor-control.elementor-control-separator-before:before {
1706 1383 content: "";
1707 1384 position: absolute;
1708 - inset: 0 20px auto;
1709 1385 height: 1px;
1386 + width: calc(100% - 40px);
1387 + top: 0;
1388 + left: 20px;
1710 1389 background-color: var(--e-a-border-color);
1711 1390 }
1712 -.elementor-control.elementor-control-separator-after {
1713 - padding-block-end: 15px;
1714 -}
1715 1391 .elementor-control.elementor-control-separator-after:after {
1716 1392 content: "";
1717 1393 position: absolute;
1718 - inset: auto 20px 0;
1719 1394 height: 1px;
1395 + width: calc(100% - 40px);
1396 + bottom: 0;
1397 + left: 20px;
1720 1398 background-color: var(--e-a-border-color);
1721 1399 }
1722 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 {
1723 1401 padding-block-start: 15px;
@@ -1758,36 +1436,23 @@
1758 1436 }
1759 1437 body:not(.elementor-device-mobile) .elementor-control.elementor-control-responsive-mobile {
1760 1438 display: none;
1761 1439 }
1762 -.elementor-control-shape_divider_top .elementor-visual-choice-element-image label, .elementor-control-shape_divider_bottom .elementor-visual-choice-element-image label {
1763 - padding: 4px;
1764 -}
1765 -.elementor-control-shape_divider_top img, .elementor-control-shape_divider_bottom img {
1766 - aspect-ratio: 4/1;
1767 - -o-object-fit: cover;
1768 - object-fit: cover;
1769 - -o-object-position: center;
1770 - object-position: center;
1771 -}
1772 -.elementor-control-shape_divider_bottom img {
1773 - rotate: X 180deg;
1774 -}
1775 1440 .elementor-control-custom_css_pro .elementor-nerd-box-message, .elementor-control-custom_attributes_pro .elementor-nerd-box-message {
1776 1441 margin-block-start: 5px;
1777 1442 }
1778 1443
1779 -.elementor-control.e-open .elementor-panel-heading-toggle i, .elementor-control.elementor-active .elementor-panel-heading-toggle i,
1780 -.elementor-panel-category.e-open .elementor-panel-heading-toggle i,
1781 -.elementor-panel-category.elementor-active .elementor-panel-heading-toggle i,
1782 -.elementor-panel-scheme-item.e-open .elementor-panel-heading-toggle i,
1783 -.elementor-panel-scheme-item.elementor-active .elementor-panel-heading-toggle i {
1784 - transform: rotate(90deg);
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";
1785 1450 }
1786 -.elementor-control:not(.e-open):not(.elementor-active) .elementor-panel-heading-toggle i,
1787 -.elementor-panel-category:not(.e-open):not(.elementor-active) .elementor-panel-heading-toggle i,
1788 -.elementor-panel-scheme-item:not(.e-open):not(.elementor-active) .elementor-panel-heading-toggle i {
1789 - scale: calc(1 * var(--direction-multiplier)) 1;
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: "\e90a";
1790 1455 }
1791 1456
1792 1457 .elementor-panel-heading {
1793 1458 display: flex;
@@ -1811,14 +1476,8 @@
1811 1476 }
1812 1477 .elementor-panel-heading-title {
1813 1478 font-weight: bold;
1814 1479 }
1815 -.elementor-panel-heading-category-chip {
1816 - margin-inline-start: auto;
1817 - background-color: var(--e-a-bg-chip);
1818 - border-radius: 100px;
1819 - padding: 5px 8px;
1820 -}
1821 1480 .elementor-panel-heading-promotion {
1822 1481 margin-inline-start: auto;
1823 1482 }
1824 1483 .elementor-panel-heading-promotion a {
@@ -1837,11 +1496,9 @@
1837 1496 .elementor-panel-heading:focus-visible {
1838 1497 color: var(--e-a-color-txt-hover);
1839 1498 }
1840 1499
1841 -#elementor-controls .elementor-control-type-section:first-child .elementor-panel-heading,
1842 -#elementor-panel-page-settings-controls .elementor-control-type-section:first-child .elementor-panel-heading,
1843 -#elementor-panel-editorPreferences-settings-controls .elementor-control-type-section:first-child .elementor-panel-heading {
1500 +#elementor-controls .elementor-control-type-section:first-child .elementor-panel-heading {
1844 1501 border-block-start: none;
1845 1502 }
1846 1503
1847 1504 .elementor-control-field {
@@ -1886,15 +1543,8 @@
1886 1543 .elementor-group-control-attachment_alert .elementor-control-field-description {
1887 1544 margin-block-start: 0;
1888 1545 }
1889 1546
1890 -.elementor-control-start-end .eicon-text-align-left,
1891 -.elementor-control-start-end .eicon-text-align-right,
1892 -.elementor-control-start-end .eicon-h-align-left,
1893 -.elementor-control-start-end .eicon-h-align-right {
1894 - scale: calc(1 * var(--direction-multiplier)) 1;
1895 -}
1896 -
1897 1547 .elementor-update-preview {
1898 1548 margin: 15px 15px 0;
1899 1549 display: flex;
1900 1550 align-items: center;
@@ -1929,9 +1579,9 @@
1929 1579 }
1930 1580 .elementor-control-responsive-switchers__holder {
1931 1581 position: absolute;
1932 1582 width: 100%;
1933 - inset-block-start: 0;
1583 + top: 0;
1934 1584 background-color: var(--e-a-bg-default);
1935 1585 border-radius: var(--e-a-border-radius);
1936 1586 transition: 0.15s;
1937 1587 border: 1px solid transparent;
@@ -2074,10 +1724,10 @@
2074 1724 display: none;
2075 1725 overflow: hidden;
2076 1726 max-height: 0;
2077 1727 position: absolute;
2078 - inset-block-start: -0.8em;
2079 - inset-inline-start: -0.5em;
1728 + top: -0.8em;
1729 + left: -0.5em;
2080 1730 width: 2.5em;
2081 1731 text-align: center;
2082 1732 background-color: var(--e-a-bg-default);
2083 1733 border-radius: var(--e-a-border-radius);
@@ -2252,9 +1902,9 @@
2252 1902 }
2253 1903 .elementor-control-responsive-switchers__holder {
2254 1904 position: absolute;
2255 1905 width: 100%;
2256 - inset-block-start: 0;
1906 + top: 0;
2257 1907 background-color: var(--e-a-bg-default);
2258 1908 border-radius: var(--e-a-border-radius);
2259 1909 transition: 0.15s;
2260 1910 border: 1px solid transparent;
@@ -2397,10 +2047,10 @@
2397 2047 display: none;
2398 2048 overflow: hidden;
2399 2049 max-height: 0;
2400 2050 position: absolute;
2401 - inset-block-start: -0.8em;
2402 - inset-inline-start: -0.5em;
2051 + top: -0.8em;
2052 + left: -0.5em;
2403 2053 width: 2.5em;
2404 2054 text-align: center;
2405 2055 background-color: var(--e-a-bg-default);
2406 2056 border-radius: var(--e-a-border-radius);
@@ -2530,9 +2180,9 @@
2530 2180 }
2531 2181 .elementor-control-responsive-switchers__holder {
2532 2182 position: absolute;
2533 2183 width: 100%;
2534 - inset-block-start: 0;
2184 + top: 0;
2535 2185 background-color: var(--e-a-bg-default);
2536 2186 border-radius: var(--e-a-border-radius);
2537 2187 transition: 0.15s;
2538 2188 border: 1px solid transparent;
@@ -2675,10 +2325,10 @@
2675 2325 display: none;
2676 2326 overflow: hidden;
2677 2327 max-height: 0;
2678 2328 position: absolute;
2679 - inset-block-start: -0.8em;
2680 - inset-inline-start: -0.5em;
2329 + top: -0.8em;
2330 + left: -0.5em;
2681 2331 width: 2.5em;
2682 2332 text-align: center;
2683 2333 background-color: var(--e-a-bg-default);
2684 2334 border-radius: var(--e-a-border-radius);
@@ -2798,11 +2448,11 @@
2798 2448 }
2799 2449
2800 2450 .elementor-control-type-icons .elementor-control-media__preview > * {
2801 2451 position: absolute;
2802 - inset-block-start: 50%;
2803 - inset-inline-start: 50%;
2804 - transform: translate(calc(-50% * var(--direction-multiplier)), -50%);
2452 + top: 50%;
2453 + left: 50%;
2454 + transform: translate(-50%, -50%);
2805 2455 }
2806 2456 .elementor-control-type-icons .elementor-control-media__preview i {
2807 2457 font-size: 70px;
2808 2458 }
@@ -2857,9 +2507,12 @@
2857 2507 opacity: 0.6;
2858 2508 }
2859 2509 .elementor-control-type-gallery .elementor-control-gallery-edit {
2860 2510 position: absolute;
2861 - inset: 0;
2511 + top: 0;
2512 + bottom: 0;
2513 + left: 0;
2514 + right: 0;
2862 2515 background-color: rgba(0, 0, 0, 0.2);
2863 2516 padding: 10px;
2864 2517 font-size: 11px;
2865 2518 transition: all 0.3s ease-in-out;
@@ -2868,10 +2521,10 @@
2868 2521 opacity: 0;
2869 2522 }
2870 2523 .elementor-control-type-gallery .elementor-control-gallery-edit span {
2871 2524 position: absolute;
2872 - inset-block-start: 10px;
2873 - inset-inline-end: 10px;
2525 + top: 10px;
2526 + right: 10px;
2874 2527 width: 21px;
2875 2528 height: 21px;
2876 2529 color: var(--e-a-color-white);
2877 2530 background-color: rgba(0, 0, 0, 0.5);
@@ -2981,10 +2634,10 @@
2981 2634 }
2982 2635 .e-global__popover-info-tooltip:after {
2983 2636 content: "";
2984 2637 position: absolute;
2985 - inset-block-end: -17px;
2986 - inset-inline-start: 16px;
2638 + bottom: -17px;
2639 + left: 16px;
2987 2640 border: 10px solid transparent;
2988 2641 border-block-start-color: rgba(0, 0, 0, 0.9);
2989 2642 }
2990 2643 .e-global__popover-info i {
@@ -3001,19 +2654,8 @@
3001 2654 .e-global__preview-items-container::-webkit-scrollbar-thumb {
3002 2655 background-color: #BABFC5;
3003 2656 border-radius: 10px;
3004 2657 }
3005 -.e-global__group-header {
3006 - padding: 12px 20px 5px;
3007 - font-weight: 500;
3008 - font-size: 11px;
3009 - color: var(--e-a-color-txt-muted);
3010 -}
3011 -.e-global__group-divider {
3012 - height: 1px;
3013 - background-color: var(--e-a-border-color);
3014 - margin: 10px 20px;
3015 -}
3016 2658 .e-global__manage-button {
3017 2659 font-weight: 500;
3018 2660 cursor: pointer;
3019 2661 }
@@ -3029,9 +2671,9 @@
3029 2671 font-size: 13px;
3030 2672 content: "\e90e";
3031 2673 position: absolute;
3032 2674 transform: translateY(-50%);
3033 - inset-block-start: 50%;
2675 + top: 50%;
3034 2676 inset-inline-start: 13px;
3035 2677 }
3036 2678 .e-global__color {
3037 2679 padding: 10px 20px;
@@ -3048,10 +2690,13 @@
3048 2690 position: relative;
3049 2691 }
3050 2692 .e-global__color-preview-color, .e-global__color-preview-transparent-bg {
3051 2693 border-radius: 3px;
2694 + height: 100%;
2695 + width: 100%;
3052 2696 position: absolute;
3053 - inset: 0;
2697 + top: 0;
2698 + left: 0;
3054 2699 }
3055 2700 .e-global__color-preview-transparent-bg {
3056 2701 background-image: linear-gradient(45deg, var(--e-a-border-color-bold) 25%, transparent 0, transparent 75%, var(--e-a-border-color-bold) 0, var(--e-a-border-color-bold)), linear-gradient(45deg, var(--e-a-border-color-bold) 25%, transparent 0, transparent 75%, var(--e-a-border-color-bold) 0, var(--e-a-border-color-bold));
3057 2702 background-size: 12px 12px;
@@ -3172,11 +2817,11 @@
3172 2817 display: none;
3173 2818 }
3174 2819 .elementor-control-media .eicon-plus-circle {
3175 2820 position: absolute;
3176 - inset-block-start: 50%;
3177 - inset-inline-start: 50%;
3178 - transform: translate(calc(-50% * var(--direction-multiplier)), -50%);
2821 + top: 50%;
2822 + left: 50%;
2823 + transform: translate(-50%, -50%);
3179 2824 color: var(--e-a-color-white);
3180 2825 font-size: 20px;
3181 2826 }
3182 2827 .elementor-control-media__content__upload-button {
@@ -3185,8 +2830,9 @@
3185 2830 .elementor-control-media__preview {
3186 2831 height: 100%;
3187 2832 background-size: cover;
3188 2833 background-position: center;
2834 + padding-block-end: 42.8571%;
3189 2835 }
3190 2836 .elementor-control-media-area {
3191 2837 background-image: linear-gradient(45deg, var(--e-a-border-color-bold) 25%, transparent 0, transparent 75%, var(--e-a-border-color-bold) 0, var(--e-a-border-color-bold)), linear-gradient(45deg, var(--e-a-border-color-bold) 25%, transparent 0, transparent 75%, var(--e-a-border-color-bold) 0, var(--e-a-border-color-bold));
3192 2838 background-size: 16px 16px;
@@ -3199,11 +2845,11 @@
3199 2845 display: none;
3200 2846 }
3201 2847 .elementor-control-media-area .eicon-video-camera {
3202 2848 position: absolute;
3203 - inset-block-start: 50%;
3204 - inset-inline-start: 50%;
3205 - transform: translate(calc(-50% * var(--direction-multiplier)), -50%);
2849 + top: 50%;
2850 + left: 50%;
2851 + transform: translate(-50%, -50%);
3206 2852 color: rgba(255, 255, 255, 0.7);
3207 2853 font-size: 21px;
3208 2854 }
3209 2855 .elementor-control-media .elementor-control-media__content {
@@ -3214,14 +2860,17 @@
3214 2860 }
3215 2861 .elementor-control-media .elementor-control-media__content:hover:after {
3216 2862 content: "";
3217 2863 position: absolute;
3218 - inset: 0;
2864 + top: 0;
2865 + bottom: 0;
2866 + left: 0;
2867 + right: 0;
3219 2868 background-color: rgba(0, 0, 0, 0.2);
3220 2869 pointer-events: none;
3221 2870 }
3222 2871 .elementor-control-media .elementor-control-media__content:not(:hover) .elementor-control-media__tools {
3223 - inset-block-end: -30px;
2872 + bottom: -30px;
3224 2873 }
3225 2874 .elementor-control-media__content {
3226 2875 transition: all 0.2s ease-in-out;
3227 2876 }
@@ -3226,10 +2875,11 @@
3226 2875 transition: all 0.2s ease-in-out;
3227 2876 }
3228 2877 .elementor-control-media__tools {
3229 2878 position: absolute;
3230 - inset-block-end: 0;
3231 - inset-inline: 0;
2879 + bottom: 0;
2880 + left: 0;
2881 + right: 0;
3232 2882 height: 27px;
3233 2883 transition: all 0.2s ease-in-out;
3234 2884 }
3235 2885 .elementor-control-media__tools > *:not(:first-child) {
@@ -3256,10 +2906,10 @@
3256 2906 }
3257 2907 .elementor-control-media__content__remove {
3258 2908 position: absolute;
3259 2909 z-index: 1;
3260 - inset-block-start: 10px;
3261 - inset-inline-end: 10px;
2910 + top: 10px;
2911 + right: 10px;
3262 2912 width: 20px;
3263 2913 height: 20px;
3264 2914 font-size: 11px;
3265 2915 color: var(--e-a-color-white);
@@ -3551,11 +3201,9 @@
3551 3201 text-align: center;
3552 3202 padding-block-start: 5px;
3553 3203 }
3554 3204
3555 -#elementor-controls,
3556 -#elementor-panel-page-settings-controls,
3557 -#elementor-panel-editorPreferences-settings-controls {
3205 +#elementor-controls {
3558 3206 padding-block-start: 15px;
3559 3207 }
3560 3208
3561 3209 .elementor-control-type-section {
@@ -3600,11 +3248,11 @@
3600 3248 font-family: eicons;
3601 3249 content: "\e8ad";
3602 3250 font-size: 12px;
3603 3251 position: absolute;
3604 - inset-block-start: 50%;
3605 - inset-inline-end: 5px;
3252 + top: 50%;
3606 3253 transform: translateY(-50%);
3254 + right: 5px;
3607 3255 pointer-events: none;
3608 3256 }
3609 3257 .elementor-control-type-select .elementor-control-field.elementor-control-field-select-small .elementor-control-input-wrapper {
3610 3258 max-width: 80px;
@@ -3638,14 +3286,14 @@
3638 3286 }
3639 3287 .elementor-control-type-slider--handles-range .elementor-slider .noUi-handle {
3640 3288 border-radius: 0;
3641 3289 width: 10px;
3642 - transform: translateY(calc(50% - 14px)) translateX(calc(4px * var(--direction-multiplier)));
3290 + transform: translateY(calc(50% - 14px)) translateX(4px);
3643 3291 }
3644 3292 .elementor-control-type-slider--handles-range .elementor-slider .noUi-handle:after {
3645 3293 content: "";
3646 3294 position: absolute;
3647 - inset-block-start: 2px;
3295 + top: 2px;
3648 3296 height: 12px;
3649 3297 width: 11px;
3650 3298 transform: rotate(45deg);
3651 3299 background-color: var(--e-a-color-white);
@@ -3722,11 +3370,11 @@
3722 3370 .elementor-slider .noUi-handle {
3723 3371 height: 16px;
3724 3372 width: 16px;
3725 3373 background-color: var(--e-a-color-white);
3374 + right: 0;
3375 + transform: translateY(calc(50% - 14px)) translateX(8px);
3726 3376 position: absolute;
3727 - inset-inline-end: 0;
3728 - transform: translateY(calc(50% - 14px)) translateX(calc(8px * var(--direction-multiplier)));
3729 3377 box-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
3730 3378 border-radius: 50%;
3731 3379 }
3732 3380 .elementor-slider .noUi-connects {
@@ -3736,9 +3384,12 @@
3736 3384 }
3737 3385 .elementor-slider .noUi-connect {
3738 3386 position: absolute;
3739 3387 z-index: 0;
3740 - inset: 0;
3388 + top: 0;
3389 + left: 0;
3390 + height: 100%;
3391 + width: 100%;
3741 3392 will-change: transform;
3742 3393 transform-origin: 0 0;
3743 3394 background-color: var(--e-a-border-color-focus);
3744 3395 }
@@ -3743,9 +3394,9 @@
3743 3394 background-color: var(--e-a-border-color-focus);
3744 3395 }
3745 3396 .elementor-slider .noUi-tooltip {
3746 3397 position: absolute;
3747 - inset-block-start: calc(100% + 5px);
3398 + top: calc(100% + 5px);
3748 3399 left: calc(50% - 4px);
3749 3400 transform: translateX(-50%);
3750 3401 font-size: 10px;
3751 3402 }
@@ -3832,9 +3483,9 @@
3832 3483 transition-property: opacity, background;
3833 3484 }
3834 3485 .elementor-control-type-switcher .elementor-switch-label:before, .elementor-control-type-switcher .elementor-switch-label:after {
3835 3486 position: absolute;
3836 - inset-block-start: 0;
3487 + top: 0;
3837 3488 width: 50%;
3838 3489 text-align: center;
3839 3490 line-height: 20px;
3840 3491 transition: inherit;
@@ -3840,14 +3491,14 @@
3840 3491 transition: inherit;
3841 3492 }
3842 3493 .elementor-control-type-switcher .elementor-switch-label:before {
3843 3494 content: attr(data-off);
3844 - inset-inline-end: 5px;
3495 + right: 5px;
3845 3496 color: var(--e-a-color-txt-muted);
3846 3497 }
3847 3498 .elementor-control-type-switcher .elementor-switch-label:after {
3848 3499 content: attr(data-on);
3849 - inset-inline-start: 5px;
3500 + left: 5px;
3850 3501 color: var(--e-a-btn-color);
3851 3502 opacity: 0;
3852 3503 }
3853 3504 .elementor-control-type-switcher .elementor-switch-input:checked ~ .elementor-switch-label {
@@ -3860,28 +3511,25 @@
3860 3511 opacity: 1;
3861 3512 }
3862 3513 .elementor-control-type-switcher .elementor-switch-handle {
3863 3514 position: absolute;
3864 - inset-block-start: 1px;
3865 - inset-inline-start: 1px;
3515 + top: 1px;
3516 + left: 1px;
3866 3517 width: 18px;
3867 3518 height: 18px;
3868 3519 background: white;
3869 3520 border-radius: 10px;
3870 - transition: inset-inline-start 0.15s ease-out;
3521 + transition: left 0.15s ease-out;
3871 3522 }
3872 3523 .elementor-control-type-switcher .elementor-switch-input:checked ~ .elementor-switch-handle {
3873 - inset-inline-start: initial;
3874 - inset-inline-end: 1px;
3524 + left: initial;
3525 + right: 1px;
3875 3526 }
3876 3527
3877 3528 .elementor-control-type-tabs {
3878 - display: none;
3529 + display: flex;
3879 3530 font-size: var(--control-title-size);
3880 3531 }
3881 -.elementor-control-type-tabs:has(> :not(.elementor-control-type-tab.elementor-hidden-control)) {
3882 - display: flex;
3883 -}
3884 3532
3885 3533 .elementor-control-type-tab {
3886 3534 text-align: center;
3887 3535 width: 100%;
@@ -3924,10 +3572,10 @@
3924 3572 }
3925 3573 .elementor-control-type-textarea:not(.elementor-control-dynamic-value) .elementor-control-dynamic-switcher,
3926 3574 .elementor-control-type-code:not(.elementor-control-dynamic-value) .elementor-control-dynamic-switcher {
3927 3575 position: absolute;
3928 - inset-block-start: 0;
3929 - inset-inline-end: 0;
3576 + top: 0;
3577 + right: 0;
3930 3578 z-index: 1;
3931 3579 }
3932 3580 .elementor-control-type-textarea .elementor-control-input-wrapper,
3933 3581 .elementor-control-type-code .elementor-control-input-wrapper {
@@ -4005,10 +3653,10 @@
4005 3653 }
4006 3654 .elementor-control-type-url .elementor-control-url-autocomplete-spinner {
4007 3655 display: none;
4008 3656 position: absolute;
4009 - inset-block-start: 5px;
4010 - inset-inline-end: 0;
3657 + top: 5px;
3658 + right: 0;
4011 3659 width: 10px;
4012 3660 height: 10px;
4013 3661 font-size: 10px;
4014 3662 color: var(--e-a-color-txt-disabled);
@@ -4059,76 +3707,8 @@
4059 3707 font-size: 10px;
4060 3708 padding-block-start: 2px;
4061 3709 }
4062 3710
4063 -.elementor-control-type-visual_choice {
4064 - width: 100%;
4065 -}
4066 -
4067 -.elementor-visual-choice-choices {
4068 - display: grid;
4069 - gap: 8px;
4070 - grid-template-columns: repeat(var(--elementor-visual-choice-columns), 1fr);
4071 - text-align: center;
4072 - border-radius: var(--e-a-border-radius);
4073 - overflow: hidden;
4074 -}
4075 -
4076 -.elementor-visual-choice-element {
4077 - display: flex;
4078 - flex-direction: column;
4079 - align-items: center;
4080 - justify-content: center;
4081 - gap: 8px;
4082 - width: auto;
4083 -}
4084 -.elementor-visual-choice-element-image label {
4085 - border: var(--e-a-border-bold);
4086 - border-radius: var(--e-a-border-radius);
4087 - font-size: 12px;
4088 - transition: var(--e-a-transition-hover);
4089 - cursor: pointer;
4090 - overflow: hidden;
4091 - width: 100%;
4092 - padding: 8px;
4093 -}
4094 -.elementor-visual-choice-element-image input.e-visual-choice-placeholder + label, .elementor-visual-choice-element-image input:checked + label, .elementor-visual-choice-element-image input:hover + label {
4095 - background-color: var(--e-a-bg-active-bold);
4096 - opacity: 1;
4097 -}
4098 -.elementor-visual-choice-element-image input:checked + label {
4099 - border-color: var(--e-a-color-primary-bold);
4100 -}
4101 -.elementor-visual-choice-element-image input:not(:checked) + label {
4102 - background-color: var(--e-a-color-white);
4103 - opacity: 0.5;
4104 -}
4105 -.elementor-visual-choice-element-image img {
4106 - width: 100%;
4107 - height: auto;
4108 -}
4109 -.elementor-visual-choice-element-button {
4110 - grid-column: span var(--elementor-visual-choice-columns);
4111 -}
4112 -.elementor-visual-choice-element-button label {
4113 - width: -moz-fit-content;
4114 - width: fit-content;
4115 -}
4116 -.elementor-visual-choice-element-button input:checked + .elementor-button, .elementor-visual-choice-element-button input:hover + .elementor-button {
4117 - background-color: var(--e-a-bg-active-bold);
4118 -}
4119 -.elementor-visual-choice-element-button input:checked + .elementor-button {
4120 - border-color: var(--e-a-color-primary-bold);
4121 -}
4122 -
4123 -.elementor-label-inline .elementor-visual-choice-choices {
4124 - justify-content: flex-end;
4125 -}
4126 -
4127 -.tipsy-inner {
4128 - white-space: pre-line;
4129 -}
4130 -
4131 3711 .elementor-control-type-wp_widget .widget-inside {
4132 3712 line-height: 2;
4133 3713 background-color: inherit;
4134 3714 display: block;
@@ -4272,13 +3852,13 @@
4272 3852 --e-a-mode-switcher-width: 15px;
4273 3853 --e-a-mode-switcher-height: 50px;
4274 3854 --e-a-mode-switcher-icon-size: 15px;
4275 3855 position: absolute;
4276 - inset-block-start: 50%;
4277 - inset-inline-start: 100%;
3856 + left: 100%;
3857 + top: 50%;
4278 3858 transform: translateY(-50%);
4279 3859 background-color: var(--e-a-bg-default);
4280 - box-shadow: calc(3px * var(--direction-multiplier, 1)) 1px 3px rgba(0, 0, 0, 0.05);
3860 + box-shadow: 3px 1px 3px rgba(0, 0, 0, 0.05);
4281 3861 transition: 0.3s opacity;
4282 3862 }
4283 3863 #elementor-mode-switcher:hover {
4284 3864 background-color: var(--e-a-bg-hover);
@@ -4348,11 +3928,11 @@
4348 3928 }
4349 3929
4350 3930 #elementor-panel-revisions-loading {
4351 3931 position: absolute;
4352 - inset-block-start: 50%;
4353 - inset-inline-start: 50%;
4354 - transform: translate(calc(-50% * var(--direction-multiplier)), -50%);
3932 + top: 50%;
3933 + left: 50%;
3934 + transform: translate(-50%, -50%);
4355 3935 }
4356 3936 #elementor-panel-revisions-loading .eicon-loading {
4357 3937 font-size: 50px;
4358 3938 }
@@ -4436,10 +4016,10 @@
4436 4016 .e-control-display-conditions-promotion__wrapper {
4437 4017 display: flex;
4438 4018 justify-content: space-between;
4439 4019 }
4440 -.e-control-display-conditions-promotion__wrapper:hover .eicon-upgrade-crown-full.e-control-display-conditions-promotion {
4441 - color: var(--e-a-color-accent-promotion);
4020 +.e-control-display-conditions-promotion__wrapper:hover .eicon-lock.e-control-display-conditions-promotion {
4021 + color: var(--e-a-color-accent);
4442 4022 }
4443 4023 .e-control-display-conditions-promotion__description {
4444 4024 display: flex;
4445 4025 align-self: center;
@@ -4452,11 +4032,8 @@
4452 4032 display: flex;
4453 4033 justify-content: center;
4454 4034 align-items: center;
4455 4035 }
4456 -.e-control-display-conditions-promotion__lock-wrapper .eicon-upgrade-crown-full {
4457 - color: var(--e-a-color-accent-promotion-disabled);
4458 -}
4459 4036 .e-control-display-conditions-promotion.eicon-flow {
4460 4037 align-self: flex-end;
4461 4038 cursor: pointer;
4462 4039 border: var(--e-a-border-bold);
@@ -4467,15 +4044,12 @@
4467 4044 background-color: var(--e-a-bg-active);
4468 4045 color: #E73CF6;
4469 4046 }
4470 4047
4471 -.e-control-motion-effects-promotion__wrapper:hover .eicon-upgrade-crown-full, .e-control-promotion__wrapper:hover .eicon-upgrade-crown-full {
4472 - color: var(--e-a-color-accent-promotion);
4048 +.e-control-motion-effects-promotion__wrapper:hover .eicon-lock {
4049 + color: var(--e-a-color-accent);
4473 4050 }
4474 -.e-control-motion-effects-promotion__wrapper .elementor-control-title, .e-control-promotion__wrapper .elementor-control-title {
4475 - margin-inline-end: 0;
4476 -}
4477 -.e-control-motion-effects-promotion__wrapper .select-promotion, .e-control-promotion__wrapper .select-promotion {
4051 +.e-control-motion-effects-promotion__wrapper .select-promotion {
4478 4052 display: flex;
4479 4053 flex-direction: column;
4480 4054 justify-content: center;
4481 4055 padding-inline-start: 5px;
@@ -4489,17 +4063,14 @@
4489 4063 box-shadow: none;
4490 4064 border: var(--e-a-border-bold);
4491 4065 font-size: var(--control-title-size);
4492 4066 }
4493 -.e-control-motion-effects-promotion__lock-wrapper, .e-control-promotion__lock-wrapper {
4067 +.e-control-motion-effects-promotion__lock-wrapper {
4494 4068 width: 2.5rem;
4495 4069 display: flex;
4496 4070 justify-content: center;
4497 4071 align-items: center;
4498 4072 }
4499 -.e-control-motion-effects-promotion__lock-wrapper .eicon-upgrade-crown-full, .e-control-promotion__lock-wrapper .eicon-upgrade-crown-full {
4500 - color: var(--e-a-color-accent-promotion-disabled);
4501 -}
4502 4073
4503 4074 .e-link-promotion {
4504 4075 font-family: "Roboto", sans-serif;
4505 4076 font-weight: 500;
@@ -4529,9 +4100,11 @@
4529 4100 .elementor-editor-kit .elementor-panel #elementor-panel-page-menu {
4530 4101 padding: 25px 15px 0;
4531 4102 }
4532 4103 .elementor-editor-kit #elementor-panel-header-add-button,
4533 -.elementor-editor-kit #elementor-panel-header-menu-button {
4104 +.elementor-editor-kit #elementor-panel-header-menu-button,
4105 +.elementor-editor-kit #elementor-panel-footer-sub-menu-item-save-template,
4106 +.elementor-editor-kit #elementor-panel-footer-navigator {
4534 4107 display: none;
4535 4108 }
4536 4109
4537 4110 .elementor-control-type-global-style-repeater .elementor-repeater-fields {
@@ -4584,13 +4157,13 @@
4584 4157 }
4585 4158 .elementor-control-type-global-style-repeater .elementor-controls-popover {
4586 4159 align-self: end;
4587 4160 margin-block-start: 35px;
4588 - inset-block-start: 0;
4161 + top: 0;
4589 4162 width: 100%;
4590 4163 }
4591 4164 .elementor-control-type-global-style-repeater .elementor-controls-popover:before {
4592 - inset-inline-end: 5px;
4165 + right: 5px;
4593 4166 }
4594 4167 .elementor-control-type-global-style-repeater .elementor-controls-popover .elementor-control {
4595 4168 padding: 0 20px 15px;
4596 4169 }
@@ -4700,33 +4273,21 @@
4700 4273 .elementor-button:not(.elementor-button-state) .elementor-state-icon,
4701 4274 .e-btn:not(.elementor-button-state) .elementor-state-icon {
4702 4275 display: none;
4703 4276 }
4704 -.elementor-button.e-btn-txt, .dialog-type-confirm .dialog-buttons-wrapper .elementor-button.dialog-button.dialog-cancel,
4705 -.dialog-type-alert .dialog-buttons-wrapper .elementor-button.dialog-button.dialog-cancel,
4706 -.e-btn.e-btn-txt,
4707 -.dialog-type-confirm .dialog-buttons-wrapper .e-btn.dialog-button.dialog-cancel,
4708 -.dialog-type-alert .dialog-buttons-wrapper .e-btn.dialog-button.dialog-cancel {
4277 +.elementor-button.e-btn-txt,
4278 +.e-btn.e-btn-txt {
4709 4279 background: transparent;
4710 4280 color: var(--e-a-color-txt);
4711 4281 }
4712 -.elementor-button.e-btn-txt:hover, .dialog-type-confirm .dialog-buttons-wrapper .elementor-button.dialog-button.dialog-cancel:hover,
4713 -.dialog-type-alert .dialog-buttons-wrapper .elementor-button.dialog-button.dialog-cancel:hover, .elementor-button.e-btn-txt:focus, .dialog-type-confirm .dialog-buttons-wrapper .elementor-button.dialog-button.dialog-cancel:focus,
4714 -.dialog-type-alert .dialog-buttons-wrapper .elementor-button.dialog-button.dialog-cancel:focus,
4282 +.elementor-button.e-btn-txt:hover, .elementor-button.e-btn-txt:focus,
4715 4283 .e-btn.e-btn-txt:hover,
4716 -.dialog-type-confirm .dialog-buttons-wrapper .e-btn.dialog-button.dialog-cancel:hover,
4717 -.dialog-type-alert .dialog-buttons-wrapper .e-btn.dialog-button.dialog-cancel:hover,
4718 -.e-btn.e-btn-txt:focus,
4719 -.dialog-type-confirm .dialog-buttons-wrapper .e-btn.dialog-button.dialog-cancel:focus,
4720 -.dialog-type-alert .dialog-buttons-wrapper .e-btn.dialog-button.dialog-cancel:focus {
4284 +.e-btn.e-btn-txt:focus {
4721 4285 background: var(--e-a-bg-hover);
4722 4286 color: var(--e-a-color-txt-hover);
4723 4287 }
4724 -.elementor-button.e-btn-txt:disabled, .dialog-type-confirm .dialog-buttons-wrapper .elementor-button.dialog-button.dialog-cancel:disabled,
4725 -.dialog-type-alert .dialog-buttons-wrapper .elementor-button.dialog-button.dialog-cancel:disabled,
4726 -.e-btn.e-btn-txt:disabled,
4727 -.dialog-type-confirm .dialog-buttons-wrapper .e-btn.dialog-button.dialog-cancel:disabled,
4728 -.dialog-type-alert .dialog-buttons-wrapper .e-btn.dialog-button.dialog-cancel:disabled {
4288 +.elementor-button.e-btn-txt:disabled,
4289 +.e-btn.e-btn-txt:disabled {
4729 4290 background: transparent;
4730 4291 color: var(--e-a-color-txt-disabled);
4731 4292 }
4732 4293 .elementor-button.e-btn-txt-border,
@@ -4744,90 +4305,27 @@
4744 4305 .e-btn.e-success:hover,
4745 4306 .e-btn.e-success:focus {
4746 4307 background-color: var(--e-a-btn-bg-success-hover);
4747 4308 }
4748 -.elementor-button.e-primary, .dialog-type-confirm .dialog-buttons-wrapper .elementor-button.dialog-button.dialog-ok,
4749 -.dialog-type-alert .dialog-buttons-wrapper .elementor-button.dialog-button.dialog-ok, .dialog-type-confirm .dialog-buttons-wrapper .elementor-button.dialog-button.dialog-take_over,
4750 -.dialog-type-alert .dialog-buttons-wrapper .elementor-button.dialog-button.dialog-take_over,
4751 -.e-btn.e-primary,
4752 -.dialog-type-confirm .dialog-buttons-wrapper .e-btn.dialog-button.dialog-ok,
4753 -.dialog-type-alert .dialog-buttons-wrapper .e-btn.dialog-button.dialog-ok,
4754 -.dialog-type-confirm .dialog-buttons-wrapper .e-btn.dialog-button.dialog-take_over,
4755 -.dialog-type-alert .dialog-buttons-wrapper .e-btn.dialog-button.dialog-take_over {
4309 +.elementor-button.e-primary,
4310 +.e-btn.e-primary {
4756 4311 background-color: var(--e-a-btn-bg-primary);
4757 4312 color: var(--e-a-btn-color);
4758 4313 }
4759 -.elementor-button.e-primary:hover, .dialog-type-confirm .dialog-buttons-wrapper .elementor-button.dialog-button.dialog-ok:hover,
4760 -.dialog-type-alert .dialog-buttons-wrapper .elementor-button.dialog-button.dialog-ok:hover, .dialog-type-confirm .dialog-buttons-wrapper .elementor-button.dialog-button.dialog-take_over:hover,
4761 -.dialog-type-alert .dialog-buttons-wrapper .elementor-button.dialog-button.dialog-take_over:hover, .elementor-button.e-primary:focus, .dialog-type-confirm .dialog-buttons-wrapper .elementor-button.dialog-button.dialog-ok:focus,
4762 -.dialog-type-alert .dialog-buttons-wrapper .elementor-button.dialog-button.dialog-ok:focus, .dialog-type-confirm .dialog-buttons-wrapper .elementor-button.dialog-button.dialog-take_over:focus,
4763 -.dialog-type-alert .dialog-buttons-wrapper .elementor-button.dialog-button.dialog-take_over:focus,
4314 +.elementor-button.e-primary:hover, .elementor-button.e-primary:focus,
4764 4315 .e-btn.e-primary:hover,
4765 -.dialog-type-confirm .dialog-buttons-wrapper .e-btn.dialog-button.dialog-ok:hover,
4766 -.dialog-type-alert .dialog-buttons-wrapper .e-btn.dialog-button.dialog-ok:hover,
4767 -.dialog-type-confirm .dialog-buttons-wrapper .e-btn.dialog-button.dialog-take_over:hover,
4768 -.dialog-type-alert .dialog-buttons-wrapper .e-btn.dialog-button.dialog-take_over:hover,
4769 -.e-btn.e-primary:focus,
4770 -.dialog-type-confirm .dialog-buttons-wrapper .e-btn.dialog-button.dialog-ok:focus,
4771 -.dialog-type-alert .dialog-buttons-wrapper .e-btn.dialog-button.dialog-ok:focus,
4772 -.dialog-type-confirm .dialog-buttons-wrapper .e-btn.dialog-button.dialog-take_over:focus,
4773 -.dialog-type-alert .dialog-buttons-wrapper .e-btn.dialog-button.dialog-take_over:focus {
4316 +.e-btn.e-primary:focus {
4774 4317 background-color: var(--e-a-btn-bg-primary-hover);
4775 4318 color: var(--e-a-btn-color);
4776 4319 }
4777 -.elementor-button.e-primary.e-btn-txt, .dialog-type-confirm .dialog-buttons-wrapper .elementor-button.e-btn-txt.dialog-button.dialog-ok,
4778 -.dialog-type-alert .dialog-buttons-wrapper .elementor-button.e-btn-txt.dialog-button.dialog-ok, .dialog-type-confirm .dialog-buttons-wrapper .elementor-button.e-btn-txt.dialog-button.dialog-take_over,
4779 -.dialog-type-alert .dialog-buttons-wrapper .elementor-button.e-btn-txt.dialog-button.dialog-take_over, .dialog-type-confirm .dialog-buttons-wrapper .elementor-button.e-primary.dialog-button.dialog-cancel, .dialog-type-confirm .dialog-buttons-wrapper .elementor-button.dialog-button.dialog-ok.dialog-cancel, .dialog-type-confirm .dialog-buttons-wrapper .elementor-button.dialog-button.dialog-take_over.dialog-cancel,
4780 -.dialog-type-alert .dialog-buttons-wrapper .elementor-button.e-primary.dialog-button.dialog-cancel,
4781 -.dialog-type-alert .dialog-buttons-wrapper .elementor-button.dialog-button.dialog-ok.dialog-cancel,
4782 -.dialog-type-alert .dialog-buttons-wrapper .elementor-button.dialog-button.dialog-take_over.dialog-cancel,
4783 -.e-btn.e-primary.e-btn-txt,
4784 -.dialog-type-confirm .dialog-buttons-wrapper .e-btn.e-btn-txt.dialog-button.dialog-ok,
4785 -.dialog-type-alert .dialog-buttons-wrapper .e-btn.e-btn-txt.dialog-button.dialog-ok,
4786 -.dialog-type-confirm .dialog-buttons-wrapper .e-btn.e-btn-txt.dialog-button.dialog-take_over,
4787 -.dialog-type-alert .dialog-buttons-wrapper .e-btn.e-btn-txt.dialog-button.dialog-take_over,
4788 -.dialog-type-confirm .dialog-buttons-wrapper .e-btn.e-primary.dialog-button.dialog-cancel,
4789 -.dialog-type-confirm .dialog-buttons-wrapper .e-btn.dialog-button.dialog-ok.dialog-cancel,
4790 -.dialog-type-confirm .dialog-buttons-wrapper .e-btn.dialog-button.dialog-take_over.dialog-cancel,
4791 -.dialog-type-alert .dialog-buttons-wrapper .e-btn.e-primary.dialog-button.dialog-cancel,
4792 -.dialog-type-alert .dialog-buttons-wrapper .e-btn.dialog-button.dialog-ok.dialog-cancel,
4793 -.dialog-type-alert .dialog-buttons-wrapper .e-btn.dialog-button.dialog-take_over.dialog-cancel {
4320 +.elementor-button.e-primary.e-btn-txt,
4321 +.e-btn.e-primary.e-btn-txt {
4794 4322 background: transparent;
4795 4323 color: var(--e-a-color-primary-bold);
4796 4324 }
4797 -.elementor-button.e-primary.e-btn-txt:hover, .dialog-type-confirm .dialog-buttons-wrapper .elementor-button.e-btn-txt.dialog-button.dialog-ok:hover,
4798 -.dialog-type-alert .dialog-buttons-wrapper .elementor-button.e-btn-txt.dialog-button.dialog-ok:hover, .dialog-type-confirm .dialog-buttons-wrapper .elementor-button.e-btn-txt.dialog-button.dialog-take_over:hover,
4799 -.dialog-type-alert .dialog-buttons-wrapper .elementor-button.e-btn-txt.dialog-button.dialog-take_over:hover, .dialog-type-confirm .dialog-buttons-wrapper .elementor-button.e-primary.dialog-button.dialog-cancel:hover, .dialog-type-confirm .dialog-buttons-wrapper .elementor-button.dialog-button.dialog-ok.dialog-cancel:hover, .dialog-type-confirm .dialog-buttons-wrapper .elementor-button.dialog-button.dialog-take_over.dialog-cancel:hover,
4800 -.dialog-type-alert .dialog-buttons-wrapper .elementor-button.e-primary.dialog-button.dialog-cancel:hover,
4801 -.dialog-type-alert .dialog-buttons-wrapper .elementor-button.dialog-button.dialog-ok.dialog-cancel:hover,
4802 -.dialog-type-alert .dialog-buttons-wrapper .elementor-button.dialog-button.dialog-take_over.dialog-cancel:hover, .elementor-button.e-primary.e-btn-txt:focus, .dialog-type-confirm .dialog-buttons-wrapper .elementor-button.e-btn-txt.dialog-button.dialog-ok:focus,
4803 -.dialog-type-alert .dialog-buttons-wrapper .elementor-button.e-btn-txt.dialog-button.dialog-ok:focus, .dialog-type-confirm .dialog-buttons-wrapper .elementor-button.e-btn-txt.dialog-button.dialog-take_over:focus,
4804 -.dialog-type-alert .dialog-buttons-wrapper .elementor-button.e-btn-txt.dialog-button.dialog-take_over:focus, .dialog-type-confirm .dialog-buttons-wrapper .elementor-button.e-primary.dialog-button.dialog-cancel:focus, .dialog-type-confirm .dialog-buttons-wrapper .elementor-button.dialog-button.dialog-ok.dialog-cancel:focus, .dialog-type-confirm .dialog-buttons-wrapper .elementor-button.dialog-button.dialog-take_over.dialog-cancel:focus,
4805 -.dialog-type-alert .dialog-buttons-wrapper .elementor-button.e-primary.dialog-button.dialog-cancel:focus,
4806 -.dialog-type-alert .dialog-buttons-wrapper .elementor-button.dialog-button.dialog-ok.dialog-cancel:focus,
4807 -.dialog-type-alert .dialog-buttons-wrapper .elementor-button.dialog-button.dialog-take_over.dialog-cancel:focus,
4325 +.elementor-button.e-primary.e-btn-txt:hover, .elementor-button.e-primary.e-btn-txt:focus,
4808 4326 .e-btn.e-primary.e-btn-txt:hover,
4809 -.dialog-type-confirm .dialog-buttons-wrapper .e-btn.e-btn-txt.dialog-button.dialog-ok:hover,
4810 -.dialog-type-alert .dialog-buttons-wrapper .e-btn.e-btn-txt.dialog-button.dialog-ok:hover,
4811 -.dialog-type-confirm .dialog-buttons-wrapper .e-btn.e-btn-txt.dialog-button.dialog-take_over:hover,
4812 -.dialog-type-alert .dialog-buttons-wrapper .e-btn.e-btn-txt.dialog-button.dialog-take_over:hover,
4813 -.dialog-type-confirm .dialog-buttons-wrapper .e-btn.e-primary.dialog-button.dialog-cancel:hover,
4814 -.dialog-type-confirm .dialog-buttons-wrapper .e-btn.dialog-button.dialog-ok.dialog-cancel:hover,
4815 -.dialog-type-confirm .dialog-buttons-wrapper .e-btn.dialog-button.dialog-take_over.dialog-cancel:hover,
4816 -.dialog-type-alert .dialog-buttons-wrapper .e-btn.e-primary.dialog-button.dialog-cancel:hover,
4817 -.dialog-type-alert .dialog-buttons-wrapper .e-btn.dialog-button.dialog-ok.dialog-cancel:hover,
4818 -.dialog-type-alert .dialog-buttons-wrapper .e-btn.dialog-button.dialog-take_over.dialog-cancel:hover,
4819 -.e-btn.e-primary.e-btn-txt:focus,
4820 -.dialog-type-confirm .dialog-buttons-wrapper .e-btn.e-btn-txt.dialog-button.dialog-ok:focus,
4821 -.dialog-type-alert .dialog-buttons-wrapper .e-btn.e-btn-txt.dialog-button.dialog-ok:focus,
4822 -.dialog-type-confirm .dialog-buttons-wrapper .e-btn.e-btn-txt.dialog-button.dialog-take_over:focus,
4823 -.dialog-type-alert .dialog-buttons-wrapper .e-btn.e-btn-txt.dialog-button.dialog-take_over:focus,
4824 -.dialog-type-confirm .dialog-buttons-wrapper .e-btn.e-primary.dialog-button.dialog-cancel:focus,
4825 -.dialog-type-confirm .dialog-buttons-wrapper .e-btn.dialog-button.dialog-ok.dialog-cancel:focus,
4826 -.dialog-type-confirm .dialog-buttons-wrapper .e-btn.dialog-button.dialog-take_over.dialog-cancel:focus,
4827 -.dialog-type-alert .dialog-buttons-wrapper .e-btn.e-primary.dialog-button.dialog-cancel:focus,
4828 -.dialog-type-alert .dialog-buttons-wrapper .e-btn.dialog-button.dialog-ok.dialog-cancel:focus,
4829 -.dialog-type-alert .dialog-buttons-wrapper .e-btn.dialog-button.dialog-take_over.dialog-cancel:focus {
4327 +.e-btn.e-primary.e-btn-txt:focus {
4830 4328 background: var(--e-a-bg-primary);
4831 4329 }
4832 4330 .elementor-button.go-pro, .elementor-button.e-accent,
4833 4331 .e-btn.go-pro,
@@ -4874,13 +4372,8 @@
4874 4372 .e-btn.elementor-button-danger,
4875 4373 .e-btn.e-danger {
4876 4374 background-color: var(--e-a-btn-bg-danger);
4877 4375 }
4878 -.elementor-button.elementor-button-danger.color-white, .elementor-button.e-danger.color-white,
4879 -.e-btn.elementor-button-danger.color-white,
4880 -.e-btn.e-danger.color-white {
4881 - color: var(--e-a-color-white);
4882 -}
4883 4376 .elementor-button.elementor-button-danger:hover, .elementor-button.elementor-button-danger:focus, .elementor-button.e-danger:hover, .elementor-button.e-danger:focus,
4884 4377 .e-btn.elementor-button-danger:hover,
4885 4378 .e-btn.elementor-button-danger:focus,
4886 4379 .e-btn.e-danger:hover,
@@ -4919,23 +4412,22 @@
4919 4412 }
4920 4413
4921 4414 #elementor-preview-responsive-wrapper {
4922 4415 transform-origin: top center;
4923 - margin: 20px;
4416 + padding: 20px;
4924 4417 transform: scale(var(--e-preview-scale, 1));
4925 - overflow: hidden;
4926 4418 }
4927 4419 .elementor-device-desktop #elementor-preview-responsive-wrapper {
4928 4420 min-width: 1025px;
4929 4421 width: 100%;
4930 4422 height: 100%;
4931 - margin: 0;
4423 + padding: 0;
4932 4424 position: relative;
4933 4425 }
4934 4426 body.e-is-device-mode:not(.elementor-device-desktop) #elementor-preview-responsive-wrapper {
4935 4427 width: var(--e-editor-preview-width);
4936 4428 height: var(--e-editor-preview-height);
4937 - margin: 20px max((100vw - var(--e-editor-panel-width) - var(--e-editor-preview-width)) / 2, 20px);
4429 + margin: 0 max((100vw - var(--e-editor-panel-width) - var(--e-editor-preview-width)) / 2, 20px);
4938 4430 box-sizing: content-box;
4939 4431 position: relative;
4940 4432 max-height: calc(100vh - 80px);
4941 4433 }
@@ -4997,10 +4489,9 @@
4997 4489 #elementor-preview-responsive-wrapper .ui-resizable-s {
4998 4490 bottom: 0;
4999 4491 }
5000 4492 #elementor-preview-responsive-wrapper .ui-resizable-e {
5001 - width: 10px;
5002 - right: -5px;
4493 + right: 0;
5003 4494 }
5004 4495 #elementor-preview-responsive-wrapper .ui-resizable-w {
5005 4496 left: 0;
5006 4497 }
@@ -5011,20 +4502,8 @@
5011 4502 background-color: #fff;
5012 4503 box-shadow: 0 0 3px rgba(0, 0, 0, 0.3), 0 0 20px rgba(0, 0, 0, 0.15);
5013 4504 }
5014 4505
5015 -#elementor-template-library-modal button:focus-visible,
5016 -#elementor-template-library-modal a:focus-visible,
5017 -#elementor-template-library-modal input:focus-visible,
5018 -#elementor-template-library-modal select:focus-visible,
5019 -#elementor-template-library-modal [tabindex="0"]:focus-visible,
5020 -#elementor-template-library-modal [role=tab]:focus-visible,
5021 -#elementor-template-library-modal [role=radio]:focus-visible,
5022 -#elementor-template-library-modal [role=menuitem]:focus-visible {
5023 - outline: 2px solid var(--e-a-border-color-focus);
5024 - outline-offset: 2px;
5025 - border-radius: 2px;
5026 -}
5027 4506 #elementor-template-library-modal a.elementor-template-library-blank-footer-link {
5028 4507 font-style: normal;
5029 4508 text-decoration: underline;
5030 4509 }
@@ -5036,17 +4515,8 @@
5036 4515 }
5037 4516 #elementor-template-library-modal .dialog-message {
5038 4517 overflow-y: scroll;
5039 4518 }
5040 -#elementor-template-library-modal:has(#elementor-template-library-save-template) .dialog-message, #elementor-template-library-modal:has(#elementor-template-library-save-template-variant-b) .dialog-message {
5041 - overflow-y: auto;
5042 -}
5043 -#elementor-template-library-modal .e-back-to-editor {
5044 - color: var(--e-a-color-txt);
5045 - text-decoration: underline;
5046 - font-size: 17px;
5047 - cursor: pointer;
5048 -}
5049 4519
5050 4520 #elementor-template-library-header-menu {
5051 4521 text-align: center;
5052 4522 }
@@ -5055,21 +4525,14 @@
5055 4525 display: inline-block;
5056 4526 padding: 17px 20px;
5057 4527 border-block-end: 3px solid transparent;
5058 4528 cursor: pointer;
5059 - background: transparent;
5060 - margin: 0;
5061 - font-size: inherit;
5062 - font-family: inherit;
5063 - color: inherit;
5064 - border: none;
5065 4529 }
5066 4530 .elementor-template-library-menu-item:hover {
5067 4531 background-color: var(--e-a-bg-hover);
5068 4532 border-color: var(--e-a-bg-hover);
5069 4533 }
5070 -.elementor-template-library-menu-item.elementor-active, .elementor-template-library-menu-item[aria-selected=true] {
5071 - border-block-end: 3px solid;
4534 +.elementor-template-library-menu-item.elementor-active {
5072 4535 border-color: var(--e-a-border-color-accent);
5073 4536 color: var(--e-a-color-txt-accent);
5074 4537 }
5075 4538
@@ -5075,31 +4538,12 @@
5075 4538
5076 4539 #elementor-template-library-header-actions {
5077 4540 display: flex;
5078 4541 }
5079 -#elementor-template-library-header-actions > div,
5080 -#elementor-template-library-header-actions > button {
5081 - background: transparent;
5082 - margin: 0;
5083 - font-size: inherit;
5084 - font-family: inherit;
5085 - color: inherit;
5086 - border: none;
4542 +#elementor-template-library-header-actions > div {
5087 4543 padding-inline-end: 16px;
5088 - cursor: pointer;
5089 4544 }
5090 -#elementor-template-library-header-actions > div:focus-visible,
5091 -#elementor-template-library-header-actions > button:focus-visible {
5092 - outline: 2px solid var(--e-a-border-color-focus);
5093 - outline-offset: -2px;
5094 - border-radius: 2px;
5095 -}
5096 4545
5097 -#elementor-template-library-header-tools.e-hidden-disabled {
5098 - opacity: 0;
5099 - visibility: hidden;
5100 -}
5101 -
5102 4546 #elementor-template-library-header-preview-insert-wrapper {
5103 4547 cursor: default;
5104 4548 padding: 0 10px;
5105 4549 }
@@ -5108,9 +4552,8 @@
5108 4552 margin-inline-start: 4px;
5109 4553 }
5110 4554
5111 4555 #elementor-template-library-header-preview-back {
5112 - gap: 10px;
5113 4556 padding-block: 16.5px 15px;
5114 4557 padding-inline: 0 16.5px;
5115 4558 border-inline-end: var(--e-a-border);
5116 4559 cursor: pointer;
@@ -5115,138 +4558,27 @@
5115 4558 border-inline-end: var(--e-a-border);
5116 4559 cursor: pointer;
5117 4560 transition: color 0.5s;
5118 4561 }
5119 -#elementor-template-library-header-preview-back .elementor-template-library-header-back-button {
5120 - background: transparent;
5121 - margin: 0;
5122 - font-size: inherit;
5123 - font-family: inherit;
5124 - color: inherit;
5125 - border: none;
5126 - display: flex;
5127 - align-items: center;
5128 - gap: 10px;
5129 - cursor: pointer;
5130 -}
5131 -#elementor-template-library-header-preview-back .elementor-template-library-header-back-button:focus-visible {
5132 - outline: 2px solid var(--e-a-border-color-focus);
5133 - outline-offset: 2px;
5134 - border-radius: 2px;
5135 -}
5136 4562 #elementor-template-library-header-preview-back:hover {
5137 4563 color: var(--e-a-color-txt-hover);
5138 4564 }
5139 4565 #elementor-template-library-header-preview-back i {
4566 + padding-inline-end: 10px;
5140 4567 font-size: 18px;
5141 - scale: calc(1 * var(--direction-multiplier)) 1;
5142 4568 }
4569 +#elementor-template-library-header-preview-back i:before {
4570 + content: "\e87e";
4571 +}
5143 4572
5144 -#elementor-template-library-templates {
5145 - display: flex;
5146 - flex-direction: column;
5147 - gap: 20px;
5148 -}
5149 -#elementor-template-library-templates .toolbar-container {
5150 - display: flex;
5151 - justify-content: space-between;
5152 - align-items: center;
5153 - gap: 2%;
5154 - height: 45px;
5155 -}
5156 -#elementor-template-library-templates #elementor-template-library-templates-container {
5157 - display: flex;
5158 - flex-wrap: wrap;
5159 - align-items: flex-start;
5160 -}
5161 -#elementor-template-library-templates[data-template-source=local] .toolbar-container .quota-progress-container {
5162 - display: none;
5163 -}
5164 -#elementor-template-library-templates[data-template-source=cloud] .toolbar-container:has(.bulk-selection-action-bar:not([style*="display: block"])), #elementor-template-library-templates[data-template-source=empty] .toolbar-container:has(.bulk-selection-action-bar:not([style*="display: block"])) {
5165 - justify-content: flex-end;
5166 -}
5167 -#elementor-template-library-templates[data-template-source=cloud] .toolbar-container .quota-progress-container, #elementor-template-library-templates[data-template-source=empty] .toolbar-container .quota-progress-container {
5168 - display: flex;
5169 - align-items: baseline;
5170 - border-radius: 3px;
5171 -}
5172 -#elementor-template-library-templates[data-template-source=cloud] .toolbar-container .quota-progress-container:focus-visible, #elementor-template-library-templates[data-template-source=empty] .toolbar-container .quota-progress-container:focus-visible {
5173 - outline: 2px solid var(--e-a-border-color-focus);
5174 - outline-offset: 2px;
5175 -}
5176 -#elementor-template-library-templates[data-template-source=cloud] .toolbar-container .quota-progress-info, #elementor-template-library-templates[data-template-source=empty] .toolbar-container .quota-progress-info {
5177 - align-items: center;
5178 -}
5179 -#elementor-template-library-templates[data-template-source=cloud] .toolbar-container .quota-progress-info i, #elementor-template-library-templates[data-template-source=empty] .toolbar-container .quota-progress-info i {
5180 - font-size: 14px;
5181 - margin-inline-start: 5px;
5182 -}
5183 -#elementor-template-library-templates[data-template-source=cloud] .toolbar-container .progress-bar-container, #elementor-template-library-templates[data-template-source=empty] .toolbar-container .progress-bar-container {
5184 - width: 200px;
5185 - margin: 0px 10px;
5186 - align-self: center;
5187 - text-align: start;
5188 -}
5189 -#elementor-template-library-templates[data-template-source=cloud] .toolbar-container .progress-bar-container .quota-warning, #elementor-template-library-templates[data-template-source=empty] .toolbar-container .progress-bar-container .quota-warning {
5190 - font-size: 10px;
5191 -}
5192 -#elementor-template-library-templates[data-template-source=cloud] .toolbar-container .progress-bar-container a, #elementor-template-library-templates[data-template-source=empty] .toolbar-container .progress-bar-container a {
5193 - color: var(--e-a-btn-bg-accent);
5194 -}
5195 -#elementor-template-library-templates[data-template-source=cloud] .toolbar-container .quota-progress-bar, #elementor-template-library-templates[data-template-source=empty] .toolbar-container .quota-progress-bar {
5196 - height: 4px;
5197 - background-color: var(--e-a-color-primary-bold);
5198 - position: relative;
5199 - display: flex;
5200 - align-items: center;
5201 - padding: 0;
5202 -}
5203 -#elementor-template-library-templates[data-template-source=cloud] .toolbar-container .quota-progress-bar-fill, #elementor-template-library-templates[data-template-source=empty] .toolbar-container .quota-progress-bar-fill {
5204 - height: 100%;
5205 - transition: width 0.3s ease;
5206 -}
5207 -#elementor-template-library-templates[data-template-source=cloud] .toolbar-container .quota-progress-bar-fill-normal, #elementor-template-library-templates[data-template-source=empty] .toolbar-container .quota-progress-bar-fill-normal {
5208 - background-color: #D004D4;
5209 -}
5210 -#elementor-template-library-templates[data-template-source=cloud] .toolbar-container .quota-progress-bar-fill-warning, #elementor-template-library-templates[data-template-source=empty] .toolbar-container .quota-progress-bar-fill-warning {
5211 - background-color: #F59E0B;
5212 -}
5213 -#elementor-template-library-templates[data-template-source=cloud] .toolbar-container .quota-progress-bar-fill-alert, #elementor-template-library-templates[data-template-source=empty] .toolbar-container .quota-progress-bar-fill-alert {
5214 - background-color: #93003f;
5215 -}
5216 -#elementor-template-library-templates[data-template-source=cloud] .toolbar-container .quota-progress-bar-normal, #elementor-template-library-templates[data-template-source=empty] .toolbar-container .quota-progress-bar-normal {
5217 - background-color: #F0ABFC;
5218 -}
5219 -#elementor-template-library-templates[data-template-source=cloud] .toolbar-container .quota-progress-bar-warning, #elementor-template-library-templates[data-template-source=empty] .toolbar-container .quota-progress-bar-warning {
5220 - background-color: rgb(251.0236220472, 216.4291338583, 157.9763779528);
5221 -}
5222 -#elementor-template-library-templates[data-template-source=cloud] .toolbar-container-value, #elementor-template-library-templates[data-template-source=empty] .toolbar-container-value {
5223 - font-size: 12px;
5224 - color: var(--e-a-color-txt);
5225 -}
5226 -#elementor-template-library-templates[data-template-source=local] #elementor-template-library-templates-container, #elementor-template-library-templates[data-template-source=cloud] #elementor-template-library-templates-container {
4573 +#elementor-template-library-templates[data-template-source=local] #elementor-template-library-templates-container {
4574 + margin-block-start: 10px;
4575 + margin-block-end: 45px;
5227 4576 border-block-start: var(--e-a-border);
5228 4577 }
5229 -#elementor-template-library-templates[data-template-source=local] .elementor-template-library-order-input:checked + .elementor-template-library-order-label, #elementor-template-library-templates[data-template-source=cloud] .elementor-template-library-order-input:checked + .elementor-template-library-order-label {
4578 +#elementor-template-library-templates[data-template-source=local] .elementor-template-library-order-input:checked + .elementor-template-library-order-label {
5230 4579 color: var(--e-a-color-txt-active);
5231 4580 }
5232 -#elementor-template-library-templates[data-template-source=cloud][data-template-view=grid] #elementor-template-library-templates-container {
5233 - border-block-start: none;
5234 -}
5235 -#elementor-template-library-templates[data-template-source=cloud][data-template-view=grid] #elementor-template-library-order-toolbar-local {
5236 - padding: 0;
5237 -}
5238 -#elementor-template-library-templates[data-template-source=cloud][data-template-view=grid] #elementor-template-library-order-toolbar-local div {
5239 - max-width: -moz-fit-content;
5240 - max-width: fit-content;
5241 -}
5242 -#elementor-template-library-templates[data-template-source=cloud][data-template-view=grid] #elementor-template-library-order-toolbar-local .elementor-template-library-local-column-3,
5243 -#elementor-template-library-templates[data-template-source=cloud][data-template-view=grid] #elementor-template-library-order-toolbar-local .elementor-template-library-local-column-5 {
5244 - display: none;
5245 -}
5246 -#elementor-template-library-templates[data-template-source=cloud] .elementor-template-library-local-column-3 {
5247 - pointer-events: none;
5248 -}
5249 4581 #elementor-template-library-templates[data-template-source=remote] #elementor-template-library-templates-container {
5250 4582 margin: 10px -15px 0;
5251 4583 }
5252 4584 #elementor-template-library-templates[data-template-source=remote] .elementor-template-library-order-input:checked + .elementor-template-library-order-label {
@@ -5272,243 +4604,14 @@
5272 4604 }
5273 4605 #elementor-template-library-templates .elementor-template-library-order-input:checked.elementor-template-library-order-reverse + .elementor-template-library-order-label:after {
5274 4606 content: "\e8ad";
5275 4607 }
5276 -#elementor-template-library-templates .elementor-template-library-filter-toolbar-side-actions {
4608 +
4609 +#elementor-template-library-templates-container {
5277 4610 display: flex;
5278 - align-items: center;
5279 - gap: 8px;
4611 + flex-wrap: wrap;
4612 + align-items: flex-start;
5280 4613 }
5281 -#elementor-template-library-templates .elementor-template-library-filter-toolbar-side-actions .elementor-template-library-action-item {
5282 - background: transparent;
5283 - margin: 0;
5284 - font-size: inherit;
5285 - font-family: inherit;
5286 - color: inherit;
5287 - border: none;
5288 - cursor: pointer;
5289 - font-size: 20px;
5290 - padding: 0 5px;
5291 - border-radius: 2px;
5292 - color: var(--e-a-color-txt);
5293 -}
5294 -#elementor-template-library-templates .elementor-template-library-filter-toolbar-side-actions .elementor-template-library-action-item:hover {
5295 - background-color: var(--e-a-bg-hover);
5296 -}
5297 -#elementor-template-library-templates .elementor-template-library-filter-toolbar-side-actions .divider {
5298 - width: 1px;
5299 - height: 20px;
5300 - background-color: var(--e-a-border-color);
5301 -}
5302 -#elementor-template-library-templates[data-template-view=list] .elementor-template-library-filter-toolbar-side-actions #elementor-template-library-view-list {
5303 - background-color: var(--e-a-bg-hover);
5304 -}
5305 -#elementor-template-library-templates[data-template-view=grid] .elementor-template-library-filter-toolbar-side-actions #elementor-template-library-view-grid {
5306 - background-color: var(--e-a-bg-hover);
5307 -}
5308 -#elementor-template-library-templates[data-template-view=grid] #elementor-template-library-templates-container {
5309 - display: grid;
5310 - grid-template-columns: repeat(auto-fill, 208px);
5311 - grid-gap: 20px;
5312 - padding: 20px 0;
5313 -}
5314 -#elementor-template-library-templates[data-template-view=grid] #elementor-template-library-templates-container > .elementor-template-library-template-type-folder + .elementor-template-library-template-type-template {
5315 - grid-column: 1;
5316 -}
5317 -#elementor-template-library-templates[data-template-view=grid] #elementor-template-library-templates-container #elementor-template-library-templates-empty {
5318 - grid-column: 1/-1;
5319 -}
5320 -#elementor-template-library-templates[data-template-view=grid] #elementor-template-library-templates-container .elementor-template-library-template-view-grid {
5321 - display: flex;
5322 - position: relative;
5323 - flex-direction: column;
5324 - height: 158px;
5325 - padding: 8px;
5326 - border: var(--e-a-border);
5327 - border-radius: 3px;
5328 -}
5329 -#elementor-template-library-templates[data-template-view=grid] #elementor-template-library-templates-container .elementor-template-library-template-view-grid:focus-visible {
5330 - outline: 2px solid var(--e-a-border-color-focus);
5331 - outline-offset: 2px;
5332 -}
5333 -#elementor-template-library-templates[data-template-view=grid] #elementor-template-library-templates-container .elementor-template-library-template-view-grid:not([data-status=locked]):hover .elementor-template-library-template-preview, #elementor-template-library-templates[data-template-view=grid] #elementor-template-library-templates-container .elementor-template-library-template-view-grid:not([data-status=locked]):focus .elementor-template-library-template-preview, #elementor-template-library-templates[data-template-view=grid] #elementor-template-library-templates-container .elementor-template-library-template-view-grid:not([data-status=locked]):focus-within .elementor-template-library-template-preview {
5334 - display: flex;
5335 -}
5336 -#elementor-template-library-templates[data-template-view=grid] #elementor-template-library-templates-container .elementor-template-library-template-view-grid:not([data-status=locked]):hover .elementor-template-library-card-footer .elementor-template-library-template-name, #elementor-template-library-templates[data-template-view=grid] #elementor-template-library-templates-container .elementor-template-library-template-view-grid:not([data-status=locked]):focus .elementor-template-library-card-footer .elementor-template-library-template-name, #elementor-template-library-templates[data-template-view=grid] #elementor-template-library-templates-container .elementor-template-library-template-view-grid:not([data-status=locked]):focus-within .elementor-template-library-card-footer .elementor-template-library-template-name {
5337 - display: none;
5338 -}
5339 -#elementor-template-library-templates[data-template-view=grid] #elementor-template-library-templates-container .elementor-template-library-template-view-grid:not([data-status=locked]):hover .elementor-template-library-card-footer .elementor-template-library-template-card-footer-overlay, #elementor-template-library-templates[data-template-view=grid] #elementor-template-library-templates-container .elementor-template-library-template-view-grid:not([data-status=locked]):focus .elementor-template-library-card-footer .elementor-template-library-template-card-footer-overlay, #elementor-template-library-templates[data-template-view=grid] #elementor-template-library-templates-container .elementor-template-library-template-view-grid:not([data-status=locked]):focus-within .elementor-template-library-card-footer .elementor-template-library-template-card-footer-overlay {
5340 - display: flex !important;
5341 -}
5342 -#elementor-template-library-templates[data-template-view=grid] #elementor-template-library-templates-container .elementor-template-library-template-view-grid .elementor-template-library-template-thumbnail {
5343 - width: 190px;
5344 - height: 100px;
5345 - position: relative;
5346 - border-radius: 3px;
5347 - margin-block-end: 4px;
5348 - overflow: hidden;
5349 -}
5350 -#elementor-template-library-templates[data-template-view=grid] #elementor-template-library-templates-container .elementor-template-library-template-view-grid .elementor-template-library-template-thumbnail img {
5351 - -o-object-fit: contain;
5352 - object-fit: contain;
5353 - width: 100%;
5354 - height: 100%;
5355 -}
5356 -#elementor-template-library-templates[data-template-view=grid] #elementor-template-library-templates-container .elementor-template-library-template-view-grid .elementor-template-library-template-preview {
5357 - display: none;
5358 - justify-content: center;
5359 - align-items: center;
5360 - position: absolute;
5361 - inset: 0;
5362 - background-color: rgba(0, 0, 0, 0.5);
5363 - cursor: default;
5364 -}
5365 -#elementor-template-library-templates[data-template-view=grid] #elementor-template-library-templates-container .elementor-template-library-template-view-grid .elementor-template-library-template-name {
5366 - font-size: 11px;
5367 - white-space: nowrap;
5368 - text-overflow: ellipsis;
5369 - overflow: hidden;
5370 -}
5371 -#elementor-template-library-templates[data-template-view=grid] #elementor-template-library-templates-container .elementor-template-library-template-view-grid .elementor-template-library-card-footer {
5372 - display: flex;
5373 - position: relative;
5374 - justify-content: space-between;
5375 - align-items: center;
5376 - font-size: 11px;
5377 - min-height: 38px;
5378 -}
5379 -#elementor-template-library-templates[data-template-view=grid] #elementor-template-library-templates-container .elementor-template-library-template-view-grid .elementor-template-library-card-footer .elementor-template-library-template-card-footer-overlay {
5380 - display: none;
5381 - width: 90%;
5382 - gap: 8px;
5383 - height: 38px;
5384 - padding: 4px 0;
5385 -}
5386 -#elementor-template-library-templates[data-template-view=grid] #elementor-template-library-templates-container .elementor-template-library-template-view-grid .elementor-template-library-card-footer .elementor-template-library-template-card-footer-overlay .elementor-template-library-template-insert {
5387 - display: flex;
5388 -}
5389 -#elementor-template-library-templates[data-template-view=grid] #elementor-template-library-templates-container .elementor-template-library-template-view-grid .elementor-template-library-card-footer .elementor-template-library-template-card-footer-overlay .elementor-template-library-template-insert i {
5390 - display: flex;
5391 - align-items: center;
5392 -}
5393 -#elementor-template-library-templates[data-template-view=grid] #elementor-template-library-templates-container .elementor-template-library-template-view-grid .elementor-template-library-card-footer .elementor-template-library-template-card-footer-overlay .elementor-template-library-template-card-footer-overlay-info {
5394 - display: flex;
5395 - flex-direction: column;
5396 - justify-content: center;
5397 - width: 65%;
5398 - align-items: start;
5399 - white-space: nowrap;
5400 - text-overflow: ellipsis;
5401 - overflow: hidden;
5402 -}
5403 -#elementor-template-library-templates[data-template-view=grid] #elementor-template-library-templates-container .elementor-template-library-template-view-grid.elementor-template-library-template-type-folder {
5404 - flex-direction: row;
5405 - align-items: center;
5406 - justify-content: start;
5407 - height: 56px;
5408 - padding: 13px 10px;
5409 -}
5410 -#elementor-template-library-templates[data-template-view=grid] #elementor-template-library-templates-container .elementor-template-library-template-view-grid.elementor-template-library-template-type-folder .elementor-template-library-template-type-icon {
5411 - font-size: 25px;
5412 - margin-inline-end: 8px;
5413 -}
5414 -#elementor-template-library-templates[data-template-view=grid] #elementor-template-library-templates-container .elementor-template-library-template-view-grid.elementor-template-library-template-type-folder .elementor-template-library-template-more-toggle {
5415 - margin-inline-start: auto;
5416 -}
5417 -#elementor-template-library-templates[data-template-view=grid] #bulk-select-all {
5418 - display: none;
5419 -}
5420 -#elementor-template-library-templates.no-bulk-selections #bulk-select-all, #elementor-template-library-templates.no-bulk-selections .bulk-selection-item-checkbox {
5421 - visibility: hidden;
5422 -}
5423 -#elementor-template-library-templates.no-bulk-selections .elementor-template-library-template-name:hover .bulk-selection-item-checkbox {
5424 - visibility: visible;
5425 -}
5426 -#elementor-template-library-templates .bulk-selection-action-bar {
5427 - display: none;
5428 - background: var(--e-a-bg-active);
5429 - padding: 10px 25px;
5430 - border-radius: 5px;
5431 - color: var(--e-a-bg-invert);
5432 - gap: 20px;
5433 - align-items: center;
5434 - flex: 1;
5435 -}
5436 -#elementor-template-library-templates .bulk-selection-action-bar button {
5437 - background: transparent;
5438 - margin: 0;
5439 - font-size: inherit;
5440 - font-family: inherit;
5441 - color: inherit;
5442 - border: none;
5443 - cursor: pointer;
5444 - display: flex;
5445 - align-items: center;
5446 - justify-content: center;
5447 -}
5448 -#elementor-template-library-templates .bulk-selection-action-bar button.disabled {
5449 - pointer-events: none;
5450 - opacity: 0.3;
5451 - cursor: not-allowed;
5452 -}
5453 -#elementor-template-library-templates .bulk-selection-action-bar i {
5454 - cursor: pointer;
5455 - font-size: 18px;
5456 -}
5457 -#elementor-template-library-templates .bulk-selection-action-bar .eicon-editor-close {
5458 - font-size: 20px;
5459 -}
5460 -#elementor-template-library-templates #elementor-template-library-navigation-container {
5461 - display: flex;
5462 - flex: 1;
5463 - white-space: nowrap;
5464 - text-overflow: ellipsis;
5465 - overflow: hidden;
5466 -}
5467 -#elementor-template-library-templates #elementor-template-library-navigation-container .elementor-template-library-navigation-container {
5468 - display: flex;
5469 - flex-direction: row;
5470 - align-items: center;
5471 - gap: 15px;
5472 - white-space: nowrap;
5473 - text-overflow: ellipsis;
5474 - overflow: hidden;
5475 -}
5476 -#elementor-template-library-templates #elementor-template-library-navigation-container .elementor-template-library-navigation-container > span {
5477 - white-space: nowrap;
5478 - text-overflow: ellipsis;
5479 - overflow: hidden;
5480 -}
5481 -#elementor-template-library-templates #elementor-template-library-navigation-container .elementor-template-library-navigation-container .elementor-template-library-navigation-back-button {
5482 - padding-inline-start: 8px;
5483 - background-color: var(--e-a-bg-hover);
5484 - color: var(--e-a-color-txt);
5485 -}
5486 -#elementor-template-library-templates #elementor-template-library-order-toolbar-local:hover #bulk-select-all {
5487 - visibility: visible;
5488 -}
5489 -#elementor-template-library-templates .bulk-selected-item {
5490 - background: var(--e-a-bg-active);
5491 -}
5492 -#elementor-template-library-templates .elementor-template-library-local-column-1 input[type=checkbox] {
5493 - position: relative;
5494 - inset-block-start: 3px;
5495 -}
5496 -#elementor-template-library-templates .elementor-template-library-local-column-1 input[type=checkbox]:checked {
5497 - inset-block-start: 0px;
5498 -}
5499 -#elementor-template-library-templates .bulk-selection-item-checkbox:checked,
5500 -#elementor-template-library-templates #bulk-select-all:checked {
5501 - background: #69727D;
5502 -}
5503 -#elementor-template-library-templates .checkbox-minus:before {
5504 - display: block;
5505 - content: "";
5506 - width: 10px;
5507 - height: 2px;
5508 - background-color: white;
5509 - transform: none;
5510 -}
5511 4614
5512 4615 #elementor-template-library-toolbar {
5513 4616 display: flex;
5514 4617 justify-content: space-between;
@@ -5519,80 +4622,8 @@
5519 4622 display: flex;
5520 4623 align-items: center;
5521 4624 }
5522 4625
5523 -.elementor-template-library-filter-select-source {
5524 - width: 350px;
5525 - display: flex;
5526 - gap: 10px;
5527 -}
5528 -.elementor-template-library-filter-select-source .source-option {
5529 - flex: 1;
5530 - border: 0.5px solid #BABFC5;
5531 - padding: 5px;
5532 - border-radius: 3px;
5533 - cursor: pointer;
5534 - font-size: 12px;
5535 -}
5536 -.elementor-template-library-filter-select-source .source-option i {
5537 - margin-inline-end: 5px;
5538 -}
5539 -.elementor-template-library-filter-select-source .source-option .new-badge {
5540 - border: 1px solid var(--e-a-color-primary-bold-dark);
5541 - padding: 2px 4px;
5542 - color: var(--e-a-color-primary-bold-dark);
5543 - border-radius: 10px;
5544 - font-size: 10px;
5545 - margin-inline-start: 5px;
5546 -}
5547 -.elementor-template-library-filter-select-source .source-option.selected, .elementor-template-library-filter-select-source .source-option:hover {
5548 - background-color: var(--e-a-bg-hover);
5549 -}
5550 -
5551 -#elementor-template-library-connect-states .elementor-template-library-filter-toolbar {
5552 - display: flex;
5553 - align-items: center;
5554 - justify-content: space-between;
5555 -}
5556 -
5557 -#elementor-template-library-toolbar .source-option-badge,
5558 -.elementor-template-library-connect-states-badge .source-option-badge {
5559 - display: flex;
5560 - align-items: center;
5561 - gap: 6px;
5562 - padding: 6px 12px;
5563 - border: none;
5564 - border-radius: 20px;
5565 - font-size: 14px;
5566 - font-weight: 500;
5567 - white-space: nowrap;
5568 - margin-inline-start: auto;
5569 - margin-inline-end: 15px;
5570 -}
5571 -#elementor-template-library-toolbar .source-option-badge i,
5572 -.elementor-template-library-connect-states-badge .source-option-badge i {
5573 - margin: 0;
5574 - font-size: 14px;
5575 -}
5576 -#elementor-template-library-toolbar .source-option-badge.cloud-badge,
5577 -.elementor-template-library-connect-states-badge .source-option-badge.cloud-badge {
5578 - background-color: var(--e-a-bg-info);
5579 - color: var(--e-a-color-info);
5580 -}
5581 -#elementor-template-library-toolbar .source-option-badge.cloud-badge i,
5582 -.elementor-template-library-connect-states-badge .source-option-badge.cloud-badge i {
5583 - color: var(--e-a-color-info);
5584 -}
5585 -#elementor-template-library-toolbar .source-option-badge.site-badge,
5586 -.elementor-template-library-connect-states-badge .source-option-badge.site-badge {
5587 - background-color: var(--e-a-bg-warning);
5588 - color: var(--e-a-btn-bg-warning-hover);
5589 -}
5590 -#elementor-template-library-toolbar .source-option-badge.site-badge i,
5591 -.elementor-template-library-connect-states-badge .source-option-badge.site-badge i {
5592 - color: var(--e-a-btn-bg-warning-hover);
5593 -}
5594 -
5595 4626 #elementor-template-library-filter-toolbar-remote {
5596 4627 font-size: 11px;
5597 4628 }
5598 4629
@@ -5606,11 +4637,8 @@
5606 4637 padding-inline-end: 22px;
5607 4638 -webkit-user-select: none;
5608 4639 -moz-user-select: none;
5609 4640 user-select: none;
5610 - line-height: 1;
5611 - font-size: 10px;
5612 - font-weight: 500;
5613 4641 }
5614 4642
5615 4643 label.elementor-template-library-order-label {
5616 4644 cursor: pointer;
@@ -5666,12 +4694,8 @@
5666 4694 #elementor-template-library-filter-my-favorites-label i:after {
5667 4695 content: "\e923";
5668 4696 }
5669 4697
5670 -#elementor-template-library-create-new-folder-dialog .elementor-create-folder-template-dialog__p {
5671 - margin-block-end: 10px;
5672 -}
5673 -
5674 4698 #elementor-template-library-filter-text-wrapper {
5675 4699 width: 200px;
5676 4700 position: relative;
5677 4701 }
@@ -5676,15 +4700,12 @@
5676 4700 position: relative;
5677 4701 }
5678 4702 #elementor-template-library-filter-text-wrapper i {
5679 4703 position: absolute;
5680 - inset-block-start: 50%;
5681 - inset-inline-end: 0;
4704 + top: 50%;
4705 + right: 0;
5682 4706 transform: translateY(-50%);
5683 4707 }
5684 -#elementor-template-library-filter-text-wrapper i.eicon-loading.eicon-animation-spin {
5685 - inset-block-start: 25%;
5686 -}
5687 4708
5688 4709 #elementor-template-library-filter-text {
5689 4710 border: none;
5690 4711 border-block-end: var(--e-a-border-bold);
@@ -5710,32 +4731,19 @@
5710 4731 padding: 8px;
5711 4732 border: var(--e-a-border);
5712 4733 border-radius: 3px;
5713 4734 }
5714 -.elementor-template-library-template-remote:focus-visible {
5715 - outline: 2px solid var(--e-a-border-color-focus);
5716 - outline-offset: 2px;
5717 -}
5718 -.elementor-template-library-template-remote:hover, .elementor-template-library-template-remote:focus, .elementor-template-library-template-remote:focus-within {
4735 +.elementor-template-library-template-remote:hover {
5719 4736 background-color: var(--e-a-bg-hover);
5720 4737 }
5721 -.elementor-template-library-template-remote:hover .elementor-template-library-template-preview, .elementor-template-library-template-remote:focus .elementor-template-library-template-preview, .elementor-template-library-template-remote:focus-within .elementor-template-library-template-preview {
5722 - opacity: 1;
5723 -}
5724 -.elementor-template-library-template-remote:hover .elementor-template-library-template-name, .elementor-template-library-template-remote:focus .elementor-template-library-template-name, .elementor-template-library-template-remote:focus-within .elementor-template-library-template-name {
4738 +.elementor-template-library-template-remote:hover .elementor-template-library-template-name {
5725 4739 display: none;
5726 4740 }
5727 -.elementor-template-library-template-remote:hover .elementor-template-library-favorite,
5728 -.elementor-template-library-template-remote:hover .elementor-template-library-template-action, .elementor-template-library-template-remote:focus .elementor-template-library-favorite,
5729 -.elementor-template-library-template-remote:focus .elementor-template-library-template-action, .elementor-template-library-template-remote:focus-within .elementor-template-library-favorite,
5730 -.elementor-template-library-template-remote:focus-within .elementor-template-library-template-action {
5731 - display: initial;
5732 -}
5733 -.elementor-template-library-template-remote:not(:hover):not(:focus):not(:focus-within) .elementor-template-library-template-preview {
4741 +.elementor-template-library-template-remote:not(:hover) .elementor-template-library-template-preview {
5734 4742 opacity: 0;
5735 4743 }
5736 -.elementor-template-library-template-remote:not(:hover):not(:focus):not(:focus-within) .elementor-template-library-favorite,
5737 -.elementor-template-library-template-remote:not(:hover):not(:focus):not(:focus-within) .elementor-template-library-template-action {
4744 +.elementor-template-library-template-remote:not(:hover) .elementor-template-library-favorite,
4745 +.elementor-template-library-template-remote:not(:hover) .elementor-template-library-template-action {
5738 4746 display: none;
5739 4747 }
5740 4748 .elementor-template-library-template-remote.elementor-template-library-pro-template .elementor-template-library-template-body:before {
5741 4749 content: var(--elementor-template-library-subscription-plan-label);
@@ -5743,10 +4751,10 @@
5743 4751 color: var(--e-a-color-white);
5744 4752 position: absolute;
5745 4753 text-transform: uppercase;
5746 4754 line-height: 1;
5747 - inset-block-start: 5px;
5748 - inset-inline-end: 5px;
4755 + top: 5px;
4756 + right: 5px;
5749 4757 padding: 3px 5px;
5750 4758 font-size: 8px;
5751 4759 border-radius: 2px;
5752 4760 }
@@ -5761,10 +4769,10 @@
5761 4769 }
5762 4770 .elementor-template-library-template-remote:not(.elementor-template-library-template-page):not(.elementor-template-library-template-lp) .elementor-template-library-template-footer {
5763 4771 position: absolute;
5764 4772 width: 100%;
5765 - inset-block-end: 0;
5766 - inset-inline-start: 0;
4773 + bottom: 0;
4774 + left: 0;
5767 4775 padding: 10px;
5768 4776 background-color: var(--e-a-bg-default);
5769 4777 transition: transform 0.5s;
5770 4778 }
@@ -5770,9 +4778,9 @@
5770 4778 }
5771 4779 .elementor-template-library-template-remote:not(.elementor-template-library-template-page):not(.elementor-template-library-template-lp) .elementor-template-library-template-name {
5772 4780 display: none;
5773 4781 }
5774 -.elementor-template-library-template-remote:not(.elementor-template-library-template-page):not(.elementor-template-library-template-lp):not(:hover):not(:focus):not(:focus-within) .elementor-template-library-template-footer {
4782 +.elementor-template-library-template-remote:not(.elementor-template-library-template-page):not(.elementor-template-library-template-lp):not(:hover) .elementor-template-library-template-footer {
5775 4783 transform: translateY(100%);
5776 4784 }
5777 4785 .elementor-template-library-template-remote .elementor-template-library-template-body {
5778 4786 position: relative;
@@ -5789,9 +4797,12 @@
5789 4797 box-shadow: inset 0px -2px 15px -6px rgba(0, 0, 0, 0.07);
5790 4798 }
5791 4799 .elementor-template-library-template-remote .elementor-template-library-template-preview {
5792 4800 position: absolute;
5793 - inset: 0;
4801 + top: 0;
4802 + left: 0;
4803 + width: 100%;
4804 + height: 100%;
5794 4805 background-color: rgba(0, 0, 0, 0.5);
5795 4806 transition: opacity 0.5s;
5796 4807 cursor: pointer;
5797 4808 }
@@ -5797,11 +4808,11 @@
5797 4808 }
5798 4809 .elementor-template-library-template-remote .elementor-template-library-template-preview i {
5799 4810 font-size: 20px;
5800 4811 position: absolute;
5801 - inset-block-start: 50%;
5802 - inset-inline-start: 50%;
5803 - transform: translate(calc(-50% * var(--direction-multiplier)), -50%);
4812 + top: 50%;
4813 + left: 50%;
4814 + transform: translate(-50%, -50%);
5804 4815 }
5805 4816 .elementor-template-library-template-remote .elementor-template-library-template-footer {
5806 4817 display: flex;
5807 4818 justify-content: space-between;
@@ -5821,22 +4832,10 @@
5821 4832 .elementor-template-library-template-remote .elementor-template-library-favorite {
5822 4833 margin-inline-start: auto;
5823 4834 }
5824 4835 .elementor-template-library-template-remote .elementor-template-library-template-favorite-input {
5825 - position: absolute;
5826 - width: 1px;
5827 - height: 1px;
5828 - padding: 0;
5829 - margin: -1px;
5830 - overflow: hidden;
5831 - clip: rect(0, 0, 0, 0);
5832 - white-space: nowrap;
5833 - border: 0;
4836 + display: none;
5834 4837 }
5835 -.elementor-template-library-template-remote .elementor-template-library-template-favorite-input:focus-visible + .elementor-template-library-template-favorite-label {
5836 - outline: 2px solid var(--e-a-border-color-focus);
5837 - outline-offset: 2px;
5838 -}
5839 4838 .elementor-template-library-template-remote .elementor-template-library-template-favorite-input:checked + .elementor-template-library-template-favorite-label i:before {
5840 4839 content: "\e93f";
5841 4840 color: var(--e-a-color-primary-bold);
5842 4841 }
@@ -5871,231 +4870,112 @@
5871 4870 height: 200px;
5872 4871 }
5873 4872
5874 4873 #elementor-template-library-order-toolbar-local,
5875 -.elementor-template-library-template-local,
5876 -.elementor-template-library-template-cloud:not(.elementor-template-library-template-view-grid) {
4874 +.elementor-template-library-template-local {
5877 4875 display: flex;
5878 4876 align-items: center;
5879 4877 padding: 0 25px;
5880 4878 text-align: start;
5881 4879 }
5882 -@media (max-width: 1439px) {
5883 - #elementor-template-library-order-toolbar-local .elementor-template-library-local-column-1,
5884 - .elementor-template-library-template-local .elementor-template-library-local-column-1,
5885 - .elementor-template-library-template-cloud:not(.elementor-template-library-template-view-grid) .elementor-template-library-local-column-1 {
5886 - width: 33%;
5887 - }
5888 - #elementor-template-library-order-toolbar-local .elementor-template-library-local-column-2,
5889 - .elementor-template-library-template-local .elementor-template-library-local-column-2,
5890 - .elementor-template-library-template-cloud:not(.elementor-template-library-template-view-grid) .elementor-template-library-local-column-2 {
5891 - width: 10%;
5892 - }
5893 - #elementor-template-library-order-toolbar-local .elementor-template-library-local-column-3,
5894 - .elementor-template-library-template-local .elementor-template-library-local-column-3,
5895 - .elementor-template-library-template-cloud:not(.elementor-template-library-template-view-grid) .elementor-template-library-local-column-3 {
5896 - width: 15%;
5897 - }
5898 - #elementor-template-library-order-toolbar-local .elementor-template-library-local-column-4,
5899 - .elementor-template-library-template-local .elementor-template-library-local-column-4,
5900 - .elementor-template-library-template-cloud:not(.elementor-template-library-template-view-grid) .elementor-template-library-local-column-4 {
5901 - width: 15%;
5902 - }
5903 - #elementor-template-library-order-toolbar-local .elementor-template-library-local-column-5,
5904 - .elementor-template-library-template-local .elementor-template-library-local-column-5,
5905 - .elementor-template-library-template-cloud:not(.elementor-template-library-template-view-grid) .elementor-template-library-local-column-5 {
5906 - width: 27%;
5907 - }
5908 -}
5909 -@media (min-width: 1440px) {
5910 - #elementor-template-library-order-toolbar-local .elementor-template-library-local-column-1,
5911 - .elementor-template-library-template-local .elementor-template-library-local-column-1,
5912 - .elementor-template-library-template-cloud:not(.elementor-template-library-template-view-grid) .elementor-template-library-local-column-1 {
5913 - width: 25%;
5914 - }
5915 - #elementor-template-library-order-toolbar-local .elementor-template-library-local-column-2,
5916 - .elementor-template-library-template-local .elementor-template-library-local-column-2,
5917 - .elementor-template-library-template-cloud:not(.elementor-template-library-template-view-grid) .elementor-template-library-local-column-2 {
5918 - width: 17%;
5919 - }
5920 - #elementor-template-library-order-toolbar-local .elementor-template-library-local-column-3,
5921 - .elementor-template-library-template-local .elementor-template-library-local-column-3,
5922 - .elementor-template-library-template-cloud:not(.elementor-template-library-template-view-grid) .elementor-template-library-local-column-3 {
5923 - width: 17%;
5924 - }
5925 - #elementor-template-library-order-toolbar-local .elementor-template-library-local-column-4,
5926 - .elementor-template-library-template-local .elementor-template-library-local-column-4,
5927 - .elementor-template-library-template-cloud:not(.elementor-template-library-template-view-grid) .elementor-template-library-local-column-4 {
5928 - width: 17%;
5929 - }
5930 - #elementor-template-library-order-toolbar-local .elementor-template-library-local-column-5,
5931 - .elementor-template-library-template-local .elementor-template-library-local-column-5,
5932 - .elementor-template-library-template-cloud:not(.elementor-template-library-template-view-grid) .elementor-template-library-local-column-5 {
5933 - width: 24%;
5934 - }
5935 -}
5936 -@media (max-width: 1024px) {
5937 - #elementor-template-library-order-toolbar-local .elementor-template-library-local-column-3,
5938 - .elementor-template-library-template-local .elementor-template-library-local-column-3,
5939 - .elementor-template-library-template-cloud:not(.elementor-template-library-template-view-grid) .elementor-template-library-local-column-3 {
5940 - display: none;
5941 - }
5942 - #elementor-template-library-order-toolbar-local .elementor-template-library-local-column-5,
5943 - .elementor-template-library-template-local .elementor-template-library-local-column-5,
5944 - .elementor-template-library-template-cloud:not(.elementor-template-library-template-view-grid) .elementor-template-library-local-column-5 {
5945 - width: 41%;
5946 - }
5947 -}
5948 4880
5949 -.elementor-template-library-template-local .elementor-template-library-template-more,
5950 -.elementor-template-library-template-cloud .elementor-template-library-template-more {
5951 - display: none;
5952 - position: absolute;
5953 - background-color: var(--e-a-bg-default);
5954 - border-radius: var(--e-a-border-radius);
5955 - box-shadow: 1px 3px 11px rgba(0, 0, 0, 0.3);
5956 - inset-block-start: 100%;
5957 - inset-inline-end: 0;
5958 - z-index: 1;
5959 - list-style: none;
5960 - margin: 0;
5961 - padding: 0;
4881 +#elementor-template-library-order-toolbar-local {
4882 + margin-block-start: 30px;
5962 4883 }
5963 -.elementor-template-library-template-local .elementor-template-library-template-more > li button,
5964 -.elementor-template-library-template-local .elementor-template-library-template-more > li a,
5965 -.elementor-template-library-template-cloud .elementor-template-library-template-more > li button,
5966 -.elementor-template-library-template-cloud .elementor-template-library-template-more > li a {
5967 - background: transparent;
5968 - margin: 0;
5969 - font-size: inherit;
5970 - font-family: inherit;
5971 - color: inherit;
5972 - border: none;
5973 - padding: 10px 20px;
5974 - font-size: 11px;
5975 - cursor: pointer;
5976 - display: flex;
5977 - align-items: center;
5978 - gap: 8px;
5979 - width: 100%;
4884 +#elementor-template-library-order-toolbar-local .elementor-template-library-order-label {
4885 + line-height: 1;
4886 + font-size: 10px;
4887 + font-weight: 500;
5980 4888 }
5981 -.elementor-template-library-template-local .elementor-template-library-template-more > li button.disabled,
5982 -.elementor-template-library-template-local .elementor-template-library-template-more > li a.disabled,
5983 -.elementor-template-library-template-cloud .elementor-template-library-template-more > li button.disabled,
5984 -.elementor-template-library-template-cloud .elementor-template-library-template-more > li a.disabled {
5985 - cursor: not-allowed;
5986 - color: var(--e-a-color-txt-disabled);
5987 -}
5988 -.elementor-template-library-template-local .elementor-template-library-template-more > li a,
5989 -.elementor-template-library-template-cloud .elementor-template-library-template-more > li a {
5990 - color: var(--e-a-color-txt);
5991 - text-decoration: none;
5992 -}
5993 -.elementor-template-library-template-local .elementor-template-library-template-more .elementor-template-library-template-delete,
5994 -.elementor-template-library-template-cloud .elementor-template-library-template-more .elementor-template-library-template-delete {
5995 - color: var(--e-a-color-danger);
5996 -}
5997 -.elementor-template-library-template-local .elementor-template-library-template-more i,
5998 -.elementor-template-library-template-cloud .elementor-template-library-template-more i {
5999 - font-size: 16px;
6000 -}
6001 -.elementor-template-library-template-local .elementor-template-library-template-more-toggle,
6002 -.elementor-template-library-template-cloud .elementor-template-library-template-more-toggle {
6003 - margin-inline-start: auto;
6004 - cursor: pointer;
6005 - background: none;
6006 - border: none;
6007 - padding: 0;
6008 - display: flex;
6009 - align-items: center;
6010 - justify-content: center;
6011 -}
6012 -.elementor-template-library-template-local .elementor-template-library-template-more-toggle i,
6013 -.elementor-template-library-template-cloud .elementor-template-library-template-more-toggle i {
6014 - font-size: 20px;
6015 -}
6016 4889
6017 -.elementor-template-library-template-local,
6018 -.elementor-template-library-template-cloud:not(.elementor-template-library-template-view-grid) {
4890 +.elementor-template-library-template-local {
6019 4891 height: 50px;
6020 4892 width: 100%;
6021 4893 margin-block-start: 1px;
6022 4894 transition: background-color 0.3s linear;
6023 4895 }
6024 -.elementor-template-library-template-local:hover,
6025 -.elementor-template-library-template-cloud:not(.elementor-template-library-template-view-grid):hover {
4896 +.elementor-template-library-template-local:hover {
6026 4897 background-color: var(--e-a-bg-hover);
6027 4898 }
6028 -.elementor-template-library-template-local:first-child,
6029 -.elementor-template-library-template-cloud:not(.elementor-template-library-template-view-grid):first-child {
4899 +.elementor-template-library-template-local:first-child {
6030 4900 border-start-start-radius: 3px;
6031 4901 border-start-end-radius: 3px;
6032 4902 border-end-start-radius: 0;
6033 4903 border-end-end-radius: 0;
6034 4904 }
6035 -.elementor-template-library-template-local:last-child,
6036 -.elementor-template-library-template-cloud:not(.elementor-template-library-template-view-grid):last-child {
4905 +.elementor-template-library-template-local:last-child {
6037 4906 border-start-start-radius: 0;
6038 4907 border-start-end-radius: 0;
6039 4908 border-end-start-radius: 3px;
6040 4909 border-end-end-radius: 3px;
6041 4910 }
6042 -.elementor-template-library-template-local .elementor-template-library-template-name,
6043 -.elementor-template-library-template-cloud:not(.elementor-template-library-template-view-grid) .elementor-template-library-template-name {
4911 +.elementor-template-library-template-local .elementor-template-library-template-name {
6044 4912 font-weight: 500;
6045 4913 }
6046 -.elementor-template-library-template-local .elementor-template-library-template-name i,
6047 -.elementor-template-library-template-cloud:not(.elementor-template-library-template-view-grid) .elementor-template-library-template-name i {
6048 - font-size: 16px;
6049 -}
6050 4914 .elementor-template-library-template-local .elementor-template-library-template-name,
6051 -.elementor-template-library-template-local .elementor-template-library-template-meta,
6052 -.elementor-template-library-template-cloud:not(.elementor-template-library-template-view-grid) .elementor-template-library-template-name,
6053 -.elementor-template-library-template-cloud:not(.elementor-template-library-template-view-grid) .elementor-template-library-template-meta {
4915 +.elementor-template-library-template-local .elementor-template-library-template-meta {
6054 4916 padding-inline-end: 20px;
6055 4917 }
6056 -.elementor-template-library-template-local .elementor-template-library-local-column-1 i,
6057 -.elementor-template-library-template-cloud:not(.elementor-template-library-template-view-grid) .elementor-template-library-local-column-1 i {
6058 - padding-inline-end: 10px;
6059 -}
6060 4918 .elementor-template-library-template-local .elementor-template-library-template-name,
6061 4919 .elementor-template-library-template-local .elementor-template-library-template-meta,
6062 4920 .elementor-template-library-template-local .elementor-template-library-template-preview,
6063 -.elementor-template-library-template-local .elementor-template-library-template-action,
6064 -.elementor-template-library-template-cloud:not(.elementor-template-library-template-view-grid) .elementor-template-library-template-name,
6065 -.elementor-template-library-template-cloud:not(.elementor-template-library-template-view-grid) .elementor-template-library-template-meta,
6066 -.elementor-template-library-template-cloud:not(.elementor-template-library-template-view-grid) .elementor-template-library-template-preview,
6067 -.elementor-template-library-template-cloud:not(.elementor-template-library-template-view-grid) .elementor-template-library-template-action {
4921 +.elementor-template-library-template-local .elementor-template-library-template-action {
6068 4922 white-space: nowrap;
6069 4923 text-overflow: ellipsis;
6070 4924 overflow: hidden;
6071 4925 }
6072 -.elementor-template-library-template-local .elementor-template-library-template-controls,
6073 -.elementor-template-library-template-cloud:not(.elementor-template-library-template-view-grid) .elementor-template-library-template-controls {
4926 +.elementor-template-library-template-local .elementor-template-library-template-controls {
6074 4927 position: relative;
6075 4928 display: flex;
6076 4929 align-items: center;
6077 4930 }
6078 -.elementor-template-library-template-local .elementor-template-library-template-controls > div,
6079 -.elementor-template-library-template-local .elementor-template-library-template-controls > button,
6080 -.elementor-template-library-template-cloud:not(.elementor-template-library-template-view-grid) .elementor-template-library-template-controls > div,
6081 -.elementor-template-library-template-cloud:not(.elementor-template-library-template-view-grid) .elementor-template-library-template-controls > button {
4931 +.elementor-template-library-template-local .elementor-template-library-template-controls > div {
6082 4932 cursor: pointer;
6083 4933 transition: color 0.5s;
6084 4934 }
6085 -.elementor-template-library-template-local .elementor-template-library-template-insert.disabled,
6086 -.elementor-template-library-template-cloud:not(.elementor-template-library-template-view-grid) .elementor-template-library-template-insert.disabled {
6087 - color: #F5D0FE;
4935 +.elementor-template-library-template-local .elementor-template-library-template-insert i {
4936 + margin-inline-end: 3px;
6088 4937 }
6089 -.elementor-template-library-template-local .elementor-template-library-template-insert.disabled:hover, .elementor-template-library-template-local .elementor-template-library-template-insert.disabled:focus,
6090 -.elementor-template-library-template-cloud:not(.elementor-template-library-template-view-grid) .elementor-template-library-template-insert.disabled:hover,
6091 -.elementor-template-library-template-cloud:not(.elementor-template-library-template-view-grid) .elementor-template-library-template-insert.disabled:focus {
6092 - cursor: not-allowed;
4938 +.elementor-template-library-template-local .elementor-template-library-template-control-title {
4939 + margin-inline-start: 6px;
6093 4940 }
6094 -.elementor-template-library-template-local .elementor-template-library-template-insert i,
6095 -.elementor-template-library-template-cloud:not(.elementor-template-library-template-view-grid) .elementor-template-library-template-insert i {
6096 - margin-inline-end: 3px;
4941 +.elementor-template-library-template-local .elementor-template-library-template-more .elementor-template-library-template-delete:hover {
4942 + color: var(--e-a-color-danger);
6097 4943 }
4944 +.elementor-template-library-template-local .elementor-template-library-template-more {
4945 + display: none;
4946 + position: absolute;
4947 + background-color: var(--e-a-bg-default);
4948 + padding: 3px 20px;
4949 + border-radius: var(--e-a-border-radius);
4950 + box-shadow: 1px 3px 11px rgba(0, 0, 0, 0.3);
4951 + top: 100%;
4952 + right: 0;
4953 + transform: translateX(65%) translateY(-7px);
4954 + z-index: 1;
4955 +}
4956 +.elementor-template-library-template-local .elementor-template-library-template-more:before {
4957 + content: "";
4958 + position: absolute;
4959 + border: solid transparent;
4960 + border-width: 8px 4px;
4961 + border-block-end-color: var(--e-a-color-white);
4962 + transform: translateY(-100%);
4963 +}
4964 +.elementor-template-library-template-local .elementor-template-library-template-more > div {
4965 + margin: 10px 0;
4966 + font-size: 11px;
4967 +}
4968 +.elementor-template-library-template-local .elementor-template-library-template-more a {
4969 + color: var(--e-a-color-txt);
4970 +}
4971 +.elementor-template-library-template-local .elementor-template-library-template-more-toggle {
4972 + flex-grow: 1;
4973 + text-align: end;
4974 +}
4975 +.elementor-template-library-template-local .elementor-template-library-template-more-toggle i {
4976 + font-size: 16px;
4977 +}
6098 4978
6099 4979 #elementor-template-library-preview {
6100 4980 height: 100%;
6101 4981 overflow: hidden;
@@ -6101,9 +4981,9 @@
6101 4981 overflow: hidden;
6102 4982 }
6103 4983 #elementor-template-library-preview iframe {
6104 4984 height: 150%;
6105 - transform: scale(0.666) translateX(calc(-25% * var(--direction-multiplier))) translateY(-25%);
4985 + transform: scale(0.666) translateX(-25%) translateY(-25%);
6106 4986 }
6107 4987 @media (max-width: 1439px) {
6108 4988 #elementor-template-library-preview iframe {
6109 4989 width: 1440px;
@@ -6119,14 +4999,8 @@
6119 4999 font-size: 64px;
6120 5000 margin-block-start: 45px;
6121 5001 line-height: 1;
6122 5002 }
6123 -.elementor-template-library-blank-icon i {
6124 - font-size: 85px;
6125 -}
6126 -.elementor-template-library-blank-icon i.eicon-library-upload {
6127 - font-size: 65px;
6128 -}
6129 5003 .elementor-template-library-blank-icon img {
6130 5004 width: 70px;
6131 5005 }
6132 5006 .elementor-template-library-blank-icon .elementor-template-library-no-results {
@@ -6164,499 +5038,8 @@
6164 5038 #elementor-template-library-save-template-form > * {
6165 5039 height: 55px;
6166 5040 font-size: 16px;
6167 5041 }
6168 -#elementor-template-library-save-template-form .cloud-library-form-inputs > * {
6169 - height: 55px;
6170 - font-size: 16px;
6171 - margin-block-end: 15px;
6172 -}
6173 -#elementor-template-library-save-template-form .cloud-library-form-inputs {
6174 - display: block;
6175 - width: 500px;
6176 - margin: 0 auto;
6177 -}
6178 -#elementor-template-library-save-template-form .cloud-library-form-inputs .upgrade-tooltip,
6179 -#elementor-template-library-save-template-form .cloud-library-form-inputs .connect-badge {
6180 - display: none;
6181 -}
6182 -#elementor-template-library-save-template-form .cloud-library-form-inputs .divider {
6183 - margin-inline: 5px;
6184 -}
6185 -#elementor-template-library-save-template-form .cloud-library-form-inputs .upgrade-badge {
6186 - display: none;
6187 - border: 1px solid rgba(147, 0, 63, 0.5019607843);
6188 - padding: 3px 5px;
6189 - border-radius: 100px;
6190 - margin-inline: 5px;
6191 -}
6192 -#elementor-template-library-save-template-form .cloud-library-form-inputs .upgrade-badge a {
6193 - color: var(--e-a-btn-bg-accent);
6194 -}
6195 -#elementor-template-library-save-template-form .cloud-library-form-inputs .upgrade-badge a i {
6196 - margin-inline-end: 5px;
6197 -}
6198 -#elementor-template-library-save-template-form .cloud-library-form-inputs.max-capacity .quota-cta {
6199 - display: inline;
6200 -}
6201 -#elementor-template-library-save-template-form .cloud-library-form-inputs .ellipsis-container {
6202 - display: inline;
6203 - background: var(--e-a-bg-hover);
6204 - padding: 0 2px 1px;
6205 - border: none;
6206 - border-radius: 2px;
6207 - vertical-align: bottom;
6208 - cursor: pointer;
6209 - font-family: inherit;
6210 - font-size: inherit;
6211 - color: inherit;
6212 - line-height: inherit;
6213 -}
6214 -#elementor-template-library-save-template-form .cloud-library-form-inputs .ellipsis-container:hover {
6215 - background: var(--e-a-bg-active);
6216 -}
6217 -#elementor-template-library-save-template-form .cloud-library-form-inputs .ellipsis-container:focus-visible {
6218 - outline: 2px solid var(--e-a-border-color-focus);
6219 - outline-offset: 2px;
6220 -}
6221 -#elementor-template-library-save-template-form .cloud-library-form-inputs.promotion .upgrade-tooltip,
6222 -#elementor-template-library-save-template-form .cloud-library-form-inputs.promotion .connect-badge,
6223 -#elementor-template-library-save-template-form .cloud-library-form-inputs.promotion .upgrade-badge, #elementor-template-library-save-template-form .cloud-library-form-inputs.max-capacity .upgrade-tooltip,
6224 -#elementor-template-library-save-template-form .cloud-library-form-inputs.max-capacity .connect-badge,
6225 -#elementor-template-library-save-template-form .cloud-library-form-inputs.max-capacity .upgrade-badge {
6226 - display: inline;
6227 -}
6228 -#elementor-template-library-save-template-form .cloud-library-form-inputs.promotion .ellipsis-container,
6229 -#elementor-template-library-save-template-form .cloud-library-form-inputs.promotion #cloud,
6230 -#elementor-template-library-save-template-form .cloud-library-form-inputs.promotion .cloud label, #elementor-template-library-save-template-form .cloud-library-form-inputs.max-capacity .ellipsis-container,
6231 -#elementor-template-library-save-template-form .cloud-library-form-inputs.max-capacity #cloud,
6232 -#elementor-template-library-save-template-form .cloud-library-form-inputs.max-capacity .cloud label {
6233 - pointer-events: none;
6234 -}
6235 -#elementor-template-library-save-template-form .cloud-library-form-inputs.promotion .ellipsis-container,
6236 -#elementor-template-library-save-template-form .cloud-library-form-inputs.promotion .divider, #elementor-template-library-save-template-form .cloud-library-form-inputs.max-capacity .ellipsis-container,
6237 -#elementor-template-library-save-template-form .cloud-library-form-inputs.max-capacity .divider {
6238 - display: none;
6239 -}
6240 -#elementor-template-library-save-template-form .cloud-library-form-inputs.promotion .connect-divider, #elementor-template-library-save-template-form .cloud-library-form-inputs.max-capacity .connect-divider {
6241 - color: var(--e-a-color-txt-muted);
6242 - margin-inline: 5px;
6243 -}
6244 -#elementor-template-library-save-template-form .cloud-library-form-inputs .quota-cta {
6245 - display: none;
6246 - float: inline-start;
6247 -}
6248 -#elementor-template-library-save-template-form .cloud-library-form-inputs .quota-cta p {
6249 - font-size: 13px;
6250 - color: var(--e-a-btn-bg-accent);
6251 - text-align: start;
6252 -}
6253 -#elementor-template-library-save-template-form .cloud-library-form-inputs .quota-cta a {
6254 - color: var(--e-a-btn-bg-accent);
6255 - text-decoration: underline;
6256 -}
6257 -#elementor-template-library-save-template-form .cloud-library-form-inputs #elementor-template-library-save-template-submit {
6258 - float: inline-end;
6259 -}
6260 -#elementor-template-library-save-template-form .cloud-library-form-inputs #elementor-template-library-save-template-submit[disabled] {
6261 - cursor: not-allowed;
6262 -}
6263 -#elementor-template-library-save-template-form .cloud-library-form-inputs .source-selections {
6264 - display: flex;
6265 - flex-direction: column;
6266 - text-align: start;
6267 - border: var(--e-a-border-bold);
6268 - padding: 15px;
6269 - height: auto;
6270 - gap: 10px;
6271 - position: relative;
6272 -}
6273 -#elementor-template-library-save-template-form .cloud-library-form-inputs .source-selections input[type=checkbox]:checked {
6274 - background: #69727D;
6275 - inset-block-start: -3px;
6276 - position: relative;
6277 -}
6278 -#elementor-template-library-save-template-form .cloud-library-form-inputs .source-selections-input {
6279 - position: relative;
6280 - display: inline-block;
6281 -}
6282 -#elementor-template-library-save-template-form .cloud-library-form-inputs .source-selections-input.cloud, #elementor-template-library-save-template-form .cloud-library-form-inputs .source-selections-input.local {
6283 - white-space: nowrap;
6284 - text-overflow: ellipsis;
6285 - overflow: hidden;
6286 - overflow: visible;
6287 - display: inline-flex;
6288 - align-items: baseline;
6289 - line-height: 27px;
6290 -}
6291 -#elementor-template-library-save-template-form .cloud-library-form-inputs .source-selections-input #cloud,
6292 -#elementor-template-library-save-template-form .cloud-library-form-inputs .source-selections-input #local {
6293 - flex-shrink: 0;
6294 - position: relative;
6295 - inset-block-start: 2px;
6296 -}
6297 -#elementor-template-library-save-template-form .cloud-library-form-inputs .source-selections-input #cloud:checked,
6298 -#elementor-template-library-save-template-form .cloud-library-form-inputs .source-selections-input #local:checked {
6299 - inset-block-start: -2px;
6300 -}
6301 -#elementor-template-library-save-template-form .cloud-library-form-inputs .source-selections-input .eicon-ellipsis-h {
6302 - vertical-align: bottom;
6303 -}
6304 -#elementor-template-library-save-template-form .cloud-library-form-inputs .source-selections-input .eicon-info {
6305 - margin-inline: 5px;
6306 - color: var(--e-a-color-txt-muted);
6307 - cursor: pointer;
6308 -}
6309 -#elementor-template-library-save-template-form .cloud-library-form-inputs .source-selections-input .selected-folder {
6310 - display: none;
6311 - margin-inline-end: 5px;
6312 - align-items: baseline;
6313 - white-space: nowrap;
6314 - text-overflow: ellipsis;
6315 - overflow: hidden;
6316 -}
6317 -#elementor-template-library-save-template-form .cloud-library-form-inputs .source-selections-input .selected-folder[style*="display: inline"] {
6318 - display: inline-flex !important;
6319 -}
6320 -#elementor-template-library-save-template-form .cloud-library-form-inputs .source-selections-input .selected-folder-text {
6321 - text-decoration: underline;
6322 - cursor: pointer;
6323 - white-space: nowrap;
6324 - text-overflow: ellipsis;
6325 - overflow: hidden;
6326 -}
6327 -#elementor-template-library-save-template-form .cloud-library-form-inputs .source-selections-input .eicon-editor-close {
6328 - cursor: pointer;
6329 - flex-shrink: 0;
6330 -}
6331 -#elementor-template-library-save-template-form .cloud-library-form-inputs .source-selections-input #elementor-template-library-connect__badge {
6332 - color: var(--e-a-color-primary-bold);
6333 - font-size: 14px;
6334 -}
6335 -#elementor-template-library-save-template-form .cloud-library-form-inputs .source-selections-input #elementor-template-library-connect__badge:hover {
6336 - text-decoration: underline;
6337 -}
6338 -#elementor-template-library-save-template-form .cloud-library-form-inputs .cloud-folder-selection-dropdown {
6339 - display: none;
6340 - position: absolute;
6341 - inset-block-start: 40px;
6342 - background-color: var(--e-a-bg-default);
6343 - min-width: 187px;
6344 - overflow: auto;
6345 - box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
6346 - z-index: 1;
6347 - border-radius: 2px;
6348 - max-width: 450px;
6349 -}
6350 -#elementor-template-library-save-template-form .cloud-library-form-inputs .cloud-folder-selection-dropdown li {
6351 - white-space: nowrap;
6352 - text-overflow: ellipsis;
6353 - overflow: hidden;
6354 -}
6355 -#elementor-template-library-save-template-form .cloud-library-form-inputs .cloud-folder-selection-dropdown .eicon-loading {
6356 - margin: 15px;
6357 -}
6358 -#elementor-template-library-save-template-form .cloud-library-form-inputs .cloud-folder-selection-dropdown .eicon-folder-o {
6359 - margin-inline-end: 10px;
6360 -}
6361 -#elementor-template-library-save-template-form .cloud-library-form-inputs .cloud-folder-selection-dropdown .folder-list {
6362 - max-height: 170px;
6363 -}
6364 -#elementor-template-library-save-template-form .cloud-library-form-inputs .cloud-folder-selection-dropdown .folder-item {
6365 - padding: 5px 15px;
6366 - cursor: pointer;
6367 - list-style: none;
6368 -}
6369 -#elementor-template-library-save-template-form .cloud-library-form-inputs .cloud-folder-selection-dropdown .folder-item[data-id="0"] .eicon-folder-o {
6370 - display: none;
6371 -}
6372 -#elementor-template-library-save-template-form .cloud-library-form-inputs .cloud-folder-selection-dropdown .folder-item .eicon-loading {
6373 - margin: 0px;
6374 -}
6375 -#elementor-template-library-save-template-form .cloud-library-form-inputs .cloud-folder-selection-dropdown .folder-item[data-id="0"] {
6376 - text-decoration: underline;
6377 -}
6378 -#elementor-template-library-save-template-form .cloud-library-form-inputs .cloud-folder-selection-dropdown .folder-item:hover, #elementor-template-library-save-template-form .cloud-library-form-inputs .cloud-folder-selection-dropdown .folder-item.selected, #elementor-template-library-save-template-form .cloud-library-form-inputs .cloud-folder-selection-dropdown .folder-item:focus {
6379 - background: var(--e-a-border-color);
6380 -}
6381 -#elementor-template-library-save-template-form .cloud-library-form-inputs .cloud-folder-selection-dropdown .folder-item:focus-visible {
6382 - outline: 2px solid var(--e-a-border-color-focus);
6383 - outline-offset: -2px;
6384 -}
6385 -#elementor-template-library-save-template-form .cloud-library-form-inputs .cloud-folder-selection-dropdown .folder-item.disabled {
6386 - pointer-events: none;
6387 - opacity: 0.3;
6388 -}
6389 -#elementor-template-library-save-template-form .cloud-library-form-inputs .cloud-folder-selection-dropdown .no-results {
6390 - text-align: center;
6391 - font-size: 13px;
6392 - margin: 0 20px;
6393 - padding-block: 15px;
6394 - pointer-events: none;
6395 -}
6396 -#elementor-template-library-save-template-form .cloud-library-form-inputs .cloud-folder-selection-dropdown .no-results i {
6397 - font-size: 24px;
6398 - padding-block-end: 10px;
6399 -}
6400 -#elementor-template-library-save-template-form .cloud-library-form-inputs #elementor-template-library-save-template-name {
6401 - border-block-start: none;
6402 - border-inline: none;
6403 -}
6404 -#elementor-template-library-save-template-form .cloud-library-form-inputs .source-selections-input.disabled {
6405 - pointer-events: none;
6406 - opacity: 0.3;
6407 -}
6408 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b {
6409 - display: flex;
6410 - flex-direction: column;
6411 - width: 600px;
6412 - text-align: start;
6413 -}
6414 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .template-name-label,
6415 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .save-location-label {
6416 - font-size: 12px;
6417 - font-weight: 400;
6418 - color: var(--e-a-color-txt);
6419 -}
6420 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b #elementor-template-library-save-template-name {
6421 - width: 100%;
6422 - padding: 12px 15px;
6423 - border: var(--e-a-border-bold);
6424 - border-radius: 3px;
6425 - margin-block-end: 0;
6426 -}
6427 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections {
6428 - border: none;
6429 - padding: 0;
6430 - gap: 12px;
6431 - margin-block-start: 20px;
6432 -}
6433 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input {
6434 - display: flex;
6435 - align-items: center;
6436 - padding: 12px 15px;
6437 - border: var(--e-a-border-bold);
6438 - border-radius: 3px;
6439 - width: 100%;
6440 - line-height: normal;
6441 - gap: 8px;
6442 -}
6443 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input:has(input[type=checkbox]:checked) {
6444 - border-color: var(--e-a-color-txt);
6445 -}
6446 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input.cloud, #elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input.local {
6447 - display: flex;
6448 -}
6449 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input input[type=checkbox] {
6450 - margin-inline-end: 0;
6451 - flex-shrink: 0;
6452 - position: relative;
6453 -}
6454 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input input[type=checkbox]:checked {
6455 - inset-block-start: 0;
6456 -}
6457 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input input[type=checkbox]::after {
6458 - content: "";
6459 - position: absolute;
6460 - inset-inline-end: -8px;
6461 - width: 1px;
6462 - height: 18px;
6463 - background-color: var(--e-a-border-color);
6464 -}
6465 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input > i:first-of-type {
6466 - margin-inline-start: 12px;
6467 - margin-inline-end: 4px;
6468 - font-size: 24px;
6469 - color: var(--e-a-color-txt);
6470 -}
6471 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input > svg:first-of-type {
6472 - margin-inline-start: 8px;
6473 - margin-inline-end: 0;
6474 - font-size: 24px;
6475 - color: var(--e-a-color-txt);
6476 -}
6477 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input label {
6478 - flex: 0 0 auto;
6479 - margin: 0;
6480 - cursor: pointer;
6481 -}
6482 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input .divider {
6483 - margin-inline: 0;
6484 -}
6485 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input .ellipsis-container {
6486 - display: inline;
6487 - background: transparent;
6488 - padding: 0;
6489 - border-radius: 0;
6490 - vertical-align: baseline;
6491 - text-decoration: underline;
6492 - cursor: pointer;
6493 - margin-inline-start: 0;
6494 -}
6495 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input .ellipsis-container:hover {
6496 - background: transparent;
6497 -}
6498 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input .select-folder-link {
6499 - color: var(--e-a-color-primary-bold);
6500 - text-decoration: underline;
6501 - cursor: pointer;
6502 - margin-inline-start: 4px;
6503 -}
6504 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input .select-folder-link:hover {
6505 - text-decoration: none;
6506 -}
6507 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input .upgrade-badge {
6508 - display: none;
6509 - border: none;
6510 - padding: 0;
6511 - border-radius: 0;
6512 - margin-inline-start: 0;
6513 - background: transparent;
6514 - transition: background-color 0.2s;
6515 - padding: 3px 8px;
6516 -}
6517 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input .upgrade-badge:hover {
6518 - background-color: var(--e-a-btn-bg-primary-hover);
6519 - border-radius: 3px;
6520 -}
6521 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input .upgrade-badge a {
6522 - color: var(--e-a-btn-bg-accent);
6523 - text-decoration: none;
6524 - display: flex;
6525 - align-items: center;
6526 - gap: 4px;
6527 - font-size: 14px;
6528 - font-weight: 500;
6529 -}
6530 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input .upgrade-badge a i {
6531 - margin: 0;
6532 - font-size: 14px;
6533 -}
6534 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input .connect-badge {
6535 - display: none;
6536 -}
6537 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input .connect-badge .connect-divider {
6538 - color: var(--e-a-color-txt-muted);
6539 - margin-inline: 5px;
6540 -}
6541 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input .connect-badge a {
6542 - color: var(--e-a-color-info);
6543 - text-decoration: underline;
6544 -}
6545 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input .connect-badge a:hover {
6546 - text-decoration: none;
6547 -}
6548 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input .account-badge {
6549 - display: flex;
6550 - align-items: center;
6551 - gap: 6px;
6552 - padding: 6px 12px;
6553 - border: none;
6554 - border-radius: 20px;
6555 - font-size: 14px;
6556 - font-weight: 500;
6557 - cursor: pointer;
6558 - transition: opacity 0.2s;
6559 - margin-inline-start: auto;
6560 -}
6561 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input .account-badge:hover {
6562 - opacity: 0.8;
6563 -}
6564 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input .account-badge i {
6565 - margin: 0;
6566 - font-size: 14px;
6567 -}
6568 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input .account-badge.cloud-account-badge {
6569 - background-color: var(--e-a-bg-info);
6570 - color: var(--e-a-color-info);
6571 -}
6572 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input .account-badge.cloud-account-badge i {
6573 - color: var(--e-a-color-info);
6574 -}
6575 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input .account-badge.site-account-badge {
6576 - background-color: var(--e-a-bg-warning);
6577 - color: var(--e-a-btn-bg-warning-hover);
6578 -}
6579 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input .account-badge.site-account-badge i {
6580 - color: var(--e-a-btn-bg-warning-hover);
6581 -}
6582 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input .selected-folder {
6583 - display: none;
6584 - margin-inline-start: 8px;
6585 - align-items: center;
6586 - gap: 6px;
6587 -}
6588 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input .selected-folder[style*="display: inline"] {
6589 - display: inline-flex !important;
6590 -}
6591 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input .selected-folder-text {
6592 - text-decoration: underline;
6593 - cursor: pointer;
6594 -}
6595 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input .eicon-editor-close {
6596 - cursor: pointer;
6597 - font-size: 14px;
6598 -}
6599 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .cloud-folder-selection-dropdown {
6600 - inset-block-start: 75px;
6601 - inset-inline-start: 230px;
6602 -}
6603 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections-input.cloud:not(:has(.connect-badge)) .connect-badge {
6604 - display: none;
6605 -}
6606 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections-input.cloud:has(.connect-badge) .connect-badge {
6607 - display: inline;
6608 -}
6609 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections-input.cloud:has(.connect-badge) .upgrade-badge {
6610 - display: none;
6611 -}
6612 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections-input.cloud:has(.connect-badge) {
6613 - border-color: var(--e-a-border-color);
6614 -}
6615 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections-input.cloud:has(.connect-badge) > i:first-of-type,
6616 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections-input.cloud:has(.connect-badge) label,
6617 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections-input.cloud:has(.connect-badge) .divider {
6618 - color: var(--e-a-color-txt-disabled);
6619 -}
6620 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections-input.cloud:has(.connect-badge) input[type=checkbox]::after {
6621 - background-color: var(--e-a-color-txt-disabled);
6622 -}
6623 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b.promotion .source-selections-input.cloud, #elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b.max-capacity .source-selections-input.cloud {
6624 - border-color: var(--e-a-border-color);
6625 -}
6626 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b.promotion .source-selections-input.cloud > i:first-of-type,
6627 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b.promotion .source-selections-input.cloud label,
6628 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b.promotion .source-selections-input.cloud .divider, #elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b.max-capacity .source-selections-input.cloud > i:first-of-type,
6629 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b.max-capacity .source-selections-input.cloud label,
6630 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b.max-capacity .source-selections-input.cloud .divider {
6631 - color: var(--e-a-color-txt-disabled);
6632 -}
6633 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b.promotion .source-selections-input.cloud input[type=checkbox]::after, #elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b.max-capacity .source-selections-input.cloud input[type=checkbox]::after {
6634 - background-color: var(--e-a-color-txt-disabled);
6635 -}
6636 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b.promotion .source-selections-input.cloud .upgrade-badge, #elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b.max-capacity .source-selections-input.cloud .upgrade-badge {
6637 - display: inline-flex;
6638 -}
6639 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b.promotion .source-selections-input.cloud .ellipsis-container, #elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b.max-capacity .source-selections-input.cloud .ellipsis-container {
6640 - display: none;
6641 -}
6642 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b.promotion .source-selections-input.cloud .divider, #elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b.max-capacity .source-selections-input.cloud .divider {
6643 - display: block;
6644 -}
6645 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b.promotion .source-selections-input.cloud input[type=checkbox],
6646 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b.promotion .source-selections-input.cloud label, #elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b.max-capacity .source-selections-input.cloud input[type=checkbox],
6647 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b.max-capacity .source-selections-input.cloud label {
6648 - pointer-events: none;
6649 -}
6650 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b.max-capacity .quota-cta {
6651 - display: block;
6652 - margin-block-start: 15px;
6653 -}
6654 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b #elementor-template-library-save-template-submit {
6655 - align-self: center;
6656 - margin-block-start: 20px;
6657 - float: none;
6658 -}
6659 5042
6660 5043 #elementor-template-library-save-template-name {
6661 5044 width: 500px;
6662 5045 padding-inline-start: 25px;
@@ -6708,12 +5091,8 @@
6708 5091 padding: 100px 0 0;
6709 5092 min-height: 550px;
6710 5093 }
6711 5094
6712 -.elementor-template-library-cloud-empty__button {
6713 - margin-block-start: 45px;
6714 -}
6715 -
6716 5095 #elementor-template-library-connect-logo {
6717 5096 font-size: 20px;
6718 5097 }
6719 5098 #elementor-template-library-connect__button {
@@ -6750,11 +5129,11 @@
6750 5129 }
6751 5130
6752 5131 .elementor-template-library-blank-footer {
6753 5132 position: absolute;
6754 - inset-block-end: 70px;
6755 - inset-inline-start: 50%;
6756 - transform: translateX(calc(-50% * var(--direction-multiplier)));
5133 + bottom: 70px;
5134 + left: 50%;
5135 + transform: translateX(-50%);
6757 5136 font-style: italic;
6758 5137 color: var(--e-a-color-txt-muted);
6759 5138 }
6760 5139 @media (max-height: 700px) {
@@ -6786,287 +5165,50 @@
6786 5165 #elementor-template-library-error-info {
6787 5166 margin-block-start: 10px;
6788 5167 }
6789 5168
6790 -#elementor-library--infotip__dialog,
6791 -#elementor-library--connect_infotip__dialog,
6792 -#elementor-library--cloud-upgrade__dialog,
6793 -#elementor-library--site-info__dialog {
6794 - position: absolute;
6795 - z-index: 10000;
6796 - background-color: var(--e-a-bg-default);
6797 - box-shadow: var(--e-a-popover-shadow);
6798 - border-radius: var(--e-a-border-radius);
5169 +@media (max-width: 1439px) {
5170 + .elementor-template-library-local-column-1 {
5171 + width: 33%;
5172 + }
5173 + .elementor-template-library-local-column-2 {
5174 + width: 10%;
5175 + }
5176 + .elementor-template-library-local-column-3 {
5177 + width: 15%;
5178 + }
5179 + .elementor-template-library-local-column-4 {
5180 + width: 15%;
5181 + }
5182 + .elementor-template-library-local-column-5 {
5183 + width: 27%;
5184 + }
6799 5185 }
6800 -#elementor-library--infotip__dialog.variant-b,
6801 -#elementor-library--connect_infotip__dialog.variant-b,
6802 -#elementor-library--cloud-upgrade__dialog.variant-b,
6803 -#elementor-library--site-info__dialog.variant-b {
6804 - width: 200px;
6805 - color: var(--e-a-color-txt-invert);
6806 - background-color: var(--e-a-bg-secondary);
5186 +@media (min-width: 1440px) {
5187 + .elementor-template-library-local-column-1 {
5188 + width: 25%;
5189 + }
5190 + .elementor-template-library-local-column-2 {
5191 + width: 17%;
5192 + }
5193 + .elementor-template-library-local-column-3 {
5194 + width: 17%;
5195 + }
5196 + .elementor-template-library-local-column-4 {
5197 + width: 17%;
5198 + }
5199 + .elementor-template-library-local-column-5 {
5200 + width: 24%;
5201 + }
6807 5202 }
6808 -#elementor-library--infotip__dialog.variant-b .dialog-message,
6809 -#elementor-library--connect_infotip__dialog.variant-b .dialog-message,
6810 -#elementor-library--cloud-upgrade__dialog.variant-b .dialog-message,
6811 -#elementor-library--site-info__dialog.variant-b .dialog-message {
6812 - padding: 4px 8px 4px 8px;
5203 +@media (max-width: 1024px) {
5204 + .elementor-template-library-local-column-3 {
5205 + display: none;
5206 + }
5207 + .elementor-template-library-local-column-5 {
5208 + width: 41%;
5209 + }
6813 5210 }
6814 -#elementor-library--infotip__dialog__title,
6815 -#elementor-library--connect_infotip__dialog__title,
6816 -#elementor-library--cloud-upgrade__dialog__title,
6817 -#elementor-library--site-info__dialog__title {
6818 - font-size: 14px;
6819 -}
6820 -#elementor-library--infotip__dialog .dialog-buttons-wrapper,
6821 -#elementor-library--connect_infotip__dialog .dialog-buttons-wrapper,
6822 -#elementor-library--cloud-upgrade__dialog .dialog-buttons-wrapper,
6823 -#elementor-library--site-info__dialog .dialog-buttons-wrapper {
6824 - padding: 10px 0 10px 10px;
6825 - float: inline-end;
6826 -}
6827 -#elementor-library--infotip__dialog .dialog-button,
6828 -#elementor-library--connect_infotip__dialog .dialog-button,
6829 -#elementor-library--cloud-upgrade__dialog .dialog-button,
6830 -#elementor-library--site-info__dialog .dialog-button {
6831 - padding: 7px 25px;
6832 - font-size: 13px;
6833 - background: none;
6834 - color: var(--e-a-btn-bg-accent);
6835 - border: none;
6836 - font-weight: 500;
6837 - cursor: pointer;
6838 -}
6839 -#elementor-library--infotip__dialog:after,
6840 -#elementor-library--connect_infotip__dialog:after,
6841 -#elementor-library--cloud-upgrade__dialog:after,
6842 -#elementor-library--site-info__dialog:after {
6843 - content: "";
6844 - position: absolute;
6845 - inset-inline-end: 46%;
6846 - transform: scaleX(0.7);
6847 - border: 10px solid transparent;
6848 -}
6849 -
6850 -#elementor-library--infotip__dialog {
6851 - width: 265px;
6852 -}
6853 -#elementor-library--infotip__dialog .dialog-message {
6854 - padding: 20px 20px 0px 20px;
6855 -}
6856 -#elementor-library--infotip__dialog:after {
6857 - inset-block-start: 100%;
6858 - border-block-start-color: var(--e-a-bg-default);
6859 -}
6860 -#elementor-library--infotip__dialog.variant-b:after {
6861 - border-block-start-color: var(--e-a-bg-secondary);
6862 -}
6863 -
6864 -#elementor-library--connect_infotip__dialog {
6865 - width: 265px;
6866 -}
6867 -#elementor-library--connect_infotip__dialog .dialog-message {
6868 - padding: 20px;
6869 -}
6870 -#elementor-library--connect_infotip__dialog:not(.variant-b):after {
6871 - inset-block-end: 100%;
6872 - border-block-end-color: var(--e-a-bg-default);
6873 -}
6874 -#elementor-library--connect_infotip__dialog.variant-b:after {
6875 - border-block-start-color: var(--e-a-bg-secondary);
6876 - inset-block-start: 100%;
6877 -}
6878 -#elementor-library--connect_infotip__dialog.variant-b {
6879 - width: 265px;
6880 -}
6881 -
6882 -#elementor-library--cloud-upgrade__dialog {
6883 - width: 265px;
6884 -}
6885 -#elementor-library--cloud-upgrade__dialog:after {
6886 - inset-block-start: 100%;
6887 - border-block-start-color: var(--e-a-bg-default);
6888 -}
6889 -#elementor-library--cloud-upgrade__dialog.variant-b:after {
6890 - border-block-start-color: var(--e-a-bg-secondary);
6891 -}
6892 -
6893 -#elementor-library--site-info__dialog {
6894 - width: 265px;
6895 -}
6896 -#elementor-library--site-info__dialog:after {
6897 - inset-block-start: 100%;
6898 - border-block-start-color: var(--e-a-bg-default);
6899 -}
6900 -#elementor-library--site-info__dialog.variant-b:after {
6901 - border-block-start-color: var(--e-a-bg-secondary);
6902 -}
6903 -
6904 -.elementor-global-styles-dialog {
6905 - --gsd-color-text-primary: #0c0d0e;
6906 - --gsd-color-text-secondary: #3f444b;
6907 - --gsd-color-text-tertiary: #69727D;
6908 - --gsd-color-divider: rgba(0, 0, 0, 0.12);
6909 - --gsd-color-primary-main: #f0abfc;
6910 - --gsd-color-primary-hover: #e879f9;
6911 - --gsd-color-secondary-main: #515962;
6912 - --gsd-border-radius: 4px;
6913 - --gsd-spacing-horizontal: 24px;
6914 - --gsd-font-family: 'Roboto', sans-serif;
6915 - padding: 16px 0 0;
6916 - min-width: 444px;
6917 -}
6918 -.elementor-global-styles-dialog__header {
6919 - padding: 10px var(--gsd-spacing-horizontal) 0;
6920 - margin-block-end: 16px;
6921 -}
6922 -.elementor-global-styles-dialog__header h2 {
6923 - margin: 0 0 4px;
6924 - font-family: var(--gsd-font-family);
6925 - font-size: 16px;
6926 - font-weight: 500;
6927 - line-height: 1.3;
6928 - color: var(--gsd-color-text-primary);
6929 - letter-spacing: 0.15px;
6930 -}
6931 -.elementor-global-styles-dialog__header p {
6932 - margin: 0;
6933 - font-family: var(--gsd-font-family);
6934 - font-size: 14px;
6935 - font-weight: 400;
6936 - line-height: 20px;
6937 - color: var(--gsd-color-text-secondary);
6938 - letter-spacing: 0.15px;
6939 -}
6940 -.elementor-global-styles-dialog__options {
6941 - display: flex;
6942 - flex-direction: column;
6943 - gap: 12px;
6944 - padding: 0 var(--gsd-spacing-horizontal);
6945 -}
6946 -.elementor-global-styles-dialog__radio-card {
6947 - display: flex;
6948 - gap: 0;
6949 - padding: 12px 8px;
6950 - border: 1px solid var(--gsd-color-divider);
6951 - border-radius: var(--gsd-border-radius);
6952 - cursor: pointer;
6953 - transition: border-color 0.2s ease;
6954 -}
6955 -.elementor-global-styles-dialog__radio-card:has(input[type=radio]:checked) {
6956 - border: 2px solid var(--gsd-color-text-primary);
6957 - padding: 11px 7px;
6958 -}
6959 -.elementor-global-styles-dialog__radio-card input[type=radio] {
6960 - flex-shrink: 0;
6961 - width: 20px;
6962 - height: 20px;
6963 - margin: 9px;
6964 - cursor: pointer;
6965 - color: var(--gsd-color-text-tertiary);
6966 - accent-color: var(--gsd-color-text-primary);
6967 -}
6968 -.elementor-global-styles-dialog__radio-card-content {
6969 - display: flex;
6970 - align-items: flex-start;
6971 - flex-direction: column;
6972 - flex: 1;
6973 -}
6974 -.elementor-global-styles-dialog__radio-label {
6975 - font-family: var(--gsd-font-family);
6976 - font-size: 14px;
6977 - font-weight: 500;
6978 - line-height: 18px;
6979 - color: var(--gsd-color-text-primary);
6980 - letter-spacing: 0.15px;
6981 -}
6982 -.elementor-global-styles-dialog__radio-description {
6983 - font-family: var(--gsd-font-family);
6984 - font-size: 12px;
6985 - font-weight: 400;
6986 - line-height: 20px;
6987 - color: var(--gsd-color-text-secondary);
6988 - letter-spacing: 0.4px;
6989 -}
6990 -.elementor-global-styles-dialog__checkbox-container {
6991 - display: flex;
6992 - align-items: flex-start;
6993 - gap: 4px;
6994 - padding: 0;
6995 - margin-block-start: 0;
6996 -}
6997 -.elementor-global-styles-dialog__checkbox-option {
6998 - display: flex;
6999 - align-items: flex-start;
7000 - gap: 4px;
7001 - cursor: pointer;
7002 -}
7003 -.elementor-global-styles-dialog__checkbox-option input[type=checkbox] {
7004 - width: 18px;
7005 - height: 18px;
7006 - margin: 4px;
7007 - cursor: pointer;
7008 -}
7009 -.elementor-global-styles-dialog__checkbox-option input[type=checkbox]:checked {
7010 - background-color: var(--gsd-color-text-tertiary);
7011 -}
7012 -.elementor-global-styles-dialog__checkbox-label {
7013 - font-family: var(--gsd-font-family);
7014 - font-size: 12px;
7015 - font-weight: 400;
7016 - line-height: 1.43;
7017 - color: var(--gsd-color-text-primary);
7018 - letter-spacing: 0.15px;
7019 - padding-block-start: 4px;
7020 - margin-inline-start: 4px;
7021 -}
7022 -.elementor-global-styles-dialog__checkbox-label a {
7023 - color: #2563eb;
7024 - text-decoration: underline;
7025 -}
7026 -.elementor-global-styles-dialog__checkbox-label a:hover {
7027 - color: #2563eb;
7028 -}
7029 -.elementor-global-styles-dialog__footer {
7030 - display: flex;
7031 - justify-content: flex-end;
7032 - align-items: center;
7033 - gap: 8px;
7034 - padding: 16px var(--gsd-spacing-horizontal);
7035 -}
7036 -.elementor-global-styles-dialog__button-cancel {
7037 - padding: 6px 8px;
7038 - font-family: var(--gsd-font-family);
7039 - font-size: 15px;
7040 - font-weight: 500;
7041 - line-height: 24px;
7042 - letter-spacing: 0.4px;
7043 - color: var(--gsd-color-secondary-main);
7044 - background: transparent;
7045 - border: none;
7046 - border-radius: var(--gsd-border-radius);
7047 - cursor: pointer;
7048 -}
7049 -.elementor-global-styles-dialog__button-cancel:hover {
7050 - background: rgba(0, 0, 0, 0.04);
7051 -}
7052 -.elementor-global-styles-dialog__button-insert {
7053 - padding: 6px 16px;
7054 - font-family: var(--gsd-font-family);
7055 - font-size: 15px;
7056 - font-weight: 500;
7057 - line-height: 24px;
7058 - letter-spacing: 0.4px;
7059 - color: var(--gsd-color-text-primary);
7060 - background: var(--gsd-color-primary-main);
7061 - border: none;
7062 - border-radius: var(--gsd-border-radius);
7063 - cursor: pointer;
7064 -}
7065 -.elementor-global-styles-dialog__button-insert:hover {
7066 - background: var(--gsd-color-primary-hover);
7067 -}
7068 -
7069 5211 .elementor-tags-list {
7070 5212 display: none;
7071 5213 position: absolute;
7072 5214 width: 260px;
@@ -7156,10 +5298,10 @@
7156 5298 }
7157 5299 .elementor-tag-settings-popup:before {
7158 5300 content: "";
7159 5301 position: absolute;
7160 - inset-block-start: -20px;
7161 - inset-inline-start: 5px;
5302 + top: -20px;
5303 + left: 5px;
7162 5304 border: 10px solid transparent;
7163 5305 border-block-end-color: var(--e-a-border-color);
7164 5306 }
7165 5307 .elementor-tag-settings-popup .elementor-control-type-section:first-child {
@@ -7250,14 +5392,8 @@
7250 5392 cursor: default;
7251 5393 opacity: 0.5;
7252 5394 color: var(--e-a-color-disabled);
7253 5395 }
7254 -.elementor-context-menu-list__item--disabled.elementor-context-menu-list__item--has-shortcut-action {
7255 - opacity: 1;
7256 -}
7257 -.elementor-context-menu-list__item--disabled.elementor-context-menu-list__item--has-shortcut-action > :not(.elementor-context-menu-list__item__shortcut) {
7258 - opacity: 0.5;
7259 -}
7260 5396 .elementor-context-menu-list__item:not(.elementor-context-menu-list__item--disabled):hover, .elementor-context-menu-list__item:not(.elementor-context-menu-list__item--disabled):focus {
7261 5397 background-color: var(--e-a-bg-hover);
7262 5398 color: var(--e-a-color-hover);
7263 5399 }
@@ -7275,31 +5411,15 @@
7275 5411 color: var(--e-a-color-txt-muted);
7276 5412 }
7277 5413 .elementor-context-menu-list__item__shortcut--link-fullwidth {
7278 5414 position: absolute;
7279 - inset: 0;
5415 + left: 0;
5416 + top: 0;
5417 + width: 100%;
5418 + height: 100%;
7280 5419 z-index: 2;
7281 5420 cursor: pointer;
7282 5421 }
7283 -.elementor-context-menu-list__item__shortcut__new-badge {
7284 - border: 1px solid var(--e-a-color-primary-bold);
7285 - padding: 2px 8px;
7286 - color: var(--e-a-color-primary-bold);
7287 - border-radius: 10px;
7288 - font-size: 10px;
7289 -}
7290 -.elementor-context-menu-list__item__shortcut__promotion-badge {
7291 - display: flex;
7292 - align-items: center;
7293 - justify-content: center;
7294 - width: 24px;
7295 - height: 24px;
7296 - border-radius: 50%;
7297 - background-color: rgba(214, 16, 124, 0.12);
7298 - color: var(--e-a-color-accent-promotion, #D6107C);
7299 - font-size: 16px;
7300 - cursor: pointer;
7301 -}
7302 5422 .elementor-context-menu-list__item__title, .elementor-context-menu-list__item__shortcut {
7303 5423 font-size: 14px;
7304 5424 font-style: normal;
7305 5425 font-weight: 400;
@@ -7308,11 +5428,8 @@
7308 5428 }
7309 5429 .elementor-context-menu-list__item.elementor-context-menu-list__item-delete:not(.elementor-context-menu-list__item--disabled):hover > *, .elementor-context-menu-list__item.elementor-context-menu-list__item-delete:not(.elementor-context-menu-list__item--disabled):focus > * {
7310 5430 color: var(--e-global-color-danger);
7311 5431 }
7312 -.elementor-context-menu-list__item.elementor-hidden {
7313 - display: none;
7314 -}
7315 5432 .elementor-context-menu .eicon-pro-icon {
7316 5433 color: var(--e-global-color-accent);
7317 5434 }
7318 5435
@@ -7384,9 +5501,9 @@
7384 5501 }
7385 5502 .elementor-hotkeys__item--shortcut kbd:not(:last-of-type)::after {
7386 5503 content: "+";
7387 5504 position: absolute;
7388 - inset-inline-end: 0;
5505 + right: 0;
7389 5506 width: 9px;
7390 5507 text-align: center;
7391 5508 margin-inline-end: -18px;
7392 5509 }
@@ -7459,18 +5576,17 @@
7459 5576 }
7460 5577
7461 5578 body {
7462 5579 --e-editor-navigator-width: 240px;
7463 - --e-editor-navigator-indicator-width: 3px;
7464 5580 --e-editor-navigator-promotion-height: 30px;
7465 5581 }
7466 5582
7467 5583 #elementor-navigator {
7468 5584 position: fixed;
7469 - inset-block-start: 100px;
7470 - inset-inline-end: 30px;
5585 + top: 100px;
7471 5586 width: var(--e-editor-navigator-width);
7472 5587 height: 50vh;
5588 + right: 30px;
7473 5589 background-color: var(--e-a-bg-default);
7474 5590 border: var(--e-a-border);
7475 5591 box-shadow: 0 2px 20px 0 rgba(0, 0, 0, 0.1);
7476 5592 -webkit-user-select: none;
@@ -7480,10 +5596,10 @@
7480 5596 z-index: 100;
7481 5597 display: none;
7482 5598 }
7483 5599 body.elementor-navigator-docked #elementor-navigator {
7484 - inset: 0;
7485 - inset-inline-start: auto;
5600 + top: 0;
5601 + right: 0;
7486 5602 height: 100%;
7487 5603 }
7488 5604 body:not(.elementor-navigator-docked) #elementor-navigator {
7489 5605 border-radius: 5px;
@@ -7506,22 +5622,8 @@
7506 5622 font-weight: 400;
7507 5623 padding: 10px 0;
7508 5624 cursor: move;
7509 5625 }
7510 -iframe + #elementor-navigator__header__title, #elementor-navigator__ai-titles + #elementor-navigator__header__title {
7511 - padding-inline-end: 17.5px;
7512 -}
7513 -#elementor-navigator__ai-titles {
7514 - width: 35px;
7515 - text-align: center;
7516 - cursor: pointer;
7517 - background-color: transparent;
7518 - border: none;
7519 - outline: none;
7520 -}
7521 -#elementor-navigator__ai-titles:hover {
7522 - color: #E73CF6;
7523 -}
7524 5626 #elementor-navigator__close, #elementor-navigator__toggle-all {
7525 5627 color: var(--e-a-color-txt);
7526 5628 background-color: transparent;
7527 5629 border: none;
@@ -7599,9 +5701,9 @@
7599 5701 .elementor-navigator__item[data-locked=true] {
7600 5702 cursor: not-allowed;
7601 5703 }
7602 5704 .elementor-navigator__item:not(.elementor-active) .elementor-navigator__element__list-toggle i {
7603 - transform: rotate(calc(-90deg * var(--direction-multiplier)));
5705 + transform: rotate(-90deg);
7604 5706 }
7605 5707 .elementor-navigator__item > * {
7606 5708 display: flex;
7607 5709 align-items: center;
@@ -7616,9 +5718,9 @@
7616 5718 .elementor-navigator__elements .elementor-empty-view {
7617 5719 padding: 10px;
7618 5720 }
7619 5721 .elementor-navigator__elements .elementor-empty-view__title {
7620 - margin-inline-start: 34px;
5722 + margin-inline-start: 23px;
7621 5723 font-size: 10px;
7622 5724 font-style: italic;
7623 5725 }
7624 5726 .elementor-navigator__elements .ui-sortable-helper {
@@ -7686,9 +5788,9 @@
7686 5788 overflow: hidden;
7687 5789 }
7688 5790 .elementor-navigator__element__toggle {
7689 5791 position: absolute;
7690 - inset-inline-end: 15px;
5792 + right: 15px;
7691 5793 height: 100%;
7692 5794 z-index: 0;
7693 5795 font-size: 13px;
7694 5796 }
@@ -7694,12 +5796,13 @@
7694 5796 }
7695 5797 .elementor-navigator__element__indicators {
7696 5798 position: relative;
7697 5799 transition: transform 0.5s;
5800 + padding-inline-start: 5px;
7698 5801 z-index: 91;
7699 5802 }
7700 5803 .elementor-navigator__element__indicators:not(:hover) {
7701 - transform: translateX(calc(100% * var(--direction-multiplier) - var(--e-editor-navigator-indicator-width) * var(--direction-multiplier)));
5804 + transform: translateX(calc(100% - 8px));
7702 5805 }
7703 5806 .elementor-navigator__element__indicator {
7704 5807 height: 100%;
7705 5808 width: 31px;
@@ -7707,13 +5810,16 @@
7707 5810 align-items: center;
7708 5811 justify-content: center;
7709 5812 color: var(--e-a-color-txt);
7710 5813 background-color: var(--e-a-bg-default);
7711 - border-inline-end: var(--e-a-border);
5814 + border-inline-start: var(--e-a-border);
7712 5815 }
7713 5816 .elementor-navigator__element__indicator:first-child {
7714 - border-inline-start: var(--e-editor-navigator-indicator-width) solid var(--e-a-border-color-accent);
5817 + border-inline-start: 3px solid var(--e-a-border-color-accent);
7715 5818 }
5819 +.elementor-editing .elementor-navigator__element__indicator:first-child {
5820 + border-color: #242729;
5821 +}
7716 5822 .elementor-navigator__element__indicator:hover {
7717 5823 color: var(--e-a-color-txt-hover);
7718 5824 }
7719 5825 .elementor-navigator__element--hidden .elementor-navigator__element__title,
@@ -7726,9 +5832,9 @@
7726 5832
7727 5833 .e-notice-bar {
7728 5834 position: absolute;
7729 5835 width: 100%;
7730 - inset-block-end: 0;
5836 + bottom: 0;
7731 5837 display: flex;
7732 5838 align-items: center;
7733 5839 height: 40px;
7734 5840 color: #fff;
@@ -7752,9 +5858,9 @@
7752 5858 padding: 4px 10px;
7753 5859 font-size: 11px;
7754 5860 }
7755 5861 .e-notice-bar__primary_action a:hover {
7756 - color: rgb(70.5, 0, 30.2142857143);
5862 + color: #47001e;
7757 5863 background: #F1F2F3;
7758 5864 }
7759 5865 .e-notice-bar__secondary_message, .e-notice-bar__secondary_action {
7760 5866 font-size: 11px;
@@ -7854,11 +5960,11 @@
7854 5960 background-color: transparent;
7855 5961 }
7856 5962 #elementor-icons-manager__search i {
7857 5963 position: absolute;
7858 - inset-block-start: 50%;
7859 - inset-inline-end: 15px;
5964 + top: 50%;
7860 5965 transform: translateY(-50%);
5966 + right: 15px;
7861 5967 }
7862 5968 #elementor-icons-manager__tab__wrapper {
7863 5969 overflow: auto;
7864 5970 margin: 25px -15px 0;
@@ -7947,10 +6053,10 @@
7947 6053 content: "";
7948 6054 position: absolute;
7949 6055 height: 100%;
7950 6056 width: 3px;
7951 - inset-block-start: 0;
7952 - inset-inline-start: 0;
6057 + top: 0;
6058 + left: 0;
7953 6059 background-color: var(--e-a-border-color-accent);
7954 6060 }
7955 6061 .elementor-icons-manager__tab__item {
7956 6062 position: relative;
@@ -7975,11 +6081,11 @@
7975 6081 flex-direction: column;
7976 6082 align-items: center;
7977 6083 width: 100%;
7978 6084 position: absolute;
7979 - inset-block-start: 50%;
7980 - inset-inline-start: 50%;
7981 - transform: translate(calc(-50% * var(--direction-multiplier)), -50%);
6085 + top: 50%;
6086 + left: 50%;
6087 + transform: translate(-50%, -50%);
7982 6088 padding: 1px;
7983 6089 }
7984 6090 .elementor-icons-manager__tab__item__icon {
7985 6091 font-size: 25px;
@@ -8023,12 +6129,11 @@
8023 6129 }
8024 6130 .pickr .pcr-button:before, .pickr .pcr-button:after {
8025 6131 height: 12px;
8026 6132 width: 12px;
8027 - position: absolute;
8028 - inset-block-start: 50%;
8029 - inset-inline-start: 50%;
8030 - transform: translate(calc(-50% * var(--direction-multiplier)), -50%);
6133 + top: 50%;
6134 + left: 50%;
6135 + transform: translate(-50%, -50%);
8031 6136 }
8032 6137
8033 6138 .pcr-app {
8034 6139 background-color: var(--e-a-bg-default);
@@ -8135,9 +6240,12 @@
8135 6240 font-family: "eicons";
8136 6241 color: var(--e-a-btn-color-invert);
8137 6242 text-indent: 0;
8138 6243 position: absolute;
8139 - inset: 0;
6244 + left: 0;
6245 + top: 0;
6246 + width: 100%;
6247 + height: 100%;
8140 6248 display: flex;
8141 6249 justify-content: center;
8142 6250 align-items: center;
8143 6251 }
@@ -8168,9 +6276,9 @@
8168 6276 }
8169 6277
8170 6278 .select2-selection__arrow {
8171 6279 height: 27px;
8172 - inset-block-start: 0;
6280 + top: 0;
8173 6281 }
8174 6282
8175 6283 .select2-results__option[aria-selected=true] {
8176 6284 background-color: var(--e-a-bg-active);
@@ -8193,12 +6301,12 @@
8193 6301 .e-ui-state--document-scrubbing-mode__on, .e-ui-state--document-scrubbing-mode__on * {
8194 6302 cursor: ew-resize;
8195 6303 }
8196 6304 .e-ui-state--document-scrubbing-mode__on input.e-scrubbing--active, .e-ui-state--document-scrubbing-mode__on input.e-scrubbing--active:focus {
8197 - box-shadow: 0 0 0 1px rgb(14.2857142857, 58.5714285714, 155.7142857143) inset;
6305 + box-shadow: 0 0 0 1px #0e3b9c inset;
8198 6306 }
8199 6307 .e-ui-state--document-scrubbing-mode__on label.e-scrubbing--active {
8200 - color: rgb(14.2857142857, 58.5714285714, 155.7142857143);
6308 + color: #0e3b9c;
8201 6309 -webkit-user-select: none;
8202 6310 -moz-user-select: none;
8203 6311 user-select: none;
8204 6312 }
@@ -8229,10 +6337,11 @@
8229 6337 padding: 0;
8230 6338 margin: 0;
8231 6339 height: 100px;
8232 6340 position: absolute;
8233 - inset-block-start: -60px;
8234 - inset-inline: 0;
6341 + top: -60px;
6342 + left: 0;
6343 + right: 0;
8235 6344 }
8236 6345 #elementor-paste-area-dialog #elementor-paste-area-dialog__input:focus {
8237 6346 border-color: transparent;
8238 6347 outline: none;
@@ -8257,54 +6366,21 @@
8257 6366 display: block;
8258 6367 margin: 10px -15px;
8259 6368 }
8260 6369
8261 -.elementor-app-backdrop {
8262 - position: fixed;
8263 - z-index: 99998;
8264 - inset: 0;
8265 - background: rgba(0, 0, 0, 0.5);
8266 - opacity: 0;
8267 - transition: opacity 0.25s ease;
8268 -}
8269 -.elementor-app-backdrop--visible {
8270 - opacity: 1;
8271 -}
8272 -
8273 -.elementor-app-iframe {
8274 - position: fixed;
8275 - top: 30px;
8276 - left: 40px;
8277 - width: calc(100% - 80px);
8278 - height: calc(100% - 60px);
8279 - z-index: 100000;
8280 - border-radius: 12px;
8281 - box-shadow: 0 16px 64px rgba(0, 0, 0, 0.3);
8282 - background-color: transparent;
8283 - opacity: 0;
8284 - transition: opacity 0.25s ease;
8285 -}
8286 -.elementor-app-iframe--visible {
8287 - opacity: 1;
8288 -}
8289 -
8290 6370 [class^=eicon-flex], [class*=" eicon-flex"] {
8291 6371 transition: 0.3s all;
6372 + --is-ltr: 1;
6373 + --is-rtl: 0;
6374 + --rotation-direction: calc(var(--is-ltr) - var(--is-rtl));
8292 6375 }
8293 6376 [class^=eicon-flex].eicon-inline, [class*=" eicon-flex"].eicon-inline {
8294 6377 max-height: 1em;
8295 6378 max-width: 1em;
8296 6379 }
8297 -[class^=eicon-flex], [class*=" eicon-flex"] {
8298 - --is-ltr: 1;
8299 - --is-rtl: 0;
8300 -}
8301 6380 [class^=eicon-flex]:is(.eicon-justify-start-h, .eicon-justify-end-h), [class*=" eicon-flex"]:is(.eicon-justify-start-h, .eicon-justify-end-h) {
8302 6381 --rotation-direction: calc(var(--is-ltr) + var(--is-rtl));
8303 6382 }
8304 -[class^=eicon-flex], [class*=" eicon-flex"] {
8305 - --rotation-direction: calc(var(--is-ltr) - var(--is-rtl));
8306 -}
8307 6383 :is(.e-ui-state--document-direction-mode__column, .e-ui-state--document-direction-mode__column-reverse) [class^=eicon-flex]:not(.eicon-wrap):not(.eicon-nowrap):not(.eicon-grow), :is(.e-ui-state--document-direction-mode__column, .e-ui-state--document-direction-mode__column-reverse) [class*=" eicon-flex"]:not(.eicon-wrap):not(.eicon-nowrap):not(.eicon-grow) {
8308 6384 transform: rotate(calc(var(--rotation-direction) * 90deg));
8309 6385 }
8310 6386 :is(.e-ui-state--document-direction-mode__column, .e-ui-state--document-direction-mode__column-reverse) [class^=eicon-flex]:not(.eicon-wrap):not(.eicon-nowrap):not(.eicon-grow):is(.eicon-align-start-v, .eicon-align-end-v), :is(.e-ui-state--document-direction-mode__column, .e-ui-state--document-direction-mode__column-reverse) [class*=" eicon-flex"]:not(.eicon-wrap):not(.eicon-nowrap):not(.eicon-grow):is(.eicon-align-start-v, .eicon-align-end-v) {
@@ -8317,16 +6393,6 @@
8317 6393 transform: rotate(calc(var(--is-rtl) * 180deg));
8318 6394 }
8319 6395 .e-ui-state--document-direction-mode__row-reverse [class^=eicon-flex]:not(.eicon-wrap):not(.eicon-nowrap):not(.eicon-grow):is(.eicon-justify-start-h, .eicon-justify-end-h, .eicon-order-start, .eicon-order-end), .e-ui-state--document-direction-mode__row-reverse [class*=" eicon-flex"]:not(.eicon-wrap):not(.eicon-nowrap):not(.eicon-grow):is(.eicon-justify-start-h, .eicon-justify-end-h, .eicon-order-start, .eicon-order-end) {
8320 6396 transform: rotate(calc(var(--is-ltr) * 180deg));
8321 -}
8322 -
8323 -.elementor-editor-active .embed-media-settings .setting.caption {
8324 - display: none;
8325 -}
8326 -.elementor-editor-active .embed-media-settings .setting.align {
8327 - display: none;
8328 -}
8329 -.elementor-editor-active .embed-media-settings fieldset.setting-group {
8330 - display: none;
8331 6397 }
8332 6398 /*# sourceMappingURL=editor.css.map */