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-beta3 4.3.0-beta2 4.3.0-beta1 4.2.4 4.2.3 4.2.2 4.2.1 4.2.0 4.1.5 4.2.0-beta2 4.2.0-dev2 4.2.0-beta1 4.1.4 4.1.3 4.1.2 4.1.1 4.1.0 4.1.0-beta3 4.1.0-dev3 4.0.9 4.1.0-beta2 4.1.0-dev2 4.0.8 4.1.0-beta1 4.1.0-dev1 All 452 releases
← All changes | assets/css/editor-rtl.css +225 -1021 4.1.0-dev23.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 + left: 0;
66 67 height: 100%;
67 68 width: 0;
68 69 background-color: var(--e-a-bg-default);
69 70 transition: width 0.5s;
@@ -73,16 +74,16 @@
73 74 }
74 75 body a:hover {
75 76 color: var(--e-a-color-primary-bold);
76 77 }
77 -body.elementor-editor-active #elementor-mode-switcher-preview i {
78 - scale: calc(1 * var(--direction-multiplier)) 1;
78 +body.elementor-editor-active #elementor-mode-switcher-preview .eicon:before {
79 + content: "\e89e";
79 80 }
80 81 body.elementor-editor-preview {
81 82 --e-preview-width: 100%;
82 83 }
83 -body.elementor-editor-preview #elementor-mode-switcher-preview i {
84 - scale: calc(-1 * var(--direction-multiplier)) 1;
84 +body.elementor-editor-preview #elementor-mode-switcher-preview .eicon:before {
85 + content: "\e89f";
85 86 }
86 87 body.elementor-navigator--dock-hint:after {
87 88 width: 30px;
88 89 }
@@ -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 + left: 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 + right: 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 + right: 8px;
1201 + left: 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 + right: 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 + left: 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 + left: 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 + left: 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 + left: 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: "\e909";
1874 1771 }
1875 1772
1876 1773 .elementor-panel-heading {
1877 1774 display: flex;
@@ -1973,13 +1870,11 @@
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 1874 .elementor-control-start-end .eicon-h-align-left,
1980 1875 .elementor-control-start-end .eicon-h-align-right {
1981 - scale: calc(1 * var(--direction-multiplier)) 1;
1876 + transform: rotate(180deg);
1982 1877 }
1983 1878
1984 1879 .elementor-update-preview {
1985 1880 margin: 15px 15px 0;
@@ -2016,9 +1911,9 @@
2016 1911 }
2017 1912 .elementor-control-responsive-switchers__holder {
2018 1913 position: absolute;
2019 1914 width: 100%;
2020 - inset-block-start: 0;
1915 + top: 0;
2021 1916 background-color: var(--e-a-bg-default);
2022 1917 border-radius: var(--e-a-border-radius);
2023 1918 transition: 0.15s;
2024 1919 border: 1px solid transparent;
@@ -2161,10 +2056,10 @@
2161 2056 display: none;
2162 2057 overflow: hidden;
2163 2058 max-height: 0;
2164 2059 position: absolute;
2165 - inset-block-start: -0.8em;
2166 - inset-inline-start: -0.5em;
2060 + top: -0.8em;
2061 + right: -0.5em;
2167 2062 width: 2.5em;
2168 2063 text-align: center;
2169 2064 background-color: var(--e-a-bg-default);
2170 2065 border-radius: var(--e-a-border-radius);
@@ -2339,9 +2234,9 @@
2339 2234 }
2340 2235 .elementor-control-responsive-switchers__holder {
2341 2236 position: absolute;
2342 2237 width: 100%;
2343 - inset-block-start: 0;
2238 + top: 0;
2344 2239 background-color: var(--e-a-bg-default);
2345 2240 border-radius: var(--e-a-border-radius);
2346 2241 transition: 0.15s;
2347 2242 border: 1px solid transparent;
@@ -2484,10 +2379,10 @@
2484 2379 display: none;
2485 2380 overflow: hidden;
2486 2381 max-height: 0;
2487 2382 position: absolute;
2488 - inset-block-start: -0.8em;
2489 - inset-inline-start: -0.5em;
2383 + top: -0.8em;
2384 + right: -0.5em;
2490 2385 width: 2.5em;
2491 2386 text-align: center;
2492 2387 background-color: var(--e-a-bg-default);
2493 2388 border-radius: var(--e-a-border-radius);
@@ -2617,9 +2512,9 @@
2617 2512 }
2618 2513 .elementor-control-responsive-switchers__holder {
2619 2514 position: absolute;
2620 2515 width: 100%;
2621 - inset-block-start: 0;
2516 + top: 0;
2622 2517 background-color: var(--e-a-bg-default);
2623 2518 border-radius: var(--e-a-border-radius);
2624 2519 transition: 0.15s;
2625 2520 border: 1px solid transparent;
@@ -2762,10 +2657,10 @@
2762 2657 display: none;
2763 2658 overflow: hidden;
2764 2659 max-height: 0;
2765 2660 position: absolute;
2766 - inset-block-start: -0.8em;
2767 - inset-inline-start: -0.5em;
2661 + top: -0.8em;
2662 + right: -0.5em;
2768 2663 width: 2.5em;
2769 2664 text-align: center;
2770 2665 background-color: var(--e-a-bg-default);
2771 2666 border-radius: var(--e-a-border-radius);
@@ -2885,11 +2780,11 @@
2885 2780 }
2886 2781
2887 2782 .elementor-control-type-icons .elementor-control-media__preview > * {
2888 2783 position: absolute;
2889 - inset-block-start: 50%;
2890 - inset-inline-start: 50%;
2891 - transform: translate(calc(-50% * var(--direction-multiplier)), -50%);
2784 + top: 50%;
2785 + left: 50%;
2786 + transform: translate(-50%, -50%);
2892 2787 }
2893 2788 .elementor-control-type-icons .elementor-control-media__preview i {
2894 2789 font-size: 70px;
2895 2790 }
@@ -2955,10 +2850,10 @@
2955 2850 opacity: 0;
2956 2851 }
2957 2852 .elementor-control-type-gallery .elementor-control-gallery-edit span {
2958 2853 position: absolute;
2959 - inset-block-start: 10px;
2960 - inset-inline-end: 10px;
2854 + top: 10px;
2855 + left: 10px;
2961 2856 width: 21px;
2962 2857 height: 21px;
2963 2858 color: var(--e-a-color-white);
2964 2859 background-color: rgba(0, 0, 0, 0.5);
@@ -3068,10 +2963,10 @@
3068 2963 }
3069 2964 .e-global__popover-info-tooltip:after {
3070 2965 content: "";
3071 2966 position: absolute;
3072 - inset-block-end: -17px;
3073 - inset-inline-start: 16px;
2967 + bottom: -17px;
2968 + right: 16px;
3074 2969 border: 10px solid transparent;
3075 2970 border-block-start-color: rgba(0, 0, 0, 0.9);
3076 2971 }
3077 2972 .e-global__popover-info i {
@@ -3088,19 +2983,8 @@
3088 2983 .e-global__preview-items-container::-webkit-scrollbar-thumb {
3089 2984 background-color: #BABFC5;
3090 2985 border-radius: 10px;
3091 2986 }
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 2987 .e-global__manage-button {
3104 2988 font-weight: 500;
3105 2989 cursor: pointer;
3106 2990 }
@@ -3116,9 +3000,9 @@
3116 3000 font-size: 13px;
3117 3001 content: "\e90e";
3118 3002 position: absolute;
3119 3003 transform: translateY(-50%);
3120 - inset-block-start: 50%;
3004 + top: 50%;
3121 3005 inset-inline-start: 13px;
3122 3006 }
3123 3007 .e-global__color {
3124 3008 padding: 10px 20px;
@@ -3259,11 +3143,11 @@
3259 3143 display: none;
3260 3144 }
3261 3145 .elementor-control-media .eicon-plus-circle {
3262 3146 position: absolute;
3263 - inset-block-start: 50%;
3264 - inset-inline-start: 50%;
3265 - transform: translate(calc(-50% * var(--direction-multiplier)), -50%);
3147 + top: 50%;
3148 + left: 50%;
3149 + transform: translate(-50%, -50%);
3266 3150 color: var(--e-a-color-white);
3267 3151 font-size: 20px;
3268 3152 }
3269 3153 .elementor-control-media__content__upload-button {
@@ -3286,11 +3170,11 @@
3286 3170 display: none;
3287 3171 }
3288 3172 .elementor-control-media-area .eicon-video-camera {
3289 3173 position: absolute;
3290 - inset-block-start: 50%;
3291 - inset-inline-start: 50%;
3292 - transform: translate(calc(-50% * var(--direction-multiplier)), -50%);
3174 + top: 50%;
3175 + left: 50%;
3176 + transform: translate(-50%, -50%);
3293 3177 color: rgba(255, 255, 255, 0.7);
3294 3178 font-size: 21px;
3295 3179 }
3296 3180 .elementor-control-media .elementor-control-media__content {
@@ -3306,9 +3190,9 @@
3306 3190 background-color: rgba(0, 0, 0, 0.2);
3307 3191 pointer-events: none;
3308 3192 }
3309 3193 .elementor-control-media .elementor-control-media__content:not(:hover) .elementor-control-media__tools {
3310 - inset-block-end: -30px;
3194 + bottom: -30px;
3311 3195 }
3312 3196 .elementor-control-media__content {
3313 3197 transition: all 0.2s ease-in-out;
3314 3198 }
@@ -3313,10 +3197,11 @@
3313 3197 transition: all 0.2s ease-in-out;
3314 3198 }
3315 3199 .elementor-control-media__tools {
3316 3200 position: absolute;
3317 - inset-block-end: 0;
3318 - inset-inline: 0;
3201 + bottom: 0;
3202 + left: 0;
3203 + right: 0;
3319 3204 height: 27px;
3320 3205 transition: all 0.2s ease-in-out;
3321 3206 }
3322 3207 .elementor-control-media__tools > *:not(:first-child) {
@@ -3343,10 +3228,10 @@
3343 3228 }
3344 3229 .elementor-control-media__content__remove {
3345 3230 position: absolute;
3346 3231 z-index: 1;
3347 - inset-block-start: 10px;
3348 - inset-inline-end: 10px;
3232 + top: 10px;
3233 + left: 10px;
3349 3234 width: 20px;
3350 3235 height: 20px;
3351 3236 font-size: 11px;
3352 3237 color: var(--e-a-color-white);
@@ -3687,11 +3572,11 @@
3687 3572 font-family: eicons;
3688 3573 content: "\e8ad";
3689 3574 font-size: 12px;
3690 3575 position: absolute;
3691 - inset-block-start: 50%;
3692 - inset-inline-end: 5px;
3576 + top: 50%;
3693 3577 transform: translateY(-50%);
3578 + left: 5px;
3694 3579 pointer-events: none;
3695 3580 }
3696 3581 .elementor-control-type-select .elementor-control-field.elementor-control-field-select-small .elementor-control-input-wrapper {
3697 3582 max-width: 80px;
@@ -3725,14 +3610,14 @@
3725 3610 }
3726 3611 .elementor-control-type-slider--handles-range .elementor-slider .noUi-handle {
3727 3612 border-radius: 0;
3728 3613 width: 10px;
3729 - transform: translateY(calc(50% - 14px)) translateX(calc(4px * var(--direction-multiplier)));
3614 + transform: translateY(calc(50% - 14px)) translateX(-4px);
3730 3615 }
3731 3616 .elementor-control-type-slider--handles-range .elementor-slider .noUi-handle:after {
3732 3617 content: "";
3733 3618 position: absolute;
3734 - inset-block-start: 2px;
3619 + top: 2px;
3735 3620 height: 12px;
3736 3621 width: 11px;
3737 3622 transform: rotate(45deg);
3738 3623 background-color: var(--e-a-color-white);
@@ -3809,11 +3694,11 @@
3809 3694 .elementor-slider .noUi-handle {
3810 3695 height: 16px;
3811 3696 width: 16px;
3812 3697 background-color: var(--e-a-color-white);
3698 + left: 0;
3699 + transform: translateY(calc(50% - 14px)) translateX(-8px);
3813 3700 position: absolute;
3814 - inset-inline-end: 0;
3815 - transform: translateY(calc(50% - 14px)) translateX(calc(8px * var(--direction-multiplier)));
3816 3701 box-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
3817 3702 border-radius: 50%;
3818 3703 }
3819 3704 .elementor-slider .noUi-connects {
@@ -3830,9 +3715,9 @@
3830 3715 background-color: var(--e-a-border-color-focus);
3831 3716 }
3832 3717 .elementor-slider .noUi-tooltip {
3833 3718 position: absolute;
3834 - inset-block-start: calc(100% + 5px);
3719 + top: calc(100% + 5px);
3835 3720 left: calc(50% - 4px);
3836 3721 transform: translateX(-50%);
3837 3722 font-size: 10px;
3838 3723 }
@@ -3919,9 +3804,9 @@
3919 3804 transition-property: opacity, background;
3920 3805 }
3921 3806 .elementor-control-type-switcher .elementor-switch-label:before, .elementor-control-type-switcher .elementor-switch-label:after {
3922 3807 position: absolute;
3923 - inset-block-start: 0;
3808 + top: 0;
3924 3809 width: 50%;
3925 3810 text-align: center;
3926 3811 line-height: 20px;
3927 3812 transition: inherit;
@@ -3927,14 +3812,14 @@
3927 3812 transition: inherit;
3928 3813 }
3929 3814 .elementor-control-type-switcher .elementor-switch-label:before {
3930 3815 content: attr(data-off);
3931 - inset-inline-end: 5px;
3816 + right: 5px;
3932 3817 color: var(--e-a-color-txt-muted);
3933 3818 }
3934 3819 .elementor-control-type-switcher .elementor-switch-label:after {
3935 3820 content: attr(data-on);
3936 - inset-inline-start: 5px;
3821 + left: 5px;
3937 3822 color: var(--e-a-btn-color);
3938 3823 opacity: 0;
3939 3824 }
3940 3825 .elementor-control-type-switcher .elementor-switch-input:checked ~ .elementor-switch-label {
@@ -3947,19 +3832,19 @@
3947 3832 opacity: 1;
3948 3833 }
3949 3834 .elementor-control-type-switcher .elementor-switch-handle {
3950 3835 position: absolute;
3951 - inset-block-start: 1px;
3952 - inset-inline-start: 1px;
3836 + top: 1px;
3837 + left: 1px;
3953 3838 width: 18px;
3954 3839 height: 18px;
3955 3840 background: white;
3956 3841 border-radius: 10px;
3957 - transition: inset-inline-start 0.15s ease-out;
3842 + transition: left 0.15s ease-out;
3958 3843 }
3959 3844 .elementor-control-type-switcher .elementor-switch-input:checked ~ .elementor-switch-handle {
3960 - inset-inline-start: initial;
3961 - inset-inline-end: 1px;
3845 + left: initial;
3846 + right: 1px;
3962 3847 }
3963 3848
3964 3849 .elementor-control-type-tabs {
3965 3850 display: none;
@@ -4011,10 +3896,10 @@
4011 3896 }
4012 3897 .elementor-control-type-textarea:not(.elementor-control-dynamic-value) .elementor-control-dynamic-switcher,
4013 3898 .elementor-control-type-code:not(.elementor-control-dynamic-value) .elementor-control-dynamic-switcher {
4014 3899 position: absolute;
4015 - inset-block-start: 0;
4016 - inset-inline-end: 0;
3900 + top: 0;
3901 + left: 0;
4017 3902 z-index: 1;
4018 3903 }
4019 3904 .elementor-control-type-textarea .elementor-control-input-wrapper,
4020 3905 .elementor-control-type-code .elementor-control-input-wrapper {
@@ -4092,10 +3977,10 @@
4092 3977 }
4093 3978 .elementor-control-type-url .elementor-control-url-autocomplete-spinner {
4094 3979 display: none;
4095 3980 position: absolute;
4096 - inset-block-start: 5px;
4097 - inset-inline-end: 0;
3981 + top: 5px;
3982 + right: 0;
4098 3983 width: 10px;
4099 3984 height: 10px;
4100 3985 font-size: 10px;
4101 3986 color: var(--e-a-color-txt-disabled);
@@ -4174,9 +4059,8 @@
4174 4059 font-size: 12px;
4175 4060 transition: var(--e-a-transition-hover);
4176 4061 cursor: pointer;
4177 4062 overflow: hidden;
4178 - width: 100%;
4179 4063 padding: 8px;
4180 4064 }
4181 4065 .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 4066 background-color: var(--e-a-bg-active-bold);
@@ -4359,13 +4243,13 @@
4359 4243 --e-a-mode-switcher-width: 15px;
4360 4244 --e-a-mode-switcher-height: 50px;
4361 4245 --e-a-mode-switcher-icon-size: 15px;
4362 4246 position: absolute;
4363 - inset-block-start: 50%;
4364 - inset-inline-start: 100%;
4247 + right: 100%;
4248 + top: 50%;
4365 4249 transform: translateY(-50%);
4366 4250 background-color: var(--e-a-bg-default);
4367 - box-shadow: calc(3px * var(--direction-multiplier, 1)) 1px 3px rgba(0, 0, 0, 0.05);
4251 + box-shadow: -3px 1px 3px rgba(0, 0, 0, 0.05);
4368 4252 transition: 0.3s opacity;
4369 4253 }
4370 4254 #elementor-mode-switcher:hover {
4371 4255 background-color: var(--e-a-bg-hover);
@@ -4435,11 +4319,11 @@
4435 4319 }
4436 4320
4437 4321 #elementor-panel-revisions-loading {
4438 4322 position: absolute;
4439 - inset-block-start: 50%;
4440 - inset-inline-start: 50%;
4441 - transform: translate(calc(-50% * var(--direction-multiplier)), -50%);
4323 + top: 50%;
4324 + left: 50%;
4325 + transform: translate(-50%, -50%);
4442 4326 }
4443 4327 #elementor-panel-revisions-loading .eicon-loading {
4444 4328 font-size: 50px;
4445 4329 }
@@ -4667,13 +4551,13 @@
4667 4551 }
4668 4552 .elementor-control-type-global-style-repeater .elementor-controls-popover {
4669 4553 align-self: end;
4670 4554 margin-block-start: 35px;
4671 - inset-block-start: 0;
4555 + top: 0;
4672 4556 width: 100%;
4673 4557 }
4674 4558 .elementor-control-type-global-style-repeater .elementor-controls-popover:before {
4675 - inset-inline-end: 5px;
4559 + left: 5px;
4676 4560 }
4677 4561 .elementor-control-type-global-style-repeater .elementor-controls-popover .elementor-control {
4678 4562 padding: 0 20px 15px;
4679 4563 }
@@ -5098,20 +4982,8 @@
5098 4982 background-color: #fff;
5099 4983 box-shadow: 0 0 3px rgba(0, 0, 0, 0.3), 0 0 20px rgba(0, 0, 0, 0.15);
5100 4984 }
5101 4985
5102 -#elementor-template-library-modal button:focus-visible,
5103 -#elementor-template-library-modal a:focus-visible,
5104 -#elementor-template-library-modal input:focus-visible,
5105 -#elementor-template-library-modal select:focus-visible,
5106 -#elementor-template-library-modal [tabindex="0"]:focus-visible,
5107 -#elementor-template-library-modal [role=tab]:focus-visible,
5108 -#elementor-template-library-modal [role=radio]:focus-visible,
5109 -#elementor-template-library-modal [role=menuitem]:focus-visible {
5110 - outline: 2px solid var(--e-a-border-color-focus);
5111 - outline-offset: 2px;
5112 - border-radius: 2px;
5113 -}
5114 4986 #elementor-template-library-modal a.elementor-template-library-blank-footer-link {
5115 4987 font-style: normal;
5116 4988 text-decoration: underline;
5117 4989 }
@@ -5123,9 +4995,9 @@
5123 4995 }
5124 4996 #elementor-template-library-modal .dialog-message {
5125 4997 overflow-y: scroll;
5126 4998 }
5127 -#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 {
4999 +#elementor-template-library-modal:has(#elementor-template-library-save-template) .dialog-message {
5128 5000 overflow-y: hidden;
5129 5001 }
5130 5002 #elementor-template-library-modal .e-back-to-editor {
5131 5003 color: var(--e-a-color-txt);
@@ -5142,21 +5014,14 @@
5142 5014 display: inline-block;
5143 5015 padding: 17px 20px;
5144 5016 border-block-end: 3px solid transparent;
5145 5017 cursor: pointer;
5146 - background: transparent;
5147 - margin: 0;
5148 - font-size: inherit;
5149 - font-family: inherit;
5150 - color: inherit;
5151 - border: none;
5152 5018 }
5153 5019 .elementor-template-library-menu-item:hover {
5154 5020 background-color: var(--e-a-bg-hover);
5155 5021 border-color: var(--e-a-bg-hover);
5156 5022 }
5157 -.elementor-template-library-menu-item.elementor-active, .elementor-template-library-menu-item[aria-selected=true] {
5158 - border-block-end: 3px solid;
5023 +.elementor-template-library-menu-item.elementor-active {
5159 5024 border-color: var(--e-a-border-color-accent);
5160 5025 color: var(--e-a-color-txt-accent);
5161 5026 }
5162 5027
@@ -5162,25 +5027,11 @@
5162 5027
5163 5028 #elementor-template-library-header-actions {
5164 5029 display: flex;
5165 5030 }
5166 -#elementor-template-library-header-actions > div,
5167 -#elementor-template-library-header-actions > button {
5168 - background: transparent;
5169 - margin: 0;
5170 - font-size: inherit;
5171 - font-family: inherit;
5172 - color: inherit;
5173 - border: none;
5031 +#elementor-template-library-header-actions > div {
5174 5032 padding-inline-end: 16px;
5175 - cursor: pointer;
5176 5033 }
5177 -#elementor-template-library-header-actions > div:focus-visible,
5178 -#elementor-template-library-header-actions > button:focus-visible {
5179 - outline: 2px solid var(--e-a-border-color-focus);
5180 - outline-offset: -2px;
5181 - border-radius: 2px;
5182 -}
5183 5034
5184 5035 #elementor-template-library-header-tools.e-hidden-disabled {
5185 5036 opacity: 0;
5186 5037 visibility: hidden;
@@ -5195,9 +5046,8 @@
5195 5046 margin-inline-start: 4px;
5196 5047 }
5197 5048
5198 5049 #elementor-template-library-header-preview-back {
5199 - gap: 10px;
5200 5050 padding-block: 16.5px 15px;
5201 5051 padding-inline: 0 16.5px;
5202 5052 border-inline-end: var(--e-a-border);
5203 5053 cursor: pointer;
@@ -5202,32 +5052,18 @@
5202 5052 border-inline-end: var(--e-a-border);
5203 5053 cursor: pointer;
5204 5054 transition: color 0.5s;
5205 5055 }
5206 -#elementor-template-library-header-preview-back .elementor-template-library-header-back-button {
5207 - background: transparent;
5208 - margin: 0;
5209 - font-size: inherit;
5210 - font-family: inherit;
5211 - color: inherit;
5212 - border: none;
5213 - display: flex;
5214 - align-items: center;
5215 - gap: 10px;
5216 - cursor: pointer;
5217 -}
5218 -#elementor-template-library-header-preview-back .elementor-template-library-header-back-button:focus-visible {
5219 - outline: 2px solid var(--e-a-border-color-focus);
5220 - outline-offset: 2px;
5221 - border-radius: 2px;
5222 -}
5223 5056 #elementor-template-library-header-preview-back:hover {
5224 5057 color: var(--e-a-color-txt-hover);
5225 5058 }
5226 5059 #elementor-template-library-header-preview-back i {
5060 + padding-inline-end: 10px;
5227 5061 font-size: 18px;
5228 - scale: calc(1 * var(--direction-multiplier)) 1;
5229 5062 }
5063 +#elementor-template-library-header-preview-back i:before {
5064 + content: "\e87d";
5065 +}
5230 5066
5231 5067 #elementor-template-library-templates {
5232 5068 display: flex;
5233 5069 flex-direction: column;
@@ -5253,20 +5089,15 @@
5253 5089 }
5254 5090 #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 {
5255 5091 display: flex;
5256 5092 align-items: baseline;
5257 - border-radius: 3px;
5258 5093 }
5259 -#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 {
5260 - outline: 2px solid var(--e-a-border-color-focus);
5261 - outline-offset: 2px;
5262 -}
5263 5094 #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 {
5264 5095 align-items: center;
5265 5096 }
5266 5097 #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 {
5267 5098 font-size: 14px;
5268 - margin-inline-start: 5px;
5099 + margin-left: 5px;
5269 5100 }
5270 5101 #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 {
5271 5102 width: 200px;
5272 5103 margin: 0px 10px;
@@ -5365,14 +5196,8 @@
5365 5196 align-items: center;
5366 5197 gap: 8px;
5367 5198 }
5368 5199 #elementor-template-library-templates .elementor-template-library-filter-toolbar-side-actions .elementor-template-library-action-item {
5369 - background: transparent;
5370 - margin: 0;
5371 - font-size: inherit;
5372 - font-family: inherit;
5373 - color: inherit;
5374 - border: none;
5375 5200 cursor: pointer;
5376 5201 font-size: 20px;
5377 5202 padding: 0 5px;
5378 5203 border-radius: 2px;
@@ -5412,19 +5237,15 @@
5412 5237 padding: 8px;
5413 5238 border: var(--e-a-border);
5414 5239 border-radius: 3px;
5415 5240 }
5416 -#elementor-template-library-templates[data-template-view=grid] #elementor-template-library-templates-container .elementor-template-library-template-view-grid:focus-visible {
5417 - outline: 2px solid var(--e-a-border-color-focus);
5418 - outline-offset: 2px;
5419 -}
5420 -#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 {
5241 +#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 {
5421 5242 display: flex;
5422 5243 }
5423 -#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 {
5244 +#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 {
5424 5245 display: none;
5425 5246 }
5426 -#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 {
5247 +#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 {
5427 5248 display: flex !important;
5428 5249 }
5429 5250 #elementor-template-library-templates[data-template-view=grid] #elementor-template-library-templates-container .elementor-template-library-template-view-grid .elementor-template-library-template-thumbnail {
5430 5251 width: 190px;
@@ -5430,14 +5251,14 @@
5430 5251 width: 190px;
5431 5252 height: 100px;
5432 5253 position: relative;
5433 5254 border-radius: 3px;
5434 - margin-block-end: 4px;
5255 + margin-bottom: 4px;
5435 5256 overflow: hidden;
5436 5257 }
5437 5258 #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 {
5438 - -o-object-fit: contain;
5439 - object-fit: contain;
5259 + -o-object-fit: cover;
5260 + object-fit: cover;
5440 5261 width: 100%;
5441 5262 height: 100%;
5442 5263 }
5443 5264 #elementor-template-library-templates[data-template-view=grid] #elementor-template-library-templates-container .elementor-template-library-template-view-grid .elementor-template-library-template-preview {
@@ -5519,29 +5340,16 @@
5519 5340 gap: 20px;
5520 5341 align-items: center;
5521 5342 flex: 1;
5522 5343 }
5523 -#elementor-template-library-templates .bulk-selection-action-bar button {
5524 - background: transparent;
5525 - margin: 0;
5526 - font-size: inherit;
5527 - font-family: inherit;
5528 - color: inherit;
5529 - border: none;
5344 +#elementor-template-library-templates .bulk-selection-action-bar i {
5530 5345 cursor: pointer;
5531 - display: flex;
5532 - align-items: center;
5533 - justify-content: center;
5346 + font-size: 18px;
5534 5347 }
5535 -#elementor-template-library-templates .bulk-selection-action-bar button.disabled {
5348 +#elementor-template-library-templates .bulk-selection-action-bar i.disabled {
5536 5349 pointer-events: none;
5537 5350 opacity: 0.3;
5538 - cursor: not-allowed;
5539 5351 }
5540 -#elementor-template-library-templates .bulk-selection-action-bar i {
5541 - cursor: pointer;
5542 - font-size: 18px;
5543 -}
5544 5352 #elementor-template-library-templates .bulk-selection-action-bar .eicon-editor-close {
5545 5353 font-size: 20px;
5546 5354 }
5547 5355 #elementor-template-library-templates #elementor-template-library-navigation-container {
@@ -5577,12 +5385,12 @@
5577 5385 background: var(--e-a-bg-active);
5578 5386 }
5579 5387 #elementor-template-library-templates .elementor-template-library-local-column-1 input[type=checkbox] {
5580 5388 position: relative;
5581 - inset-block-start: 3px;
5389 + top: 3px;
5582 5390 }
5583 5391 #elementor-template-library-templates .elementor-template-library-local-column-1 input[type=checkbox]:checked {
5584 - inset-block-start: 0px;
5392 + top: 0px;
5585 5393 }
5586 5394 #elementor-template-library-templates .bulk-selection-item-checkbox:checked,
5587 5395 #elementor-template-library-templates #bulk-select-all:checked {
5588 5396 background: #69727D;
@@ -5623,11 +5431,11 @@
5623 5431 .elementor-template-library-filter-select-source .source-option i {
5624 5432 margin-inline-end: 5px;
5625 5433 }
5626 5434 .elementor-template-library-filter-select-source .source-option .new-badge {
5627 - border: 1px solid var(--e-a-color-primary-bold-dark);
5435 + border: 1px solid var(--e-a-color-primary-bold);
5628 5436 padding: 2px 4px;
5629 - color: var(--e-a-color-primary-bold-dark);
5437 + color: var(--e-a-color-primary-bold);
5630 5438 border-radius: 10px;
5631 5439 font-size: 10px;
5632 5440 margin-inline-start: 5px;
5633 5441 }
@@ -5634,52 +5442,8 @@
5634 5442 .elementor-template-library-filter-select-source .source-option.selected, .elementor-template-library-filter-select-source .source-option:hover {
5635 5443 background-color: var(--e-a-bg-hover);
5636 5444 }
5637 5445
5638 -#elementor-template-library-connect-states .elementor-template-library-filter-toolbar {
5639 - display: flex;
5640 - align-items: center;
5641 - justify-content: space-between;
5642 -}
5643 -
5644 -#elementor-template-library-toolbar .source-option-badge,
5645 -.elementor-template-library-connect-states-badge .source-option-badge {
5646 - display: flex;
5647 - align-items: center;
5648 - gap: 6px;
5649 - padding: 6px 12px;
5650 - border: none;
5651 - border-radius: 20px;
5652 - font-size: 14px;
5653 - font-weight: 500;
5654 - white-space: nowrap;
5655 - margin-inline-start: auto;
5656 - margin-inline-end: 15px;
5657 -}
5658 -#elementor-template-library-toolbar .source-option-badge i,
5659 -.elementor-template-library-connect-states-badge .source-option-badge i {
5660 - margin: 0;
5661 - font-size: 14px;
5662 -}
5663 -#elementor-template-library-toolbar .source-option-badge.cloud-badge,
5664 -.elementor-template-library-connect-states-badge .source-option-badge.cloud-badge {
5665 - background-color: var(--e-a-bg-info);
5666 - color: var(--e-a-color-info);
5667 -}
5668 -#elementor-template-library-toolbar .source-option-badge.cloud-badge i,
5669 -.elementor-template-library-connect-states-badge .source-option-badge.cloud-badge i {
5670 - color: var(--e-a-color-info);
5671 -}
5672 -#elementor-template-library-toolbar .source-option-badge.site-badge,
5673 -.elementor-template-library-connect-states-badge .source-option-badge.site-badge {
5674 - background-color: var(--e-a-bg-warning);
5675 - color: var(--e-a-btn-bg-warning-hover);
5676 -}
5677 -#elementor-template-library-toolbar .source-option-badge.site-badge i,
5678 -.elementor-template-library-connect-states-badge .source-option-badge.site-badge i {
5679 - color: var(--e-a-btn-bg-warning-hover);
5680 -}
5681 -
5682 5446 #elementor-template-library-filter-toolbar-remote {
5683 5447 font-size: 11px;
5684 5448 }
5685 5449
@@ -5754,9 +5518,9 @@
5754 5518 content: "\e923";
5755 5519 }
5756 5520
5757 5521 #elementor-template-library-create-new-folder-dialog .elementor-create-folder-template-dialog__p {
5758 - margin-block-end: 10px;
5522 + margin-bottom: 10px;
5759 5523 }
5760 5524
5761 5525 #elementor-template-library-filter-text-wrapper {
5762 5526 width: 200px;
@@ -5763,14 +5527,14 @@
5763 5527 position: relative;
5764 5528 }
5765 5529 #elementor-template-library-filter-text-wrapper i {
5766 5530 position: absolute;
5767 - inset-block-start: 50%;
5768 - inset-inline-end: 0;
5531 + top: 50%;
5532 + left: 0;
5769 5533 transform: translateY(-50%);
5770 5534 }
5771 5535 #elementor-template-library-filter-text-wrapper i.eicon-loading.eicon-animation-spin {
5772 - inset-block-start: 25%;
5536 + top: 25%;
5773 5537 }
5774 5538
5775 5539 #elementor-template-library-filter-text {
5776 5540 border: none;
@@ -5797,32 +5561,19 @@
5797 5561 padding: 8px;
5798 5562 border: var(--e-a-border);
5799 5563 border-radius: 3px;
5800 5564 }
5801 -.elementor-template-library-template-remote:focus-visible {
5802 - outline: 2px solid var(--e-a-border-color-focus);
5803 - outline-offset: 2px;
5804 -}
5805 -.elementor-template-library-template-remote:hover, .elementor-template-library-template-remote:focus, .elementor-template-library-template-remote:focus-within {
5565 +.elementor-template-library-template-remote:hover {
5806 5566 background-color: var(--e-a-bg-hover);
5807 5567 }
5808 -.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 {
5809 - opacity: 1;
5810 -}
5811 -.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 {
5568 +.elementor-template-library-template-remote:hover .elementor-template-library-template-name {
5812 5569 display: none;
5813 5570 }
5814 -.elementor-template-library-template-remote:hover .elementor-template-library-favorite,
5815 -.elementor-template-library-template-remote:hover .elementor-template-library-template-action, .elementor-template-library-template-remote:focus .elementor-template-library-favorite,
5816 -.elementor-template-library-template-remote:focus .elementor-template-library-template-action, .elementor-template-library-template-remote:focus-within .elementor-template-library-favorite,
5817 -.elementor-template-library-template-remote:focus-within .elementor-template-library-template-action {
5818 - display: initial;
5819 -}
5820 -.elementor-template-library-template-remote:not(:hover):not(:focus):not(:focus-within) .elementor-template-library-template-preview {
5571 +.elementor-template-library-template-remote:not(:hover) .elementor-template-library-template-preview {
5821 5572 opacity: 0;
5822 5573 }
5823 -.elementor-template-library-template-remote:not(:hover):not(:focus):not(:focus-within) .elementor-template-library-favorite,
5824 -.elementor-template-library-template-remote:not(:hover):not(:focus):not(:focus-within) .elementor-template-library-template-action {
5574 +.elementor-template-library-template-remote:not(:hover) .elementor-template-library-favorite,
5575 +.elementor-template-library-template-remote:not(:hover) .elementor-template-library-template-action {
5825 5576 display: none;
5826 5577 }
5827 5578 .elementor-template-library-template-remote.elementor-template-library-pro-template .elementor-template-library-template-body:before {
5828 5579 content: var(--elementor-template-library-subscription-plan-label);
@@ -5830,10 +5581,10 @@
5830 5581 color: var(--e-a-color-white);
5831 5582 position: absolute;
5832 5583 text-transform: uppercase;
5833 5584 line-height: 1;
5834 - inset-block-start: 5px;
5835 - inset-inline-end: 5px;
5585 + top: 5px;
5586 + left: 5px;
5836 5587 padding: 3px 5px;
5837 5588 font-size: 8px;
5838 5589 border-radius: 2px;
5839 5590 }
@@ -5848,10 +5599,10 @@
5848 5599 }
5849 5600 .elementor-template-library-template-remote:not(.elementor-template-library-template-page):not(.elementor-template-library-template-lp) .elementor-template-library-template-footer {
5850 5601 position: absolute;
5851 5602 width: 100%;
5852 - inset-block-end: 0;
5853 - inset-inline-start: 0;
5603 + bottom: 0;
5604 + right: 0;
5854 5605 padding: 10px;
5855 5606 background-color: var(--e-a-bg-default);
5856 5607 transition: transform 0.5s;
5857 5608 }
@@ -5857,9 +5608,9 @@
5857 5608 }
5858 5609 .elementor-template-library-template-remote:not(.elementor-template-library-template-page):not(.elementor-template-library-template-lp) .elementor-template-library-template-name {
5859 5610 display: none;
5860 5611 }
5861 -.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 {
5612 +.elementor-template-library-template-remote:not(.elementor-template-library-template-page):not(.elementor-template-library-template-lp):not(:hover) .elementor-template-library-template-footer {
5862 5613 transform: translateY(100%);
5863 5614 }
5864 5615 .elementor-template-library-template-remote .elementor-template-library-template-body {
5865 5616 position: relative;
@@ -5884,11 +5635,11 @@
5884 5635 }
5885 5636 .elementor-template-library-template-remote .elementor-template-library-template-preview i {
5886 5637 font-size: 20px;
5887 5638 position: absolute;
5888 - inset-block-start: 50%;
5889 - inset-inline-start: 50%;
5890 - transform: translate(calc(-50% * var(--direction-multiplier)), -50%);
5639 + top: 50%;
5640 + left: 50%;
5641 + transform: translate(-50%, -50%);
5891 5642 }
5892 5643 .elementor-template-library-template-remote .elementor-template-library-template-footer {
5893 5644 display: flex;
5894 5645 justify-content: space-between;
@@ -5908,22 +5659,10 @@
5908 5659 .elementor-template-library-template-remote .elementor-template-library-favorite {
5909 5660 margin-inline-start: auto;
5910 5661 }
5911 5662 .elementor-template-library-template-remote .elementor-template-library-template-favorite-input {
5912 - position: absolute;
5913 - width: 1px;
5914 - height: 1px;
5915 - padding: 0;
5916 - margin: -1px;
5917 - overflow: hidden;
5918 - clip: rect(0, 0, 0, 0);
5919 - white-space: nowrap;
5920 - border: 0;
5663 + display: none;
5921 5664 }
5922 -.elementor-template-library-template-remote .elementor-template-library-template-favorite-input:focus-visible + .elementor-template-library-template-favorite-label {
5923 - outline: 2px solid var(--e-a-border-color-focus);
5924 - outline-offset: 2px;
5925 -}
5926 5665 .elementor-template-library-template-remote .elementor-template-library-template-favorite-input:checked + .elementor-template-library-template-favorite-label i:before {
5927 5666 content: "\e93f";
5928 5667 color: var(--e-a-color-primary-bold);
5929 5668 }
@@ -6039,25 +5778,14 @@
6039 5778 position: absolute;
6040 5779 background-color: var(--e-a-bg-default);
6041 5780 border-radius: var(--e-a-border-radius);
6042 5781 box-shadow: 1px 3px 11px rgba(0, 0, 0, 0.3);
6043 - inset-block-start: 100%;
6044 - inset-inline-end: 0;
5782 + top: 100%;
5783 + left: 0;
6045 5784 z-index: 1;
6046 - list-style: none;
6047 - margin: 0;
6048 - padding: 0;
6049 5785 }
6050 -.elementor-template-library-template-local .elementor-template-library-template-more > li button,
6051 -.elementor-template-library-template-local .elementor-template-library-template-more > li a,
6052 -.elementor-template-library-template-cloud .elementor-template-library-template-more > li button,
6053 -.elementor-template-library-template-cloud .elementor-template-library-template-more > li a {
6054 - background: transparent;
6055 - margin: 0;
6056 - font-size: inherit;
6057 - font-family: inherit;
6058 - color: inherit;
6059 - border: none;
5786 +.elementor-template-library-template-local .elementor-template-library-template-more > div,
5787 +.elementor-template-library-template-cloud .elementor-template-library-template-more > div {
6060 5788 padding: 10px 20px;
6061 5789 font-size: 11px;
6062 5790 cursor: pointer;
6063 5791 display: flex;
@@ -6062,21 +5790,25 @@
6062 5790 cursor: pointer;
6063 5791 display: flex;
6064 5792 align-items: center;
6065 5793 gap: 8px;
6066 - width: 100%;
6067 5794 }
6068 -.elementor-template-library-template-local .elementor-template-library-template-more > li button.disabled,
6069 -.elementor-template-library-template-local .elementor-template-library-template-more > li a.disabled,
6070 -.elementor-template-library-template-cloud .elementor-template-library-template-more > li button.disabled,
6071 -.elementor-template-library-template-cloud .elementor-template-library-template-more > li a.disabled {
5795 +.elementor-template-library-template-local .elementor-template-library-template-more > div.disabled,
5796 +.elementor-template-library-template-cloud .elementor-template-library-template-more > div.disabled {
6072 5797 cursor: not-allowed;
6073 5798 color: var(--e-a-color-txt-disabled);
6074 5799 }
6075 -.elementor-template-library-template-local .elementor-template-library-template-more > li a,
6076 -.elementor-template-library-template-cloud .elementor-template-library-template-more > li a {
5800 +.elementor-template-library-template-local .elementor-template-library-template-more > div.disabled a,
5801 +.elementor-template-library-template-cloud .elementor-template-library-template-more > div.disabled a {
5802 + color: var(--e-a-color-txt-disabled);
5803 + cursor: not-allowed;
5804 +}
5805 +.elementor-template-library-template-local .elementor-template-library-template-more a,
5806 +.elementor-template-library-template-cloud .elementor-template-library-template-more a {
6077 5807 color: var(--e-a-color-txt);
6078 - text-decoration: none;
5808 + display: flex;
5809 + align-items: center;
5810 + gap: 8px;
6079 5811 }
6080 5812 .elementor-template-library-template-local .elementor-template-library-template-more .elementor-template-library-template-delete,
6081 5813 .elementor-template-library-template-cloud .elementor-template-library-template-more .elementor-template-library-template-delete {
6082 5814 color: var(--e-a-color-danger);
@@ -6088,14 +5820,8 @@
6088 5820 .elementor-template-library-template-local .elementor-template-library-template-more-toggle,
6089 5821 .elementor-template-library-template-cloud .elementor-template-library-template-more-toggle {
6090 5822 margin-inline-start: auto;
6091 5823 cursor: pointer;
6092 - background: none;
6093 - border: none;
6094 - padding: 0;
6095 - display: flex;
6096 - align-items: center;
6097 - justify-content: center;
6098 5824 }
6099 5825 .elementor-template-library-template-local .elementor-template-library-template-more-toggle i,
6100 5826 .elementor-template-library-template-cloud .elementor-template-library-template-more-toggle i {
6101 5827 font-size: 20px;
@@ -6162,11 +5888,9 @@
6162 5888 display: flex;
6163 5889 align-items: center;
6164 5890 }
6165 5891 .elementor-template-library-template-local .elementor-template-library-template-controls > div,
6166 -.elementor-template-library-template-local .elementor-template-library-template-controls > button,
6167 -.elementor-template-library-template-cloud:not(.elementor-template-library-template-view-grid) .elementor-template-library-template-controls > div,
6168 -.elementor-template-library-template-cloud:not(.elementor-template-library-template-view-grid) .elementor-template-library-template-controls > button {
5892 +.elementor-template-library-template-cloud:not(.elementor-template-library-template-view-grid) .elementor-template-library-template-controls > div {
6169 5893 cursor: pointer;
6170 5894 transition: color 0.5s;
6171 5895 }
6172 5896 .elementor-template-library-template-local .elementor-template-library-template-insert.disabled,
@@ -6188,9 +5912,9 @@
6188 5912 overflow: hidden;
6189 5913 }
6190 5914 #elementor-template-library-preview iframe {
6191 5915 height: 150%;
6192 - transform: scale(0.666) translateX(calc(-25% * var(--direction-multiplier))) translateY(-25%);
5916 + transform: scale(0.666) translateX(25%) translateY(-25%);
6193 5917 }
6194 5918 @media (max-width: 1439px) {
6195 5919 #elementor-template-library-preview iframe {
6196 5920 width: 1440px;
@@ -6251,18 +5975,18 @@
6251 5975 #elementor-template-library-save-template-form > * {
6252 5976 height: 55px;
6253 5977 font-size: 16px;
6254 5978 }
5979 +#elementor-template-library-save-template-form .cloud-library-form-inputs {
5980 + display: block;
5981 + width: 500px;
5982 + margin: 0 auto;
5983 +}
6255 5984 #elementor-template-library-save-template-form .cloud-library-form-inputs > * {
6256 5985 height: 55px;
6257 5986 font-size: 16px;
6258 5987 margin-block-end: 15px;
6259 5988 }
6260 -#elementor-template-library-save-template-form .cloud-library-form-inputs {
6261 - display: block;
6262 - width: 500px;
6263 - margin: 0 auto;
6264 -}
6265 5989 #elementor-template-library-save-template-form .cloud-library-form-inputs .upgrade-tooltip,
6266 5990 #elementor-template-library-save-template-form .cloud-library-form-inputs .connect-badge {
6267 5991 display: none;
6268 5992 }
@@ -6288,24 +6012,15 @@
6288 6012 #elementor-template-library-save-template-form .cloud-library-form-inputs .ellipsis-container {
6289 6013 display: inline;
6290 6014 background: var(--e-a-bg-hover);
6291 6015 padding: 0 2px 1px;
6292 - border: none;
6293 6016 border-radius: 2px;
6294 6017 vertical-align: bottom;
6295 6018 cursor: pointer;
6296 - font-family: inherit;
6297 - font-size: inherit;
6298 - color: inherit;
6299 - line-height: inherit;
6300 6019 }
6301 6020 #elementor-template-library-save-template-form .cloud-library-form-inputs .ellipsis-container:hover {
6302 6021 background: var(--e-a-bg-active);
6303 6022 }
6304 -#elementor-template-library-save-template-form .cloud-library-form-inputs .ellipsis-container:focus-visible {
6305 - outline: 2px solid var(--e-a-border-color-focus);
6306 - outline-offset: 2px;
6307 -}
6308 6023 #elementor-template-library-save-template-form .cloud-library-form-inputs.promotion .upgrade-tooltip,
6309 6024 #elementor-template-library-save-template-form .cloud-library-form-inputs.promotion .connect-badge,
6310 6025 #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,
6311 6026 #elementor-template-library-save-template-form .cloud-library-form-inputs.max-capacity .connect-badge,
@@ -6358,9 +6073,9 @@
6358 6073 position: relative;
6359 6074 }
6360 6075 #elementor-template-library-save-template-form .cloud-library-form-inputs .source-selections input[type=checkbox]:checked {
6361 6076 background: #69727D;
6362 - inset-block-start: -3px;
6077 + top: -3px;
6363 6078 position: relative;
6364 6079 }
6365 6080 #elementor-template-library-save-template-form .cloud-library-form-inputs .source-selections-input {
6366 6081 position: relative;
@@ -6369,22 +6084,18 @@
6369 6084 #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 {
6370 6085 white-space: nowrap;
6371 6086 text-overflow: ellipsis;
6372 6087 overflow: hidden;
6373 - overflow: visible;
6374 - display: inline-flex;
6375 - align-items: baseline;
6376 6088 line-height: 27px;
6377 6089 }
6378 6090 #elementor-template-library-save-template-form .cloud-library-form-inputs .source-selections-input #cloud,
6379 6091 #elementor-template-library-save-template-form .cloud-library-form-inputs .source-selections-input #local {
6380 - flex-shrink: 0;
6381 6092 position: relative;
6382 - inset-block-start: 2px;
6093 + top: 2px;
6383 6094 }
6384 6095 #elementor-template-library-save-template-form .cloud-library-form-inputs .source-selections-input #cloud:checked,
6385 6096 #elementor-template-library-save-template-form .cloud-library-form-inputs .source-selections-input #local:checked {
6386 - inset-block-start: -2px;
6097 + top: -2px;
6387 6098 }
6388 6099 #elementor-template-library-save-template-form .cloud-library-form-inputs .source-selections-input .eicon-ellipsis-h {
6389 6100 vertical-align: bottom;
6390 6101 }
@@ -6395,26 +6106,15 @@
6395 6106 }
6396 6107 #elementor-template-library-save-template-form .cloud-library-form-inputs .source-selections-input .selected-folder {
6397 6108 display: none;
6398 6109 margin-inline-end: 5px;
6399 - align-items: baseline;
6400 - white-space: nowrap;
6401 - text-overflow: ellipsis;
6402 - overflow: hidden;
6403 6110 }
6404 -#elementor-template-library-save-template-form .cloud-library-form-inputs .source-selections-input .selected-folder[style*="display: inline"] {
6405 - display: inline-flex !important;
6406 -}
6407 6111 #elementor-template-library-save-template-form .cloud-library-form-inputs .source-selections-input .selected-folder-text {
6408 6112 text-decoration: underline;
6409 6113 cursor: pointer;
6410 - white-space: nowrap;
6411 - text-overflow: ellipsis;
6412 - overflow: hidden;
6413 6114 }
6414 6115 #elementor-template-library-save-template-form .cloud-library-form-inputs .source-selections-input .eicon-editor-close {
6415 6116 cursor: pointer;
6416 - flex-shrink: 0;
6417 6117 }
6418 6118 #elementor-template-library-save-template-form .cloud-library-form-inputs .source-selections-input #elementor-template-library-connect__badge {
6419 6119 color: var(--e-a-color-primary-bold);
6420 6120 font-size: 14px;
@@ -6424,9 +6124,9 @@
6424 6124 }
6425 6125 #elementor-template-library-save-template-form .cloud-library-form-inputs .cloud-folder-selection-dropdown {
6426 6126 display: none;
6427 6127 position: absolute;
6428 - inset-block-start: 40px;
6128 + top: 40px;
6429 6129 background-color: var(--e-a-bg-default);
6430 6130 min-width: 187px;
6431 6131 overflow: auto;
6432 6132 box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
@@ -6450,9 +6150,8 @@
6450 6150 }
6451 6151 #elementor-template-library-save-template-form .cloud-library-form-inputs .cloud-folder-selection-dropdown .folder-item {
6452 6152 padding: 5px 15px;
6453 6153 cursor: pointer;
6454 - list-style: none;
6455 6154 }
6456 6155 #elementor-template-library-save-template-form .cloud-library-form-inputs .cloud-folder-selection-dropdown .folder-item[data-id="0"] .eicon-folder-o {
6457 6156 display: none;
6458 6157 }
@@ -6461,15 +6160,11 @@
6461 6160 }
6462 6161 #elementor-template-library-save-template-form .cloud-library-form-inputs .cloud-folder-selection-dropdown .folder-item[data-id="0"] {
6463 6162 text-decoration: underline;
6464 6163 }
6465 -#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 {
6164 +#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 {
6466 6165 background: var(--e-a-border-color);
6467 6166 }
6468 -#elementor-template-library-save-template-form .cloud-library-form-inputs .cloud-folder-selection-dropdown .folder-item:focus-visible {
6469 - outline: 2px solid var(--e-a-border-color-focus);
6470 - outline-offset: -2px;
6471 -}
6472 6167 #elementor-template-library-save-template-form .cloud-library-form-inputs .cloud-folder-selection-dropdown .folder-item.disabled {
6473 6168 pointer-events: none;
6474 6169 opacity: 0.3;
6475 6170 }
@@ -6475,9 +6170,10 @@
6475 6170 }
6476 6171 #elementor-template-library-save-template-form .cloud-library-form-inputs .cloud-folder-selection-dropdown .no-results {
6477 6172 text-align: center;
6478 6173 font-size: 13px;
6479 - margin: 0 20px;
6174 + width: 155px;
6175 + margin: 0 auto;
6480 6176 padding-block: 15px;
6481 6177 pointer-events: none;
6482 6178 }
6483 6179 #elementor-template-library-save-template-form .cloud-library-form-inputs .cloud-folder-selection-dropdown .no-results i {
@@ -6491,259 +6187,8 @@
6491 6187 #elementor-template-library-save-template-form .cloud-library-form-inputs .source-selections-input.disabled {
6492 6188 pointer-events: none;
6493 6189 opacity: 0.3;
6494 6190 }
6495 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b {
6496 - display: flex;
6497 - flex-direction: column;
6498 - width: 600px;
6499 - text-align: start;
6500 -}
6501 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .template-name-label,
6502 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .save-location-label {
6503 - font-size: 12px;
6504 - font-weight: 400;
6505 - color: var(--e-a-color-txt);
6506 -}
6507 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b #elementor-template-library-save-template-name {
6508 - width: 100%;
6509 - padding: 12px 15px;
6510 - border: var(--e-a-border-bold);
6511 - border-radius: 3px;
6512 - margin-block-end: 0;
6513 -}
6514 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections {
6515 - border: none;
6516 - padding: 0;
6517 - gap: 12px;
6518 - margin-block-start: 20px;
6519 -}
6520 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input {
6521 - display: flex;
6522 - align-items: center;
6523 - padding: 12px 15px;
6524 - border: var(--e-a-border-bold);
6525 - border-radius: 3px;
6526 - width: 100%;
6527 - line-height: normal;
6528 - gap: 8px;
6529 -}
6530 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input:has(input[type=checkbox]:checked) {
6531 - border-color: var(--e-a-color-txt);
6532 -}
6533 -#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 {
6534 - display: flex;
6535 -}
6536 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input input[type=checkbox] {
6537 - margin-inline-end: 0;
6538 - flex-shrink: 0;
6539 - position: relative;
6540 -}
6541 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input input[type=checkbox]:checked {
6542 - inset-block-start: 0;
6543 -}
6544 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input input[type=checkbox]::after {
6545 - content: "";
6546 - position: absolute;
6547 - inset-inline-end: -8px;
6548 - width: 1px;
6549 - height: 18px;
6550 - background-color: var(--e-a-border-color);
6551 -}
6552 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input > i:first-of-type {
6553 - margin-inline-start: 12px;
6554 - margin-inline-end: 4px;
6555 - font-size: 24px;
6556 - color: var(--e-a-color-txt);
6557 -}
6558 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input > svg:first-of-type {
6559 - margin-inline-start: 8px;
6560 - margin-inline-end: 0;
6561 - font-size: 24px;
6562 - color: var(--e-a-color-txt);
6563 -}
6564 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input label {
6565 - flex: 0 0 auto;
6566 - margin: 0;
6567 - cursor: pointer;
6568 -}
6569 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input .divider {
6570 - margin-inline: 0;
6571 -}
6572 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input .ellipsis-container {
6573 - display: inline;
6574 - background: transparent;
6575 - padding: 0;
6576 - border-radius: 0;
6577 - vertical-align: baseline;
6578 - text-decoration: underline;
6579 - cursor: pointer;
6580 - margin-inline-start: 0;
6581 -}
6582 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input .ellipsis-container:hover {
6583 - background: transparent;
6584 -}
6585 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input .select-folder-link {
6586 - color: var(--e-a-color-primary-bold);
6587 - text-decoration: underline;
6588 - cursor: pointer;
6589 - margin-inline-start: 4px;
6590 -}
6591 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input .select-folder-link:hover {
6592 - text-decoration: none;
6593 -}
6594 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input .upgrade-badge {
6595 - display: none;
6596 - border: none;
6597 - padding: 0;
6598 - border-radius: 0;
6599 - margin-inline-start: 0;
6600 - background: transparent;
6601 - transition: background-color 0.2s;
6602 - padding: 3px 8px;
6603 -}
6604 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input .upgrade-badge:hover {
6605 - background-color: var(--e-a-btn-bg-primary-hover);
6606 - border-radius: 3px;
6607 -}
6608 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input .upgrade-badge a {
6609 - color: var(--e-a-btn-bg-accent);
6610 - text-decoration: none;
6611 - display: flex;
6612 - align-items: center;
6613 - gap: 4px;
6614 - font-size: 14px;
6615 - font-weight: 500;
6616 -}
6617 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input .upgrade-badge a i {
6618 - margin: 0;
6619 - font-size: 14px;
6620 -}
6621 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input .connect-badge {
6622 - display: none;
6623 -}
6624 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input .connect-badge .connect-divider {
6625 - color: var(--e-a-color-txt-muted);
6626 - margin-inline: 5px;
6627 -}
6628 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input .connect-badge a {
6629 - color: var(--e-a-color-info);
6630 - text-decoration: underline;
6631 -}
6632 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input .connect-badge a:hover {
6633 - text-decoration: none;
6634 -}
6635 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input .account-badge {
6636 - display: flex;
6637 - align-items: center;
6638 - gap: 6px;
6639 - padding: 6px 12px;
6640 - border: none;
6641 - border-radius: 20px;
6642 - font-size: 14px;
6643 - font-weight: 500;
6644 - cursor: pointer;
6645 - transition: opacity 0.2s;
6646 - margin-inline-start: auto;
6647 -}
6648 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input .account-badge:hover {
6649 - opacity: 0.8;
6650 -}
6651 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input .account-badge i {
6652 - margin: 0;
6653 - font-size: 14px;
6654 -}
6655 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input .account-badge.cloud-account-badge {
6656 - background-color: var(--e-a-bg-info);
6657 - color: var(--e-a-color-info);
6658 -}
6659 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input .account-badge.cloud-account-badge i {
6660 - color: var(--e-a-color-info);
6661 -}
6662 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input .account-badge.site-account-badge {
6663 - background-color: var(--e-a-bg-warning);
6664 - color: var(--e-a-btn-bg-warning-hover);
6665 -}
6666 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input .account-badge.site-account-badge i {
6667 - color: var(--e-a-btn-bg-warning-hover);
6668 -}
6669 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input .selected-folder {
6670 - display: none;
6671 - margin-inline-start: 8px;
6672 - align-items: center;
6673 - gap: 6px;
6674 -}
6675 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input .selected-folder[style*="display: inline"] {
6676 - display: inline-flex !important;
6677 -}
6678 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input .selected-folder-text {
6679 - text-decoration: underline;
6680 - cursor: pointer;
6681 -}
6682 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input .eicon-editor-close {
6683 - cursor: pointer;
6684 - font-size: 14px;
6685 -}
6686 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .cloud-folder-selection-dropdown {
6687 - inset-block-start: 75px;
6688 - inset-inline-start: 230px;
6689 -}
6690 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections-input.cloud:not(:has(.connect-badge)) .connect-badge {
6691 - display: none;
6692 -}
6693 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections-input.cloud:has(.connect-badge) .connect-badge {
6694 - display: inline;
6695 -}
6696 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections-input.cloud:has(.connect-badge) .upgrade-badge {
6697 - display: none;
6698 -}
6699 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections-input.cloud:has(.connect-badge) {
6700 - border-color: var(--e-a-border-color);
6701 -}
6702 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections-input.cloud:has(.connect-badge) > i:first-of-type,
6703 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections-input.cloud:has(.connect-badge) label,
6704 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections-input.cloud:has(.connect-badge) .divider {
6705 - color: var(--e-a-color-txt-disabled);
6706 -}
6707 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections-input.cloud:has(.connect-badge) input[type=checkbox]::after {
6708 - background-color: var(--e-a-color-txt-disabled);
6709 -}
6710 -#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 {
6711 - border-color: var(--e-a-border-color);
6712 -}
6713 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b.promotion .source-selections-input.cloud > i:first-of-type,
6714 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b.promotion .source-selections-input.cloud label,
6715 -#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,
6716 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b.max-capacity .source-selections-input.cloud label,
6717 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b.max-capacity .source-selections-input.cloud .divider {
6718 - color: var(--e-a-color-txt-disabled);
6719 -}
6720 -#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 {
6721 - background-color: var(--e-a-color-txt-disabled);
6722 -}
6723 -#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 {
6724 - display: inline-flex;
6725 -}
6726 -#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 {
6727 - display: none;
6728 -}
6729 -#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 {
6730 - display: block;
6731 -}
6732 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b.promotion .source-selections-input.cloud input[type=checkbox],
6733 -#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],
6734 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b.max-capacity .source-selections-input.cloud label {
6735 - pointer-events: none;
6736 -}
6737 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b.max-capacity .quota-cta {
6738 - display: block;
6739 - margin-block-start: 15px;
6740 -}
6741 -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b #elementor-template-library-save-template-submit {
6742 - align-self: center;
6743 - margin-block-start: 20px;
6744 - float: none;
6745 -}
6746 6191
6747 6192 #elementor-template-library-save-template-name {
6748 6193 width: 500px;
6749 6194 padding-inline-start: 25px;
@@ -6837,11 +6282,11 @@
6837 6282 }
6838 6283
6839 6284 .elementor-template-library-blank-footer {
6840 6285 position: absolute;
6841 - inset-block-end: 70px;
6842 - inset-inline-start: 50%;
6843 - transform: translateX(calc(-50% * var(--direction-multiplier)));
6286 + bottom: 70px;
6287 + left: 50%;
6288 + transform: translateX(-50%);
6844 6289 font-style: italic;
6845 6290 color: var(--e-a-color-txt-muted);
6846 6291 }
6847 6292 @media (max-height: 700px) {
@@ -6874,11 +6319,9 @@
6874 6319 margin-block-start: 10px;
6875 6320 }
6876 6321
6877 6322 #elementor-library--infotip__dialog,
6878 -#elementor-library--connect_infotip__dialog,
6879 -#elementor-library--cloud-upgrade__dialog,
6880 -#elementor-library--site-info__dialog {
6323 +#elementor-library--connect_infotip__dialog {
6881 6324 position: absolute;
6882 6325 z-index: 10000;
6883 6326 background-color: var(--e-a-bg-default);
6884 6327 box-shadow: var(--e-a-popover-shadow);
@@ -6883,39 +6326,19 @@
6883 6326 background-color: var(--e-a-bg-default);
6884 6327 box-shadow: var(--e-a-popover-shadow);
6885 6328 border-radius: var(--e-a-border-radius);
6886 6329 }
6887 -#elementor-library--infotip__dialog.variant-b,
6888 -#elementor-library--connect_infotip__dialog.variant-b,
6889 -#elementor-library--cloud-upgrade__dialog.variant-b,
6890 -#elementor-library--site-info__dialog.variant-b {
6891 - width: 200px;
6892 - color: var(--e-a-color-txt-invert);
6893 - background-color: var(--e-a-bg-secondary);
6894 -}
6895 -#elementor-library--infotip__dialog.variant-b .dialog-message,
6896 -#elementor-library--connect_infotip__dialog.variant-b .dialog-message,
6897 -#elementor-library--cloud-upgrade__dialog.variant-b .dialog-message,
6898 -#elementor-library--site-info__dialog.variant-b .dialog-message {
6899 - padding: 4px 8px 4px 8px;
6900 -}
6901 6330 #elementor-library--infotip__dialog__title,
6902 -#elementor-library--connect_infotip__dialog__title,
6903 -#elementor-library--cloud-upgrade__dialog__title,
6904 -#elementor-library--site-info__dialog__title {
6331 +#elementor-library--connect_infotip__dialog__title {
6905 6332 font-size: 14px;
6906 6333 }
6907 6334 #elementor-library--infotip__dialog .dialog-buttons-wrapper,
6908 -#elementor-library--connect_infotip__dialog .dialog-buttons-wrapper,
6909 -#elementor-library--cloud-upgrade__dialog .dialog-buttons-wrapper,
6910 -#elementor-library--site-info__dialog .dialog-buttons-wrapper {
6335 +#elementor-library--connect_infotip__dialog .dialog-buttons-wrapper {
6911 6336 padding: 10px 0 10px 10px;
6912 6337 float: inline-end;
6913 6338 }
6914 6339 #elementor-library--infotip__dialog .dialog-button,
6915 -#elementor-library--connect_infotip__dialog .dialog-button,
6916 -#elementor-library--cloud-upgrade__dialog .dialog-button,
6917 -#elementor-library--site-info__dialog .dialog-button {
6340 +#elementor-library--connect_infotip__dialog .dialog-button {
6918 6341 padding: 7px 25px;
6919 6342 font-size: 13px;
6920 6343 background: none;
6921 6344 color: var(--e-a-btn-bg-accent);
@@ -6923,14 +6346,12 @@
6923 6346 font-weight: 500;
6924 6347 cursor: pointer;
6925 6348 }
6926 6349 #elementor-library--infotip__dialog:after,
6927 -#elementor-library--connect_infotip__dialog:after,
6928 -#elementor-library--cloud-upgrade__dialog:after,
6929 -#elementor-library--site-info__dialog:after {
6350 +#elementor-library--connect_infotip__dialog:after {
6930 6351 content: "";
6931 6352 position: absolute;
6932 - inset-inline-end: 46%;
6353 + left: 46%;
6933 6354 transform: scaleX(0.7);
6934 6355 border: 10px solid transparent;
6935 6356 }
6936 6357
@@ -6940,14 +6361,11 @@
6940 6361 #elementor-library--infotip__dialog .dialog-message {
6941 6362 padding: 20px 20px 0px 20px;
6942 6363 }
6943 6364 #elementor-library--infotip__dialog:after {
6944 - inset-block-start: 100%;
6945 - border-block-start-color: var(--e-a-bg-default);
6365 + top: 100%;
6366 + border-top-color: var(--e-a-bg-default);
6946 6367 }
6947 -#elementor-library--infotip__dialog.variant-b:after {
6948 - border-block-start-color: var(--e-a-bg-secondary);
6949 -}
6950 6368
6951 6369 #elementor-library--connect_infotip__dialog {
6952 6370 width: 265px;
6953 6371 }
@@ -6953,207 +6371,13 @@
6953 6371 }
6954 6372 #elementor-library--connect_infotip__dialog .dialog-message {
6955 6373 padding: 20px;
6956 6374 }
6957 -#elementor-library--connect_infotip__dialog:not(.variant-b):after {
6958 - inset-block-end: 100%;
6959 - border-block-end-color: var(--e-a-bg-default);
6375 +#elementor-library--connect_infotip__dialog:after {
6376 + bottom: 100%;
6377 + border-bottom-color: var(--e-a-bg-default);
6960 6378 }
6961 -#elementor-library--connect_infotip__dialog.variant-b:after {
6962 - border-block-start-color: var(--e-a-bg-secondary);
6963 - inset-block-start: 100%;
6964 -}
6965 -#elementor-library--connect_infotip__dialog.variant-b {
6966 - width: 265px;
6967 -}
6968 6379
6969 -#elementor-library--cloud-upgrade__dialog {
6970 - width: 265px;
6971 -}
6972 -#elementor-library--cloud-upgrade__dialog:after {
6973 - inset-block-start: 100%;
6974 - border-block-start-color: var(--e-a-bg-default);
6975 -}
6976 -#elementor-library--cloud-upgrade__dialog.variant-b:after {
6977 - border-block-start-color: var(--e-a-bg-secondary);
6978 -}
6979 -
6980 -#elementor-library--site-info__dialog {
6981 - width: 265px;
6982 -}
6983 -#elementor-library--site-info__dialog:after {
6984 - inset-block-start: 100%;
6985 - border-block-start-color: var(--e-a-bg-default);
6986 -}
6987 -#elementor-library--site-info__dialog.variant-b:after {
6988 - border-block-start-color: var(--e-a-bg-secondary);
6989 -}
6990 -
6991 -.elementor-global-styles-dialog {
6992 - --gsd-color-text-primary: #0c0d0e;
6993 - --gsd-color-text-secondary: #3f444b;
6994 - --gsd-color-text-tertiary: #69727D;
6995 - --gsd-color-divider: rgba(0, 0, 0, 0.12);
6996 - --gsd-color-primary-main: #f0abfc;
6997 - --gsd-color-primary-hover: #e879f9;
6998 - --gsd-color-secondary-main: #515962;
6999 - --gsd-border-radius: 4px;
7000 - --gsd-spacing-horizontal: 24px;
7001 - --gsd-font-family: 'Roboto', sans-serif;
7002 - padding: 16px 0 0;
7003 - min-width: 444px;
7004 -}
7005 -.elementor-global-styles-dialog__header {
7006 - padding: 10px var(--gsd-spacing-horizontal) 0;
7007 - margin-block-end: 16px;
7008 -}
7009 -.elementor-global-styles-dialog__header h2 {
7010 - margin: 0 0 4px;
7011 - font-family: var(--gsd-font-family);
7012 - font-size: 16px;
7013 - font-weight: 500;
7014 - line-height: 1.3;
7015 - color: var(--gsd-color-text-primary);
7016 - letter-spacing: 0.15px;
7017 -}
7018 -.elementor-global-styles-dialog__header p {
7019 - margin: 0;
7020 - font-family: var(--gsd-font-family);
7021 - font-size: 14px;
7022 - font-weight: 400;
7023 - line-height: 20px;
7024 - color: var(--gsd-color-text-secondary);
7025 - letter-spacing: 0.15px;
7026 -}
7027 -.elementor-global-styles-dialog__options {
7028 - display: flex;
7029 - flex-direction: column;
7030 - gap: 12px;
7031 - padding: 0 var(--gsd-spacing-horizontal);
7032 -}
7033 -.elementor-global-styles-dialog__radio-card {
7034 - display: flex;
7035 - gap: 0;
7036 - padding: 12px 8px;
7037 - border: 1px solid var(--gsd-color-divider);
7038 - border-radius: var(--gsd-border-radius);
7039 - cursor: pointer;
7040 - transition: border-color 0.2s ease;
7041 -}
7042 -.elementor-global-styles-dialog__radio-card:has(input[type=radio]:checked) {
7043 - border: 2px solid var(--gsd-color-text-primary);
7044 - padding: 11px 7px;
7045 -}
7046 -.elementor-global-styles-dialog__radio-card input[type=radio] {
7047 - flex-shrink: 0;
7048 - width: 20px;
7049 - height: 20px;
7050 - margin: 9px;
7051 - cursor: pointer;
7052 - color: var(--gsd-color-text-tertiary);
7053 - accent-color: var(--gsd-color-text-primary);
7054 -}
7055 -.elementor-global-styles-dialog__radio-card-content {
7056 - display: flex;
7057 - align-items: flex-start;
7058 - flex-direction: column;
7059 - flex: 1;
7060 -}
7061 -.elementor-global-styles-dialog__radio-label {
7062 - font-family: var(--gsd-font-family);
7063 - font-size: 14px;
7064 - font-weight: 500;
7065 - line-height: 18px;
7066 - color: var(--gsd-color-text-primary);
7067 - letter-spacing: 0.15px;
7068 -}
7069 -.elementor-global-styles-dialog__radio-description {
7070 - font-family: var(--gsd-font-family);
7071 - font-size: 12px;
7072 - font-weight: 400;
7073 - line-height: 20px;
7074 - color: var(--gsd-color-text-secondary);
7075 - letter-spacing: 0.4px;
7076 -}
7077 -.elementor-global-styles-dialog__checkbox-container {
7078 - display: flex;
7079 - align-items: flex-start;
7080 - gap: 4px;
7081 - padding: 0;
7082 - margin-block-start: 0;
7083 -}
7084 -.elementor-global-styles-dialog__checkbox-option {
7085 - display: flex;
7086 - align-items: flex-start;
7087 - gap: 4px;
7088 - cursor: pointer;
7089 -}
7090 -.elementor-global-styles-dialog__checkbox-option input[type=checkbox] {
7091 - width: 18px;
7092 - height: 18px;
7093 - margin: 4px;
7094 - cursor: pointer;
7095 -}
7096 -.elementor-global-styles-dialog__checkbox-option input[type=checkbox]:checked {
7097 - background-color: var(--gsd-color-text-tertiary);
7098 -}
7099 -.elementor-global-styles-dialog__checkbox-label {
7100 - font-family: var(--gsd-font-family);
7101 - font-size: 12px;
7102 - font-weight: 400;
7103 - line-height: 1.43;
7104 - color: var(--gsd-color-text-primary);
7105 - letter-spacing: 0.15px;
7106 - padding-block-start: 4px;
7107 - margin-inline-start: 4px;
7108 -}
7109 -.elementor-global-styles-dialog__checkbox-label a {
7110 - color: #2563eb;
7111 - text-decoration: underline;
7112 -}
7113 -.elementor-global-styles-dialog__checkbox-label a:hover {
7114 - color: #2563eb;
7115 -}
7116 -.elementor-global-styles-dialog__footer {
7117 - display: flex;
7118 - justify-content: flex-end;
7119 - align-items: center;
7120 - gap: 8px;
7121 - padding: 16px var(--gsd-spacing-horizontal);
7122 -}
7123 -.elementor-global-styles-dialog__button-cancel {
7124 - padding: 6px 8px;
7125 - font-family: var(--gsd-font-family);
7126 - font-size: 15px;
7127 - font-weight: 500;
7128 - line-height: 24px;
7129 - letter-spacing: 0.4px;
7130 - color: var(--gsd-color-secondary-main);
7131 - background: transparent;
7132 - border: none;
7133 - border-radius: var(--gsd-border-radius);
7134 - cursor: pointer;
7135 -}
7136 -.elementor-global-styles-dialog__button-cancel:hover {
7137 - background: rgba(0, 0, 0, 0.04);
7138 -}
7139 -.elementor-global-styles-dialog__button-insert {
7140 - padding: 6px 16px;
7141 - font-family: var(--gsd-font-family);
7142 - font-size: 15px;
7143 - font-weight: 500;
7144 - line-height: 24px;
7145 - letter-spacing: 0.4px;
7146 - color: var(--gsd-color-text-primary);
7147 - background: var(--gsd-color-primary-main);
7148 - border: none;
7149 - border-radius: var(--gsd-border-radius);
7150 - cursor: pointer;
7151 -}
7152 -.elementor-global-styles-dialog__button-insert:hover {
7153 - background: var(--gsd-color-primary-hover);
7154 -}
7155 -
7156 6380 .elementor-tags-list {
7157 6381 display: none;
7158 6382 position: absolute;
7159 6383 width: 260px;
@@ -7243,10 +6467,10 @@
7243 6467 }
7244 6468 .elementor-tag-settings-popup:before {
7245 6469 content: "";
7246 6470 position: absolute;
7247 - inset-block-start: -20px;
7248 - inset-inline-start: 5px;
6471 + top: -20px;
6472 + right: 5px;
7249 6473 border: 10px solid transparent;
7250 6474 border-block-end-color: var(--e-a-border-color);
7251 6475 }
7252 6476 .elementor-tag-settings-popup .elementor-control-type-section:first-child {
@@ -7337,14 +6561,8 @@
7337 6561 cursor: default;
7338 6562 opacity: 0.5;
7339 6563 color: var(--e-a-color-disabled);
7340 6564 }
7341 -.elementor-context-menu-list__item--disabled.elementor-context-menu-list__item--has-shortcut-action {
7342 - opacity: 1;
7343 -}
7344 -.elementor-context-menu-list__item--disabled.elementor-context-menu-list__item--has-shortcut-action > :not(.elementor-context-menu-list__item__shortcut) {
7345 - opacity: 0.5;
7346 -}
7347 6565 .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 {
7348 6566 background-color: var(--e-a-bg-hover);
7349 6567 color: var(--e-a-color-hover);
7350 6568 }
@@ -7373,20 +6591,8 @@
7373 6591 color: var(--e-a-color-primary-bold);
7374 6592 border-radius: 10px;
7375 6593 font-size: 10px;
7376 6594 }
7377 -.elementor-context-menu-list__item__shortcut__promotion-badge {
7378 - display: flex;
7379 - align-items: center;
7380 - justify-content: center;
7381 - width: 24px;
7382 - height: 24px;
7383 - border-radius: 50%;
7384 - background-color: rgba(214, 16, 124, 0.12);
7385 - color: var(--e-a-color-accent-promotion, #D6107C);
7386 - font-size: 16px;
7387 - cursor: pointer;
7388 -}
7389 6595 .elementor-context-menu-list__item__title, .elementor-context-menu-list__item__shortcut {
7390 6596 font-size: 14px;
7391 6597 font-style: normal;
7392 6598 font-weight: 400;
@@ -7471,9 +6677,9 @@
7471 6677 }
7472 6678 .elementor-hotkeys__item--shortcut kbd:not(:last-of-type)::after {
7473 6679 content: "+";
7474 6680 position: absolute;
7475 - inset-inline-end: 0;
6681 + left: 0;
7476 6682 width: 9px;
7477 6683 text-align: center;
7478 6684 margin-inline-end: -18px;
7479 6685 }
@@ -7552,12 +6758,12 @@
7552 6758 }
7553 6759
7554 6760 #elementor-navigator {
7555 6761 position: fixed;
7556 - inset-block-start: 100px;
7557 - inset-inline-end: 30px;
6762 + top: 100px;
7558 6763 width: var(--e-editor-navigator-width);
7559 6764 height: 50vh;
6765 + left: 30px;
7560 6766 background-color: var(--e-a-bg-default);
7561 6767 border: var(--e-a-border);
7562 6768 box-shadow: 0 2px 20px 0 rgba(0, 0, 0, 0.1);
7563 6769 -webkit-user-select: none;
@@ -7686,9 +6892,9 @@
7686 6892 .elementor-navigator__item[data-locked=true] {
7687 6893 cursor: not-allowed;
7688 6894 }
7689 6895 .elementor-navigator__item:not(.elementor-active) .elementor-navigator__element__list-toggle i {
7690 - transform: rotate(calc(-90deg * var(--direction-multiplier)));
6896 + transform: rotate(90deg);
7691 6897 }
7692 6898 .elementor-navigator__item > * {
7693 6899 display: flex;
7694 6900 align-items: center;
@@ -7773,9 +6979,9 @@
7773 6979 overflow: hidden;
7774 6980 }
7775 6981 .elementor-navigator__element__toggle {
7776 6982 position: absolute;
7777 - inset-inline-end: 15px;
6983 + left: 15px;
7778 6984 height: 100%;
7779 6985 z-index: 0;
7780 6986 font-size: 13px;
7781 6987 }
@@ -7784,9 +6990,9 @@
7784 6990 transition: transform 0.5s;
7785 6991 z-index: 91;
7786 6992 }
7787 6993 .elementor-navigator__element__indicators:not(:hover) {
7788 - transform: translateX(calc(100% * var(--direction-multiplier) - var(--e-editor-navigator-indicator-width) * var(--direction-multiplier)));
6994 + transform: translateX(calc(-100% + var(--e-editor-navigator-indicator-width)));
7789 6995 }
7790 6996 .elementor-navigator__element__indicator {
7791 6997 height: 100%;
7792 6998 width: 31px;
@@ -7813,9 +7019,9 @@
7813 7019
7814 7020 .e-notice-bar {
7815 7021 position: absolute;
7816 7022 width: 100%;
7817 - inset-block-end: 0;
7023 + bottom: 0;
7818 7024 display: flex;
7819 7025 align-items: center;
7820 7026 height: 40px;
7821 7027 color: #fff;
@@ -7941,11 +7147,11 @@
7941 7147 background-color: transparent;
7942 7148 }
7943 7149 #elementor-icons-manager__search i {
7944 7150 position: absolute;
7945 - inset-block-start: 50%;
7946 - inset-inline-end: 15px;
7151 + top: 50%;
7947 7152 transform: translateY(-50%);
7153 + left: 15px;
7948 7154 }
7949 7155 #elementor-icons-manager__tab__wrapper {
7950 7156 overflow: auto;
7951 7157 margin: 25px -15px 0;
@@ -8034,10 +7240,10 @@
8034 7240 content: "";
8035 7241 position: absolute;
8036 7242 height: 100%;
8037 7243 width: 3px;
8038 - inset-block-start: 0;
8039 - inset-inline-start: 0;
7244 + top: 0;
7245 + right: 0;
8040 7246 background-color: var(--e-a-border-color-accent);
8041 7247 }
8042 7248 .elementor-icons-manager__tab__item {
8043 7249 position: relative;
@@ -8062,11 +7268,11 @@
8062 7268 flex-direction: column;
8063 7269 align-items: center;
8064 7270 width: 100%;
8065 7271 position: absolute;
8066 - inset-block-start: 50%;
8067 - inset-inline-start: 50%;
8068 - transform: translate(calc(-50% * var(--direction-multiplier)), -50%);
7272 + top: 50%;
7273 + left: 50%;
7274 + transform: translate(-50%, -50%);
8069 7275 padding: 1px;
8070 7276 }
8071 7277 .elementor-icons-manager__tab__item__icon {
8072 7278 font-size: 25px;
@@ -8110,12 +7316,11 @@
8110 7316 }
8111 7317 .pickr .pcr-button:before, .pickr .pcr-button:after {
8112 7318 height: 12px;
8113 7319 width: 12px;
8114 - position: absolute;
8115 - inset-block-start: 50%;
8116 - inset-inline-start: 50%;
8117 - transform: translate(calc(-50% * var(--direction-multiplier)), -50%);
7320 + top: 50%;
7321 + left: 50%;
7322 + transform: translate(-50%, -50%);
8118 7323 }
8119 7324
8120 7325 .pcr-app {
8121 7326 background-color: var(--e-a-bg-default);
@@ -8255,9 +7460,9 @@
8255 7460 }
8256 7461
8257 7462 .select2-selection__arrow {
8258 7463 height: 27px;
8259 - inset-block-start: 0;
7464 + top: 0;
8260 7465 }
8261 7466
8262 7467 .select2-results__option[aria-selected=true] {
8263 7468 background-color: var(--e-a-bg-active);
@@ -8316,10 +7521,11 @@
8316 7521 padding: 0;
8317 7522 margin: 0;
8318 7523 height: 100px;
8319 7524 position: absolute;
8320 - inset-block-start: -60px;
8321 - inset-inline: 0;
7525 + top: -60px;
7526 + left: 0;
7527 + right: 0;
8322 7528 }
8323 7529 #elementor-paste-area-dialog #elementor-paste-area-dialog__input:focus {
8324 7530 border-color: transparent;
8325 7531 outline: none;
@@ -8346,22 +7552,20 @@
8346 7552 }
8347 7553
8348 7554 [class^=eicon-flex], [class*=" eicon-flex"] {
8349 7555 transition: 0.3s all;
7556 + --is-ltr: 1;
7557 + --is-rtl: 0;
7558 + --rotation-direction: calc(var(--is-ltr) - var(--is-rtl));
7559 + --is-ltr: 0;
7560 + --is-rtl: 1;
8350 7561 }
8351 7562 [class^=eicon-flex].eicon-inline, [class*=" eicon-flex"].eicon-inline {
8352 7563 max-height: 1em;
8353 7564 max-width: 1em;
8354 7565 }
8355 -[class^=eicon-flex], [class*=" eicon-flex"] {
8356 - --is-ltr: 0;
8357 - --is-rtl: 1;
8358 -}
8359 7566 [class^=eicon-flex]:is(.eicon-justify-start-h, .eicon-justify-end-h), [class*=" eicon-flex"]:is(.eicon-justify-start-h, .eicon-justify-end-h) {
8360 7567 --rotation-direction: calc(var(--is-ltr) + var(--is-rtl));
8361 -}
8362 -[class^=eicon-flex], [class*=" eicon-flex"] {
8363 - --rotation-direction: calc(var(--is-ltr) - var(--is-rtl));
8364 7568 }
8365 7569 :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) {
8366 7570 transform: rotate(calc(var(--rotation-direction) * 90deg));
8367 7571 }