PluginProbe
Elementor Website Builder – more than just a page builder / 3.30.1
Elementor Website Builder – more than just a page builder v3.30.1
4.3.0-beta2 4.3.0-beta1 4.2.4 4.2.3 4.2.2 4.2.1 4.2.0 4.1.5 4.2.0-beta2 4.2.0-dev2 4.2.0-beta1 4.1.4 4.1.3 4.1.2 4.1.1 4.1.0 4.1.0-beta3 4.1.0-dev3 4.0.9 4.1.0-beta2 4.1.0-dev2 4.0.8 4.1.0-beta1 4.1.0-dev1 4.0.7 All 451 releases
← All changes | assets/css/editor.css +222 -1025 4.1.13.30.1 View file →
@@ -1,4 +1,5 @@
1 +/*! elementor - v3.30.0 - 07-07-2025 */
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 }
@@ -194,12 +195,11 @@
194 195 color: var(--e-a-color-txt-disabled);
195 196 }
196 197 .e-control-tool i {
197 198 position: absolute;
198 - position: absolute;
199 - inset-block-start: 50%;
200 - inset-inline-start: 50%;
201 - transform: translate(calc(-50% * var(--direction-multiplier)), -50%);
199 + top: 50%;
200 + left: 50%;
201 + transform: translateX(-50%) translateY(-50%);
202 202 color: var(--e-a-color-txt-default);
203 203 font-size: 13px;
204 204 }
205 205
@@ -208,11 +208,11 @@
208 208 }
209 209
210 210 .elementor-loader-wrapper {
211 211 position: absolute;
212 - inset-block-start: 50%;
213 - inset-inline-start: 50%;
214 - transform: translate(calc(-50% * var(--direction-multiplier)), -50%);
212 + top: 50%;
213 + left: 50%;
214 + transform: translate(-50%, -50%);
215 215 width: 300px;
216 216 display: flex;
217 217 flex-direction: column;
218 218 align-items: center;
@@ -630,8 +630,13 @@
630 630 .dialog-type-alert .dialog-buttons-wrapper .dialog-button:focus,
631 631 .dialog-type-alert .dialog-buttons-wrapper .dialog-button:visited {
632 632 color: initial;
633 633 }
634 +.dialog-type-confirm .dialog-buttons-wrapper .dialog-button[disabled],
635 +.dialog-type-alert .dialog-buttons-wrapper .dialog-button[disabled] {
636 + background-color: var(--e-a-btn-bg-disabled);
637 + cursor: not-allowed;
638 +}
634 639 .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 640 .dialog-type-alert .dialog-buttons-wrapper .dialog-button[disabled]:hover,
636 641 .dialog-type-alert .dialog-buttons-wrapper .dialog-button[disabled]:focus,
637 642 .dialog-type-alert .dialog-buttons-wrapper .dialog-button[disabled]:visited {
@@ -636,13 +641,8 @@
636 641 .dialog-type-alert .dialog-buttons-wrapper .dialog-button[disabled]:focus,
637 642 .dialog-type-alert .dialog-buttons-wrapper .dialog-button[disabled]:visited {
638 643 background-color: var(--e-a-btn-bg-disabled);
639 644 }
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 645
646 646 /*
647 647 * Container style
648 648 */
@@ -900,9 +900,10 @@
900 900 display: none;
901 901 position: absolute;
902 902 box-shadow: var(--e-a-popover-shadow);
903 903 border-radius: var(--e-a-border-radius);
904 - inset-inline: 0;
904 + left: 0;
905 + right: 0;
905 906 margin: -4px auto 5px;
906 907 padding-block-start: 15px;
907 908 width: 90%;
908 909 z-index: 10000;
@@ -910,10 +911,10 @@
910 911 }
911 912 .elementor-panel .elementor-controls-popover:before {
912 913 content: "";
913 914 position: absolute;
914 - inset-block-start: -16px;
915 - inset-inline-end: 22px;
915 + top: -16px;
916 + right: 22px;
916 917 border: 8px solid transparent;
917 918 border-block-end-color: var(--e-a-bg-default);
918 919 }
919 920 .elementor-panel .elementor-controls-popover div.elementor-control {
@@ -927,9 +928,8 @@
927 928 }
928 929 .elementor-panel {
929 930 position: relative;
930 931 height: 100%;
931 - inset-inline-start: 0;
932 932 margin-inline-start: calc(-1 * var(--e-editor-panel-width) * var(--e-is-preview-mode));
933 933 width: var(--e-editor-panel-width);
934 934 overflow: visible;
935 935 background-color: var(--e-a-bg-default);
@@ -935,8 +935,9 @@
935 935 background-color: var(--e-a-bg-default);
936 936 z-index: 1;
937 937 font-family: var(--e-a-font-family);
938 938 font-size: 13px;
939 + left: 0;
939 940 }
940 941 .elementor-editor-preview .elementor-panel {
941 942 --e-is-preview-mode: 1;
942 943 }
@@ -1193,12 +1194,12 @@
1193 1194 content: "";
1194 1195 position: absolute;
1195 1196 height: 13px;
1196 1197 width: 13px;
1197 - inset-block-start: 3px;
1198 - inset-block-end: 0;
1199 - inset-inline-start: 8px;
1200 - inset-inline-end: 0;
1198 + top: 3px;
1199 + bottom: 0;
1200 + left: 8px;
1201 + right: 0;
1201 1202 border-radius: 50%;
1202 1203 z-index: -1;
1203 1204 }
1204 1205 .elementor-panel #elementor-panel-footer {
@@ -1289,10 +1290,10 @@
1289 1290 border-inline-end: 1px solid #3f444b;
1290 1291 }
1291 1292 .elementor-panel .elementor-panel-footer-sub-menu-wrapper {
1292 1293 position: absolute;
1293 - inset-block-end: 100%;
1294 - inset-inline-start: 0;
1294 + bottom: 100%;
1295 + left: 0;
1295 1296 width: 100%;
1296 1297 background-color: #1f2124;
1297 1298 padding: 10px;
1298 1299 box-shadow: -2px -5px 8px rgba(0, 0, 0, 0.1);
@@ -1359,17 +1360,13 @@
1359 1360
1360 1361 #elementor-panel-elements-search-area {
1361 1362 background-color: var(--e-a-bg-default);
1362 1363 position: sticky;
1363 - inset-block-start: 0;
1364 + top: 0;
1364 1365 padding: 15px;
1365 1366 z-index: 1;
1366 1367 }
1367 1368
1368 -#elementor-panel-elements-search-area:empty {
1369 - display: none;
1370 -}
1371 -
1372 1369 #elementor-panel-elements-search-wrapper {
1373 1370 position: relative;
1374 1371 }
1375 1372
@@ -1386,12 +1383,12 @@
1386 1383 appearance: none;
1387 1384 }
1388 1385 #elementor-panel-elements-search-input + i {
1389 1386 position: absolute;
1390 - inset-block-start: 50%;
1391 - inset-inline-start: 10px;
1387 + left: 10px;
1388 + top: 50%;
1389 + color: var(--e-a-color-txt-disabled);
1392 1390 transform: translateY(-50%);
1393 - color: var(--e-a-color-txt-disabled);
1394 1391 }
1395 1392 #elementor-panel-elements-search-input:focus {
1396 1393 border-color: var(--e-a-border-color-focus);
1397 1394 padding-inline-end: 15px;
@@ -1396,20 +1393,8 @@
1396 1393 border-color: var(--e-a-border-color-focus);
1397 1394 padding-inline-end: 15px;
1398 1395 }
1399 1396
1400 -.e-free-badge-container {
1401 - flex-grow: 1;
1402 - margin-inline-start: 10px;
1403 - margin-inline-end: 10px;
1404 -}
1405 -.e-free-badge-container .e-free-badge {
1406 - border-radius: var(--e-a-border-radius);
1407 - background-color: var(--e-a-btn-bg);
1408 - color: var(--e-a-btn-color-invert);
1409 - padding: 3px 5px;
1410 -}
1411 -
1412 1397 .elementor-panel .elementor-element {
1413 1398 font-family: var(--e-a-font-family);
1414 1399 color: var(--e-a-color-txt);
1415 1400 line-height: 1;
@@ -1429,10 +1414,10 @@
1429 1414 user-select: none;
1430 1415 }
1431 1416 .elementor-panel .elementor-element .eicon-atomic {
1432 1417 position: absolute;
1433 - inset-block-start: 5px;
1434 - inset-inline-end: 5px;
1418 + top: 5px;
1419 + right: 5px;
1435 1420 color: var(--e-a-color-txt);
1436 1421 }
1437 1422 .elementor-panel .elementor-element:hover, .elementor-panel .elementor-element:focus {
1438 1423 background-color: var(--e-a-bg-hover);
@@ -1440,11 +1425,8 @@
1440 1425 }
1441 1426 .elementor-panel .elementor-element:hover > .eicon-lock, .elementor-panel .elementor-element:focus > .eicon-lock {
1442 1427 color: var(--e-a-color-accent);
1443 1428 }
1444 -.elementor-panel .elementor-element:hover > .eicon-plug, .elementor-panel .elementor-element:focus > .eicon-plug {
1445 - color: var(--e-a-color-info);
1446 -}
1447 1429 .elementor-panel .elementor-element .icon {
1448 1430 font-size: 28px;
1449 1431 padding-block-start: 15px;
1450 1432 }
@@ -1456,12 +1438,12 @@
1456 1438 }
1457 1439 .elementor-panel .elementor-element .title {
1458 1440 font-size: 12px;
1459 1441 }
1460 -.elementor-panel .elementor-element > .eicon-lock, .elementor-panel .elementor-element .eicon-plug {
1442 +.elementor-panel .elementor-element > .eicon-lock {
1461 1443 position: absolute;
1462 - inset-block-start: 5px;
1463 - inset-inline-end: 5px;
1444 + top: 5px;
1445 + right: 5px;
1464 1446 color: var(--e-a-color-txt-disabled);
1465 1447 }
1466 1448 .elementor-panel .elementor-element:active {
1467 1449 background-color: var(--e-a-bg-hover);
@@ -1479,10 +1461,10 @@
1479 1461 }
1480 1462 #elementor-element--promotion__dialog:after {
1481 1463 content: "";
1482 1464 position: absolute;
1483 - inset-block-start: 15px;
1484 - inset-inline-end: 100%;
1465 + top: 15px;
1466 + right: 100%;
1485 1467 transform: scaleY(0.7);
1486 1468 border: 10px solid transparent;
1487 1469 border-inline-end-color: var(--e-a-bg-default);
1488 1470 }
@@ -1529,10 +1511,10 @@
1529 1511 }
1530 1512 .dialog-tooltip-widget:after {
1531 1513 content: "";
1532 1514 position: absolute;
1533 - inset-block-start: 15px;
1534 - inset-inline-end: 100%;
1515 + top: 15px;
1516 + right: 100%;
1535 1517 transform: scaleY(0.7);
1536 1518 border: 10px solid transparent;
1537 1519 border-inline-end-color: var(--e-a-bg-default);
1538 1520 }
@@ -1571,80 +1553,8 @@
1571 1553 .dialog-tooltip-widget .dialog-tooltip-button::-moz-focus-inner {
1572 1554 border: 0;
1573 1555 }
1574 1556
1575 -#elementor-panel-elements-widget-creation-area:empty {
1576 - display: none;
1577 -}
1578 -
1579 -.elementor-panel-elements-widget-creation {
1580 - text-align: center;
1581 - padding: 30px 20px;
1582 -}
1583 -.elementor-panel-elements-widget-creation__title {
1584 - font-size: 14px;
1585 - font-weight: bold;
1586 - line-height: 1.4;
1587 - color: var(--e-a-color-txt);
1588 -}
1589 -.elementor-panel-elements-widget-creation__message {
1590 - margin-block-start: 8px;
1591 - font-size: 13px;
1592 - line-height: 1.6;
1593 - color: var(--e-a-color-txt-muted);
1594 -}
1595 -.elementor-panel-elements-widget-creation__cta {
1596 - display: inline-flex;
1597 - align-items: center;
1598 - gap: 6px;
1599 - margin-block-start: 16px;
1600 - padding: 0;
1601 - border: none;
1602 - background: none;
1603 - color: #C00BB9;
1604 - font-size: 14px;
1605 - font-weight: 500;
1606 - cursor: pointer;
1607 - font-family: var(--e-a-font-family);
1608 -}
1609 -.elementor-panel-elements-widget-creation__cta i {
1610 - font-size: 16px;
1611 -}
1612 -.elementor-panel-elements-widget-creation__cta:hover {
1613 - opacity: 0.8;
1614 -}
1615 -.elementor-panel-elements-widget-creation--search-footer {
1616 - border-block-start: var(--e-a-border);
1617 -}
1618 -
1619 -.elementor-panel-category-custom-widgets-empty {
1620 - grid-column: 1/-1;
1621 - width: 100%;
1622 - padding: 0 16px 16px;
1623 -}
1624 -.elementor-panel-category-custom-widgets-empty__message {
1625 - margin: 0;
1626 - font-size: 12px;
1627 - line-height: 1.6;
1628 - color: var(--e-a-color-txt-muted);
1629 -}
1630 -
1631 -.elementor-panel-heading.elementor-panel-category-title .elementor-panel-custom-widgets__cta--heading {
1632 - margin-inline-start: auto;
1633 - padding: 4px 10px;
1634 - border: none;
1635 - background: none;
1636 - color: #C00BB9;
1637 - font-size: 12px;
1638 - font-weight: 500;
1639 - cursor: pointer;
1640 - font-family: var(--e-a-font-family);
1641 - flex-shrink: 0;
1642 -}
1643 -.elementor-panel-heading.elementor-panel-category-title .elementor-panel-custom-widgets__cta--heading:hover {
1644 - opacity: 0.8;
1645 -}
1646 -
1647 1557 #elementor-panel-inner {
1648 1558 position: relative;
1649 1559 height: 100%;
1650 1560 display: flex;
@@ -1672,9 +1582,9 @@
1672 1582 }
1673 1583
1674 1584 #elementor-panel-get-pro-elements-sticky {
1675 1585 position: sticky;
1676 - inset-block-end: 0;
1586 + bottom: 0;
1677 1587 font-size: 14px;
1678 1588 font-weight: 400;
1679 1589 line-height: 1.6;
1680 1590 margin-block-end: -10px;
@@ -1679,9 +1589,9 @@
1679 1589 line-height: 1.6;
1680 1590 margin-block-end: -10px;
1681 1591 }
1682 1592 #elementor-panel-get-pro-elements-sticky .elementor-get-pro-sticky-message {
1683 - margin-block-start: -14px;
1593 + margin-top: -14px;
1684 1594 min-height: 40px;
1685 1595 display: block;
1686 1596 padding: 9px min(35px, 5%);
1687 1597 gap: 10px;
@@ -1696,9 +1606,9 @@
1696 1606 font-weight: 500;
1697 1607 color: var(--e-a-btn-bg-accent);
1698 1608 }
1699 1609 #elementor-panel-get-pro-elements-sticky img {
1700 - margin-inline-start: 17px;
1610 + margin-left: 17px;
1701 1611 }
1702 1612
1703 1613 #elementor-panel-notice-wrapper .elementor-panel-notice {
1704 1614 width: 90%;
@@ -1725,10 +1635,10 @@
1725 1635 background: var(--e-a-color-primary);
1726 1636 border-radius: 50%;
1727 1637 width: 8px;
1728 1638 height: 8px;
1729 - inset-block-start: 5px;
1730 - inset-inline-end: 5px;
1639 + top: 5px;
1640 + right: 5px;
1731 1641 }
1732 1642
1733 1643 .media-modal.wp-core-ui {
1734 1644 color-scheme: light;
@@ -1842,36 +1752,23 @@
1842 1752 }
1843 1753 body:not(.elementor-device-mobile) .elementor-control.elementor-control-responsive-mobile {
1844 1754 display: none;
1845 1755 }
1846 -.elementor-control-shape_divider_top .elementor-visual-choice-element-image label, .elementor-control-shape_divider_bottom .elementor-visual-choice-element-image label {
1847 - padding: 4px;
1848 -}
1849 -.elementor-control-shape_divider_top img, .elementor-control-shape_divider_bottom img {
1850 - aspect-ratio: 4/1;
1851 - -o-object-fit: cover;
1852 - object-fit: cover;
1853 - -o-object-position: center;
1854 - object-position: center;
1855 -}
1856 -.elementor-control-shape_divider_bottom img {
1857 - rotate: X 180deg;
1858 -}
1859 1756 .elementor-control-custom_css_pro .elementor-nerd-box-message, .elementor-control-custom_attributes_pro .elementor-nerd-box-message {
1860 1757 margin-block-start: 5px;
1861 1758 }
1862 1759
1863 -.elementor-control.e-open .elementor-panel-heading-toggle i, .elementor-control.elementor-active .elementor-panel-heading-toggle i,
1864 -.elementor-panel-category.e-open .elementor-panel-heading-toggle i,
1865 -.elementor-panel-category.elementor-active .elementor-panel-heading-toggle i,
1866 -.elementor-panel-scheme-item.e-open .elementor-panel-heading-toggle i,
1867 -.elementor-panel-scheme-item.elementor-active .elementor-panel-heading-toggle i {
1868 - transform: rotate(90deg);
1760 +.elementor-control.e-open .elementor-panel-heading-toggle .eicon:before, .elementor-control.elementor-active .elementor-panel-heading-toggle .eicon:before,
1761 +.elementor-panel-category.e-open .elementor-panel-heading-toggle .eicon:before,
1762 +.elementor-panel-category.elementor-active .elementor-panel-heading-toggle .eicon:before,
1763 +.elementor-panel-scheme-item.e-open .elementor-panel-heading-toggle .eicon:before,
1764 +.elementor-panel-scheme-item.elementor-active .elementor-panel-heading-toggle .eicon:before {
1765 + content: "\e92a";
1869 1766 }
1870 -.elementor-control:not(.e-open):not(.elementor-active) .elementor-panel-heading-toggle i,
1871 -.elementor-panel-category:not(.e-open):not(.elementor-active) .elementor-panel-heading-toggle i,
1872 -.elementor-panel-scheme-item:not(.e-open):not(.elementor-active) .elementor-panel-heading-toggle i {
1873 - scale: calc(1 * var(--direction-multiplier)) 1;
1767 +.elementor-control:not(.e-open):not(.elementor-active) .elementor-panel-heading-toggle .eicon:before,
1768 +.elementor-panel-category:not(.e-open):not(.elementor-active) .elementor-panel-heading-toggle .eicon:before,
1769 +.elementor-panel-scheme-item:not(.e-open):not(.elementor-active) .elementor-panel-heading-toggle .eicon:before {
1770 + content: "\e90a";
1874 1771 }
1875 1772
1876 1773 .elementor-panel-heading {
1877 1774 display: flex;
@@ -1973,15 +1870,8 @@
1973 1870 .elementor-group-control-attachment_alert .elementor-control-field-description {
1974 1871 margin-block-start: 0;
1975 1872 }
1976 1873
1977 -.elementor-control-start-end .eicon-text-align-left,
1978 -.elementor-control-start-end .eicon-text-align-right,
1979 -.elementor-control-start-end .eicon-h-align-left,
1980 -.elementor-control-start-end .eicon-h-align-right {
1981 - scale: calc(1 * var(--direction-multiplier)) 1;
1982 -}
1983 -
1984 1874 .elementor-update-preview {
1985 1875 margin: 15px 15px 0;
1986 1876 display: flex;
1987 1877 align-items: center;
@@ -2016,9 +1906,9 @@
2016 1906 }
2017 1907 .elementor-control-responsive-switchers__holder {
2018 1908 position: absolute;
2019 1909 width: 100%;
2020 - inset-block-start: 0;
1910 + top: 0;
2021 1911 background-color: var(--e-a-bg-default);
2022 1912 border-radius: var(--e-a-border-radius);
2023 1913 transition: 0.15s;
2024 1914 border: 1px solid transparent;
@@ -2161,10 +2051,10 @@
2161 2051 display: none;
2162 2052 overflow: hidden;
2163 2053 max-height: 0;
2164 2054 position: absolute;
2165 - inset-block-start: -0.8em;
2166 - inset-inline-start: -0.5em;
2055 + top: -0.8em;
2056 + left: -0.5em;
2167 2057 width: 2.5em;
2168 2058 text-align: center;
2169 2059 background-color: var(--e-a-bg-default);
2170 2060 border-radius: var(--e-a-border-radius);
@@ -2339,9 +2229,9 @@
2339 2229 }
2340 2230 .elementor-control-responsive-switchers__holder {
2341 2231 position: absolute;
2342 2232 width: 100%;
2343 - inset-block-start: 0;
2233 + top: 0;
2344 2234 background-color: var(--e-a-bg-default);
2345 2235 border-radius: var(--e-a-border-radius);
2346 2236 transition: 0.15s;
2347 2237 border: 1px solid transparent;
@@ -2484,10 +2374,10 @@
2484 2374 display: none;
2485 2375 overflow: hidden;
2486 2376 max-height: 0;
2487 2377 position: absolute;
2488 - inset-block-start: -0.8em;
2489 - inset-inline-start: -0.5em;
2378 + top: -0.8em;
2379 + left: -0.5em;
2490 2380 width: 2.5em;
2491 2381 text-align: center;
2492 2382 background-color: var(--e-a-bg-default);
2493 2383 border-radius: var(--e-a-border-radius);
@@ -2617,9 +2507,9 @@
2617 2507 }
2618 2508 .elementor-control-responsive-switchers__holder {
2619 2509 position: absolute;
2620 2510 width: 100%;
2621 - inset-block-start: 0;
2511 + top: 0;
2622 2512 background-color: var(--e-a-bg-default);
2623 2513 border-radius: var(--e-a-border-radius);
2624 2514 transition: 0.15s;
2625 2515 border: 1px solid transparent;
@@ -2762,10 +2652,10 @@
2762 2652 display: none;
2763 2653 overflow: hidden;
2764 2654 max-height: 0;
2765 2655 position: absolute;
2766 - inset-block-start: -0.8em;
2767 - inset-inline-start: -0.5em;
2656 + top: -0.8em;
2657 + left: -0.5em;
2768 2658 width: 2.5em;
2769 2659 text-align: center;
2770 2660 background-color: var(--e-a-bg-default);
2771 2661 border-radius: var(--e-a-border-radius);
@@ -2885,11 +2775,11 @@
2885 2775 }
2886 2776
2887 2777 .elementor-control-type-icons .elementor-control-media__preview > * {
2888 2778 position: absolute;
2889 - inset-block-start: 50%;
2890 - inset-inline-start: 50%;
2891 - transform: translate(calc(-50% * var(--direction-multiplier)), -50%);
2779 + top: 50%;
2780 + left: 50%;
2781 + transform: translate(-50%, -50%);
2892 2782 }
2893 2783 .elementor-control-type-icons .elementor-control-media__preview i {
2894 2784 font-size: 70px;
2895 2785 }
@@ -2955,10 +2845,10 @@
2955 2845 opacity: 0;
2956 2846 }
2957 2847 .elementor-control-type-gallery .elementor-control-gallery-edit span {
2958 2848 position: absolute;
2959 - inset-block-start: 10px;
2960 - inset-inline-end: 10px;
2849 + top: 10px;
2850 + right: 10px;
2961 2851 width: 21px;
2962 2852 height: 21px;
2963 2853 color: var(--e-a-color-white);
2964 2854 background-color: rgba(0, 0, 0, 0.5);
@@ -3068,10 +2958,10 @@
3068 2958 }
3069 2959 .e-global__popover-info-tooltip:after {
3070 2960 content: "";
3071 2961 position: absolute;
3072 - inset-block-end: -17px;
3073 - inset-inline-start: 16px;
2962 + bottom: -17px;
2963 + left: 16px;
3074 2964 border: 10px solid transparent;
3075 2965 border-block-start-color: rgba(0, 0, 0, 0.9);
3076 2966 }
3077 2967 .e-global__popover-info i {
@@ -3088,19 +2978,8 @@
3088 2978 .e-global__preview-items-container::-webkit-scrollbar-thumb {
3089 2979 background-color: #BABFC5;
3090 2980 border-radius: 10px;
3091 2981 }
3092 -.e-global__group-header {
3093 - padding: 12px 20px 5px;
3094 - font-weight: 500;
3095 - font-size: 11px;
3096 - color: var(--e-a-color-txt-muted);
3097 -}
3098 -.e-global__group-divider {
3099 - height: 1px;
3100 - background-color: var(--e-a-border-color);
3101 - margin: 10px 20px;
3102 -}
3103 2982 .e-global__manage-button {
3104 2983 font-weight: 500;
3105 2984 cursor: pointer;
3106 2985 }
@@ -3116,9 +2995,9 @@
3116 2995 font-size: 13px;
3117 2996 content: "\e90e";
3118 2997 position: absolute;
3119 2998 transform: translateY(-50%);
3120 - inset-block-start: 50%;
2999 + top: 50%;
3121 3000 inset-inline-start: 13px;
3122 3001 }
3123 3002 .e-global__color {
3124 3003 padding: 10px 20px;
@@ -3259,11 +3138,11 @@
3259 3138 display: none;
3260 3139 }
3261 3140 .elementor-control-media .eicon-plus-circle {
3262 3141 position: absolute;
3263 - inset-block-start: 50%;
3264 - inset-inline-start: 50%;
3265 - transform: translate(calc(-50% * var(--direction-multiplier)), -50%);
3142 + top: 50%;
3143 + left: 50%;
3144 + transform: translate(-50%, -50%);
3266 3145 color: var(--e-a-color-white);
3267 3146 font-size: 20px;
3268 3147 }
3269 3148 .elementor-control-media__content__upload-button {
@@ -3286,11 +3165,11 @@
3286 3165 display: none;
3287 3166 }
3288 3167 .elementor-control-media-area .eicon-video-camera {
3289 3168 position: absolute;
3290 - inset-block-start: 50%;
3291 - inset-inline-start: 50%;
3292 - transform: translate(calc(-50% * var(--direction-multiplier)), -50%);
3169 + top: 50%;
3170 + left: 50%;
3171 + transform: translate(-50%, -50%);
3293 3172 color: rgba(255, 255, 255, 0.7);
3294 3173 font-size: 21px;
3295 3174 }
3296 3175 .elementor-control-media .elementor-control-media__content {
@@ -3306,9 +3185,9 @@
3306 3185 background-color: rgba(0, 0, 0, 0.2);
3307 3186 pointer-events: none;
3308 3187 }
3309 3188 .elementor-control-media .elementor-control-media__content:not(:hover) .elementor-control-media__tools {
3310 - inset-block-end: -30px;
3189 + bottom: -30px;
3311 3190 }
3312 3191 .elementor-control-media__content {
3313 3192 transition: all 0.2s ease-in-out;
3314 3193 }
@@ -3313,10 +3192,11 @@
3313 3192 transition: all 0.2s ease-in-out;
3314 3193 }
3315 3194 .elementor-control-media__tools {
3316 3195 position: absolute;
3317 - inset-block-end: 0;
3318 - inset-inline: 0;
3196 + bottom: 0;
3197 + left: 0;
3198 + right: 0;
3319 3199 height: 27px;
3320 3200 transition: all 0.2s ease-in-out;
3321 3201 }
3322 3202 .elementor-control-media__tools > *:not(:first-child) {
@@ -3343,10 +3223,10 @@
3343 3223 }
3344 3224 .elementor-control-media__content__remove {
3345 3225 position: absolute;
3346 3226 z-index: 1;
3347 - inset-block-start: 10px;
3348 - inset-inline-end: 10px;
3227 + top: 10px;
3228 + right: 10px;
3349 3229 width: 20px;
3350 3230 height: 20px;
3351 3231 font-size: 11px;
3352 3232 color: var(--e-a-color-white);
@@ -3687,11 +3567,11 @@
3687 3567 font-family: eicons;
3688 3568 content: "\e8ad";
3689 3569 font-size: 12px;
3690 3570 position: absolute;
3691 - inset-block-start: 50%;
3692 - inset-inline-end: 5px;
3571 + top: 50%;
3693 3572 transform: translateY(-50%);
3573 + right: 5px;
3694 3574 pointer-events: none;
3695 3575 }
3696 3576 .elementor-control-type-select .elementor-control-field.elementor-control-field-select-small .elementor-control-input-wrapper {
3697 3577 max-width: 80px;
@@ -3725,14 +3605,14 @@
3725 3605 }
3726 3606 .elementor-control-type-slider--handles-range .elementor-slider .noUi-handle {
3727 3607 border-radius: 0;
3728 3608 width: 10px;
3729 - transform: translateY(calc(50% - 14px)) translateX(calc(4px * var(--direction-multiplier)));
3609 + transform: translateY(calc(50% - 14px)) translateX(4px);
3730 3610 }
3731 3611 .elementor-control-type-slider--handles-range .elementor-slider .noUi-handle:after {
3732 3612 content: "";
3733 3613 position: absolute;
3734 - inset-block-start: 2px;
3614 + top: 2px;
3735 3615 height: 12px;
3736 3616 width: 11px;
3737 3617 transform: rotate(45deg);
3738 3618 background-color: var(--e-a-color-white);
@@ -3809,11 +3689,11 @@
3809 3689 .elementor-slider .noUi-handle {
3810 3690 height: 16px;
3811 3691 width: 16px;
3812 3692 background-color: var(--e-a-color-white);
3693 + right: 0;
3694 + transform: translateY(calc(50% - 14px)) translateX(8px);
3813 3695 position: absolute;
3814 - inset-inline-end: 0;
3815 - transform: translateY(calc(50% - 14px)) translateX(calc(8px * var(--direction-multiplier)));
3816 3696 box-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
3817 3697 border-radius: 50%;
3818 3698 }
3819 3699 .elementor-slider .noUi-connects {
@@ -3830,9 +3710,9 @@
3830 3710 background-color: var(--e-a-border-color-focus);
3831 3711 }
3832 3712 .elementor-slider .noUi-tooltip {
3833 3713 position: absolute;
3834 - inset-block-start: calc(100% + 5px);
3714 + top: calc(100% + 5px);
3835 3715 left: calc(50% - 4px);
3836 3716 transform: translateX(-50%);
3837 3717 font-size: 10px;
3838 3718 }
@@ -3919,9 +3799,9 @@
3919 3799 transition-property: opacity, background;
3920 3800 }
3921 3801 .elementor-control-type-switcher .elementor-switch-label:before, .elementor-control-type-switcher .elementor-switch-label:after {
3922 3802 position: absolute;
3923 - inset-block-start: 0;
3803 + top: 0;
3924 3804 width: 50%;
3925 3805 text-align: center;
3926 3806 line-height: 20px;
3927 3807 transition: inherit;
@@ -3927,14 +3807,14 @@
3927 3807 transition: inherit;
3928 3808 }
3929 3809 .elementor-control-type-switcher .elementor-switch-label:before {
3930 3810 content: attr(data-off);
3931 - inset-inline-end: 5px;
3811 + right: 5px;
3932 3812 color: var(--e-a-color-txt-muted);
3933 3813 }
3934 3814 .elementor-control-type-switcher .elementor-switch-label:after {
3935 3815 content: attr(data-on);
3936 - inset-inline-start: 5px;
3816 + left: 5px;
3937 3817 color: var(--e-a-btn-color);
3938 3818 opacity: 0;
3939 3819 }
3940 3820 .elementor-control-type-switcher .elementor-switch-input:checked ~ .elementor-switch-label {
@@ -3947,19 +3827,19 @@
3947 3827 opacity: 1;
3948 3828 }
3949 3829 .elementor-control-type-switcher .elementor-switch-handle {
3950 3830 position: absolute;
3951 - inset-block-start: 1px;
3952 - inset-inline-start: 1px;
3831 + top: 1px;
3832 + left: 1px;
3953 3833 width: 18px;
3954 3834 height: 18px;
3955 3835 background: white;
3956 3836 border-radius: 10px;
3957 - transition: inset-inline-start 0.15s ease-out;
3837 + transition: left 0.15s ease-out;
3958 3838 }
3959 3839 .elementor-control-type-switcher .elementor-switch-input:checked ~ .elementor-switch-handle {
3960 - inset-inline-start: initial;
3961 - inset-inline-end: 1px;
3840 + left: initial;
3841 + right: 1px;
3962 3842 }
3963 3843
3964 3844 .elementor-control-type-tabs {
3965 3845 display: none;
@@ -4011,10 +3891,10 @@
4011 3891 }
4012 3892 .elementor-control-type-textarea:not(.elementor-control-dynamic-value) .elementor-control-dynamic-switcher,
4013 3893 .elementor-control-type-code:not(.elementor-control-dynamic-value) .elementor-control-dynamic-switcher {
4014 3894 position: absolute;
4015 - inset-block-start: 0;
4016 - inset-inline-end: 0;
3895 + top: 0;
3896 + right: 0;
4017 3897 z-index: 1;
4018 3898 }
4019 3899 .elementor-control-type-textarea .elementor-control-input-wrapper,
4020 3900 .elementor-control-type-code .elementor-control-input-wrapper {
@@ -4092,10 +3972,10 @@
4092 3972 }
4093 3973 .elementor-control-type-url .elementor-control-url-autocomplete-spinner {
4094 3974 display: none;
4095 3975 position: absolute;
4096 - inset-block-start: 5px;
4097 - inset-inline-end: 0;
3976 + top: 5px;
3977 + right: 0;
4098 3978 width: 10px;
4099 3979 height: 10px;
4100 3980 font-size: 10px;
4101 3981 color: var(--e-a-color-txt-disabled);
@@ -4174,9 +4054,8 @@
4174 4054 font-size: 12px;
4175 4055 transition: var(--e-a-transition-hover);
4176 4056 cursor: pointer;
4177 4057 overflow: hidden;
4178 - width: 100%;
4179 4058 padding: 8px;
4180 4059 }
4181 4060 .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 {
4182 4061 background-color: var(--e-a-bg-active-bold);
@@ -4359,13 +4238,13 @@
4359 4238 --e-a-mode-switcher-width: 15px;
4360 4239 --e-a-mode-switcher-height: 50px;
4361 4240 --e-a-mode-switcher-icon-size: 15px;
4362 4241 position: absolute;
4363 - inset-block-start: 50%;
4364 - inset-inline-start: 100%;
4242 + left: 100%;
4243 + top: 50%;
4365 4244 transform: translateY(-50%);
4366 4245 background-color: var(--e-a-bg-default);
4367 - box-shadow: calc(3px * var(--direction-multiplier, 1)) 1px 3px rgba(0, 0, 0, 0.05);
4246 + box-shadow: 3px 1px 3px rgba(0, 0, 0, 0.05);
4368 4247 transition: 0.3s opacity;
4369 4248 }
4370 4249 #elementor-mode-switcher:hover {
4371 4250 background-color: var(--e-a-bg-hover);
@@ -4435,11 +4314,11 @@
4435 4314 }
4436 4315
4437 4316 #elementor-panel-revisions-loading {
4438 4317 position: absolute;
4439 - inset-block-start: 50%;
4440 - inset-inline-start: 50%;
4441 - transform: translate(calc(-50% * var(--direction-multiplier)), -50%);
4318 + top: 50%;
4319 + left: 50%;
4320 + transform: translate(-50%, -50%);
4442 4321 }
4443 4322 #elementor-panel-revisions-loading .eicon-loading {
4444 4323 font-size: 50px;
4445 4324 }
@@ -4667,13 +4546,13 @@
4667 4546 }
4668 4547 .elementor-control-type-global-style-repeater .elementor-controls-popover {
4669 4548 align-self: end;
4670 4549 margin-block-start: 35px;
4671 - inset-block-start: 0;
4550 + top: 0;
4672 4551 width: 100%;
4673 4552 }
4674 4553 .elementor-control-type-global-style-repeater .elementor-controls-popover:before {
4675 - inset-inline-end: 5px;
4554 + right: 5px;
4676 4555 }
4677 4556 .elementor-control-type-global-style-repeater .elementor-controls-popover .elementor-control {
4678 4557 padding: 0 20px 15px;
4679 4558 }
@@ -5094,20 +4973,8 @@
5094 4973 background-color: #fff;
5095 4974 box-shadow: 0 0 3px rgba(0, 0, 0, 0.3), 0 0 20px rgba(0, 0, 0, 0.15);
5096 4975 }
5097 4976
5098 -#elementor-template-library-modal button:focus-visible,
5099 -#elementor-template-library-modal a:focus-visible,
5100 -#elementor-template-library-modal input:focus-visible,
5101 -#elementor-template-library-modal select:focus-visible,
5102 -#elementor-template-library-modal [tabindex="0"]:focus-visible,
5103 -#elementor-template-library-modal [role=tab]:focus-visible,
5104 -#elementor-template-library-modal [role=radio]:focus-visible,
5105 -#elementor-template-library-modal [role=menuitem]:focus-visible {
5106 - outline: 2px solid var(--e-a-border-color-focus);
5107 - outline-offset: 2px;
5108 - border-radius: 2px;
5109 -}
5110 4977 #elementor-template-library-modal a.elementor-template-library-blank-footer-link {
5111 4978 font-style: normal;
5112 4979 text-decoration: underline;
5113 4980 }
@@ -5119,9 +4986,9 @@
5119 4986 }
5120 4987 #elementor-template-library-modal .dialog-message {
5121 4988 overflow-y: scroll;
5122 4989 }
5123 -#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 {
4990 +#elementor-template-library-modal:has(#elementor-template-library-save-template) .dialog-message {
5124 4991 overflow-y: hidden;
5125 4992 }
5126 4993 #elementor-template-library-modal .e-back-to-editor {
5127 4994 color: var(--e-a-color-txt);
@@ -5138,21 +5005,14 @@
5138 5005 display: inline-block;
5139 5006 padding: 17px 20px;
5140 5007 border-block-end: 3px solid transparent;
5141 5008 cursor: pointer;
5142 - background: transparent;
5143 - margin: 0;
5144 - font-size: inherit;
5145 - font-family: inherit;
5146 - color: inherit;
5147 - border: none;
5148 5009 }
5149 5010 .elementor-template-library-menu-item:hover {
5150 5011 background-color: var(--e-a-bg-hover);
5151 5012 border-color: var(--e-a-bg-hover);
5152 5013 }
5153 -.elementor-template-library-menu-item.elementor-active, .elementor-template-library-menu-item[aria-selected=true] {
5154 - border-block-end: 3px solid;
5014 +.elementor-template-library-menu-item.elementor-active {
5155 5015 border-color: var(--e-a-border-color-accent);
5156 5016 color: var(--e-a-color-txt-accent);
5157 5017 }
5158 5018
@@ -5158,25 +5018,11 @@
5158 5018
5159 5019 #elementor-template-library-header-actions {
5160 5020 display: flex;
5161 5021 }
5162 -#elementor-template-library-header-actions > div,
5163 -#elementor-template-library-header-actions > button {
5164 - background: transparent;
5165 - margin: 0;
5166 - font-size: inherit;
5167 - font-family: inherit;
5168 - color: inherit;
5169 - border: none;
5022 +#elementor-template-library-header-actions > div {
5170 5023 padding-inline-end: 16px;
5171 - cursor: pointer;
5172 5024 }
5173 -#elementor-template-library-header-actions > div:focus-visible,
5174 -#elementor-template-library-header-actions > button:focus-visible {
5175 - outline: 2px solid var(--e-a-border-color-focus);
5176 - outline-offset: -2px;
5177 - border-radius: 2px;
5178 -}
5179 5025
5180 5026 #elementor-template-library-header-tools.e-hidden-disabled {
5181 5027 opacity: 0;
5182 5028 visibility: hidden;
@@ -5191,9 +5037,8 @@
5191 5037 margin-inline-start: 4px;
5192 5038 }
5193 5039
5194 5040 #elementor-template-library-header-preview-back {
5195 - gap: 10px;
5196 5041 padding-block: 16.5px 15px;
5197 5042 padding-inline: 0 16.5px;
5198 5043 border-inline-end: var(--e-a-border);
5199 5044 cursor: pointer;
@@ -5198,32 +5043,18 @@
5198 5043 border-inline-end: var(--e-a-border);
5199 5044 cursor: pointer;
5200 5045 transition: color 0.5s;
5201 5046 }
5202 -#elementor-template-library-header-preview-back .elementor-template-library-header-back-button {
5203 - background: transparent;
5204 - margin: 0;
5205 - font-size: inherit;
5206 - font-family: inherit;
5207 - color: inherit;
5208 - border: none;
5209 - display: flex;
5210 - align-items: center;
5211 - gap: 10px;
5212 - cursor: pointer;
5213 -}
5214 -#elementor-template-library-header-preview-back .elementor-template-library-header-back-button:focus-visible {
5215 - outline: 2px solid var(--e-a-border-color-focus);
5216 - outline-offset: 2px;
5217 - border-radius: 2px;
5218 -}
5219 5047 #elementor-template-library-header-preview-back:hover {
5220 5048 color: var(--e-a-color-txt-hover);
5221 5049 }
5222 5050 #elementor-template-library-header-preview-back i {
5051 + padding-inline-end: 10px;
5223 5052 font-size: 18px;
5224 - scale: calc(1 * var(--direction-multiplier)) 1;
5225 5053 }
5054 +#elementor-template-library-header-preview-back i:before {
5055 + content: "\e87e";
5056 +}
5226 5057
5227 5058 #elementor-template-library-templates {
5228 5059 display: flex;
5229 5060 flex-direction: column;
@@ -5249,20 +5080,15 @@
5249 5080 }
5250 5081 #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 {
5251 5082 display: flex;
5252 5083 align-items: baseline;
5253 - border-radius: 3px;
5254 5084 }
5255 -#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 {
5256 - outline: 2px solid var(--e-a-border-color-focus);
5257 - outline-offset: 2px;
5258 -}
5259 5085 #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 {
5260 5086 align-items: center;
5261 5087 }
5262 5088 #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 {
5263 5089 font-size: 14px;
5264 - margin-inline-start: 5px;
5090 + margin-left: 5px;
5265 5091 }
5266 5092 #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 {
5267 5093 width: 200px;
5268 5094 margin: 0px 10px;
@@ -5361,14 +5187,8 @@
5361 5187 align-items: center;
5362 5188 gap: 8px;
5363 5189 }
5364 5190 #elementor-template-library-templates .elementor-template-library-filter-toolbar-side-actions .elementor-template-library-action-item {
5365 - background: transparent;
5366 - margin: 0;
5367 - font-size: inherit;
5368 - font-family: inherit;
5369 - color: inherit;
5370 - border: none;
5371 5191 cursor: pointer;
5372 5192 font-size: 20px;
5373 5193 padding: 0 5px;
5374 5194 border-radius: 2px;
@@ -5408,19 +5228,15 @@
5408 5228 padding: 8px;
5409 5229 border: var(--e-a-border);
5410 5230 border-radius: 3px;
5411 5231 }
5412 -#elementor-template-library-templates[data-template-view=grid] #elementor-template-library-templates-container .elementor-template-library-template-view-grid:focus-visible {
5413 - outline: 2px solid var(--e-a-border-color-focus);
5414 - outline-offset: 2px;
5415 -}
5416 -#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 {
5232 +#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 {
5417 5233 display: flex;
5418 5234 }
5419 -#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 {
5235 +#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 {
5420 5236 display: none;
5421 5237 }
5422 -#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 {
5238 +#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 {
5423 5239 display: flex !important;
5424 5240 }
5425 5241 #elementor-template-library-templates[data-template-view=grid] #elementor-template-library-templates-container .elementor-template-library-template-view-grid .elementor-template-library-template-thumbnail {
5426 5242 width: 190px;
@@ -5426,14 +5242,14 @@
5426 5242 width: 190px;
5427 5243 height: 100px;
5428 5244 position: relative;
5429 5245 border-radius: 3px;
5430 - margin-block-end: 4px;
5246 + margin-bottom: 4px;
5431 5247 overflow: hidden;
5432 5248 }
5433 5249 #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 {
5434 - -o-object-fit: contain;
5435 - object-fit: contain;
5250 + -o-object-fit: cover;
5251 + object-fit: cover;
5436 5252 width: 100%;
5437 5253 height: 100%;
5438 5254 }
5439 5255 #elementor-template-library-templates[data-template-view=grid] #elementor-template-library-templates-container .elementor-template-library-template-view-grid .elementor-template-library-template-preview {
@@ -5515,29 +5331,16 @@
5515 5331 gap: 20px;
5516 5332 align-items: center;
5517 5333 flex: 1;
5518 5334 }
5519 -#elementor-template-library-templates .bulk-selection-action-bar button {
5520 - background: transparent;
5521 - margin: 0;
5522 - font-size: inherit;
5523 - font-family: inherit;
5524 - color: inherit;
5525 - border: none;
5335 +#elementor-template-library-templates .bulk-selection-action-bar i {
5526 5336 cursor: pointer;
5527 - display: flex;
5528 - align-items: center;
5529 - justify-content: center;
5337 + font-size: 18px;
5530 5338 }
5531 -#elementor-template-library-templates .bulk-selection-action-bar button.disabled {
5339 +#elementor-template-library-templates .bulk-selection-action-bar i.disabled {
5532 5340 pointer-events: none;
5533 5341 opacity: 0.3;
5534 - cursor: not-allowed;
5535 5342 }
5536 -#elementor-template-library-templates .bulk-selection-action-bar i {
5537 - cursor: pointer;
5538 - font-size: 18px;
5539 -}
5540 5343 #elementor-template-library-templates .bulk-selection-action-bar .eicon-editor-close {
5541 5344 font-size: 20px;
5542 5345 }
5543 5346 #elementor-template-library-templates #elementor-template-library-navigation-container {
@@ -5573,12 +5376,12 @@
5573 5376 background: var(--e-a-bg-active);
5574 5377 }
5575 5378 #elementor-template-library-templates .elementor-template-library-local-column-1 input[type=checkbox] {
5576 5379 position: relative;
5577 - inset-block-start: 3px;
5380 + top: 3px;
5578 5381 }
5579 5382 #elementor-template-library-templates .elementor-template-library-local-column-1 input[type=checkbox]:checked {
5580 - inset-block-start: 0px;
5383 + top: 0px;
5581 5384 }
5582 5385 #elementor-template-library-templates .bulk-selection-item-checkbox:checked,
5583 5386 #elementor-template-library-templates #bulk-select-all:checked {
5584 5387 background: #69727D;
@@ -5619,11 +5422,11 @@
5619 5422 .elementor-template-library-filter-select-source .source-option i {
5620 5423 margin-inline-end: 5px;
5621 5424 }
5622 5425 .elementor-template-library-filter-select-source .source-option .new-badge {
5623 - border: 1px solid var(--e-a-color-primary-bold-dark);
5426 + border: 1px solid var(--e-a-color-primary-bold);
5624 5427 padding: 2px 4px;
5625 - color: var(--e-a-color-primary-bold-dark);
5428 + color: var(--e-a-color-primary-bold);
5626 5429 border-radius: 10px;
5627 5430 font-size: 10px;
5628 5431 margin-inline-start: 5px;
5629 5432 }
@@ -5630,52 +5433,8 @@
5630 5433 .elementor-template-library-filter-select-source .source-option.selected, .elementor-template-library-filter-select-source .source-option:hover {
5631 5434 background-color: var(--e-a-bg-hover);
5632 5435 }
5633 5436
5634 -#elementor-template-library-connect-states .elementor-template-library-filter-toolbar {
5635 - display: flex;
5636 - align-items: center;
5637 - justify-content: space-between;
5638 -}
5639 -
5640 -#elementor-template-library-toolbar .source-option-badge,
5641 -.elementor-template-library-connect-states-badge .source-option-badge {
5642 - display: flex;
5643 - align-items: center;
5644 - gap: 6px;
5645 - padding: 6px 12px;
5646 - border: none;
5647 - border-radius: 20px;
5648 - font-size: 14px;
5649 - font-weight: 500;
5650 - white-space: nowrap;
5651 - margin-inline-start: auto;
5652 - margin-inline-end: 15px;
5653 -}
5654 -#elementor-template-library-toolbar .source-option-badge i,
5655 -.elementor-template-library-connect-states-badge .source-option-badge i {
5656 - margin: 0;
5657 - font-size: 14px;
5658 -}
5659 -#elementor-template-library-toolbar .source-option-badge.cloud-badge,
5660 -.elementor-template-library-connect-states-badge .source-option-badge.cloud-badge {
5661 - background-color: var(--e-a-bg-info);
5662 - color: var(--e-a-color-info);
5663 -}
5664 -#elementor-template-library-toolbar .source-option-badge.cloud-badge i,
5665 -.elementor-template-library-connect-states-badge .source-option-badge.cloud-badge i {
5666 - color: var(--e-a-color-info);
5667 -}
5668 -#elementor-template-library-toolbar .source-option-badge.site-badge,
5669 -.elementor-template-library-connect-states-badge .source-option-badge.site-badge {
5670 - background-color: var(--e-a-bg-warning);
5671 - color: var(--e-a-btn-bg-warning-hover);
5672 -}
5673 -#elementor-template-library-toolbar .source-option-badge.site-badge i,
5674 -.elementor-template-library-connect-states-badge .source-option-badge.site-badge i {
5675 - color: var(--e-a-btn-bg-warning-hover);
5676 -}
5677 -
5678 5437 #elementor-template-library-filter-toolbar-remote {
5679 5438 font-size: 11px;
5680 5439 }
5681 5440
@@ -5750,9 +5509,9 @@
5750 5509 content: "\e923";
5751 5510 }
5752 5511
5753 5512 #elementor-template-library-create-new-folder-dialog .elementor-create-folder-template-dialog__p {
5754 - margin-block-end: 10px;
5513 + margin-bottom: 10px;
5755 5514 }
5756 5515
5757 5516 #elementor-template-library-filter-text-wrapper {
5758 5517 width: 200px;
@@ -5759,14 +5518,14 @@
5759 5518 position: relative;
5760 5519 }
5761 5520 #elementor-template-library-filter-text-wrapper i {
5762 5521 position: absolute;
5763 - inset-block-start: 50%;
5764 - inset-inline-end: 0;
5522 + top: 50%;
5523 + right: 0;
5765 5524 transform: translateY(-50%);
5766 5525 }
5767 5526 #elementor-template-library-filter-text-wrapper i.eicon-loading.eicon-animation-spin {
5768 - inset-block-start: 25%;
5527 + top: 25%;
5769 5528 }
5770 5529
5771 5530 #elementor-template-library-filter-text {
5772 5531 border: none;
@@ -5793,32 +5552,19 @@
5793 5552 padding: 8px;
5794 5553 border: var(--e-a-border);
5795 5554 border-radius: 3px;
5796 5555 }
5797 -.elementor-template-library-template-remote:focus-visible {
5798 - outline: 2px solid var(--e-a-border-color-focus);
5799 - outline-offset: 2px;
5800 -}
5801 -.elementor-template-library-template-remote:hover, .elementor-template-library-template-remote:focus, .elementor-template-library-template-remote:focus-within {
5556 +.elementor-template-library-template-remote:hover {
5802 5557 background-color: var(--e-a-bg-hover);
5803 5558 }
5804 -.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 {
5805 - opacity: 1;
5806 -}
5807 -.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 {
5559 +.elementor-template-library-template-remote:hover .elementor-template-library-template-name {
5808 5560 display: none;
5809 5561 }
5810 -.elementor-template-library-template-remote:hover .elementor-template-library-favorite,
5811 -.elementor-template-library-template-remote:hover .elementor-template-library-template-action, .elementor-template-library-template-remote:focus .elementor-template-library-favorite,
5812 -.elementor-template-library-template-remote:focus .elementor-template-library-template-action, .elementor-template-library-template-remote:focus-within .elementor-template-library-favorite,
5813 -.elementor-template-library-template-remote:focus-within .elementor-template-library-template-action {
5814 - display: initial;
5815 -}
5816 -.elementor-template-library-template-remote:not(:hover):not(:focus):not(:focus-within) .elementor-template-library-template-preview {
5562 +.elementor-template-library-template-remote:not(:hover) .elementor-template-library-template-preview {
5817 5563 opacity: 0;
5818 5564 }
5819 -.elementor-template-library-template-remote:not(:hover):not(:focus):not(:focus-within) .elementor-template-library-favorite,
5820 -.elementor-template-library-template-remote:not(:hover):not(:focus):not(:focus-within) .elementor-template-library-template-action {
5565 +.elementor-template-library-template-remote:not(:hover) .elementor-template-library-favorite,
5566 +.elementor-template-library-template-remote:not(:hover) .elementor-template-library-template-action {
5821 5567 display: none;
5822 5568 }
5823 5569 .elementor-template-library-template-remote.elementor-template-library-pro-template .elementor-template-library-template-body:before {
5824 5570 content: var(--elementor-template-library-subscription-plan-label);
@@ -5826,10 +5572,10 @@
5826 5572 color: var(--e-a-color-white);
5827 5573 position: absolute;
5828 5574 text-transform: uppercase;
5829 5575 line-height: 1;
5830 - inset-block-start: 5px;
5831 - inset-inline-end: 5px;
5576 + top: 5px;
5577 + right: 5px;
5832 5578 padding: 3px 5px;
5833 5579 font-size: 8px;
5834 5580 border-radius: 2px;
5835 5581 }
@@ -5844,10 +5590,10 @@
5844 5590 }
5845 5591 .elementor-template-library-template-remote:not(.elementor-template-library-template-page):not(.elementor-template-library-template-lp) .elementor-template-library-template-footer {
5846 5592 position: absolute;
5847 5593 width: 100%;
5848 - inset-block-end: 0;
5849 - inset-inline-start: 0;
5594 + bottom: 0;
5595 + left: 0;
5850 5596 padding: 10px;
5851 5597 background-color: var(--e-a-bg-default);
5852 5598 transition: transform 0.5s;
5853 5599 }
@@ -5853,9 +5599,9 @@
5853 5599 }
5854 5600 .elementor-template-library-template-remote:not(.elementor-template-library-template-page):not(.elementor-template-library-template-lp) .elementor-template-library-template-name {
5855 5601 display: none;
5856 5602 }
5857 -.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 {
5603 +.elementor-template-library-template-remote:not(.elementor-template-library-template-page):not(.elementor-template-library-template-lp):not(:hover) .elementor-template-library-template-footer {
5858 5604 transform: translateY(100%);
5859 5605 }
5860 5606 .elementor-template-library-template-remote .elementor-template-library-template-body {
5861 5607 position: relative;
@@ -5880,11 +5626,11 @@
5880 5626 }
5881 5627 .elementor-template-library-template-remote .elementor-template-library-template-preview i {
5882 5628 font-size: 20px;
5883 5629 position: absolute;
5884 - inset-block-start: 50%;
5885 - inset-inline-start: 50%;
5886 - transform: translate(calc(-50% * var(--direction-multiplier)), -50%);
5630 + top: 50%;
5631 + left: 50%;
5632 + transform: translate(-50%, -50%);
5887 5633 }
5888 5634 .elementor-template-library-template-remote .elementor-template-library-template-footer {
5889 5635 display: flex;
5890 5636 justify-content: space-between;
@@ -5904,22 +5650,10 @@
5904 5650 .elementor-template-library-template-remote .elementor-template-library-favorite {
5905 5651 margin-inline-start: auto;
5906 5652 }
5907 5653 .elementor-template-library-template-remote .elementor-template-library-template-favorite-input {
5908 - position: absolute;
5909 - width: 1px;
5910 - height: 1px;
5911 - padding: 0;
5912 - margin: -1px;
5913 - overflow: hidden;
5914 - clip: rect(0, 0, 0, 0);
5915 - white-space: nowrap;
5916 - border: 0;
5654 + display: none;
5917 5655 }
5918 -.elementor-template-library-template-remote .elementor-template-library-template-favorite-input:focus-visible + .elementor-template-library-template-favorite-label {
5919 - outline: 2px solid var(--e-a-border-color-focus);
5920 - outline-offset: 2px;
5921 -}
5922 5656 .elementor-template-library-template-remote .elementor-template-library-template-favorite-input:checked + .elementor-template-library-template-favorite-label i:before {
5923 5657 content: "\e93f";
5924 5658 color: var(--e-a-color-primary-bold);
5925 5659 }
@@ -6035,25 +5769,14 @@
6035 5769 position: absolute;
6036 5770 background-color: var(--e-a-bg-default);
6037 5771 border-radius: var(--e-a-border-radius);
6038 5772 box-shadow: 1px 3px 11px rgba(0, 0, 0, 0.3);
6039 - inset-block-start: 100%;
6040 - inset-inline-end: 0;
5773 + top: 100%;
5774 + right: 0;
6041 5775 z-index: 1;
6042 - list-style: none;
6043 - margin: 0;
6044 - padding: 0;
6045 5776 }
6046 -.elementor-template-library-template-local .elementor-template-library-template-more > li button,
6047 -.elementor-template-library-template-local .elementor-template-library-template-more > li a,
6048 -.elementor-template-library-template-cloud .elementor-template-library-template-more > li button,
6049 -.elementor-template-library-template-cloud .elementor-template-library-template-more > li a {
6050 - background: transparent;
6051 - margin: 0;
6052 - font-size: inherit;
6053 - font-family: inherit;
6054 - color: inherit;
6055 - border: none;
5777 +.elementor-template-library-template-local .elementor-template-library-template-more > div,
5778 +.elementor-template-library-template-cloud .elementor-template-library-template-more > div {
6056 5779 padding: 10px 20px;
6057 5780 font-size: 11px;
6058 5781 cursor: pointer;
6059 5782 display: flex;
@@ -6058,21 +5781,25 @@
6058 5781 cursor: pointer;
6059 5782 display: flex;
6060 5783 align-items: center;
6061 5784 gap: 8px;
6062 - width: 100%;
6063 5785 }
6064 -.elementor-template-library-template-local .elementor-template-library-template-more > li button.disabled,
6065 -.elementor-template-library-template-local .elementor-template-library-template-more > li a.disabled,
6066 -.elementor-template-library-template-cloud .elementor-template-library-template-more > li button.disabled,
6067 -.elementor-template-library-template-cloud .elementor-template-library-template-more > li a.disabled {
5786 +.elementor-template-library-template-local .elementor-template-library-template-more > div.disabled,
5787 +.elementor-template-library-template-cloud .elementor-template-library-template-more > div.disabled {
6068 5788 cursor: not-allowed;
6069 5789 color: var(--e-a-color-txt-disabled);
6070 5790 }
6071 -.elementor-template-library-template-local .elementor-template-library-template-more > li a,
6072 -.elementor-template-library-template-cloud .elementor-template-library-template-more > li a {
5791 +.elementor-template-library-template-local .elementor-template-library-template-more > div.disabled a,
5792 +.elementor-template-library-template-cloud .elementor-template-library-template-more > div.disabled a {
5793 + color: var(--e-a-color-txt-disabled);
5794 + cursor: not-allowed;
5795 +}
5796 +.elementor-template-library-template-local .elementor-template-library-template-more a,
5797 +.elementor-template-library-template-cloud .elementor-template-library-template-more a {
6073 5798 color: var(--e-a-color-txt);
6074 - text-decoration: none;
5799 + display: flex;
5800 + align-items: center;
5801 + gap: 8px;
6075 5802 }
6076 5803 .elementor-template-library-template-local .elementor-template-library-template-more .elementor-template-library-template-delete,
6077 5804 .elementor-template-library-template-cloud .elementor-template-library-template-more .elementor-template-library-template-delete {
6078 5805 color: var(--e-a-color-danger);
@@ -6084,14 +5811,8 @@
6084 5811 .elementor-template-library-template-local .elementor-template-library-template-more-toggle,
6085 5812 .elementor-template-library-template-cloud .elementor-template-library-template-more-toggle {
6086 5813 margin-inline-start: auto;
6087 5814 cursor: pointer;
6088 - background: none;
6089 - border: none;
6090 - padding: 0;
6091 - display: flex;
6092 - align-items: center;
6093 - justify-content: center;
6094 5815 }
6095 5816 .elementor-template-library-template-local .elementor-template-library-template-more-toggle i,
6096 5817 .elementor-template-library-template-cloud .elementor-template-library-template-more-toggle i {
6097 5818 font-size: 20px;
@@ -6158,11 +5879,9 @@
6158 5879 display: flex;
6159 5880 align-items: center;
6160 5881 }
6161 5882 .elementor-template-library-template-local .elementor-template-library-template-controls > div,
6162 -.elementor-template-library-template-local .elementor-template-library-template-controls > button,
6163 -.elementor-template-library-template-cloud:not(.elementor-template-library-template-view-grid) .elementor-template-library-template-controls > div,
6164 -.elementor-template-library-template-cloud:not(.elementor-template-library-template-view-grid) .elementor-template-library-template-controls > button {
5883 +.elementor-template-library-template-cloud:not(.elementor-template-library-template-view-grid) .elementor-template-library-template-controls > div {
6165 5884 cursor: pointer;
6166 5885 transition: color 0.5s;
6167 5886 }
6168 5887 .elementor-template-library-template-local .elementor-template-library-template-insert.disabled,
@@ -6184,9 +5903,9 @@
6184 5903 overflow: hidden;
6185 5904 }
6186 5905 #elementor-template-library-preview iframe {
6187 5906 height: 150%;
6188 - transform: scale(0.666) translateX(calc(-25% * var(--direction-multiplier))) translateY(-25%);
5907 + transform: scale(0.666) translateX(-25%) translateY(-25%);
6189 5908 }
6190 5909 @media (max-width: 1439px) {
6191 5910 #elementor-template-library-preview iframe {
6192 5911 width: 1440px;
@@ -6247,18 +5966,18 @@
6247 5966 #elementor-template-library-save-template-form > * {
6248 5967 height: 55px;
6249 5968 font-size: 16px;
6250 5969 }
5970 +#elementor-template-library-save-template-form .cloud-library-form-inputs {
5971 + display: block;
5972 + width: 500px;
5973 + margin: 0 auto;
5974 +}
6251 5975 #elementor-template-library-save-template-form .cloud-library-form-inputs > * {
6252 5976 height: 55px;
6253 5977 font-size: 16px;
6254 5978 margin-block-end: 15px;
6255 5979 }
6256 -#elementor-template-library-save-template-form .cloud-library-form-inputs {
6257 - display: block;
6258 - width: 500px;
6259 - margin: 0 auto;
6260 -}
6261 5980 #elementor-template-library-save-template-form .cloud-library-form-inputs .upgrade-tooltip,
6262 5981 #elementor-template-library-save-template-form .cloud-library-form-inputs .connect-badge {
6263 5982 display: none;
6264 5983 }
@@ -6284,24 +6003,15 @@
6284 6003 #elementor-template-library-save-template-form .cloud-library-form-inputs .ellipsis-container {
6285 6004 display: inline;
6286 6005 background: var(--e-a-bg-hover);
6287 6006 padding: 0 2px 1px;
6288 - border: none;
6289 6007 border-radius: 2px;
6290 6008 vertical-align: bottom;
6291 6009 cursor: pointer;
6292 - font-family: inherit;
6293 - font-size: inherit;
6294 - color: inherit;
6295 - line-height: inherit;
6296 6010 }
6297 6011 #elementor-template-library-save-template-form .cloud-library-form-inputs .ellipsis-container:hover {
6298 6012 background: var(--e-a-bg-active);
6299 6013 }
6300 -#elementor-template-library-save-template-form .cloud-library-form-inputs .ellipsis-container:focus-visible {
6301 - outline: 2px solid var(--e-a-border-color-focus);
6302 - outline-offset: 2px;
6303 -}
6304 6014 #elementor-template-library-save-template-form .cloud-library-form-inputs.promotion .upgrade-tooltip,
6305 6015 #elementor-template-library-save-template-form .cloud-library-form-inputs.promotion .connect-badge,
6306 6016 #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,
6307 6017 #elementor-template-library-save-template-form .cloud-library-form-inputs.max-capacity .connect-badge,
@@ -6354,9 +6064,9 @@
6354 6064 position: relative;
6355 6065 }
6356 6066 #elementor-template-library-save-template-form .cloud-library-form-inputs .source-selections input[type=checkbox]:checked {
6357 6067 background: #69727D;
6358 - inset-block-start: -3px;
6068 + top: -3px;
6359 6069 position: relative;
6360 6070 }
6361 6071 #elementor-template-library-save-template-form .cloud-library-form-inputs .source-selections-input {
6362 6072 position: relative;
@@ -6365,22 +6075,18 @@
6365 6075 #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 {
6366 6076 white-space: nowrap;
6367 6077 text-overflow: ellipsis;
6368 6078 overflow: hidden;
6369 - overflow: visible;
6370 - display: inline-flex;
6371 - align-items: baseline;
6372 6079 line-height: 27px;
6373 6080 }
6374 6081 #elementor-template-library-save-template-form .cloud-library-form-inputs .source-selections-input #cloud,
6375 6082 #elementor-template-library-save-template-form .cloud-library-form-inputs .source-selections-input #local {
6376 - flex-shrink: 0;
6377 6083 position: relative;
6378 - inset-block-start: 2px;
6084 + top: 2px;
6379 6085 }
6380 6086 #elementor-template-library-save-template-form .cloud-library-form-inputs .source-selections-input #cloud:checked,
6381 6087 #elementor-template-library-save-template-form .cloud-library-form-inputs .source-selections-input #local:checked {
6382 - inset-block-start: -2px;
6088 + top: -2px;
6383 6089 }
6384 6090 #elementor-template-library-save-template-form .cloud-library-form-inputs .source-selections-input .eicon-ellipsis-h {
6385 6091 vertical-align: bottom;
6386 6092 }
@@ -6391,26 +6097,15 @@
6391 6097 }
6392 6098 #elementor-template-library-save-template-form .cloud-library-form-inputs .source-selections-input .selected-folder {
6393 6099 display: none;
6394 6100 margin-inline-end: 5px;
6395 - align-items: baseline;
6396 - white-space: nowrap;
6397 - text-overflow: ellipsis;
6398 - overflow: hidden;
6399 6101 }
6400 -#elementor-template-library-save-template-form .cloud-library-form-inputs .source-selections-input .selected-folder[style*="display: inline"] {
6401 - display: inline-flex !important;
6402 -}
6403 6102 #elementor-template-library-save-template-form .cloud-library-form-inputs .source-selections-input .selected-folder-text {
6404 6103 text-decoration: underline;
6405 6104 cursor: pointer;
6406 - white-space: nowrap;
6407 - text-overflow: ellipsis;
6408 - overflow: hidden;
6409 6105 }
6410 6106 #elementor-template-library-save-template-form .cloud-library-form-inputs .source-selections-input .eicon-editor-close {
6411 6107 cursor: pointer;
6412 - flex-shrink: 0;
6413 6108 }
6414 6109 #elementor-template-library-save-template-form .cloud-library-form-inputs .source-selections-input #elementor-template-library-connect__badge {
6415 6110 color: var(--e-a-color-primary-bold);
6416 6111 font-size: 14px;
@@ -6420,9 +6115,9 @@
6420 6115 }
6421 6116 #elementor-template-library-save-template-form .cloud-library-form-inputs .cloud-folder-selection-dropdown {
6422 6117 display: none;
6423 6118 position: absolute;
6424 - inset-block-start: 40px;
6119 + top: 40px;
6425 6120 background-color: var(--e-a-bg-default);
6426 6121 min-width: 187px;
6427 6122 overflow: auto;
6428 6123 box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
@@ -6446,9 +6141,8 @@
6446 6141 }
6447 6142 #elementor-template-library-save-template-form .cloud-library-form-inputs .cloud-folder-selection-dropdown .folder-item {
6448 6143 padding: 5px 15px;
6449 6144 cursor: pointer;
6450 - list-style: none;
6451 6145 }
6452 6146 #elementor-template-library-save-template-form .cloud-library-form-inputs .cloud-folder-selection-dropdown .folder-item[data-id="0"] .eicon-folder-o {
6453 6147 display: none;
6454 6148 }
@@ -6457,15 +6151,11 @@
6457 6151 }
6458 6152 #elementor-template-library-save-template-form .cloud-library-form-inputs .cloud-folder-selection-dropdown .folder-item[data-id="0"] {
6459 6153 text-decoration: underline;
6460 6154 }
6461 -#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 {
6155 +#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 {
6462 6156 background: var(--e-a-border-color);
6463 6157 }
6464 -#elementor-template-library-save-template-form .cloud-library-form-inputs .cloud-folder-selection-dropdown .folder-item:focus-visible {
6465 - outline: 2px solid var(--e-a-border-color-focus);
6466 - outline-offset: -2px;
6467 -}
6468 6158 #elementor-template-library-save-template-form .cloud-library-form-inputs .cloud-folder-selection-dropdown .folder-item.disabled {
6469 6159 pointer-events: none;
6470 6160 opacity: 0.3;
6471 6161 }
@@ -6471,9 +6161,10 @@
6471 6161 }
6472 6162 #elementor-template-library-save-template-form .cloud-library-form-inputs .cloud-folder-selection-dropdown .no-results {
6473 6163 text-align: center;
6474 6164 font-size: 13px;
6475 - margin: 0 20px;
6165 + width: 155px;
6166 + margin: 0 auto;
6476 6167 padding-block: 15px;
6477 6168 pointer-events: none;
6478 6169 }
6479 6170 #elementor-template-library-save-template-form .cloud-library-form-inputs .cloud-folder-selection-dropdown .no-results i {
@@ -6487,259 +6178,8 @@
6487 6178 #elementor-template-library-save-template-form .cloud-library-form-inputs .source-selections-input.disabled {
6488 6179 pointer-events: none;
6489 6180 opacity: 0.3;
6490 6181 }
6491 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b {
6492 - display: flex;
6493 - flex-direction: column;
6494 - width: 600px;
6495 - text-align: start;
6496 -}
6497 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .template-name-label,
6498 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .save-location-label {
6499 - font-size: 12px;
6500 - font-weight: 400;
6501 - color: var(--e-a-color-txt);
6502 -}
6503 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b #elementor-template-library-save-template-name {
6504 - width: 100%;
6505 - padding: 12px 15px;
6506 - border: var(--e-a-border-bold);
6507 - border-radius: 3px;
6508 - margin-block-end: 0;
6509 -}
6510 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections {
6511 - border: none;
6512 - padding: 0;
6513 - gap: 12px;
6514 - margin-block-start: 20px;
6515 -}
6516 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input {
6517 - display: flex;
6518 - align-items: center;
6519 - padding: 12px 15px;
6520 - border: var(--e-a-border-bold);
6521 - border-radius: 3px;
6522 - width: 100%;
6523 - line-height: normal;
6524 - gap: 8px;
6525 -}
6526 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input:has(input[type=checkbox]:checked) {
6527 - border-color: var(--e-a-color-txt);
6528 -}
6529 -#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 {
6530 - display: flex;
6531 -}
6532 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input input[type=checkbox] {
6533 - margin-inline-end: 0;
6534 - flex-shrink: 0;
6535 - position: relative;
6536 -}
6537 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input input[type=checkbox]:checked {
6538 - inset-block-start: 0;
6539 -}
6540 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input input[type=checkbox]::after {
6541 - content: "";
6542 - position: absolute;
6543 - inset-inline-end: -8px;
6544 - width: 1px;
6545 - height: 18px;
6546 - background-color: var(--e-a-border-color);
6547 -}
6548 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input > i:first-of-type {
6549 - margin-inline-start: 12px;
6550 - margin-inline-end: 4px;
6551 - font-size: 24px;
6552 - color: var(--e-a-color-txt);
6553 -}
6554 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input > svg:first-of-type {
6555 - margin-inline-start: 8px;
6556 - margin-inline-end: 0;
6557 - font-size: 24px;
6558 - color: var(--e-a-color-txt);
6559 -}
6560 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input label {
6561 - flex: 0 0 auto;
6562 - margin: 0;
6563 - cursor: pointer;
6564 -}
6565 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input .divider {
6566 - margin-inline: 0;
6567 -}
6568 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input .ellipsis-container {
6569 - display: inline;
6570 - background: transparent;
6571 - padding: 0;
6572 - border-radius: 0;
6573 - vertical-align: baseline;
6574 - text-decoration: underline;
6575 - cursor: pointer;
6576 - margin-inline-start: 0;
6577 -}
6578 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input .ellipsis-container:hover {
6579 - background: transparent;
6580 -}
6581 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input .select-folder-link {
6582 - color: var(--e-a-color-primary-bold);
6583 - text-decoration: underline;
6584 - cursor: pointer;
6585 - margin-inline-start: 4px;
6586 -}
6587 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input .select-folder-link:hover {
6588 - text-decoration: none;
6589 -}
6590 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input .upgrade-badge {
6591 - display: none;
6592 - border: none;
6593 - padding: 0;
6594 - border-radius: 0;
6595 - margin-inline-start: 0;
6596 - background: transparent;
6597 - transition: background-color 0.2s;
6598 - padding: 3px 8px;
6599 -}
6600 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input .upgrade-badge:hover {
6601 - background-color: var(--e-a-btn-bg-primary-hover);
6602 - border-radius: 3px;
6603 -}
6604 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input .upgrade-badge a {
6605 - color: var(--e-a-btn-bg-accent);
6606 - text-decoration: none;
6607 - display: flex;
6608 - align-items: center;
6609 - gap: 4px;
6610 - font-size: 14px;
6611 - font-weight: 500;
6612 -}
6613 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input .upgrade-badge a i {
6614 - margin: 0;
6615 - font-size: 14px;
6616 -}
6617 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input .connect-badge {
6618 - display: none;
6619 -}
6620 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input .connect-badge .connect-divider {
6621 - color: var(--e-a-color-txt-muted);
6622 - margin-inline: 5px;
6623 -}
6624 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input .connect-badge a {
6625 - color: var(--e-a-color-info);
6626 - text-decoration: underline;
6627 -}
6628 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input .connect-badge a:hover {
6629 - text-decoration: none;
6630 -}
6631 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input .account-badge {
6632 - display: flex;
6633 - align-items: center;
6634 - gap: 6px;
6635 - padding: 6px 12px;
6636 - border: none;
6637 - border-radius: 20px;
6638 - font-size: 14px;
6639 - font-weight: 500;
6640 - cursor: pointer;
6641 - transition: opacity 0.2s;
6642 - margin-inline-start: auto;
6643 -}
6644 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input .account-badge:hover {
6645 - opacity: 0.8;
6646 -}
6647 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input .account-badge i {
6648 - margin: 0;
6649 - font-size: 14px;
6650 -}
6651 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input .account-badge.cloud-account-badge {
6652 - background-color: var(--e-a-bg-info);
6653 - color: var(--e-a-color-info);
6654 -}
6655 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input .account-badge.cloud-account-badge i {
6656 - color: var(--e-a-color-info);
6657 -}
6658 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input .account-badge.site-account-badge {
6659 - background-color: var(--e-a-bg-warning);
6660 - color: var(--e-a-btn-bg-warning-hover);
6661 -}
6662 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input .account-badge.site-account-badge i {
6663 - color: var(--e-a-btn-bg-warning-hover);
6664 -}
6665 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input .selected-folder {
6666 - display: none;
6667 - margin-inline-start: 8px;
6668 - align-items: center;
6669 - gap: 6px;
6670 -}
6671 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input .selected-folder[style*="display: inline"] {
6672 - display: inline-flex !important;
6673 -}
6674 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input .selected-folder-text {
6675 - text-decoration: underline;
6676 - cursor: pointer;
6677 -}
6678 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input .eicon-editor-close {
6679 - cursor: pointer;
6680 - font-size: 14px;
6681 -}
6682 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .cloud-folder-selection-dropdown {
6683 - inset-block-start: 75px;
6684 - inset-inline-start: 230px;
6685 -}
6686 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections-input.cloud:not(:has(.connect-badge)) .connect-badge {
6687 - display: none;
6688 -}
6689 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections-input.cloud:has(.connect-badge) .connect-badge {
6690 - display: inline;
6691 -}
6692 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections-input.cloud:has(.connect-badge) .upgrade-badge {
6693 - display: none;
6694 -}
6695 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections-input.cloud:has(.connect-badge) {
6696 - border-color: var(--e-a-border-color);
6697 -}
6698 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections-input.cloud:has(.connect-badge) > i:first-of-type,
6699 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections-input.cloud:has(.connect-badge) label,
6700 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections-input.cloud:has(.connect-badge) .divider {
6701 - color: var(--e-a-color-txt-disabled);
6702 -}
6703 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections-input.cloud:has(.connect-badge) input[type=checkbox]::after {
6704 - background-color: var(--e-a-color-txt-disabled);
6705 -}
6706 -#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 {
6707 - border-color: var(--e-a-border-color);
6708 -}
6709 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b.promotion .source-selections-input.cloud > i:first-of-type,
6710 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b.promotion .source-selections-input.cloud label,
6711 -#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,
6712 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b.max-capacity .source-selections-input.cloud label,
6713 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b.max-capacity .source-selections-input.cloud .divider {
6714 - color: var(--e-a-color-txt-disabled);
6715 -}
6716 -#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 {
6717 - background-color: var(--e-a-color-txt-disabled);
6718 -}
6719 -#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 {
6720 - display: inline-flex;
6721 -}
6722 -#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 {
6723 - display: none;
6724 -}
6725 -#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 {
6726 - display: block;
6727 -}
6728 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b.promotion .source-selections-input.cloud input[type=checkbox],
6729 -#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],
6730 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b.max-capacity .source-selections-input.cloud label {
6731 - pointer-events: none;
6732 -}
6733 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b.max-capacity .quota-cta {
6734 - display: block;
6735 - margin-block-start: 15px;
6736 -}
6737 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b #elementor-template-library-save-template-submit {
6738 - align-self: center;
6739 - margin-block-start: 20px;
6740 - float: none;
6741 -}
6742 6182
6743 6183 #elementor-template-library-save-template-name {
6744 6184 width: 500px;
6745 6185 padding-inline-start: 25px;
@@ -6833,11 +6273,11 @@
6833 6273 }
6834 6274
6835 6275 .elementor-template-library-blank-footer {
6836 6276 position: absolute;
6837 - inset-block-end: 70px;
6838 - inset-inline-start: 50%;
6839 - transform: translateX(calc(-50% * var(--direction-multiplier)));
6277 + bottom: 70px;
6278 + left: 50%;
6279 + transform: translateX(-50%);
6840 6280 font-style: italic;
6841 6281 color: var(--e-a-color-txt-muted);
6842 6282 }
6843 6283 @media (max-height: 700px) {
@@ -6870,11 +6310,9 @@
6870 6310 margin-block-start: 10px;
6871 6311 }
6872 6312
6873 6313 #elementor-library--infotip__dialog,
6874 -#elementor-library--connect_infotip__dialog,
6875 -#elementor-library--cloud-upgrade__dialog,
6876 -#elementor-library--site-info__dialog {
6314 +#elementor-library--connect_infotip__dialog {
6877 6315 position: absolute;
6878 6316 z-index: 10000;
6879 6317 background-color: var(--e-a-bg-default);
6880 6318 box-shadow: var(--e-a-popover-shadow);
@@ -6879,39 +6317,19 @@
6879 6317 background-color: var(--e-a-bg-default);
6880 6318 box-shadow: var(--e-a-popover-shadow);
6881 6319 border-radius: var(--e-a-border-radius);
6882 6320 }
6883 -#elementor-library--infotip__dialog.variant-b,
6884 -#elementor-library--connect_infotip__dialog.variant-b,
6885 -#elementor-library--cloud-upgrade__dialog.variant-b,
6886 -#elementor-library--site-info__dialog.variant-b {
6887 - width: 200px;
6888 - color: var(--e-a-color-txt-invert);
6889 - background-color: var(--e-a-bg-secondary);
6890 -}
6891 -#elementor-library--infotip__dialog.variant-b .dialog-message,
6892 -#elementor-library--connect_infotip__dialog.variant-b .dialog-message,
6893 -#elementor-library--cloud-upgrade__dialog.variant-b .dialog-message,
6894 -#elementor-library--site-info__dialog.variant-b .dialog-message {
6895 - padding: 4px 8px 4px 8px;
6896 -}
6897 6321 #elementor-library--infotip__dialog__title,
6898 -#elementor-library--connect_infotip__dialog__title,
6899 -#elementor-library--cloud-upgrade__dialog__title,
6900 -#elementor-library--site-info__dialog__title {
6322 +#elementor-library--connect_infotip__dialog__title {
6901 6323 font-size: 14px;
6902 6324 }
6903 6325 #elementor-library--infotip__dialog .dialog-buttons-wrapper,
6904 -#elementor-library--connect_infotip__dialog .dialog-buttons-wrapper,
6905 -#elementor-library--cloud-upgrade__dialog .dialog-buttons-wrapper,
6906 -#elementor-library--site-info__dialog .dialog-buttons-wrapper {
6326 +#elementor-library--connect_infotip__dialog .dialog-buttons-wrapper {
6907 6327 padding: 10px 0 10px 10px;
6908 6328 float: inline-end;
6909 6329 }
6910 6330 #elementor-library--infotip__dialog .dialog-button,
6911 -#elementor-library--connect_infotip__dialog .dialog-button,
6912 -#elementor-library--cloud-upgrade__dialog .dialog-button,
6913 -#elementor-library--site-info__dialog .dialog-button {
6331 +#elementor-library--connect_infotip__dialog .dialog-button {
6914 6332 padding: 7px 25px;
6915 6333 font-size: 13px;
6916 6334 background: none;
6917 6335 color: var(--e-a-btn-bg-accent);
@@ -6919,14 +6337,12 @@
6919 6337 font-weight: 500;
6920 6338 cursor: pointer;
6921 6339 }
6922 6340 #elementor-library--infotip__dialog:after,
6923 -#elementor-library--connect_infotip__dialog:after,
6924 -#elementor-library--cloud-upgrade__dialog:after,
6925 -#elementor-library--site-info__dialog:after {
6341 +#elementor-library--connect_infotip__dialog:after {
6926 6342 content: "";
6927 6343 position: absolute;
6928 - inset-inline-end: 46%;
6344 + right: 46%;
6929 6345 transform: scaleX(0.7);
6930 6346 border: 10px solid transparent;
6931 6347 }
6932 6348
@@ -6936,14 +6352,11 @@
6936 6352 #elementor-library--infotip__dialog .dialog-message {
6937 6353 padding: 20px 20px 0px 20px;
6938 6354 }
6939 6355 #elementor-library--infotip__dialog:after {
6940 - inset-block-start: 100%;
6941 - border-block-start-color: var(--e-a-bg-default);
6356 + top: 100%;
6357 + border-top-color: var(--e-a-bg-default);
6942 6358 }
6943 -#elementor-library--infotip__dialog.variant-b:after {
6944 - border-block-start-color: var(--e-a-bg-secondary);
6945 -}
6946 6359
6947 6360 #elementor-library--connect_infotip__dialog {
6948 6361 width: 265px;
6949 6362 }
@@ -6949,207 +6362,13 @@
6949 6362 }
6950 6363 #elementor-library--connect_infotip__dialog .dialog-message {
6951 6364 padding: 20px;
6952 6365 }
6953 -#elementor-library--connect_infotip__dialog:not(.variant-b):after {
6954 - inset-block-end: 100%;
6955 - border-block-end-color: var(--e-a-bg-default);
6366 +#elementor-library--connect_infotip__dialog:after {
6367 + bottom: 100%;
6368 + border-bottom-color: var(--e-a-bg-default);
6956 6369 }
6957 -#elementor-library--connect_infotip__dialog.variant-b:after {
6958 - border-block-start-color: var(--e-a-bg-secondary);
6959 - inset-block-start: 100%;
6960 -}
6961 -#elementor-library--connect_infotip__dialog.variant-b {
6962 - width: 265px;
6963 -}
6964 6370
6965 -#elementor-library--cloud-upgrade__dialog {
6966 - width: 265px;
6967 -}
6968 -#elementor-library--cloud-upgrade__dialog:after {
6969 - inset-block-start: 100%;
6970 - border-block-start-color: var(--e-a-bg-default);
6971 -}
6972 -#elementor-library--cloud-upgrade__dialog.variant-b:after {
6973 - border-block-start-color: var(--e-a-bg-secondary);
6974 -}
6975 -
6976 -#elementor-library--site-info__dialog {
6977 - width: 265px;
6978 -}
6979 -#elementor-library--site-info__dialog:after {
6980 - inset-block-start: 100%;
6981 - border-block-start-color: var(--e-a-bg-default);
6982 -}
6983 -#elementor-library--site-info__dialog.variant-b:after {
6984 - border-block-start-color: var(--e-a-bg-secondary);
6985 -}
6986 -
6987 -.elementor-global-styles-dialog {
6988 - --gsd-color-text-primary: #0c0d0e;
6989 - --gsd-color-text-secondary: #3f444b;
6990 - --gsd-color-text-tertiary: #69727D;
6991 - --gsd-color-divider: rgba(0, 0, 0, 0.12);
6992 - --gsd-color-primary-main: #f0abfc;
6993 - --gsd-color-primary-hover: #e879f9;
6994 - --gsd-color-secondary-main: #515962;
6995 - --gsd-border-radius: 4px;
6996 - --gsd-spacing-horizontal: 24px;
6997 - --gsd-font-family: 'Roboto', sans-serif;
6998 - padding: 16px 0 0;
6999 - min-width: 444px;
7000 -}
7001 -.elementor-global-styles-dialog__header {
7002 - padding: 10px var(--gsd-spacing-horizontal) 0;
7003 - margin-block-end: 16px;
7004 -}
7005 -.elementor-global-styles-dialog__header h2 {
7006 - margin: 0 0 4px;
7007 - font-family: var(--gsd-font-family);
7008 - font-size: 16px;
7009 - font-weight: 500;
7010 - line-height: 1.3;
7011 - color: var(--gsd-color-text-primary);
7012 - letter-spacing: 0.15px;
7013 -}
7014 -.elementor-global-styles-dialog__header p {
7015 - margin: 0;
7016 - font-family: var(--gsd-font-family);
7017 - font-size: 14px;
7018 - font-weight: 400;
7019 - line-height: 20px;
7020 - color: var(--gsd-color-text-secondary);
7021 - letter-spacing: 0.15px;
7022 -}
7023 -.elementor-global-styles-dialog__options {
7024 - display: flex;
7025 - flex-direction: column;
7026 - gap: 12px;
7027 - padding: 0 var(--gsd-spacing-horizontal);
7028 -}
7029 -.elementor-global-styles-dialog__radio-card {
7030 - display: flex;
7031 - gap: 0;
7032 - padding: 12px 8px;
7033 - border: 1px solid var(--gsd-color-divider);
7034 - border-radius: var(--gsd-border-radius);
7035 - cursor: pointer;
7036 - transition: border-color 0.2s ease;
7037 -}
7038 -.elementor-global-styles-dialog__radio-card:has(input[type=radio]:checked) {
7039 - border: 2px solid var(--gsd-color-text-primary);
7040 - padding: 11px 7px;
7041 -}
7042 -.elementor-global-styles-dialog__radio-card input[type=radio] {
7043 - flex-shrink: 0;
7044 - width: 20px;
7045 - height: 20px;
7046 - margin: 9px;
7047 - cursor: pointer;
7048 - color: var(--gsd-color-text-tertiary);
7049 - accent-color: var(--gsd-color-text-primary);
7050 -}
7051 -.elementor-global-styles-dialog__radio-card-content {
7052 - display: flex;
7053 - align-items: flex-start;
7054 - flex-direction: column;
7055 - flex: 1;
7056 -}
7057 -.elementor-global-styles-dialog__radio-label {
7058 - font-family: var(--gsd-font-family);
7059 - font-size: 14px;
7060 - font-weight: 500;
7061 - line-height: 18px;
7062 - color: var(--gsd-color-text-primary);
7063 - letter-spacing: 0.15px;
7064 -}
7065 -.elementor-global-styles-dialog__radio-description {
7066 - font-family: var(--gsd-font-family);
7067 - font-size: 12px;
7068 - font-weight: 400;
7069 - line-height: 20px;
7070 - color: var(--gsd-color-text-secondary);
7071 - letter-spacing: 0.4px;
7072 -}
7073 -.elementor-global-styles-dialog__checkbox-container {
7074 - display: flex;
7075 - align-items: flex-start;
7076 - gap: 4px;
7077 - padding: 0;
7078 - margin-block-start: 0;
7079 -}
7080 -.elementor-global-styles-dialog__checkbox-option {
7081 - display: flex;
7082 - align-items: flex-start;
7083 - gap: 4px;
7084 - cursor: pointer;
7085 -}
7086 -.elementor-global-styles-dialog__checkbox-option input[type=checkbox] {
7087 - width: 18px;
7088 - height: 18px;
7089 - margin: 4px;
7090 - cursor: pointer;
7091 -}
7092 -.elementor-global-styles-dialog__checkbox-option input[type=checkbox]:checked {
7093 - background-color: var(--gsd-color-text-tertiary);
7094 -}
7095 -.elementor-global-styles-dialog__checkbox-label {
7096 - font-family: var(--gsd-font-family);
7097 - font-size: 12px;
7098 - font-weight: 400;
7099 - line-height: 1.43;
7100 - color: var(--gsd-color-text-primary);
7101 - letter-spacing: 0.15px;
7102 - padding-block-start: 4px;
7103 - margin-inline-start: 4px;
7104 -}
7105 -.elementor-global-styles-dialog__checkbox-label a {
7106 - color: #2563eb;
7107 - text-decoration: underline;
7108 -}
7109 -.elementor-global-styles-dialog__checkbox-label a:hover {
7110 - color: #2563eb;
7111 -}
7112 -.elementor-global-styles-dialog__footer {
7113 - display: flex;
7114 - justify-content: flex-end;
7115 - align-items: center;
7116 - gap: 8px;
7117 - padding: 16px var(--gsd-spacing-horizontal);
7118 -}
7119 -.elementor-global-styles-dialog__button-cancel {
7120 - padding: 6px 8px;
7121 - font-family: var(--gsd-font-family);
7122 - font-size: 15px;
7123 - font-weight: 500;
7124 - line-height: 24px;
7125 - letter-spacing: 0.4px;
7126 - color: var(--gsd-color-secondary-main);
7127 - background: transparent;
7128 - border: none;
7129 - border-radius: var(--gsd-border-radius);
7130 - cursor: pointer;
7131 -}
7132 -.elementor-global-styles-dialog__button-cancel:hover {
7133 - background: rgba(0, 0, 0, 0.04);
7134 -}
7135 -.elementor-global-styles-dialog__button-insert {
7136 - padding: 6px 16px;
7137 - font-family: var(--gsd-font-family);
7138 - font-size: 15px;
7139 - font-weight: 500;
7140 - line-height: 24px;
7141 - letter-spacing: 0.4px;
7142 - color: var(--gsd-color-text-primary);
7143 - background: var(--gsd-color-primary-main);
7144 - border: none;
7145 - border-radius: var(--gsd-border-radius);
7146 - cursor: pointer;
7147 -}
7148 -.elementor-global-styles-dialog__button-insert:hover {
7149 - background: var(--gsd-color-primary-hover);
7150 -}
7151 -
7152 6371 .elementor-tags-list {
7153 6372 display: none;
7154 6373 position: absolute;
7155 6374 width: 260px;
@@ -7239,10 +6458,10 @@
7239 6458 }
7240 6459 .elementor-tag-settings-popup:before {
7241 6460 content: "";
7242 6461 position: absolute;
7243 - inset-block-start: -20px;
7244 - inset-inline-start: 5px;
6462 + top: -20px;
6463 + left: 5px;
7245 6464 border: 10px solid transparent;
7246 6465 border-block-end-color: var(--e-a-border-color);
7247 6466 }
7248 6467 .elementor-tag-settings-popup .elementor-control-type-section:first-child {
@@ -7333,14 +6552,8 @@
7333 6552 cursor: default;
7334 6553 opacity: 0.5;
7335 6554 color: var(--e-a-color-disabled);
7336 6555 }
7337 -.elementor-context-menu-list__item--disabled.elementor-context-menu-list__item--has-shortcut-action {
7338 - opacity: 1;
7339 -}
7340 -.elementor-context-menu-list__item--disabled.elementor-context-menu-list__item--has-shortcut-action > :not(.elementor-context-menu-list__item__shortcut) {
7341 - opacity: 0.5;
7342 -}
7343 6556 .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 {
7344 6557 background-color: var(--e-a-bg-hover);
7345 6558 color: var(--e-a-color-hover);
7346 6559 }
@@ -7369,20 +6582,8 @@
7369 6582 color: var(--e-a-color-primary-bold);
7370 6583 border-radius: 10px;
7371 6584 font-size: 10px;
7372 6585 }
7373 -.elementor-context-menu-list__item__shortcut__promotion-badge {
7374 - display: flex;
7375 - align-items: center;
7376 - justify-content: center;
7377 - width: 24px;
7378 - height: 24px;
7379 - border-radius: 50%;
7380 - background-color: rgba(214, 16, 124, 0.12);
7381 - color: var(--e-a-color-accent-promotion, #D6107C);
7382 - font-size: 16px;
7383 - cursor: pointer;
7384 -}
7385 6586 .elementor-context-menu-list__item__title, .elementor-context-menu-list__item__shortcut {
7386 6587 font-size: 14px;
7387 6588 font-style: normal;
7388 6589 font-weight: 400;
@@ -7467,9 +6668,9 @@
7467 6668 }
7468 6669 .elementor-hotkeys__item--shortcut kbd:not(:last-of-type)::after {
7469 6670 content: "+";
7470 6671 position: absolute;
7471 - inset-inline-end: 0;
6672 + right: 0;
7472 6673 width: 9px;
7473 6674 text-align: center;
7474 6675 margin-inline-end: -18px;
7475 6676 }
@@ -7548,12 +6749,12 @@
7548 6749 }
7549 6750
7550 6751 #elementor-navigator {
7551 6752 position: fixed;
7552 - inset-block-start: 100px;
7553 - inset-inline-end: 30px;
6753 + top: 100px;
7554 6754 width: var(--e-editor-navigator-width);
7555 6755 height: 50vh;
6756 + right: 30px;
7556 6757 background-color: var(--e-a-bg-default);
7557 6758 border: var(--e-a-border);
7558 6759 box-shadow: 0 2px 20px 0 rgba(0, 0, 0, 0.1);
7559 6760 -webkit-user-select: none;
@@ -7682,9 +6883,9 @@
7682 6883 .elementor-navigator__item[data-locked=true] {
7683 6884 cursor: not-allowed;
7684 6885 }
7685 6886 .elementor-navigator__item:not(.elementor-active) .elementor-navigator__element__list-toggle i {
7686 - transform: rotate(calc(-90deg * var(--direction-multiplier)));
6887 + transform: rotate(-90deg);
7687 6888 }
7688 6889 .elementor-navigator__item > * {
7689 6890 display: flex;
7690 6891 align-items: center;
@@ -7769,9 +6970,9 @@
7769 6970 overflow: hidden;
7770 6971 }
7771 6972 .elementor-navigator__element__toggle {
7772 6973 position: absolute;
7773 - inset-inline-end: 15px;
6974 + right: 15px;
7774 6975 height: 100%;
7775 6976 z-index: 0;
7776 6977 font-size: 13px;
7777 6978 }
@@ -7780,9 +6981,9 @@
7780 6981 transition: transform 0.5s;
7781 6982 z-index: 91;
7782 6983 }
7783 6984 .elementor-navigator__element__indicators:not(:hover) {
7784 - transform: translateX(calc(100% * var(--direction-multiplier) - var(--e-editor-navigator-indicator-width) * var(--direction-multiplier)));
6985 + transform: translateX(calc(100% - var(--e-editor-navigator-indicator-width)));
7785 6986 }
7786 6987 .elementor-navigator__element__indicator {
7787 6988 height: 100%;
7788 6989 width: 31px;
@@ -7809,9 +7010,9 @@
7809 7010
7810 7011 .e-notice-bar {
7811 7012 position: absolute;
7812 7013 width: 100%;
7813 - inset-block-end: 0;
7014 + bottom: 0;
7814 7015 display: flex;
7815 7016 align-items: center;
7816 7017 height: 40px;
7817 7018 color: #fff;
@@ -7937,11 +7138,11 @@
7937 7138 background-color: transparent;
7938 7139 }
7939 7140 #elementor-icons-manager__search i {
7940 7141 position: absolute;
7941 - inset-block-start: 50%;
7942 - inset-inline-end: 15px;
7142 + top: 50%;
7943 7143 transform: translateY(-50%);
7144 + right: 15px;
7944 7145 }
7945 7146 #elementor-icons-manager__tab__wrapper {
7946 7147 overflow: auto;
7947 7148 margin: 25px -15px 0;
@@ -8030,10 +7231,10 @@
8030 7231 content: "";
8031 7232 position: absolute;
8032 7233 height: 100%;
8033 7234 width: 3px;
8034 - inset-block-start: 0;
8035 - inset-inline-start: 0;
7235 + top: 0;
7236 + left: 0;
8036 7237 background-color: var(--e-a-border-color-accent);
8037 7238 }
8038 7239 .elementor-icons-manager__tab__item {
8039 7240 position: relative;
@@ -8058,11 +7259,11 @@
8058 7259 flex-direction: column;
8059 7260 align-items: center;
8060 7261 width: 100%;
8061 7262 position: absolute;
8062 - inset-block-start: 50%;
8063 - inset-inline-start: 50%;
8064 - transform: translate(calc(-50% * var(--direction-multiplier)), -50%);
7263 + top: 50%;
7264 + left: 50%;
7265 + transform: translate(-50%, -50%);
8065 7266 padding: 1px;
8066 7267 }
8067 7268 .elementor-icons-manager__tab__item__icon {
8068 7269 font-size: 25px;
@@ -8106,12 +7307,11 @@
8106 7307 }
8107 7308 .pickr .pcr-button:before, .pickr .pcr-button:after {
8108 7309 height: 12px;
8109 7310 width: 12px;
8110 - position: absolute;
8111 - inset-block-start: 50%;
8112 - inset-inline-start: 50%;
8113 - transform: translate(calc(-50% * var(--direction-multiplier)), -50%);
7311 + top: 50%;
7312 + left: 50%;
7313 + transform: translate(-50%, -50%);
8114 7314 }
8115 7315
8116 7316 .pcr-app {
8117 7317 background-color: var(--e-a-bg-default);
@@ -8251,9 +7451,9 @@
8251 7451 }
8252 7452
8253 7453 .select2-selection__arrow {
8254 7454 height: 27px;
8255 - inset-block-start: 0;
7455 + top: 0;
8256 7456 }
8257 7457
8258 7458 .select2-results__option[aria-selected=true] {
8259 7459 background-color: var(--e-a-bg-active);
@@ -8312,10 +7512,11 @@
8312 7512 padding: 0;
8313 7513 margin: 0;
8314 7514 height: 100px;
8315 7515 position: absolute;
8316 - inset-block-start: -60px;
8317 - inset-inline: 0;
7516 + top: -60px;
7517 + left: 0;
7518 + right: 0;
8318 7519 }
8319 7520 #elementor-paste-area-dialog #elementor-paste-area-dialog__input:focus {
8320 7521 border-color: transparent;
8321 7522 outline: none;
@@ -8342,22 +7543,18 @@
8342 7543 }
8343 7544
8344 7545 [class^=eicon-flex], [class*=" eicon-flex"] {
8345 7546 transition: 0.3s all;
7547 + --is-ltr: 1;
7548 + --is-rtl: 0;
7549 + --rotation-direction: calc(var(--is-ltr) - var(--is-rtl));
8346 7550 }
8347 7551 [class^=eicon-flex].eicon-inline, [class*=" eicon-flex"].eicon-inline {
8348 7552 max-height: 1em;
8349 7553 max-width: 1em;
8350 7554 }
8351 -[class^=eicon-flex], [class*=" eicon-flex"] {
8352 - --is-ltr: 1;
8353 - --is-rtl: 0;
8354 -}
8355 7555 [class^=eicon-flex]:is(.eicon-justify-start-h, .eicon-justify-end-h), [class*=" eicon-flex"]:is(.eicon-justify-start-h, .eicon-justify-end-h) {
8356 7556 --rotation-direction: calc(var(--is-ltr) + var(--is-rtl));
8357 -}
8358 -[class^=eicon-flex], [class*=" eicon-flex"] {
8359 - --rotation-direction: calc(var(--is-ltr) - var(--is-rtl));
8360 7557 }
8361 7558 :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) {
8362 7559 transform: rotate(calc(var(--rotation-direction) * 90deg));
8363 7560 }